From 579effcecedeab51518a458f0006c76e42bd95c5 Mon Sep 17 00:00:00 2001 From: Vincent Luczkow Date: Tue, 16 Aug 2022 11:20:44 -0700 Subject: [PATCH 1/7] location scrambling done --- tests/gen_mock_data.py | 39 +++++++++++++++++++++++++++++++++++++++ tests/rebuild_test.py | 7 +++++++ 2 files changed, 46 insertions(+) create mode 100644 tests/gen_mock_data.py diff --git a/tests/gen_mock_data.py b/tests/gen_mock_data.py new file mode 100644 index 0000000..b5e846c --- /dev/null +++ b/tests/gen_mock_data.py @@ -0,0 +1,39 @@ +import numpy as np +import pandas as pd +from aukpy import db + + +def scramble_observations(df: pd.DataFrame) -> pd.DataFrame: + """Scramble and anonymize a real set of observations""" + + # sampling_events = df.groupby('sampling_event_identifier') + s_id_to_index = ( + df[["sampling_event_identifier"]] + .reset_index() + .set_index("sampling_event_identifier") + ) + # Scramble locations + just_first = df.drop_duplicates("sampling_event_identifier").set_index( + "sampling_event_identifier" + ) + location_shuffle = np.random.permutation(just_first.index) + just_loc = just_first.loc[location_shuffle, list(db.LocationWrapper.columns)] + + merged = just_loc.join(s_id_to_index).reset_index().set_index("index").loc[df.index] + assert len(merged) == len(df) + df[list(db.LocationWrapper.columns)] = merged[list(db.LocationWrapper.columns)] + + # for col in db.LocationWrapper.columns: + # df[col] = df.loc[location_shuffle, col] + # Scramble sampling events + + # Scramble species + + # Generate random trip comments + + # Generate random species comments + + # Generate random observer ids + import pdb + + pdb.set_trace() diff --git a/tests/rebuild_test.py b/tests/rebuild_test.py index 97626d6..5991b8e 100644 --- a/tests/rebuild_test.py +++ b/tests/rebuild_test.py @@ -76,3 +76,10 @@ def test_rebuild_atlas(): df = auk_db.undo_compression(q.run_pandas(db)) original = auk_db.read_clean(WITH_ATLAS) compare_tables(df, original) + + +def test_rebuild_random(): + df = auk_db.read_clean(MEDIUM) + from tests import gen_mock_data + + new_df = gen_mock_data.scramble_observations(df) From be665f0ee442f9e2d7310a99be2eee3ca30c80c2 Mon Sep 17 00:00:00 2001 From: Vincent Luczkow Date: Wed, 17 Aug 2022 18:01:45 -0700 Subject: [PATCH 2/7] Mocked observations files generated, rebuild tests written for them. Closes #47, closes #25 --- .circleci/config.yml | 22 +- .gitignore | 2 +- tests/__init__.py | 43 + tests/db_test.py | 15 +- tests/gen_mock_data.py | 44 +- tests/mocked/small.txt | 10001 ++++++++++++++++++++++++++++++++++++++ tests/mocked/small1.txt | 10001 ++++++++++++++++++++++++++++++++++++++ tests/mocked/small2.txt | 10001 ++++++++++++++++++++++++++++++++++++++ tests/mocked/small3.txt | 10001 ++++++++++++++++++++++++++++++++++++++ tests/perf_test.py | 44 +- tests/queries_test.py | 14 +- tests/rebuild_test.py | 83 +- 12 files changed, 40188 insertions(+), 83 deletions(-) create mode 100644 tests/mocked/small.txt create mode 100644 tests/mocked/small1.txt create mode 100644 tests/mocked/small2.txt create mode 100644 tests/mocked/small3.txt diff --git a/.circleci/config.yml b/.circleci/config.yml index 6554e1f..e141b37 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,26 +1,24 @@ # Use the latest 2.1 version of CircleCI pipeline process engine. # See: https://circleci.com/docs/2.0/configuration-reference version: 2.1 - +orbs: + python: circleci/python@2.0.3 # Define a job to be invoked later in a workflow. # See: https://circleci.com/docs/2.0/configuration-reference/#jobs jobs: - say-hello: - # Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub. - # See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor - docker: - - image: cimg/base:stable - # Add steps to the job - # See: https://circleci.com/docs/2.0/configuration-reference/#steps + build_and_test: + executor: python/default steps: - checkout + - python/install-packages: + pkg-manager: pip - run: - name: "Say hello" - command: "echo Hello, World!" + name: Run tests + command: python -m pytest # Invoke jobs via workflows # See: https://circleci.com/docs/2.0/configuration-reference/#workflows workflows: - say-hello-workflow: + build_and_test-workflow: jobs: - - say-hello + - build_and_test diff --git a/.gitignore b/.gitignore index f67b584..4d196da 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,4 @@ dist/ .idea/ data/ -tmp.py +tests/mocked/medium.txt diff --git a/tests/__init__.py b/tests/__init__.py index a0ed986..695de76 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,12 +1,55 @@ from pathlib import Path + TEST_DATA = Path(__file__).parent / "data" +MOCK_DATA = Path(__file__).parent / "mocked" SMALL = TEST_DATA / "small" / "observations.txt" MEDIUM = TEST_DATA / "medium" / "observations.txt" LARGE = TEST_DATA / "large" / "observations.txt" # A clean dataframe with non empty atlas codes WITH_ATLAS = TEST_DATA / "with_atlas.csv" +# We skip any unmocked tests if the file doesn't exist +SKIP_NON_MOCKED = { + "condition": not SMALL.exists() or not MEDIUM.exists(), + "reason": "Real datasets not available", +} +# SKIP_NON_MOCKED = (True, "") + SMALL_DB = TEST_DATA / "small" / "observations.sqlite" MEDIUM_DB = TEST_DATA / "medium" / "observations.sqlite" LARGE_DB = TEST_DATA / "large" / "observations.sqlite" + +M_SMALL = MOCK_DATA / "small.txt" +M_MEDIUM = MOCK_DATA / "medium.txt" +M_SMALL1 = MOCK_DATA / "small1.txt" +M_SMALL2 = MOCK_DATA / "small2.txt" +M_SMALL3 = MOCK_DATA / "small3.txt" + +SMALL_MOCKED = (M_SMALL1, M_SMALL2, M_SMALL3) + + +def generate_mock_data(obs_path: Path, out_path: Path): + """Convert the real medium sized dataset to a fake dataset""" + from aukpy import db + from tests import gen_mock_data + + df = db.read_clean(obs_path) + new_df = gen_mock_data.scramble_observations(df) + new_df.to_csv(out_path, index=False, sep="\t") + + +def generate_subsampled(obs_path: Path, out_path: Path, num_rows: int = 10000): + from aukpy import db + from tests import gen_mock_data + + df = db.read_clean(obs_path) + subsampled = gen_mock_data.subsample(df, num_rows=num_rows) + subsampled.to_csv(out_path, index=False, sep="\t") + + +# generate_mock_data(SMALL, M_SMALL) +# generate_mock_data(MEDIUM, M_MEDIUM) +# generate_subsampled(M_MEDIUM, M_SMALL1) +# generate_subsampled(M_MEDIUM, M_SMALL2) +# generate_subsampled(M_MEDIUM, M_SMALL3) diff --git a/tests/db_test.py b/tests/db_test.py index b0ce29f..fb9acdf 100644 --- a/tests/db_test.py +++ b/tests/db_test.py @@ -3,15 +3,16 @@ from pathlib import Path from aukpy import db as auk_db - -from tests import SMALL, MEDIUM, LARGE, SMALL_DB +from tests import SMALL, MEDIUM, LARGE, SMALL_MOCKED, SKIP_NON_MOCKED +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore def test_build_small(): with NamedTemporaryFile() as output: db = auk_db.build_db_pandas(SMALL, Path(output.name)) +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore def test_build_medium(): with NamedTemporaryFile() as output: db = auk_db.build_db_pandas(MEDIUM, Path(output.name)) @@ -20,6 +21,7 @@ def test_build_medium(): assert len(res) == 999999 +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore def test_build_incremental_small(): with NamedTemporaryFile() as output: db = auk_db.build_db_incremental(SMALL, Path(output.name), max_size=1000) @@ -28,6 +30,7 @@ def test_build_incremental_small(): assert len(res) == 10000 +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore def test_build_incremental(): with NamedTemporaryFile() as output: db = auk_db.build_db_incremental(MEDIUM, Path(output.name)) @@ -39,4 +42,10 @@ def test_build_incremental(): @pytest.mark.skip def test_build_large(): with NamedTemporaryFile() as output: - db = auk_db.build_db(LARGE, Path(output.name)) + db = auk_db.build_db_pandas(LARGE, Path(output.name)) + + +def test_build_small_mocked(): + for p in SMALL_MOCKED: + with NamedTemporaryFile() as output: + auk_db.build_db_pandas(p, Path(output.name)) diff --git a/tests/gen_mock_data.py b/tests/gen_mock_data.py index b5e846c..f7b994a 100644 --- a/tests/gen_mock_data.py +++ b/tests/gen_mock_data.py @@ -1,3 +1,4 @@ +from typing import List import numpy as np import pandas as pd from aukpy import db @@ -12,7 +13,7 @@ def scramble_observations(df: pd.DataFrame) -> pd.DataFrame: .reset_index() .set_index("sampling_event_identifier") ) - # Scramble locations + # Shuffle locations just_first = df.drop_duplicates("sampling_event_identifier").set_index( "sampling_event_identifier" ) @@ -23,17 +24,42 @@ def scramble_observations(df: pd.DataFrame) -> pd.DataFrame: assert len(merged) == len(df) df[list(db.LocationWrapper.columns)] = merged[list(db.LocationWrapper.columns)] - # for col in db.LocationWrapper.columns: - # df[col] = df.loc[location_shuffle, col] - # Scramble sampling events + # Shuffle sampling events + to_scramble = list(db.SamplingWrapper.columns) + del to_scramble[0] + + obs_shuffle = np.random.permutation(just_first.index) + just_obs = just_first.loc[obs_shuffle, list(to_scramble)] + + # Randomize observer ids + just_obs["observer_id"] = just_obs["observer_id"].str[4:].astype(int) + r = just_obs["observer_id"] + observers = r.unique() + new_ids = np.random.randint(r.min(), r.max(), len(observers)) + new_observers = {o: n for o, n in zip(observers, new_ids)} + just_obs["observer_id"] = "obsr" + r.map(new_observers).astype(str) + + merged = just_obs.join(s_id_to_index).reset_index().set_index("index").loc[df.index] + assert len(merged) == len(df) + df[to_scramble] = merged[to_scramble] # Scramble species + # Obviously this does not preserve the geographic distribution of species + species_shuffle = np.random.permutation(df.index) + + for col in db.SpeciesWrapper.columns: + df[col] = df.loc[species_shuffle, col].values - # Generate random trip comments + # Remove comments + for col in ("trip_comments", "species_comments"): + not_empty = ~df[col].isna() + df.loc[not_empty, col] = "" - # Generate random species comments + return df - # Generate random observer ids - import pdb - pdb.set_trace() +def subsample(df: pd.DataFrame, num_rows: int = 100000) -> pd.DataFrame: + """Extract a random set of rows from the dataframe""" + assert len(df) >= num_rows + shuffle = np.random.permutation(df.index) + return df.loc[shuffle].iloc[:num_rows] diff --git a/tests/mocked/small.txt b/tests/mocked/small.txt new file mode 100644 index 0000000..209f5fe --- /dev/null +++ b/tests/mocked/small.txt @@ -0,0 +1,10001 @@ +global_unique_identifier last_edited_date taxonomic_order category taxon_concept_id common_name scientific_name subspecies_common_name subspecies_scientific_name exotic_code observation_count breeding_code breeding_category behavior_code age_sex country country_code state state_code county county_code iba_code bcr_code usfws_code atlas_block locality locality_id locality_type latitude longitude observation_date time_observations_started observer_id sampling_event_identifier protocol_type protocol_code project_code duration_minutes effort_distance_km effort_area_ha number_observers all_species_reported group_identifier has_media approved reviewed reason trip_comments species_comments +URN:CornellLabOfOrnithology:EBIRD:OBS290950615 2015-01-14 12:43:58 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 10 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks L2597661 P 42.77923010000001 -73.7017514 2015-01-14 09:35:00 obsr551017 S21340703 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293178365 2018-08-04 16:55:16 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 14:45:00 obsr399201 S21537211 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292186034 2015-01-20 18:49:59 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-20 13:50:00 obsr594026 S21438658 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740154 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-17 obsr560402 S23337227 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288966730 2021-03-23 17:18:00.959502 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-04 09:22:00 obsr504578 S21182191 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290870333 2018-08-04 16:53:06 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 10 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 10:20:00 obsr697870 S21334381 Stationary P21 EBIRD 12.0 3.0 1 G1108432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292579278 2021-03-23 17:18:00.959502 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-22 07:34:00 obsr407723 S21490126 Traveling P22 EBIRD 12.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534224 2015-01-17 19:36:01 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks L2597661 P 42.77923010000001 -73.7017514 2015-01-17 15:32:00 obsr551017 S21388160 Stationary P21 EBIRD 17.0 15.0 1 G1112531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292636400 2018-08-04 16:54:52 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-22 15:15:00 obsr657332 S21494694 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292454892 2018-08-04 16:54:49 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 25 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-21 12:15:00 obsr544737 S21480267 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291475294 2015-01-17 19:35:33 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-45 N Mohawk St L3298386 P 42.7793 -73.701932 2015-01-17 15:32:00 obsr504578 S21383433 Stationary P21 EBIRD 17.0 15.0 1 G1112531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291223019 2021-04-01 12:26:53.827486 30494 species avibase-240E3390 House Sparrow Passer domesticus 21 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-15 16:05:00 obsr657332 S21363073 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291106973 2018-08-04 16:53:20 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 beachman road L3293455 P 42.46244 -73.8688 2015-01-15 10:08:00 obsr551017 S21353532 Traveling P22 EBIRD 7.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293258036 2018-08-04 16:55:17 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 15:28:00 obsr657332 S21543345 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323518 2021-04-01 12:26:53.827486 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 53 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290753474 2021-03-23 17:18:00.959502 505 species avibase-C732CB10 American Black Duck Anas rubripes 10 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-12 14:23:00 obsr657332 S21324882 Traveling P22 EBIRD 25.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293265949 2018-08-04 16:55:17 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 15 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-25 15:45:00 obsr657332 S21543973 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291071415 2021-04-01 12:26:53.827486 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 22 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-14 15:05:00 obsr657332 S21350549 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369402190 2018-08-04 16:52:58 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 obsr513002 S27183003 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294005031 2018-08-04 16:55:26 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 7 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-30 14:20:00 obsr657332 S21602777 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292141791 2018-08-04 16:54:47 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-20 15:00:00 obsr657332 S21435366 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293349255 2015-01-26 10:19:21 8773 species avibase-7AA076EF Barred Owl Strix varia 8 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 16:30:00 obsr560402 S21550270 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553640 2021-04-01 12:26:53.827486 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:00:00 obsr409143 S21389711 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867273 2015-01-19 08:53:39 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-19 08:34:00 obsr287339 S21413672 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290370466 2016-02-05 21:24:52 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 27 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-11 10:05:00 obsr287339 S21294085 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293259340 2021-04-01 12:26:53.827486 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-25 15:40:00 obsr657332 S21543446 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294271023 2021-03-23 17:18:00.959502 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-31 14:30:00 obsr657332 S21623792 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290373900 2018-08-04 16:53:06 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 10 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 10:20:00 obsr120906 S21294354 Stationary P21 EBIRD 12.0 3.0 1 G1108432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293386928 2018-08-04 16:55:19 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-26 13:30:00 obsr657332 S21553414 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290381734 2018-08-04 16:53:07 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 11:02:00 obsr504578 S21295062 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625852 2018-08-04 16:53:55 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Albany US-NY-001 13.0 Hollyhock Hollow Sanctuary L1146193 H 42.540149 -73.8703108 2015-01-18 09:35:00 obsr407723 S21395264 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293349247 2018-08-04 16:55:17 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 25 United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-25 16:00:00 obsr560402 S21550269 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292559997 2015-01-21 23:22:00 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 3 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-21 15:50:00 obsr657332 S21488645 Traveling P22 EBIRD 21.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290486857 2018-08-04 16:53:08 30494 species avibase-240E3390 House Sparrow Passer domesticus 8 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 12:00:00 obsr322656 S21303554 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290499189 2021-04-01 12:26:53.827486 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 14:55:00 obsr657332 S21304572 Traveling P22 EBIRD 55.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292056534 2018-08-04 16:54:01 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Albany US-NY-001 13.0 Green Island--Hudson&Tibbitts L3294938 P 42.7492098 -73.6883926 2015-01-19 11:21:00 obsr657332 S21428524 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291543791 2018-08-04 16:53:32 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River from Elks Lodge parking lot L3299203 P 42.7791133 -73.7018476 2015-01-17 15:31:00 obsr386198 S21388928 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094742 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks Club L3305761 P 42.7791903 -73.7017007 2015-01-19 obsr101869 S21431537 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391762 2015-01-11 12:04:22 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Albany US-NY-001 13.0 42.7787x-73.7010 - Nov 11, 2013, 14:03 L2418474 P 42.778698 -73.700989 2015-01-11 12:03:00 obsr322656 S21295881 Stationary P21 EBIRD 1.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146375 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-15 12:15:00 obsr92097 S21356603 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288286375 2021-04-01 12:26:53.827486 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-01-01 12:20:00 obsr546609 S21125084 Traveling P22 EBIRD 57.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534183 2018-08-04 16:53:32 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Albany US-NY-001 13.0 Elks Lodge Parking Lot, Cohoes L2610868 P 42.7792074 -73.70188420000001 2015-01-17 15:35:00 obsr409143 S21388156 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290957496 2018-08-04 16:53:18 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-14 10:30:00 obsr551017 S21341287 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288469339 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-02 11:40:00 obsr287339 S21140015 Traveling P22 EBIRD 40.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292480178 2018-08-04 16:54:50 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 34 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-21 15:00:00 obsr657332 S21482323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293711473 2021-04-01 12:26:53.827486 26109 species avibase-BAC33609 Brown Creeper Certhia americana 22 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-28 13:40:00 obsr657332 S21579405 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299861 2021-03-26 07:46:52.994574 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183910 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480120 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288286372 2021-04-01 12:26:53.827486 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 3 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-01-01 12:20:00 obsr546609 S21125084 Traveling P22 EBIRD 57.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963931 2021-04-01 12:26:53.827486 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288802811 2021-03-24 20:53:39.352228 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-03 09:30:00 obsr178309 S21167379 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288674170 2021-03-23 17:18:00.959502 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes - Bridge Ave. L2524087 P 42.7682498 -73.6956453 2015-01-03 07:40:00 obsr287339 S21156723 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289792407 2015-01-07 23:19:09 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-07 08:25:00 obsr644825 S21246849 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417185 2021-02-07 08:31:53.993611 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-14 08:00:00 obsr7511 S21378636 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293349253 2018-08-04 16:55:17 681 species avibase-407E2CA8 Common Merganser Mergus merganser 800 United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-25 16:00:00 obsr560402 S21550269 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291930014 2018-08-04 16:53:24 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 03:30:00 obsr377411 S21418419 Stationary P21 EBIRD 45.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291100292 2021-03-24 20:53:39.352228 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Albany US-NY-001 13.0 Waldenmaier Road, Delmar L3110574 P 42.5925848 -73.8740015 2015-01-15 09:01:00 obsr551017 S21352891 Traveling P22 EBIRD 6.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291348357 2021-04-01 12:26:53.827486 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Mohawk View L2565459 P 42.7787123 -73.7007205 2015-01-16 09:45:00 obsr409143 S21373112 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292701373 2015-01-22 21:49:31 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Latham-126-138 County Rd 160 L3311103 P 42.750848 -73.80042399999999 2015-01-22 13:30:00 obsr657332 S21499786 Traveling P22 EBIRD 7.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613848 2021-03-23 17:18:00.959502 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-18 08:42:00 obsr407723 S21394179 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294014165 2018-08-04 16:55:27 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-30 15:00:00 obsr657332 S21603563 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289781748 2021-03-24 20:53:39.352228 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-07 13:00:00 obsr547303 S21245788 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408784 2015-01-02 07:00:41 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 200 United States US New York US-NY Albany US-NY-001 13.0 NY 85 near Thruway L3256389 P 42.6574443 -73.8249063 2015-01-01 08:40:00 obsr452367 S21134616 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288629418 2021-04-01 12:26:53.827486 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 5 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-02 10:30:00 obsr409143 S21153482 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198495 2021-03-26 07:46:52.994574 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 4 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292562001 2018-08-04 16:54:50 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-21 16:21:00 obsr657332 S21488782 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292590927 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 150 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-01-22 08:50:00 obsr120906 S21491087 Traveling P22 EBIRD 64.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984447 2021-03-26 07:46:52.994574 592 species avibase-3072CC16 Redhead Aythya americana 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958841 2015-01-24 16:32:54 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Albany US-NY-001 28.0 Slade Hill Rd and Flood Rd L3314376 P 42.5316405 -74.0301132 2015-01-24 08:25:00 obsr409143 S21520057 Traveling P22 EBIRD 10.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094734 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 25 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks Club L3305761 P 42.7791903 -73.7017007 2015-01-19 obsr101869 S21431537 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288469425 2021-04-01 12:26:53.827486 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 Huck Finn's Warehouse L3257297 P 42.660790000000006 -73.74003 2015-01-02 12:35:00 obsr257692 S21140030 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291719418 2015-01-18 16:13:57 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr287339 S21402285 Stationary P21 EBIRD 25.0 14.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291478294 2015-01-17 19:46:42 483 species avibase-85625D75 Mallard Anas platyrhynchos 250 United States US New York US-NY Albany US-NY-001 13.0 Port of Albany, NY L608431 P 42.6267124 -73.7552118 2015-01-17 15:50:00 obsr322656 S21383634 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290142401 2021-03-24 20:53:39.352228 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-09 10:00:00 obsr178309 S21275169 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293558000 2021-04-01 12:26:53.827486 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 5 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288192837 2021-03-23 17:18:00.959502 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 pauley lane L3253415 P 42.6503428 -73.88260600000001 2015-01-01 11:45:00 obsr560402 S21116906 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294105857 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:11:00 obsr504578 S21610513 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291241212 2015-01-16 07:23:56 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-15 obsr620943 S21364336 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288773028 2021-03-23 17:18:00.959502 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 35 United States US New York US-NY Albany US-NY-001 13.0 Vly Creek Marsh L2888967 H 42.6464318 -73.9692714 2015-01-03 13:20:00 obsr452367 S21164874 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291904998 2021-03-26 07:46:52.994574 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027838 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294271031 2021-03-23 17:18:00.959502 7732 species avibase-A091D50A Northern Harrier Circus hudsonius X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-31 14:30:00 obsr657332 S21623792 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417582 2021-02-07 08:31:53.993611 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-13 08:00:00 obsr7511 S21378668 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290950621 2015-01-14 12:43:58 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks L2597661 P 42.77923010000001 -73.7017514 2015-01-14 09:35:00 obsr551017 S21340703 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288978080 2015-01-04 10:41:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Vly Creek Marsh L2888967 H 42.6464318 -73.9692714 2015-01-04 10:40:00 obsr504578 S21183149 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905106 2015-01-19 12:21:02 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-19 10:00:00 obsr551017 S21416527 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289954825 2018-08-04 16:52:55 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 30 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-08 15:00:00 obsr657332 S21260148 Traveling P22 EBIRD 60.0 14.484000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534523 2018-08-04 16:53:53 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr551017 S21388183 Stationary P21 EBIRD 28.0 15.0 1 G1112538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872624 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293161486 2021-03-23 17:18:00.959502 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-25 14:12:00 obsr287339 S21535923 Traveling P22 EBIRD 68.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292633475 2015-01-22 23:23:10 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-22 15:00:00 obsr657332 S21494501 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290754388 2021-03-23 17:18:00.959502 337 species avibase-694C127A Mute Swan Cygnus olor 16 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-12 15:00:00 obsr657332 S21324969 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961236 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 39 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740172 2018-08-04 16:53:24 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 obsr560402 S23337228 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288580433 2018-08-04 16:52:31 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 3 United States US New York US-NY Albany US-NY-001 13.0 Vly Swamp L3258923 P 42.6497115 -73.97915479999999 2015-01-02 13:20:00 obsr594026 S21149465 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291075279 2018-08-04 16:53:19 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 500 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-14 16:15:00 obsr657332 S21350820 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293259344 2021-04-01 12:26:53.827486 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-25 15:40:00 obsr657332 S21543446 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291863391 2015-01-19 08:21:10 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-19 07:49:00 obsr287339 S21413348 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294075644 2021-03-24 20:53:39.352228 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-30 obsr620943 S21608478 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289579824 2015-01-06 21:21:34 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Roesselville L3272127 P 42.6943496 -73.7982948 2015-01-06 10:00:00 obsr70633 S21230302 Stationary P21 EBIRD 150.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281344 2021-03-24 20:53:39.352228 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 09:00:00 obsr491696 S21445865 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935073 2021-03-26 07:46:52.994574 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 3 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323494 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 439 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288247587 2015-01-01 16:55:14 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-01 14:42:00 obsr171042 S21121569 Traveling P22 EBIRD 132.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288957048 2021-03-23 17:18:00.959502 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 2 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-04 08:18:00 obsr287339 S21181410 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288991915 2015-01-04 11:34:53 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-04 11:07:00 obsr504578 S21184271 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293178360 2018-08-04 16:55:16 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 200 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 14:45:00 obsr399201 S21537211 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291483317 2018-08-04 16:53:32 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr504578 S21384068 Stationary P21 EBIRD 28.0 15.0 1 G1112538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291957766 2017-01-11 21:22:56 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 13:45:00 obsr594026 S21420792 Traveling P22 EBIRD 65.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291101765 2015-01-15 09:28:27 456 species avibase-D201EB72 American Wigeon Mareca americana X United States US New York US-NY Albany US-NY-001 13.0 Waldenmaier Road, Delmar L3110574 P 42.5925848 -73.8740015 2015-01-15 09:13:00 obsr551017 S21353039 Traveling P22 EBIRD 7.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291537386 2015-01-17 19:47:06 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 50 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River below Cohoes Falls L2606846 P 42.7791235 -73.70047059999999 2015-01-17 15:30:00 obsr287339 S21388407 Stationary P21 EBIRD 15.0 14.0 1 G1112574 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621474 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-10 08:00:00 obsr639188 S21731716 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288254810 2021-03-24 20:53:39.352228 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-01 09:00:00 obsr178309 S21122167 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369402188 2018-08-04 16:52:58 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 obsr513002 S27183003 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290211240 2015-01-10 15:29:11 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:27:00 obsr551017 S21281082 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293340133 2021-03-26 07:46:52.994574 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-26 08:56:00 obsr504578 S21549445 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291535590 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 08:40:00 obsr409143 S21388262 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291073282 2018-08-04 16:53:19 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-14 15:41:00 obsr657332 S21350685 Traveling P22 EBIRD 17.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693864 2021-03-24 20:53:39.352228 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553646 2021-04-01 12:26:53.827486 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:00:00 obsr409143 S21389711 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288801621 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-02 09:30:00 obsr178309 S21167276 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291416714 2021-03-26 07:46:52.994574 11494 species avibase-20C2214E American Kestrel Falco sparverius X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-16 08:00:00 obsr7511 S21378583 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059202 2021-03-26 07:46:52.994574 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291544683 2021-03-23 17:18:00.959502 505 species avibase-C732CB10 American Black Duck Anas rubripes 85 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:47:00 obsr386198 S21389000 Stationary P21 EBIRD 38.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291416885 2021-03-24 20:53:39.352228 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-15 08:00:00 obsr7511 S21378609 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712503 2019-10-18 07:40:54 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Albany US-NY-001 28.0 Huyck Preserve--Lake Myosotis L304714 H 42.5220704 -74.14839930000001 2015-01-03 08:30:00 obsr708267 S21240370 Traveling P22 EBIRD 170.0 7.081 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293349258 2015-01-26 10:19:21 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 16:30:00 obsr560402 S21550270 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292636406 2018-08-04 16:54:52 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 50 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-22 15:15:00 obsr657332 S21494694 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648397 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-22 15:10:00 obsr287339 S21495474 Traveling P22 EBIRD 63.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292118949 2021-03-24 20:53:39.352228 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Kings Highway Barrens L2584384 H 42.7369323 -73.886095 2015-01-20 09:00:00 obsr312669 S21433587 Traveling P22 EBIRD 90.0 1.931 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508019 2018-08-04 16:53:31 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:50:00 obsr594026 S21386094 Stationary P21 EBIRD 30.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293261605 2021-03-23 17:18:00.959502 303 species avibase-B59E1863 Canada Goose Branta canadensis 150 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-01-25 14:00:00 obsr657332 S21543611 Traveling P22 EBIRD 40.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621956 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 38 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290381742 2018-08-04 16:53:07 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 11:02:00 obsr504578 S21295062 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869059 2021-03-26 07:46:52.994574 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 40 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 14:52:00 obsr287339 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287707 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 42 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290136754 2015-01-10 08:28:55 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-09 obsr620943 S21274627 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812967 2021-03-23 17:18:00.959502 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-28 15:05:00 obsr657332 S21587566 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288273336 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:30:00 obsr594026 S21123860 Traveling P22 EBIRD 70.0 1.207 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289875012 2021-03-26 07:46:52.994574 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-08 12:00:00 obsr92097 S21253779 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293871542 2017-08-16 16:28:24 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-29 14:28:00 obsr171042 S21592605 Traveling P22 EBIRD 96.0 5.792999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290957504 2018-08-04 16:53:18 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-14 10:30:00 obsr551017 S21341287 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290499197 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 24 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 14:55:00 obsr657332 S21304572 Traveling P22 EBIRD 55.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289324556 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-04 09:49:00 obsr125126 S21210282 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291542914 2018-08-04 16:53:31 447 species avibase-C235A4D7 Gadwall Mareca strepera 10 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:48:00 obsr386198 S21388858 Stationary P21 EBIRD 37.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288676010 2015-01-18 13:21:44 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 07:24:00 obsr407723 S21156879 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204574 2015-01-25 17:59:47 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 07:48:00 obsr504578 S21539320 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112546 2018-08-04 16:52:37 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River Cohoes side from Waterford L2606895 P 42.78284620000001 -73.7041211 2015-01-03 10:00:00 obsr594026 S21193773 Stationary P21 EBIRD 40.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288673370 2016-01-26 10:16:19 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 29 United States US New York US-NY Albany US-NY-001 13.0 The Black Bridge, Green Island L4159773 H 42.7601592 -73.68771269999999 2015-01-03 07:20:00 obsr287339 S21156653 Traveling P22 EBIRD 14.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289237983 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-05 08:00:00 obsr7511 S21203183 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290370656 2015-01-11 11:13:48 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk-Rupert Rd L3284385 P 42.539554 -73.854804 2015-01-11 10:11:00 obsr407723 S21294095 Traveling P22 EBIRD 4.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292179704 2021-04-01 12:26:53.827486 6339 species avibase-8535345B Herring Gull Larus argentatus 5 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-29 Cataract St L3306369 P 42.784089 -73.707027 2015-01-20 15:10:00 obsr657332 S21435562 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289022136 2015-01-04 13:16:46 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.76281290000001 2015-01-04 11:56:00 obsr287339 S21186656 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293386934 2018-08-04 16:55:19 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-26 13:30:00 obsr657332 S21553414 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290297619 2015-01-10 20:56:29 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:30:00 obsr551017 S21288315 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288372012 2015-05-09 13:02:45 20829 species avibase-B9B272F4 Common Raven Corvus corax 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:15:00 obsr322656 S21132019 Traveling P22 EBIRD 60.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290144584 2021-04-01 12:26:53.827486 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-10 09:00:00 obsr7511 S21275375 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292852287 2015-01-23 23:01:48 6339 species avibase-8535345B Herring Gull Larus argentatus 10 United States US New York US-NY Albany US-NY-001 13.0 Van Schaick Island, Delaware Ave L3312905 P 42.7685963 -73.68541 2015-01-23 13:40:00 obsr657332 S21511603 Traveling P22 EBIRD 95.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539545 2018-08-04 16:53:32 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:45:00 obsr409143 S21388575 Stationary P21 EBIRD 35.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291251961 2015-01-16 10:01:57 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 09:57:00 obsr504578 S21365324 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288683823 2018-08-04 16:52:36 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-03 08:43:00 obsr287339 S21157449 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292767826 2015-01-23 13:53:36 616 species avibase-25C94A8F Greater Scaup Aythya marila 4 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-23 10:10:00 obsr409143 S21504888 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288479533 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Huck Finn's Warehouse L3257297 P 42.660790000000006 -73.74003 2015-01-02 13:07:00 obsr257692 S21140833 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291408482 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 09:00:00 obsr287339 S21377904 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292284805 2015-01-21 11:39:11 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 50 United States US New York US-NY Albany US-NY-001 13.0 Island Creek Park L3307942 P 42.63569 -73.75446 2015-01-21 11:33:00 obsr551017 S21446141 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694937 2018-08-04 16:53:13 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-12 10:15:00 obsr546609 S21320325 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220316 2021-03-26 07:46:52.994574 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 30 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292086252 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 Glenmont New York, US L3305646 P 42.5932799 -73.8080406 2015-01-20 07:30:00 obsr602177 S21430796 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271569 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551649 2021-03-24 20:53:39.352228 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-02 08:30:00 obsr644825 S21147085 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288700276 2021-03-26 07:46:52.994574 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 3 United States US New York US-NY Albany US-NY-001 13.0 Albany International Airport--Sicker Rd. eastern side L2494355 H 42.751172 -73.80131899999999 2015-01-03 10:10:00 obsr287339 S21158898 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291514741 2018-08-04 16:53:32 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 16 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:45:00 obsr594026 S21386563 Stationary P21 EBIRD 30.0 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290505421 2018-08-04 16:53:11 592 species avibase-3072CC16 Redhead Aythya americana 50 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-11 15:56:00 obsr657332 S21305105 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289948738 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-08 08:30:00 obsr7511 S21259688 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740169 2021-04-01 12:26:53.827486 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus X United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-17 obsr560402 S23337227 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292186031 2015-01-20 18:49:59 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 6 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-20 13:50:00 obsr594026 S21438658 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291107156 2018-08-04 16:53:20 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-15 09:50:00 obsr120906 S21353549 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291028531 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-14 11:45:00 obsr594026 S21346986 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292810786 2021-04-01 12:26:53.827486 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 6 United States US New York US-NY Albany US-NY-001 13.0 Hudson River shoreline at USS Slater site L3245378 P 42.6421355 -73.74999229999999 2015-01-23 11:50:00 obsr594026 S21508425 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294005895 2018-08-04 16:55:26 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-30 14:20:00 obsr657332 S21602777 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537237 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408588 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290313066 2018-08-04 16:53:04 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 45 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-10 16:43:00 obsr657332 S21289569 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289024909 2021-03-23 17:18:00.959502 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-01 obsr551017 S21186896 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288626944 2018-08-04 16:52:28 591 species avibase-1929E1E1 Canvasback Aythya valisineria 175 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-02 09:30:00 obsr409143 S21153279 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290297991 2015-01-10 20:58:54 11371 species avibase-75600969 Northern Flicker Colaptes auratus X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-10 16:00:00 obsr551017 S21288356 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290753477 2021-03-23 17:18:00.959502 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-12 14:23:00 obsr657332 S21324882 Traveling P22 EBIRD 25.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290371289 2017-08-16 16:18:57 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Albany US-NY-001 13.0 Waldenmaier Road, Delmar L3110574 P 42.5925848 -73.8740015 2015-01-11 10:11:00 obsr551017 S21294151 Traveling P22 EBIRD 8.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292579281 2021-03-23 17:18:00.959502 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-22 07:34:00 obsr407723 S21490126 Traveling P22 EBIRD 12.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289000794 2021-04-01 12:26:53.827486 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Albany US-NY-001 13.0 Colonie Center L650311 P 42.7104674 -73.8174391 2015-01-04 11:38:00 obsr547303 S21184976 Incidental P20 EBIRD 2.0 1 G1094999 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290304554 2018-08-04 16:53:03 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 11 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:35:00 obsr657332 S21288891 Traveling P22 EBIRD 45.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288966739 2021-03-23 17:18:00.959502 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 10 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-04 09:22:00 obsr504578 S21182191 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407535 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291949106 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 40 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-19 10:49:00 obsr546609 S21420041 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291924867 2021-03-26 07:46:52.994574 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 4 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-19 11:32:00 obsr171042 S21417992 Traveling P22 EBIRD 136.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963842 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 30 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294007665 2021-04-01 12:26:53.827486 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-30 14:45:00 obsr657332 S21603025 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293589090 2021-03-24 20:53:39.352228 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 6 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-27 09:50:00 obsr594026 S21570080 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292959583 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.574738700000005 -74.15542020000001 2015-01-24 09:15:00 obsr409143 S21520100 Traveling P22 EBIRD 80.0 19.312 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284490 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 42 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292560000 2015-01-21 23:22:00 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-21 15:50:00 obsr657332 S21488645 Traveling P22 EBIRD 21.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417851 2021-03-26 07:46:52.994574 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-12 08:00:00 obsr7511 S21378694 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291253993 2017-12-12 11:24:35 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-16 09:54:00 obsr546609 S21365476 Traveling P22 EBIRD 14.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277945 2021-03-26 07:46:52.994574 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 4 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-01 12:40:00 obsr594026 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867280 2015-01-19 08:53:39 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 5 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-19 08:34:00 obsr287339 S21413672 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292631640 2015-01-22 14:57:07 6339 species avibase-8535345B Herring Gull Larus argentatus 10 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-22 14:25:00 obsr657332 S21494361 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288969101 2021-04-01 12:26:53.827486 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-04 08:30:00 obsr7511 S21182411 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288552245 2015-01-02 17:31:20 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 15:50:00 obsr644825 S21147142 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803292 2021-04-01 12:26:53.827486 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289989526 2015-01-09 10:51:44 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-08 07:45:00 obsr644825 S21263052 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290941191 2015-01-14 07:55:12 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-13 obsr620943 S21340030 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290369683 2021-03-23 17:18:00.959502 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-11 09:46:00 obsr551017 S21294028 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293258042 2018-08-04 16:55:17 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 15:28:00 obsr657332 S21543345 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625860 2018-08-04 16:53:55 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Hollyhock Hollow Sanctuary L1146193 H 42.540149 -73.8703108 2015-01-18 09:35:00 obsr407723 S21395264 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291509066 2015-01-17 19:47:06 483 species avibase-85625D75 Mallard Anas platyrhynchos 50 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River below Cohoes Falls L2606846 P 42.7791235 -73.70047059999999 2015-01-17 15:30:00 obsr594026 S21386157 Stationary P21 EBIRD 15.0 14.0 1 G1112574 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288672467 2015-01-03 07:17:30 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 60 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-03 07:06:00 obsr287339 S21156572 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773084 2021-03-23 17:18:00.959502 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 37 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310841 2021-03-23 17:18:00.959502 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-16 08:05:00 obsr644825 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089274 2017-04-05 16:49:11 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172706 2021-11-14 08:08:43.2446 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-31 08:30:00 obsr546609 S21616032 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146369 2021-03-26 07:46:52.994574 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 60 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-15 12:15:00 obsr92097 S21356603 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288999572 2021-04-01 12:26:53.827486 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Albany US-NY-001 13.0 Colonie Center L650311 P 42.7104674 -73.8174391 2015-01-04 11:38:00 obsr407723 S21184866 Incidental P20 EBIRD 2.0 1 G1094999 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292852933 2015-01-23 22:58:47 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 20 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-23 15:48:00 obsr657332 S21511649 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288509541 2018-08-04 16:52:27 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 200 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-02 obsr560402 S21143287 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292816132 2015-01-23 18:47:57 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Albany US-NY-001 13.0 Rte 85A behind Falvo's L3312467 P 42.6337252 -73.9020225 2015-01-23 14:35:00 obsr594026 S21508776 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679897 2021-03-26 07:46:52.994574 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-03 08:15:00 obsr7511 S21157120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286209 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-10 15:30:00 obsr322656 S21281606 Stationary P21 EBIRD 80.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289443588 2021-03-26 07:46:52.994574 26109 species avibase-BAC33609 Brown Creeper Certhia americana 6 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-06 08:00:00 obsr7511 S21219332 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288509451 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 8 United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-02 obsr560402 S21143281 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293711479 2021-04-01 12:26:53.827486 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-28 13:40:00 obsr657332 S21579405 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294029139 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 14 United States US New York US-NY Albany US-NY-001 13.0 NY, Albany, 26 Eton Drive Neighborhood L2733019 P 42.6537682 -73.8467359 2015-01-30 15:30:00 obsr171042 S21604833 Traveling P22 EBIRD 56.0 3.54 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291347177 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 10:20:00 obsr409143 S21373036 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288187359 2017-11-18 19:39:53 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 krumkill rd near rt 306 L3253337 P 42.6589592 -73.8953733 2015-01-01 12:00:00 obsr560402 S21116423 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294164104 2021-03-24 20:53:39.352228 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Albany US-NY-001 13.0 Vagele Lane, Glenmont L2868631 P 42.597550700000006 -73.78205940000001 2015-01-31 obsr551017 S21615462 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292768145 2015-02-02 07:49:52 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Albany US-NY-001 13.0 Center Island, Green Island L2466715 P 42.7388935 -73.68970290000001 2015-01-23 10:30:00 obsr409143 S21504913 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291408491 2021-03-26 07:46:52.994574 592 species avibase-3072CC16 Redhead Aythya americana 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 09:00:00 obsr287339 S21377904 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289973512 2015-01-09 07:17:28 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-08 obsr620943 S21261580 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961234 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295183437 2021-03-26 07:46:52.994574 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-31 09:01:00 obsr125126 S21696603 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289781756 2021-03-24 20:53:39.352228 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-07 13:00:00 obsr547303 S21245788 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292960399 2015-01-24 16:38:50 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-24 16:00:00 obsr409143 S21520157 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872634 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198514 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 7 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293589077 2021-03-24 20:53:39.352228 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-27 09:50:00 obsr594026 S21570080 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291107159 2018-08-04 16:53:20 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-15 09:50:00 obsr120906 S21353549 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288538406 2021-04-01 12:26:53.827486 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr697870 S21145897 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288254812 2021-03-24 20:53:39.352228 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-01 09:00:00 obsr178309 S21122167 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002092 2021-04-01 12:26:53.827486 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr697870 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271527 2021-04-01 12:26:53.827486 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 5 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr120906 S21205860 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291017543 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-14 14:54:00 obsr544737 S21346058 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587699 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-27 08:03:00 obsr125126 S21569971 Stationary P21 EBIRD 544.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281354 2021-03-24 20:53:39.352228 6339 species avibase-8535345B Herring Gull Larus argentatus 28 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 09:00:00 obsr491696 S21445865 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293558011 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288801614 2021-03-24 20:53:39.352228 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 Male, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-02 09:30:00 obsr178309 S21167276 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869071 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 14:52:00 obsr287339 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621961 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288631215 2021-03-26 07:46:52.994574 616 species avibase-25C94A8F Greater Scaup Aythya marila 8 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-01 08:00:00 obsr409143 S21153627 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295622739 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-11 08:00:00 obsr639188 S21731845 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288273344 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:30:00 obsr594026 S21123860 Traveling P22 EBIRD 70.0 1.207 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984458 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288676017 2015-01-18 13:21:44 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 07:24:00 obsr407723 S21156879 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288674173 2021-03-23 17:18:00.959502 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes - Bridge Ave. L2524087 P 42.7682498 -73.6956453 2015-01-03 07:40:00 obsr287339 S21156723 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249276 2021-03-23 17:18:00.959502 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 08:00:00 obsr546609 S21365094 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288275653 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-01 08:45:00 obsr594026 S21124074 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963941 2021-04-01 12:26:53.827486 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289576787 2015-01-06 21:05:58 662 species avibase-FB738385 Bufflehead Bucephala albeola 14 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-06 08:00:00 obsr409143 S21230120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288683826 2018-08-04 16:52:36 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-03 08:43:00 obsr287339 S21157449 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292116185 2021-04-01 12:26:53.827486 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-20 11:50:00 obsr287339 S21433340 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288580437 2018-08-04 16:52:31 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 3 United States US New York US-NY Albany US-NY-001 13.0 Vly Swamp L3258923 P 42.6497115 -73.97915479999999 2015-01-02 13:20:00 obsr594026 S21149465 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288288209 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408584 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292086251 2021-03-26 07:46:52.994574 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Albany US-NY-001 13.0 Glenmont New York, US L3305646 P 42.5932799 -73.8080406 2015-01-20 07:30:00 obsr602177 S21430796 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292978851 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-24 08:56:00 obsr125126 S21521406 Stationary P21 EBIRD 519.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291349077 2021-03-24 20:53:39.352228 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-16 08:00:00 obsr409143 S21373167 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289022142 2015-01-04 13:16:46 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.76281290000001 2015-01-04 11:56:00 obsr287339 S21186656 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292598021 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-22 08:29:00 obsr125126 S21491678 Stationary P21 EBIRD 144.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935075 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291540059 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 9 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-17 12:15:00 obsr409143 S21388629 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289989534 2015-01-09 10:51:44 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-08 07:45:00 obsr644825 S21263052 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407547 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290142397 2021-03-24 20:53:39.352228 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-09 10:00:00 obsr178309 S21275169 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289875007 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-08 12:00:00 obsr92097 S21253779 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290853413 2015-01-13 15:31:40 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 9 Oakbrook Manor, Ravena L2833548 P 42.4649217 -73.8129598 2015-01-13 15:15:00 obsr395936 S21332818 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291104286 2015-04-17 15:07:35 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Albany US-NY-001 13.0 Tracy Rd. Swamps L590801 H 42.4957279 -73.87226700000001 2015-01-15 09:47:00 obsr551017 S21353289 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613855 2021-03-23 17:18:00.959502 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-18 08:42:00 obsr407723 S21394179 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984353 2015-01-04 11:00:53 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Albany US-NY-001 13.0 US-NY-Voorheesville-40-108 Co Rd 256 L3264669 P 42.657235 -74.035563 2015-01-04 11:00:00 obsr504578 S21183541 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480133 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693875 2021-03-24 20:53:39.352228 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310840 2021-03-23 17:18:00.959502 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-16 08:05:00 obsr644825 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289976526 2021-03-26 07:46:52.994574 26109 species avibase-BAC33609 Brown Creeper Certhia americana 15 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 08:00:00 obsr491696 S21261827 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059213 2021-03-26 07:46:52.994574 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 8 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288991920 2015-01-04 11:34:53 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-04 11:07:00 obsr504578 S21184271 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288802810 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 Male, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-03 09:30:00 obsr178309 S21167379 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773087 2021-03-23 17:18:00.959502 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220329 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204584 2015-01-25 17:59:47 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 07:48:00 obsr504578 S21539320 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183919 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294075648 2021-03-24 20:53:39.352228 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-30 obsr620943 S21608478 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089285 2017-04-05 16:49:11 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271563 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963855 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290136746 2015-01-10 08:28:55 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-09 obsr620943 S21274627 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293911456 2021-04-01 12:26:53.827486 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr120906 S21595535 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291241207 2015-01-16 07:23:56 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-15 obsr620943 S21364336 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323508 2021-04-01 12:26:53.827486 26109 species avibase-BAC33609 Brown Creeper Certhia americana 20 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905010 2021-03-26 07:46:52.994574 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727250 2021-03-26 07:46:52.994574 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-07 15:59:00 obsr125126 S21241585 Stationary P21 EBIRD 61.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277940 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-01 12:40:00 obsr594026 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086443 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 08:30:00 obsr287339 S21529887 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287990 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537231 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288978081 2015-01-04 10:41:56 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Albany US-NY-001 13.0 Vly Creek Marsh L2888967 H 42.6464318 -73.9692714 2015-01-04 10:40:00 obsr504578 S21183149 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803307 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089272 2017-04-05 16:49:11 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292579280 2021-03-23 17:18:00.959502 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-22 07:34:00 obsr407723 S21490126 Traveling P22 EBIRD 12.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198505 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287708 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935076 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 8 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291408485 2021-03-26 07:46:52.994574 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 09:00:00 obsr287339 S21377904 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773098 2021-03-23 17:18:00.959502 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293871546 2017-08-16 16:28:24 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-29 14:28:00 obsr171042 S21592605 Traveling P22 EBIRD 96.0 5.792999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289237980 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-05 08:00:00 obsr7511 S21203183 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220323 2021-03-26 07:46:52.994574 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293977302 2015-01-30 11:30:14 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 10 United States US New York US-NY Albany US-NY-001 28.0 home L3327128 P 42.5625953 -73.97422490000001 2015-01-30 11:00:00 obsr141188 S21600865 Stationary P21 EBIRD 3.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288773029 2021-03-23 17:18:00.959502 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 10 United States US New York US-NY Albany US-NY-001 13.0 Vly Creek Marsh L2888967 H 42.6464318 -73.9692714 2015-01-03 13:20:00 obsr452367 S21164874 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292657560 2015-01-22 17:14:49 30494 species avibase-240E3390 House Sparrow Passer domesticus 50 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers Environmental Education Center L2178210 P 42.61905 -73.88665999999999 2015-01-21 13:45:00 obsr544737 S21496353 Stationary P21 EBIRD 5.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417184 2021-02-07 08:31:53.993611 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-14 08:00:00 obsr7511 S21378636 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408595 2021-03-26 07:46:52.994574 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984453 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288969103 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-04 08:30:00 obsr7511 S21182411 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289443591 2021-03-26 07:46:52.994574 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-06 08:00:00 obsr7511 S21219332 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288275646 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-01 08:45:00 obsr594026 S21124074 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294014166 2018-08-04 16:55:27 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 16 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-30 15:00:00 obsr657332 S21603563 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407541 2021-03-26 07:46:52.994574 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323509 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 176 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625864 2018-08-04 16:53:55 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 8 United States US New York US-NY Albany US-NY-001 13.0 Hollyhock Hollow Sanctuary L1146193 H 42.540149 -73.8703108 2015-01-18 09:35:00 obsr407723 S21395264 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289952815 2017-08-16 16:14:31 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-07 16:00:00 obsr317421 S21260008 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480125 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288372018 2015-05-09 13:02:45 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:15:00 obsr322656 S21132019 Traveling P22 EBIRD 60.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291924871 2021-03-26 07:46:52.994574 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-19 11:32:00 obsr171042 S21417992 Traveling P22 EBIRD 136.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204577 2015-01-25 17:59:47 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 07:48:00 obsr504578 S21539320 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291456229 2015-01-17 14:21:38 592 species avibase-3072CC16 Redhead Aythya americana 7 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 John Boyd Thacher SP--North L2588143 H 42.6799431 -74.042839 2015-01-16 10:00:00 obsr258063 S21381921 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288247590 2015-01-01 16:55:14 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-01 14:42:00 obsr171042 S21121569 Traveling P22 EBIRD 132.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198496 2021-03-26 07:46:52.994574 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 3 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089279 2017-04-05 16:49:11 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905005 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 9 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961241 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284491 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679898 2021-03-26 07:46:52.994574 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 150 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-03 08:15:00 obsr7511 S21157120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963849 2021-03-26 07:46:52.994574 592 species avibase-3072CC16 Redhead Aythya americana 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803298 2021-04-01 12:26:53.827486 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086438 2021-03-26 07:46:52.994574 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 08:30:00 obsr287339 S21529887 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803511 2016-04-22 12:05:44 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-10 obsr540914 S26514111 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288275649 2021-03-26 07:46:52.994574 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-01 08:45:00 obsr594026 S21124074 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289711862 2019-10-18 07:40:54 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 4 United States US New York US-NY Albany US-NY-001 28.0 Huyck Preserve--Lake Myosotis L304714 H 42.5220704 -74.14839930000001 2015-01-03 08:30:00 obsr708267 S21240370 Traveling P22 EBIRD 170.0 7.081 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294105861 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:11:00 obsr504578 S21610513 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294164098 2021-03-24 20:53:39.352228 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Albany US-NY-001 13.0 Vagele Lane, Glenmont L2868631 P 42.597550700000006 -73.78205940000001 2015-01-31 obsr551017 S21615462 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294075659 2021-03-24 20:53:39.352228 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-30 obsr620943 S21608478 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291408487 2021-03-26 07:46:52.994574 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 09:00:00 obsr287339 S21377904 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613851 2021-03-23 17:18:00.959502 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-18 08:42:00 obsr407723 S21394179 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288469345 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 9 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-02 11:40:00 obsr287339 S21140015 Traveling P22 EBIRD 40.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292590934 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 16 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-01-22 08:50:00 obsr120906 S21491087 Traveling P22 EBIRD 64.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289973513 2015-01-09 07:17:28 251 domestic avibase-6835DC6C Graylag Goose (Domestic type) Anser anser (Domestic type) 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-08 obsr620943 S21261580 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293340135 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-26 08:56:00 obsr504578 S21549445 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220324 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291253992 2017-12-12 11:24:35 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-16 09:54:00 obsr546609 S21365476 Traveling P22 EBIRD 14.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271578 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183915 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289875001 2021-03-26 07:46:52.994574 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-08 12:00:00 obsr92097 S21253779 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293161479 2021-03-23 17:18:00.959502 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-25 14:12:00 obsr287339 S21535923 Traveling P22 EBIRD 68.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284493 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963850 2021-03-26 07:46:52.994574 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299865 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293822279 2021-03-26 07:46:52.994574 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:49:00 obsr551017 S21588434 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323523 2021-04-01 12:26:53.827486 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 15 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291102559 2015-01-15 09:39:41 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 28.0 Holt Preserve L392283 H 42.5443701 -73.932023 2015-01-15 09:29:00 obsr551017 S21353108 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869065 2021-03-26 07:46:52.994574 31268 issf avibase-95F9C840 Purple Finch Haemorhous purpureus Purple Finch (Eastern) Haemorhous purpureus purpureus 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 14:52:00 obsr287339 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753593 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-03 12:39:00 obsr287339 S21163284 Traveling P22 EBIRD 83.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288717657 2021-03-26 07:46:52.994574 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Feura Bush L3260809 P 42.589187 -73.869008 2015-01-03 11:25:00 obsr407723 S21160475 Traveling P22 EBIRD 10.0 9.656 2.0 1 G1093025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764436 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Feura Bush L3260809 P 42.589187 -73.869008 2015-01-03 11:25:00 obsr547303 S21164122 Traveling P22 EBIRD 10.0 9.656 2.0 1 G1093025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621967 2021-03-26 07:46:52.994574 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961238 2021-03-26 07:46:52.994574 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290369685 2021-03-23 17:18:00.959502 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 50 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-11 09:46:00 obsr551017 S21294028 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480128 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 12 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537246 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209733 2021-03-26 07:46:52.994574 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-31 09:15:00 obsr409143 S21618822 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287710 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295622728 2021-03-26 07:46:52.994574 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-11 08:00:00 obsr639188 S21731845 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290801194 2015-01-13 08:26:33 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-13 08:23:00 obsr684648 S21328187 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288683824 2018-08-04 16:52:36 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 15 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-03 08:43:00 obsr287339 S21157449 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407542 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291017539 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-14 14:54:00 obsr544737 S21346058 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290941195 2015-01-14 07:55:12 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-13 obsr620943 S21340030 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290136751 2015-01-10 08:28:55 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 4 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-09 obsr620943 S21274627 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289578160 2015-01-06 21:10:32 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Albany US-NY-001 13.0 Albany International Airport--Sicker Rd. eastern side L2494355 H 42.751172 -73.80131899999999 2015-01-06 13:00:00 obsr409143 S21230193 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204579 2015-01-25 17:59:47 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 07:48:00 obsr504578 S21539320 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292116184 2021-04-01 12:26:53.827486 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-20 11:50:00 obsr287339 S21433340 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291241205 2015-01-16 07:23:56 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-15 obsr620943 S21364336 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198506 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812961 2021-03-23 17:18:00.959502 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-28 15:05:00 obsr657332 S21587566 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291617837 2015-01-18 09:32:47 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-18 09:30:00 obsr322656 S21394554 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289515463 2015-01-06 16:21:26 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-06 16:15:00 obsr322656 S21225336 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290486860 2018-08-04 16:53:08 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 12:00:00 obsr322656 S21303554 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292484568 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-29 Cataract St L3306369 P 42.784089 -73.707027 2015-01-21 15:30:00 obsr657332 S21482662 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293262692 2015-01-25 22:26:48 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-25 16:00:00 obsr657332 S21543700 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291128572 2015-01-15 13:01:43 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 28.0 US-NY-Berne-1946-1948 NY-443 L3293694 P 42.628759 -74.159983 2015-01-15 13:00:00 obsr684648 S21355179 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293259342 2021-04-01 12:26:53.827486 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-25 15:40:00 obsr657332 S21543446 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291636727 2015-01-18 11:46:09 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-18 11:05:00 obsr407723 S21396210 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290373901 2018-08-04 16:53:06 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 10:20:00 obsr120906 S21294354 Stationary P21 EBIRD 12.0 3.0 1 G1108432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291223015 2021-04-01 12:26:53.827486 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-15 16:05:00 obsr657332 S21363073 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291648551 2015-01-18 12:41:08 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Glenmont-Van Wies Point Rd L3300757 P 42.582687 -73.756929 2015-01-18 12:02:00 obsr407723 S21397198 Traveling P22 EBIRD 4.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292127663 2015-01-20 13:40:03 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 08:30:00 obsr258063 S21434265 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773090 2021-03-23 17:18:00.959502 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 1 Unknown Sex, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290085411 2018-08-04 16:52:58 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-09 15:50:00 obsr657332 S21270727 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812845 2015-01-29 08:33:36 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-28 22:58:00 obsr657332 S21587550 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812857 2018-08-04 16:55:22 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-28 13:55:00 obsr657332 S21587552 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146371 2021-03-26 07:46:52.994574 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-15 12:15:00 obsr92097 S21356603 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290960852 2015-01-14 12:41:50 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-14 11:02:00 obsr551017 S21341599 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289516444 2015-01-06 17:10:33 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Ravena L3271565 P 42.4902661 -73.8207364 2015-01-06 16:23:00 obsr547303 S21225419 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291075978 2015-01-15 09:57:06 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Albany US-NY-001 13.0 Green Island L3292979 P 42.7444909 -73.69105340000002 2015-01-14 16:30:00 obsr657332 S21350870 Traveling P22 EBIRD 30.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288509540 2018-08-04 16:52:27 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-02 obsr560402 S21143287 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369402191 2018-08-04 16:52:58 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 obsr513002 S27183003 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291521327 2018-08-04 16:53:27 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Albany US-NY-001 13.0 Clapper Road L1347463 P 42.554835 -73.7793058 2015-01-17 08:40:00 obsr287339 S21387122 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294081568 2018-08-04 16:55:27 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 Unknown Sex, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-30 15:00:00 obsr657332 S21603563 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290499198 2021-04-01 12:26:53.827486 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 Unknown Sex, Adult (1); Unknown Sex, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 14:55:00 obsr657332 S21304572 Traveling P22 EBIRD 55.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292056536 2018-08-04 16:54:01 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Albany US-NY-001 13.0 Green Island--Hudson&Tibbitts L3294938 P 42.7492098 -73.6883926 2015-01-19 11:21:00 obsr657332 S21428524 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112843 2018-08-04 16:52:37 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 Unknown Sex, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 Mohawk River Cohoes side from Waterford L2606895 P 42.78284620000001 -73.7041211 2015-01-03 10:00:00 obsr594026 S21193773 Stationary P21 EBIRD 40.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288683816 2018-08-04 16:52:36 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-03 08:43:00 obsr287339 S21157449 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323512 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 Unknown Sex, Immature (1); Unknown Sex, Adult (3) United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291569134 2015-01-17 22:11:53 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Green Island L3292979 P 42.7444909 -73.69105340000002 2015-01-17 13:20:00 obsr657332 S21390863 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293386930 2018-08-04 16:55:19 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-26 13:30:00 obsr657332 S21553414 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290879841 2015-01-13 18:06:54 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 Unknown Sex, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Mohawk River below Cohoes Falls L2606846 P 42.7791235 -73.70047059999999 2015-01-13 10:50:00 obsr594026 S21335177 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291026959 2015-01-14 17:48:13 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 Unknown Sex, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 I-787 just S of exit 8, Watervliet L3292330 P 42.7272726 -73.69918050000001 2015-01-14 11:30:00 obsr594026 S21346838 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290957500 2018-08-04 16:53:18 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-14 10:30:00 obsr551017 S21341287 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292688719 2015-01-23 09:32:49 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-22 16:26:00 obsr657332 S21498880 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291535586 2021-04-01 12:26:53.827486 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 08:40:00 obsr409143 S21388262 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294005894 2018-08-04 16:55:26 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-30 14:20:00 obsr657332 S21602777 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292636404 2018-08-04 16:54:52 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-22 15:15:00 obsr657332 S21494694 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292631635 2015-01-22 14:57:07 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-22 14:25:00 obsr657332 S21494361 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289954819 2018-08-04 16:52:55 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-08 15:00:00 obsr657332 S21260148 Traveling P22 EBIRD 60.0 14.484000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292631237 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-29 Cataract St L3306369 P 42.784089 -73.707027 2015-01-22 14:40:00 obsr657332 S21494330 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294271027 2021-03-23 17:18:00.959502 456 species avibase-D201EB72 American Wigeon Mareca americana 5 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-31 14:30:00 obsr657332 S21623792 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290870334 2018-08-04 16:53:06 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 10:20:00 obsr697870 S21334381 Stationary P21 EBIRD 12.0 3.0 1 G1108432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292284804 2015-01-21 11:39:11 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Island Creek Park L3307942 P 42.63569 -73.75446 2015-01-21 11:33:00 obsr551017 S21446141 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291223906 2018-08-04 16:53:22 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-15 16:27:00 obsr657332 S21363127 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553638 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 Unknown Sex, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:00:00 obsr409143 S21389711 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290304558 2018-08-04 16:53:03 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 Female, Adult (1); Unknown Sex, Immature (1); Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:35:00 obsr657332 S21288891 Traveling P22 EBIRD 45.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292559998 2015-01-21 23:22:00 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 Unknown Sex, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-21 15:50:00 obsr657332 S21488645 Traveling P22 EBIRD 21.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290211237 2015-01-10 15:29:11 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:27:00 obsr551017 S21281082 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291253995 2017-12-12 11:24:35 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 Unknown Sex, Adult (2) United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-16 09:54:00 obsr546609 S21365476 Traveling P22 EBIRD 14.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292852635 2015-01-23 22:53:52 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-23 15:40:00 obsr657332 S21511627 Stationary P21 EBIRD 5.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292144387 2021-04-01 12:26:53.827486 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-29 Cataract St L3306369 P 42.784089 -73.707027 2015-01-20 15:10:00 obsr657332 S21435562 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094747 2021-04-01 12:26:53.827486 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks Club L3305761 P 42.7791903 -73.7017007 2015-01-19 obsr101869 S21431537 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292186030 2015-01-20 18:49:59 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 Unknown Sex, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-20 13:50:00 obsr594026 S21438658 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293349251 2018-08-04 16:55:17 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-25 16:00:00 obsr560402 S21550269 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291949109 2021-04-01 12:26:53.827486 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 Unknown Sex, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-19 10:49:00 obsr546609 S21420041 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290211239 2015-01-10 15:29:11 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:27:00 obsr551017 S21281082 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740168 2021-04-01 12:26:53.827486 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-17 obsr560402 S23337227 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508855 2015-01-17 18:03:29 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:47:00 obsr287339 S21386138 Stationary P21 EBIRD 30.0 2.0 0 G1112280 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291542915 2018-08-04 16:53:31 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:48:00 obsr386198 S21388858 Stationary P21 EBIRD 37.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508016 2018-08-04 16:53:31 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:50:00 obsr594026 S21386094 Stationary P21 EBIRD 30.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470778 2018-08-04 16:53:31 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr504578 S21383073 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534918 2021-03-26 07:46:52.994574 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:45:00 obsr409143 S21388220 Stationary P21 EBIRD 20.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292737589 2015-01-23 09:32:49 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-22 16:26:00 obsr657332 S21498880 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534533 2018-08-04 16:53:31 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr551017 S21388184 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291500449 2015-01-17 18:03:29 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:47:00 obsr546609 S21385433 Stationary P21 EBIRD 30.0 2.0 0 G1112280 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292932469 2015-01-24 18:23:43 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk- Barent Winne Rd. L3314742 P 42.551263 -73.7595463 2015-01-24 14:28:00 obsr120906 S21517950 Traveling P22 EBIRD 5.0 0.161 3.0 1 G1121256 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407536 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 12 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694932 2018-08-04 16:53:13 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-12 10:15:00 obsr546609 S21320325 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293340134 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-26 08:56:00 obsr504578 S21549445 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271574 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059203 2021-03-26 07:46:52.994574 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408594 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172712 2021-11-14 08:08:43.2446 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-31 08:30:00 obsr546609 S21616032 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209730 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-31 09:15:00 obsr409143 S21618822 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292590930 2021-03-26 07:46:52.994574 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-01-22 08:50:00 obsr120906 S21491087 Traveling P22 EBIRD 64.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288254809 2021-03-24 20:53:39.352228 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-01 09:00:00 obsr178309 S21122167 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292086255 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Glenmont New York, US L3305646 P 42.5932799 -73.8080406 2015-01-20 07:30:00 obsr602177 S21430796 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872625 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294164094 2021-03-24 20:53:39.352228 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 5 United States US New York US-NY Albany US-NY-001 13.0 Vagele Lane, Glenmont L2868631 P 42.597550700000006 -73.78205940000001 2015-01-31 obsr551017 S21615462 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291408483 2021-03-26 07:46:52.994574 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 09:00:00 obsr287339 S21377904 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537242 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289711863 2019-10-18 07:40:54 681 species avibase-407E2CA8 Common Merganser Mergus merganser 47 United States US New York US-NY Albany US-NY-001 28.0 Huyck Preserve--Lake Myosotis L304714 H 42.5220704 -74.14839930000001 2015-01-03 08:30:00 obsr708267 S21240370 Traveling P22 EBIRD 170.0 7.081 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963932 2021-04-01 12:26:53.827486 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293040339 2015-05-06 20:08:00 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 20 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-24 13:00:00 obsr110666 S21525985 Stationary P21 EBIRD 60.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291017533 2021-03-26 07:46:52.994574 11494 species avibase-20C2214E American Kestrel Falco sparverius 7 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-14 14:54:00 obsr544737 S21346058 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293558001 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288372013 2015-05-09 13:02:45 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:15:00 obsr322656 S21132019 Traveling P22 EBIRD 60.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289973522 2015-01-09 07:17:28 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-08 obsr620943 S21261580 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295183428 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-31 09:01:00 obsr125126 S21696603 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183911 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292579282 2021-03-23 17:18:00.959502 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-22 07:34:00 obsr407723 S21490126 Traveling P22 EBIRD 12.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291104284 2015-04-17 15:07:35 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Albany US-NY-001 13.0 Tracy Rd. Swamps L590801 H 42.4957279 -73.87226700000001 2015-01-15 09:47:00 obsr551017 S21353289 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288801611 2021-03-24 20:53:39.352228 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-02 09:30:00 obsr178309 S21167276 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621464 2021-03-26 07:46:52.994574 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-10 08:00:00 obsr639188 S21731716 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291924868 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-19 11:32:00 obsr171042 S21417992 Traveling P22 EBIRD 136.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288580438 2018-08-04 16:52:31 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Albany US-NY-001 13.0 Vly Swamp L3258923 P 42.6497115 -73.97915479999999 2015-01-02 13:20:00 obsr594026 S21149465 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293589088 2021-03-24 20:53:39.352228 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 4 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-27 09:50:00 obsr594026 S21570080 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693865 2021-03-24 20:53:39.352228 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284483 2021-03-26 07:46:52.994574 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 14 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534011 2018-08-04 16:53:31 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr504578 S21383073 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089275 2017-04-05 16:49:11 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289576785 2015-01-06 21:05:58 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-06 08:00:00 obsr409143 S21230120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803304 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289952818 2017-08-16 16:14:31 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-07 16:00:00 obsr317421 S21260008 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625861 2018-08-04 16:53:55 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Albany US-NY-001 13.0 Hollyhock Hollow Sanctuary L1146193 H 42.540149 -73.8703108 2015-01-18 09:35:00 obsr407723 S21395264 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289022137 2015-01-04 13:16:46 337 species avibase-694C127A Mute Swan Cygnus olor 6 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.76281290000001 2015-01-04 11:56:00 obsr287339 S21186656 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291456230 2015-01-17 14:21:38 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 John Boyd Thacher SP--North L2588143 H 42.6799431 -74.042839 2015-01-16 10:00:00 obsr258063 S21381921 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295622733 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-11 08:00:00 obsr639188 S21731845 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288957049 2021-03-23 17:18:00.959502 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 4 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-04 08:18:00 obsr287339 S21181410 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292616530 2021-03-26 07:46:52.994574 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-22 11:30:00 obsr594026 S21493317 Stationary P21 EBIRD 10.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294075650 2021-03-24 20:53:39.352228 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 6 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-30 obsr620943 S21608478 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289579825 2015-01-06 21:21:34 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Albany US-NY-001 13.0 Roesselville L3272127 P 42.6943496 -73.7982948 2015-01-06 10:00:00 obsr70633 S21230302 Stationary P21 EBIRD 150.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290144588 2021-04-01 12:26:53.827486 447 species avibase-C235A4D7 Gadwall Mareca strepera 10 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-10 09:00:00 obsr7511 S21275375 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290142400 2021-03-24 20:53:39.352228 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-09 10:00:00 obsr178309 S21275169 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291957762 2017-01-11 21:22:56 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 13:45:00 obsr594026 S21420792 Traveling P22 EBIRD 65.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291028533 2021-03-26 07:46:52.994574 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-14 11:45:00 obsr594026 S21346986 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480121 2021-03-26 07:46:52.994574 662 species avibase-FB738385 Bufflehead Bucephala albeola 15 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288802807 2021-03-24 20:53:39.352228 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-03 09:30:00 obsr178309 S21167379 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292118944 2021-03-24 20:53:39.352228 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 9 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Kings Highway Barrens L2584384 H 42.7369323 -73.886095 2015-01-20 09:00:00 obsr312669 S21433587 Traveling P22 EBIRD 90.0 1.931 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727244 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-07 15:59:00 obsr125126 S21241585 Stationary P21 EBIRD 61.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288275657 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-01 08:45:00 obsr594026 S21124074 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288286368 2021-04-01 12:26:53.827486 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-01-01 12:20:00 obsr546609 S21125084 Traveling P22 EBIRD 57.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292978841 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-24 08:56:00 obsr125126 S21521406 Stationary P21 EBIRD 519.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289989527 2015-01-09 10:51:44 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-08 07:45:00 obsr644825 S21263052 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271537 2021-04-01 12:26:53.827486 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr120906 S21205860 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290136755 2015-01-10 08:28:55 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-09 obsr620943 S21274627 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288991916 2015-01-04 11:34:53 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon X United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-04 11:07:00 obsr504578 S21184271 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289875002 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 15 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-08 12:00:00 obsr92097 S21253779 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679039 2021-03-23 17:18:00.959502 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Albany US-NY-001 28.0 US-NY-Middleburgh-244 Gulf Rd L3260209 P 42.520965 -74.218788 2015-01-03 08:29:00 obsr684648 S21157050 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289792408 2015-01-07 23:19:09 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-07 08:25:00 obsr644825 S21246849 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293911460 2021-04-01 12:26:53.827486 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr120906 S21595535 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289276223 2018-08-04 16:52:48 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-05 11:35:00 obsr287339 S21206228 Traveling P22 EBIRD 25.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869060 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 8 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 14:52:00 obsr287339 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551650 2021-03-24 20:53:39.352228 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-02 08:30:00 obsr644825 S21147085 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935081 2021-03-26 07:46:52.994574 8829 species avibase-8F123A11 Short-eared Owl Asio flammeus 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294029140 2021-03-26 07:46:52.994574 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Albany US-NY-001 13.0 NY, Albany, 26 Eton Drive Neighborhood L2733019 P 42.6537682 -73.8467359 2015-01-30 15:30:00 obsr171042 S21604833 Traveling P22 EBIRD 56.0 3.54 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291540060 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-17 12:15:00 obsr409143 S21388629 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291123703 2021-04-01 12:26:53.827486 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-15 11:50:00 obsr287339 S21354889 Traveling P22 EBIRD 35.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288676011 2015-01-18 13:21:44 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 07:24:00 obsr407723 S21156879 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679168 2018-08-04 16:52:35 242 species avibase-D3A260BC Snow Goose Anser caerulescens 1 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-03 08:25:00 obsr287339 S21157063 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291896929 2016-03-06 22:55:23 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-19 10:40:00 obsr287339 S21415921 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323519 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 39 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292953399 2015-01-24 16:08:34 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk-Barent Winne Rd L3314022 P 42.54966 -73.76230699999999 2015-01-24 14:28:00 obsr287339 S21519626 Traveling P22 EBIRD 5.0 0.161 3.0 1 G1121256 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587689 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-27 08:03:00 obsr125126 S21569971 Stationary P21 EBIRD 544.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287700 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 14 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299862 2021-03-26 07:46:52.994574 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 12 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773086 2021-03-23 17:18:00.959502 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 19 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470805 2015-01-17 15:31:44 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Glenmont-Mosher Rd L3298318 P 42.572155 -73.759625 2015-01-17 15:16:00 obsr407723 S21383075 Traveling P22 EBIRD 8.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961243 2021-03-26 07:46:52.994574 526 species avibase-56CCA717 Northern Pintail Anas acuta 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281345 2021-03-24 20:53:39.352228 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 09:00:00 obsr491696 S21445865 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204575 2015-01-25 17:59:47 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 07:48:00 obsr504578 S21539320 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291349078 2021-03-24 20:53:39.352228 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-16 08:00:00 obsr409143 S21373167 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310842 2021-03-23 17:18:00.959502 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-16 08:05:00 obsr644825 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648393 2021-03-26 07:46:52.994574 591 species avibase-1929E1E1 Canvasback Aythya valisineria 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-22 15:10:00 obsr287339 S21495474 Traveling P22 EBIRD 63.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553887 2016-02-05 16:52:58 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 6 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-17 09:01:00 obsr697870 S21389730 Stationary P21 EBIRD 13.0 2.0 1 G1112758 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293822275 2021-03-26 07:46:52.994574 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:49:00 obsr551017 S21588434 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984448 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 14 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753586 2021-03-26 07:46:52.994574 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 3 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-03 12:39:00 obsr287339 S21163284 Traveling P22 EBIRD 83.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086435 2021-03-26 07:46:52.994574 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 08:30:00 obsr287339 S21529887 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288247588 2015-01-01 16:55:14 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-01 14:42:00 obsr171042 S21121569 Traveling P22 EBIRD 132.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293005790 2015-01-24 19:33:52 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk- Barent Winne Rd. L3314742 P 42.551263 -73.7595463 2015-01-24 14:28:00 obsr697870 S21523570 Traveling P22 EBIRD 5.0 0.161 3.0 1 G1121256 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291904999 2021-03-26 07:46:52.994574 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 16 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292598013 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-22 08:29:00 obsr125126 S21491678 Stationary P21 EBIRD 144.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288273345 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:30:00 obsr594026 S21123860 Traveling P22 EBIRD 70.0 1.207 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291253989 2017-12-12 11:24:35 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-16 09:54:00 obsr546609 S21365476 Traveling P22 EBIRD 14.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289099382 2021-03-24 20:53:39.352228 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-04 09:00:00 obsr178309 S21192730 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288538416 2021-04-01 12:26:53.827486 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr697870 S21145897 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288673371 2016-01-26 10:16:19 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Albany US-NY-001 13.0 The Black Bridge, Green Island L4159773 H 42.7601592 -73.68771269999999 2015-01-03 07:20:00 obsr287339 S21156653 Traveling P22 EBIRD 14.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277944 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-01 12:40:00 obsr594026 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289324557 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-04 09:49:00 obsr125126 S21210282 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292960400 2015-01-24 16:38:50 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-24 16:00:00 obsr409143 S21520157 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290941194 2015-01-14 07:55:12 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-13 obsr620943 S21340030 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289976520 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 08:00:00 obsr491696 S21261827 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621957 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294105858 2021-03-26 07:46:52.994574 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:11:00 obsr504578 S21610513 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291543792 2018-08-04 16:53:32 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River from Elks Lodge parking lot L3299203 P 42.7791133 -73.7018476 2015-01-17 15:31:00 obsr386198 S21388928 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291949110 2021-04-01 12:26:53.827486 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 5 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-19 10:49:00 obsr546609 S21420041 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220317 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289781749 2021-03-24 20:53:39.352228 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-07 13:00:00 obsr547303 S21245788 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958221 2021-03-23 17:18:00.959502 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-24 07:30:00 obsr409143 S21520019 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288552246 2015-01-02 17:31:20 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 15:50:00 obsr644825 S21147142 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291404138 2016-02-05 16:52:58 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-17 09:01:00 obsr120906 S21377556 Stationary P21 EBIRD 13.0 2.0 1 G1112758 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291241209 2015-01-16 07:23:56 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-15 obsr620943 S21364336 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963843 2021-03-26 07:46:52.994574 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198500 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 11 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002096 2021-04-01 12:26:53.827486 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr697870 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288631218 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-01 08:00:00 obsr409143 S21153627 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289875003 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-08 12:00:00 obsr92097 S21253779 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288877621 2015-01-04 09:20:44 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Albany US-NY-001 13.0 Albany L122621 T 42.65258 -73.75627 2015-01-02 09:00:00 obsr120906 S21175447 Incidental P20 EBIRD 2.0 0 G1094753 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291311477 2015-01-16 16:59:38 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 small wetland on Orchard St L3296174 P 42.613568 -73.875512 2015-01-14 14:30:00 obsr644825 S21370429 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292816133 2015-01-23 18:47:57 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Albany US-NY-001 13.0 Rte 85A behind Falvo's L3312467 P 42.6337252 -73.9020225 2015-01-23 14:35:00 obsr594026 S21508776 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963577 2015-01-04 09:20:44 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Albany US-NY-001 13.0 Albany L122621 T 42.65258 -73.75627 2015-01-02 09:00:00 obsr697870 S21181908 Incidental P20 EBIRD 2.0 0 G1094753 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727243 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-07 15:59:00 obsr125126 S21241585 Stationary P21 EBIRD 61.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288187360 2017-11-18 19:39:53 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Albany US-NY-001 13.0 krumkill rd near rt 306 L3253337 P 42.6589592 -73.8953733 2015-01-01 12:00:00 obsr560402 S21116423 Stationary P21 EBIRD 10.0 2.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204568 2015-01-25 17:59:47 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 07:48:00 obsr504578 S21539320 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587685 2021-03-26 07:46:52.994574 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-27 08:03:00 obsr125126 S21569971 Stationary P21 EBIRD 544.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288771129 2015-01-03 15:10:11 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Albany US-NY-001 13.0 us 20 and Gipp rd, Guilderland L3261584 P 42.691079 -73.86876579999999 2015-01-03 13:04:00 obsr452367 S21164711 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291904997 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 7 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291241201 2015-01-16 07:23:56 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-15 obsr620943 S21364336 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249279 2021-03-23 17:18:00.959502 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 08:00:00 obsr546609 S21365094 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271564 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417183 2021-02-07 08:31:53.993611 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-14 08:00:00 obsr7511 S21378636 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712504 2019-10-18 07:40:54 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Albany US-NY-001 28.0 Huyck Preserve--Lake Myosotis L304714 H 42.5220704 -74.14839930000001 2015-01-03 08:30:00 obsr708267 S21240370 Traveling P22 EBIRD 170.0 7.081 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288991914 2015-01-04 11:34:53 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-04 11:07:00 obsr504578 S21184271 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480119 2021-03-26 07:46:52.994574 622 species avibase-50566E50 Lesser Scaup Aythya affinis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621953 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289973517 2015-01-09 07:17:28 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-08 obsr620943 S21261580 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872623 2021-04-01 12:26:53.827486 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002091 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr697870 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557999 2021-04-01 12:26:53.827486 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 4 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289022135 2015-01-04 13:16:46 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 15 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.76281290000001 2015-01-04 11:56:00 obsr287339 S21186656 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294075649 2021-03-24 20:53:39.352228 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-30 obsr620943 S21608478 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059201 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287706 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 15 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294164102 2021-03-24 20:53:39.352228 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 Vagele Lane, Glenmont L2868631 P 42.597550700000006 -73.78205940000001 2015-01-31 obsr551017 S21615462 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293822274 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:49:00 obsr551017 S21588434 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220315 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 12 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288717257 2015-01-03 14:46:19 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk L3260801 P 42.578847 -73.868167 2015-01-03 11:39:00 obsr407723 S21160443 Traveling P22 EBIRD 14.0 6.437 2.0 1 G1093024 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310839 2021-03-23 17:18:00.959502 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-16 08:05:00 obsr644825 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291896934 2016-03-06 22:55:23 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-19 10:40:00 obsr287339 S21415921 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291104283 2015-04-17 15:07:35 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Albany US-NY-001 13.0 Tracy Rd. Swamps L590801 H 42.4957279 -73.87226700000001 2015-01-15 09:47:00 obsr551017 S21353289 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323495 2021-04-01 12:26:53.827486 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 9 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295622731 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-11 08:00:00 obsr639188 S21731845 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753585 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-03 12:39:00 obsr287339 S21163284 Traveling P22 EBIRD 83.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198509 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288372011 2015-05-09 13:02:45 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:15:00 obsr322656 S21132019 Traveling P22 EBIRD 60.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958223 2021-03-23 17:18:00.959502 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-24 07:30:00 obsr409143 S21520019 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293911455 2021-04-01 12:26:53.827486 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 4 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr120906 S21595535 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773088 2021-03-23 17:18:00.959502 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288674169 2021-03-23 17:18:00.959502 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes - Bridge Ave. L2524087 P 42.7682498 -73.6956453 2015-01-03 07:40:00 obsr287339 S21156723 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291924866 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-19 11:32:00 obsr171042 S21417992 Traveling P22 EBIRD 136.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289000793 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 Colonie Center L650311 P 42.7104674 -73.8174391 2015-01-04 11:38:00 obsr547303 S21184976 Incidental P20 EBIRD 2.0 1 G1094999 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291957765 2017-01-11 21:22:56 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 13:45:00 obsr594026 S21420792 Traveling P22 EBIRD 65.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277948 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-01 12:40:00 obsr594026 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290136748 2015-01-10 08:28:55 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-09 obsr620943 S21274627 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407534 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408589 2021-03-26 07:46:52.994574 447 species avibase-C235A4D7 Gadwall Mareca strepera 10 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288773027 2021-03-23 17:18:00.959502 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Albany US-NY-001 13.0 Vly Creek Marsh L2888967 H 42.6464318 -73.9692714 2015-01-03 13:20:00 obsr452367 S21164874 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693863 2021-03-24 20:53:39.352228 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209726 2021-03-26 07:46:52.994574 592 species avibase-3072CC16 Redhead Aythya americana 3 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-31 09:15:00 obsr409143 S21618822 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289576795 2015-01-06 21:05:58 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 32 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-06 08:00:00 obsr409143 S21230120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089273 2017-04-05 16:49:11 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294105856 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:11:00 obsr504578 S21610513 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288999571 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Albany US-NY-001 13.0 Colonie Center L650311 P 42.7104674 -73.8174391 2015-01-04 11:38:00 obsr407723 S21184866 Incidental P20 EBIRD 2.0 1 G1094999 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204573 2015-01-25 17:59:47 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 07:48:00 obsr504578 S21539320 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292959581 2021-04-01 12:26:53.827486 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.574738700000005 -74.15542020000001 2015-01-24 09:15:00 obsr409143 S21520100 Traveling P22 EBIRD 80.0 19.312 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803296 2021-04-01 12:26:53.827486 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961240 2021-03-26 07:46:52.994574 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 6 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293340132 2021-03-26 07:46:52.994574 591 species avibase-1929E1E1 Canvasback Aythya valisineria X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-26 08:56:00 obsr504578 S21549445 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094744 2021-04-01 12:26:53.827486 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks Club L3305761 P 42.7791903 -73.7017007 2015-01-19 obsr101869 S21431537 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289976519 2021-03-26 07:46:52.994574 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 08:00:00 obsr491696 S21261827 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935086 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 7 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289578032 2015-01-06 21:09:07 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 meadowbrook above rr tracks L3272133 P 42.6728115 -73.982332 2015-01-05 11:00:00 obsr409143 S21230182 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292118942 2021-03-24 20:53:39.352228 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Kings Highway Barrens L2584384 H 42.7369323 -73.886095 2015-01-20 09:00:00 obsr312669 S21433587 Traveling P22 EBIRD 90.0 1.931 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963841 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288275645 2021-03-26 07:46:52.994574 662 species avibase-FB738385 Bufflehead Bucephala albeola 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-01 08:45:00 obsr594026 S21124074 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679902 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-03 08:15:00 obsr7511 S21157120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613847 2021-03-23 17:18:00.959502 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-18 08:42:00 obsr407723 S21394179 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764381 2015-01-03 14:46:19 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk L3260801 P 42.578847 -73.868167 2015-01-03 11:39:00 obsr547303 S21164114 Traveling P22 EBIRD 14.0 6.437 2.0 1 G1093024 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291348362 2021-04-01 12:26:53.827486 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Mohawk View L2565459 P 42.7787123 -73.7007205 2015-01-16 09:45:00 obsr409143 S21373112 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288538409 2021-04-01 12:26:53.827486 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 4 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr697870 S21145897 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292142046 2015-01-20 15:11:46 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Lions L2803969 P 42.772447 -73.80926 2015-01-20 14:52:00 obsr125126 S21435388 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537232 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290941190 2015-01-14 07:55:12 456 species avibase-D201EB72 American Wigeon Mareca americana 3 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-13 obsr620943 S21340030 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291408481 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 9 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 09:00:00 obsr287339 S21377904 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291540062 2021-03-24 20:53:39.352228 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-17 12:15:00 obsr409143 S21388629 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288286366 2021-04-01 12:26:53.827486 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 1 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-01-01 12:20:00 obsr546609 S21125084 Traveling P22 EBIRD 57.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621473 2021-03-26 07:46:52.994574 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 3 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-10 08:00:00 obsr639188 S21731716 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292086259 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Albany US-NY-001 13.0 Glenmont New York, US L3305646 P 42.5932799 -73.8080406 2015-01-20 07:30:00 obsr602177 S21430796 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289237984 2021-03-26 07:46:52.994574 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-05 08:00:00 obsr7511 S21203183 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284489 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 15 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271530 2021-04-01 12:26:53.827486 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr120906 S21205860 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963930 2021-04-01 12:26:53.827486 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299860 2021-03-26 07:46:52.994574 662 species avibase-FB738385 Bufflehead Bucephala albeola 5 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294029138 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Albany US-NY-001 13.0 NY, Albany, 26 Eton Drive Neighborhood L2733019 P 42.6537682 -73.8467359 2015-01-30 15:30:00 obsr171042 S21604833 Traveling P22 EBIRD 56.0 3.54 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289989525 2015-01-09 10:51:44 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-08 07:45:00 obsr644825 S21263052 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293589079 2021-03-24 20:53:39.352228 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-27 09:50:00 obsr594026 S21570080 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958845 2015-01-24 16:32:54 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Albany US-NY-001 28.0 Slade Hill Rd and Flood Rd L3314376 P 42.5316405 -74.0301132 2015-01-24 08:25:00 obsr409143 S21520057 Traveling P22 EBIRD 10.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288678886 2021-03-24 20:53:39.352228 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 08:17:00 obsr407723 S21157038 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288273340 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:30:00 obsr594026 S21123860 Traveling P22 EBIRD 70.0 1.207 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553649 2021-04-01 12:26:53.827486 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:00:00 obsr409143 S21389711 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625859 2018-08-04 16:53:55 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Hollyhock Hollow Sanctuary L1146193 H 42.540149 -73.8703108 2015-01-18 09:35:00 obsr407723 S21395264 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984446 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 12 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183909 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 10 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291349082 2021-03-24 20:53:39.352228 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-16 08:00:00 obsr409143 S21373167 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291099841 2021-03-23 17:18:00.959502 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-15 08:51:00 obsr551017 S21352842 Traveling P22 EBIRD 9.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281343 2021-03-24 20:53:39.352228 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 09:00:00 obsr491696 S21445865 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086434 2021-03-26 07:46:52.994574 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 10 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 08:30:00 obsr287339 S21529887 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288969098 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-04 08:30:00 obsr7511 S21182411 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289024906 2021-03-23 17:18:00.959502 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-01 obsr551017 S21186896 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289875000 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-08 12:00:00 obsr92097 S21253779 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872632 2021-04-01 12:26:53.827486 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293294737 2015-01-25 23:00:23 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-23 10:00:00 obsr639188 S21546188 Stationary P21 EBIRD 10.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963939 2021-04-01 12:26:53.827486 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290941192 2015-01-14 07:55:12 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-13 obsr620943 S21340030 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963846 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289973518 2015-01-09 07:17:28 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-08 obsr620943 S21261580 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290136758 2015-01-10 08:28:55 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-09 obsr620943 S21274627 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294075647 2021-03-24 20:53:39.352228 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-30 obsr620943 S21608478 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293161481 2021-03-23 17:18:00.959502 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-25 14:12:00 obsr287339 S21535923 Traveling P22 EBIRD 68.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220320 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587693 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-27 08:03:00 obsr125126 S21569971 Stationary P21 EBIRD 544.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291241211 2015-01-16 07:23:56 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-15 obsr620943 S21364336 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290941189 2015-01-14 07:55:12 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-13 obsr620943 S21340030 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295183431 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-31 09:01:00 obsr125126 S21696603 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292960395 2015-01-24 16:38:50 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-24 16:00:00 obsr409143 S21520157 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289711977 2019-10-18 07:40:54 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Albany US-NY-001 28.0 Huyck Preserve--Lake Myosotis L304714 H 42.5220704 -74.14839930000001 2015-01-03 08:30:00 obsr708267 S21240370 Traveling P22 EBIRD 170.0 7.081 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693856 2021-03-24 20:53:39.352228 30494 species avibase-240E3390 House Sparrow Passer domesticus 7 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289954816 2018-08-04 16:52:55 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-08 15:00:00 obsr657332 S21260148 Traveling P22 EBIRD 60.0 14.484000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292593763 2015-01-22 10:22:22 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Albany US-NY-001 13.0 Albany International Airport--Southern end L2501192 H 42.7322277 -73.8042641 2015-01-22 10:00:00 obsr120906 S21491362 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284494 2021-03-26 07:46:52.994574 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291347180 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 10:20:00 obsr409143 S21373036 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288957045 2021-03-23 17:18:00.959502 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-04 08:18:00 obsr287339 S21181410 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292853148 2015-01-23 23:01:48 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Albany US-NY-001 13.0 Van Schaick Island, Delaware Ave L3312905 P 42.7685963 -73.68541 2015-01-23 13:40:00 obsr657332 S21511603 Traveling P22 EBIRD 95.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292148444 2018-08-04 16:54:47 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-20 15:30:00 obsr657332 S21435847 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288700273 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 30 United States US New York US-NY Albany US-NY-001 13.0 Albany International Airport--Sicker Rd. eastern side L2494355 H 42.751172 -73.80131899999999 2015-01-03 10:10:00 obsr287339 S21158898 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764431 2021-03-26 07:46:52.994574 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Feura Bush L3260809 P 42.589187 -73.869008 2015-01-03 11:25:00 obsr547303 S21164122 Traveling P22 EBIRD 10.0 9.656 2.0 1 G1093025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290297989 2015-01-10 20:58:54 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 150 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-10 16:00:00 obsr551017 S21288356 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292090880 2015-01-20 09:16:36 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-20 09:10:00 obsr120906 S21431212 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290371286 2017-08-16 16:18:57 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 15 United States US New York US-NY Albany US-NY-001 13.0 Waldenmaier Road, Delmar L3110574 P 42.5925848 -73.8740015 2015-01-11 10:11:00 obsr551017 S21294151 Traveling P22 EBIRD 8.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290960849 2015-01-14 12:41:50 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-14 11:02:00 obsr551017 S21341599 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289952820 2017-08-16 16:14:31 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-07 16:00:00 obsr317421 S21260008 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291073293 2021-04-01 12:26:53.827486 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-14 15:05:00 obsr657332 S21350549 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291246422 2015-01-16 09:00:18 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 08:50:00 obsr120906 S21364860 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294014168 2018-08-04 16:55:27 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-30 15:00:00 obsr657332 S21603563 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293349254 2015-01-26 10:19:21 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 16:30:00 obsr560402 S21550270 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293386927 2018-08-04 16:55:19 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-26 13:30:00 obsr657332 S21553414 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291241198 2015-01-16 07:23:56 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-15 obsr620943 S21364336 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027830 2021-04-01 12:26:53.827486 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 550 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291949103 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-19 10:49:00 obsr546609 S21420041 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288717255 2015-01-03 14:46:19 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 200 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk L3260801 P 42.578847 -73.868167 2015-01-03 11:39:00 obsr407723 S21160443 Traveling P22 EBIRD 14.0 6.437 2.0 1 G1093024 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958222 2021-03-23 17:18:00.959502 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-24 07:30:00 obsr409143 S21520019 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764379 2015-01-03 14:46:19 6339 species avibase-8535345B Herring Gull Larus argentatus 200 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk L3260801 P 42.578847 -73.868167 2015-01-03 11:39:00 obsr547303 S21164114 Traveling P22 EBIRD 14.0 6.437 2.0 1 G1093024 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089264 2017-04-05 16:49:11 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291896931 2016-03-06 22:55:23 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 120 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-19 10:40:00 obsr287339 S21415921 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287711 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288717652 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Feura Bush L3260809 P 42.589187 -73.869008 2015-01-03 11:25:00 obsr407723 S21160475 Traveling P22 EBIRD 10.0 9.656 2.0 1 G1093025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291521328 2018-08-04 16:53:27 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 400 United States US New York US-NY Albany US-NY-001 13.0 Clapper Road L1347463 P 42.554835 -73.7793058 2015-01-17 08:40:00 obsr287339 S21387122 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289761892 2015-01-07 20:19:31 26890 species avibase-94A44032 European Starling Sturnus vulgaris 12 United States US New York US-NY Albany US-NY-001 13.0 New Scotland Rd pond W of Upper Font Grove Rd L3275497 P 42.6290648 -73.88632890000001 2015-01-02 12:55:00 obsr594026 S21244332 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753582 2021-03-26 07:46:52.994574 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 150 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-03 12:39:00 obsr287339 S21163284 Traveling P22 EBIRD 83.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648402 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 535 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-22 15:10:00 obsr287339 S21495474 Traveling P22 EBIRD 63.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323506 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 90 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292186028 2015-01-20 18:49:59 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-20 13:50:00 obsr594026 S21438658 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291251956 2015-01-16 10:01:57 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 09:57:00 obsr504578 S21365324 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292598017 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-22 08:29:00 obsr125126 S21491678 Stationary P21 EBIRD 144.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287698 2021-03-26 07:46:52.994574 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727246 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-07 15:59:00 obsr125126 S21241585 Stationary P21 EBIRD 61.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220321 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294029141 2021-03-26 07:46:52.994574 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Albany, 26 Eton Drive Neighborhood L2733019 P 42.6537682 -73.8467359 2015-01-30 15:30:00 obsr171042 S21604833 Traveling P22 EBIRD 56.0 3.54 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289792411 2015-01-07 23:19:09 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-07 08:25:00 obsr644825 S21246849 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292978845 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-24 08:56:00 obsr125126 S21521406 Stationary P21 EBIRD 519.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693868 2021-03-24 20:53:39.352228 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293911453 2021-04-01 12:26:53.827486 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr120906 S21595535 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935082 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094707 2016-02-05 16:52:57 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-20 09:39:00 obsr120906 S21431533 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288509452 2021-04-01 12:26:53.827486 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-02 obsr560402 S21143281 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294105860 2021-03-26 07:46:52.994574 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:11:00 obsr504578 S21610513 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963935 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984451 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294164096 2021-03-24 20:53:39.352228 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 1 United States US New York US-NY Albany US-NY-001 13.0 Vagele Lane, Glenmont L2868631 P 42.597550700000006 -73.78205940000001 2015-01-31 obsr551017 S21615462 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293558004 2021-04-01 12:26:53.827486 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407539 2021-03-26 07:46:52.994574 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869064 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 14:52:00 obsr287339 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291223183 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-15 16:05:00 obsr657332 S21363073 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288801615 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-02 09:30:00 obsr178309 S21167276 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293822278 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:49:00 obsr551017 S21588434 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289977408 2015-01-09 08:33:20 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-08 13:00:00 obsr491696 S21261905 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002089 2021-04-01 12:26:53.827486 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr697870 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290142406 2021-03-24 20:53:39.352228 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-09 10:00:00 obsr178309 S21275169 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284481 2021-03-26 07:46:52.994574 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288674171 2021-03-23 17:18:00.959502 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes - Bridge Ave. L2524087 P 42.7682498 -73.6956453 2015-01-03 07:40:00 obsr287339 S21156723 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872628 2021-04-01 12:26:53.827486 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551652 2021-03-24 20:53:39.352228 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-02 08:30:00 obsr644825 S21147085 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587694 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-27 08:03:00 obsr125126 S21569971 Stationary P21 EBIRD 544.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288802801 2021-03-24 20:53:39.352228 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-03 09:30:00 obsr178309 S21167379 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613849 2021-03-23 17:18:00.959502 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-18 08:42:00 obsr407723 S21394179 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027842 2021-04-01 12:26:53.827486 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291408484 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 09:00:00 obsr287339 S21377904 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198508 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291104285 2015-04-17 15:07:35 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Albany US-NY-001 13.0 Tracy Rd. Swamps L590801 H 42.4957279 -73.87226700000001 2015-01-15 09:47:00 obsr551017 S21353289 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295183432 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-31 09:01:00 obsr125126 S21696603 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323497 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905002 2021-03-26 07:46:52.994574 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288552248 2015-01-02 17:31:20 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 15:50:00 obsr644825 S21147142 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292660331 2015-01-22 17:29:09 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 apartment L2758883 P 42.649109 -73.765501 2015-01-22 17:28:00 obsr504578 S21496557 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288372016 2015-05-09 13:02:45 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:15:00 obsr322656 S21132019 Traveling P22 EBIRD 60.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753589 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-03 12:39:00 obsr287339 S21163284 Traveling P22 EBIRD 83.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291540066 2021-03-24 20:53:39.352228 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-17 12:15:00 obsr409143 S21388629 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694935 2018-08-04 16:53:13 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-12 10:15:00 obsr546609 S21320325 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183914 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291017537 2021-03-26 07:46:52.994574 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-14 14:54:00 obsr544737 S21346058 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281349 2021-03-24 20:53:39.352228 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 09:00:00 obsr491696 S21445865 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288254814 2021-03-24 20:53:39.352228 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-01 09:00:00 obsr178309 S21122167 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621959 2021-03-26 07:46:52.994574 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310845 2021-03-23 17:18:00.959502 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-16 08:05:00 obsr644825 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289324560 2021-03-26 07:46:52.994574 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-04 09:49:00 obsr125126 S21210282 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625863 2018-08-04 16:53:55 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 Hollyhock Hollow Sanctuary L1146193 H 42.540149 -73.8703108 2015-01-18 09:35:00 obsr407723 S21395264 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289099383 2021-03-24 20:53:39.352228 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-04 09:00:00 obsr178309 S21192730 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289022140 2015-01-04 13:16:46 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.76281290000001 2015-01-04 11:56:00 obsr287339 S21186656 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059207 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480124 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291076430 2018-08-04 16:53:19 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-14 16:15:00 obsr657332 S21350820 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963847 2021-03-26 07:46:52.994574 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288676013 2015-01-18 13:21:44 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 07:24:00 obsr407723 S21156879 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172705 2021-11-14 08:08:43.2446 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-31 08:30:00 obsr546609 S21616032 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290440481 2021-11-14 08:08:43.2446 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-11 15:15:00 obsr546609 S21299645 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293364332 2021-11-14 08:08:43.2446 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 Unknown Sex, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-26 07:23:00 obsr546609 S21551421 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290202238 2021-11-14 08:08:43.2446 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-10 08:23:00 obsr546609 S21280255 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289983008 2021-11-14 08:08:43.2446 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 1 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-09 07:55:00 obsr546609 S21262460 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293880313 2021-11-14 08:08:43.2446 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 Unknown Sex, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-29 07:34:00 obsr546609 S21593233 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291412983 2021-11-14 08:08:43.2446 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-17 08:02:00 obsr546609 S21378260 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293967089 2021-11-14 08:08:43.2446 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 Unknown Sex, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-30 08:35:00 obsr546609 S21599931 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294172708 2021-11-14 08:08:43.2446 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 Unknown Sex, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-31 08:30:00 obsr546609 S21616032 Stationary P21 EBIRD 420.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290693406 2021-11-14 08:08:43.2446 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-12 13:43:00 obsr546609 S21320208 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293364229 2021-11-14 08:08:43.2446 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-25 13:51:00 obsr546609 S21551411 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292754845 2021-11-14 08:08:43.2446 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 Unknown Sex, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-23 07:55:00 obsr546609 S21503888 Stationary P21 EBIRD 20.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292454896 2018-08-04 16:54:49 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 30 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-21 12:15:00 obsr544737 S21480267 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094706 2016-02-05 16:52:57 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 32 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-20 09:39:00 obsr120906 S21431533 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534227 2015-01-17 19:36:01 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks L2597661 P 42.77923010000001 -73.7017514 2015-01-17 15:32:00 obsr551017 S21388160 Stationary P21 EBIRD 17.0 15.0 1 G1112531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553885 2016-02-05 16:52:58 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 24 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-17 09:01:00 obsr697870 S21389730 Stationary P21 EBIRD 13.0 2.0 1 G1112758 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498532 2021-04-01 12:26:53.827486 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 5 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr546609 S21385309 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290950617 2015-01-14 12:43:58 27616 species avibase-D77E4B41 American Robin Turdus migratorius 10 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks L2597661 P 42.77923010000001 -73.7017514 2015-01-14 09:35:00 obsr551017 S21340703 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292633473 2015-01-22 23:23:10 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 50 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-22 15:00:00 obsr657332 S21494501 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534182 2018-08-04 16:53:32 592 species avibase-3072CC16 Redhead Aythya americana 15 United States US New York US-NY Albany US-NY-001 13.0 Elks Lodge Parking Lot, Cohoes L2610868 P 42.7792074 -73.70188420000001 2015-01-17 15:35:00 obsr409143 S21388156 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293711474 2021-04-01 12:26:53.827486 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 55 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-28 13:40:00 obsr657332 S21579405 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290879840 2015-01-13 18:06:54 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 28 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River below Cohoes Falls L2606846 P 42.7791235 -73.70047059999999 2015-01-13 10:50:00 obsr594026 S21335177 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094737 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 7 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks Club L3305761 P 42.7791903 -73.7017007 2015-01-19 obsr101869 S21431537 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292851119 2018-08-04 16:54:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 20 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-23 15:15:00 obsr657332 S21511531 Stationary P21 EBIRD 5.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534527 2018-08-04 16:53:31 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr551017 S21388184 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323521 2021-04-01 12:26:53.827486 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 32 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294005032 2018-08-04 16:55:26 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 15 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-30 14:20:00 obsr657332 S21602777 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292058228 2021-04-01 12:26:53.827486 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 12 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-19 11:55:00 obsr657332 S21428677 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391763 2015-01-11 12:04:22 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 3 United States US New York US-NY Albany US-NY-001 13.0 42.7787x-73.7010 - Nov 11, 2013, 14:03 L2418474 P 42.778698 -73.700989 2015-01-11 12:03:00 obsr322656 S21295881 Stationary P21 EBIRD 1.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291475297 2015-01-17 19:35:33 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-45 N Mohawk St L3298386 P 42.7793 -73.701932 2015-01-17 15:32:00 obsr504578 S21383433 Stationary P21 EBIRD 17.0 15.0 1 G1112531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291509064 2015-01-17 19:47:06 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 32 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River below Cohoes Falls L2606846 P 42.7791235 -73.70047059999999 2015-01-17 15:30:00 obsr594026 S21386157 Stationary P21 EBIRD 15.0 14.0 1 G1112574 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508848 2021-04-01 12:26:53.827486 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 5 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr287339 S21386137 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291348355 2021-04-01 12:26:53.827486 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 8 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Mohawk View L2565459 P 42.7787123 -73.7007205 2015-01-16 09:45:00 obsr409143 S21373112 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508020 2018-08-04 16:53:31 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:50:00 obsr594026 S21386094 Stationary P21 EBIRD 30.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290370468 2016-02-05 21:24:52 6339 species avibase-8535345B Herring Gull Larus argentatus 12 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-11 10:05:00 obsr287339 S21294085 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293377515 2015-01-26 13:15:22 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 14 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-26 13:00:00 obsr657332 S21552556 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293349249 2018-08-04 16:55:17 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-25 16:00:00 obsr560402 S21550269 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288966732 2021-03-23 17:18:00.959502 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-04 09:22:00 obsr504578 S21182191 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289477324 2018-08-04 16:52:51 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 17 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Mohawk View L2565459 P 42.7787123 -73.7007205 2015-01-06 12:30:00 obsr409143 S21222281 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291248267 2016-02-05 16:52:57 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 10 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-16 09:08:00 obsr120906 S21365015 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292141795 2018-08-04 16:54:47 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 29 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-20 15:00:00 obsr657332 S21435366 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740158 2021-04-01 12:26:53.827486 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-17 obsr560402 S23337227 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291542918 2018-08-04 16:53:31 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 Male, Adult (3) United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:48:00 obsr386198 S21388858 Stationary P21 EBIRD 37.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291537384 2015-01-17 19:47:06 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 32 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River below Cohoes Falls L2606846 P 42.7791235 -73.70047059999999 2015-01-17 15:30:00 obsr287339 S21388407 Stationary P21 EBIRD 15.0 14.0 1 G1112574 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292480182 2018-08-04 16:54:50 505 species avibase-C732CB10 American Black Duck Anas rubripes 35 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-21 15:00:00 obsr657332 S21482323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291071417 2021-04-01 12:26:53.827486 30494 species avibase-240E3390 House Sparrow Passer domesticus 16 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-14 15:05:00 obsr657332 S21350549 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470772 2018-08-04 16:53:31 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr504578 S21383073 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291879598 2018-08-04 16:54:00 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-19 10:00:00 obsr551017 S21414662 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291404136 2016-02-05 16:52:58 483 species avibase-85625D75 Mallard Anas platyrhynchos 24 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-17 09:01:00 obsr120906 S21377556 Stationary P21 EBIRD 13.0 2.0 1 G1112758 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694561 2019-07-23 17:26:56 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 14 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-12 09:20:00 obsr546609 S21320297 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293265951 2018-08-04 16:55:17 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-25 15:45:00 obsr657332 S21543973 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292636402 2018-08-04 16:54:52 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-22 15:15:00 obsr657332 S21494694 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534915 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:45:00 obsr409143 S21388220 Stationary P21 EBIRD 20.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288674167 2021-03-23 17:18:00.959502 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes - Bridge Ave. L2524087 P 42.7682498 -73.6956453 2015-01-03 07:40:00 obsr287339 S21156723 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291107154 2018-08-04 16:53:20 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 56 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-15 09:50:00 obsr120906 S21353549 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291223020 2021-04-01 12:26:53.827486 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 54 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-15 16:05:00 obsr657332 S21363073 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291543797 2018-08-04 16:53:32 447 species avibase-C235A4D7 Gadwall Mareca strepera 32 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River from Elks Lodge parking lot L3299203 P 42.7791133 -73.7018476 2015-01-17 15:31:00 obsr386198 S21388928 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291028530 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-14 11:45:00 obsr594026 S21346986 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291874685 2018-08-04 16:54:00 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-19 09:35:00 obsr287339 S21414323 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291401461 2015-01-17 20:56:06 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-17 08:46:00 obsr120906 S21377332 Stationary P21 EBIRD 6.0 2.0 1 G1112759 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534919 2021-03-26 07:46:52.994574 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 4 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:45:00 obsr409143 S21388220 Stationary P21 EBIRD 20.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249278 2021-03-23 17:18:00.959502 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 Female, Adult (1); Male, Adult (4) United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 08:00:00 obsr546609 S21365094 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291628736 2015-01-18 10:54:21 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Ravena-635-643 NY-143 L3300479 P 42.461353 -73.840377 2015-01-18 10:53:00 obsr407723 S21395519 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534528 2018-08-04 16:53:31 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr551017 S21388184 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288672465 2015-01-03 07:17:30 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-03 07:06:00 obsr287339 S21156572 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288683815 2018-08-04 16:52:36 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-03 08:43:00 obsr287339 S21157449 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293377516 2015-01-26 13:15:22 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-26 13:00:00 obsr657332 S21552556 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534186 2018-08-04 16:53:32 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Albany US-NY-001 13.0 Elks Lodge Parking Lot, Cohoes L2610868 P 42.7792074 -73.70188420000001 2015-01-17 15:35:00 obsr409143 S21388156 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288957046 2021-03-23 17:18:00.959502 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-04 08:18:00 obsr287339 S21181410 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292454897 2018-08-04 16:54:49 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-21 12:15:00 obsr544737 S21480267 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291246423 2015-01-16 09:00:18 592 species avibase-3072CC16 Redhead Aythya americana 4 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 08:50:00 obsr120906 S21364860 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867275 2015-01-19 08:53:39 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-19 08:34:00 obsr287339 S21413672 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288509539 2018-08-04 16:52:27 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-02 obsr560402 S21143287 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293178361 2018-08-04 16:55:16 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 14:45:00 obsr399201 S21537211 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290499191 2021-04-01 12:26:53.827486 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 14:55:00 obsr657332 S21304572 Traveling P22 EBIRD 55.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534518 2018-08-04 16:53:53 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr551017 S21388183 Stationary P21 EBIRD 28.0 15.0 1 G1112538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553641 2021-04-01 12:26:53.827486 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 4 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:00:00 obsr409143 S21389711 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290373899 2018-08-04 16:53:06 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 5 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 10:20:00 obsr120906 S21294354 Stationary P21 EBIRD 12.0 3.0 1 G1108432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291949112 2021-04-01 12:26:53.827486 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 3 Female, Adult (2); Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-19 10:49:00 obsr546609 S21420041 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553888 2015-01-17 20:56:06 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-17 08:46:00 obsr697870 S21389731 Stationary P21 EBIRD 6.0 2.0 1 G1112759 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289954818 2018-08-04 16:52:55 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-08 15:00:00 obsr657332 S21260148 Traveling P22 EBIRD 60.0 14.484000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293258039 2018-08-04 16:55:17 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 15:28:00 obsr657332 S21543345 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290381736 2018-08-04 16:53:07 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 11:02:00 obsr504578 S21295062 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027831 2021-04-01 12:26:53.827486 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293349250 2018-08-04 16:55:17 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-25 16:00:00 obsr560402 S21550269 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291648550 2015-01-18 12:41:08 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Glenmont-Van Wies Point Rd L3300757 P 42.582687 -73.756929 2015-01-18 12:02:00 obsr407723 S21397198 Traveling P22 EBIRD 4.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812844 2015-01-29 08:33:36 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-28 22:58:00 obsr657332 S21587550 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292631236 2021-04-01 12:26:53.827486 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-29 Cataract St L3306369 P 42.784089 -73.707027 2015-01-22 14:40:00 obsr657332 S21494330 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294081567 2018-08-04 16:55:27 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-30 15:00:00 obsr657332 S21603563 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288674168 2021-03-23 17:18:00.959502 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 7 United States US New York US-NY Albany US-NY-001 13.0 Cohoes - Bridge Ave. L2524087 P 42.7682498 -73.6956453 2015-01-03 07:40:00 obsr287339 S21156723 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740159 2021-04-01 12:26:53.827486 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-17 obsr560402 S23337227 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369402187 2018-08-04 16:52:58 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 obsr513002 S27183003 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292636403 2018-08-04 16:54:52 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-22 15:15:00 obsr657332 S21494694 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294271026 2021-03-23 17:18:00.959502 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-31 14:30:00 obsr657332 S21623792 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291543796 2018-08-04 16:53:32 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 Female, Adult (2) United States US New York US-NY Albany US-NY-001 13.0 Mohawk River from Elks Lodge parking lot L3299203 P 42.7791133 -73.7018476 2015-01-17 15:31:00 obsr386198 S21388928 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292186140 2015-01-20 18:49:59 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-20 13:50:00 obsr594026 S21438658 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290960850 2015-01-14 12:41:50 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-14 11:02:00 obsr551017 S21341599 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498537 2021-04-01 12:26:53.827486 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr546609 S21385309 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292767823 2015-01-23 13:53:36 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-23 10:10:00 obsr409143 S21504888 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292850808 2015-01-23 22:35:08 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Albany US-NY-001 13.0 Green Island--Hudson&Tibbitts L3294938 P 42.7492098 -73.6883926 2015-01-23 13:22:00 obsr657332 S21511504 Stationary P21 EBIRD 10.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292449464 2015-01-21 11:52:23 681 species avibase-407E2CA8 Common Merganser Mergus merganser 7 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-21 11:20:00 obsr544737 S21479810 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291348351 2021-04-01 12:26:53.827486 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Mohawk View L2565459 P 42.7787123 -73.7007205 2015-01-16 09:45:00 obsr409143 S21373112 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292480183 2018-08-04 16:54:50 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-21 15:00:00 obsr657332 S21482323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291103270 2015-01-15 09:46:01 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 3 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-15 09:35:00 obsr120906 S21353179 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290211236 2015-01-10 15:29:11 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:27:00 obsr551017 S21281082 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112550 2018-08-04 16:52:37 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River Cohoes side from Waterford L2606895 P 42.78284620000001 -73.7041211 2015-01-03 10:00:00 obsr594026 S21193773 Stationary P21 EBIRD 40.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291872510 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-19 09:27:00 obsr504578 S21414117 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290370469 2016-02-05 21:24:52 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-11 10:05:00 obsr287339 S21294085 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291863385 2015-01-19 08:21:10 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-19 07:49:00 obsr287339 S21413348 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294025807 2015-01-30 16:29:06 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-30 16:00:00 obsr657332 S21604504 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291542920 2018-08-04 16:53:31 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 Male, Adult (1); Female, Adult (2) United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:48:00 obsr386198 S21388858 Stationary P21 EBIRD 37.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291537383 2015-01-17 19:47:06 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River below Cohoes Falls L2606846 P 42.7791235 -73.70047059999999 2015-01-17 15:30:00 obsr287339 S21388407 Stationary P21 EBIRD 15.0 14.0 1 G1112574 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288769933 2017-12-12 11:24:35 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-02 12:50:00 obsr452367 S21164590 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290870332 2018-08-04 16:53:06 456 species avibase-D201EB72 American Wigeon Mareca americana 5 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 10:20:00 obsr697870 S21334381 Stationary P21 EBIRD 12.0 3.0 1 G1108432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694070 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-12 08:40:00 obsr546609 S21320247 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291483312 2018-08-04 16:53:32 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr504578 S21384068 Stationary P21 EBIRD 28.0 15.0 1 G1112538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679164 2018-08-04 16:52:35 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-03 08:25:00 obsr287339 S21157063 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291874686 2018-08-04 16:54:00 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-19 09:35:00 obsr287339 S21414323 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290486859 2018-08-04 16:53:08 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 4 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 12:00:00 obsr322656 S21303554 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391764 2015-01-11 12:04:22 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Albany US-NY-001 13.0 42.7787x-73.7010 - Nov 11, 2013, 14:03 L2418474 P 42.778698 -73.700989 2015-01-11 12:03:00 obsr322656 S21295881 Stationary P21 EBIRD 1.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323492 2021-04-01 12:26:53.827486 447 species avibase-C235A4D7 Gadwall Mareca strepera 61 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292056535 2018-08-04 16:54:01 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 6 Female, Adult (3); Male, Adult (3) United States US New York US-NY Albany US-NY-001 13.0 Green Island--Hudson&Tibbitts L3294938 P 42.7492098 -73.6883926 2015-01-19 11:21:00 obsr657332 S21428524 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293262690 2015-01-25 22:26:48 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-25 16:00:00 obsr657332 S21543700 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291222361 2015-01-15 23:18:06 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 9 United States US New York US-NY Albany US-NY-001 13.0 Green Island--Hudson&Tibbitts L3294938 P 42.7492098 -73.6883926 2015-01-15 15:43:00 obsr657332 S21363003 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291879599 2018-08-04 16:54:00 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-19 10:00:00 obsr551017 S21414662 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539549 2018-08-04 16:53:32 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:45:00 obsr409143 S21388575 Stationary P21 EBIRD 35.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290879839 2015-01-13 18:06:54 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River below Cohoes Falls L2606846 P 42.7791235 -73.70047059999999 2015-01-13 10:50:00 obsr594026 S21335177 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094738 2021-04-01 12:26:53.827486 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks Club L3305761 P 42.7791903 -73.7017007 2015-01-19 obsr101869 S21431537 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508853 2021-04-01 12:26:53.827486 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr287339 S21386137 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291071414 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 Female, Adult (3) United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-14 15:05:00 obsr657332 S21350549 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288966733 2021-03-23 17:18:00.959502 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-04 09:22:00 obsr504578 S21182191 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293711475 2021-04-01 12:26:53.827486 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-28 13:40:00 obsr657332 S21579405 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291509063 2015-01-17 19:47:06 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River below Cohoes Falls L2606846 P 42.7791235 -73.70047059999999 2015-01-17 15:30:00 obsr594026 S21386157 Stationary P21 EBIRD 15.0 14.0 1 G1112574 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694941 2018-08-04 16:53:13 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-12 10:15:00 obsr546609 S21320325 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290297994 2015-01-10 20:58:54 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-10 16:00:00 obsr551017 S21288356 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290949098 2015-01-14 09:20:29 30494 species avibase-240E3390 House Sparrow Passer domesticus 12 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-14 09:15:00 obsr551017 S21340570 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293265952 2018-08-04 16:55:17 622 species avibase-50566E50 Lesser Scaup Aythya affinis 3 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-25 15:45:00 obsr657332 S21543973 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290957499 2018-08-04 16:53:18 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-14 10:30:00 obsr551017 S21341287 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288626947 2018-08-04 16:52:28 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-02 09:30:00 obsr409143 S21153279 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292688717 2015-01-23 09:32:49 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-22 16:26:00 obsr657332 S21498880 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290950618 2015-01-14 12:43:58 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks L2597661 P 42.77923010000001 -73.7017514 2015-01-14 09:35:00 obsr551017 S21340703 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470773 2018-08-04 16:53:31 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr504578 S21383073 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292058230 2021-04-01 12:26:53.827486 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-19 11:55:00 obsr657332 S21428677 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292093686 2015-01-20 09:44:20 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-19 obsr101869 S21431468 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292563267 2015-03-05 22:16:04 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-21 11:20:00 obsr594026 S21488876 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288959554 2015-01-04 08:53:04 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 3 United States US New York US-NY Albany US-NY-001 28.0 US-NY-Middleburgh-126-240 Co Rd 12 L3264238 P 42.5373 -74.21694000000001 2015-01-03 13:01:00 obsr684648 S21181595 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289711976 2019-10-18 07:40:54 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 28.0 Huyck Preserve--Lake Myosotis L304714 H 42.5220704 -74.14839930000001 2015-01-03 08:30:00 obsr708267 S21240370 Traveling P22 EBIRD 170.0 7.081 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292590929 2021-03-26 07:46:52.994574 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-01-22 08:50:00 obsr120906 S21491087 Traveling P22 EBIRD 64.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292959574 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.574738700000005 -74.15542020000001 2015-01-24 09:15:00 obsr409143 S21520100 Traveling P22 EBIRD 80.0 19.312 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290381743 2018-08-04 16:53:07 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 11:02:00 obsr504578 S21295062 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290136760 2015-01-10 08:28:55 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-09 obsr620943 S21274627 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958844 2015-01-24 16:32:54 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 28.0 Slade Hill Rd and Flood Rd L3314376 P 42.5316405 -74.0301132 2015-01-24 08:25:00 obsr409143 S21520057 Traveling P22 EBIRD 10.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290870237 2017-02-01 09:47:05 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-11 15:08:00 obsr697870 S21334370 Incidental P20 EBIRD 2.0 0 G1108427 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291456233 2015-01-17 14:21:38 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 John Boyd Thacher SP--North L2588143 H 42.6799431 -74.042839 2015-01-16 10:00:00 obsr258063 S21381921 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290436556 2017-02-01 09:47:05 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-11 15:08:00 obsr120906 S21299358 Incidental P20 EBIRD 2.0 0 G1108427 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288988869 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002090 2021-04-01 12:26:53.827486 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 6 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr697870 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295183436 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-31 09:01:00 obsr125126 S21696603 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293040338 2015-05-06 20:08:00 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 15 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-24 13:00:00 obsr110666 S21525985 Stationary P21 EBIRD 60.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293537799 2015-01-27 11:48:21 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY Albany US-NY-001 13.0 Delmar, 97 Brockley Drive L2590305 P 42.61955 -73.86133000000001 2015-01-27 11:47:00 obsr629585 S21565992 Stationary P21 EBIRD 1.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293558010 2021-04-01 12:26:53.827486 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291951897 2015-01-19 16:01:35 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 28.0 71 Overlook Lane, East Berne L1839006 P 42.6009767 -74.0609807 2015-01-19 03:00:00 obsr489108 S21420249 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292978850 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-24 08:56:00 obsr125126 S21521406 Stationary P21 EBIRD 519.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292598020 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-22 08:29:00 obsr125126 S21491678 Stationary P21 EBIRD 144.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293911454 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr120906 S21595535 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293822284 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:49:00 obsr551017 S21588434 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059497 2015-01-30 20:34:22 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-28 10:00:00 obsr491696 S21607244 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292754841 2021-11-14 08:08:43.2446 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-23 07:55:00 obsr546609 S21503888 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293673079 2015-01-28 08:34:42 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 25 United States US New York US-NY Albany US-NY-001 13.0 Delmar, 97 Brockley Drive L2590305 P 42.61955 -73.86133000000001 2015-01-28 08:33:00 obsr629585 S21576509 Stationary P21 EBIRD 1.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323500 2021-04-01 12:26:53.827486 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291863387 2015-01-19 08:21:10 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-19 07:49:00 obsr287339 S21413348 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621463 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-10 08:00:00 obsr639188 S21731716 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112545 2018-08-04 16:52:37 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River Cohoes side from Waterford L2606895 P 42.78284620000001 -73.7041211 2015-01-03 10:00:00 obsr594026 S21193773 Stationary P21 EBIRD 40.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291569479 2015-01-17 22:14:13 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 NY Thruway Exit 24 L3299553 P 42.6945189 -73.8454394 2015-01-15 13:00:00 obsr322656 S21390894 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288769402 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Broadway and Columbia L2898811 P 42.6520946 -73.7492895 2015-01-02 12:40:00 obsr452367 S21164535 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209720 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-31 09:15:00 obsr409143 S21618822 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295183426 2021-03-26 07:46:52.994574 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-31 09:01:00 obsr125126 S21696603 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292836258 2015-01-23 20:51:40 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Bob's Office in Latham L2567287 P 42.758462 -73.7855583 2015-01-23 09:15:00 obsr7511 S21510332 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292144386 2021-04-01 12:26:53.827486 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-29 Cataract St L3306369 P 42.784089 -73.707027 2015-01-20 15:10:00 obsr657332 S21435562 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291251432 2015-01-16 09:57:14 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Watervliet - 42.7388x-73.6989 - Jan 16, 2015, 9:56 AM L3295321 P 42.738762 -73.698932 2015-01-16 09:56:00 obsr504578 S21365280 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291278255 2017-12-12 11:24:35 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-16 13:31:00 obsr287339 S21367602 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089265 2017-04-05 16:49:11 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935084 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293261607 2021-03-23 17:18:00.959502 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-01-25 14:00:00 obsr657332 S21543611 Traveling P22 EBIRD 40.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289646271 2017-02-01 09:47:05 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-07 10:08:00 obsr120906 S21235905 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291347175 2021-04-01 12:26:53.827486 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 10:20:00 obsr409143 S21373036 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027839 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 15 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249277 2021-03-23 17:18:00.959502 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 08:00:00 obsr546609 S21365094 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291405500 2018-08-04 16:53:27 526 species avibase-56CCA717 Northern Pintail Anas acuta 10 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:20:00 obsr120906 S21377671 Stationary P21 EBIRD 8.0 2.0 1 G1112757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648392 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 15 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-22 15:10:00 obsr287339 S21495474 Traveling P22 EBIRD 63.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291347179 2021-04-01 12:26:53.827486 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 10:20:00 obsr409143 S21373036 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553863 2018-08-04 16:53:27 27616 species avibase-D77E4B41 American Robin Turdus migratorius 10 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:20:00 obsr697870 S21389727 Stationary P21 EBIRD 8.0 2.0 1 G1112757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290373903 2018-08-04 16:53:06 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 50 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 10:20:00 obsr120906 S21294354 Stationary P21 EBIRD 12.0 3.0 1 G1108432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694066 2021-04-01 12:26:53.827486 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 10 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-12 08:40:00 obsr546609 S21320247 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292116183 2021-04-01 12:26:53.827486 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-20 11:50:00 obsr287339 S21433340 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291221700 2018-08-04 16:53:22 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 92 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-15 15:56:00 obsr657332 S21362938 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291949102 2021-04-01 12:26:53.827486 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 170 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-19 10:49:00 obsr546609 S21420041 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291253990 2017-12-12 11:24:35 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 11 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-16 09:54:00 obsr546609 S21365476 Traveling P22 EBIRD 14.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291411278 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-17 08:00:00 obsr7511 S21378123 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293161483 2021-03-23 17:18:00.959502 592 species avibase-3072CC16 Redhead Aythya americana 8 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-25 14:12:00 obsr287339 S21535923 Traveling P22 EBIRD 68.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498535 2021-04-01 12:26:53.827486 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr546609 S21385309 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867282 2015-01-19 08:53:39 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 25 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-19 08:34:00 obsr287339 S21413672 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290830370 2015-03-10 04:47:00 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 12 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Crescent Rd., Colonie Landfill pull off L3289882 H 42.811988 -73.7252569 2015-01-13 10:45:00 obsr120906 S21330760 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290870336 2018-08-04 16:53:06 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 50 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 10:20:00 obsr697870 S21334381 Stationary P21 EBIRD 12.0 3.0 1 G1108432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679167 2018-08-04 16:52:35 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-03 08:25:00 obsr287339 S21157063 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292058231 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos 15 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-19 11:55:00 obsr657332 S21428677 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292852634 2015-01-23 22:53:52 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 15 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-23 15:40:00 obsr657332 S21511627 Stationary P21 EBIRD 5.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198502 2021-03-26 07:46:52.994574 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 2 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508851 2021-04-01 12:26:53.827486 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr287339 S21386137 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289324562 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 7 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-04 09:49:00 obsr125126 S21210282 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905007 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935077 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 16 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277946 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 7 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-01 12:40:00 obsr594026 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408599 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 12 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059209 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser 6 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288802802 2021-03-24 20:53:39.352228 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-03 09:30:00 obsr178309 S21167379 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281351 2021-03-24 20:53:39.352228 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 10 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 09:00:00 obsr491696 S21445865 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693872 2021-03-24 20:53:39.352228 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727248 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-07 15:59:00 obsr125126 S21241585 Stationary P21 EBIRD 61.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204582 2015-01-25 17:59:47 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 07:48:00 obsr504578 S21539320 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537238 2021-03-26 07:46:52.994574 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 10 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293558007 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos 16 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295622735 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-11 08:00:00 obsr639188 S21731845 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293340137 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-26 08:56:00 obsr504578 S21549445 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288681363 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-03 08:15:00 obsr7511 S21157120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963937 2021-04-01 12:26:53.827486 27616 species avibase-D77E4B41 American Robin Turdus migratorius 12 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293911462 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 16 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr120906 S21595535 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291101766 2015-01-15 09:28:27 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Albany US-NY-001 13.0 Waldenmaier Road, Delmar L3110574 P 42.5925848 -73.8740015 2015-01-15 09:13:00 obsr551017 S21353039 Traveling P22 EBIRD 7.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292960402 2015-01-24 16:38:50 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 14 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-24 16:00:00 obsr409143 S21520157 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289973523 2015-01-09 07:17:28 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 14 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-08 obsr620943 S21261580 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291349085 2021-03-24 20:53:39.352228 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 5 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-16 08:00:00 obsr409143 S21373167 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958843 2015-01-24 16:32:54 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Albany US-NY-001 28.0 Slade Hill Rd and Flood Rd L3314376 P 42.5316405 -74.0301132 2015-01-24 08:25:00 obsr409143 S21520057 Traveling P22 EBIRD 10.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288552250 2015-01-02 17:31:20 616 species avibase-25C94A8F Greater Scaup Aythya marila 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 15:50:00 obsr644825 S21147142 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289989532 2015-01-09 10:51:44 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 4 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-08 07:45:00 obsr644825 S21263052 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407544 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 25 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS773126316 2019-06-09 14:30:19 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Albany US-NY-001 13.0 Number 16 L9404143 P 42.623598 -73.81894390000001 2015-01-09 09:09:00 obsr287095 S57231687 Historical P62 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294075656 2021-03-24 20:53:39.352228 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 8 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-30 obsr620943 S21608478 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323505 2021-04-01 12:26:53.827486 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 87 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291028526 2021-03-26 07:46:52.994574 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 11 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-14 11:45:00 obsr594026 S21346986 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291017541 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-14 14:54:00 obsr544737 S21346058 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288631217 2021-03-26 07:46:52.994574 622 species avibase-50566E50 Lesser Scaup Aythya affinis 14 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-01 08:00:00 obsr409143 S21153627 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289792413 2015-01-07 23:19:09 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 5 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-07 08:25:00 obsr644825 S21246849 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613854 2021-03-23 17:18:00.959502 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-18 08:42:00 obsr407723 S21394179 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290144586 2021-04-01 12:26:53.827486 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-10 09:00:00 obsr7511 S21275375 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288273342 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 12 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:30:00 obsr594026 S21123860 Traveling P22 EBIRD 70.0 1.207 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621954 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 31 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621470 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-10 08:00:00 obsr639188 S21731716 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289099389 2021-03-24 20:53:39.352228 303 species avibase-B59E1863 Canada Goose Branta canadensis 11 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-04 09:00:00 obsr178309 S21192730 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286211 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-10 15:30:00 obsr322656 S21281606 Stationary P21 EBIRD 80.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289781754 2021-03-24 20:53:39.352228 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 2 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-07 13:00:00 obsr547303 S21245788 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288192840 2021-03-23 17:18:00.959502 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 pauley lane L3253415 P 42.6503428 -73.88260600000001 2015-01-01 11:45:00 obsr560402 S21116906 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290369688 2021-03-23 17:18:00.959502 303 species avibase-B59E1863 Canada Goose Branta canadensis 20 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-11 09:46:00 obsr551017 S21294028 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480130 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 25 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292978848 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 13 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-24 08:56:00 obsr125126 S21521406 Stationary P21 EBIRD 519.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002098 2021-04-01 12:26:53.827486 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 16 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr697870 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961232 2021-03-26 07:46:52.994574 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 11 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288801612 2021-03-24 20:53:39.352228 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-02 09:30:00 obsr178309 S21167276 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271570 2021-03-26 07:46:52.994574 11494 species avibase-20C2214E American Kestrel Falco sparverius 10 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290381744 2018-08-04 16:53:07 292 species avibase-60214D49 Cackling Goose Branta hutchinsii X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 11:02:00 obsr504578 S21295062 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310849 2021-03-23 17:18:00.959502 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-16 08:05:00 obsr644825 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292598018 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus 8 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-22 08:29:00 obsr125126 S21491678 Stationary P21 EBIRD 144.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290142398 2021-03-24 20:53:39.352228 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-09 10:00:00 obsr178309 S21275169 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288275651 2021-03-26 07:46:52.994574 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 9 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-01 08:45:00 obsr594026 S21124074 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291957769 2017-01-11 21:22:56 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 13:45:00 obsr594026 S21420792 Traveling P22 EBIRD 65.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290370657 2015-01-11 11:13:48 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 6 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk-Rupert Rd L3284385 P 42.539554 -73.854804 2015-01-11 10:11:00 obsr407723 S21294095 Traveling P22 EBIRD 4.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209724 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 15 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-31 09:15:00 obsr409143 S21618822 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712306 2019-10-18 07:40:54 591 species avibase-1929E1E1 Canvasback Aythya valisineria 3 United States US New York US-NY Albany US-NY-001 28.0 Huyck Preserve--Lake Myosotis L304714 H 42.5220704 -74.14839930000001 2015-01-03 08:30:00 obsr708267 S21240370 Traveling P22 EBIRD 170.0 7.081 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291896928 2016-03-06 22:55:23 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 11 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-19 10:40:00 obsr287339 S21415921 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289443592 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-06 08:00:00 obsr7511 S21219332 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292959575 2021-04-01 12:26:53.827486 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea X United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.574738700000005 -74.15542020000001 2015-01-24 09:15:00 obsr409143 S21520100 Traveling P22 EBIRD 80.0 19.312 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291102561 2015-01-15 09:39:41 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Albany US-NY-001 28.0 Holt Preserve L392283 H 42.5443701 -73.932023 2015-01-15 09:29:00 obsr551017 S21353108 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292852286 2015-01-23 23:01:48 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 Van Schaick Island, Delaware Ave L3312905 P 42.7685963 -73.68541 2015-01-23 13:40:00 obsr657332 S21511603 Traveling P22 EBIRD 95.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292688720 2015-01-23 09:32:49 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-22 16:26:00 obsr657332 S21498880 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288676016 2015-01-18 13:21:44 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 07:24:00 obsr407723 S21156879 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220326 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291401463 2015-01-17 20:56:06 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 10 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-17 08:46:00 obsr120906 S21377332 Stationary P21 EBIRD 6.0 2.0 1 G1112759 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963852 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803302 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289952819 2017-08-16 16:14:31 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-07 16:00:00 obsr317421 S21260008 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551653 2021-03-24 20:53:39.352228 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-02 08:30:00 obsr644825 S21147085 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295183434 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-31 09:01:00 obsr125126 S21696603 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291107158 2018-08-04 16:53:20 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-15 09:50:00 obsr120906 S21353549 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291456232 2015-01-17 14:21:38 622 species avibase-50566E50 Lesser Scaup Aythya affinis 6 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 John Boyd Thacher SP--North L2588143 H 42.6799431 -74.042839 2015-01-16 10:00:00 obsr258063 S21381921 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293822282 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:49:00 obsr551017 S21588434 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289576789 2015-01-06 21:05:58 303 species avibase-B59E1863 Canada Goose Branta canadensis 17 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-06 08:00:00 obsr409143 S21230120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291540067 2021-03-24 20:53:39.352228 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 8 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-17 12:15:00 obsr409143 S21388629 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958219 2021-03-23 17:18:00.959502 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-24 07:30:00 obsr409143 S21520019 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587697 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 12 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-27 08:03:00 obsr125126 S21569971 Stationary P21 EBIRD 544.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293040336 2015-05-06 20:08:00 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-24 13:00:00 obsr110666 S21525985 Stationary P21 EBIRD 60.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289976524 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 8 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 08:00:00 obsr491696 S21261827 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288991919 2015-01-04 11:34:53 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-04 11:07:00 obsr504578 S21184271 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290136753 2015-01-10 08:28:55 505 species avibase-C732CB10 American Black Duck Anas rubripes 16 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-09 obsr620943 S21274627 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294164105 2021-03-24 20:53:39.352228 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Albany US-NY-001 13.0 Vagele Lane, Glenmont L2868631 P 42.597550700000006 -73.78205940000001 2015-01-31 obsr551017 S21615462 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553890 2015-01-17 20:56:06 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 10 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-17 08:46:00 obsr697870 S21389731 Stationary P21 EBIRD 6.0 2.0 1 G1112759 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290941184 2015-01-14 07:55:12 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 12 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-13 obsr620943 S21340030 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470807 2015-01-17 15:31:44 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Glenmont-Mosher Rd L3298318 P 42.572155 -73.759625 2015-01-17 15:16:00 obsr407723 S21383075 Traveling P22 EBIRD 8.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291241210 2015-01-16 07:23:56 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 12 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-15 obsr620943 S21364336 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288254807 2021-03-24 20:53:39.352228 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-01 09:00:00 obsr178309 S21122167 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089283 2017-04-05 16:49:11 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293589082 2021-03-24 20:53:39.352228 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 12 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-27 09:50:00 obsr594026 S21570080 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872630 2021-04-01 12:26:53.827486 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 12 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290693405 2021-11-14 08:08:43.2446 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 5 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-12 13:43:00 obsr546609 S21320208 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773089 2021-03-23 17:18:00.959502 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290849902 2021-03-24 20:53:39.352228 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Albany US-NY-001 13.0 9 Oakbrook Manor, Ravena L2833548 P 42.4649217 -73.8129598 2015-01-13 11:05:00 obsr395936 S21332460 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288957052 2021-03-23 17:18:00.959502 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-04 08:18:00 obsr287339 S21181410 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027845 2021-04-01 12:26:53.827486 26109 species avibase-BAC33609 Brown Creeper Certhia americana 5 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289022141 2015-01-04 13:16:46 406 species avibase-27B2749A Wood Duck Aix sponsa 10 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.76281290000001 2015-01-04 11:56:00 obsr287339 S21186656 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290440482 2021-11-14 08:08:43.2446 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-11 15:15:00 obsr546609 S21299645 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299868 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 14 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183917 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 8 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694067 2021-04-01 12:26:53.827486 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-12 08:40:00 obsr546609 S21320247 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291863392 2015-01-19 08:21:10 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-19 07:49:00 obsr287339 S21413348 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869068 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 14:52:00 obsr287339 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289875005 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 18 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-08 12:00:00 obsr92097 S21253779 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984455 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 7 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288286365 2021-04-01 12:26:53.827486 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-01-01 12:20:00 obsr546609 S21125084 Traveling P22 EBIRD 57.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086441 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 08:30:00 obsr287339 S21529887 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198512 2021-03-26 07:46:52.994574 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 6 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287713 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 16 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289983009 2021-11-14 08:08:43.2446 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 8 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-09 07:55:00 obsr546609 S21262460 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172709 2021-11-14 08:08:43.2446 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 4 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-31 08:30:00 obsr546609 S21616032 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284496 2021-03-26 07:46:52.994574 662 species avibase-FB738385 Bufflehead Bucephala albeola 16 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288247583 2015-01-01 16:55:14 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 17 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-01 14:42:00 obsr171042 S21121569 Traveling P22 EBIRD 132.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291408489 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 09:00:00 obsr287339 S21377904 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288275647 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-01 08:45:00 obsr594026 S21124074 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293340130 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-26 08:56:00 obsr504578 S21549445 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288538415 2021-04-01 12:26:53.827486 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr697870 S21145897 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291904996 2021-03-26 07:46:52.994574 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288631212 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-01 08:00:00 obsr409143 S21153627 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291404137 2016-02-05 16:52:58 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-17 09:01:00 obsr120906 S21377556 Stationary P21 EBIRD 13.0 2.0 1 G1112758 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288991912 2015-01-04 11:34:53 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-04 11:07:00 obsr504578 S21184271 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290853412 2015-01-13 15:31:40 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 9 Oakbrook Manor, Ravena L2833548 P 42.4649217 -73.8129598 2015-01-13 15:15:00 obsr395936 S21332818 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625855 2018-08-04 16:53:55 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Hollyhock Hollow Sanctuary L1146193 H 42.540149 -73.8703108 2015-01-18 09:35:00 obsr407723 S21395264 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621465 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-10 08:00:00 obsr639188 S21731716 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292960398 2015-01-24 16:38:50 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 4 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-24 16:00:00 obsr409143 S21520157 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288678885 2021-03-24 20:53:39.352228 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 08:17:00 obsr407723 S21157038 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293911452 2021-04-01 12:26:53.827486 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr120906 S21595535 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288552243 2015-01-02 17:31:20 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 15:50:00 obsr644825 S21147142 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963836 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292978840 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-24 08:56:00 obsr125126 S21521406 Stationary P21 EBIRD 519.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288801618 2021-03-24 20:53:39.352228 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-02 09:30:00 obsr178309 S21167276 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803417 2016-04-22 12:05:44 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-02 obsr540914 S26514097 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294105854 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:11:00 obsr504578 S21610513 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288372008 2015-05-09 13:02:45 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:15:00 obsr322656 S21132019 Traveling P22 EBIRD 60.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288254806 2021-03-24 20:53:39.352228 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-01 09:00:00 obsr178309 S21122167 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290136761 2015-01-10 08:28:55 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-09 obsr620943 S21274627 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277950 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-01 12:40:00 obsr594026 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289792405 2015-01-07 23:19:09 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-07 08:25:00 obsr644825 S21246849 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290941188 2015-01-14 07:55:12 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-13 obsr620943 S21340030 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288802803 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-03 09:30:00 obsr178309 S21167379 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621950 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289973520 2015-01-09 07:17:28 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-08 obsr620943 S21261580 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408587 2021-03-26 07:46:52.994574 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291456227 2015-01-17 14:21:38 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 John Boyd Thacher SP--North L2588143 H 42.6799431 -74.042839 2015-01-16 10:00:00 obsr258063 S21381921 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292116186 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-20 11:50:00 obsr287339 S21433340 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557997 2021-04-01 12:26:53.827486 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271536 2021-04-01 12:26:53.827486 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr120906 S21205860 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693860 2021-03-24 20:53:39.352228 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290142402 2021-03-24 20:53:39.352228 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-09 10:00:00 obsr178309 S21275169 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289099390 2021-03-24 20:53:39.352228 251 domestic avibase-6835DC6C Graylag Goose (Domestic type) Anser anser (Domestic type) 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-04 09:00:00 obsr178309 S21192730 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281340 2021-03-24 20:53:39.352228 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 09:00:00 obsr491696 S21445865 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292086256 2021-03-26 07:46:52.994574 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY Albany US-NY-001 13.0 Glenmont New York, US L3305646 P 42.5932799 -73.8080406 2015-01-20 07:30:00 obsr602177 S21430796 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288676008 2015-01-18 13:21:44 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 07:24:00 obsr407723 S21156879 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002088 2021-04-01 12:26:53.827486 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr697870 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323530 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 22 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295622737 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-11 08:00:00 obsr639188 S21731845 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295183427 2021-03-26 07:46:52.994574 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-31 09:01:00 obsr125126 S21696603 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293822272 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:49:00 obsr551017 S21588434 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291411276 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-17 08:00:00 obsr7511 S21378123 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059198 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220311 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289781746 2021-03-24 20:53:39.352228 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-07 13:00:00 obsr547303 S21245788 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288969107 2021-04-01 12:26:53.827486 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-04 08:30:00 obsr7511 S21182411 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291540065 2021-03-24 20:53:39.352228 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-17 12:15:00 obsr409143 S21388629 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587688 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-27 08:03:00 obsr125126 S21569971 Stationary P21 EBIRD 544.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204571 2015-01-25 17:59:47 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 07:48:00 obsr504578 S21539320 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712307 2019-10-18 07:40:54 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Albany US-NY-001 28.0 Huyck Preserve--Lake Myosotis L304714 H 42.5220704 -74.14839930000001 2015-01-03 08:30:00 obsr708267 S21240370 Traveling P22 EBIRD 170.0 7.081 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310837 2021-03-23 17:18:00.959502 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-16 08:05:00 obsr644825 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271572 2021-03-26 07:46:52.994574 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648396 2021-03-26 07:46:52.994574 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-22 15:10:00 obsr287339 S21495474 Traveling P22 EBIRD 63.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294075657 2021-03-24 20:53:39.352228 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-30 obsr620943 S21608478 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963927 2021-04-01 12:26:53.827486 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289324555 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-04 09:49:00 obsr125126 S21210282 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961230 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209725 2021-03-26 07:46:52.994574 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-31 09:15:00 obsr409143 S21618822 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288273335 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:30:00 obsr594026 S21123860 Traveling P22 EBIRD 70.0 1.207 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291017530 2021-03-26 07:46:52.994574 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-14 14:54:00 obsr544737 S21346058 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935088 2021-03-26 07:46:52.994574 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289576791 2015-01-06 21:05:58 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-06 08:00:00 obsr409143 S21230120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292142044 2015-01-20 15:11:46 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 Lions L2803969 P 42.772447 -73.80926 2015-01-20 14:52:00 obsr125126 S21435388 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872620 2021-04-01 12:26:53.827486 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289989524 2015-01-09 10:51:44 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-08 07:45:00 obsr644825 S21263052 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407531 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293161478 2021-03-23 17:18:00.959502 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-25 14:12:00 obsr287339 S21535923 Traveling P22 EBIRD 68.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293589081 2021-03-24 20:53:39.352228 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-27 09:50:00 obsr594026 S21570080 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291241202 2015-01-16 07:23:56 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-15 obsr620943 S21364336 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294164099 2021-03-24 20:53:39.352228 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Vagele Lane, Glenmont L2868631 P 42.597550700000006 -73.78205940000001 2015-01-31 obsr551017 S21615462 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089270 2017-04-05 16:49:11 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553886 2016-02-05 16:52:58 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-17 09:01:00 obsr697870 S21389730 Stationary P21 EBIRD 13.0 2.0 1 G1112758 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613845 2021-03-23 17:18:00.959502 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-18 08:42:00 obsr407723 S21394179 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291349079 2021-03-24 20:53:39.352228 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-16 08:00:00 obsr409143 S21373167 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480115 2021-03-26 07:46:52.994574 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 7 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537240 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291924864 2021-03-26 07:46:52.994574 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-19 11:32:00 obsr171042 S21417992 Traveling P22 EBIRD 136.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869057 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 14:52:00 obsr287339 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288673369 2016-01-26 10:16:19 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Albany US-NY-001 13.0 The Black Bridge, Green Island L4159773 H 42.7601592 -73.68771269999999 2015-01-03 07:20:00 obsr287339 S21156653 Traveling P22 EBIRD 14.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288469343 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-02 11:40:00 obsr287339 S21140015 Traveling P22 EBIRD 40.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172714 2021-11-14 08:08:43.2446 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-31 08:30:00 obsr546609 S21616032 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867279 2015-01-19 08:53:39 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-19 08:34:00 obsr287339 S21413672 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293871540 2017-08-16 16:28:24 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-29 14:28:00 obsr171042 S21592605 Traveling P22 EBIRD 96.0 5.792999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299857 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198501 2021-03-26 07:46:52.994574 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291408479 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 09:00:00 obsr287339 S21377904 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289875010 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-08 12:00:00 obsr92097 S21253779 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183906 2021-03-26 07:46:52.994574 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027836 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984443 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287699 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086432 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 08:30:00 obsr287339 S21529887 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288286374 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-01-01 12:20:00 obsr546609 S21125084 Traveling P22 EBIRD 57.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291123702 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-15 11:50:00 obsr287339 S21354889 Traveling P22 EBIRD 35.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753583 2021-03-26 07:46:52.994574 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 6 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-03 12:39:00 obsr287339 S21163284 Traveling P22 EBIRD 83.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284482 2021-03-26 07:46:52.994574 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291949107 2021-04-01 12:26:53.827486 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-19 10:49:00 obsr546609 S21420041 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289022133 2015-01-04 13:16:46 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.76281290000001 2015-01-04 11:56:00 obsr287339 S21186656 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773099 2021-03-23 17:18:00.959502 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291348353 2021-04-01 12:26:53.827486 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 20 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Mohawk View L2565459 P 42.7787123 -73.7007205 2015-01-16 09:45:00 obsr409143 S21373112 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204576 2015-01-25 17:59:47 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 07:48:00 obsr504578 S21539320 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293871545 2017-08-16 16:28:24 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 6 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-29 14:28:00 obsr171042 S21592605 Traveling P22 EBIRD 96.0 5.792999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288273339 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 15 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:30:00 obsr594026 S21123860 Traveling P22 EBIRD 70.0 1.207 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984452 2021-03-26 07:46:52.994574 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753590 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-03 12:39:00 obsr287339 S21163284 Traveling P22 EBIRD 83.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905004 2021-03-26 07:46:52.994574 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288676014 2015-01-18 13:21:44 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 07:24:00 obsr407723 S21156879 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407540 2021-03-26 07:46:52.994574 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 12 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289578033 2015-01-06 21:09:07 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 meadowbrook above rr tracks L3272133 P 42.6728115 -73.982332 2015-01-05 11:00:00 obsr409143 S21230182 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288372017 2015-05-09 13:02:45 303 species avibase-B59E1863 Canada Goose Branta canadensis 14 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:15:00 obsr322656 S21132019 Traveling P22 EBIRD 60.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220322 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 7 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027843 2021-04-01 12:26:53.827486 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288879726 2021-03-24 20:53:39.352228 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284480 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 9 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984352 2015-01-04 11:00:53 483 species avibase-85625D75 Mallard Anas platyrhynchos 20 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Voorheesville-40-108 Co Rd 256 L3264669 P 42.657235 -74.035563 2015-01-04 11:00:00 obsr504578 S21183541 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288580435 2018-08-04 16:52:31 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Albany US-NY-001 13.0 Vly Swamp L3258923 P 42.6497115 -73.97915479999999 2015-01-02 13:20:00 obsr594026 S21149465 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323522 2021-04-01 12:26:53.827486 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 4 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470806 2015-01-17 15:31:44 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Glenmont-Mosher Rd L3298318 P 42.572155 -73.759625 2015-01-17 15:16:00 obsr407723 S21383075 Traveling P22 EBIRD 8.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963848 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287697 2021-03-26 07:46:52.994574 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 9 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089278 2017-04-05 16:49:11 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291957767 2017-01-11 21:22:56 11528 species avibase-F3DA111C Merlin Falco columbarius 7 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 13:45:00 obsr594026 S21420792 Traveling P22 EBIRD 65.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292657022 2015-01-22 17:10:39 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 14 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-21 14:00:00 obsr544737 S21496304 Stationary P21 EBIRD 5.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323490 2021-04-01 12:26:53.827486 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803293 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295622736 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos N 2 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-11 08:00:00 obsr639188 S21731845 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753592 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 30 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-03 12:39:00 obsr287339 S21163284 Traveling P22 EBIRD 83.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294164100 2021-03-24 20:53:39.352228 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 3 United States US New York US-NY Albany US-NY-001 13.0 Vagele Lane, Glenmont L2868631 P 42.597550700000006 -73.78205940000001 2015-01-31 obsr551017 S21615462 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292579283 2021-03-23 17:18:00.959502 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 7 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-22 07:34:00 obsr407723 S21490126 Traveling P22 EBIRD 12.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288957051 2021-03-23 17:18:00.959502 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N X United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-04 08:18:00 obsr287339 S21181410 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417852 2021-03-26 07:46:52.994574 27616 species avibase-D77E4B41 American Robin Turdus migratorius N X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-12 08:00:00 obsr7511 S21378694 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290754390 2021-03-23 17:18:00.959502 7732 species avibase-A091D50A Northern Harrier Circus hudsonius N 4 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-12 15:00:00 obsr657332 S21324969 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294271033 2021-03-23 17:18:00.959502 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-31 14:30:00 obsr657332 S21623792 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293589078 2021-03-24 20:53:39.352228 483 species avibase-85625D75 Mallard Anas platyrhynchos N 3 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-27 09:50:00 obsr594026 S21570080 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289762593 2021-04-01 12:26:53.827486 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 120 United States US New York US-NY Albany US-NY-001 13.0 I 787 exit ramp to Clinton Ave L3275502 P 42.6540199 -73.7467897 2015-01-07 11:50:00 obsr594026 S21244380 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290369684 2021-03-23 17:18:00.959502 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N X United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-11 09:46:00 obsr551017 S21294028 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288674172 2021-03-23 17:18:00.959502 483 species avibase-85625D75 Mallard Anas platyrhynchos N 10 United States US New York US-NY Albany US-NY-001 13.0 Cohoes - Bridge Ave. L2524087 P 42.7682498 -73.6956453 2015-01-03 07:40:00 obsr287339 S21156723 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288999573 2021-04-01 12:26:53.827486 616 species avibase-25C94A8F Greater Scaup Aythya marila N 100 United States US New York US-NY Albany US-NY-001 13.0 Colonie Center L650311 P 42.7104674 -73.8174391 2015-01-04 11:38:00 obsr407723 S21184866 Incidental P20 EBIRD 2.0 1 G1094999 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290142394 2021-03-24 20:53:39.352228 483 species avibase-85625D75 Mallard Anas platyrhynchos N 2 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-09 10:00:00 obsr178309 S21275169 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288192838 2021-03-23 17:18:00.959502 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 10 United States US New York US-NY Albany US-NY-001 13.0 pauley lane L3253415 P 42.6503428 -73.88260600000001 2015-01-01 11:45:00 obsr560402 S21116906 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290756317 2021-03-23 17:18:00.959502 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 350 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-12 14:23:00 obsr657332 S21324882 Traveling P22 EBIRD 25.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288773030 2021-03-23 17:18:00.959502 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 100 United States US New York US-NY Albany US-NY-001 13.0 Vly Creek Marsh L2888967 H 42.6464318 -73.9692714 2015-01-03 13:20:00 obsr452367 S21164874 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958220 2021-03-23 17:18:00.959502 303 species avibase-B59E1863 Canada Goose Branta canadensis N 5 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-24 07:30:00 obsr409143 S21520019 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292590933 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 15 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-01-22 08:50:00 obsr120906 S21491087 Traveling P22 EBIRD 64.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293261606 2021-03-23 17:18:00.959502 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 25 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-01-25 14:00:00 obsr657332 S21543611 Traveling P22 EBIRD 40.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613850 2021-03-23 17:18:00.959502 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 13 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-18 08:42:00 obsr407723 S21394179 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621471 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 1 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-10 08:00:00 obsr639188 S21731716 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292959578 2021-04-01 12:26:53.827486 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N X United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.574738700000005 -74.15542020000001 2015-01-24 09:15:00 obsr409143 S21520100 Traveling P22 EBIRD 80.0 19.312 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288969106 2021-04-01 12:26:53.827486 505 species avibase-C732CB10 American Black Duck Anas rubripes N X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-04 08:30:00 obsr7511 S21182411 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812969 2021-03-23 17:18:00.959502 662 species avibase-FB738385 Bufflehead Bucephala albeola N 1000 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-28 15:05:00 obsr657332 S21587566 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289000795 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis N 100 United States US New York US-NY Albany US-NY-001 13.0 Colonie Center L650311 P 42.7104674 -73.8174391 2015-01-04 11:38:00 obsr547303 S21184976 Incidental P20 EBIRD 2.0 1 G1094999 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293259345 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 100 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-25 15:40:00 obsr657332 S21543446 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291099843 2021-03-23 17:18:00.959502 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-15 08:51:00 obsr551017 S21352842 Traveling P22 EBIRD 9.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288469426 2021-04-01 12:26:53.827486 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 2 United States US New York US-NY Albany US-NY-001 13.0 Huck Finn's Warehouse L3257297 P 42.660790000000006 -73.74003 2015-01-02 12:35:00 obsr257692 S21140030 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679040 2021-03-23 17:18:00.959502 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 1 United States US New York US-NY Albany US-NY-001 28.0 US-NY-Middleburgh-244 Gulf Rd L3260209 P 42.520965 -74.218788 2015-01-03 08:29:00 obsr684648 S21157050 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310846 2021-03-23 17:18:00.959502 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 7 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-16 08:05:00 obsr644825 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289237982 2021-03-26 07:46:52.994574 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina N 25 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-05 08:00:00 obsr7511 S21203183 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292144390 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 10 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-29 Cataract St L3306369 P 42.784089 -73.707027 2015-01-20 15:10:00 obsr657332 S21435562 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291544684 2021-03-23 17:18:00.959502 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 1 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:47:00 obsr386198 S21389000 Stationary P21 EBIRD 38.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295344064 2021-03-23 17:18:00.959502 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N X United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-28 12:16:00 obsr684648 S21709681 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291017538 2021-03-26 07:46:52.994574 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis N 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-14 14:54:00 obsr544737 S21346058 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290216779 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 8 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288221324 2021-04-01 12:26:53.827486 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N X United States US New York US-NY Albany US-NY-001 13.0 Rt. 85, Slingerlands L1466118 P 42.6361785 -73.85645809999998 2015-01-01 11:45:00 obsr120906 S21119388 Incidental P20 EBIRD 2.0 1 G1094762 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323513 2021-04-01 12:26:53.827486 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 532 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289443587 2021-03-26 07:46:52.994574 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-06 08:00:00 obsr7511 S21219332 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086437 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 08:30:00 obsr287339 S21529887 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288469344 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-02 11:40:00 obsr287339 S21140015 Traveling P22 EBIRD 40.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277937 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 55 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-01 12:40:00 obsr594026 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288966740 2021-03-23 17:18:00.959502 662 species avibase-FB738385 Bufflehead Bucephala albeola N 10 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-04 09:22:00 obsr504578 S21182191 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291223021 2021-04-01 12:26:53.827486 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus N 39 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-15 16:05:00 obsr657332 S21363073 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679901 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 50 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-03 08:15:00 obsr7511 S21157120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480127 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292484570 2021-04-01 12:26:53.827486 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 12 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-29 Cataract St L3306369 P 42.784089 -73.707027 2015-01-21 15:30:00 obsr657332 S21482662 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803299 2021-04-01 12:26:53.827486 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291416890 2021-03-24 20:53:39.352228 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-15 08:00:00 obsr7511 S21378609 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289024907 2021-03-23 17:18:00.959502 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N X United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-01 obsr551017 S21186896 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249281 2021-03-23 17:18:00.959502 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 3 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 08:00:00 obsr546609 S21365094 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288681722 2021-03-23 17:18:00.959502 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 25 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 08:33:00 obsr407723 S21157294 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963923 2021-04-01 12:26:53.827486 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY Albany US-NY-001 13.0 Rt. 85, Slingerlands L1466118 P 42.6361785 -73.85645809999998 2015-01-01 11:45:00 obsr697870 S21181946 Incidental P20 EBIRD 2.0 1 G1094762 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292810783 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 12 United States US New York US-NY Albany US-NY-001 13.0 Hudson River shoreline at USS Slater site L3245378 P 42.6421355 -73.74999229999999 2015-01-23 11:50:00 obsr594026 S21508425 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935072 2021-03-26 07:46:52.994574 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N 11 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293161480 2021-03-23 17:18:00.959502 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus N 18 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-25 14:12:00 obsr287339 S21535923 Traveling P22 EBIRD 68.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773083 2021-03-23 17:18:00.959502 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 4 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288700277 2021-03-26 07:46:52.994574 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus N 60 United States US New York US-NY Albany US-NY-001 13.0 Albany International Airport--Sicker Rd. eastern side L2494355 H 42.751172 -73.80131899999999 2015-01-03 10:10:00 obsr287339 S21158898 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294007666 2021-04-01 12:26:53.827486 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos N 8 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-30 14:45:00 obsr657332 S21603025 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291408486 2021-03-26 07:46:52.994574 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 09:00:00 obsr287339 S21377904 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290754389 2021-03-23 17:18:00.959502 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-12 15:00:00 obsr657332 S21324969 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291073279 2018-08-04 16:53:19 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-14 15:41:00 obsr657332 S21350685 Traveling P22 EBIRD 17.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290499194 2021-04-01 12:26:53.827486 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 14:55:00 obsr657332 S21304572 Traveling P22 EBIRD 55.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294082846 2018-08-04 16:55:27 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-30 15:00:00 obsr657332 S21603563 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292701374 2015-01-22 21:49:31 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Latham-126-138 County Rd 160 L3311103 P 42.750848 -73.80042399999999 2015-01-22 13:30:00 obsr657332 S21499786 Traveling P22 EBIRD 7.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290505419 2018-08-04 16:53:11 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-11 15:56:00 obsr657332 S21305105 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812968 2021-03-23 17:18:00.959502 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-28 15:05:00 obsr657332 S21587566 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290960853 2015-01-14 12:41:50 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-14 11:02:00 obsr551017 S21341599 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694940 2018-08-04 16:53:13 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-12 10:15:00 obsr546609 S21320325 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290753478 2021-03-23 17:18:00.959502 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-12 14:23:00 obsr657332 S21324882 Traveling P22 EBIRD 25.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294271032 2021-03-23 17:18:00.959502 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-31 14:30:00 obsr657332 S21623792 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290502341 2015-01-11 18:55:14 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Albany-16 Morris St L3286008 P 42.651292 -73.76892 2015-01-11 18:54:00 obsr684648 S21304830 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094743 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks Club L3305761 P 42.7791903 -73.7017007 2015-01-19 obsr101869 S21431537 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290957505 2018-08-04 16:53:18 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-14 10:30:00 obsr551017 S21341287 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292852285 2015-01-23 23:01:48 303 species avibase-B59E1863 Canada Goose Branta canadensis 17 United States US New York US-NY Albany US-NY-001 13.0 Van Schaick Island, Delaware Ave L3312905 P 42.7685963 -73.68541 2015-01-23 13:40:00 obsr657332 S21511603 Traveling P22 EBIRD 95.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291719419 2015-01-18 16:13:57 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr287339 S21402285 Stationary P21 EBIRD 25.0 14.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292767825 2015-01-23 13:53:36 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-23 10:10:00 obsr409143 S21504888 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867281 2015-01-19 08:53:39 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-19 08:34:00 obsr287339 S21413672 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905111 2015-01-19 12:21:02 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-19 10:00:00 obsr551017 S21416527 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291075281 2018-08-04 16:53:19 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 4 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-14 16:15:00 obsr657332 S21350820 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553645 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:00:00 obsr409143 S21389711 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679892 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-03 08:15:00 obsr7511 S21157120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291483318 2018-08-04 16:53:32 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr504578 S21384068 Stationary P21 EBIRD 28.0 15.0 1 G1112538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534524 2018-08-04 16:53:53 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr551017 S21388183 Stationary P21 EBIRD 28.0 15.0 1 G1112538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292260144 2018-08-04 16:53:03 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:50:00 obsr322656 S21443994 Stationary P21 EBIRD 10.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290285871 2021-04-01 12:26:53.827486 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 1 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-10 15:30:00 obsr322656 S21281606 Stationary P21 EBIRD 80.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291405499 2018-08-04 16:53:27 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:20:00 obsr120906 S21377671 Stationary P21 EBIRD 8.0 2.0 1 G1112757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292590928 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-01-22 08:50:00 obsr120906 S21491087 Traveling P22 EBIRD 64.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291416716 2021-03-26 07:46:52.994574 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-16 08:00:00 obsr7511 S21378583 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293178364 2018-08-04 16:55:16 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 14:45:00 obsr399201 S21537211 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292633476 2015-01-22 23:23:10 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-22 15:00:00 obsr657332 S21494501 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291347178 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 10:20:00 obsr409143 S21373036 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740173 2018-08-04 16:53:24 20294 species avibase-76158864 Northern Shrike Lanius borealis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 obsr560402 S23337228 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553862 2018-08-04 16:53:27 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:20:00 obsr697870 S21389727 Stationary P21 EBIRD 8.0 2.0 1 G1112757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291514743 2018-08-04 16:53:32 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:45:00 obsr594026 S21386563 Stationary P21 EBIRD 30.0 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291930015 2018-08-04 16:53:24 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 03:30:00 obsr377411 S21418419 Stationary P21 EBIRD 45.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292631641 2015-01-22 14:57:07 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-22 14:25:00 obsr657332 S21494361 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291949113 2021-04-01 12:26:53.827486 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 10 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-19 10:49:00 obsr546609 S21420041 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293386935 2018-08-04 16:55:19 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-26 13:30:00 obsr657332 S21553414 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291544680 2021-03-23 17:18:00.959502 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:47:00 obsr386198 S21389000 Stationary P21 EBIRD 38.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290297988 2015-01-10 20:58:54 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-10 16:00:00 obsr551017 S21288356 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539547 2018-08-04 16:53:32 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:45:00 obsr409143 S21388575 Stationary P21 EBIRD 35.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290387103 2015-01-11 11:41:28 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-11 11:40:00 obsr504578 S21295503 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323529 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 16 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290313069 2018-08-04 16:53:04 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 25 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-10 16:43:00 obsr657332 S21289569 Stationary P21 EBIRD 15.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291405498 2018-08-04 16:53:27 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 20 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:20:00 obsr120906 S21377671 Stationary P21 EBIRD 8.0 2.0 1 G1112757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553642 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos 14 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:00:00 obsr409143 S21389711 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293265953 2018-08-04 16:55:17 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-25 15:45:00 obsr657332 S21543973 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534532 2018-08-04 16:53:31 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr551017 S21388184 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290370471 2016-02-05 21:24:52 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-11 10:05:00 obsr287339 S21294085 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292186032 2015-01-20 18:49:59 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 23 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-20 13:50:00 obsr594026 S21438658 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290313068 2018-08-04 16:53:04 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 105 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-10 16:43:00 obsr657332 S21289569 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291930010 2018-08-04 16:53:24 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 03:30:00 obsr377411 S21418419 Stationary P21 EBIRD 45.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290216832 2021-04-01 12:26:53.827486 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 25 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-10 15:30:00 obsr322656 S21281606 Stationary P21 EBIRD 80.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289954823 2018-08-04 16:52:55 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-08 15:00:00 obsr657332 S21260148 Traveling P22 EBIRD 60.0 14.484000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288186858 2015-01-01 13:49:35 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 Six-Mile Waterworks Park L585078 H 42.6966304 -73.831172 2015-01-01 12:15:00 obsr560402 S21116371 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905109 2015-01-19 12:21:02 303 species avibase-B59E1863 Canada Goose Branta canadensis 150 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-19 10:00:00 obsr551017 S21416527 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291535585 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 08:40:00 obsr409143 S21388262 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291478293 2015-01-17 19:46:42 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Albany US-NY-001 13.0 Port of Albany, NY L608431 P 42.6267124 -73.7552118 2015-01-17 15:50:00 obsr322656 S21383634 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291348361 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 25 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Mohawk View L2565459 P 42.7787123 -73.7007205 2015-01-16 09:45:00 obsr409143 S21373112 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291874688 2018-08-04 16:54:00 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-19 09:35:00 obsr287339 S21414323 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292562003 2018-08-04 16:54:50 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-21 16:21:00 obsr657332 S21488782 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291107155 2018-08-04 16:53:20 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-15 09:50:00 obsr120906 S21353549 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288966738 2021-03-23 17:18:00.959502 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-04 09:22:00 obsr504578 S21182191 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112548 2018-08-04 16:52:37 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River Cohoes side from Waterford L2606895 P 42.78284620000001 -73.7041211 2015-01-03 10:00:00 obsr594026 S21193773 Stationary P21 EBIRD 40.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290486864 2018-08-04 16:53:08 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 143 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 12:00:00 obsr322656 S21303554 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290505418 2018-08-04 16:53:11 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 7 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-11 15:56:00 obsr657332 S21305105 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323501 2021-04-01 12:26:53.827486 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 113 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508022 2018-08-04 16:53:31 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 6 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:50:00 obsr594026 S21386094 Stationary P21 EBIRD 30.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290380947 2015-01-13 17:12:37 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-11 11:07:00 obsr120906 S21294958 Incidental P20 EBIRD 2.0 0 G1108429 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288509448 2021-04-01 12:26:53.827486 30494 species avibase-240E3390 House Sparrow Passer domesticus 30 United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-02 obsr560402 S21143281 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290752709 2021-04-01 12:26:53.827486 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 51 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-12 13:50:00 obsr657332 S21324813 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294005034 2018-08-04 16:55:26 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-30 14:20:00 obsr657332 S21602777 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369402185 2018-08-04 16:52:58 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 obsr513002 S27183003 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292631639 2015-01-22 14:57:07 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-22 14:25:00 obsr657332 S21494361 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391766 2015-01-11 12:04:22 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 25 United States US New York US-NY Albany US-NY-001 13.0 42.7787x-73.7010 - Nov 11, 2013, 14:03 L2418474 P 42.778698 -73.700989 2015-01-11 12:03:00 obsr322656 S21295881 Stationary P21 EBIRD 1.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534188 2018-08-04 16:53:32 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 6 United States US New York US-NY Albany US-NY-001 13.0 Elks Lodge Parking Lot, Cohoes L2610868 P 42.7792074 -73.70188420000001 2015-01-17 15:35:00 obsr409143 S21388156 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292480185 2018-08-04 16:54:50 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 9 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-21 15:00:00 obsr657332 S21482323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291223017 2021-04-01 12:26:53.827486 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 25 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-15 16:05:00 obsr657332 S21363073 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291475299 2015-01-17 19:35:33 6616 species avibase-7E022378 Common Loon Gavia immer X United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-45 N Mohawk St L3298386 P 42.7793 -73.701932 2015-01-17 15:32:00 obsr504578 S21383433 Stationary P21 EBIRD 17.0 15.0 1 G1112531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553861 2018-08-04 16:53:27 681 species avibase-407E2CA8 Common Merganser Mergus merganser 20 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:20:00 obsr697870 S21389727 Stationary P21 EBIRD 8.0 2.0 1 G1112757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292852934 2015-01-23 22:58:47 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-23 15:48:00 obsr657332 S21511649 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508846 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr287339 S21386137 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291483316 2018-08-04 16:53:32 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr504578 S21384068 Stationary P21 EBIRD 28.0 15.0 1 G1112538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290381741 2018-08-04 16:53:07 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 11:02:00 obsr504578 S21295062 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292058235 2021-04-01 12:26:53.827486 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-19 11:55:00 obsr657332 S21428677 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249282 2021-03-23 17:18:00.959502 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 08:00:00 obsr546609 S21365094 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290297993 2015-01-10 20:58:54 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 100 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-10 16:00:00 obsr551017 S21288356 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498530 2021-04-01 12:26:53.827486 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr546609 S21385309 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534916 2021-03-26 07:46:52.994574 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 15 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:45:00 obsr409143 S21388220 Stationary P21 EBIRD 20.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294271030 2021-03-23 17:18:00.959502 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-31 14:30:00 obsr657332 S21623792 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470777 2018-08-04 16:53:31 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr504578 S21383073 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740164 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-17 obsr560402 S23337227 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694939 2018-08-04 16:53:13 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 8 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-12 10:15:00 obsr546609 S21320325 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694557 2019-07-23 17:26:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 47 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-12 09:20:00 obsr546609 S21320297 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291872512 2021-03-26 07:46:52.994574 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 2 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-19 09:27:00 obsr504578 S21414117 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146372 2021-03-26 07:46:52.994574 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 30 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-15 12:15:00 obsr92097 S21356603 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293386933 2018-08-04 16:55:19 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-26 13:30:00 obsr657332 S21553414 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293258041 2018-08-04 16:55:17 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 15:28:00 obsr657332 S21543345 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534522 2018-08-04 16:53:53 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr551017 S21388183 Stationary P21 EBIRD 28.0 15.0 1 G1112538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292144388 2021-04-01 12:26:53.827486 447 species avibase-C235A4D7 Gadwall Mareca strepera 18 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-29 Cataract St L3306369 P 42.784089 -73.707027 2015-01-20 15:10:00 obsr657332 S21435562 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290950620 2015-01-14 12:43:58 27616 species avibase-D77E4B41 American Robin Turdus migratorius 15 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks L2597661 P 42.77923010000001 -73.7017514 2015-01-14 09:35:00 obsr551017 S21340703 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290870271 2015-01-13 17:12:37 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-11 11:07:00 obsr697870 S21334373 Incidental P20 EBIRD 2.0 0 G1108429 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094736 2021-04-01 12:26:53.827486 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks Club L3305761 P 42.7791903 -73.7017007 2015-01-19 obsr101869 S21431537 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534229 2015-01-17 19:36:01 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks L2597661 P 42.77923010000001 -73.7017514 2015-01-17 15:32:00 obsr551017 S21388160 Stationary P21 EBIRD 17.0 15.0 1 G1112531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291075277 2018-08-04 16:53:19 592 species avibase-3072CC16 Redhead Aythya americana 75 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-14 16:15:00 obsr657332 S21350820 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291251960 2015-01-16 10:01:57 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 09:57:00 obsr504578 S21365324 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290304553 2018-08-04 16:53:03 406 species avibase-27B2749A Wood Duck Aix sponsa 94 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:35:00 obsr657332 S21288891 Traveling P22 EBIRD 45.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290957503 2018-08-04 16:53:18 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-14 10:30:00 obsr551017 S21341287 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294014164 2018-08-04 16:55:27 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-30 15:00:00 obsr657332 S21603563 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291071413 2021-04-01 12:26:53.827486 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 17 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-14 15:05:00 obsr657332 S21350549 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291073283 2018-08-04 16:53:19 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 10 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-14 15:41:00 obsr657332 S21350685 Traveling P22 EBIRD 17.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694068 2021-04-01 12:26:53.827486 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 40 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-12 08:40:00 obsr546609 S21320247 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812966 2021-03-23 17:18:00.959502 7732 species avibase-A091D50A Northern Harrier Circus hudsonius X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-28 15:05:00 obsr657332 S21587566 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291221702 2018-08-04 16:53:22 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 79 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-15 15:56:00 obsr657332 S21362938 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369402373 2016-01-28 21:09:56 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Crescent Rd., Colonie Landfill pull off L3289882 H 42.811988 -73.7252569 2015-01-10 obsr513002 S27183020 Historical P62 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291514740 2018-08-04 16:53:32 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 50 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:45:00 obsr594026 S21386563 Stationary P21 EBIRD 30.0 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292559996 2015-01-21 23:22:00 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-21 15:50:00 obsr657332 S21488645 Traveling P22 EBIRD 21.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288683821 2018-08-04 16:52:36 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-03 08:43:00 obsr287339 S21157449 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293711477 2021-04-01 12:26:53.827486 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-28 13:40:00 obsr657332 S21579405 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290499188 2021-04-01 12:26:53.827486 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 15 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 14:55:00 obsr657332 S21304572 Traveling P22 EBIRD 55.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288626943 2018-08-04 16:52:28 11494 species avibase-20C2214E American Kestrel Falco sparverius 4 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-02 09:30:00 obsr409143 S21153279 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288481032 2015-01-02 13:18:51 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Albany, Interstate 787 L3257473 P 42.66022 -73.73833 2015-01-02 13:14:00 obsr257692 S21140958 Traveling P22 EBIRD 4.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288629415 2021-04-01 12:26:53.827486 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-02 10:30:00 obsr409143 S21153482 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291248269 2016-02-05 16:52:57 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 30 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-16 09:08:00 obsr120906 S21365015 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291028534 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-14 11:45:00 obsr594026 S21346986 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290297622 2015-01-10 20:56:29 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:30:00 obsr551017 S21288315 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291347176 2021-04-01 12:26:53.827486 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 10:20:00 obsr409143 S21373036 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291636730 2015-01-18 11:46:09 20294 species avibase-76158864 Northern Shrike Lanius borealis 2 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-18 11:05:00 obsr407723 S21396210 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291542912 2018-08-04 16:53:31 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:48:00 obsr386198 S21388858 Stationary P21 EBIRD 37.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539546 2018-08-04 16:53:32 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 125 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:45:00 obsr409143 S21388575 Stationary P21 EBIRD 35.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290830372 2015-03-10 04:47:00 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 30 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Crescent Rd., Colonie Landfill pull off L3289882 H 42.811988 -73.7252569 2015-01-13 10:45:00 obsr120906 S21330760 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291544679 2021-03-23 17:18:00.959502 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 70 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:47:00 obsr386198 S21389000 Stationary P21 EBIRD 38.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292116179 2021-04-01 12:26:53.827486 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-20 11:50:00 obsr287339 S21433340 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290297992 2015-01-10 20:58:54 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-10 16:00:00 obsr551017 S21288356 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291930012 2018-08-04 16:53:24 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 Unknown Sex, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 03:30:00 obsr377411 S21418419 Stationary P21 EBIRD 45.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291719137 2015-01-18 16:13:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr287339 S21402285 Stationary P21 EBIRD 25.0 14.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534521 2018-08-04 16:53:53 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr551017 S21388183 Stationary P21 EBIRD 28.0 15.0 1 G1112538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291483315 2018-08-04 16:53:32 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr504578 S21384068 Stationary P21 EBIRD 28.0 15.0 1 G1112538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740162 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-17 obsr560402 S23337227 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291514742 2018-08-04 16:53:32 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:45:00 obsr594026 S21386563 Stationary P21 EBIRD 30.0 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290332014 2018-08-04 16:53:04 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-10 16:43:00 obsr657332 S21289569 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508845 2021-04-01 12:26:53.827486 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 Unknown Sex, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr287339 S21386137 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812965 2021-03-23 17:18:00.959502 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-28 15:05:00 obsr657332 S21587566 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291544682 2021-03-23 17:18:00.959502 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 Unknown Sex, Juvenile (1) United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:47:00 obsr386198 S21389000 Stationary P21 EBIRD 38.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498529 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 Unknown Sex, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr546609 S21385309 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539543 2018-08-04 16:53:32 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:45:00 obsr409143 S21388575 Stationary P21 EBIRD 35.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290216831 2021-04-01 12:26:53.827486 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-10 15:30:00 obsr322656 S21281606 Stationary P21 EBIRD 80.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290297620 2015-01-10 20:56:29 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:30:00 obsr551017 S21288315 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323528 2021-04-01 12:26:53.827486 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694071 2021-04-01 12:26:53.827486 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-12 08:40:00 obsr546609 S21320247 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537245 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291542917 2018-08-04 16:53:31 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:48:00 obsr386198 S21388858 Stationary P21 EBIRD 37.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712171 2019-10-18 07:40:54 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Albany US-NY-001 28.0 Huyck Preserve--Lake Myosotis L304714 H 42.5220704 -74.14839930000001 2015-01-03 08:30:00 obsr708267 S21240370 Traveling P22 EBIRD 170.0 7.081 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271577 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963576 2015-01-04 09:20:44 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Albany L122621 T 42.65258 -73.75627 2015-01-02 09:00:00 obsr697870 S21181908 Incidental P20 EBIRD 2.0 0 G1094753 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905003 2021-03-26 07:46:52.994574 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288877620 2015-01-04 09:20:44 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Albany US-NY-001 13.0 Albany L122621 T 42.65258 -73.75627 2015-01-02 09:00:00 obsr120906 S21175447 Incidental P20 EBIRD 2.0 0 G1094753 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323496 2021-04-01 12:26:53.827486 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408590 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284488 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220306 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963826 2021-03-26 07:46:52.994574 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287705 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289276221 2018-08-04 16:52:48 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-05 11:35:00 obsr287339 S21206228 Traveling P22 EBIRD 25.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803309 2021-04-01 12:26:53.827486 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740156 2021-04-01 12:26:53.827486 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-17 obsr560402 S23337227 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292480180 2018-08-04 16:54:50 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-21 15:00:00 obsr657332 S21482323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534225 2015-01-17 19:36:01 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks L2597661 P 42.77923010000001 -73.7017514 2015-01-17 15:32:00 obsr551017 S21388160 Stationary P21 EBIRD 17.0 15.0 1 G1112531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740171 2018-08-04 16:53:24 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 obsr560402 S23337228 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694559 2019-07-23 17:26:56 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 Male, Adult (3) United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-12 09:20:00 obsr546609 S21320297 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292851116 2018-08-04 16:54:56 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-23 15:15:00 obsr657332 S21511531 Stationary P21 EBIRD 5.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292559999 2015-01-21 23:22:00 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-21 15:50:00 obsr657332 S21488645 Traveling P22 EBIRD 21.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094740 2021-04-01 12:26:53.827486 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks Club L3305761 P 42.7791903 -73.7017007 2015-01-19 obsr101869 S21431537 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291404134 2016-02-05 16:52:58 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-17 09:01:00 obsr120906 S21377556 Stationary P21 EBIRD 13.0 2.0 1 G1112758 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292633471 2015-01-22 23:23:10 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-22 15:00:00 obsr657332 S21494501 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294271025 2021-03-23 17:18:00.959502 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-31 14:30:00 obsr657332 S21623792 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553883 2016-02-05 16:52:58 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-17 09:01:00 obsr697870 S21389730 Stationary P21 EBIRD 13.0 2.0 1 G1112758 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS353076160 2015-11-13 03:00:16 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-18 08:00:00 obsr726592 S25810610 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290950616 2015-01-14 12:43:58 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks L2597661 P 42.77923010000001 -73.7017514 2015-01-14 09:35:00 obsr551017 S21340703 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293349256 2015-01-26 10:19:21 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 16:30:00 obsr560402 S21550270 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292141793 2018-08-04 16:54:47 406 species avibase-27B2749A Wood Duck Aix sponsa 3 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-20 15:00:00 obsr657332 S21435366 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534184 2018-08-04 16:53:32 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Elks Lodge Parking Lot, Cohoes L2610868 P 42.7792074 -73.70188420000001 2015-01-17 15:35:00 obsr409143 S21388156 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291537381 2015-01-17 19:47:06 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River below Cohoes Falls L2606846 P 42.7791235 -73.70047059999999 2015-01-17 15:30:00 obsr287339 S21388407 Stationary P21 EBIRD 15.0 14.0 1 G1112574 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290392263 2018-08-04 16:53:07 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 11:02:00 obsr504578 S21295062 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291475295 2015-01-17 19:35:33 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-45 N Mohawk St L3298386 P 42.7793 -73.701932 2015-01-17 15:32:00 obsr504578 S21383433 Stationary P21 EBIRD 17.0 15.0 1 G1112531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291543795 2018-08-04 16:53:32 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River from Elks Lodge parking lot L3299203 P 42.7791133 -73.7018476 2015-01-17 15:31:00 obsr386198 S21388928 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291107152 2018-08-04 16:53:20 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-15 09:50:00 obsr120906 S21353549 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291248265 2016-02-05 16:52:57 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-16 09:08:00 obsr120906 S21365015 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292454894 2018-08-04 16:54:49 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-21 12:15:00 obsr544737 S21480267 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290085409 2018-08-04 16:52:58 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-09 15:50:00 obsr657332 S21270727 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292148446 2018-08-04 16:54:47 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-20 15:30:00 obsr657332 S21435847 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292186029 2015-01-20 18:49:59 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-20 13:50:00 obsr594026 S21438658 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291223016 2021-04-01 12:26:53.827486 26109 species avibase-BAC33609 Brown Creeper Certhia americana 4 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-15 16:05:00 obsr657332 S21363073 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291509061 2015-01-17 19:47:06 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River below Cohoes Falls L2606846 P 42.7791235 -73.70047059999999 2015-01-17 15:30:00 obsr594026 S21386157 Stationary P21 EBIRD 15.0 14.0 1 G1112574 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292058236 2021-04-01 12:26:53.827486 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-19 11:55:00 obsr657332 S21428677 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292631636 2015-01-22 14:57:07 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-22 14:25:00 obsr657332 S21494361 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291071411 2021-04-01 12:26:53.827486 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 5 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-14 15:05:00 obsr657332 S21350549 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294014161 2018-08-04 16:55:27 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-30 15:00:00 obsr657332 S21603563 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094704 2016-02-05 16:52:57 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-20 09:39:00 obsr120906 S21431533 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291348356 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Mohawk View L2565459 P 42.7787123 -73.7007205 2015-01-16 09:45:00 obsr409143 S21373112 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290957498 2018-08-04 16:53:18 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-14 10:30:00 obsr551017 S21341287 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290370467 2016-02-05 21:24:52 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-11 10:05:00 obsr287339 S21294085 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293258038 2018-08-04 16:55:17 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 15:28:00 obsr657332 S21543345 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293178359 2018-08-04 16:55:16 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 14:45:00 obsr399201 S21537211 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290879838 2015-01-13 18:06:54 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River below Cohoes Falls L2606846 P 42.7791235 -73.70047059999999 2015-01-13 10:50:00 obsr594026 S21335177 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291086746 2018-05-10 06:37:11 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 My Yard & lower Barent Winne Rd. L1275103 P 42.5497407 -73.7620354 2015-01-15 03:07:00 obsr287339 S21351713 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291241208 2015-01-16 07:23:56 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-15 obsr620943 S21364336 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803416 2016-04-22 12:05:44 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-02 obsr540914 S26514097 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289973516 2015-01-09 07:17:28 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-08 obsr620943 S21261580 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323520 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963929 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291349076 2021-03-24 20:53:39.352228 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-16 08:00:00 obsr409143 S21373167 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277943 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-01 12:40:00 obsr594026 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621477 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-10 08:00:00 obsr639188 S21731716 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480116 2021-03-26 07:46:52.994574 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289099387 2021-03-24 20:53:39.352228 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-04 09:00:00 obsr178309 S21192730 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935079 2021-03-26 07:46:52.994574 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289781747 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-07 13:00:00 obsr547303 S21245788 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872622 2021-04-01 12:26:53.827486 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407532 2021-03-26 07:46:52.994574 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293340131 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-26 08:56:00 obsr504578 S21549445 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291540056 2021-03-24 20:53:39.352228 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-17 12:15:00 obsr409143 S21388629 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557998 2021-04-01 12:26:53.827486 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288802808 2021-03-24 20:53:39.352228 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-03 09:30:00 obsr178309 S21167379 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292598012 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-22 08:29:00 obsr125126 S21491678 Stationary P21 EBIRD 144.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288631216 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-01 08:00:00 obsr409143 S21153627 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291017531 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-14 14:54:00 obsr544737 S21346058 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292959580 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.574738700000005 -74.15542020000001 2015-01-24 09:15:00 obsr409143 S21520100 Traveling P22 EBIRD 80.0 19.312 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290142405 2021-03-24 20:53:39.352228 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-09 10:00:00 obsr178309 S21275169 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408585 2021-03-26 07:46:52.994574 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621966 2021-03-26 07:46:52.994574 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002101 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr697870 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293589080 2021-03-24 20:53:39.352228 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-27 09:50:00 obsr594026 S21570080 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204572 2015-01-25 17:59:47 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 07:48:00 obsr504578 S21539320 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292590926 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-01-22 08:50:00 obsr120906 S21491087 Traveling P22 EBIRD 64.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294105855 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:11:00 obsr504578 S21610513 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323510 2021-04-01 12:26:53.827486 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 7 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086433 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 08:30:00 obsr287339 S21529887 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220312 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288538410 2021-04-01 12:26:53.827486 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr697870 S21145897 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961231 2021-03-26 07:46:52.994574 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281341 2021-03-24 20:53:39.352228 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 09:00:00 obsr491696 S21445865 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271531 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr120906 S21205860 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293911465 2021-04-01 12:26:53.827486 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr120906 S21595535 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537241 2021-03-26 07:46:52.994574 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292960403 2015-01-24 16:38:50 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-24 16:00:00 obsr409143 S21520157 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963838 2021-03-26 07:46:52.994574 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271573 2021-03-26 07:46:52.994574 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289576794 2015-01-06 21:05:58 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-06 08:00:00 obsr409143 S21230120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059199 2021-03-26 07:46:52.994574 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288372009 2015-05-09 13:02:45 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:15:00 obsr322656 S21132019 Traveling P22 EBIRD 60.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648398 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-22 15:10:00 obsr287339 S21495474 Traveling P22 EBIRD 63.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290144585 2021-04-01 12:26:53.827486 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-10 09:00:00 obsr7511 S21275375 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288676009 2015-01-18 13:21:44 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 07:24:00 obsr407723 S21156879 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293822273 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:49:00 obsr551017 S21588434 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310838 2021-03-23 17:18:00.959502 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-16 08:05:00 obsr644825 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625856 2018-08-04 16:53:55 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 Hollyhock Hollow Sanctuary L1146193 H 42.540149 -73.8703108 2015-01-18 09:35:00 obsr407723 S21395264 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693861 2021-03-24 20:53:39.352228 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289792406 2015-01-07 23:19:09 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-07 08:25:00 obsr644825 S21246849 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209729 2021-03-26 07:46:52.994574 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-31 09:15:00 obsr409143 S21618822 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295622725 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-11 08:00:00 obsr639188 S21731845 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291957770 2017-01-11 21:22:56 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 13:45:00 obsr594026 S21420792 Traveling P22 EBIRD 65.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288275650 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-01 08:45:00 obsr594026 S21124074 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198510 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284495 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289022134 2015-01-04 13:16:46 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.76281290000001 2015-01-04 11:56:00 obsr287339 S21186656 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291408480 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 09:00:00 obsr287339 S21377904 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299858 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287712 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288247586 2015-01-01 16:55:14 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-01 14:42:00 obsr171042 S21121569 Traveling P22 EBIRD 132.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773093 2021-03-23 17:18:00.959502 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183907 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869058 2021-03-26 07:46:52.994574 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 14:52:00 obsr287339 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027837 2021-04-01 12:26:53.827486 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146374 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 100 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-15 12:15:00 obsr92097 S21356603 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694074 2021-04-01 12:26:53.827486 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 20 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-12 08:40:00 obsr546609 S21320247 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290211238 2015-01-10 15:29:11 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:27:00 obsr551017 S21281082 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291073280 2018-08-04 16:53:19 662 species avibase-FB738385 Bufflehead Bucephala albeola 102 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-14 15:41:00 obsr657332 S21350685 Traveling P22 EBIRD 17.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290381739 2018-08-04 16:53:07 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 11:02:00 obsr504578 S21295062 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369402372 2016-01-28 21:09:56 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Crescent Rd., Colonie Landfill pull off L3289882 H 42.811988 -73.7252569 2015-01-10 obsr513002 S27183020 Historical P62 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290830367 2015-03-10 04:47:00 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Crescent Rd., Colonie Landfill pull off L3289882 H 42.811988 -73.7252569 2015-01-13 10:45:00 obsr120906 S21330760 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290085408 2018-08-04 16:52:58 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 Unknown Sex, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-09 15:50:00 obsr657332 S21270727 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323493 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 879 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291248268 2016-02-05 16:52:57 483 species avibase-85625D75 Mallard Anas platyrhynchos 12 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-16 09:08:00 obsr120906 S21365015 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089267 2017-04-05 16:49:11 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290754386 2021-03-23 17:18:00.959502 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-12 15:00:00 obsr657332 S21324969 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291879600 2018-08-04 16:54:00 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-19 10:00:00 obsr551017 S21414662 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534519 2018-08-04 16:53:53 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr551017 S21388183 Stationary P21 EBIRD 28.0 15.0 1 G1112538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290957502 2018-08-04 16:53:18 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-14 10:30:00 obsr551017 S21341287 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293711476 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-28 13:40:00 obsr657332 S21579405 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291514746 2018-08-04 16:53:32 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 200 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:45:00 obsr594026 S21386563 Stationary P21 EBIRD 30.0 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291617839 2015-01-18 09:32:47 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-18 09:30:00 obsr322656 S21394554 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290304559 2018-08-04 16:53:03 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 285 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:35:00 obsr657332 S21288891 Traveling P22 EBIRD 45.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291075280 2018-08-04 16:53:19 447 species avibase-C235A4D7 Gadwall Mareca strepera 280 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-14 16:15:00 obsr657332 S21350820 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290950619 2015-01-14 12:43:58 622 species avibase-50566E50 Lesser Scaup Aythya affinis 8 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks L2597661 P 42.77923010000001 -73.7017514 2015-01-14 09:35:00 obsr551017 S21340703 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288966736 2021-03-23 17:18:00.959502 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-04 09:22:00 obsr504578 S21182191 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294014163 2018-08-04 16:55:27 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-30 15:00:00 obsr657332 S21603563 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293349257 2015-01-26 10:19:21 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 16:30:00 obsr560402 S21550270 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291223014 2021-04-01 12:26:53.827486 26890 species avibase-94A44032 European Starling Sturnus vulgaris 30 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-15 16:05:00 obsr657332 S21363073 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539542 2018-08-04 16:53:32 27616 species avibase-D77E4B41 American Robin Turdus migratorius 200 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:45:00 obsr409143 S21388575 Stationary P21 EBIRD 35.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290753476 2021-03-23 17:18:00.959502 6339 species avibase-8535345B Herring Gull Larus argentatus 5 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-12 14:23:00 obsr657332 S21324882 Traveling P22 EBIRD 25.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553647 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 25 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:00:00 obsr409143 S21389711 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112547 2018-08-04 16:52:37 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 21 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River Cohoes side from Waterford L2606895 P 42.78284620000001 -73.7041211 2015-01-03 10:00:00 obsr594026 S21193773 Stationary P21 EBIRD 40.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294271029 2021-03-23 17:18:00.959502 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-31 14:30:00 obsr657332 S21623792 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508847 2021-04-01 12:26:53.827486 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr287339 S21386137 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249273 2021-03-23 17:18:00.959502 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 08:00:00 obsr546609 S21365094 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534530 2018-08-04 16:53:31 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr551017 S21388184 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291930011 2018-08-04 16:53:24 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 03:30:00 obsr377411 S21418419 Stationary P21 EBIRD 45.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290505422 2018-08-04 16:53:11 483 species avibase-85625D75 Mallard Anas platyrhynchos 168 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-11 15:56:00 obsr657332 S21305105 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291251959 2015-01-16 10:01:57 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 09:57:00 obsr504578 S21365324 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291405497 2018-08-04 16:53:27 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 20 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:20:00 obsr120906 S21377671 Stationary P21 EBIRD 8.0 2.0 1 G1112757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288626946 2018-08-04 16:52:28 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 20 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-02 09:30:00 obsr409143 S21153279 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293178362 2018-08-04 16:55:16 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 80 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 14:45:00 obsr399201 S21537211 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292186033 2015-01-20 18:49:59 483 species avibase-85625D75 Mallard Anas platyrhynchos 50 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-20 13:50:00 obsr594026 S21438658 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291483313 2018-08-04 16:53:32 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr504578 S21384068 Stationary P21 EBIRD 28.0 15.0 1 G1112538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290313065 2018-08-04 16:53:04 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 352 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-10 16:43:00 obsr657332 S21289569 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291636729 2015-01-18 11:46:09 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-18 11:05:00 obsr407723 S21396210 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694933 2018-08-04 16:53:13 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 73 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-12 10:15:00 obsr546609 S21320325 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293349252 2018-08-04 16:55:17 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-25 16:00:00 obsr560402 S21550269 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291478291 2015-01-17 19:46:42 681 species avibase-407E2CA8 Common Merganser Mergus merganser 600 United States US New York US-NY Albany US-NY-001 13.0 Port of Albany, NY L608431 P 42.6267124 -73.7552118 2015-01-17 15:50:00 obsr322656 S21383634 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292631638 2015-01-22 14:57:07 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-22 14:25:00 obsr657332 S21494361 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694560 2019-07-23 17:26:56 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 43 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-12 09:20:00 obsr546609 S21320297 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291543794 2018-08-04 16:53:32 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 300 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River from Elks Lodge parking lot L3299203 P 42.7791133 -73.7018476 2015-01-17 15:31:00 obsr386198 S21388928 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740160 2021-04-01 12:26:53.827486 456 species avibase-D201EB72 American Wigeon Mareca americana X United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-17 obsr560402 S23337227 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391765 2015-01-11 12:04:22 662 species avibase-FB738385 Bufflehead Bucephala albeola 30 United States US New York US-NY Albany US-NY-001 13.0 42.7787x-73.7010 - Nov 11, 2013, 14:03 L2418474 P 42.778698 -73.700989 2015-01-11 12:03:00 obsr322656 S21295881 Stationary P21 EBIRD 1.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288683819 2018-08-04 16:52:36 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-03 08:43:00 obsr287339 S21157449 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470775 2018-08-04 16:53:31 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr504578 S21383073 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291544678 2021-03-23 17:18:00.959502 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:47:00 obsr386198 S21389000 Stationary P21 EBIRD 38.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288509447 2021-04-01 12:26:53.827486 505 species avibase-C732CB10 American Black Duck Anas rubripes 20 United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-02 obsr560402 S21143281 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291475298 2015-01-17 19:35:33 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-45 N Mohawk St L3298386 P 42.7793 -73.701932 2015-01-17 15:32:00 obsr504578 S21383433 Stationary P21 EBIRD 17.0 15.0 1 G1112531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289954822 2018-08-04 16:52:55 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 78 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-08 15:00:00 obsr657332 S21260148 Traveling P22 EBIRD 60.0 14.484000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290486862 2018-08-04 16:53:08 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 50 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 12:00:00 obsr322656 S21303554 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290297990 2015-01-10 20:58:54 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 400 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-10 16:00:00 obsr551017 S21288356 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292562002 2018-08-04 16:54:50 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-21 16:21:00 obsr657332 S21488782 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292852935 2015-01-23 22:58:47 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-23 15:48:00 obsr657332 S21511649 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508017 2018-08-04 16:53:31 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 150 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:50:00 obsr594026 S21386094 Stationary P21 EBIRD 30.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291071418 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 46 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-14 15:05:00 obsr657332 S21350549 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290752708 2021-04-01 12:26:53.827486 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 89 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-12 13:50:00 obsr657332 S21324813 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291348352 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Mohawk View L2565459 P 42.7787123 -73.7007205 2015-01-16 09:45:00 obsr409143 S21373112 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094735 2021-04-01 12:26:53.827486 592 species avibase-3072CC16 Redhead Aythya americana 10 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks Club L3305761 P 42.7791903 -73.7017007 2015-01-19 obsr101869 S21431537 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288629419 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-02 10:30:00 obsr409143 S21153482 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292058232 2021-04-01 12:26:53.827486 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-19 11:55:00 obsr657332 S21428677 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290216829 2021-04-01 12:26:53.827486 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1000 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-10 15:30:00 obsr322656 S21281606 Stationary P21 EBIRD 80.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905110 2015-01-19 12:21:02 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 450 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-19 10:00:00 obsr551017 S21416527 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812963 2021-03-23 17:18:00.959502 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-28 15:05:00 obsr657332 S21587566 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290370470 2016-02-05 21:24:52 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 4 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-11 10:05:00 obsr287339 S21294085 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293258040 2018-08-04 16:55:17 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 15:28:00 obsr657332 S21543345 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291535587 2021-04-01 12:26:53.827486 681 species avibase-407E2CA8 Common Merganser Mergus merganser 6 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 08:40:00 obsr409143 S21388262 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290297621 2015-01-10 20:56:29 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 250 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:30:00 obsr551017 S21288315 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679166 2018-08-04 16:52:35 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-03 08:25:00 obsr287339 S21157063 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553860 2018-08-04 16:53:27 447 species avibase-C235A4D7 Gadwall Mareca strepera 20 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:20:00 obsr697870 S21389727 Stationary P21 EBIRD 8.0 2.0 1 G1112757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291537382 2015-01-17 19:47:06 20294 species avibase-76158864 Northern Shrike Lanius borealis 100 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River below Cohoes Falls L2606846 P 42.7791235 -73.70047059999999 2015-01-17 15:30:00 obsr287339 S21388407 Stationary P21 EBIRD 15.0 14.0 1 G1112574 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290387102 2015-01-11 11:41:28 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-11 11:40:00 obsr504578 S21295503 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498531 2021-04-01 12:26:53.827486 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr546609 S21385309 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534187 2018-08-04 16:53:32 622 species avibase-50566E50 Lesser Scaup Aythya affinis X United States US New York US-NY Albany US-NY-001 13.0 Elks Lodge Parking Lot, Cohoes L2610868 P 42.7792074 -73.70188420000001 2015-01-17 15:35:00 obsr409143 S21388156 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369402189 2018-08-04 16:52:58 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 obsr513002 S27183003 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292560001 2015-01-21 23:22:00 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-21 15:50:00 obsr657332 S21488645 Traveling P22 EBIRD 21.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293386932 2018-08-04 16:55:19 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-26 13:30:00 obsr657332 S21553414 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292480184 2018-08-04 16:54:50 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 22 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-21 15:00:00 obsr657332 S21482323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294007663 2021-04-01 12:26:53.827486 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-30 14:45:00 obsr657332 S21603025 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290499190 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 16 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 14:55:00 obsr657332 S21304572 Traveling P22 EBIRD 55.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294005033 2018-08-04 16:55:26 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 5 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-30 14:20:00 obsr657332 S21602777 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293377517 2015-01-26 13:15:22 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-26 13:00:00 obsr657332 S21552556 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291221701 2018-08-04 16:53:22 505 species avibase-C732CB10 American Black Duck Anas rubripes 700 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-15 15:56:00 obsr657332 S21362938 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291542913 2018-08-04 16:53:31 303 species avibase-B59E1863 Canada Goose Branta canadensis 200 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:48:00 obsr386198 S21388858 Stationary P21 EBIRD 37.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534228 2015-01-17 19:36:01 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks L2597661 P 42.77923010000001 -73.7017514 2015-01-17 15:32:00 obsr551017 S21388160 Stationary P21 EBIRD 17.0 15.0 1 G1112531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291509062 2015-01-17 19:47:06 303 species avibase-B59E1863 Canada Goose Branta canadensis 100 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River below Cohoes Falls L2606846 P 42.7791235 -73.70047059999999 2015-01-17 15:30:00 obsr594026 S21386157 Stationary P21 EBIRD 15.0 14.0 1 G1112574 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534917 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 85 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:45:00 obsr409143 S21388220 Stationary P21 EBIRD 20.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292953400 2015-01-24 16:08:34 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk-Barent Winne Rd L3314022 P 42.54966 -73.76230699999999 2015-01-24 14:28:00 obsr287339 S21519626 Traveling P22 EBIRD 5.0 0.161 3.0 1 G1121256 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292932470 2015-01-24 18:23:43 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk- Barent Winne Rd. L3314742 P 42.551263 -73.7595463 2015-01-24 14:28:00 obsr120906 S21517950 Traveling P22 EBIRD 5.0 0.161 3.0 1 G1121256 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293005791 2015-01-24 19:33:52 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk- Barent Winne Rd. L3314742 P 42.551263 -73.7595463 2015-01-24 14:28:00 obsr697870 S21523570 Traveling P22 EBIRD 5.0 0.161 3.0 1 G1121256 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291896937 2016-03-06 22:55:23 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-19 10:40:00 obsr287339 S21415921 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753591 2021-03-26 07:46:52.994574 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-03 12:39:00 obsr287339 S21163284 Traveling P22 EBIRD 83.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027844 2021-04-01 12:26:53.827486 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292127420 2015-01-20 13:35:04 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 Male, Unknown Age (1); Female, Unknown Age (1) United States US New York US-NY Albany US-NY-001 28.0 stream crossing 157A L3306181 P 42.6254019 -74.0708113 2015-01-20 08:00:00 obsr258063 S21434245 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291416886 2021-03-24 20:53:39.352228 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-15 08:00:00 obsr7511 S21378609 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288538407 2021-04-01 12:26:53.827486 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis N 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr697870 S21145897 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291100294 2021-03-24 20:53:39.352228 11371 species avibase-75600969 Northern Flicker Colaptes auratus N 3 United States US New York US-NY Albany US-NY-001 13.0 Waldenmaier Road, Delmar L3110574 P 42.5925848 -73.8740015 2015-01-15 09:01:00 obsr551017 S21352891 Traveling P22 EBIRD 6.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293911459 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos N 4 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr120906 S21595535 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059211 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 2 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551655 2021-03-24 20:53:39.352228 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-02 08:30:00 obsr644825 S21147085 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621466 2021-03-26 07:46:52.994574 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris N 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-10 08:00:00 obsr639188 S21731716 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294029143 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes N 2 United States US New York US-NY Albany US-NY-001 13.0 NY, Albany, 26 Eton Drive Neighborhood L2733019 P 42.6537682 -73.8467359 2015-01-30 15:30:00 obsr171042 S21604833 Traveling P22 EBIRD 56.0 3.54 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407546 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292118948 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Kings Highway Barrens L2584384 H 42.7369323 -73.886095 2015-01-20 09:00:00 obsr312669 S21433587 Traveling P22 EBIRD 90.0 1.931 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291349086 2021-03-24 20:53:39.352228 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-16 08:00:00 obsr409143 S21373167 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288273334 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus N 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:30:00 obsr594026 S21123860 Traveling P22 EBIRD 70.0 1.207 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288678889 2021-03-24 20:53:39.352228 303 species avibase-B59E1863 Canada Goose Branta canadensis N 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 08:17:00 obsr407723 S21157038 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290849903 2021-03-24 20:53:39.352228 505 species avibase-C732CB10 American Black Duck Anas rubripes N 2 United States US New York US-NY Albany US-NY-001 13.0 9 Oakbrook Manor, Ravena L2833548 P 42.4649217 -73.8129598 2015-01-13 11:05:00 obsr395936 S21332460 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961228 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 11 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290142399 2021-03-24 20:53:39.352228 6616 species avibase-7E022378 Common Loon Gavia immer N 6 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-09 10:00:00 obsr178309 S21275169 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289099388 2021-03-24 20:53:39.352228 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 6 Male, Adult (3); Female, Adult (3) United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-04 09:00:00 obsr178309 S21192730 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537234 2021-03-26 07:46:52.994574 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271566 2021-03-26 07:46:52.994574 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935078 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos N 22 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963854 2021-03-26 07:46:52.994574 592 species avibase-3072CC16 Redhead Aythya americana N 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271528 2021-04-01 12:26:53.827486 279 species avibase-3E04020B Brant Branta bernicla N 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr120906 S21205860 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621955 2021-03-26 07:46:52.994574 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N 5 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693874 2021-03-24 20:53:39.352228 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 2 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288801613 2021-03-24 20:53:39.352228 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris N 6 Female, Adult (4); Male, Adult (2) United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-02 09:30:00 obsr178309 S21167276 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292754842 2021-11-14 08:08:43.2446 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-23 07:55:00 obsr546609 S21503888 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294075655 2021-03-24 20:53:39.352228 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus N 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-30 obsr620943 S21608478 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288254805 2021-03-24 20:53:39.352228 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N X United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-01 09:00:00 obsr178309 S21122167 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872633 2021-04-01 12:26:53.827486 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis N 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293558009 2021-04-01 12:26:53.827486 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289976525 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 6 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 08:00:00 obsr491696 S21261827 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869070 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 14:52:00 obsr287339 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284492 2021-03-26 07:46:52.994574 447 species avibase-C235A4D7 Gadwall Mareca strepera N 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002095 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 4 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr697870 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289781755 2021-03-24 20:53:39.352228 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 2 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-07 13:00:00 obsr547303 S21245788 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803295 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos N X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277938 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 5 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-01 12:40:00 obsr594026 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281353 2021-03-24 20:53:39.352228 505 species avibase-C732CB10 American Black Duck Anas rubripes N 5 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 09:00:00 obsr491696 S21445865 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291540061 2021-03-24 20:53:39.352228 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-17 12:15:00 obsr409143 S21388629 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220328 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294164106 2021-03-24 20:53:39.352228 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 2 United States US New York US-NY Albany US-NY-001 13.0 Vagele Lane, Glenmont L2868631 P 42.597550700000006 -73.78205940000001 2015-01-31 obsr551017 S21615462 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295622740 2021-03-26 07:46:52.994574 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 2 Male, Adult (2) United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-11 08:00:00 obsr639188 S21731845 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323525 2021-04-01 12:26:53.827486 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293589089 2021-03-24 20:53:39.352228 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon N 6 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-27 09:50:00 obsr594026 S21570080 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480132 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963940 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288802804 2021-03-24 20:53:39.352228 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-03 09:30:00 obsr178309 S21167379 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984457 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290144582 2021-04-01 12:26:53.827486 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-10 09:00:00 obsr7511 S21275375 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905011 2021-03-26 07:46:52.994574 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus N 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407548 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 20 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291017544 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus N 12 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-14 14:54:00 obsr544737 S21346058 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086444 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus N X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 08:30:00 obsr287339 S21529887 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289237979 2021-03-26 07:46:52.994574 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana N X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-05 08:00:00 obsr7511 S21203183 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295183438 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 10 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-31 09:01:00 obsr125126 S21696603 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027847 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N X United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271532 2021-04-01 12:26:53.827486 616 species avibase-25C94A8F Greater Scaup Aythya marila N 20 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr120906 S21205860 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291408492 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 09:00:00 obsr287339 S21377904 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961226 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 4 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323517 2021-04-01 12:26:53.827486 341 species avibase-B86C504C Trumpeter Swan Cygnus buccinator N 144 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290499192 2021-04-01 12:26:53.827486 447 species avibase-C235A4D7 Gadwall Mareca strepera N 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 14:55:00 obsr657332 S21304572 Traveling P22 EBIRD 55.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935080 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 14 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292598022 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 10 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-22 08:29:00 obsr125126 S21491678 Stationary P21 EBIRD 144.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292978852 2021-03-26 07:46:52.994574 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris N 9 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-24 08:56:00 obsr125126 S21521406 Stationary P21 EBIRD 519.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284477 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 15 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293259346 2021-04-01 12:26:53.827486 456 species avibase-D201EB72 American Wigeon Mareca americana N 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-25 15:40:00 obsr657332 S21543446 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288700279 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 4 United States US New York US-NY Albany US-NY-001 13.0 Albany International Airport--Sicker Rd. eastern side L2494355 H 42.751172 -73.80131899999999 2015-01-03 10:10:00 obsr287339 S21158898 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288273337 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 17 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:30:00 obsr594026 S21123860 Traveling P22 EBIRD 70.0 1.207 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288469348 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 19 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-02 11:40:00 obsr287339 S21140015 Traveling P22 EBIRD 40.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287694 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 15 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288969102 2021-04-01 12:26:53.827486 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-04 08:30:00 obsr7511 S21182411 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480134 2021-03-26 07:46:52.994574 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos N 25 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872635 2021-04-01 12:26:53.827486 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis N 20 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291416713 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes N X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-16 08:00:00 obsr7511 S21378583 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291028532 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 4 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-14 11:45:00 obsr594026 S21346986 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291538277 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 6 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:45:00 obsr409143 S21388220 Stationary P21 EBIRD 20.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984459 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 10 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869072 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 14:52:00 obsr287339 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288275644 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 8 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-01 08:45:00 obsr594026 S21124074 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059214 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 4 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288717659 2021-03-26 07:46:52.994574 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis N 10 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Feura Bush L3260809 P 42.589187 -73.869008 2015-01-03 11:25:00 obsr407723 S21160475 Traveling P22 EBIRD 10.0 9.656 2.0 1 G1093025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299870 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 5 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292590935 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 8 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-01-22 08:50:00 obsr120906 S21491087 Traveling P22 EBIRD 64.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294105863 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:11:00 obsr504578 S21610513 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963856 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292086254 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY Albany US-NY-001 13.0 Glenmont New York, US L3305646 P 42.5932799 -73.8080406 2015-01-20 07:30:00 obsr602177 S21430796 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679893 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 6 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-03 08:15:00 obsr7511 S21157120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290693404 2021-11-14 08:08:43.2446 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N 25 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-12 13:43:00 obsr546609 S21320208 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289443590 2021-03-26 07:46:52.994574 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus N X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-06 08:00:00 obsr7511 S21219332 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289324564 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes N 3 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-04 09:49:00 obsr125126 S21210282 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271562 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos N 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292754844 2021-11-14 08:08:43.2446 7732 species avibase-A091D50A Northern Harrier Circus hudsonius N 1 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-23 07:55:00 obsr546609 S21503888 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753597 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser N X United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-03 12:39:00 obsr287339 S21163284 Traveling P22 EBIRD 83.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288479534 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 6 United States US New York US-NY Albany US-NY-001 13.0 Huck Finn's Warehouse L3257297 P 42.660790000000006 -73.74003 2015-01-02 13:07:00 obsr257692 S21140833 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408940 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser N X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963942 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 20 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288769400 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 10 United States US New York US-NY Albany US-NY-001 13.0 Broadway and Columbia L2898811 P 42.6520946 -73.7492895 2015-01-02 12:40:00 obsr452367 S21164535 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294029144 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 7 United States US New York US-NY Albany US-NY-001 13.0 NY, Albany, 26 Eton Drive Neighborhood L2733019 P 42.6537682 -73.8467359 2015-01-30 15:30:00 obsr171042 S21604833 Traveling P22 EBIRD 56.0 3.54 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289976527 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 08:00:00 obsr491696 S21261827 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764438 2021-03-26 07:46:52.994574 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis N 10 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Feura Bush L3260809 P 42.589187 -73.869008 2015-01-03 11:25:00 obsr547303 S21164122 Traveling P22 EBIRD 10.0 9.656 2.0 1 G1093025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291411277 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-17 08:00:00 obsr7511 S21378123 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289875011 2021-03-26 07:46:52.994574 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 20 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-08 12:00:00 obsr92097 S21253779 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293558012 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 20 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289948736 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes N X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-08 08:30:00 obsr7511 S21259688 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277951 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 3 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-01 12:40:00 obsr594026 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293911466 2021-04-01 12:26:53.827486 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 14 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr120906 S21595535 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648400 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes N X United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-22 15:10:00 obsr287339 S21495474 Traveling P22 EBIRD 63.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417853 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-12 08:00:00 obsr7511 S21378694 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293340139 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-26 08:56:00 obsr504578 S21549445 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587700 2021-03-26 07:46:52.994574 592 species avibase-3072CC16 Redhead Aythya americana N 9 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-27 08:03:00 obsr125126 S21569971 Stationary P21 EBIRD 544.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537230 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos N 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291872513 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N X United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-19 09:27:00 obsr504578 S21414117 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146373 2021-03-26 07:46:52.994574 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) N 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-15 12:15:00 obsr92097 S21356603 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209723 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos N 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-31 09:15:00 obsr409143 S21618822 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292616528 2021-03-26 07:46:52.994574 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes N 13 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-22 11:30:00 obsr594026 S21493317 Stationary P21 EBIRD 10.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288631219 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-01 08:00:00 obsr409143 S21153627 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002102 2021-04-01 12:26:53.827486 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 14 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr697870 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621952 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 4 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291924872 2021-03-26 07:46:52.994574 622 species avibase-50566E50 Lesser Scaup Aythya affinis N 10 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-19 11:32:00 obsr171042 S21417992 Traveling P22 EBIRD 136.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694069 2021-04-01 12:26:53.827486 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 1 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-12 08:40:00 obsr546609 S21320247 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172707 2021-11-14 08:08:43.2446 662 species avibase-FB738385 Bufflehead Bucephala albeola N 6 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-31 08:30:00 obsr546609 S21616032 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727251 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 5 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-07 15:59:00 obsr125126 S21241585 Stationary P21 EBIRD 61.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183920 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus N X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621475 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 3 Female, Adult (2); Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-10 08:00:00 obsr639188 S21731716 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198498 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus N 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295622729 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 6 Male, Adult (3); Female, Adult (3) United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-11 08:00:00 obsr639188 S21731845 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293822285 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:49:00 obsr551017 S21588434 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220330 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288538411 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis N 20 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr697870 S21145897 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291636731 2015-01-18 11:46:09 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 11 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-18 11:05:00 obsr407723 S21396210 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288683822 2018-08-04 16:52:36 662 species avibase-FB738385 Bufflehead Bucephala albeola 400 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-03 08:43:00 obsr287339 S21157449 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249280 2021-03-23 17:18:00.959502 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 08:00:00 obsr546609 S21365094 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293261604 2021-03-23 17:18:00.959502 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 12 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-01-25 14:00:00 obsr657332 S21543611 Traveling P22 EBIRD 40.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290373902 2018-08-04 16:53:06 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 40 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 10:20:00 obsr120906 S21294354 Stationary P21 EBIRD 12.0 3.0 1 G1108432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291648552 2015-01-18 12:41:08 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Glenmont-Van Wies Point Rd L3300757 P 42.582687 -73.756929 2015-01-18 12:02:00 obsr407723 S21397198 Traveling P22 EBIRD 4.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290870335 2018-08-04 16:53:06 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 40 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 10:20:00 obsr697870 S21334381 Stationary P21 EBIRD 12.0 3.0 1 G1108432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867278 2015-01-19 08:53:39 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 100 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-19 08:34:00 obsr287339 S21413672 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291253991 2017-12-12 11:24:35 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 20 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-16 09:54:00 obsr546609 S21365476 Traveling P22 EBIRD 14.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292053448 2015-01-19 23:00:54 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Albany US-NY-001 13.0 Green Island L3292979 P 42.7444909 -73.69105340000002 2015-01-19 11:00:00 obsr657332 S21428269 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694072 2021-04-01 12:26:53.827486 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 20 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-12 08:40:00 obsr546609 S21320247 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292116182 2021-04-01 12:26:53.827486 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 20 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-20 11:50:00 obsr287339 S21433340 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291896935 2016-03-06 22:55:23 592 species avibase-3072CC16 Redhead Aythya americana 4 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-19 10:40:00 obsr287339 S21415921 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498528 2021-04-01 12:26:53.827486 6339 species avibase-8535345B Herring Gull Larus argentatus 10 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr546609 S21385309 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292484569 2021-04-01 12:26:53.827486 11371 species avibase-75600969 Northern Flicker Colaptes auratus 46 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-29 Cataract St L3306369 P 42.784089 -73.707027 2015-01-21 15:30:00 obsr657332 S21482662 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508844 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr287339 S21386137 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290830368 2015-03-10 04:47:00 681 species avibase-407E2CA8 Common Merganser Mergus merganser 70 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Crescent Rd., Colonie Landfill pull off L3289882 H 42.811988 -73.7252569 2015-01-13 10:45:00 obsr120906 S21330760 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292850807 2015-01-23 22:35:08 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Albany US-NY-001 13.0 Green Island--Hudson&Tibbitts L3294938 P 42.7492098 -73.6883926 2015-01-23 13:22:00 obsr657332 S21511504 Stationary P21 EBIRD 10.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290370472 2016-02-05 21:24:52 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 100 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-11 10:05:00 obsr287339 S21294085 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292090882 2015-01-20 09:16:36 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-20 09:10:00 obsr120906 S21431212 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292148448 2018-08-04 16:54:47 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 350 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-20 15:30:00 obsr657332 S21435847 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679894 2021-03-26 07:46:52.994574 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-03 08:15:00 obsr7511 S21157120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292636405 2018-08-04 16:54:52 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 30 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-22 15:15:00 obsr657332 S21494694 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369402374 2016-01-28 21:09:56 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 Unknown Sex, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Cohoes Crescent Rd., Colonie Landfill pull off L3289882 H 42.811988 -73.7252569 2015-01-10 obsr513002 S27183020 Historical P62 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292141794 2018-08-04 16:54:47 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-20 15:00:00 obsr657332 S21435366 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292633472 2015-01-22 23:23:10 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-22 15:00:00 obsr657332 S21494501 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292454895 2018-08-04 16:54:49 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-21 12:15:00 obsr544737 S21480267 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094705 2016-02-05 16:52:57 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-20 09:39:00 obsr120906 S21431533 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291107153 2018-08-04 16:53:20 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-15 09:50:00 obsr120906 S21353549 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094749 2021-04-01 12:26:53.827486 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks Club L3305761 P 42.7791903 -73.7017007 2015-01-19 obsr101869 S21431537 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS353076161 2015-11-13 03:00:16 34699 spuh avibase-CFD25837 passerine sp. Passeriformes sp. 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-18 08:00:00 obsr726592 S25810610 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291078988 2021-04-01 12:26:53.827486 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-14 15:05:00 obsr657332 S21350549 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553884 2016-02-05 16:52:58 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-17 09:01:00 obsr697870 S21389730 Stationary P21 EBIRD 13.0 2.0 1 G1112758 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291537385 2015-01-17 19:47:06 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River below Cohoes Falls L2606846 P 42.7791235 -73.70047059999999 2015-01-17 15:30:00 obsr287339 S21388407 Stationary P21 EBIRD 15.0 14.0 1 G1112574 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291223023 2021-04-01 12:26:53.827486 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-15 16:05:00 obsr657332 S21363073 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291475296 2015-01-17 19:35:33 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-45 N Mohawk St L3298386 P 42.7793 -73.701932 2015-01-17 15:32:00 obsr504578 S21383433 Stationary P21 EBIRD 17.0 15.0 1 G1112531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291404135 2016-02-05 16:52:58 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-17 09:01:00 obsr120906 S21377556 Stationary P21 EBIRD 13.0 2.0 1 G1112758 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291533196 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Mohawk View L2565459 P 42.7787123 -73.7007205 2015-01-16 09:45:00 obsr409143 S21373112 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290975310 2015-01-14 12:43:58 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks L2597661 P 42.77923010000001 -73.7017514 2015-01-14 09:35:00 obsr551017 S21340703 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292058233 2021-04-01 12:26:53.827486 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-19 11:55:00 obsr657332 S21428677 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534226 2015-01-17 19:36:01 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks L2597661 P 42.77923010000001 -73.7017514 2015-01-17 15:32:00 obsr551017 S21388160 Stationary P21 EBIRD 17.0 15.0 1 G1112531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292480181 2018-08-04 16:54:50 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-21 15:00:00 obsr657332 S21482323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740157 2021-04-01 12:26:53.827486 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-17 obsr560402 S23337227 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291248266 2016-02-05 16:52:57 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-16 09:08:00 obsr120906 S21365015 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293377514 2015-01-26 13:15:22 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-26 13:00:00 obsr657332 S21552556 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534181 2018-08-04 16:53:32 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Albany US-NY-001 13.0 Elks Lodge Parking Lot, Cohoes L2610868 P 42.7792074 -73.70188420000001 2015-01-17 15:35:00 obsr409143 S21388156 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291494818 2019-07-23 17:26:56 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-12 09:20:00 obsr546609 S21320297 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291509065 2015-01-17 19:47:06 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River below Cohoes Falls L2606846 P 42.7791235 -73.70047059999999 2015-01-17 15:30:00 obsr594026 S21386157 Stationary P21 EBIRD 15.0 14.0 1 G1112574 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291543789 2018-08-04 16:53:32 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River from Elks Lodge parking lot L3299203 P 42.7791133 -73.7018476 2015-01-17 15:31:00 obsr386198 S21388928 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292851117 2018-08-04 16:54:56 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-23 15:15:00 obsr657332 S21511531 Stationary P21 EBIRD 5.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293386929 2018-08-04 16:55:19 30494 species avibase-240E3390 House Sparrow Passer domesticus 35 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-26 13:30:00 obsr657332 S21553414 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508018 2018-08-04 16:53:31 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 50 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:50:00 obsr594026 S21386094 Stationary P21 EBIRD 30.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553858 2018-08-04 16:53:27 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:20:00 obsr697870 S21389727 Stationary P21 EBIRD 8.0 2.0 1 G1112757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534526 2018-08-04 16:53:31 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr551017 S21388184 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290753475 2021-03-23 17:18:00.959502 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 46 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-12 14:23:00 obsr657332 S21324882 Traveling P22 EBIRD 25.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293258037 2018-08-04 16:55:17 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 15:28:00 obsr657332 S21543345 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293178363 2018-08-04 16:55:16 11494 species avibase-20C2214E American Kestrel Falco sparverius 5 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-25 14:45:00 obsr399201 S21537211 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294014160 2018-08-04 16:55:27 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 20 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-30 15:00:00 obsr657332 S21603563 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288509538 2018-08-04 16:52:27 681 species avibase-407E2CA8 Common Merganser Mergus merganser 47 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-02 obsr560402 S21143287 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291879597 2018-08-04 16:54:00 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-19 10:00:00 obsr551017 S21414662 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292612427 2018-08-04 16:54:51 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-22 12:10:00 obsr287339 S21492899 Traveling P22 EBIRD 30.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293349248 2018-08-04 16:55:17 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-25 16:00:00 obsr560402 S21550269 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407624 2018-08-04 16:52:13 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 8 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-01 08:30:00 obsr322656 S21134489 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694065 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 45 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-12 08:40:00 obsr546609 S21320247 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292631235 2021-04-01 12:26:53.827486 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 38 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-29 Cataract St L3306369 P 42.784089 -73.707027 2015-01-22 14:40:00 obsr657332 S21494330 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290313067 2018-08-04 16:53:04 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 25 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-10 16:43:00 obsr657332 S21289569 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812960 2021-03-23 17:18:00.959502 6339 species avibase-8535345B Herring Gull Larus argentatus 8 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-28 15:05:00 obsr657332 S21587566 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291223022 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 9 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-15 16:05:00 obsr657332 S21363073 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294080723 2018-08-04 16:55:26 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 28 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-30 14:20:00 obsr657332 S21602777 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291405495 2018-08-04 16:53:27 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:20:00 obsr120906 S21377671 Stationary P21 EBIRD 8.0 2.0 1 G1112757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288469340 2021-04-01 12:26:53.827486 505 species avibase-C732CB10 American Black Duck Anas rubripes 22 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-02 11:40:00 obsr287339 S21140015 Traveling P22 EBIRD 40.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534185 2018-08-04 16:53:32 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Albany US-NY-001 13.0 Elks Lodge Parking Lot, Cohoes L2610868 P 42.7792074 -73.70188420000001 2015-01-17 15:35:00 obsr409143 S21388156 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292851118 2018-08-04 16:54:56 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-23 15:15:00 obsr657332 S21511531 Stationary P21 EBIRD 5.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553643 2021-04-01 12:26:53.827486 456 species avibase-D201EB72 American Wigeon Mareca americana 12 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:00:00 obsr409143 S21389711 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294271024 2021-03-23 17:18:00.959502 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 15 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-31 14:30:00 obsr657332 S21623792 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292260143 2018-08-04 16:53:03 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 20 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:50:00 obsr322656 S21443994 Stationary P21 EBIRD 10.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291543790 2018-08-04 16:53:32 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 8 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River from Elks Lodge parking lot L3299203 P 42.7791133 -73.7018476 2015-01-17 15:31:00 obsr386198 S21388928 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291874684 2018-08-04 16:54:00 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 12 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-19 09:35:00 obsr287339 S21414323 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288286369 2021-04-01 12:26:53.827486 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 54 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-01-01 12:20:00 obsr546609 S21125084 Traveling P22 EBIRD 57.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534517 2018-08-04 16:53:53 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr551017 S21388183 Stationary P21 EBIRD 28.0 15.0 1 G1112538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679163 2018-08-04 16:52:35 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-03 08:25:00 obsr287339 S21157063 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470771 2018-08-04 16:53:31 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr504578 S21383073 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740170 2018-08-04 16:53:24 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 obsr560402 S23337228 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289954817 2018-08-04 16:52:55 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-08 15:00:00 obsr657332 S21260148 Traveling P22 EBIRD 60.0 14.484000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694934 2018-08-04 16:53:13 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-12 10:15:00 obsr546609 S21320325 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740155 2021-04-01 12:26:53.827486 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii X United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-17 obsr560402 S23337227 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323514 2021-04-01 12:26:53.827486 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 190 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291542919 2018-08-04 16:53:31 303 species avibase-B59E1863 Canada Goose Branta canadensis 71 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:48:00 obsr386198 S21388858 Stationary P21 EBIRD 37.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288683814 2018-08-04 16:52:36 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 30 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-03 08:43:00 obsr287339 S21157449 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291223907 2018-08-04 16:53:22 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 14 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-15 16:27:00 obsr657332 S21363127 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539548 2018-08-04 16:53:32 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:45:00 obsr409143 S21388575 Stationary P21 EBIRD 35.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291521326 2018-08-04 16:53:27 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Albany US-NY-001 13.0 Clapper Road L1347463 P 42.554835 -73.7793058 2015-01-17 08:40:00 obsr287339 S21387122 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291071416 2021-04-01 12:26:53.827486 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 49 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-14 15:05:00 obsr657332 S21350549 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290752707 2021-04-01 12:26:53.827486 592 species avibase-3072CC16 Redhead Aythya americana 22 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-12 13:50:00 obsr657332 S21324813 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291073281 2018-08-04 16:53:19 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 18 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-14 15:41:00 obsr657332 S21350685 Traveling P22 EBIRD 17.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291348360 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Mohawk View L2565459 P 42.7787123 -73.7007205 2015-01-16 09:45:00 obsr409143 S21373112 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292480179 2018-08-04 16:54:50 8773 species avibase-7AA076EF Barred Owl Strix varia 3 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-21 15:00:00 obsr657332 S21482323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294007661 2021-04-01 12:26:53.827486 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-30 14:45:00 obsr657332 S21603025 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625853 2018-08-04 16:53:55 6339 species avibase-8535345B Herring Gull Larus argentatus 19 United States US New York US-NY Albany US-NY-001 13.0 Hollyhock Hollow Sanctuary L1146193 H 42.540149 -73.8703108 2015-01-18 09:35:00 obsr407723 S21395264 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291106974 2018-08-04 16:53:20 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 15 United States US New York US-NY Albany US-NY-001 13.0 beachman road L3293455 P 42.46244 -73.8688 2015-01-15 10:08:00 obsr551017 S21353532 Traveling P22 EBIRD 7.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290373897 2018-08-04 16:53:06 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 30 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 10:20:00 obsr120906 S21294354 Stationary P21 EBIRD 12.0 3.0 1 G1108432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290085410 2018-08-04 16:52:58 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 45 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-09 15:50:00 obsr657332 S21270727 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290754385 2021-03-23 17:18:00.959502 11371 species avibase-75600969 Northern Flicker Colaptes auratus 12 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-12 15:00:00 obsr657332 S21324969 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293259341 2021-04-01 12:26:53.827486 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 50 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-25 15:40:00 obsr657332 S21543446 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812856 2018-08-04 16:55:22 592 species avibase-3072CC16 Redhead Aythya americana 25 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-28 13:55:00 obsr657332 S21587552 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292056533 2018-08-04 16:54:01 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Green Island--Hudson&Tibbitts L3294938 P 42.7492098 -73.6883926 2015-01-19 11:21:00 obsr657332 S21428524 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289276220 2018-08-04 16:52:48 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 17 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-05 11:35:00 obsr287339 S21206228 Traveling P22 EBIRD 25.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292141792 2018-08-04 16:54:47 1375 species avibase-4B9EEF56 Ring-necked Pheasant Phasianus colchicus 6 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-20 15:00:00 obsr657332 S21435366 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290505420 2018-08-04 16:53:11 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 10 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-11 15:56:00 obsr657332 S21305105 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289477323 2018-08-04 16:52:51 662 species avibase-FB738385 Bufflehead Bucephala albeola 7 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Mohawk View L2565459 P 42.7787123 -73.7007205 2015-01-06 12:30:00 obsr409143 S21222281 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291107151 2018-08-04 16:53:20 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-15 09:50:00 obsr120906 S21353549 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291075278 2018-08-04 16:53:19 303 species avibase-B59E1863 Canada Goose Branta canadensis 43 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-14 16:15:00 obsr657332 S21350820 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288580439 2018-08-04 16:52:31 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 34 United States US New York US-NY Albany US-NY-001 13.0 Vly Swamp L3258923 P 42.6497115 -73.97915479999999 2015-01-02 13:20:00 obsr594026 S21149465 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288509444 2021-04-01 12:26:53.827486 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 23 United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-02 obsr560402 S21143281 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369402192 2018-08-04 16:52:58 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 obsr513002 S27183003 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291221840 2018-08-04 16:53:22 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 34 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-15 15:56:00 obsr657332 S21362938 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291930013 2018-08-04 16:53:24 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 03:30:00 obsr377411 S21418419 Stationary P21 EBIRD 45.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094745 2021-04-01 12:26:53.827486 337 species avibase-694C127A Mute Swan Cygnus olor 4 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks Club L3305761 P 42.7791903 -73.7017007 2015-01-19 obsr101869 S21431537 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290304557 2018-08-04 16:53:03 26890 species avibase-94A44032 European Starling Sturnus vulgaris 25 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:35:00 obsr657332 S21288891 Traveling P22 EBIRD 45.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290499196 2021-04-01 12:26:53.827486 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 45 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 14:55:00 obsr657332 S21304572 Traveling P22 EBIRD 55.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291514744 2018-08-04 16:53:32 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 6 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:45:00 obsr594026 S21386563 Stationary P21 EBIRD 30.0 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498533 2021-04-01 12:26:53.827486 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 55 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr546609 S21385309 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508849 2021-04-01 12:26:53.827486 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 55 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr287339 S21386137 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293265950 2018-08-04 16:55:17 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 35 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-25 15:45:00 obsr657332 S21543973 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290870330 2018-08-04 16:53:06 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 30 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 10:20:00 obsr697870 S21334381 Stationary P21 EBIRD 12.0 3.0 1 G1108432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146367 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 9 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-15 12:15:00 obsr92097 S21356603 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292636401 2018-08-04 16:54:52 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 35 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-22 15:15:00 obsr657332 S21494694 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290486858 2018-08-04 16:53:08 616 species avibase-25C94A8F Greater Scaup Aythya marila 50 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 12:00:00 obsr322656 S21303554 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288674166 2021-03-23 17:18:00.959502 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 25 United States US New York US-NY Albany US-NY-001 13.0 Cohoes - Bridge Ave. L2524087 P 42.7682498 -73.6956453 2015-01-03 07:40:00 obsr287339 S21156723 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290957497 2018-08-04 16:53:18 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-14 10:30:00 obsr551017 S21341287 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292148445 2018-08-04 16:54:47 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-20 15:30:00 obsr657332 S21435847 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288966731 2021-03-23 17:18:00.959502 303 species avibase-B59E1863 Canada Goose Branta canadensis 50 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-04 09:22:00 obsr504578 S21182191 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198507 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291949104 2021-04-01 12:26:53.827486 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-19 10:49:00 obsr546609 S21420041 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288629414 2021-04-01 12:26:53.827486 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 15 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-02 10:30:00 obsr409143 S21153482 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290381735 2018-08-04 16:53:07 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 11:02:00 obsr504578 S21295062 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292562004 2018-08-04 16:54:50 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 40 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-21 16:21:00 obsr657332 S21488782 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112551 2018-08-04 16:52:37 483 species avibase-85625D75 Mallard Anas platyrhynchos 11 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River Cohoes side from Waterford L2606895 P 42.78284620000001 -73.7041211 2015-01-03 10:00:00 obsr594026 S21193773 Stationary P21 EBIRD 40.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292454893 2018-08-04 16:54:49 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 30 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-21 12:15:00 obsr544737 S21480267 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288626941 2018-08-04 16:52:28 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 40 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-02 09:30:00 obsr409143 S21153279 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291483311 2018-08-04 16:53:32 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr504578 S21384068 Stationary P21 EBIRD 28.0 15.0 1 G1112538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293950124 2015-01-30 05:31:21 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-29 15:55:00 obsr287339 S21598479 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291863390 2015-01-19 08:21:10 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-19 07:49:00 obsr287339 S21413348 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323498 2021-04-01 12:26:53.827486 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295344063 2021-03-23 17:18:00.959502 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-28 12:16:00 obsr684648 S21709681 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198511 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292850809 2015-01-23 22:35:08 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Green Island--Hudson&Tibbitts L3294938 P 42.7492098 -73.6883926 2015-01-23 13:22:00 obsr657332 S21511504 Stationary P21 EBIRD 10.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621476 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-10 08:00:00 obsr639188 S21731716 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089268 2017-04-05 16:49:11 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407530 2021-03-26 07:46:52.994574 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289977407 2015-01-09 08:33:20 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-08 13:00:00 obsr491696 S21261905 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287718 2021-03-26 07:46:52.994574 592 species avibase-3072CC16 Redhead Aythya americana 8 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289948737 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-08 08:30:00 obsr7511 S21259688 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963829 2021-03-26 07:46:52.994574 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648395 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-22 15:10:00 obsr287339 S21495474 Traveling P22 EBIRD 63.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291863389 2015-01-19 08:21:10 622 species avibase-50566E50 Lesser Scaup Aythya affinis 5 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-19 07:49:00 obsr287339 S21413348 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310835 2021-03-23 17:18:00.959502 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-16 08:05:00 obsr644825 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773095 2021-03-23 17:18:00.959502 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220308 2021-03-26 07:46:52.994574 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288372006 2015-05-09 13:02:45 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:15:00 obsr322656 S21132019 Traveling P22 EBIRD 60.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480113 2021-03-26 07:46:52.994574 592 species avibase-3072CC16 Redhead Aythya americana 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291924862 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-19 11:32:00 obsr171042 S21417992 Traveling P22 EBIRD 136.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557995 2021-04-01 12:26:53.827486 447 species avibase-C235A4D7 Gadwall Mareca strepera 15 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289973515 2015-01-09 07:17:28 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-08 obsr620943 S21261580 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621960 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288978078 2015-01-04 10:41:56 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 13.0 Vly Creek Marsh L2888967 H 42.6464318 -73.9692714 2015-01-04 10:40:00 obsr504578 S21183149 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086430 2021-03-26 07:46:52.994574 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 08:30:00 obsr287339 S21529887 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551647 2021-03-24 20:53:39.352228 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-02 08:30:00 obsr644825 S21147085 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963924 2021-04-01 12:26:53.827486 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 6 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984442 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 7 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290941186 2015-01-14 07:55:12 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-13 obsr620943 S21340030 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292086257 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Albany US-NY-001 13.0 Glenmont New York, US L3305646 P 42.5932799 -73.8080406 2015-01-20 07:30:00 obsr602177 S21430796 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587686 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 9 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-27 08:03:00 obsr125126 S21569971 Stationary P21 EBIRD 544.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291017529 2021-03-26 07:46:52.994574 526 species avibase-56CCA717 Northern Pintail Anas acuta 7 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-14 14:54:00 obsr544737 S21346058 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288801620 2021-03-24 20:53:39.352228 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-02 09:30:00 obsr178309 S21167276 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292579279 2021-03-23 17:18:00.959502 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-22 07:34:00 obsr407723 S21490126 Traveling P22 EBIRD 12.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281338 2021-03-24 20:53:39.352228 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 09:00:00 obsr491696 S21445865 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291408477 2021-03-26 07:46:52.994574 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 09:00:00 obsr287339 S21377904 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291535589 2021-04-01 12:26:53.827486 591 species avibase-1929E1E1 Canvasback Aythya valisineria 2 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 08:40:00 obsr409143 S21388262 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094741 2021-04-01 12:26:53.827486 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks Club L3305761 P 42.7791903 -73.7017007 2015-01-19 obsr101869 S21431537 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288676006 2015-01-18 13:21:44 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 12 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 07:24:00 obsr407723 S21156879 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290144587 2021-04-01 12:26:53.827486 30494 species avibase-240E3390 House Sparrow Passer domesticus 9 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-10 09:00:00 obsr7511 S21275375 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290136759 2015-01-10 08:28:55 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-09 obsr620943 S21274627 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293911464 2021-04-01 12:26:53.827486 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 20 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr120906 S21595535 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288552241 2015-01-02 17:31:20 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 15:50:00 obsr644825 S21147142 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693858 2021-03-24 20:53:39.352228 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417581 2021-02-07 08:31:53.993611 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-13 08:00:00 obsr7511 S21378668 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291540068 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-17 12:15:00 obsr409143 S21388629 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288509449 2021-04-01 12:26:53.827486 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-02 obsr560402 S21143281 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293161484 2021-03-23 17:18:00.959502 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-25 14:12:00 obsr287339 S21535923 Traveling P22 EBIRD 68.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284501 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 8 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288275654 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-01 08:45:00 obsr594026 S21124074 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291347182 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 10:20:00 obsr409143 S21373036 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002100 2021-04-01 12:26:53.827486 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 20 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr697870 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183904 2021-03-26 07:46:52.994574 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961244 2021-03-26 07:46:52.994574 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869056 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 14:52:00 obsr287339 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294105852 2021-03-26 07:46:52.994574 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:11:00 obsr504578 S21610513 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288247585 2015-01-01 16:55:14 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-01 14:42:00 obsr171042 S21121569 Traveling P22 EBIRD 132.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537244 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271576 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290369681 2021-03-23 17:18:00.959502 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-11 09:46:00 obsr551017 S21294028 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289576793 2015-01-06 21:05:58 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-06 08:00:00 obsr409143 S21230120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289781744 2021-03-24 20:53:39.352228 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-07 13:00:00 obsr547303 S21245788 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292836257 2015-01-23 20:51:40 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Albany US-NY-001 13.0 Bob's Office in Latham L2567287 P 42.758462 -73.7855583 2015-01-23 09:15:00 obsr7511 S21510332 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288631214 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-01 08:00:00 obsr409143 S21153627 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679895 2021-03-26 07:46:52.994574 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-03 08:15:00 obsr7511 S21157120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172710 2021-11-14 08:08:43.2446 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-31 08:30:00 obsr546609 S21616032 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277942 2021-03-26 07:46:52.994574 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 4 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-01 12:40:00 obsr594026 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294075645 2021-03-24 20:53:39.352228 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-30 obsr620943 S21608478 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289952816 2017-08-16 16:14:31 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-07 16:00:00 obsr317421 S21260008 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289989522 2015-01-09 10:51:44 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-08 07:45:00 obsr644825 S21263052 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803301 2021-04-01 12:26:53.827486 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288286373 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-01-01 12:20:00 obsr546609 S21125084 Traveling P22 EBIRD 57.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323502 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 106 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204569 2015-01-25 17:59:47 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 07:48:00 obsr504578 S21539320 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209721 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-31 09:15:00 obsr409143 S21618822 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291349075 2021-03-24 20:53:39.352228 622 species avibase-50566E50 Lesser Scaup Aythya affinis 5 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-16 08:00:00 obsr409143 S21373167 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935087 2021-03-26 07:46:52.994574 616 species avibase-25C94A8F Greater Scaup Aythya marila 14 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613843 2021-03-23 17:18:00.959502 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-18 08:42:00 obsr407723 S21394179 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288629416 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-02 10:30:00 obsr409143 S21153482 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289579820 2015-01-06 21:21:34 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Albany US-NY-001 13.0 Roesselville L3272127 P 42.6943496 -73.7982948 2015-01-06 10:00:00 obsr70633 S21230302 Stationary P21 EBIRD 150.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291348358 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Mohawk View L2565459 P 42.7787123 -73.7007205 2015-01-16 09:45:00 obsr409143 S21373112 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292978838 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 6 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-24 08:56:00 obsr125126 S21521406 Stationary P21 EBIRD 519.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289099385 2021-03-24 20:53:39.352228 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-04 09:00:00 obsr178309 S21192730 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872616 2021-04-01 12:26:53.827486 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291241204 2015-01-16 07:23:56 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-15 obsr620943 S21364336 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292959579 2021-04-01 12:26:53.827486 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.574738700000005 -74.15542020000001 2015-01-24 09:15:00 obsr409143 S21520100 Traveling P22 EBIRD 80.0 19.312 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299855 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288538412 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr697870 S21145897 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295622730 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-11 08:00:00 obsr639188 S21731845 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271533 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr120906 S21205860 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291540069 2021-03-24 20:53:39.352228 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-17 12:15:00 obsr409143 S21388629 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292579284 2021-03-23 17:18:00.959502 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-22 07:34:00 obsr407723 S21490126 Traveling P22 EBIRD 12.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289952817 2017-08-16 16:14:31 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-07 16:00:00 obsr317421 S21260008 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288538419 2021-04-01 12:26:53.827486 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr697870 S21145897 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271567 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299869 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712173 2019-10-18 07:40:54 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 28.0 Huyck Preserve--Lake Myosotis L304714 H 42.5220704 -74.14839930000001 2015-01-03 08:30:00 obsr708267 S21240370 Traveling P22 EBIRD 170.0 7.081 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963853 2021-03-26 07:46:52.994574 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291100293 2021-03-24 20:53:39.352228 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 Waldenmaier Road, Delmar L3110574 P 42.5925848 -73.8740015 2015-01-15 09:01:00 obsr551017 S21352891 Traveling P22 EBIRD 6.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281352 2021-03-24 20:53:39.352228 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 09:00:00 obsr491696 S21445865 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291017542 2021-03-26 07:46:52.994574 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-14 14:54:00 obsr544737 S21346058 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753596 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-03 12:39:00 obsr287339 S21163284 Traveling P22 EBIRD 83.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027846 2021-04-01 12:26:53.827486 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 3 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291241200 2015-01-16 07:23:56 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-15 obsr620943 S21364336 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290369689 2021-03-23 17:18:00.959502 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-11 09:46:00 obsr551017 S21294028 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587698 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-27 08:03:00 obsr125126 S21569971 Stationary P21 EBIRD 544.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291106975 2018-08-04 16:53:20 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY Albany US-NY-001 13.0 beachman road L3293455 P 42.46244 -73.8688 2015-01-15 10:08:00 obsr551017 S21353532 Traveling P22 EBIRD 7.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764437 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Feura Bush L3260809 P 42.589187 -73.869008 2015-01-03 11:25:00 obsr547303 S21164122 Traveling P22 EBIRD 10.0 9.656 2.0 1 G1093025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773085 2021-03-23 17:18:00.959502 6339 species avibase-8535345B Herring Gull Larus argentatus 2 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289576788 2015-01-06 21:05:58 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-06 08:00:00 obsr409143 S21230120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291101767 2015-01-15 09:28:27 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis X United States US New York US-NY Albany US-NY-001 13.0 Waldenmaier Road, Delmar L3110574 P 42.5925848 -73.8740015 2015-01-15 09:13:00 obsr551017 S21353039 Traveling P22 EBIRD 7.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002097 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr697870 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727249 2021-03-26 07:46:52.994574 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-07 15:59:00 obsr125126 S21241585 Stationary P21 EBIRD 61.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470808 2015-01-17 15:31:44 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Glenmont-Mosher Rd L3298318 P 42.572155 -73.759625 2015-01-17 15:16:00 obsr407723 S21383075 Traveling P22 EBIRD 8.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625865 2018-08-04 16:53:55 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Albany US-NY-001 13.0 Hollyhock Hollow Sanctuary L1146193 H 42.540149 -73.8703108 2015-01-18 09:35:00 obsr407723 S21395264 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480131 2021-03-26 07:46:52.994574 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 7 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059210 2021-03-26 07:46:52.994574 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 2 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292978849 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-24 08:56:00 obsr125126 S21521406 Stationary P21 EBIRD 519.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679891 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 Unknown Sex, Adult (1); Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-03 08:15:00 obsr7511 S21157120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872631 2021-04-01 12:26:53.827486 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277949 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-01 12:40:00 obsr594026 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621963 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 11 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290941196 2015-01-14 07:55:12 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-13 obsr620943 S21340030 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288469347 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-02 11:40:00 obsr287339 S21140015 Traveling P22 EBIRD 40.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553864 2018-08-04 16:53:27 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:20:00 obsr697870 S21389727 Stationary P21 EBIRD 8.0 2.0 1 G1112757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905008 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 9 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288631211 2021-03-26 07:46:52.994574 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-01 08:00:00 obsr409143 S21153627 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293040337 2015-05-06 20:08:00 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-24 13:00:00 obsr110666 S21525985 Stationary P21 EBIRD 60.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295183435 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-31 09:01:00 obsr125126 S21696603 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289875004 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 52 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-08 12:00:00 obsr92097 S21253779 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288273338 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:30:00 obsr594026 S21123860 Traveling P22 EBIRD 70.0 1.207 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288275652 2021-03-26 07:46:52.994574 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-01 08:45:00 obsr594026 S21124074 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291416715 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-16 08:00:00 obsr7511 S21378583 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621468 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-10 08:00:00 obsr639188 S21731716 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183918 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293386937 2018-08-04 16:55:19 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-26 13:30:00 obsr657332 S21553414 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287704 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 7 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172704 2021-11-14 08:08:43.2446 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-31 08:30:00 obsr546609 S21616032 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288254808 2021-03-24 20:53:39.352228 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-01 09:00:00 obsr178309 S21122167 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803291 2021-04-01 12:26:53.827486 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294164107 2021-03-24 20:53:39.352228 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Albany US-NY-001 13.0 Vagele Lane, Glenmont L2868631 P 42.597550700000006 -73.78205940000001 2015-01-31 obsr551017 S21615462 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693873 2021-03-24 20:53:39.352228 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291405501 2018-08-04 16:53:27 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:20:00 obsr120906 S21377671 Stationary P21 EBIRD 8.0 2.0 1 G1112757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292598019 2021-03-26 07:46:52.994574 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-22 08:29:00 obsr125126 S21491678 Stationary P21 EBIRD 144.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204583 2015-01-25 17:59:47 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 07:48:00 obsr504578 S21539320 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293822283 2021-03-26 07:46:52.994574 456 species avibase-D201EB72 American Wigeon Mareca americana X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:49:00 obsr551017 S21588434 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293589083 2021-03-24 20:53:39.352228 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-27 09:50:00 obsr594026 S21570080 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291957764 2017-01-11 21:22:56 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 13:45:00 obsr594026 S21420792 Traveling P22 EBIRD 65.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294029142 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY Albany US-NY-001 13.0 NY, Albany, 26 Eton Drive Neighborhood L2733019 P 42.6537682 -73.8467359 2015-01-30 15:30:00 obsr171042 S21604833 Traveling P22 EBIRD 56.0 3.54 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289973524 2015-01-09 07:17:28 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-08 obsr620943 S21261580 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288552251 2015-01-02 17:31:20 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 15:50:00 obsr644825 S21147142 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291408490 2021-03-26 07:46:52.994574 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 09:00:00 obsr287339 S21377904 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289443589 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-06 08:00:00 obsr7511 S21219332 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289099391 2021-03-24 20:53:39.352228 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-04 09:00:00 obsr178309 S21192730 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408582 2021-03-26 07:46:52.994574 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289324563 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-04 09:49:00 obsr125126 S21210282 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984456 2021-03-26 07:46:52.994574 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293558008 2021-04-01 12:26:53.827486 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294075653 2021-03-24 20:53:39.352228 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-30 obsr620943 S21608478 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537235 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288700278 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Albany International Airport--Sicker Rd. eastern side L2494355 H 42.751172 -73.80131899999999 2015-01-03 10:10:00 obsr287339 S21158898 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220327 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289099715 2015-01-04 17:12:04 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-04 14:00:00 obsr178309 S21192759 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323503 2021-04-01 12:26:53.827486 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 23 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284487 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 7 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288681723 2021-03-23 17:18:00.959502 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 08:33:00 obsr407723 S21157294 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295622734 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 Male, Adult (2); Female, Adult (2) United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-11 08:00:00 obsr639188 S21731845 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293911461 2021-04-01 12:26:53.827486 20829 species avibase-B9B272F4 Common Raven Corvus corax 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr120906 S21595535 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407545 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289989533 2015-01-09 10:51:44 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-08 07:45:00 obsr644825 S21263052 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961239 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290142404 2021-03-24 20:53:39.352228 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-09 10:00:00 obsr178309 S21275169 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292960394 2015-01-24 16:38:50 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-24 16:00:00 obsr409143 S21520157 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291028528 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-14 11:45:00 obsr594026 S21346986 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288717658 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Feura Bush L3260809 P 42.589187 -73.869008 2015-01-03 11:25:00 obsr407723 S21160475 Traveling P22 EBIRD 10.0 9.656 2.0 1 G1093025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271540 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr120906 S21205860 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288802805 2021-03-24 20:53:39.352228 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-03 09:30:00 obsr178309 S21167379 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198499 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 6 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086442 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 8 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 08:30:00 obsr287339 S21529887 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288969100 2021-04-01 12:26:53.827486 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-04 08:30:00 obsr7511 S21182411 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288509453 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-02 obsr560402 S21143281 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935074 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 13 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869069 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 14:52:00 obsr287339 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293340138 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-26 08:56:00 obsr504578 S21549445 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551654 2021-03-24 20:53:39.352228 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-02 08:30:00 obsr644825 S21147085 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963938 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288801617 2021-03-24 20:53:39.352228 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-02 09:30:00 obsr178309 S21167276 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209728 2021-03-26 07:46:52.994574 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-31 09:15:00 obsr409143 S21618822 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290136749 2015-01-10 08:28:55 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-09 obsr620943 S21274627 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289579819 2015-01-06 21:21:34 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Roesselville L3272127 P 42.6943496 -73.7982948 2015-01-06 10:00:00 obsr70633 S21230302 Stationary P21 EBIRD 150.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089284 2017-04-05 16:49:11 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220313 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963839 2021-03-26 07:46:52.994574 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480117 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290974895 2015-01-14 12:41:50 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-14 11:02:00 obsr551017 S21341599 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293589084 2021-03-24 20:53:39.352228 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-27 09:50:00 obsr594026 S21570080 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289099716 2015-01-04 17:12:04 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-04 14:00:00 obsr178309 S21192759 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408586 2021-03-26 07:46:52.994574 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625857 2018-08-04 16:53:55 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 Hollyhock Hollow Sanctuary L1146193 H 42.540149 -73.8703108 2015-01-18 09:35:00 obsr407723 S21395264 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289954824 2018-08-04 16:52:55 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-08 15:00:00 obsr657332 S21260148 Traveling P22 EBIRD 60.0 14.484000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293814201 2015-01-29 08:48:59 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 Green Island L3292979 P 42.7444909 -73.69105340000002 2015-01-28 15:50:00 obsr657332 S21587694 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089271 2017-04-05 16:49:11 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613846 2021-03-23 17:18:00.959502 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-18 08:42:00 obsr407723 S21394179 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287703 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293871541 2017-08-16 16:28:24 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-29 14:28:00 obsr171042 S21592605 Traveling P22 EBIRD 96.0 5.792999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183908 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284486 2021-03-26 07:46:52.994574 337 species avibase-694C127A Mute Swan Cygnus olor 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984445 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289875013 2021-03-26 07:46:52.994574 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-08 12:00:00 obsr92097 S21253779 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289007107 2017-08-16 16:12:48 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Slingerlands-1750 New Scotland Rd L3264976 P 42.629517 -73.888529 2015-01-04 12:23:00 obsr504578 S21185495 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764432 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Feura Bush L3260809 P 42.589187 -73.869008 2015-01-03 11:25:00 obsr547303 S21164122 Traveling P22 EBIRD 10.0 9.656 2.0 1 G1093025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293871538 2017-08-16 16:28:24 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-29 14:28:00 obsr171042 S21592605 Traveling P22 EBIRD 96.0 5.792999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288717653 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Feura Bush L3260809 P 42.589187 -73.869008 2015-01-03 11:25:00 obsr407723 S21160475 Traveling P22 EBIRD 10.0 9.656 2.0 1 G1093025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299852 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290381737 2018-08-04 16:53:07 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 11:02:00 obsr504578 S21295062 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289952814 2017-08-16 16:14:31 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-07 16:00:00 obsr317421 S21260008 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553828 2017-08-16 16:21:10 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 Albany International Airport--Southern end L2501192 H 42.7322277 -73.8042641 2015-01-17 10:18:00 obsr697870 S21389725 Stationary P21 EBIRD 5.0 2.0 1 G1112756 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289024908 2021-03-23 17:18:00.959502 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-01 obsr551017 S21186896 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408593 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288700274 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Albany US-NY-001 13.0 Albany International Airport--Sicker Rd. eastern side L2494355 H 42.751172 -73.80131899999999 2015-01-03 10:10:00 obsr287339 S21158898 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291412779 2017-08-16 16:21:10 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Albany US-NY-001 13.0 Albany International Airport--Southern end L2501192 H 42.7322277 -73.8042641 2015-01-17 10:18:00 obsr120906 S21378243 Stationary P21 EBIRD 5.0 2.0 1 G1112756 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290371287 2017-08-16 16:18:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Waldenmaier Road, Delmar L3110574 P 42.5925848 -73.8740015 2015-01-11 10:11:00 obsr551017 S21294151 Traveling P22 EBIRD 8.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292594392 2017-08-16 16:24:31 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Albany US-NY-001 13.0 Albany International Airport--Sicker Rd. eastern side L2494355 H 42.751172 -73.80131899999999 2015-01-22 10:11:00 obsr120906 S21491409 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284500 2021-03-26 07:46:52.994574 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290181113 2017-08-16 16:18:30 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Albany International Airport--Southern end L2501192 H 42.7322277 -73.8042641 2015-01-10 12:55:00 obsr407723 S21278578 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291957763 2017-01-11 21:22:56 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 13:45:00 obsr594026 S21420792 Traveling P22 EBIRD 65.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198493 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292590932 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-01-22 08:50:00 obsr120906 S21491087 Traveling P22 EBIRD 64.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323499 2021-04-01 12:26:53.827486 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 4 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204578 2015-01-25 17:59:47 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 07:48:00 obsr504578 S21539320 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293558005 2021-04-01 12:26:53.827486 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291537252 2015-01-17 19:46:42 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 Port of Albany, NY L608431 P 42.6267124 -73.7552118 2015-01-17 15:50:00 obsr322656 S21383634 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288969104 2021-04-01 12:26:53.827486 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-04 08:30:00 obsr7511 S21182411 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288372019 2015-05-09 13:02:45 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:15:00 obsr322656 S21132019 Traveling P22 EBIRD 60.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289579818 2015-01-06 21:21:34 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Roesselville L3272127 P 42.6943496 -73.7982948 2015-01-06 10:00:00 obsr70633 S21230302 Stationary P21 EBIRD 150.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679900 2021-03-26 07:46:52.994574 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-03 08:15:00 obsr7511 S21157120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288192839 2021-03-23 17:18:00.959502 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Albany US-NY-001 13.0 pauley lane L3253415 P 42.6503428 -73.88260600000001 2015-01-01 11:45:00 obsr560402 S21116906 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292768489 2015-01-23 13:53:16 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Albany US-NY-001 13.0 University at Albany Podium West L2099062 P 42.6874513 -73.8267946 2015-01-23 11:00:00 obsr409143 S21504947 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291099842 2021-03-23 17:18:00.959502 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-15 08:51:00 obsr551017 S21352842 Traveling P22 EBIRD 9.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288877618 2015-01-04 09:20:44 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Albany L122621 T 42.65258 -73.75627 2015-01-02 09:00:00 obsr120906 S21175447 Incidental P20 EBIRD 2.0 0 G1094753 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288678888 2021-03-24 20:53:39.352228 20294 species avibase-76158864 Northern Shrike Lanius borealis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 08:17:00 obsr407723 S21157038 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803308 2021-04-01 12:26:53.827486 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089280 2017-04-05 16:49:11 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294164103 2021-03-24 20:53:39.352228 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Albany US-NY-001 13.0 Vagele Lane, Glenmont L2868631 P 42.597550700000006 -73.78205940000001 2015-01-31 obsr551017 S21615462 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059208 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281350 2021-03-24 20:53:39.352228 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 09:00:00 obsr491696 S21445865 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963574 2015-01-04 09:20:44 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 Albany L122621 T 42.65258 -73.75627 2015-01-02 09:00:00 obsr697870 S21181908 Incidental P20 EBIRD 2.0 0 G1094753 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480126 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693869 2021-03-24 20:53:39.352228 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289781751 2021-03-24 20:53:39.352228 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-07 13:00:00 obsr547303 S21245788 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963910 2021-03-26 07:46:52.994574 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417580 2021-02-07 08:31:53.993611 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-13 08:00:00 obsr7511 S21378668 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284484 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287701 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693862 2021-03-24 20:53:39.352228 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292099769 2019-04-06 17:45:31 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 625 Broadway, Albany L3305834 P 42.6525091 -73.74908570000001 2015-01-20 10:25:00 obsr287339 S21432023 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288694452 2015-01-18 13:21:44 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 08:45:00 obsr407723 S21158349 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292053449 2015-01-19 23:00:54 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Green Island L3292979 P 42.7444909 -73.69105340000002 2015-01-19 11:00:00 obsr657332 S21428269 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291949111 2021-04-01 12:26:53.827486 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 Unknown Sex, Adult (2) United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-19 10:49:00 obsr546609 S21420041 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292562263 2015-01-21 23:42:28 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Green Island L3292979 P 42.7444909 -73.69105340000002 2015-01-21 16:48:00 obsr657332 S21488805 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292810785 2021-04-01 12:26:53.827486 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Hudson River shoreline at USS Slater site L3245378 P 42.6421355 -73.74999229999999 2015-01-23 11:50:00 obsr594026 S21508425 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290369682 2021-03-23 17:18:00.959502 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-11 09:46:00 obsr551017 S21294028 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293548780 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Albany - 42.6813x-73.8449 - Jan 26, 2015, 7:59 AM L3321957 P 42.681277 -73.844876 2015-01-26 07:59:00 obsr125126 S21566850 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292116180 2021-04-01 12:26:53.827486 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-20 11:50:00 obsr287339 S21433340 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292768144 2015-02-02 07:49:52 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 Center Island, Green Island L2466715 P 42.7388935 -73.68970290000001 2015-01-23 10:30:00 obsr409143 S21504913 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291075977 2015-01-15 09:57:06 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Green Island L3292979 P 42.7444909 -73.69105340000002 2015-01-14 16:30:00 obsr657332 S21350870 Traveling P22 EBIRD 30.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290370655 2015-01-11 11:13:48 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk-Rupert Rd L3284385 P 42.539554 -73.854804 2015-01-11 10:11:00 obsr407723 S21294095 Traveling P22 EBIRD 4.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287719 2021-03-26 07:46:52.994574 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753584 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-03 12:39:00 obsr287339 S21163284 Traveling P22 EBIRD 83.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291274847 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-15 12:15:00 obsr92097 S21356603 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625858 2018-08-04 16:53:55 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Albany US-NY-001 13.0 Hollyhock Hollow Sanctuary L1146193 H 42.540149 -73.8703108 2015-01-18 09:35:00 obsr407723 S21395264 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289516445 2015-01-06 17:10:33 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Albany US-NY-001 13.0 Ravena L3271565 P 42.4902661 -73.8207364 2015-01-06 16:23:00 obsr547303 S21225419 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323524 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293161482 2021-03-23 17:18:00.959502 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-25 14:12:00 obsr287339 S21535923 Traveling P22 EBIRD 68.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480118 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288273346 2021-03-26 07:46:52.994574 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:30:00 obsr594026 S21123860 Traveling P22 EBIRD 70.0 1.207 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963840 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288372010 2015-05-09 13:02:45 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:15:00 obsr322656 S21132019 Traveling P22 EBIRD 60.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288552244 2015-01-02 17:31:20 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 15:50:00 obsr644825 S21147142 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961242 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803297 2021-04-01 12:26:53.827486 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773092 2021-03-23 17:18:00.959502 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288991913 2015-01-04 11:34:53 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-04 11:07:00 obsr504578 S21184271 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292118945 2021-03-24 20:53:39.352228 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Kings Highway Barrens L2584384 H 42.7369323 -73.886095 2015-01-20 09:00:00 obsr312669 S21433587 Traveling P22 EBIRD 90.0 1.931 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508852 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr287339 S21386137 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407533 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288978079 2015-01-04 10:41:56 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Albany US-NY-001 13.0 Vly Creek Marsh L2888967 H 42.6464318 -73.9692714 2015-01-04 10:40:00 obsr504578 S21183149 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284502 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292142045 2015-01-20 15:11:46 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Albany US-NY-001 13.0 Lions L2803969 P 42.772447 -73.80926 2015-01-20 14:52:00 obsr125126 S21435388 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059200 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299859 2021-03-26 07:46:52.994574 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498536 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr546609 S21385309 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291924865 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-19 11:32:00 obsr171042 S21417992 Traveling P22 EBIRD 136.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293589076 2021-03-24 20:53:39.352228 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-27 09:50:00 obsr594026 S21570080 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291017532 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-14 14:54:00 obsr544737 S21346058 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220314 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281342 2021-03-24 20:53:39.352228 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 09:00:00 obsr491696 S21445865 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059212 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292743191 2015-01-23 10:25:56 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 8 United States US New York US-NY Albany US-NY-001 28.0 71 Overlook Lane, East Berne L1839006 P 42.6009767 -74.0609807 2015-01-23 10:00:00 obsr489108 S21502987 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905009 2021-03-26 07:46:52.994574 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292688718 2015-01-23 09:32:49 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-22 16:26:00 obsr657332 S21498880 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292093685 2015-01-20 09:44:20 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-19 obsr101869 S21431468 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292056532 2018-08-04 16:54:01 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Green Island--Hudson&Tibbitts L3294938 P 42.7492098 -73.6883926 2015-01-19 11:21:00 obsr657332 S21428524 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291872511 2021-03-26 07:46:52.994574 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-19 09:27:00 obsr504578 S21414117 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292767822 2015-01-23 13:53:36 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-23 10:10:00 obsr409143 S21504888 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291949108 2021-04-01 12:26:53.827486 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-19 10:49:00 obsr546609 S21420041 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292090881 2015-01-20 09:16:36 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-20 09:10:00 obsr120906 S21431212 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249272 2021-03-23 17:18:00.959502 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 08:00:00 obsr546609 S21365094 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291103271 2015-01-15 09:46:01 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-15 09:35:00 obsr120906 S21353179 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291863386 2015-01-19 08:21:10 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-19 07:49:00 obsr287339 S21413348 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291222362 2015-01-15 23:18:06 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Albany US-NY-001 13.0 Green Island--Hudson&Tibbitts L3294938 P 42.7492098 -73.6883926 2015-01-15 15:43:00 obsr657332 S21363003 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292449465 2015-01-21 11:52:23 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-21 11:20:00 obsr544737 S21479810 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290960851 2015-01-14 12:41:50 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-14 11:02:00 obsr551017 S21341599 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292563265 2015-03-05 22:16:04 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-21 11:20:00 obsr594026 S21488876 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295183429 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-31 09:01:00 obsr125126 S21696603 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292598015 2021-03-26 07:46:52.994574 242 species avibase-D3A260BC Snow Goose Anser caerulescens 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-22 08:29:00 obsr125126 S21491678 Stationary P21 EBIRD 144.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271579 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905000 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288991917 2015-01-04 11:34:53 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-04 11:07:00 obsr504578 S21184271 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587691 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-27 08:03:00 obsr125126 S21569971 Stationary P21 EBIRD 544.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963573 2015-01-04 09:20:44 251 domestic avibase-6835DC6C Graylag Goose (Domestic type) Anser anser (Domestic type) 1 United States US New York US-NY Albany US-NY-001 13.0 Albany L122621 T 42.65258 -73.75627 2015-01-02 09:00:00 obsr697870 S21181908 Incidental P20 EBIRD 2.0 0 G1094753 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408596 2021-03-26 07:46:52.994574 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284497 2021-03-26 07:46:52.994574 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869062 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 14:52:00 obsr287339 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727245 2021-03-26 07:46:52.994574 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-07 15:59:00 obsr125126 S21241585 Stationary P21 EBIRD 61.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293040341 2015-05-06 20:08:00 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-24 13:00:00 obsr110666 S21525985 Stationary P21 EBIRD 60.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289875014 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-08 12:00:00 obsr92097 S21253779 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059205 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289792409 2015-01-07 23:19:09 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-07 08:25:00 obsr644825 S21246849 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287714 2021-03-26 07:46:52.994574 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281347 2021-03-24 20:53:39.352228 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 09:00:00 obsr491696 S21445865 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288877617 2015-01-04 09:20:44 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 Albany L122621 T 42.65258 -73.75627 2015-01-02 09:00:00 obsr120906 S21175447 Incidental P20 EBIRD 2.0 0 G1094753 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773094 2021-03-23 17:18:00.959502 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293822276 2021-03-26 07:46:52.994574 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:49:00 obsr551017 S21588434 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291017535 2021-03-26 07:46:52.994574 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-14 14:54:00 obsr544737 S21346058 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537247 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289976522 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 08:00:00 obsr491696 S21261827 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292978843 2021-03-26 07:46:52.994574 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-24 08:56:00 obsr125126 S21521406 Stationary P21 EBIRD 519.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290142396 2021-03-24 20:53:39.352228 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-09 10:00:00 obsr178309 S21275169 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183905 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291904995 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002099 2021-04-01 12:26:53.827486 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr697870 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291349080 2021-03-24 20:53:39.352228 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-16 08:00:00 obsr409143 S21373167 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551648 2021-03-24 20:53:39.352228 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-02 08:30:00 obsr644825 S21147085 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293005789 2015-01-24 19:33:52 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk- Barent Winne Rd. L3314742 P 42.551263 -73.7595463 2015-01-24 14:28:00 obsr697870 S21523570 Traveling P22 EBIRD 5.0 0.161 3.0 1 G1121256 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294105853 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:11:00 obsr504578 S21610513 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281339 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 09:00:00 obsr491696 S21445865 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292118943 2021-03-24 20:53:39.352228 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Kings Highway Barrens L2584384 H 42.7369323 -73.886095 2015-01-20 09:00:00 obsr312669 S21433587 Traveling P22 EBIRD 90.0 1.931 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086431 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 08:30:00 obsr287339 S21529887 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198494 2021-03-26 07:46:52.994574 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287695 2021-03-26 07:46:52.994574 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288991911 2015-01-04 11:34:53 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-04 11:07:00 obsr504578 S21184271 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288631221 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-01 08:00:00 obsr409143 S21153627 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323527 2021-04-01 12:26:53.827486 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 10 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209732 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-31 09:15:00 obsr409143 S21618822 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288538408 2021-04-01 12:26:53.827486 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr697870 S21145897 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408597 2021-03-26 07:46:52.994574 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291896936 2016-03-06 22:55:23 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-19 10:40:00 obsr287339 S21415921 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293822271 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:49:00 obsr551017 S21588434 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294164097 2021-03-24 20:53:39.352228 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 Vagele Lane, Glenmont L2868631 P 42.597550700000006 -73.78205940000001 2015-01-31 obsr551017 S21615462 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059197 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288676007 2015-01-18 13:21:44 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 07:24:00 obsr407723 S21156879 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292960401 2015-01-24 16:38:50 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-24 16:00:00 obsr409143 S21520157 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299856 2021-03-26 07:46:52.994574 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 2 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289099384 2021-03-24 20:53:39.352228 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-04 09:00:00 obsr178309 S21192730 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293911463 2021-04-01 12:26:53.827486 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr120906 S21595535 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294075654 2021-03-24 20:53:39.352228 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-30 obsr620943 S21608478 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220309 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288801616 2021-03-24 20:53:39.352228 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-02 09:30:00 obsr178309 S21167276 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089269 2017-04-05 16:49:11 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295622726 2021-03-26 07:46:52.994574 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-11 08:00:00 obsr639188 S21731845 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291924863 2021-03-26 07:46:52.994574 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-19 11:32:00 obsr171042 S21417992 Traveling P22 EBIRD 136.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537243 2021-03-26 07:46:52.994574 1806 species avibase-32DCEC14 Eared Grebe Podiceps nigricollis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292932468 2015-01-24 18:23:43 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk- Barent Winne Rd. L3314742 P 42.551263 -73.7595463 2015-01-24 14:28:00 obsr120906 S21517950 Traveling P22 EBIRD 5.0 0.161 3.0 1 G1121256 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291408478 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 09:00:00 obsr287339 S21377904 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289792404 2015-01-07 23:19:09 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-07 08:25:00 obsr644825 S21246849 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480114 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289973521 2015-01-09 07:17:28 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-08 obsr620943 S21261580 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292978839 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-24 08:56:00 obsr125126 S21521406 Stationary P21 EBIRD 519.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289579822 2015-01-06 21:21:34 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Roesselville L3272127 P 42.6943496 -73.7982948 2015-01-06 10:00:00 obsr70633 S21230302 Stationary P21 EBIRD 150.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310836 2021-03-23 17:18:00.959502 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-16 08:05:00 obsr644825 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289022131 2015-01-04 13:16:46 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.76281290000001 2015-01-04 11:56:00 obsr287339 S21186656 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803300 2021-04-01 12:26:53.827486 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963832 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291540057 2021-03-24 20:53:39.352228 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-17 12:15:00 obsr409143 S21388629 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288275658 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-01 08:45:00 obsr594026 S21124074 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289781745 2021-03-24 20:53:39.352228 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-07 13:00:00 obsr547303 S21245788 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271529 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr120906 S21205860 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587687 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-27 08:03:00 obsr125126 S21569971 Stationary P21 EBIRD 544.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293161487 2021-03-23 17:18:00.959502 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-25 14:12:00 obsr287339 S21535923 Traveling P22 EBIRD 68.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027835 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292953398 2015-01-24 16:08:34 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk-Barent Winne Rd L3314022 P 42.54966 -73.76230699999999 2015-01-24 14:28:00 obsr287339 S21519626 Traveling P22 EBIRD 5.0 0.161 3.0 1 G1121256 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961233 2021-03-26 07:46:52.994574 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613844 2021-03-23 17:18:00.959502 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-18 08:42:00 obsr407723 S21394179 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289989523 2015-01-09 10:51:44 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-08 07:45:00 obsr644825 S21263052 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284478 2021-03-26 07:46:52.994574 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557996 2021-04-01 12:26:53.827486 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625854 2018-08-04 16:53:55 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Albany US-NY-001 13.0 Hollyhock Hollow Sanctuary L1146193 H 42.540149 -73.8703108 2015-01-18 09:35:00 obsr407723 S21395264 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290941193 2015-01-14 07:55:12 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-13 obsr620943 S21340030 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872617 2021-04-01 12:26:53.827486 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621962 2021-03-26 07:46:52.994574 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293340129 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-26 08:56:00 obsr504578 S21549445 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271575 2021-03-26 07:46:52.994574 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288802806 2021-03-24 20:53:39.352228 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-03 09:30:00 obsr178309 S21167379 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288273341 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:30:00 obsr594026 S21123860 Traveling P22 EBIRD 70.0 1.207 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289576786 2015-01-06 21:05:58 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-06 08:00:00 obsr409143 S21230120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963925 2021-04-01 12:26:53.827486 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935083 2021-03-26 07:46:52.994574 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288552242 2015-01-02 17:31:20 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 15:50:00 obsr644825 S21147142 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204570 2015-01-25 17:59:47 591 species avibase-1929E1E1 Canvasback Aythya valisineria X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 07:48:00 obsr504578 S21539320 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773096 2021-03-23 17:18:00.959502 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290136752 2015-01-10 08:28:55 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-09 obsr620943 S21274627 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288372007 2015-05-09 13:02:45 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:15:00 obsr322656 S21132019 Traveling P22 EBIRD 60.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693859 2021-03-24 20:53:39.352228 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290201926 2021-11-14 08:11:16.238396 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Delaware Avenue, Albany (NYS Thruway overpass) L3281932 P 42.6370429 -73.79152490000001 2015-01-10 13:24:00 obsr546609 S21280222 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867276 2015-01-19 08:53:39 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-19 08:34:00 obsr287339 S21413672 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027832 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288221322 2021-04-01 12:26:53.827486 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 Rt. 85, Slingerlands L1466118 P 42.6361785 -73.85645809999998 2015-01-01 11:45:00 obsr120906 S21119388 Incidental P20 EBIRD 2.0 1 G1094762 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803306 2021-04-01 12:26:53.827486 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292852936 2015-01-23 22:58:47 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-23 15:48:00 obsr657332 S21511649 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293374089 2015-01-26 12:56:07 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Albany - 42.6443x-73.8047 - Jan 26, 2015, 12:55 PM L3319797 P 42.644298 -73.804746 2015-01-26 12:55:00 obsr322656 S21552253 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292631637 2015-01-22 14:57:07 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-22 14:25:00 obsr657332 S21494361 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284498 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408591 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288700275 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Albany US-NY-001 13.0 Albany International Airport--Sicker Rd. eastern side L2494355 H 42.751172 -73.80131899999999 2015-01-03 10:10:00 obsr287339 S21158898 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094748 2021-04-01 12:26:53.827486 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks Club L3305761 P 42.7791903 -73.7017007 2015-01-19 obsr101869 S21431537 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693857 2021-03-24 20:53:39.352228 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288683817 2018-08-04 16:52:36 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-03 08:43:00 obsr287339 S21157449 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293261603 2021-03-23 17:18:00.959502 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-01-25 14:00:00 obsr657332 S21543611 Traveling P22 EBIRD 40.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288877619 2015-01-04 09:20:44 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 5 United States US New York US-NY Albany US-NY-001 13.0 Albany L122621 T 42.65258 -73.75627 2015-01-02 09:00:00 obsr120906 S21175447 Incidental P20 EBIRD 2.0 0 G1094753 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292142043 2015-01-20 15:11:46 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 3 United States US New York US-NY Albany US-NY-001 13.0 Lions L2803969 P 42.772447 -73.80926 2015-01-20 14:52:00 obsr125126 S21435388 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407871 2015-01-02 06:39:38 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Feura Bush NY L3256379 P 42.586547 -73.8618 2015-01-01 12:10:00 obsr322656 S21134513 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289022130 2015-01-04 13:16:46 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.76281290000001 2015-01-04 11:56:00 obsr287339 S21186656 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291467909 2015-02-16 18:39:45 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Albany US-NY-001 13.0 Route 7 between Green Island and Latham L3298257 P 42.75300479999999 -73.7366295 2015-01-16 14:00:00 obsr325261 S21382851 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288969105 2021-04-01 12:26:53.827486 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-04 08:30:00 obsr7511 S21182411 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292154185 2015-01-20 16:21:15 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 RT NY Glenmont L645822 P 42.4985 -73.7955 2015-01-20 16:20:00 obsr322656 S21436357 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292563266 2015-03-05 22:16:04 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-21 11:20:00 obsr594026 S21488876 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290957501 2018-08-04 16:53:18 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-14 10:30:00 obsr551017 S21341287 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220307 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288247584 2015-01-01 16:55:14 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-01 14:42:00 obsr171042 S21121569 Traveling P22 EBIRD 132.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291151786 2015-01-15 15:39:21 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Albany - 42.6542x-73.8194 - Jan 15, 2015, 3:37 PM L3293984 P 42.654207 -73.819397 2015-01-15 15:38:00 obsr322656 S21357016 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958842 2015-01-24 16:32:54 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 28.0 Slade Hill Rd and Flood Rd L3314376 P 42.5316405 -74.0301132 2015-01-24 08:25:00 obsr409143 S21520057 Traveling P22 EBIRD 10.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407932 2015-01-02 06:43:42 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 RT NY JAN '10 VII L855634 P 42.5655167 -73.8376833 2015-01-01 12:20:00 obsr322656 S21134522 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291478289 2015-01-17 19:46:42 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Port of Albany, NY L608431 P 42.6267124 -73.7552118 2015-01-17 15:50:00 obsr322656 S21383634 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291251957 2015-01-16 10:01:57 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 09:57:00 obsr504578 S21365324 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291543793 2018-08-04 16:53:32 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 Unknown Sex, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Mohawk River from Elks Lodge parking lot L3299203 P 42.7791133 -73.7018476 2015-01-17 15:31:00 obsr386198 S21388928 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291101764 2015-01-15 09:28:27 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus X United States US New York US-NY Albany US-NY-001 13.0 Waldenmaier Road, Delmar L3110574 P 42.5925848 -73.8740015 2015-01-15 09:13:00 obsr551017 S21353039 Traveling P22 EBIRD 7.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293814200 2015-01-29 08:48:59 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Albany US-NY-001 13.0 Green Island L3292979 P 42.7444909 -73.69105340000002 2015-01-28 15:50:00 obsr657332 S21587694 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292594393 2017-08-16 16:24:31 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Albany US-NY-001 13.0 Albany International Airport--Sicker Rd. eastern side L2494355 H 42.751172 -73.80131899999999 2015-01-22 10:11:00 obsr120906 S21491409 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289954820 2018-08-04 16:52:55 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-08 15:00:00 obsr657332 S21260148 Traveling P22 EBIRD 60.0 14.484000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290756316 2021-03-23 17:18:00.959502 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-12 14:23:00 obsr657332 S21324882 Traveling P22 EBIRD 25.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294007662 2021-04-01 12:26:53.827486 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-30 14:45:00 obsr657332 S21603025 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292146729 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-15 12:15:00 obsr92097 S21356603 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289578159 2015-01-06 21:10:32 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Albany US-NY-001 13.0 Albany International Airport--Sicker Rd. eastern side L2494355 H 42.751172 -73.80131899999999 2015-01-06 13:00:00 obsr409143 S21230193 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291253994 2017-12-12 11:24:35 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-16 09:54:00 obsr546609 S21365476 Traveling P22 EBIRD 14.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291138178 2015-01-15 14:03:38 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 RT NY 2-09 L669348 P 42.66109 -73.82772 2015-01-15 14:03:00 obsr322656 S21355887 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293787253 2015-01-28 22:21:38 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Glenmont - 42.5991x-73.7856 - Jan 28, 2015, 10:20 PM L3324889 P 42.599107 -73.785551 2015-01-28 16:30:00 obsr322656 S21585445 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812962 2021-03-23 17:18:00.959502 622 species avibase-50566E50 Lesser Scaup Aythya affinis 4 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-28 15:05:00 obsr657332 S21587566 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290486861 2018-08-04 16:53:08 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 12:00:00 obsr322656 S21303554 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292852288 2015-01-23 23:01:48 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Van Schaick Island, Delaware Ave L3312905 P 42.7685963 -73.68541 2015-01-23 13:40:00 obsr657332 S21511603 Traveling P22 EBIRD 95.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291456226 2015-01-17 14:21:38 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 John Boyd Thacher SP--North L2588143 H 42.6799431 -74.042839 2015-01-16 10:00:00 obsr258063 S21381921 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293386931 2018-08-04 16:55:19 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-26 13:30:00 obsr657332 S21553414 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291931487 2015-01-19 14:20:02 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-19 13:15:00 obsr178309 S21418533 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288626945 2018-08-04 16:52:28 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-02 09:30:00 obsr409143 S21153279 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963828 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291123699 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-15 11:50:00 obsr287339 S21354889 Traveling P22 EBIRD 35.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277947 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-01 12:40:00 obsr594026 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249274 2021-03-23 17:18:00.959502 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 08:00:00 obsr546609 S21365094 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292449466 2015-01-21 11:52:23 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-21 11:20:00 obsr544737 S21479810 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292176706 2018-08-04 16:54:47 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-20 15:30:00 obsr657332 S21435847 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369402193 2018-08-04 16:52:58 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 obsr513002 S27183003 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089266 2017-04-05 16:49:11 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480112 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290371288 2017-08-16 16:18:57 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Waldenmaier Road, Delmar L3110574 P 42.5925848 -73.8740015 2015-01-11 10:11:00 obsr551017 S21294151 Traveling P22 EBIRD 8.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288966734 2021-03-23 17:18:00.959502 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-04 09:22:00 obsr504578 S21182191 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905107 2015-01-19 12:21:02 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-19 10:00:00 obsr551017 S21416527 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291017528 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-14 14:54:00 obsr544737 S21346058 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764433 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Feura Bush L3260809 P 42.589187 -73.869008 2015-01-03 11:25:00 obsr547303 S21164122 Traveling P22 EBIRD 10.0 9.656 2.0 1 G1093025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294271028 2021-03-23 17:18:00.959502 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-31 14:30:00 obsr657332 S21623792 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299853 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002087 2021-04-01 12:26:53.827486 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr697870 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292959577 2021-04-01 12:26:53.827486 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.574738700000005 -74.15542020000001 2015-01-24 09:15:00 obsr409143 S21520100 Traveling P22 EBIRD 80.0 19.312 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963921 2021-04-01 12:26:53.827486 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Albany US-NY-001 13.0 Rt. 85, Slingerlands L1466118 P 42.6361785 -73.85645809999998 2015-01-01 11:45:00 obsr697870 S21181946 Incidental P20 EBIRD 2.0 1 G1094762 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963575 2015-01-04 09:20:44 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 5 United States US New York US-NY Albany US-NY-001 13.0 Albany L122621 T 42.65258 -73.75627 2015-01-02 09:00:00 obsr697870 S21181908 Incidental P20 EBIRD 2.0 0 G1094753 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961227 2021-03-26 07:46:52.994574 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291015871 2015-01-14 16:45:00 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Coeymans, NY RT L1306777 P 42.4856667 -73.79381670000001 2015-01-14 16:40:00 obsr322656 S21345925 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648399 2021-03-26 07:46:52.994574 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-22 15:10:00 obsr287339 S21495474 Traveling P22 EBIRD 63.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764380 2015-01-03 14:46:19 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk L3260801 P 42.578847 -73.868167 2015-01-03 11:39:00 obsr547303 S21164114 Traveling P22 EBIRD 14.0 6.437 2.0 1 G1093024 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289704971 2015-01-07 15:12:06 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Albany - 42.6962x-73.8371 - Jan 7, 2015, 3:11 PM L3274973 P 42.69624 -73.837108 2015-01-07 14:00:00 obsr322656 S21239875 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294014162 2018-08-04 16:55:27 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-30 15:00:00 obsr657332 S21603563 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290369680 2021-03-23 17:18:00.959502 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-11 09:46:00 obsr551017 S21294028 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293871539 2017-08-16 16:28:24 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-29 14:28:00 obsr171042 S21592605 Traveling P22 EBIRD 96.0 5.792999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291648784 2015-01-18 12:42:59 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Albany US-NY-001 13.0 Wemple Rd L2594970 P 42.5857055 -73.8037205 2015-01-18 12:11:00 obsr407723 S21397222 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293950125 2015-01-30 05:31:21 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-29 15:55:00 obsr287339 S21598479 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198497 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 Unknown Sex, Adult (1); Unknown Sex, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291416889 2021-03-24 20:53:39.352228 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-15 08:00:00 obsr7511 S21378609 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291904994 2021-03-26 07:46:52.994574 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553644 2021-04-01 12:26:53.827486 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:00:00 obsr409143 S21389711 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291152594 2015-01-15 15:44:55 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY - 42.5709x-73.7897 - Jan 15, 2015, 3:44 PM L3294001 P 42.570865000000005 -73.789712 2015-01-15 15:44:00 obsr322656 S21357098 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287715 2021-03-26 07:46:52.994574 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291137333 2015-01-15 13:57:23 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Albany US-NY-001 13.0 RT NY I-87 1-10 III L831034 P 42.5746833 -73.7886 2015-01-15 13:56:00 obsr322656 S21355804 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773097 2021-03-23 17:18:00.959502 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 Unknown Sex, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183903 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289579821 2015-01-06 21:21:34 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Roesselville L3272127 P 42.6943496 -73.7982948 2015-01-06 10:00:00 obsr70633 S21230302 Stationary P21 EBIRD 150.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292264585 2015-01-21 10:12:16 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Latham-362-368 Vly Rd. L3307817 P 42.764939 -73.829364 2015-01-21 10:11:00 obsr120906 S21444391 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288717654 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Feura Bush L3260809 P 42.589187 -73.869008 2015-01-03 11:25:00 obsr407723 S21160475 Traveling P22 EBIRD 10.0 9.656 2.0 1 G1093025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291486535 2015-01-17 16:35:40 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 TURK NY L645880 P 42.5374167 -73.7765556 2015-01-17 16:16:00 obsr322656 S21384351 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323515 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos 12 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293911451 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr120906 S21595535 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292612428 2018-08-04 16:54:51 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-22 12:10:00 obsr287339 S21492899 Traveling P22 EBIRD 30.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288580436 2018-08-04 16:52:31 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 Vly Swamp L3258923 P 42.6497115 -73.97915479999999 2015-01-02 13:20:00 obsr594026 S21149465 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292701372 2015-01-22 21:49:31 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Latham-126-138 County Rd 160 L3311103 P 42.750848 -73.80042399999999 2015-01-22 13:30:00 obsr657332 S21499786 Traveling P22 EBIRD 7.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288717256 2015-01-03 14:46:19 337 species avibase-694C127A Mute Swan Cygnus olor 3 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk L3260801 P 42.578847 -73.868167 2015-01-03 11:39:00 obsr407723 S21160443 Traveling P22 EBIRD 14.0 6.437 2.0 1 G1093024 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290803253 2017-02-01 09:47:05 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-13 08:47:00 obsr120906 S21328361 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291874687 2018-08-04 16:54:00 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-19 09:35:00 obsr287339 S21414323 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498538 2021-04-01 12:26:53.827486 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr546609 S21385309 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291123700 2021-04-01 12:26:53.827486 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 4 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-15 11:50:00 obsr287339 S21354889 Traveling P22 EBIRD 35.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291348359 2021-04-01 12:26:53.827486 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Mohawk View L2565459 P 42.7787123 -73.7007205 2015-01-16 09:45:00 obsr409143 S21373112 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323531 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 380 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288957047 2021-03-23 17:18:00.959502 622 species avibase-50566E50 Lesser Scaup Aythya affinis 4 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-04 08:18:00 obsr287339 S21181410 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291405496 2018-08-04 16:53:27 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:20:00 obsr120906 S21377671 Stationary P21 EBIRD 8.0 2.0 1 G1112757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291251958 2015-01-16 10:01:57 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 10 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 09:57:00 obsr504578 S21365324 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867277 2015-01-19 08:53:39 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-19 08:34:00 obsr287339 S21413672 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621951 2021-03-26 07:46:52.994574 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291636728 2015-01-18 11:46:09 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-18 11:05:00 obsr407723 S21396210 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290949099 2015-01-14 09:20:29 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-14 09:15:00 obsr551017 S21340570 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369402186 2018-08-04 16:52:58 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 obsr513002 S27183003 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291478290 2015-01-17 19:46:42 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Albany US-NY-001 13.0 Port of Albany, NY L608431 P 42.6267124 -73.7552118 2015-01-17 15:50:00 obsr322656 S21383634 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291617838 2015-01-18 09:32:47 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-18 09:30:00 obsr322656 S21394554 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288626942 2018-08-04 16:52:28 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 25 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-02 09:30:00 obsr409143 S21153279 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553859 2018-08-04 16:53:27 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:20:00 obsr697870 S21389727 Stationary P21 EBIRD 8.0 2.0 1 G1112757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288999569 2021-04-01 12:26:53.827486 616 species avibase-25C94A8F Greater Scaup Aythya marila 3 United States US New York US-NY Albany US-NY-001 13.0 Colonie Center L650311 P 42.7104674 -73.8174391 2015-01-04 11:38:00 obsr407723 S21184866 Incidental P20 EBIRD 2.0 1 G1094999 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094746 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 10 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks Club L3305761 P 42.7791903 -73.7017007 2015-01-19 obsr101869 S21431537 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648401 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-22 15:10:00 obsr287339 S21495474 Traveling P22 EBIRD 63.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470774 2018-08-04 16:53:31 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr504578 S21383073 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508854 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr287339 S21386137 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290830369 2015-03-10 04:47:00 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 50 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Crescent Rd., Colonie Landfill pull off L3289882 H 42.811988 -73.7252569 2015-01-13 10:45:00 obsr120906 S21330760 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146368 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-15 12:15:00 obsr92097 S21356603 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027833 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288479535 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY Albany US-NY-001 13.0 Huck Finn's Warehouse L3257297 P 42.660790000000006 -73.74003 2015-01-02 13:07:00 obsr257692 S21140833 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249275 2021-03-23 17:18:00.959502 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 08:00:00 obsr546609 S21365094 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198503 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292503207 2018-08-04 16:54:50 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-21 15:00:00 obsr657332 S21482323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289000791 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Albany US-NY-001 13.0 Colonie Center L650311 P 42.7104674 -73.8174391 2015-01-04 11:38:00 obsr547303 S21184976 Incidental P20 EBIRD 2.0 1 G1094999 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288509446 2021-04-01 12:26:53.827486 662 species avibase-FB738385 Bufflehead Bucephala albeola 75 United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-02 obsr560402 S21143281 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288672466 2015-01-03 07:17:30 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 9 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-03 07:06:00 obsr287339 S21156572 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112549 2018-08-04 16:52:37 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 7 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River Cohoes side from Waterford L2606895 P 42.78284620000001 -73.7041211 2015-01-03 10:00:00 obsr594026 S21193773 Stationary P21 EBIRD 40.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288629413 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 10 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-02 10:30:00 obsr409143 S21153482 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288469341 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 55 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-02 11:40:00 obsr287339 S21140015 Traveling P22 EBIRD 40.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288966735 2021-03-23 17:18:00.959502 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-04 09:22:00 obsr504578 S21182191 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291347183 2021-04-01 12:26:53.827486 622 species avibase-50566E50 Lesser Scaup Aythya affinis X United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 10:20:00 obsr409143 S21373036 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289276222 2018-08-04 16:52:48 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 60 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-05 11:35:00 obsr287339 S21206228 Traveling P22 EBIRD 25.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534529 2018-08-04 16:53:31 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr551017 S21388184 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369402371 2016-01-28 21:09:56 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Crescent Rd., Colonie Landfill pull off L3289882 H 42.811988 -73.7252569 2015-01-10 obsr513002 S27183020 Historical P62 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292633474 2015-01-22 23:23:10 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-22 15:00:00 obsr657332 S21494501 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290381738 2018-08-04 16:53:07 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 11:02:00 obsr504578 S21295062 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292449467 2015-01-21 11:52:23 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-21 11:20:00 obsr544737 S21479810 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288673368 2016-01-26 10:16:19 592 species avibase-3072CC16 Redhead Aythya americana 22 United States US New York US-NY Albany US-NY-001 13.0 The Black Bridge, Green Island L4159773 H 42.7601592 -73.68771269999999 2015-01-03 07:20:00 obsr287339 S21156653 Traveling P22 EBIRD 14.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288186857 2015-01-01 13:49:35 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 4 United States US New York US-NY Albany US-NY-001 13.0 Six-Mile Waterworks Park L585078 H 42.6966304 -73.831172 2015-01-01 12:15:00 obsr560402 S21116371 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291863388 2015-01-19 08:21:10 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-19 07:49:00 obsr287339 S21413348 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288683818 2018-08-04 16:52:36 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-03 08:43:00 obsr287339 S21157449 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694075 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-12 08:40:00 obsr546609 S21320247 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694938 2018-08-04 16:53:13 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-12 10:15:00 obsr546609 S21320325 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679165 2018-08-04 16:52:35 20829 species avibase-B9B272F4 Common Raven Corvus corax 80 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-03 08:25:00 obsr287339 S21157063 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289954821 2018-08-04 16:52:55 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-08 15:00:00 obsr657332 S21260148 Traveling P22 EBIRD 60.0 14.484000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740165 2021-04-01 12:26:53.827486 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata N X United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-17 obsr560402 S23337227 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292810784 2021-04-01 12:26:53.827486 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 9 United States US New York US-NY Albany US-NY-001 13.0 Hudson River shoreline at USS Slater site L3245378 P 42.6421355 -73.74999229999999 2015-01-23 11:50:00 obsr594026 S21508425 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290752710 2021-04-01 12:26:53.827486 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 156 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-12 13:50:00 obsr657332 S21324813 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293548779 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 40 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Albany - 42.6813x-73.8449 - Jan 26, 2015, 7:59 AM L3321957 P 42.681277 -73.844876 2015-01-26 07:59:00 obsr125126 S21566850 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290499193 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 51 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 14:55:00 obsr657332 S21304572 Traveling P22 EBIRD 55.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292631238 2021-04-01 12:26:53.827486 8773 species avibase-7AA076EF Barred Owl Strix varia N 100 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-29 Cataract St L3306369 P 42.784089 -73.707027 2015-01-22 14:40:00 obsr657332 S21494330 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292754843 2021-11-14 08:08:43.2446 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 3 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-23 07:55:00 obsr546609 S21503888 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291071412 2021-04-01 12:26:53.827486 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus N 86 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-14 15:05:00 obsr657332 S21350549 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002094 2021-04-01 12:26:53.827486 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 15 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr697870 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288221323 2021-04-01 12:26:53.827486 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus N X United States US New York US-NY Albany US-NY-001 13.0 Rt. 85, Slingerlands L1466118 P 42.6361785 -73.85645809999998 2015-01-01 11:45:00 obsr120906 S21119388 Incidental P20 EBIRD 2.0 1 G1094762 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288469424 2021-04-01 12:26:53.827486 662 species avibase-FB738385 Bufflehead Bucephala albeola N 2 United States US New York US-NY Albany US-NY-001 13.0 Huck Finn's Warehouse L3257297 P 42.660790000000006 -73.74003 2015-01-02 12:35:00 obsr257692 S21140030 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288770347 2021-04-01 12:26:53.827486 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 20 United States US New York US-NY Albany US-NY-001 13.0 Shaker Rd and I-87 L3256388 P 42.727848 -73.7950373 2015-01-03 12:55:00 obsr452367 S21164633 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508850 2021-04-01 12:26:53.827486 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 9 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr287339 S21386137 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288286367 2021-04-01 12:26:53.827486 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 4 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-01-01 12:20:00 obsr546609 S21125084 Traveling P22 EBIRD 57.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557994 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 5 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271539 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis N 6 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr120906 S21205860 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293911458 2021-04-01 12:26:53.827486 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus N 15 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr120906 S21595535 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323516 2021-04-01 12:26:53.827486 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 170 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288509450 2021-04-01 12:26:53.827486 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca N 20 United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-02 obsr560402 S21143281 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094739 2021-04-01 12:26:53.827486 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 11 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Elks Club L3305761 P 42.7791903 -73.7017007 2015-01-19 obsr101869 S21431537 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694073 2021-04-01 12:26:53.827486 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 80 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-12 08:40:00 obsr546609 S21320247 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289762594 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 7 United States US New York US-NY Albany US-NY-001 13.0 I 787 exit ramp to Clinton Ave L3275502 P 42.6540199 -73.7467897 2015-01-07 11:50:00 obsr594026 S21244380 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963922 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N X United States US New York US-NY Albany US-NY-001 13.0 Rt. 85, Slingerlands L1466118 P 42.6361785 -73.85645809999998 2015-01-01 11:45:00 obsr697870 S21181946 Incidental P20 EBIRD 2.0 1 G1094762 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027834 2021-04-01 12:26:53.827486 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 15 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293711478 2021-04-01 12:26:53.827486 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 20 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-28 13:40:00 obsr657332 S21579405 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291348363 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Mohawk View L2565459 P 42.7787123 -73.7007205 2015-01-16 09:45:00 obsr409143 S21373112 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292562338 2021-04-01 12:26:53.827486 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 80 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-29 Cataract St L3306369 P 42.784089 -73.707027 2015-01-21 15:30:00 obsr657332 S21482662 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407742 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 2 United States US New York US-NY Albany US-NY-001 13.0 Ravena, NY L2958254 P 42.4717804 -73.81263259999999 2015-01-01 12:00:00 obsr322656 S21134499 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803294 2021-04-01 12:26:53.827486 681 species avibase-407E2CA8 Common Merganser Mergus merganser N X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288629417 2021-04-01 12:26:53.827486 30494 species avibase-240E3390 House Sparrow Passer domesticus N X United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-02 10:30:00 obsr409143 S21153482 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286210 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-10 15:30:00 obsr322656 S21281606 Stationary P21 EBIRD 80.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291223018 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 50 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-15 16:05:00 obsr657332 S21363073 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553648 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:00:00 obsr409143 S21389711 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498534 2021-04-01 12:26:53.827486 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 9 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr546609 S21385309 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872621 2021-04-01 12:26:53.827486 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 10 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408685 2021-04-01 12:26:53.827486 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 10 United States US New York US-NY Albany US-NY-001 13.0 Shaker Rd and I-87 L3256388 P 42.727848 -73.7950373 2015-01-01 08:30:00 obsr452367 S21134609 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289000792 2021-04-01 12:26:53.827486 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 30 United States US New York US-NY Albany US-NY-001 13.0 Colonie Center L650311 P 42.7104674 -73.8174391 2015-01-04 11:38:00 obsr547303 S21184976 Incidental P20 EBIRD 2.0 1 G1094999 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290144583 2021-04-01 12:26:53.827486 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 3 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-10 09:00:00 obsr7511 S21275375 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288969099 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 3 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-04 08:30:00 obsr7511 S21182411 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293259343 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 50 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-25 15:40:00 obsr657332 S21543446 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292116181 2021-04-01 12:26:53.827486 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 8 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-20 11:50:00 obsr287339 S21433340 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292144389 2021-04-01 12:26:53.827486 30494 species avibase-240E3390 House Sparrow Passer domesticus N 80 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-29 Cataract St L3306369 P 42.784089 -73.707027 2015-01-20 15:10:00 obsr657332 S21435562 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288469342 2021-04-01 12:26:53.827486 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 50 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-02 11:40:00 obsr287339 S21140015 Traveling P22 EBIRD 40.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291123701 2021-04-01 12:26:53.827486 20829 species avibase-B9B272F4 Common Raven Corvus corax N 35 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-15 11:50:00 obsr287339 S21354889 Traveling P22 EBIRD 35.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294007664 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos N 106 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-30 14:45:00 obsr657332 S21603025 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288538418 2021-04-01 12:26:53.827486 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 6 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr697870 S21145897 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288769401 2021-04-01 12:26:53.827486 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus N 20 United States US New York US-NY Albany US-NY-001 13.0 Broadway and Columbia L2898811 P 42.6520946 -73.7492895 2015-01-02 12:40:00 obsr452367 S21164535 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291535588 2021-04-01 12:26:53.827486 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris N X United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 08:40:00 obsr409143 S21388262 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291949114 2021-04-01 12:26:53.827486 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 4 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-19 10:49:00 obsr546609 S21420041 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292058229 2021-04-01 12:26:53.827486 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea N 80 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-19 11:55:00 obsr657332 S21428677 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963928 2021-04-01 12:26:53.827486 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 10 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292959582 2021-04-01 12:26:53.827486 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N X United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.574738700000005 -74.15542020000001 2015-01-24 09:15:00 obsr409143 S21520100 Traveling P22 EBIRD 80.0 19.312 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291347181 2021-04-01 12:26:53.827486 6339 species avibase-8535345B Herring Gull Larus argentatus N X United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-16 10:20:00 obsr409143 S21373036 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288999570 2021-04-01 12:26:53.827486 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 30 United States US New York US-NY Albany US-NY-001 13.0 Colonie Center L650311 P 42.7104674 -73.8174391 2015-01-04 11:38:00 obsr407723 S21184866 Incidental P20 EBIRD 2.0 1 G1094999 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288717655 2021-03-26 07:46:52.994574 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Feura Bush L3260809 P 42.589187 -73.869008 2015-01-03 11:25:00 obsr407723 S21160475 Traveling P22 EBIRD 10.0 9.656 2.0 1 G1093025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299854 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764434 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Feura Bush L3260809 P 42.589187 -73.869008 2015-01-03 11:25:00 obsr547303 S21164122 Traveling P22 EBIRD 10.0 9.656 2.0 1 G1093025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291456228 2015-01-17 14:21:38 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 John Boyd Thacher SP--North L2588143 H 42.6799431 -74.042839 2015-01-16 10:00:00 obsr258063 S21381921 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290373898 2018-08-04 16:53:06 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 10:20:00 obsr120906 S21294354 Stationary P21 EBIRD 12.0 3.0 1 G1108432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290870331 2018-08-04 16:53:06 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 10:20:00 obsr697870 S21334381 Stationary P21 EBIRD 12.0 3.0 1 G1108432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS353076159 2015-11-13 03:00:16 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-18 08:00:00 obsr726592 S25810610 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867274 2015-01-19 08:53:39 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-19 08:34:00 obsr287339 S21413672 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290882195 2015-01-13 18:20:49 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 3 United States US New York US-NY Albany US-NY-001 28.0 Westerlo L1456980 P 42.5321961 -74.03774200000001 2015-01-06 16:30:00 obsr6315 S21335378 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289781743 2021-03-24 20:53:39.352228 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-07 13:00:00 obsr547303 S21245788 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291099840 2021-03-23 17:18:00.959502 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-15 08:51:00 obsr551017 S21352842 Traveling P22 EBIRD 9.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292828330 2021-04-01 12:26:53.827486 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-01-01 12:20:00 obsr546609 S21125084 Traveling P22 EBIRD 57.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288509445 2021-04-01 12:26:53.827486 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-02 obsr560402 S21143281 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984444 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293832731 2021-03-26 07:46:52.994574 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:49:00 obsr551017 S21588434 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288629420 2021-04-01 12:26:53.827486 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-02 10:30:00 obsr409143 S21153482 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291949105 2021-04-01 12:26:53.827486 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio 1 Unknown Sex, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-19 10:49:00 obsr546609 S21420041 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323511 2021-04-01 12:26:53.827486 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291957768 2017-01-11 21:22:56 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 13:45:00 obsr594026 S21420792 Traveling P22 EBIRD 65.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290323069 2015-01-10 23:06:24 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 28.0 cole hill rd L3283699 P 42.6026624 -74.094522 2015-01-07 09:00:00 obsr504578 S21290379 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290136756 2015-01-10 08:28:55 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-09 obsr620943 S21274627 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963936 2021-04-01 12:26:53.827486 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872629 2021-04-01 12:26:53.827486 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288247581 2015-01-01 16:55:14 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-01 14:42:00 obsr171042 S21121569 Traveling P22 EBIRD 132.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291028527 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-14 11:45:00 obsr594026 S21346986 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290870337 2018-08-04 16:53:06 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 10:20:00 obsr697870 S21334381 Stationary P21 EBIRD 12.0 3.0 1 G1108432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293558006 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290369686 2021-03-23 17:18:00.959502 681 species avibase-407E2CA8 Common Merganser Mergus merganser 8 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-11 09:46:00 obsr551017 S21294028 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292978846 2021-03-26 07:46:52.994574 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-24 08:56:00 obsr125126 S21521406 Stationary P21 EBIRD 519.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869066 2021-03-26 07:46:52.994574 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 14:52:00 obsr287339 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288683825 2018-08-04 16:52:36 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-03 08:43:00 obsr287339 S21157449 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271535 2021-04-01 12:26:53.827486 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr120906 S21205860 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290373904 2018-08-04 16:53:06 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 10:20:00 obsr120906 S21294354 Stationary P21 EBIRD 12.0 3.0 1 G1108432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693870 2021-03-24 20:53:39.352228 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294014167 2018-08-04 16:55:27 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-30 15:00:00 obsr657332 S21603563 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323526 2021-04-01 12:26:53.827486 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621467 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-10 08:00:00 obsr639188 S21731716 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293822280 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:49:00 obsr551017 S21588434 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290499195 2021-04-01 12:26:53.827486 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 14:55:00 obsr657332 S21304572 Traveling P22 EBIRD 55.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288538414 2021-04-01 12:26:53.827486 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr697870 S21145897 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291223908 2018-08-04 16:53:22 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-15 16:27:00 obsr657332 S21363127 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289989530 2015-01-09 10:51:44 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-08 07:45:00 obsr644825 S21263052 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089281 2017-04-05 16:49:11 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290142395 2021-03-24 20:53:39.352228 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-09 10:00:00 obsr178309 S21275169 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198513 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299866 2021-03-26 07:46:52.994574 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310847 2021-03-23 17:18:00.959502 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-16 08:05:00 obsr644825 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587695 2021-03-26 07:46:52.994574 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-27 08:03:00 obsr125126 S21569971 Stationary P21 EBIRD 544.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291076449 2021-04-01 12:26:53.827486 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-14 15:05:00 obsr657332 S21350549 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289576838 2018-08-04 16:52:28 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-02 09:30:00 obsr409143 S21153279 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293871547 2017-08-16 16:28:24 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-29 14:28:00 obsr171042 S21592605 Traveling P22 EBIRD 96.0 5.792999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288694453 2015-01-18 13:21:44 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 08:45:00 obsr407723 S21158349 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290957506 2018-08-04 16:53:18 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-14 10:30:00 obsr551017 S21341287 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289781752 2021-03-24 20:53:39.352228 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-07 13:00:00 obsr547303 S21245788 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086439 2021-03-26 07:46:52.994574 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 08:30:00 obsr287339 S21529887 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290304556 2018-08-04 16:53:03 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:35:00 obsr657332 S21288891 Traveling P22 EBIRD 45.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613852 2021-03-23 17:18:00.959502 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-18 08:42:00 obsr407723 S21394179 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293386936 2018-08-04 16:55:19 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-26 13:30:00 obsr657332 S21553414 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293950123 2015-01-30 05:31:21 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-29 15:55:00 obsr287339 S21598479 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294075651 2021-03-24 20:53:39.352228 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-30 obsr620943 S21608478 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289954826 2018-08-04 16:52:55 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-08 15:00:00 obsr657332 S21260148 Traveling P22 EBIRD 60.0 14.484000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753594 2021-03-26 07:46:52.994574 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-03 12:39:00 obsr287339 S21163284 Traveling P22 EBIRD 83.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290085407 2018-08-04 16:52:58 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-09 15:50:00 obsr657332 S21270727 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292148449 2018-08-04 16:54:47 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-20 15:30:00 obsr657332 S21435847 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288469346 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-02 11:40:00 obsr287339 S21140015 Traveling P22 EBIRD 40.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204580 2015-01-25 17:59:47 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 07:48:00 obsr504578 S21539320 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293558002 2021-04-01 12:26:53.827486 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407537 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621469 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-10 08:00:00 obsr639188 S21731716 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961229 2021-03-26 07:46:52.994574 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293871543 2017-08-16 16:28:24 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-29 14:28:00 obsr171042 S21592605 Traveling P22 EBIRD 96.0 5.792999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172711 2021-11-14 08:08:43.2446 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-31 08:30:00 obsr546609 S21616032 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408598 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289099381 2021-03-24 20:53:39.352228 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-04 09:00:00 obsr178309 S21192730 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679896 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-03 08:15:00 obsr7511 S21157120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293040340 2015-05-06 20:08:00 8829 species avibase-8F123A11 Short-eared Owl Asio flammeus 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-24 13:00:00 obsr110666 S21525985 Stationary P21 EBIRD 60.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291017534 2021-03-26 07:46:52.994574 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-14 14:54:00 obsr544737 S21346058 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277952 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-01 12:40:00 obsr594026 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299863 2021-03-26 07:46:52.994574 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 3 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963844 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027840 2021-04-01 12:26:53.827486 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984449 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289989528 2015-01-09 10:51:44 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-08 07:45:00 obsr644825 S21263052 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291416888 2021-03-24 20:53:39.352228 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-15 08:00:00 obsr7511 S21378609 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290142403 2021-03-24 20:53:39.352228 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 2 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-09 10:00:00 obsr178309 S21275169 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089276 2017-04-05 16:49:11 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289973514 2015-01-09 07:17:28 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-08 obsr620943 S21261580 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288678887 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 08:17:00 obsr407723 S21157038 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271568 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480122 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288254813 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-01 09:00:00 obsr178309 S21122167 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293911457 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr120906 S21595535 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291349081 2021-03-24 20:53:39.352228 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 3 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-16 08:00:00 obsr409143 S21373167 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002093 2021-04-01 12:26:53.827486 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr697870 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753587 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-03 12:39:00 obsr287339 S21163284 Traveling P22 EBIRD 83.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294164101 2021-03-24 20:53:39.352228 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Albany US-NY-001 13.0 Vagele Lane, Glenmont L2868631 P 42.597550700000006 -73.78205940000001 2015-01-31 obsr551017 S21615462 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292960396 2015-01-24 16:38:50 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 5 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-24 16:00:00 obsr409143 S21520157 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289576796 2015-01-06 21:05:58 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 3 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-06 08:00:00 obsr409143 S21230120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292598014 2021-03-26 07:46:52.994574 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-22 08:29:00 obsr125126 S21491678 Stationary P21 EBIRD 144.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291540063 2021-03-24 20:53:39.352228 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-17 12:15:00 obsr409143 S21388629 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288802800 2021-03-24 20:53:39.352228 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 6 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-03 09:30:00 obsr178309 S21167379 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059204 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537236 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220318 2021-03-26 07:46:52.994574 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288957050 2021-03-23 17:18:00.959502 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-04 08:18:00 obsr287339 S21181410 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290144581 2021-04-01 12:26:53.827486 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-10 09:00:00 obsr7511 S21275375 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293161485 2021-03-23 17:18:00.959502 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-25 14:12:00 obsr287339 S21535923 Traveling P22 EBIRD 68.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288801619 2021-03-24 20:53:39.352228 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-02 09:30:00 obsr178309 S21167276 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289579823 2015-01-06 21:21:34 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Albany US-NY-001 13.0 Roesselville L3272127 P 42.6943496 -73.7982948 2015-01-06 10:00:00 obsr70633 S21230302 Stationary P21 EBIRD 150.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198492 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289976521 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 08:00:00 obsr491696 S21261827 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288631220 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-01 08:00:00 obsr409143 S21153627 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292978842 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-24 08:56:00 obsr125126 S21521406 Stationary P21 EBIRD 519.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286212 2021-04-01 12:26:53.827486 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-10 15:30:00 obsr322656 S21281606 Stationary P21 EBIRD 80.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291241206 2015-01-16 07:23:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-15 obsr620943 S21364336 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183912 2021-03-26 07:46:52.994574 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693866 2021-03-24 20:53:39.352228 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288538413 2021-04-01 12:26:53.827486 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr697870 S21145897 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292118946 2021-03-24 20:53:39.352228 662 species avibase-FB738385 Bufflehead Bucephala albeola 9 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Kings Highway Barrens L2584384 H 42.7369323 -73.886095 2015-01-20 09:00:00 obsr312669 S21433587 Traveling P22 EBIRD 90.0 1.931 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271534 2021-04-01 12:26:53.827486 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr120906 S21205860 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621964 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290849900 2021-03-24 20:53:39.352228 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Albany US-NY-001 13.0 9 Oakbrook Manor, Ravena L2833548 P 42.4649217 -73.8129598 2015-01-13 11:05:00 obsr395936 S21332460 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295622732 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-11 08:00:00 obsr639188 S21731845 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872626 2021-04-01 12:26:53.827486 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712172 2019-10-18 07:40:54 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Albany US-NY-001 28.0 Huyck Preserve--Lake Myosotis L304714 H 42.5220704 -74.14839930000001 2015-01-03 08:30:00 obsr708267 S21240370 Traveling P22 EBIRD 170.0 7.081 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288275655 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-01 08:45:00 obsr594026 S21124074 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289022138 2015-01-04 13:16:46 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.76281290000001 2015-01-04 11:56:00 obsr287339 S21186656 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288372014 2015-05-09 13:02:45 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:15:00 obsr322656 S21132019 Traveling P22 EBIRD 60.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291896927 2016-03-06 22:55:23 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 6 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-19 10:40:00 obsr287339 S21415921 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963933 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209722 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-31 09:15:00 obsr409143 S21618822 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294075658 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-30 obsr620943 S21608478 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288247589 2015-01-01 16:55:14 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-01 14:42:00 obsr171042 S21121569 Traveling P22 EBIRD 132.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294105859 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:11:00 obsr504578 S21610513 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803305 2021-04-01 12:26:53.827486 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291924869 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 10 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-19 11:32:00 obsr171042 S21417992 Traveling P22 EBIRD 136.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284499 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281346 2021-03-24 20:53:39.352228 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 09:00:00 obsr491696 S21445865 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587690 2021-03-26 07:46:52.994574 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-27 08:03:00 obsr125126 S21569971 Stationary P21 EBIRD 544.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869061 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 14:52:00 obsr287339 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290136757 2015-01-10 08:28:55 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-09 obsr620943 S21274627 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289324558 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-04 09:49:00 obsr125126 S21210282 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290941185 2015-01-14 07:55:12 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-13 obsr620943 S21340030 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773091 2021-03-23 17:18:00.959502 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287716 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310843 2021-03-23 17:18:00.959502 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-16 08:05:00 obsr644825 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935090 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292086258 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Albany US-NY-001 13.0 Glenmont New York, US L3305646 P 42.5932799 -73.8080406 2015-01-20 07:30:00 obsr602177 S21430796 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323489 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293589085 2021-03-24 20:53:39.352228 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-27 09:50:00 obsr594026 S21570080 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293589086 2021-03-24 20:53:39.352228 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-27 09:50:00 obsr594026 S21570080 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625862 2018-08-04 16:53:55 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Hollyhock Hollow Sanctuary L1146193 H 42.540149 -73.8703108 2015-01-18 09:35:00 obsr407723 S21395264 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288254811 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-01 09:00:00 obsr178309 S21122167 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281348 2021-03-24 20:53:39.352228 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 09:00:00 obsr491696 S21445865 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288538417 2021-04-01 12:26:53.827486 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr697870 S21145897 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764435 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Feura Bush L3260809 P 42.589187 -73.869008 2015-01-03 11:25:00 obsr547303 S21164122 Traveling P22 EBIRD 10.0 9.656 2.0 1 G1093025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905001 2021-03-26 07:46:52.994574 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291241203 2015-01-16 07:23:56 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-15 obsr620943 S21364336 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277941 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-01 12:40:00 obsr594026 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291401462 2015-01-17 20:56:06 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-17 08:46:00 obsr120906 S21377332 Stationary P21 EBIRD 6.0 2.0 1 G1112759 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288580434 2018-08-04 16:52:31 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Vly Swamp L3258923 P 42.6497115 -73.97915479999999 2015-01-02 13:20:00 obsr594026 S21149465 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209727 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-31 09:15:00 obsr409143 S21618822 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963845 2021-03-26 07:46:52.994574 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621958 2021-03-26 07:46:52.994574 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310844 2021-03-23 17:18:00.959502 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-16 08:05:00 obsr644825 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289973511 2015-01-09 07:17:28 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-08 obsr620943 S21261580 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291540064 2021-03-24 20:53:39.352228 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-17 12:15:00 obsr409143 S21388629 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271571 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323507 2021-04-01 12:26:53.827486 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio 11 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407538 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292959576 2021-04-01 12:26:53.827486 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.574738700000005 -74.15542020000001 2015-01-24 09:15:00 obsr409143 S21520100 Traveling P22 EBIRD 80.0 19.312 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293911450 2021-04-01 12:26:53.827486 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr120906 S21595535 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289781750 2021-03-24 20:53:39.352228 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-07 13:00:00 obsr547303 S21245788 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294075646 2021-03-24 20:53:39.352228 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-30 obsr620943 S21608478 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292960397 2015-01-24 16:38:50 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-24 16:00:00 obsr409143 S21520157 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059206 2021-03-26 07:46:52.994574 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr491696 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291028529 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-14 11:45:00 obsr594026 S21346986 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289099386 2021-03-24 20:53:39.352228 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-04 09:00:00 obsr178309 S21192730 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551651 2021-03-24 20:53:39.352228 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-02 08:30:00 obsr644825 S21147085 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292118947 2021-03-24 20:53:39.352228 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Kings Highway Barrens L2584384 H 42.7369323 -73.886095 2015-01-20 09:00:00 obsr312669 S21433587 Traveling P22 EBIRD 90.0 1.931 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291456231 2015-01-17 14:21:38 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 3 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 John Boyd Thacher SP--North L2588143 H 42.6799431 -74.042839 2015-01-16 10:00:00 obsr258063 S21381921 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289576790 2015-01-06 21:05:58 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-06 08:00:00 obsr409143 S21230120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002086 2021-04-01 12:26:53.827486 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr697870 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417854 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-12 08:00:00 obsr7511 S21378694 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288275648 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-01 08:45:00 obsr594026 S21124074 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291416887 2021-03-24 20:53:39.352228 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-15 08:00:00 obsr7511 S21378609 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293161477 2021-03-23 17:18:00.959502 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-25 14:12:00 obsr287339 S21535923 Traveling P22 EBIRD 68.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288802809 2021-03-24 20:53:39.352228 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-03 09:30:00 obsr178309 S21167379 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289989529 2015-01-09 10:51:44 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-08 07:45:00 obsr644825 S21263052 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089277 2017-04-05 16:49:11 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288372015 2015-05-09 13:02:45 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:15:00 obsr322656 S21132019 Traveling P22 EBIRD 60.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271538 2021-04-01 12:26:53.827486 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-02 13:00:00 obsr120906 S21205860 Stationary P21 EBIRD 60.0 1.0 1 G1097273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289324559 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-04 09:49:00 obsr125126 S21210282 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679899 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-01-03 08:15:00 obsr7511 S21157120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290136750 2015-01-10 08:28:55 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-09 obsr620943 S21274627 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289976523 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-09 08:00:00 obsr491696 S21261827 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872627 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295622738 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-11 08:00:00 obsr639188 S21731845 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288552247 2015-01-02 17:31:20 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 15:50:00 obsr644825 S21147142 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288676012 2015-01-18 13:21:44 11528 species avibase-F3DA111C Merlin Falco columbarius 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 07:24:00 obsr407723 S21156879 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292590931 2021-03-26 07:46:52.994574 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-01-22 08:50:00 obsr120906 S21491087 Traveling P22 EBIRD 64.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537239 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961237 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293822277 2021-03-26 07:46:52.994574 7732 species avibase-A091D50A Northern Harrier Circus hudsonius X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:49:00 obsr551017 S21588434 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480123 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553889 2015-01-17 20:56:06 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-17 08:46:00 obsr697870 S21389731 Stationary P21 EBIRD 6.0 2.0 1 G1112759 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292978844 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-24 08:56:00 obsr125126 S21521406 Stationary P21 EBIRD 519.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295183430 2021-03-26 07:46:52.994574 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-31 09:01:00 obsr125126 S21696603 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292598016 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-22 08:29:00 obsr125126 S21491678 Stationary P21 EBIRD 144.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693867 2021-03-24 20:53:39.352228 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288991918 2015-01-04 11:34:53 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-04 11:07:00 obsr504578 S21184271 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291107157 2018-08-04 16:53:20 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-15 09:50:00 obsr120906 S21353549 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587692 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-27 08:03:00 obsr125126 S21569971 Stationary P21 EBIRD 544.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288673372 2016-01-26 10:16:19 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 The Black Bridge, Green Island L4159773 H 42.7601592 -73.68771269999999 2015-01-03 07:20:00 obsr287339 S21156653 Traveling P22 EBIRD 14.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648391 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-22 15:10:00 obsr287339 S21495474 Traveling P22 EBIRD 63.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963934 2021-04-01 12:26:53.827486 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288631213 2021-03-26 07:46:52.994574 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-01 08:00:00 obsr409143 S21153627 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291017536 2021-03-26 07:46:52.994574 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-14 14:54:00 obsr544737 S21346058 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293040335 2015-05-06 20:08:00 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-24 13:00:00 obsr110666 S21525985 Stationary P21 EBIRD 60.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290941187 2015-01-14 07:55:12 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-13 obsr620943 S21340030 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288801610 2021-03-24 20:53:39.352228 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.85906700000001 2015-01-02 09:30:00 obsr178309 S21167276 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220319 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292616527 2021-03-26 07:46:52.994574 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-22 11:30:00 obsr594026 S21493317 Stationary P21 EBIRD 10.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289792410 2015-01-07 23:19:09 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-07 08:25:00 obsr644825 S21246849 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291349083 2021-03-24 20:53:39.352228 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-16 08:00:00 obsr409143 S21373167 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293558003 2021-04-01 12:26:53.827486 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-27 13:19:00 obsr120906 S21567503 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935085 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290849901 2021-03-24 20:53:39.352228 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 9 Oakbrook Manor, Ravena L2833548 P 42.4649217 -73.8129598 2015-01-13 11:05:00 obsr395936 S21332460 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712174 2019-10-18 07:40:54 505 species avibase-C732CB10 American Black Duck Anas rubripes 8 United States US New York US-NY Albany US-NY-001 28.0 Huyck Preserve--Lake Myosotis L304714 H 42.5220704 -74.14839930000001 2015-01-03 08:30:00 obsr708267 S21240370 Traveling P22 EBIRD 170.0 7.081 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291896932 2016-03-06 22:55:23 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-19 10:40:00 obsr287339 S21415921 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294164095 2021-03-24 20:53:39.352228 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Albany US-NY-001 13.0 Vagele Lane, Glenmont L2868631 P 42.597550700000006 -73.78205940000001 2015-01-31 obsr551017 S21615462 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288717656 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Feura Bush L3260809 P 42.589187 -73.869008 2015-01-03 11:25:00 obsr407723 S21160475 Traveling P22 EBIRD 10.0 9.656 2.0 1 G1093025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753588 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-03 12:39:00 obsr287339 S21163284 Traveling P22 EBIRD 83.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869063 2021-03-26 07:46:52.994574 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 14:52:00 obsr287339 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284485 2021-03-26 07:46:52.994574 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287702 2021-03-26 07:46:52.994574 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289875008 2021-03-26 07:46:52.994574 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-08 12:00:00 obsr92097 S21253779 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299864 2021-03-26 07:46:52.994574 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 5 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984450 2021-03-26 07:46:52.994574 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773082 2021-03-23 17:18:00.959502 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr546609 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086436 2021-03-26 07:46:52.994574 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 08:30:00 obsr287339 S21529887 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291924870 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-19 11:32:00 obsr171042 S21417992 Traveling P22 EBIRD 136.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293871544 2017-08-16 16:28:24 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-29 14:28:00 obsr171042 S21592605 Traveling P22 EBIRD 96.0 5.792999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183913 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289022139 2015-01-04 13:16:46 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.76281290000001 2015-01-04 11:56:00 obsr287339 S21186656 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027841 2021-04-01 12:26:53.827486 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-09 13:55:00 obsr287339 S21266131 Traveling P22 EBIRD 75.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291099844 2021-03-23 17:18:00.959502 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 3 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-15 08:51:00 obsr551017 S21352842 Traveling P22 EBIRD 9.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290369687 2021-03-23 17:18:00.959502 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-11 09:46:00 obsr551017 S21294028 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289973519 2015-01-09 07:17:28 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-08 obsr620943 S21261580 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869067 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 14:52:00 obsr287339 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289792412 2015-01-07 23:19:09 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-07 08:25:00 obsr644825 S21246849 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288693871 2021-03-24 20:53:39.352228 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-03 09:00:00 obsr547303 S21158298 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291349084 2021-03-24 20:53:39.352228 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-16 08:00:00 obsr409143 S21373167 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294105862 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:11:00 obsr504578 S21610513 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299867 2021-03-26 07:46:52.994574 26109 species avibase-BAC33609 Brown Creeper Certhia americana 2 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr171042 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480129 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 14 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 13:56:00 obsr544737 S21383818 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288247582 2015-01-01 16:55:14 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-01 14:42:00 obsr171042 S21121569 Traveling P22 EBIRD 132.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295622727 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-11 08:00:00 obsr639188 S21731845 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291102560 2015-01-15 09:39:41 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Albany US-NY-001 28.0 Holt Preserve L392283 H 42.5443701 -73.932023 2015-01-15 09:29:00 obsr551017 S21353108 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290136747 2015-01-10 08:28:55 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-09 obsr620943 S21274627 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293822281 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-29 09:49:00 obsr551017 S21588434 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295183433 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-31 09:01:00 obsr125126 S21696603 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089282 2017-04-05 16:49:11 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-20 07:11:00 obsr504578 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289621965 2021-03-26 07:46:52.994574 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 11 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-06 10:50:00 obsr594026 S21233771 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803303 2021-04-01 12:26:53.827486 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-01 obsr540914 S26514086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292978847 2021-03-26 07:46:52.994574 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 4 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-24 08:56:00 obsr125126 S21521406 Stationary P21 EBIRD 519.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407543 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr322656 S21134478 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209731 2021-03-26 07:46:52.994574 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 4 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-31 09:15:00 obsr409143 S21618822 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753595 2021-03-26 07:46:52.994574 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 8 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-03 12:39:00 obsr287339 S21163284 Traveling P22 EBIRD 83.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293950126 2015-01-30 05:31:21 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Albany US-NY-001 13.0 Meads Ln., Delmar L2595891 H 42.5989225 -73.86386970000001 2015-01-29 15:55:00 obsr287339 S21598479 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408941 2021-03-26 07:46:52.994574 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289781753 2021-03-24 20:53:39.352228 26109 species avibase-BAC33609 Brown Creeper Certhia americana 4 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.602920000000005 -73.81624000000001 2015-01-07 13:00:00 obsr547303 S21245788 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284479 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 19 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289324561 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-04 09:49:00 obsr125126 S21210282 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537233 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr697870 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086440 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 08:30:00 obsr287339 S21529887 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935089 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 11 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-08 11:10:00 obsr594026 S21258646 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587696 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-27 08:03:00 obsr125126 S21569971 Stationary P21 EBIRD 544.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648394 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-22 15:10:00 obsr287339 S21495474 Traveling P22 EBIRD 63.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727247 2021-03-26 07:46:52.994574 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 4 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-01-07 15:59:00 obsr125126 S21241585 Stationary P21 EBIRD 61.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220325 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963851 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290941183 2015-01-14 07:55:12 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-13 obsr620943 S21340030 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621472 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-10 08:00:00 obsr639188 S21731716 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288273343 2021-03-26 07:46:52.994574 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:30:00 obsr594026 S21123860 Traveling P22 EBIRD 70.0 1.207 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287696 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 19 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr287339 S21125205 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291540058 2021-03-24 20:53:39.352228 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-17 12:15:00 obsr409143 S21388629 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289989531 2015-01-09 10:51:44 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-08 07:45:00 obsr644825 S21263052 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204581 2015-01-25 17:59:47 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-25 07:48:00 obsr504578 S21539320 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292086253 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Glenmont New York, US L3305646 P 42.5932799 -73.8080406 2015-01-20 07:30:00 obsr602177 S21430796 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288676015 2015-01-18 13:21:44 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-03 07:24:00 obsr407723 S21156879 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310848 2021-03-23 17:18:00.959502 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.87294709999999 2015-01-16 08:05:00 obsr644825 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290198504 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 50 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.80767370000001 2015-01-10 10:40:00 obsr546609 S21279932 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288984454 2021-03-26 07:46:52.994574 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-04 09:06:00 obsr287339 S21183545 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294075652 2021-03-24 20:53:39.352228 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-30 obsr620943 S21608478 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323504 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos 11 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293340136 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-26 08:56:00 obsr504578 S21549445 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291408488 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 8 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-17 09:00:00 obsr287339 S21377904 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294164108 2021-03-24 20:53:39.352228 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 Vagele Lane, Glenmont L2868631 P 42.597550700000006 -73.78205940000001 2015-01-31 obsr551017 S21615462 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172713 2021-11-14 08:08:43.2446 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-01-31 08:30:00 obsr546609 S21616032 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288552249 2015-01-02 17:31:20 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 15:50:00 obsr644825 S21147142 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293589087 2021-03-24 20:53:39.352228 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 8 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-27 09:50:00 obsr594026 S21570080 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291017540 2021-03-26 07:46:52.994574 447 species avibase-C235A4D7 Gadwall Mareca strepera 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-14 14:54:00 obsr544737 S21346058 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961235 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-19 10:20:00 obsr594026 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288275656 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.608610600000006 -73.89041529999999 2015-01-01 08:45:00 obsr594026 S21124074 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277939 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.59449910000001 -73.81483730000001 2015-01-01 12:40:00 obsr594026 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183916 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-10 12:10:00 obsr287339 S21278792 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289875009 2021-03-26 07:46:52.994574 352 spuh avibase-F9EC83D6 swan sp. Cygnus sp. 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-08 12:00:00 obsr92097 S21253779 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289576792 2015-01-06 21:05:58 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-01-06 08:00:00 obsr409143 S21230120 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291896930 2016-03-06 22:55:23 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-19 10:40:00 obsr287339 S21415921 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613853 2021-03-23 17:18:00.959502 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-18 08:42:00 obsr407723 S21394179 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286208 2021-04-01 12:26:53.827486 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi X United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-10 15:30:00 obsr322656 S21281606 Stationary P21 EBIRD 80.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291241199 2015-01-16 07:23:56 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-15 obsr620943 S21364336 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289271565 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-02 09:00:00 obsr120906 S21205863 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905006 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-19 08:13:00 obsr407723 S21416524 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694562 2019-07-23 17:26:56 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-12 09:20:00 obsr546609 S21320297 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291746243 2015-01-18 17:47:39 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 4 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-01-18 16:20:00 obsr407723 S21404397 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291772368 2015-01-18 19:23:57 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 5 United States US New York US-NY Albany US-NY-001 13.0 New Scotland Rd, Delmar L3302053 P 42.6248494 -73.9371622 2015-01-18 13:16:00 obsr546609 S21406478 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290370654 2015-01-11 11:13:48 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk-Rupert Rd L3284385 P 42.539554 -73.854804 2015-01-11 10:11:00 obsr407723 S21294095 Traveling P22 EBIRD 4.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292616529 2021-03-26 07:46:52.994574 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-22 11:30:00 obsr594026 S21493317 Stationary P21 EBIRD 10.0 8.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288963822 2021-03-26 07:46:52.994574 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr697870 S21181934 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288408583 2021-03-26 07:46:52.994574 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288284476 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:00:00 obsr546609 S21124907 Traveling P22 EBIRD 210.0 3.219 5.0 1 G1088931 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288273771 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288286370 2021-04-01 12:26:53.827486 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-01-01 12:20:00 obsr546609 S21125084 Traveling P22 EBIRD 57.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905108 2015-01-19 12:21:02 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-19 10:00:00 obsr551017 S21416527 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291930016 2018-08-04 16:53:24 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 Unknown Sex, Immature (3) United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 03:30:00 obsr377411 S21418419 Stationary P21 EBIRD 45.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290216830 2021-04-01 12:26:53.827486 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 5 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-10 15:30:00 obsr322656 S21281606 Stationary P21 EBIRD 80.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812964 2021-03-23 17:18:00.959502 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-28 15:05:00 obsr657332 S21587566 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508021 2018-08-04 16:53:31 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 Unknown Sex, Adult (1); Unknown Sex, Immature (3) United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:50:00 obsr594026 S21386094 Stationary P21 EBIRD 30.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288683820 2018-08-04 16:52:36 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-03 08:43:00 obsr287339 S21157449 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534520 2018-08-04 16:53:53 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr551017 S21388183 Stationary P21 EBIRD 28.0 15.0 1 G1112538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369402184 2018-08-04 16:52:58 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 obsr513002 S27183003 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534531 2018-08-04 16:53:31 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr551017 S21388184 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291542916 2018-08-04 16:53:31 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 Unknown Sex, Juvenile (2); Unknown Sex, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:48:00 obsr386198 S21388858 Stationary P21 EBIRD 37.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740161 2021-04-01 12:26:53.827486 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-17 obsr560402 S23337227 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534920 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:45:00 obsr409143 S21388220 Stationary P21 EBIRD 20.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291483314 2018-08-04 16:53:32 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr504578 S21384068 Stationary P21 EBIRD 28.0 15.0 1 G1112538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470776 2018-08-04 16:53:31 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr504578 S21383073 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290754387 2021-03-23 17:18:00.959502 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-12 15:00:00 obsr657332 S21324969 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290297987 2015-01-10 20:58:54 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 5 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-10 16:00:00 obsr551017 S21288356 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291544681 2021-03-23 17:18:00.959502 251 domestic avibase-6835DC6C Graylag Goose (Domestic type) Anser anser (Domestic type) 4 Unknown Sex, Juvenile (4) United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:47:00 obsr386198 S21389000 Stationary P21 EBIRD 38.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539544 2018-08-04 16:53:32 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:45:00 obsr409143 S21388575 Stationary P21 EBIRD 35.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290331162 2018-08-04 16:53:04 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-10 16:43:00 obsr657332 S21289569 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553639 2021-04-01 12:26:53.827486 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-17 09:00:00 obsr409143 S21389711 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291514745 2018-08-04 16:53:32 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:45:00 obsr594026 S21386563 Stationary P21 EBIRD 30.0 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323491 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 Unknown Sex, Immature (3) United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr544737 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146370 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-15 12:15:00 obsr92097 S21356603 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291719136 2015-01-18 16:13:57 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.69547800000001 2015-01-17 15:50:00 obsr287339 S21402285 Stationary P21 EBIRD 25.0 14.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292058234 2021-04-01 12:26:53.827486 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-19 11:55:00 obsr657332 S21428677 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290830371 2015-03-10 04:47:00 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Crescent Rd., Colonie Landfill pull off L3289882 H 42.811988 -73.7252569 2015-01-13 10:45:00 obsr120906 S21330760 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291478292 2015-01-17 19:46:42 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 1 United States US New York US-NY Albany US-NY-001 13.0 Port of Albany, NY L608431 P 42.6267124 -73.7552118 2015-01-17 15:50:00 obsr322656 S21383634 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290486863 2018-08-04 16:53:08 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 12:00:00 obsr322656 S21303554 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290304555 2018-08-04 16:53:03 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 3 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-10 15:35:00 obsr657332 S21288891 Traveling P22 EBIRD 45.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290381740 2018-08-04 16:53:07 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-11 11:02:00 obsr504578 S21295062 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694936 2018-08-04 16:53:13 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 1 Unknown Sex, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-12 10:15:00 obsr546609 S21320325 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288966737 2021-03-23 17:18:00.959502 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.72347540000001 2015-01-04 09:22:00 obsr504578 S21182191 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS376798153 2019-07-23 17:26:56 681 species avibase-407E2CA8 Common Merganser Mergus merganser 11 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-12 09:20:00 obsr546609 S21320297 Stationary P21 EBIRD 31.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288220310 2021-03-26 07:46:52.994574 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 07:01:00 obsr120906 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288963926 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr697870 S21181947 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408592 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.60999520000001 -73.89076779999999 2015-01-01 09:00:00 obsr452367 S21134597 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291896933 2016-03-06 22:55:23 11528 species avibase-F3DA111C Merlin Falco columbarius 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-19 10:40:00 obsr287339 S21415921 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289022132 2015-01-04 13:16:46 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.76281290000001 2015-01-04 11:56:00 obsr287339 S21186656 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872619 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr120906 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290996785 2015-01-14 14:53:54 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar, 5 Grove Street L3291952 P 42.62319 -73.83245 2015-01-14 13:00:00 obsr544737 S21344338 Stationary P21 EBIRD 5.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294052013 2018-08-04 16:55:27 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Allegany US-NY-003 28.0 Island Park, Wellsville L3479880 H 42.116922 -77.94495140000001 2015-01-30 16:03:00 obsr689023 S21606677 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291502784 2021-04-01 10:44:41.995232 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Allegany US-NY-003 28.0 Island Park, Wellsville L3479880 H 42.116922 -77.94495140000001 2015-01-17 14:40:00 obsr689023 S21385628 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291437735 2018-08-04 16:53:29 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Belmont-4383-4385 Back River Rd L3297843 P 42.195249 -78.00608299999999 2015-01-17 11:50:00 obsr105436 S21380411 Traveling P22 EBIRD 19.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290925006 2021-03-19 15:59:05.496822 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Allegany US-NY-003 28.0 Houghton College Interpretive Nature Trail L3119438 P 42.424985 -78.15240920000001 2015-01-13 16:10:00 obsr345681 S21338715 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291865487 2016-09-15 22:03:57 30494 species avibase-240E3390 House Sparrow Passer domesticus 400 United States US New York US-NY Allegany US-NY-003 28.0 Beech Hill Rd and Wilson Rd L3164741 P 42.050231700000005 -77.858305 2015-01-18 14:40:00 obsr689023 S21413524 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291027283 2016-09-14 00:08:04 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 800 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Wellsville-100 Hills St L3292338 P 42.123491 -77.924 2015-01-14 17:44:00 obsr105436 S21346863 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293149509 2021-03-26 06:07:26.162322 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-25 08:30:00 obsr689023 S21534959 Stationary P21 EBIRD 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289773336 2015-01-07 21:20:35 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Allegany US-NY-003 28.0 Route 248, Stannards L3172863 P 42.0868046 -77.9197598 2015-01-05 10:45:00 obsr689023 S21245151 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289772857 2021-03-19 15:59:05.496822 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 125 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-03 14:10:00 obsr689023 S21245121 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291500868 2021-03-26 06:07:26.162322 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 4 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-17 10:00:00 obsr689023 S21385466 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292049824 2015-01-19 22:40:55 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Allegany US-NY-003 28.0 Alfred L197831 T 42.25427 -77.79052 2015-01-19 obsr706691 S21428000 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294272159 2015-01-31 22:43:53 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Friendship-7278 Co Rd 20 L3330603 P 42.202553 -78.148522 2015-01-31 15:50:00 obsr105436 S21623868 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288156928 2021-04-01 10:44:41.995232 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 10 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-01 07:30:00 obsr689023 S21113990 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291100133 2017-07-23 20:19:24 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River, Riverwalk Plaza L3479883 H 42.1255097 -77.961348 2015-01-14 11:35:00 obsr689023 S21352872 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292489721 2021-04-01 10:44:41.995232 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 15 United States US New York US-NY Allegany US-NY-003 28.0 Genesee Valley Greenway - Houghton L3073924 P 42.4251791 -78.1518325 2015-01-21 13:30:00 obsr345681 S21483068 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291863891 2015-01-19 08:24:31 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Allegany US-NY-003 28.0 Route 248A, big pine tree L2946666 P 42.0211129 -77.8145233 2015-01-18 13:20:00 obsr689023 S21413384 Traveling P22 EBIRD 5.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384320 2021-03-26 06:07:26.162322 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-11 08:30:00 obsr689023 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293134381 2021-03-19 15:59:05.496822 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 9 United States US New York US-NY Allegany US-NY-003 28.0 86 between Alfred and Cuba L3316739 P 42.2929208 -77.99125670000001 2015-01-24 10:45:00 obsr339506 S21533815 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292911849 2021-03-24 19:19:28.646223 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Allegany US-NY-003 28.0 Alfred L197831 T 42.25427 -77.79052 2015-01-24 11:00:00 obsr706691 S21516489 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288169365 2021-03-24 19:19:28.646223 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-01 10:52:00 obsr105436 S21114961 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292892278 2021-03-26 06:07:26.162322 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-24 09:00:00 obsr689023 S21514846 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291437744 2018-08-04 16:53:29 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 9 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Belmont-4383-4385 Back River Rd L3297843 P 42.195249 -78.00608299999999 2015-01-17 11:50:00 obsr105436 S21380411 Traveling P22 EBIRD 19.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955227 2018-02-23 08:53:50 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-29 14:50:00 obsr105436 S21598847 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480553 2021-04-01 10:44:41.995232 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 6 United States US New York US-NY Allegany US-NY-003 28.0 Crandall Rd, Independence, ny L2042714 P 42.0966939 -77.77565 2015-01-11 14:15:00 obsr689023 S21303004 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290801517 2021-03-24 19:19:28.646223 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 7 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-12 08:20:00 obsr689023 S21328231 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293134745 2021-04-01 10:44:41.995232 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 19 United States US New York US-NY Allegany US-NY-003 28.0 Cuba, Mt Monroe rd L3316744 P 42.2654617 -78.2753563 2015-01-24 11:18:00 obsr339506 S21533849 Traveling P22 EBIRD 28.0 11.265 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292083023 2015-01-20 07:59:09 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Allegany US-NY-003 28.0 Houghton College L3141413 P 42.426656 -78.1555796 2015-01-20 07:45:00 obsr345681 S21430613 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290798464 2015-01-13 07:58:09 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Allegany US-NY-003 28.0 Houghton College L3141413 P 42.426656 -78.1555796 2015-01-12 13:20:00 obsr345681 S21327986 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289903986 2021-03-24 19:19:28.646223 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-08 14:57:00 obsr105436 S21256243 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290809348 2021-04-01 10:44:41.995232 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 15 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-12 09:30:00 obsr586151 S21328953 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288169374 2021-03-24 19:19:28.646223 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-01 10:52:00 obsr105436 S21114961 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289343156 2021-03-24 19:19:28.646223 526 species avibase-56CCA717 Northern Pintail Anas acuta 6 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-05 15:12:00 obsr105436 S21211635 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293546496 2021-03-26 06:07:26.162322 30494 species avibase-240E3390 House Sparrow Passer domesticus 36 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-27 12:40:00 obsr586151 S21566676 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288708760 2021-03-26 06:07:26.162322 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 7 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-02 15:06:00 obsr105436 S21159733 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955237 2018-02-23 08:53:50 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 5 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-29 14:50:00 obsr105436 S21598847 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289903995 2021-03-24 19:19:28.646223 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-08 14:57:00 obsr105436 S21256243 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290139409 2021-03-19 15:59:05.496822 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 7 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-09 08:10:00 obsr689023 S21274863 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289772848 2021-03-19 15:59:05.496822 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-03 14:10:00 obsr689023 S21245121 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293962157 2018-02-23 08:53:53 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 10 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-30 09:10:00 obsr586151 S21599490 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289639573 2021-03-24 19:19:28.646223 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 5 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-06 15:03:00 obsr105436 S21235346 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384318 2021-03-26 06:07:26.162322 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 11 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-11 08:30:00 obsr689023 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292489719 2021-04-01 10:44:41.995232 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Allegany US-NY-003 28.0 Genesee Valley Greenway - Houghton L3073924 P 42.4251791 -78.1518325 2015-01-21 13:30:00 obsr345681 S21483068 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292710652 2015-04-05 23:21:53 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 11 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-22 08:00:00 obsr689023 S21500606 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286892 2021-03-24 19:19:28.646223 662 species avibase-FB738385 Bufflehead Bucephala albeola 6 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-10 11:22:00 obsr105436 S21287412 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288443475 2021-04-01 10:44:41.995232 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 16 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-02 10:00:00 obsr689023 S21137650 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290801513 2021-03-24 19:19:28.646223 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 22 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-12 08:20:00 obsr689023 S21328231 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291500859 2021-03-26 06:07:26.162322 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-17 10:00:00 obsr689023 S21385466 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958079 2018-02-23 08:53:50 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-20 14:47:00 obsr105436 S21520002 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294050615 2021-03-26 06:07:26.162322 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 41 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-30 08:30:00 obsr689023 S21606578 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293149506 2021-03-26 06:07:26.162322 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 11 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-25 08:30:00 obsr689023 S21534959 Stationary P21 EBIRD 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292042284 2021-03-24 19:19:28.646223 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-19 14:50:00 obsr105436 S21427419 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292892284 2021-03-26 06:07:26.162322 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 5 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-24 09:00:00 obsr689023 S21514846 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291649469 2015-02-18 10:31:32 526 species avibase-56CCA717 Northern Pintail Anas acuta 32 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-18 12:30:00 obsr586151 S21397272 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288156940 2021-04-01 10:44:41.995232 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 12 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-01 07:30:00 obsr689023 S21113990 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290139407 2021-03-19 15:59:05.496822 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-09 08:10:00 obsr689023 S21274863 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292042279 2021-03-24 19:19:28.646223 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-19 14:50:00 obsr105436 S21427419 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289903990 2021-03-24 19:19:28.646223 681 species avibase-407E2CA8 Common Merganser Mergus merganser 6 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-08 14:57:00 obsr105436 S21256243 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288169368 2021-03-24 19:19:28.646223 662 species avibase-FB738385 Bufflehead Bucephala albeola 7 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-01 10:52:00 obsr105436 S21114961 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292710648 2015-04-05 23:21:53 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-22 08:00:00 obsr689023 S21500606 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292892279 2021-03-26 06:07:26.162322 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-24 09:00:00 obsr689023 S21514846 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294050612 2021-03-26 06:07:26.162322 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-30 08:30:00 obsr689023 S21606578 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291500858 2021-03-26 06:07:26.162322 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-17 10:00:00 obsr689023 S21385466 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955232 2018-02-23 08:53:50 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-29 14:50:00 obsr105436 S21598847 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290801515 2021-03-24 19:19:28.646223 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-12 08:20:00 obsr689023 S21328231 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289639568 2021-03-24 19:19:28.646223 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-06 15:03:00 obsr105436 S21235346 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288443473 2021-04-01 10:44:41.995232 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-02 10:00:00 obsr689023 S21137650 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292489725 2021-04-01 10:44:41.995232 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Allegany US-NY-003 28.0 Genesee Valley Greenway - Houghton L3073924 P 42.4251791 -78.1518325 2015-01-21 13:30:00 obsr345681 S21483068 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293149510 2021-03-26 06:07:26.162322 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-25 08:30:00 obsr689023 S21534959 Stationary P21 EBIRD 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384322 2021-03-26 06:07:26.162322 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-11 08:30:00 obsr689023 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288708754 2021-03-26 06:07:26.162322 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 8 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-02 15:06:00 obsr105436 S21159733 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288156938 2021-04-01 10:44:41.995232 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-01 07:30:00 obsr689023 S21113990 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286886 2021-03-24 19:19:28.646223 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 7 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-10 11:22:00 obsr105436 S21287412 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291863889 2015-01-19 08:24:31 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Allegany US-NY-003 28.0 Route 248A, big pine tree L2946666 P 42.0211129 -77.8145233 2015-01-18 13:20:00 obsr689023 S21413384 Traveling P22 EBIRD 5.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291864484 2016-01-01 17:03:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Allegany US-NY-003 28.0 Hawks Rd., Genesee River L2804441 H 42.0089911 -77.8838573 2015-01-18 13:40:00 obsr689023 S21413426 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291419147 2015-01-17 11:10:41 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Belmont-6087 State Rte 19 N L3297562 P 42.268137 -78.06617 2015-01-17 11:01:00 obsr105436 S21378796 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294271621 2015-01-31 22:41:08 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Angelica-6400-6422 NY-19 L3330592 P 42.269778 -78.06698100000001 2015-01-31 15:10:00 obsr105436 S21623832 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292892273 2021-03-26 06:07:26.162322 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-24 09:00:00 obsr689023 S21514846 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288708751 2021-03-26 06:07:26.162322 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 9 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-02 15:06:00 obsr105436 S21159733 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288169366 2021-03-24 19:19:28.646223 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 9 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-01 10:52:00 obsr105436 S21114961 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290139402 2021-03-19 15:59:05.496822 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-09 08:10:00 obsr689023 S21274863 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289903987 2021-03-24 19:19:28.646223 251 domestic avibase-6835DC6C Graylag Goose (Domestic type) Anser anser (Domestic type) 12 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-08 14:57:00 obsr105436 S21256243 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289772856 2021-03-19 15:59:05.496822 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 5 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-03 14:10:00 obsr689023 S21245121 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384317 2021-03-26 06:07:26.162322 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-11 08:30:00 obsr689023 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955228 2018-02-23 08:53:50 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 11 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-29 14:50:00 obsr105436 S21598847 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293149502 2021-03-26 06:07:26.162322 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-25 08:30:00 obsr689023 S21534959 Stationary P21 EBIRD 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958071 2018-02-23 08:53:50 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 11 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-20 14:47:00 obsr105436 S21520002 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290809347 2021-04-01 10:44:41.995232 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-12 09:30:00 obsr586151 S21328953 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294050608 2021-03-26 06:07:26.162322 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-30 08:30:00 obsr689023 S21606578 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288443478 2021-04-01 10:44:41.995232 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-02 10:00:00 obsr689023 S21137650 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292502908 2015-04-05 23:21:53 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-20 16:40:00 obsr689023 S21484081 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292911848 2021-03-24 19:19:28.646223 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Allegany US-NY-003 28.0 Alfred L197831 T 42.25427 -77.79052 2015-01-24 11:00:00 obsr706691 S21516489 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291863890 2015-01-19 08:24:31 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Allegany US-NY-003 28.0 Route 248A, big pine tree L2946666 P 42.0211129 -77.8145233 2015-01-18 13:20:00 obsr689023 S21413384 Traveling P22 EBIRD 5.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288156937 2021-04-01 10:44:41.995232 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 5 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-01 07:30:00 obsr689023 S21113990 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289639564 2021-03-24 19:19:28.646223 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 10 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-06 15:03:00 obsr105436 S21235346 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292042276 2021-03-24 19:19:28.646223 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 11 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-19 14:50:00 obsr105436 S21427419 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291500863 2021-03-26 06:07:26.162322 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 4 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-17 10:00:00 obsr689023 S21385466 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290801521 2021-03-24 19:19:28.646223 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-12 08:20:00 obsr689023 S21328231 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292489723 2021-04-01 10:44:41.995232 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Allegany US-NY-003 28.0 Genesee Valley Greenway - Houghton L3073924 P 42.4251791 -78.1518325 2015-01-21 13:30:00 obsr345681 S21483068 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289343148 2021-03-24 19:19:28.646223 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 8 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-05 15:12:00 obsr105436 S21211635 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290925004 2021-03-19 15:59:05.496822 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 2 United States US New York US-NY Allegany US-NY-003 28.0 Houghton College Interpretive Nature Trail L3119438 P 42.424985 -78.15240920000001 2015-01-13 16:10:00 obsr345681 S21338715 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286883 2021-03-24 19:19:28.646223 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 10 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-10 11:22:00 obsr105436 S21287412 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292710656 2015-04-05 23:21:53 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 4 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-22 08:00:00 obsr689023 S21500606 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288169364 2021-03-24 19:19:28.646223 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-01 10:52:00 obsr105436 S21114961 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288443480 2021-04-01 10:44:41.995232 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-02 10:00:00 obsr689023 S21137650 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292911850 2021-03-24 19:19:28.646223 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Allegany US-NY-003 28.0 Alfred L197831 T 42.25427 -77.79052 2015-01-24 11:00:00 obsr706691 S21516489 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289772847 2021-03-19 15:59:05.496822 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-03 14:10:00 obsr689023 S21245121 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958070 2018-02-23 08:53:50 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-20 14:47:00 obsr105436 S21520002 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288156942 2021-04-01 10:44:41.995232 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-01 07:30:00 obsr689023 S21113990 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292912172 2015-01-24 13:05:25 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Allegany US-NY-003 28.0 Alfred L197831 T 42.25427 -77.79052 2015-01-23 08:00:00 obsr706691 S21516509 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286882 2021-03-24 19:19:28.646223 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-10 11:22:00 obsr105436 S21287412 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288708750 2021-03-26 06:07:26.162322 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-02 15:06:00 obsr105436 S21159733 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384310 2021-03-26 06:07:26.162322 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-11 08:30:00 obsr689023 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289903985 2021-03-24 19:19:28.646223 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-08 14:57:00 obsr105436 S21256243 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290801508 2021-03-24 19:19:28.646223 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-12 08:20:00 obsr689023 S21328231 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290139399 2021-03-19 15:59:05.496822 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-09 08:10:00 obsr689023 S21274863 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291500870 2021-03-26 06:07:26.162322 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-17 10:00:00 obsr689023 S21385466 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955226 2018-02-23 08:53:50 662 species avibase-FB738385 Bufflehead Bucephala albeola 5 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-29 14:50:00 obsr105436 S21598847 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292892277 2021-03-26 06:07:26.162322 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-24 09:00:00 obsr689023 S21514846 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293134383 2021-03-19 15:59:05.496822 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Allegany US-NY-003 28.0 86 between Alfred and Cuba L3316739 P 42.2929208 -77.99125670000001 2015-01-24 10:45:00 obsr339506 S21533815 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292042275 2021-03-24 19:19:28.646223 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-19 14:50:00 obsr105436 S21427419 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293149500 2021-03-26 06:07:26.162322 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-25 08:30:00 obsr689023 S21534959 Stationary P21 EBIRD 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292489717 2021-04-01 10:44:41.995232 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Allegany US-NY-003 28.0 Genesee Valley Greenway - Houghton L3073924 P 42.4251791 -78.1518325 2015-01-21 13:30:00 obsr345681 S21483068 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293134747 2021-04-01 10:44:41.995232 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Allegany US-NY-003 28.0 Cuba, Mt Monroe rd L3316744 P 42.2654617 -78.2753563 2015-01-24 11:18:00 obsr339506 S21533849 Traveling P22 EBIRD 28.0 11.265 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290139398 2021-03-19 15:59:05.496822 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-09 08:10:00 obsr689023 S21274863 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294050613 2021-03-26 06:07:26.162322 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-30 08:30:00 obsr689023 S21606578 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480558 2021-04-01 10:44:41.995232 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 110 United States US New York US-NY Allegany US-NY-003 28.0 Crandall Rd, Independence, ny L2042714 P 42.0966939 -77.77565 2015-01-11 14:15:00 obsr689023 S21303004 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290801511 2021-03-24 19:19:28.646223 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 17 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-12 08:20:00 obsr689023 S21328231 Stationary P21 EBIRD 90.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292892276 2021-03-26 06:07:26.162322 592 species avibase-3072CC16 Redhead Aythya americana 10 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-24 09:00:00 obsr689023 S21514846 Stationary P21 EBIRD 90.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293149508 2021-03-26 06:07:26.162322 6339 species avibase-8535345B Herring Gull Larus argentatus 21 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-25 08:30:00 obsr689023 S21534959 Stationary P21 EBIRD 60.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290384316 2021-03-26 06:07:26.162322 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 26 Female, Adult (14); Male, Adult (12) United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-11 08:30:00 obsr689023 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288156929 2021-04-01 10:44:41.995232 483 species avibase-85625D75 Mallard Anas platyrhynchos 60 Male, Adult (27); Female, Adult (33) United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-01 07:30:00 obsr689023 S21113990 Stationary P21 EBIRD 240.0 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289772853 2021-03-19 15:59:05.496822 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 62 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-03 14:10:00 obsr689023 S21245121 Stationary P21 EBIRD 45.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292502909 2015-04-05 23:21:53 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-20 16:40:00 obsr689023 S21484081 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293936485 2021-04-01 10:44:41.995232 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River, Riverwalk Plaza L3479883 H 42.1255097 -77.961348 2015-01-29 16:40:00 obsr689023 S21597286 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294051806 2021-04-01 10:44:41.995232 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River, Riverwalk Plaza L3479883 H 42.1255097 -77.961348 2015-01-30 15:54:00 obsr689023 S21606656 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291437738 2018-08-04 16:53:29 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Belmont-4383-4385 Back River Rd L3297843 P 42.195249 -78.00608299999999 2015-01-17 11:50:00 obsr105436 S21380411 Traveling P22 EBIRD 19.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294051452 2018-08-04 16:55:27 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Allegany US-NY-003 28.0 Back River Rd, Scio, NY L3327946 P 42.1983045 -78.0112553 2015-01-30 15:15:00 obsr689023 S21606632 Traveling P22 EBIRD 25.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290925008 2021-03-19 15:59:05.496822 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 20 United States US New York US-NY Allegany US-NY-003 28.0 Houghton College Interpretive Nature Trail L3119438 P 42.424985 -78.15240920000001 2015-01-13 16:10:00 obsr345681 S21338715 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291100134 2017-07-23 20:19:24 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 12 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River, Riverwalk Plaza L3479883 H 42.1255097 -77.961348 2015-01-14 11:35:00 obsr689023 S21352872 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289639567 2021-03-24 19:19:28.646223 341 species avibase-B86C504C Trumpeter Swan Cygnus buccinator 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-06 15:03:00 obsr105436 S21235346 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291934734 2015-01-19 14:39:58 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 30 United States US New York US-NY Allegany US-NY-003 28.0 Houghton College L3141413 P 42.426656 -78.1555796 2015-01-19 09:15:00 obsr345681 S21418820 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291437739 2018-08-04 16:53:29 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Belmont-4383-4385 Back River Rd L3297843 P 42.195249 -78.00608299999999 2015-01-17 11:50:00 obsr105436 S21380411 Traveling P22 EBIRD 19.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291501831 2017-07-23 20:19:24 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 14 Male, Adult (6); Female, Adult (8) United States US New York US-NY Allegany US-NY-003 28.0 Genesee River, Riverwalk Plaza L3479883 H 42.1255097 -77.961348 2015-01-17 15:05:00 obsr689023 S21385549 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291437741 2018-08-04 16:53:29 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Belmont-4383-4385 Back River Rd L3297843 P 42.195249 -78.00608299999999 2015-01-17 11:50:00 obsr105436 S21380411 Traveling P22 EBIRD 19.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293936487 2021-04-01 10:44:41.995232 483 species avibase-85625D75 Mallard Anas platyrhynchos 35 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River, Riverwalk Plaza L3479883 H 42.1255097 -77.961348 2015-01-29 16:40:00 obsr689023 S21597286 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292809946 2018-08-04 16:54:57 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 Male, Adult (1); Female, Adult (2) United States US New York US-NY Allegany US-NY-003 28.0 Genesee River - Stevens St, Wellsville, NY L3312395 P 42.120584 -77.949264 2015-01-23 16:20:00 obsr689023 S21508345 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294051453 2018-08-04 16:55:27 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Allegany US-NY-003 28.0 Back River Rd, Scio, NY L3327946 P 42.1983045 -78.0112553 2015-01-30 15:15:00 obsr689023 S21606632 Traveling P22 EBIRD 25.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291502783 2021-04-01 10:44:41.995232 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Allegany US-NY-003 28.0 Island Park, Wellsville L3479880 H 42.116922 -77.94495140000001 2015-01-17 14:40:00 obsr689023 S21385628 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293936584 2018-08-04 16:55:25 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 11 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River - Stevens St, Wellsville, NY L3312395 P 42.120584 -77.949264 2015-01-29 17:30:00 obsr689023 S21597294 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294052011 2018-08-04 16:55:27 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 7 United States US New York US-NY Allegany US-NY-003 28.0 Island Park, Wellsville L3479880 H 42.116922 -77.94495140000001 2015-01-30 16:03:00 obsr689023 S21606677 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294052397 2015-01-30 19:40:00 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Allegany US-NY-003 28.0 Independence Rd. near Trapping Brook Rd. L2907305 P 42.1260768 -77.78131479999999 2015-01-30 16:19:00 obsr689023 S21606704 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294272160 2015-01-31 22:43:53 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Friendship-7278 Co Rd 20 L3330603 P 42.202553 -78.148522 2015-01-31 15:50:00 obsr105436 S21623868 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312200710 2015-04-22 21:50:12 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Allegany US-NY-003 28.0 Cuba L328659 T 42.21757 -78.27534 2015-01-31 obsr346251 S23007012 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293149507 2021-03-26 06:07:26.162322 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-25 08:30:00 obsr689023 S21534959 Stationary P21 EBIRD 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293962156 2018-02-23 08:53:53 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-30 09:10:00 obsr586151 S21599490 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292042273 2021-03-24 19:19:28.646223 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-19 14:50:00 obsr105436 S21427419 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292710653 2015-04-05 23:21:53 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-22 08:00:00 obsr689023 S21500606 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958067 2018-02-23 08:53:50 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-20 14:47:00 obsr105436 S21520002 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288156930 2021-04-01 10:44:41.995232 6339 species avibase-8535345B Herring Gull Larus argentatus 17 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-01 07:30:00 obsr689023 S21113990 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292710650 2015-04-05 23:21:53 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 9 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-22 08:00:00 obsr689023 S21500606 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289772855 2021-03-19 15:59:05.496822 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 4 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-03 14:10:00 obsr689023 S21245121 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292912173 2015-01-24 13:05:25 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 10 United States US New York US-NY Allegany US-NY-003 28.0 Alfred L197831 T 42.25427 -77.79052 2015-01-23 08:00:00 obsr706691 S21516509 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294050610 2021-03-26 06:07:26.162322 303 species avibase-B59E1863 Canada Goose Branta canadensis 9 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-30 08:30:00 obsr689023 S21606578 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292489727 2021-04-01 10:44:41.995232 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Allegany US-NY-003 28.0 Genesee Valley Greenway - Houghton L3073924 P 42.4251791 -78.1518325 2015-01-21 13:30:00 obsr345681 S21483068 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292083022 2015-01-20 07:59:09 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Allegany US-NY-003 28.0 Houghton College L3141413 P 42.426656 -78.1555796 2015-01-20 07:45:00 obsr345681 S21430613 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291865204 2020-04-08 08:35:21 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Allegany US-NY-003 28.0 Beaver Lake—Alma Pond L3164747 H 42.0151331 -77.99561259999999 2015-01-18 14:15:00 obsr689023 S21413498 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384312 2021-03-26 06:07:26.162322 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 14 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-11 08:30:00 obsr689023 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290139403 2021-03-19 15:59:05.496822 483 species avibase-85625D75 Mallard Anas platyrhynchos 14 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-09 08:10:00 obsr689023 S21274863 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292892272 2021-03-26 06:07:26.162322 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 6 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-24 09:00:00 obsr689023 S21514846 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290801514 2021-03-24 19:19:28.646223 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 7 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-12 08:20:00 obsr689023 S21328231 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292911851 2021-03-24 19:19:28.646223 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 7 United States US New York US-NY Allegany US-NY-003 28.0 Alfred L197831 T 42.25427 -77.79052 2015-01-24 11:00:00 obsr706691 S21516489 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293149503 2021-03-26 06:07:26.162322 26890 species avibase-94A44032 European Starling Sturnus vulgaris 9 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-25 08:30:00 obsr689023 S21534959 Stationary P21 EBIRD 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291500861 2021-03-26 06:07:26.162322 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-17 10:00:00 obsr689023 S21385466 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292711099 2015-04-05 23:21:53 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-20 16:40:00 obsr689023 S21484081 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288443476 2021-04-01 10:44:41.995232 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 15 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-02 10:00:00 obsr689023 S21137650 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955234 2018-02-23 08:53:50 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 12 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-29 14:50:00 obsr105436 S21598847 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288708756 2021-03-26 06:07:26.162322 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 14 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-02 15:06:00 obsr105436 S21159733 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288169370 2021-03-24 19:19:28.646223 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 16 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-01 10:52:00 obsr105436 S21114961 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286888 2021-03-24 19:19:28.646223 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 12 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-10 11:22:00 obsr105436 S21287412 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958076 2018-02-23 08:53:50 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 8 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-20 14:47:00 obsr105436 S21520002 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290925003 2021-03-19 15:59:05.496822 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Allegany US-NY-003 28.0 Houghton College Interpretive Nature Trail L3119438 P 42.424985 -78.15240920000001 2015-01-13 16:10:00 obsr345681 S21338715 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289903992 2021-03-24 19:19:28.646223 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 13 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-08 14:57:00 obsr105436 S21256243 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289343152 2021-03-24 19:19:28.646223 483 species avibase-85625D75 Mallard Anas platyrhynchos 12 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-05 15:12:00 obsr105436 S21211635 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289639570 2021-03-24 19:19:28.646223 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 12 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-06 15:03:00 obsr105436 S21235346 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292042281 2021-03-24 19:19:28.646223 30494 species avibase-240E3390 House Sparrow Passer domesticus 13 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-19 14:50:00 obsr105436 S21427419 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290801520 2021-03-24 19:19:28.646223 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-12 08:20:00 obsr689023 S21328231 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289772846 2021-03-19 15:59:05.496822 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-03 14:10:00 obsr689023 S21245121 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288443470 2021-04-01 10:44:41.995232 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-02 10:00:00 obsr689023 S21137650 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292710654 2015-04-05 23:21:53 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-22 08:00:00 obsr689023 S21500606 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294050606 2021-03-26 06:07:26.162322 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-30 08:30:00 obsr689023 S21606578 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291500867 2021-03-26 06:07:26.162322 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-17 10:00:00 obsr689023 S21385466 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292892270 2021-03-26 06:07:26.162322 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-24 09:00:00 obsr689023 S21514846 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290925001 2021-03-19 15:59:05.496822 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Allegany US-NY-003 28.0 Houghton College Interpretive Nature Trail L3119438 P 42.424985 -78.15240920000001 2015-01-13 16:10:00 obsr345681 S21338715 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292049825 2015-01-19 22:40:55 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Allegany US-NY-003 28.0 Alfred L197831 T 42.25427 -77.79052 2015-01-19 obsr706691 S21428000 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293149511 2021-03-26 06:07:26.162322 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-25 08:30:00 obsr689023 S21534959 Stationary P21 EBIRD 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290139405 2021-03-19 15:59:05.496822 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-09 08:10:00 obsr689023 S21274863 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288156932 2021-04-01 10:44:41.995232 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-01 07:30:00 obsr689023 S21113990 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292502911 2015-04-05 23:21:53 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-20 16:40:00 obsr689023 S21484081 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384307 2021-03-26 06:07:26.162322 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-11 08:30:00 obsr689023 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292489716 2021-04-01 10:44:41.995232 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Allegany US-NY-003 28.0 Genesee Valley Greenway - Houghton L3073924 P 42.4251791 -78.1518325 2015-01-21 13:30:00 obsr345681 S21483068 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958069 2018-02-23 08:53:50 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-20 14:47:00 obsr105436 S21520002 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955225 2018-02-23 08:53:50 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-29 14:50:00 obsr105436 S21598847 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289903984 2021-03-24 19:19:28.646223 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-08 14:57:00 obsr105436 S21256243 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286881 2021-03-24 19:19:28.646223 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-10 11:22:00 obsr105436 S21287412 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292042274 2021-03-24 19:19:28.646223 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-19 14:50:00 obsr105436 S21427419 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290925007 2021-03-19 15:59:05.496822 681 species avibase-407E2CA8 Common Merganser Mergus merganser 8 United States US New York US-NY Allegany US-NY-003 28.0 Houghton College Interpretive Nature Trail L3119438 P 42.424985 -78.15240920000001 2015-01-13 16:10:00 obsr345681 S21338715 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290139400 2021-03-19 15:59:05.496822 303 species avibase-B59E1863 Canada Goose Branta canadensis N 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-09 08:10:00 obsr689023 S21274863 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292892268 2021-03-26 06:07:26.162322 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 9 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-24 09:00:00 obsr689023 S21514846 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293134384 2021-03-19 15:59:05.496822 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 50 United States US New York US-NY Allegany US-NY-003 28.0 86 between Alfred and Cuba L3316739 P 42.2929208 -77.99125670000001 2015-01-24 10:45:00 obsr339506 S21533815 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289772852 2021-03-19 15:59:05.496822 483 species avibase-85625D75 Mallard Anas platyrhynchos N 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-03 14:10:00 obsr689023 S21245121 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290925009 2021-03-19 15:59:05.496822 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 3 United States US New York US-NY Allegany US-NY-003 28.0 Houghton College Interpretive Nature Trail L3119438 P 42.424985 -78.15240920000001 2015-01-13 16:10:00 obsr345681 S21338715 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293936488 2021-04-01 10:44:41.995232 483 species avibase-85625D75 Mallard Anas platyrhynchos N 7 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River, Riverwalk Plaza L3479883 H 42.1255097 -77.961348 2015-01-29 16:40:00 obsr689023 S21597286 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292911847 2021-03-24 19:19:28.646223 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 9 United States US New York US-NY Allegany US-NY-003 28.0 Alfred L197831 T 42.25427 -77.79052 2015-01-24 11:00:00 obsr706691 S21516489 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480554 2021-04-01 10:44:41.995232 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 40 United States US New York US-NY Allegany US-NY-003 28.0 Crandall Rd, Independence, ny L2042714 P 42.0966939 -77.77565 2015-01-11 14:15:00 obsr689023 S21303004 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288156939 2021-04-01 10:44:41.995232 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-01 07:30:00 obsr689023 S21113990 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288156943 2021-04-01 10:44:41.995232 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-01 07:30:00 obsr689023 S21113990 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384315 2021-03-26 06:07:26.162322 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-11 08:30:00 obsr689023 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292892283 2021-03-26 06:07:26.162322 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-24 09:00:00 obsr689023 S21514846 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292710655 2015-04-05 23:21:53 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-22 08:00:00 obsr689023 S21500606 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292489718 2021-04-01 10:44:41.995232 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Allegany US-NY-003 28.0 Genesee Valley Greenway - Houghton L3073924 P 42.4251791 -78.1518325 2015-01-21 13:30:00 obsr345681 S21483068 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290139406 2021-03-19 15:59:05.496822 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-09 08:10:00 obsr689023 S21274863 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289772854 2021-03-19 15:59:05.496822 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-03 14:10:00 obsr689023 S21245121 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291500860 2021-03-26 06:07:26.162322 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-17 10:00:00 obsr689023 S21385466 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290801518 2021-03-24 19:19:28.646223 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-12 08:20:00 obsr689023 S21328231 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288443482 2021-04-01 10:44:41.995232 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-02 10:00:00 obsr689023 S21137650 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294051451 2018-08-04 16:55:27 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Allegany US-NY-003 28.0 Back River Rd, Scio, NY L3327946 P 42.1983045 -78.0112553 2015-01-30 15:15:00 obsr689023 S21606632 Traveling P22 EBIRD 25.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291437740 2018-08-04 16:53:29 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Belmont-4383-4385 Back River Rd L3297843 P 42.195249 -78.00608299999999 2015-01-17 11:50:00 obsr105436 S21380411 Traveling P22 EBIRD 19.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291865488 2016-09-15 22:03:57 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 17 United States US New York US-NY Allegany US-NY-003 28.0 Beech Hill Rd and Wilson Rd L3164741 P 42.050231700000005 -77.858305 2015-01-18 14:40:00 obsr689023 S21413524 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288156933 2021-04-01 10:44:41.995232 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-01 07:30:00 obsr689023 S21113990 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286890 2021-03-24 19:19:28.646223 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 3 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-10 11:22:00 obsr105436 S21287412 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288708758 2021-03-26 06:07:26.162322 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 6 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-02 15:06:00 obsr105436 S21159733 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292042283 2021-03-24 19:19:28.646223 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-19 14:50:00 obsr105436 S21427419 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289639572 2021-03-24 19:19:28.646223 6361 issf avibase-0C55DFCC Iceland Gull Larus glaucoides Iceland Gull (kumlieni) Larus glaucoides kumlieni N 3 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-06 15:03:00 obsr105436 S21235346 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292911853 2021-03-24 19:19:28.646223 505 species avibase-C732CB10 American Black Duck Anas rubripes N 2 United States US New York US-NY Allegany US-NY-003 28.0 Alfred L197831 T 42.25427 -77.79052 2015-01-24 11:00:00 obsr706691 S21516489 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289343154 2021-03-24 19:19:28.646223 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-05 15:12:00 obsr105436 S21211635 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384319 2021-03-26 06:07:26.162322 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 16 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-11 08:30:00 obsr689023 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290809349 2021-04-01 10:44:41.995232 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 6 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-12 09:30:00 obsr586151 S21328953 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290801507 2021-03-24 19:19:28.646223 303 species avibase-B59E1863 Canada Goose Branta canadensis N 4 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-12 08:20:00 obsr689023 S21328231 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289903994 2021-03-24 19:19:28.646223 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 3 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-08 14:57:00 obsr105436 S21256243 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288169372 2021-03-24 19:19:28.646223 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-01 10:52:00 obsr105436 S21114961 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293546494 2021-03-26 06:07:26.162322 8160 spuh avibase-84E0CEF2 hawk sp. Accipitridae sp. (hawk sp.) N 4 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-27 12:40:00 obsr586151 S21566676 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294050609 2021-03-26 06:07:26.162322 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-30 08:30:00 obsr689023 S21606578 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291500862 2021-03-26 06:07:26.162322 303 species avibase-B59E1863 Canada Goose Branta canadensis N 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-17 10:00:00 obsr689023 S21385466 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292892282 2021-03-26 06:07:26.162322 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca N 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-24 09:00:00 obsr689023 S21514846 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480555 2021-04-01 10:44:41.995232 592 species avibase-3072CC16 Redhead Aythya americana N 32 United States US New York US-NY Allegany US-NY-003 28.0 Crandall Rd, Independence, ny L2042714 P 42.0966939 -77.77565 2015-01-11 14:15:00 obsr689023 S21303004 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288156935 2021-04-01 10:44:41.995232 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 7 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-01 07:30:00 obsr689023 S21113990 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293149505 2021-03-26 06:07:26.162322 303 species avibase-B59E1863 Canada Goose Branta canadensis N 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-25 08:30:00 obsr689023 S21534959 Stationary P21 EBIRD 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384321 2021-03-26 06:07:26.162322 592 species avibase-3072CC16 Redhead Aythya americana N 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-11 08:30:00 obsr689023 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288708761 2021-03-26 06:07:26.162322 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris N 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-02 15:06:00 obsr105436 S21159733 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288443479 2021-04-01 10:44:41.995232 30494 species avibase-240E3390 House Sparrow Passer domesticus N 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-02 10:00:00 obsr689023 S21137650 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291502782 2021-04-01 10:44:41.995232 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Allegany US-NY-003 28.0 Island Park, Wellsville L3479880 H 42.116922 -77.94495140000001 2015-01-17 14:40:00 obsr689023 S21385628 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294052012 2018-08-04 16:55:27 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 19 United States US New York US-NY Allegany US-NY-003 28.0 Island Park, Wellsville L3479880 H 42.116922 -77.94495140000001 2015-01-30 16:03:00 obsr689023 S21606677 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291907543 2018-08-04 16:53:58 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Allegany US-NY-003 28.0 Island Park L2846893 P 42.1174654 -77.94593809999999 2015-01-18 23:30:00 obsr586151 S21416727 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293936585 2018-08-04 16:55:25 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River - Stevens St, Wellsville, NY L3312395 P 42.120584 -77.949264 2015-01-29 17:30:00 obsr689023 S21597294 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292809947 2018-08-04 16:54:57 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 Female, Adult (4); Male, Adult (2) United States US New York US-NY Allegany US-NY-003 28.0 Genesee River - Stevens St, Wellsville, NY L3312395 P 42.120584 -77.949264 2015-01-23 16:20:00 obsr689023 S21508345 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291437736 2018-08-04 16:53:29 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Belmont-4383-4385 Back River Rd L3297843 P 42.195249 -78.00608299999999 2015-01-17 11:50:00 obsr105436 S21380411 Traveling P22 EBIRD 19.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292809404 2021-04-01 10:44:41.995232 662 species avibase-FB738385 Bufflehead Bucephala albeola 15 Female, Adult (7); Male, Adult (8) United States US New York US-NY Allegany US-NY-003 28.0 Island Park, Wellsville L3479880 H 42.116922 -77.94495140000001 2015-01-23 16:05:00 obsr689023 S21508312 Traveling P22 EBIRD 7.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290925005 2021-03-19 15:59:05.496822 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Allegany US-NY-003 28.0 Houghton College Interpretive Nature Trail L3119438 P 42.424985 -78.15240920000001 2015-01-13 16:10:00 obsr345681 S21338715 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294051454 2018-08-04 16:55:27 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 140 United States US New York US-NY Allegany US-NY-003 28.0 Back River Rd, Scio, NY L3327946 P 42.1983045 -78.0112553 2015-01-30 15:15:00 obsr689023 S21606632 Traveling P22 EBIRD 25.0 2.414 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289772849 2021-03-19 15:59:05.496822 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-03 14:10:00 obsr689023 S21245121 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289903983 2021-03-24 19:19:28.646223 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-08 14:57:00 obsr105436 S21256243 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292892280 2021-03-26 06:07:26.162322 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-24 09:00:00 obsr689023 S21514846 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290139408 2021-03-19 15:59:05.496822 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-09 08:10:00 obsr689023 S21274863 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288708749 2021-03-26 06:07:26.162322 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-02 15:06:00 obsr105436 S21159733 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294050611 2021-03-26 06:07:26.162322 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-30 08:30:00 obsr689023 S21606578 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286880 2021-03-24 19:19:28.646223 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-10 11:22:00 obsr105436 S21287412 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384314 2021-03-26 06:07:26.162322 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-11 08:30:00 obsr689023 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294165585 2018-02-23 08:53:53 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-31 15:10:00 obsr586151 S21615579 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290801509 2021-03-24 19:19:28.646223 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 13 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-12 08:20:00 obsr689023 S21328231 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294272158 2015-01-31 22:43:53 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Friendship-7278 Co Rd 20 L3330603 P 42.202553 -78.148522 2015-01-31 15:50:00 obsr105436 S21623868 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288443474 2021-04-01 10:44:41.995232 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-02 10:00:00 obsr689023 S21137650 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289639563 2021-03-24 19:19:28.646223 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 6 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-06 15:03:00 obsr105436 S21235346 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293962154 2018-02-23 08:53:53 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-30 09:10:00 obsr586151 S21599490 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290801510 2021-03-24 19:19:28.646223 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-12 08:20:00 obsr689023 S21328231 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289639571 2021-03-24 19:19:28.646223 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-06 15:03:00 obsr105436 S21235346 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289903993 2021-03-24 19:19:28.646223 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-08 14:57:00 obsr105436 S21256243 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288443471 2021-04-01 10:44:41.995232 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-02 10:00:00 obsr689023 S21137650 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289343153 2021-03-24 19:19:28.646223 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-05 15:12:00 obsr105436 S21211635 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288169371 2021-03-24 19:19:28.646223 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-01 10:52:00 obsr105436 S21114961 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955235 2018-02-23 08:53:50 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-29 14:50:00 obsr105436 S21598847 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293149504 2021-03-26 06:07:26.162322 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-25 08:30:00 obsr689023 S21534959 Stationary P21 EBIRD 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290809350 2021-04-01 10:44:41.995232 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-12 09:30:00 obsr586151 S21328953 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291500866 2021-03-26 06:07:26.162322 26109 species avibase-BAC33609 Brown Creeper Certhia americana 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-17 10:00:00 obsr689023 S21385466 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293546495 2021-03-26 06:07:26.162322 11494 species avibase-20C2214E American Kestrel Falco sparverius 2 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-27 12:40:00 obsr586151 S21566676 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292892271 2021-03-26 06:07:26.162322 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-24 09:00:00 obsr689023 S21514846 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290925000 2021-03-19 15:59:05.496822 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 11 United States US New York US-NY Allegany US-NY-003 28.0 Houghton College Interpretive Nature Trail L3119438 P 42.424985 -78.15240920000001 2015-01-13 16:10:00 obsr345681 S21338715 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286889 2021-03-24 19:19:28.646223 1806 species avibase-32DCEC14 Eared Grebe Podiceps nigricollis 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-10 11:22:00 obsr105436 S21287412 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384309 2021-03-26 06:07:26.162322 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-11 08:30:00 obsr689023 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292489726 2021-04-01 10:44:41.995232 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Allegany US-NY-003 28.0 Genesee Valley Greenway - Houghton L3073924 P 42.4251791 -78.1518325 2015-01-21 13:30:00 obsr345681 S21483068 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292042282 2021-03-24 19:19:28.646223 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-19 14:50:00 obsr105436 S21427419 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288708757 2021-03-26 06:07:26.162322 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-02 15:06:00 obsr105436 S21159733 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958077 2018-02-23 08:53:50 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-20 14:47:00 obsr105436 S21520002 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291437743 2018-08-04 16:53:29 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Belmont-4383-4385 Back River Rd L3297843 P 42.195249 -78.00608299999999 2015-01-17 11:50:00 obsr105436 S21380411 Traveling P22 EBIRD 19.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292809406 2021-04-01 10:44:41.995232 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Allegany US-NY-003 28.0 Island Park, Wellsville L3479880 H 42.116922 -77.94495140000001 2015-01-23 16:05:00 obsr689023 S21508312 Traveling P22 EBIRD 7.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291502781 2021-04-01 10:44:41.995232 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Allegany US-NY-003 28.0 Island Park, Wellsville L3479880 H 42.116922 -77.94495140000001 2015-01-17 14:40:00 obsr689023 S21385628 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291649468 2015-02-18 10:31:32 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-18 12:30:00 obsr586151 S21397272 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293546497 2021-03-26 06:07:26.162322 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-27 12:40:00 obsr586151 S21566676 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294050616 2021-03-26 06:07:26.162322 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-30 08:30:00 obsr689023 S21606578 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293962158 2018-02-23 08:53:53 6339 species avibase-8535345B Herring Gull Larus argentatus 14 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-30 09:10:00 obsr586151 S21599490 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289343155 2021-03-24 19:19:28.646223 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-05 15:12:00 obsr105436 S21211635 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288708759 2021-03-26 06:07:26.162322 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-02 15:06:00 obsr105436 S21159733 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288169373 2021-03-24 19:19:28.646223 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-01 10:52:00 obsr105436 S21114961 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958078 2018-02-23 08:53:50 337 species avibase-694C127A Mute Swan Cygnus olor 3 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-20 14:47:00 obsr105436 S21520002 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286891 2021-03-24 19:19:28.646223 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-10 11:22:00 obsr105436 S21287412 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955236 2018-02-23 08:53:50 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-29 14:50:00 obsr105436 S21598847 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291912196 2015-02-06 13:55:20 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Allegany US-NY-003 28.0 Back River Road Belmont L3303654 P 42.2016575 -78.01734920000001 2015-01-18 10:30:00 obsr586151 S21417074 Traveling P22 EBIRD 60.0 16.093 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290801519 2021-03-24 19:19:28.646223 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-12 08:20:00 obsr689023 S21328231 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288708753 2021-03-26 06:07:26.162322 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-02 15:06:00 obsr105436 S21159733 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294050614 2021-03-26 06:07:26.162322 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-30 08:30:00 obsr689023 S21606578 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292892275 2021-03-26 06:07:26.162322 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-24 09:00:00 obsr689023 S21514846 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955230 2018-02-23 08:53:50 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-29 14:50:00 obsr105436 S21598847 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291500864 2021-03-26 06:07:26.162322 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-17 10:00:00 obsr689023 S21385466 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292911852 2021-03-24 19:19:28.646223 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Allegany US-NY-003 28.0 Alfred L197831 T 42.25427 -77.79052 2015-01-24 11:00:00 obsr706691 S21516489 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384308 2021-03-26 06:07:26.162322 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-11 08:30:00 obsr689023 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958073 2018-02-23 08:53:50 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-20 14:47:00 obsr105436 S21520002 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288156936 2021-04-01 10:44:41.995232 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-01 07:30:00 obsr689023 S21113990 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290139404 2021-03-19 15:59:05.496822 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-09 08:10:00 obsr689023 S21274863 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288443472 2021-04-01 10:44:41.995232 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-02 10:00:00 obsr689023 S21137650 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291437742 2018-08-04 16:53:29 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Belmont-4383-4385 Back River Rd L3297843 P 42.195249 -78.00608299999999 2015-01-17 11:50:00 obsr105436 S21380411 Traveling P22 EBIRD 19.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288708748 2021-03-26 06:07:26.162322 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-02 15:06:00 obsr105436 S21159733 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293134382 2021-03-19 15:59:05.496822 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Allegany US-NY-003 28.0 86 between Alfred and Cuba L3316739 P 42.2929208 -77.99125670000001 2015-01-24 10:45:00 obsr339506 S21533815 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292489720 2021-04-01 10:44:41.995232 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Allegany US-NY-003 28.0 Genesee Valley Greenway - Houghton L3073924 P 42.4251791 -78.1518325 2015-01-21 13:30:00 obsr345681 S21483068 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292083024 2015-01-20 07:59:09 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Allegany US-NY-003 28.0 Houghton College L3141413 P 42.426656 -78.1555796 2015-01-20 07:45:00 obsr345681 S21430613 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290865489 2015-01-13 16:49:06 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Allegany US-NY-003 28.0 Rt 248 near County Rt 22, Independence, NY L3290351 P 42.06820220000001 -77.8069782 2015-01-13 16:20:00 obsr689023 S21333950 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292049834 2015-01-19 22:40:55 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Allegany US-NY-003 28.0 Alfred L197831 T 42.25427 -77.79052 2015-01-19 obsr706691 S21428000 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294051805 2021-04-01 10:44:41.995232 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 12 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River, Riverwalk Plaza L3479883 H 42.1255097 -77.961348 2015-01-30 15:54:00 obsr689023 S21606656 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292809405 2021-04-01 10:44:41.995232 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 14 United States US New York US-NY Allegany US-NY-003 28.0 Island Park, Wellsville L3479880 H 42.116922 -77.94495140000001 2015-01-23 16:05:00 obsr689023 S21508312 Traveling P22 EBIRD 7.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480557 2021-04-01 10:44:41.995232 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 35 United States US New York US-NY Allegany US-NY-003 28.0 Crandall Rd, Independence, ny L2042714 P 42.0966939 -77.77565 2015-01-11 14:15:00 obsr689023 S21303004 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291502785 2021-04-01 10:44:41.995232 20829 species avibase-B9B272F4 Common Raven Corvus corax N 14 United States US New York US-NY Allegany US-NY-003 28.0 Island Park, Wellsville L3479880 H 42.116922 -77.94495140000001 2015-01-17 14:40:00 obsr689023 S21385628 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288156941 2021-04-01 10:44:41.995232 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N 14 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-01 07:30:00 obsr689023 S21113990 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293134746 2021-04-01 10:44:41.995232 7732 species avibase-A091D50A Northern Harrier Circus hudsonius N 34 United States US New York US-NY Allegany US-NY-003 28.0 Cuba, Mt Monroe rd L3316744 P 42.2654617 -78.2753563 2015-01-24 11:18:00 obsr339506 S21533849 Traveling P22 EBIRD 28.0 11.265 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288443481 2021-04-01 10:44:41.995232 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 11 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-02 10:00:00 obsr689023 S21137650 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290809351 2021-04-01 10:44:41.995232 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 4 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-12 09:30:00 obsr586151 S21328953 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292489722 2021-04-01 10:44:41.995232 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 1 United States US New York US-NY Allegany US-NY-003 28.0 Genesee Valley Greenway - Houghton L3073924 P 42.4251791 -78.1518325 2015-01-21 13:30:00 obsr345681 S21483068 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293936486 2021-04-01 10:44:41.995232 30494 species avibase-240E3390 House Sparrow Passer domesticus N 1 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River, Riverwalk Plaza L3479883 H 42.1255097 -77.961348 2015-01-29 16:40:00 obsr689023 S21597286 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294052708 2021-04-01 10:44:41.995232 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus N 2 United States US New York US-NY Allegany US-NY-003 28.0 Crandall Rd, Independence, ny L2042714 P 42.0966939 -77.77565 2015-01-30 16:25:00 obsr689023 S21606732 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294052709 2021-04-01 10:44:41.995232 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 60 United States US New York US-NY Allegany US-NY-003 28.0 Crandall Rd, Independence, ny L2042714 P 42.0966939 -77.77565 2015-01-30 16:25:00 obsr689023 S21606732 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290171152 2020-05-19 22:08:23 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 17 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-6506-6718 Mt Monroe Rd L3281552 P 42.291716 -78.287615 2015-01-10 10:28:00 obsr105436 S21277765 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480556 2021-04-01 10:44:41.995232 26890 species avibase-94A44032 European Starling Sturnus vulgaris 50 United States US New York US-NY Allegany US-NY-003 28.0 Crandall Rd, Independence, ny L2042714 P 42.0966939 -77.77565 2015-01-11 14:15:00 obsr689023 S21303004 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293134744 2021-04-01 10:44:41.995232 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 13 United States US New York US-NY Allegany US-NY-003 28.0 Cuba, Mt Monroe rd L3316744 P 42.2654617 -78.2753563 2015-01-24 11:18:00 obsr339506 S21533849 Traveling P22 EBIRD 28.0 11.265 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292094427 2018-09-07 15:24:11 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Allegany US-NY-003 28.0 Baldwin Hill, Rushford L3305747 P 42.3771098 -78.25325490000002 2015-01-19 15:45:00 obsr123368 S21431511 Incidental P20 EBIRD 2.0 0 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289343149 2021-03-24 19:19:28.646223 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-05 15:12:00 obsr105436 S21211635 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384313 2021-03-26 06:07:26.162322 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-11 08:30:00 obsr689023 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292710651 2015-04-05 23:21:53 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-22 08:00:00 obsr689023 S21500606 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293149501 2021-03-26 06:07:26.162322 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-25 08:30:00 obsr689023 S21534959 Stationary P21 EBIRD 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958072 2018-02-23 08:53:50 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-20 14:47:00 obsr105436 S21520002 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288169367 2021-03-24 19:19:28.646223 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-01 10:52:00 obsr105436 S21114961 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289639565 2021-03-24 19:19:28.646223 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-06 15:03:00 obsr105436 S21235346 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955229 2018-02-23 08:53:50 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-29 14:50:00 obsr105436 S21598847 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289903988 2021-03-24 19:19:28.646223 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-08 14:57:00 obsr105436 S21256243 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286884 2021-03-24 19:19:28.646223 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-10 11:22:00 obsr105436 S21287412 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292911855 2021-03-24 19:19:28.646223 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Allegany US-NY-003 28.0 Alfred L197831 T 42.25427 -77.79052 2015-01-24 11:00:00 obsr706691 S21516489 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288156931 2021-04-01 10:44:41.995232 34699 spuh avibase-CFD25837 passerine sp. Passeriformes sp. 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-01 07:30:00 obsr689023 S21113990 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292892274 2021-03-26 06:07:26.162322 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-24 09:00:00 obsr689023 S21514846 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288708752 2021-03-26 06:07:26.162322 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-02 15:06:00 obsr105436 S21159733 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289772850 2021-03-19 15:59:05.496822 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-03 14:10:00 obsr689023 S21245121 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294050607 2021-03-26 06:07:26.162322 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-30 08:30:00 obsr689023 S21606578 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290139401 2021-03-19 15:59:05.496822 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-09 08:10:00 obsr689023 S21274863 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288443477 2021-04-01 10:44:41.995232 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-02 10:00:00 obsr689023 S21137650 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291500865 2021-03-26 06:07:26.162322 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-17 10:00:00 obsr689023 S21385466 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290801512 2021-03-24 19:19:28.646223 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-12 08:20:00 obsr689023 S21328231 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292042277 2021-03-24 19:19:28.646223 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-19 14:50:00 obsr105436 S21427419 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292892269 2021-03-26 06:07:26.162322 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-24 09:00:00 obsr689023 S21514846 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289343150 2021-03-24 19:19:28.646223 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-05 15:12:00 obsr105436 S21211635 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289639566 2021-03-24 19:19:28.646223 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-06 15:03:00 obsr105436 S21235346 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955231 2018-02-23 08:53:50 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-29 14:50:00 obsr105436 S21598847 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294050605 2021-03-26 06:07:26.162322 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-30 08:30:00 obsr689023 S21606578 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289903989 2021-03-24 19:19:28.646223 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-08 14:57:00 obsr105436 S21256243 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384311 2021-03-26 06:07:26.162322 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-11 08:30:00 obsr689023 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290801516 2021-03-24 19:19:28.646223 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-12 08:20:00 obsr689023 S21328231 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288156934 2021-04-01 10:44:41.995232 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-01 07:30:00 obsr689023 S21113990 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958074 2018-02-23 08:53:50 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-20 14:47:00 obsr105436 S21520002 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286885 2021-03-24 19:19:28.646223 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-10 11:22:00 obsr105436 S21287412 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292042278 2021-03-24 19:19:28.646223 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-19 14:50:00 obsr105436 S21427419 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291500869 2021-03-26 06:07:26.162322 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-17 10:00:00 obsr689023 S21385466 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292911854 2021-03-24 19:19:28.646223 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Allegany US-NY-003 28.0 Alfred L197831 T 42.25427 -77.79052 2015-01-24 11:00:00 obsr706691 S21516489 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289772851 2021-03-19 15:59:05.496822 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-03 14:10:00 obsr689023 S21245121 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292502912 2015-04-05 23:21:53 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-20 16:40:00 obsr689023 S21484081 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290139397 2021-03-19 15:59:05.496822 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-09 08:10:00 obsr689023 S21274863 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292892281 2021-03-26 06:07:26.162322 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-24 09:00:00 obsr689023 S21514846 Stationary P21 EBIRD 90.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292710649 2015-04-05 23:21:53 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-22 08:00:00 obsr689023 S21500606 Stationary P21 EBIRD 60.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291500871 2021-03-26 06:07:26.162322 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-17 10:00:00 obsr689023 S21385466 Stationary P21 EBIRD 30.0 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290801506 2021-03-24 19:19:28.646223 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-12 08:20:00 obsr689023 S21328231 Stationary P21 EBIRD 90.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294050604 2021-03-26 06:07:26.162322 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.76633740000001 2015-01-30 08:30:00 obsr689023 S21606578 Stationary P21 EBIRD 30.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292958075 2018-02-23 08:53:50 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 5 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-20 14:47:00 obsr105436 S21520002 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289343151 2021-03-24 19:19:28.646223 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-05 15:12:00 obsr105436 S21211635 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292042280 2021-03-24 19:19:28.646223 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-19 14:50:00 obsr105436 S21427419 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288169369 2021-03-24 19:19:28.646223 447 species avibase-C235A4D7 Gadwall Mareca strepera 5 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-01 10:52:00 obsr105436 S21114961 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293962155 2018-02-23 08:53:53 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-30 09:10:00 obsr586151 S21599490 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294165584 2018-02-23 08:53:53 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 9 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-31 15:10:00 obsr586151 S21615579 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290809346 2021-04-01 10:44:41.995232 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 5 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-12 09:30:00 obsr586151 S21328953 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955233 2018-02-23 08:53:50 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-29 14:50:00 obsr105436 S21598847 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289639569 2021-03-24 19:19:28.646223 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-06 15:03:00 obsr105436 S21235346 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292489724 2021-04-01 10:44:41.995232 592 species avibase-3072CC16 Redhead Aythya americana 6 United States US New York US-NY Allegany US-NY-003 28.0 Genesee Valley Greenway - Houghton L3073924 P 42.4251791 -78.1518325 2015-01-21 13:30:00 obsr345681 S21483068 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288708755 2021-03-26 06:07:26.162322 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-02 15:06:00 obsr105436 S21159733 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293546493 2021-03-26 06:07:26.162322 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-01-27 12:40:00 obsr586151 S21566676 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290286887 2021-03-24 19:19:28.646223 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 5 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-10 11:22:00 obsr105436 S21287412 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289903991 2021-03-24 19:19:28.646223 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 5 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-08 14:57:00 obsr105436 S21256243 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290925002 2021-03-19 15:59:05.496822 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Allegany US-NY-003 28.0 Houghton College Interpretive Nature Trail L3119438 P 42.424985 -78.15240920000001 2015-01-13 16:10:00 obsr345681 S21338715 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289773335 2015-01-07 21:20:35 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 9 United States US New York US-NY Allegany US-NY-003 28.0 Route 248, Stannards L3172863 P 42.0868046 -77.9197598 2015-01-05 10:45:00 obsr689023 S21245151 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291865205 2020-04-08 08:35:21 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Allegany US-NY-003 28.0 Beaver Lake—Alma Pond L3164747 H 42.0151331 -77.99561259999999 2015-01-18 14:15:00 obsr689023 S21413498 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613524 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293698183 2022-03-09 02:50:29.805088 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712325 2021-03-26 06:07:45.516082 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868727 2021-03-26 06:07:45.516082 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078429 2021-03-19 16:00:00.303051 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 25 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292760708 2021-03-26 06:07:45.516082 526 species avibase-56CCA717 Northern Pintail Anas acuta 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 09:30:00 obsr94733 S21504340 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289604 2021-04-01 10:45:00.916278 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Bronx US-NY-005 30.0 Pelham Bay Park--Pelham Bridge L1049030 H 40.862134000000005 -73.8157413 2015-01-31 13:30:00 obsr693910 S21625148 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288729 2018-08-04 16:55:32 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Twin Islands L865061 H 40.8715659 -73.78533840000001 2015-01-31 16:00:00 obsr693910 S21625086 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386259280 2016-03-27 16:24:55 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-31 13:25:00 obsr396876 S28584053 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913332 2021-04-01 10:45:00.916278 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155615 2021-03-26 06:07:45.516082 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290815884 2021-03-26 06:07:45.516082 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-13 09:25:00 obsr94733 S21329523 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991440 2021-03-26 06:07:45.516082 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479883 2021-04-01 10:45:00.916278 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 15 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603294 2021-04-01 10:45:00.916278 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634755 2021-04-01 10:45:00.916278 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129580 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206674 2021-04-01 10:45:00.916278 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 30 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043010 2021-04-01 10:45:00.916278 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 15 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232544 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185158 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 200 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288761118 2021-03-30 18:54:05.959583 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 180 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292185182 2021-04-01 10:45:00.916278 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292792512 2021-03-26 06:07:45.516082 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 16:00:00 obsr94733 S21506882 Traveling P22 EBIRD 20.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116933 2021-04-01 10:45:00.916278 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr132644 S21194151 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761132 2021-03-30 18:54:05.959583 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913312 2021-04-01 10:45:00.916278 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308835048 2021-03-26 06:07:45.516082 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-28 12:30:00 obsr67397 S22782711 Traveling P22 EBIRD 40.0 1.609 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288332773 2021-04-01 10:45:00.916278 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr114221 S21129032 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288250375 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr559486 S21121776 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288812135 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.89294759999999 2015-01-03 10:10:00 obsr34851 S21168046 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288355798 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr335540 S21130956 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868744 2021-03-26 06:07:45.516082 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991452 2021-03-26 06:07:45.516082 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290769215 2021-03-26 06:07:45.516082 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507528 2021-03-24 19:20:00.696534 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 5 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292191426 2021-04-01 10:45:00.916278 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249387 2021-04-01 10:45:00.916278 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293698190 2022-03-09 02:50:29.805088 27616 species avibase-D77E4B41 American Robin Turdus migratorius 12 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913308 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216376 2021-03-19 16:00:00.303051 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr423020 S21619307 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155600 2021-03-26 06:07:45.516082 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 6 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356826 2021-04-01 10:45:00.916278 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289609 2021-04-01 10:45:00.916278 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Bronx US-NY-005 30.0 Pelham Bay Park--Pelham Bridge L1049030 H 40.862134000000005 -73.8157413 2015-01-31 13:30:00 obsr693910 S21625148 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206640 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 Male, Adult (1) United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294280330 2018-08-04 16:55:31 303 species avibase-B59E1863 Canada Goose Branta canadensis 30 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Bartow Pell Mansion L3330677 P 40.849917100000006 -73.7996292 2015-01-31 14:30:00 obsr118406 S21624428 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185186 2021-04-01 10:45:00.916278 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979200 2021-04-01 10:45:00.916278 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 30 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043007 2021-04-01 10:45:00.916278 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479880 2021-04-01 10:45:00.916278 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292642201 2017-01-02 11:13:55 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 11 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-22 11:00:00 obsr94733 S21494990 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913320 2021-04-01 10:45:00.916278 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155602 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 9 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868740 2021-03-26 06:07:45.516082 526 species avibase-56CCA717 Northern Pintail Anas acuta 6 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719787 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS327311330 2015-09-22 06:50:19 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 obsr269906 S23938162 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712332 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386259285 2016-03-27 16:24:55 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-31 13:25:00 obsr396876 S28584053 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991451 2021-03-26 06:07:45.516082 681 species avibase-407E2CA8 Common Merganser Mergus merganser 7 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290017599 2021-03-26 06:07:45.516082 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 7 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-09 12:30:00 obsr94733 S21265314 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507516 2021-03-24 19:20:00.696534 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290815893 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-13 09:25:00 obsr94733 S21329523 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356825 2021-04-01 10:45:00.916278 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249380 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 23 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861664 2021-03-26 06:07:45.516082 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 32 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292792522 2021-03-26 06:07:45.516082 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 22 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 16:00:00 obsr94733 S21506882 Traveling P22 EBIRD 20.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293698188 2022-03-09 02:50:29.805088 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 6 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289881117 2021-03-26 06:07:45.516082 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 13:00:00 obsr94733 S21254332 Traveling P22 EBIRD 20.0 1.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290459689 2015-01-19 14:11:57 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Bronx US-NY-005 30.0 Thain Family Forest L3285445 P 40.8652537 -73.8757181 2015-01-10 11:15:00 obsr642060 S21301255 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290214503 2015-01-10 15:39:22 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-10 12:40:00 obsr228675 S21281391 Traveling P22 EBIRD 20.0 0.161 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287895 2021-03-26 06:07:45.516082 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761103 2021-03-30 18:54:05.959583 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS358043035 2021-04-01 10:45:00.916278 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291480641 2021-04-01 10:45:00.916278 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289078448 2021-03-19 16:00:00.303051 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634746 2021-04-01 10:45:00.916278 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129604 2021-04-01 10:45:00.916278 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 20 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293571025 2021-03-26 06:07:45.516082 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-27 11:00:00 obsr654937 S21568495 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613515 2021-04-01 10:45:00.916278 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206663 2021-04-01 10:45:00.916278 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603285 2021-04-01 10:45:00.916278 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185153 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761128 2021-03-30 18:54:05.959583 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216362 2021-03-19 16:00:00.303051 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr423020 S21619307 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078437 2021-03-19 16:00:00.303051 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287887 2021-03-26 06:07:45.516082 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185170 2021-04-01 10:45:00.916278 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 Unknown Sex, Adult (1); Unknown Sex, Immature (1) United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288614518 2021-03-24 19:20:00.696534 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Bronx US-NY-005 Bronx Kill se side L3259204 P 40.7974211 -73.9147818 2015-01-02 12:15:00 obsr584324 S21152171 Incidental P20 EBIRD 3.0 0 G1091952 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043027 2021-04-01 10:45:00.916278 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116930 2021-04-01 10:45:00.916278 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr132644 S21194151 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288250372 2021-04-01 10:45:00.916278 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr559486 S21121776 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288332770 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr114221 S21129032 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232535 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634743 2021-03-24 19:20:00.696534 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Bronx US-NY-005 Bronx Kill se side L3259204 P 40.7974211 -73.9147818 2015-01-02 12:15:00 obsr335050 S21153895 Incidental P20 EBIRD 3.0 0 G1091952 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479900 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288355795 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr335540 S21130956 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913337 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288600250 2021-03-24 19:20:00.696534 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Bronx US-NY-005 Bronx Kill se side L3259204 P 40.7974211 -73.9147818 2015-01-02 12:15:00 obsr385404 S21150988 Incidental P20 EBIRD 3.0 0 G1091952 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232551 2021-04-01 10:45:00.916278 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 4 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293698195 2022-03-09 02:50:29.805088 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155611 2021-03-26 06:07:45.516082 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129597 2021-04-01 10:45:00.916278 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287888 2021-03-26 06:07:45.516082 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292670085 2018-08-04 16:54:52 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-22 14:45:00 obsr267814 S21497294 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294280324 2018-08-04 16:55:31 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Bartow Pell Mansion L3330677 P 40.849917100000006 -73.7996292 2015-01-31 14:30:00 obsr118406 S21624428 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043013 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479886 2021-04-01 10:45:00.916278 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185183 2021-04-01 10:45:00.916278 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613519 2021-04-01 10:45:00.916278 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861676 2021-03-26 06:07:45.516082 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719795 2021-03-26 06:07:45.516082 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308835047 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-28 12:30:00 obsr67397 S22782711 Traveling P22 EBIRD 40.0 1.609 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913322 2021-04-01 10:45:00.916278 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290017604 2021-03-26 06:07:45.516082 526 species avibase-56CCA717 Northern Pintail Anas acuta 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-09 12:30:00 obsr94733 S21265314 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296761836 2018-08-04 16:53:27 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-17 09:30:00 obsr162067 S21828032 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991448 2021-03-26 06:07:45.516082 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289881107 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 13:00:00 obsr94733 S21254332 Traveling P22 EBIRD 20.0 1.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292262498 2021-03-26 06:07:45.516082 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-21 09:15:00 obsr94733 S21444200 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206653 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290459680 2015-01-19 14:11:57 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 6 United States US New York US-NY Bronx US-NY-005 30.0 Thain Family Forest L3285445 P 40.8652537 -73.8757181 2015-01-10 11:15:00 obsr642060 S21301255 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868737 2021-03-26 06:07:45.516082 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290815891 2021-03-26 06:07:45.516082 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-13 09:25:00 obsr94733 S21329523 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507522 2021-03-24 19:20:00.696534 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 5 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712321 2021-03-26 06:07:45.516082 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 5 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356819 2021-04-01 10:45:00.916278 456 species avibase-D201EB72 American Wigeon Mareca americana 5 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603289 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293561048 2015-01-27 14:26:21 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-27 13:00:00 obsr689106 S21567780 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979196 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 20 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291950637 2017-01-02 12:31:20 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-14 15:00:00 obsr267814 S21420161 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078445 2021-03-19 16:00:00.303051 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634750 2021-04-01 10:45:00.916278 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761106 2021-03-30 18:54:05.959583 352 spuh avibase-F9EC83D6 swan sp. Cygnus sp. 10 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293571016 2021-03-26 06:07:45.516082 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-27 11:00:00 obsr654937 S21568495 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249398 2021-04-01 10:45:00.916278 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 7 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292792518 2021-03-26 06:07:45.516082 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 16:00:00 obsr94733 S21506882 Traveling P22 EBIRD 20.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290815886 2021-03-26 06:07:45.516082 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-13 09:25:00 obsr94733 S21329523 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290459683 2015-01-19 14:11:57 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Bronx US-NY-005 30.0 Thain Family Forest L3285445 P 40.8652537 -73.8757181 2015-01-10 11:15:00 obsr642060 S21301255 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292642202 2017-01-02 11:13:55 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-22 11:00:00 obsr94733 S21494990 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290815890 2021-03-26 06:07:45.516082 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-13 09:25:00 obsr94733 S21329523 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288355797 2021-04-01 10:45:00.916278 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr335540 S21130956 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290017597 2021-03-26 06:07:45.516082 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-09 12:30:00 obsr94733 S21265314 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288332772 2021-04-01 10:45:00.916278 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr114221 S21129032 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293571019 2021-03-26 06:07:45.516082 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-27 11:00:00 obsr654937 S21568495 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479877 2021-04-01 10:45:00.916278 592 species avibase-3072CC16 Redhead Aythya americana 10 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155603 2021-03-26 06:07:45.516082 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861669 2021-03-26 06:07:45.516082 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991445 2021-03-26 06:07:45.516082 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043004 2021-04-01 10:45:00.916278 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 10 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289881108 2021-03-26 06:07:45.516082 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 13:00:00 obsr94733 S21254332 Traveling P22 EBIRD 20.0 1.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634748 2021-04-01 10:45:00.916278 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296761831 2018-08-04 16:53:27 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-17 09:30:00 obsr162067 S21828032 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979195 2021-04-01 10:45:00.916278 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 20 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116932 2021-04-01 10:45:00.916278 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr132644 S21194151 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292760711 2021-03-26 06:07:45.516082 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 09:30:00 obsr94733 S21504340 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712319 2021-03-26 06:07:45.516082 591 species avibase-1929E1E1 Canvasback Aythya valisineria 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185181 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 15 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249397 2021-04-01 10:45:00.916278 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 10 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078444 2021-03-19 16:00:00.303051 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 30 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129596 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868736 2021-03-26 06:07:45.516082 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232550 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216367 2021-03-19 16:00:00.303051 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr423020 S21619307 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603287 2021-04-01 10:45:00.916278 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761104 2021-03-30 18:54:05.959583 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 34 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292262497 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-21 09:15:00 obsr94733 S21444200 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293698198 2022-03-09 02:50:29.805088 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356828 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206646 2021-04-01 10:45:00.916278 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288250374 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr559486 S21121776 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507526 2021-03-24 19:20:00.696534 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613517 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913310 2021-04-01 10:45:00.916278 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287898 2021-03-26 06:07:45.516082 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 7 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292038703 2015-01-19 21:48:48 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 15 United States US New York US-NY Bronx US-NY-005 30.0 PS 107 Bronx, NY L3305149 P 40.8187156 -73.86895759999999 2015-01-16 11:30:00 obsr323141 S21427153 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206647 2021-04-01 10:45:00.916278 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761102 2021-03-30 18:54:05.959583 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 10 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296761837 2018-08-04 16:53:27 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-17 09:30:00 obsr162067 S21828032 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078426 2021-03-19 16:00:00.303051 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 40 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289611 2021-04-01 10:45:00.916278 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 18 United States US New York US-NY Bronx US-NY-005 30.0 Pelham Bay Park--Pelham Bridge L1049030 H 40.862134000000005 -73.8157413 2015-01-31 13:30:00 obsr693910 S21625148 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185154 2021-04-01 10:45:00.916278 6339 species avibase-8535345B Herring Gull Larus argentatus 250 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294280323 2018-08-04 16:55:31 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Bartow Pell Mansion L3330677 P 40.849917100000006 -73.7996292 2015-01-31 14:30:00 obsr118406 S21624428 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290507521 2021-03-24 19:20:00.696534 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290719784 2021-03-26 06:07:45.516082 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206650 2021-04-01 10:45:00.916278 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913336 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289612 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Bronx US-NY-005 30.0 Pelham Bay Park--Pelham Bridge L1049030 H 40.862134000000005 -73.8157413 2015-01-31 13:30:00 obsr693910 S21625148 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288731 2018-08-04 16:55:32 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Twin Islands L865061 H 40.8715659 -73.78533840000001 2015-01-31 16:00:00 obsr693910 S21625086 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129583 2021-04-01 10:45:00.916278 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 30 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043005 2021-04-01 10:45:00.916278 505 species avibase-C732CB10 American Black Duck Anas rubripes 20 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296761834 2018-08-04 16:53:27 447 species avibase-C235A4D7 Gadwall Mareca strepera X United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-17 09:30:00 obsr162067 S21828032 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078432 2021-03-19 16:00:00.303051 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 9 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479878 2021-04-01 10:45:00.916278 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 20 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634762 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761115 2021-03-30 18:54:05.959583 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 29 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290452144 2015-01-19 14:11:58 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-11 14:30:00 obsr166394 S21300648 Stationary P21 EBIRD 10.0 2.0 1 G1105472 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206660 2021-04-01 10:45:00.916278 526 species avibase-56CCA717 Northern Pintail Anas acuta 60 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290466422 2015-01-19 14:11:57 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-11 14:30:00 obsr593385 S21301786 Stationary P21 EBIRD 10.0 2.0 1 G1105472 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613531 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603301 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185162 2021-04-01 10:45:00.916278 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 110 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288232546 2021-04-01 10:45:00.916278 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289881110 2021-03-26 06:07:45.516082 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 18 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 13:00:00 obsr94733 S21254332 Traveling P22 EBIRD 20.0 1.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479873 2021-04-01 10:45:00.916278 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294280326 2018-08-04 16:55:31 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Bronx US-NY-005 US-NY_1763 Bartow Pell Mansion L3330677 P 40.849917100000006 -73.7996292 2015-01-31 14:30:00 obsr118406 S21624428 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292760713 2021-03-26 06:07:45.516082 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 68 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 09:30:00 obsr94733 S21504340 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868731 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288250363 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 203 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr559486 S21121776 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232538 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 800 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761121 2021-03-30 18:54:05.959583 483 species avibase-85625D75 Mallard Anas platyrhynchos 583 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288355786 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 203 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr335540 S21130956 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296761830 2018-08-04 16:53:27 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-17 09:30:00 obsr162067 S21828032 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155607 2021-03-26 06:07:45.516082 681 species avibase-407E2CA8 Common Merganser Mergus merganser 30 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293571023 2021-03-26 06:07:45.516082 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 39 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-27 11:00:00 obsr654937 S21568495 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289162 2015-03-12 16:06:17 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-31 17:00:00 obsr693910 S21625120 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288332761 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 203 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr114221 S21129032 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116921 2021-04-01 10:45:00.916278 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 203 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr132644 S21194151 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290815882 2021-03-26 06:07:45.516082 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 18 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-13 09:25:00 obsr94733 S21329523 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129578 2021-04-01 10:45:00.916278 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 50 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043000 2021-04-01 10:45:00.916278 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249389 2021-04-01 10:45:00.916278 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991435 2021-03-26 06:07:45.516082 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 8 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712331 2021-03-26 06:07:45.516082 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386259279 2016-03-27 16:24:55 303 species avibase-B59E1863 Canada Goose Branta canadensis 13 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-31 13:25:00 obsr396876 S28584053 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613520 2021-04-01 10:45:00.916278 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287884 2021-03-26 06:07:45.516082 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 35 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216374 2021-03-19 16:00:00.303051 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr423020 S21619307 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291350837 2017-01-02 12:31:20 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 75 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-16 13:47:00 obsr31340 S21373287 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288812142 2021-04-01 10:45:00.916278 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1100 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.89294759999999 2015-01-03 10:10:00 obsr34851 S21168046 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292262492 2021-03-26 06:07:45.516082 11605 spuh avibase-0C24147B diurnal raptor sp. Accipitriformes/Falconiformes sp. 24 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-21 09:15:00 obsr94733 S21444200 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078427 2021-03-19 16:00:00.303051 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 25 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634751 2021-04-01 10:45:00.916278 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289603 2021-04-01 10:45:00.916278 30494 species avibase-240E3390 House Sparrow Passer domesticus 15 United States US New York US-NY Bronx US-NY-005 30.0 Pelham Bay Park--Pelham Bridge L1049030 H 40.862134000000005 -73.8157413 2015-01-31 13:30:00 obsr693910 S21625148 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292642200 2017-01-02 11:13:55 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 9 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-22 11:00:00 obsr94733 S21494990 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913318 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507520 2021-03-24 19:20:00.696534 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 18 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292670079 2018-08-04 16:54:52 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 300 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-22 14:45:00 obsr267814 S21497294 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603290 2021-04-01 10:45:00.916278 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185155 2021-04-01 10:45:00.916278 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 200 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206667 2021-04-01 10:45:00.916278 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 30 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979199 2021-04-01 10:45:00.916278 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712333 2021-03-26 06:07:45.516082 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507531 2021-03-24 19:20:00.696534 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479898 2021-04-01 10:45:00.916278 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043025 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129600 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206643 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290452147 2015-01-19 14:11:58 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 17 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-11 14:30:00 obsr166394 S21300648 Stationary P21 EBIRD 10.0 2.0 1 G1105472 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289084772 2021-03-19 16:00:00.303051 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288332763 2021-04-01 10:45:00.916278 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr114221 S21129032 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288232531 2021-04-01 10:45:00.916278 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289116923 2021-04-01 10:45:00.916278 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr132644 S21194151 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292185163 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 Male, Unknown Age (2); Female, Unknown Age (2) United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288355788 2021-04-01 10:45:00.916278 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr335540 S21130956 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294518955 2018-08-04 16:55:32 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Twin Islands L865061 H 40.8715659 -73.78533840000001 2015-01-31 16:00:00 obsr693910 S21625086 Stationary P21 EBIRD 30.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290213168 2021-04-01 10:45:00.916278 447 species avibase-C235A4D7 Gadwall Mareca strepera 12 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288250365 2021-04-01 10:45:00.916278 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr559486 S21121776 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288761129 2021-03-30 18:54:05.959583 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 11 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290466425 2015-01-19 14:11:57 681 species avibase-407E2CA8 Common Merganser Mergus merganser 17 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-11 14:30:00 obsr593385 S21301786 Stationary P21 EBIRD 10.0 2.0 1 G1105472 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS358043002 2021-04-01 10:45:00.916278 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 8 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293130566 2021-04-01 10:45:00.916278 681 species avibase-407E2CA8 Common Merganser Mergus merganser 16 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291479875 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293571018 2021-03-26 06:07:45.516082 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-27 11:00:00 obsr654937 S21568495 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185165 2021-04-01 10:45:00.916278 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 Unknown Sex, Adult (2); Unknown Sex, Immature (1); Unknown Sex and Age (2) United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078434 2021-03-19 16:00:00.303051 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129585 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043012 2021-04-01 10:45:00.916278 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479885 2021-04-01 10:45:00.916278 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS357721014 2016-01-13 13:44:09 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-18 obsr681853 S26173191 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206649 2021-04-01 10:45:00.916278 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291350838 2017-01-02 12:31:20 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-16 13:47:00 obsr31340 S21373287 Stationary P21 EBIRD 20.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290719780 2021-03-26 06:07:45.516082 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 Male, Adult (1) United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291950638 2017-01-02 12:31:20 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 Male, Adult (1) United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-14 15:00:00 obsr267814 S21420161 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294216370 2021-03-19 16:00:00.303051 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr423020 S21619307 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292760701 2021-03-26 06:07:45.516082 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 09:30:00 obsr94733 S21504340 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290507532 2021-03-24 19:20:00.696534 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS327311329 2015-09-22 06:50:19 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 obsr269906 S23938162 Historical P62 EBIRD 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289712315 2021-03-26 06:07:45.516082 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216377 2021-03-19 16:00:00.303051 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr423020 S21619307 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116926 2021-04-01 10:45:00.916278 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr132644 S21194151 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288355791 2021-04-01 10:45:00.916278 11528 species avibase-F3DA111C Merlin Falco columbarius 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr335540 S21130956 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288250368 2021-04-01 10:45:00.916278 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr559486 S21121776 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290373783 2015-01-11 10:32:37 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Bronx US-NY-005 30.0 Hunts Point Riverside Park L3284419 P 40.8173819 -73.8824129 2015-01-09 11:00:00 obsr693910 S21294344 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979190 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294280327 2018-08-04 16:55:31 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Bartow Pell Mansion L3330677 P 40.849917100000006 -73.7996292 2015-01-31 14:30:00 obsr118406 S21624428 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288332766 2021-04-01 10:45:00.916278 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr114221 S21129032 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507525 2021-03-24 19:20:00.696534 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129607 2021-04-01 10:45:00.916278 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 28 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249385 2021-04-01 10:45:00.916278 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712328 2021-03-26 06:07:45.516082 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913309 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603292 2021-04-01 10:45:00.916278 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613522 2021-04-01 10:45:00.916278 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293561049 2015-01-27 14:26:21 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-27 13:00:00 obsr689106 S21567780 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634753 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308835043 2021-03-26 06:07:45.516082 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 3 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-28 12:30:00 obsr67397 S22782711 Traveling P22 EBIRD 40.0 1.609 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293571027 2021-03-26 06:07:45.516082 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 16 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-27 11:00:00 obsr654937 S21568495 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290459685 2015-01-19 14:11:57 30494 species avibase-240E3390 House Sparrow Passer domesticus 8 United States US New York US-NY Bronx US-NY-005 30.0 Thain Family Forest L3285445 P 40.8652537 -73.8757181 2015-01-10 11:15:00 obsr642060 S21301255 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507536 2021-03-24 19:20:00.696534 681 species avibase-407E2CA8 Common Merganser Mergus merganser 16 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979205 2021-04-01 10:45:00.916278 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 25 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292792520 2021-03-26 06:07:45.516082 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 16:00:00 obsr94733 S21506882 Traveling P22 EBIRD 20.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719785 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185189 2021-04-01 10:45:00.916278 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 30 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296761832 2018-08-04 16:53:27 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-17 09:30:00 obsr162067 S21828032 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206670 2021-04-01 10:45:00.916278 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 8 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356816 2021-04-01 10:45:00.916278 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185168 2021-04-01 10:45:00.916278 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291350840 2017-01-02 12:31:20 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-16 13:47:00 obsr31340 S21373287 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216366 2021-03-19 16:00:00.303051 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr423020 S21619307 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292792511 2021-03-26 06:07:45.516082 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 16:00:00 obsr94733 S21506882 Traveling P22 EBIRD 20.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043006 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292760707 2021-03-26 06:07:45.516082 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 09:30:00 obsr94733 S21504340 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356823 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232542 2021-04-01 10:45:00.916278 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116931 2021-04-01 10:45:00.916278 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr132644 S21194151 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991433 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288250373 2021-04-01 10:45:00.916278 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr559486 S21121776 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078443 2021-03-19 16:00:00.303051 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288355796 2021-04-01 10:45:00.916278 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr335540 S21130956 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288332771 2021-04-01 10:45:00.916278 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr114221 S21129032 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861670 2021-03-26 06:07:45.516082 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479879 2021-04-01 10:45:00.916278 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761112 2021-03-30 18:54:05.959583 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129595 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386259282 2016-03-27 16:24:55 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-31 13:25:00 obsr396876 S28584053 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290815889 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-13 09:25:00 obsr94733 S21329523 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293571026 2021-03-26 06:07:45.516082 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-27 11:00:00 obsr654937 S21568495 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287885 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296761826 2018-08-04 16:53:27 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-17 09:30:00 obsr162067 S21828032 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185179 2021-04-01 10:45:00.916278 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868735 2021-03-26 06:07:45.516082 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712335 2021-03-26 06:07:45.516082 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206668 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290459684 2015-01-19 14:11:57 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Bronx US-NY-005 30.0 Thain Family Forest L3285445 P 40.8652537 -73.8757181 2015-01-10 11:15:00 obsr642060 S21301255 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719790 2021-03-26 06:07:45.516082 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913319 2021-04-01 10:45:00.916278 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507518 2021-03-24 19:20:00.696534 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290459687 2015-01-19 14:11:57 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Bronx US-NY-005 30.0 Thain Family Forest L3285445 P 40.8652537 -73.8757181 2015-01-10 11:15:00 obsr642060 S21301255 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129603 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288355799 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr335540 S21130956 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979202 2021-04-01 10:45:00.916278 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N 3 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719783 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 6 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289084771 2021-03-19 16:00:00.303051 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 40 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292792510 2021-03-26 06:07:45.516082 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 16:00:00 obsr94733 S21506882 Traveling P22 EBIRD 20.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913317 2021-04-01 10:45:00.916278 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N X United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356829 2021-04-01 10:45:00.916278 30494 species avibase-240E3390 House Sparrow Passer domesticus N 5 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292760706 2021-03-26 06:07:45.516082 483 species avibase-85625D75 Mallard Anas platyrhynchos N 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 09:30:00 obsr94733 S21504340 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861663 2021-03-26 06:07:45.516082 483 species avibase-85625D75 Mallard Anas platyrhynchos N 20 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292262501 2021-03-26 06:07:45.516082 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-21 09:15:00 obsr94733 S21444200 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129602 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 10 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288332774 2021-04-01 10:45:00.916278 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr114221 S21129032 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507527 2021-03-24 19:20:00.696534 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N 3 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291126271 2021-04-01 10:45:00.916278 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N X United States US New York US-NY Bronx US-NY-005 30.0 Nereid Av, 4399 White Plains Road L3155449 P 40.8984 -73.8546 2015-01-13 08:40:00 obsr471789 S21355019 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043020 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 10 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116934 2021-04-01 10:45:00.916278 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca N 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr132644 S21194151 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761105 2021-03-30 18:54:05.959583 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287892 2021-03-26 06:07:45.516082 30494 species avibase-240E3390 House Sparrow Passer domesticus N 5 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249382 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185152 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 5 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288250376 2021-04-01 10:45:00.916278 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr559486 S21121776 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479893 2021-04-01 10:45:00.916278 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 10 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216371 2021-03-19 16:00:00.303051 6339 species avibase-8535345B Herring Gull Larus argentatus N X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr423020 S21619307 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761113 2021-03-30 18:54:05.959583 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288761114 2021-03-30 18:54:05.959583 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 11 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386259276 2016-03-27 16:24:55 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-31 13:25:00 obsr396876 S28584053 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129605 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913324 2021-04-01 10:45:00.916278 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293571028 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-27 11:00:00 obsr654937 S21568495 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043024 2021-04-01 10:45:00.916278 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293698192 2022-03-09 02:50:29.805088 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479897 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719793 2021-03-26 06:07:45.516082 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861666 2021-03-26 06:07:45.516082 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287890 2021-03-26 06:07:45.516082 622 species avibase-50566E50 Lesser Scaup Aythya affinis 5 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290017595 2021-03-26 06:07:45.516082 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-09 12:30:00 obsr94733 S21265314 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288726 2018-08-04 16:55:32 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Twin Islands L865061 H 40.8715659 -73.78533840000001 2015-01-31 16:00:00 obsr693910 S21625086 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129579 2021-04-01 10:45:00.916278 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 6 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479889 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043016 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289602 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Bronx US-NY-005 30.0 Pelham Bay Park--Pelham Bridge L1049030 H 40.862134000000005 -73.8157413 2015-01-31 13:30:00 obsr693910 S21625148 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613535 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287893 2021-03-26 06:07:45.516082 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078428 2021-03-19 16:00:00.303051 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 9 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185157 2021-04-01 10:45:00.916278 622 species avibase-50566E50 Lesser Scaup Aythya affinis 12 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603305 2021-04-01 10:45:00.916278 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761110 2021-03-30 18:54:05.959583 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 34 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290206652 2021-04-01 10:45:00.916278 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 35 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288634757 2021-04-01 10:45:00.916278 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761120 2021-03-30 18:54:05.959583 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480638 2021-04-01 10:45:00.916278 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603296 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291126269 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 30.0 Nereid Av, 4399 White Plains Road L3155449 P 40.8984 -73.8546 2015-01-13 08:40:00 obsr471789 S21355019 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185175 2021-04-01 10:45:00.916278 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 15 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043032 2021-04-01 10:45:00.916278 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206669 2021-04-01 10:45:00.916278 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613526 2021-04-01 10:45:00.916278 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290466426 2015-01-19 14:11:57 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-11 14:30:00 obsr593385 S21301786 Stationary P21 EBIRD 10.0 2.0 1 G1105472 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129591 2021-04-01 10:45:00.916278 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287894 2021-03-26 06:07:45.516082 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289605 2021-04-01 10:45:00.916278 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Bronx US-NY-005 30.0 Pelham Bay Park--Pelham Bridge L1049030 H 40.862134000000005 -73.8157413 2015-01-31 13:30:00 obsr693910 S21625148 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290452148 2015-01-19 14:11:58 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-11 14:30:00 obsr166394 S21300648 Stationary P21 EBIRD 10.0 2.0 1 G1105472 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078441 2021-03-19 16:00:00.303051 616 species avibase-25C94A8F Greater Scaup Aythya marila 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288728 2018-08-04 16:55:32 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Twin Islands L865061 H 40.8715659 -73.78533840000001 2015-01-31 16:00:00 obsr693910 S21625086 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991443 2021-03-26 06:07:45.516082 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155599 2021-03-26 06:07:45.516082 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861671 2021-03-26 06:07:45.516082 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507537 2021-03-24 19:20:00.696534 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913331 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289881109 2021-03-26 06:07:45.516082 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 13:00:00 obsr94733 S21254332 Traveling P22 EBIRD 20.0 1.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288712382 2018-08-04 16:52:38 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Bronx US-NY-005 30.0 Spuyten Duyvil Shorefront Park and RR station L1782672 H 40.878834600000005 -73.9205743 2015-01-03 11:37:00 obsr504578 S21160059 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS357721015 2016-01-13 13:44:09 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-18 obsr681853 S26173191 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288812137 2021-04-01 10:45:00.916278 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.89294759999999 2015-01-03 10:10:00 obsr34851 S21168046 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043021 2021-04-01 10:45:00.916278 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761108 2021-03-30 18:54:05.959583 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185169 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479894 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043029 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613533 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479902 2021-04-01 10:45:00.916278 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS357721019 2016-01-13 13:44:09 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-18 obsr681853 S26173191 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603303 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634764 2021-04-01 10:45:00.916278 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288732 2018-08-04 16:55:32 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 50 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Twin Islands L865061 H 40.8715659 -73.78533840000001 2015-01-31 16:00:00 obsr693910 S21625086 Stationary P21 EBIRD 30.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290466427 2015-01-19 14:11:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5000 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-11 14:30:00 obsr593385 S21301786 Stationary P21 EBIRD 10.0 2.0 1 G1105472 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS296761839 2018-08-04 16:53:27 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2000 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-17 09:30:00 obsr162067 S21828032 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292185160 2021-04-01 10:45:00.916278 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2000 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290452455 2015-01-19 14:11:58 662 species avibase-FB738385 Bufflehead Bucephala albeola 5000 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-11 14:30:00 obsr166394 S21300648 Stationary P21 EBIRD 10.0 2.0 1 G1105472 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293164106 2021-04-01 10:45:00.916278 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 150 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294289164 2015-03-12 16:06:17 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 58 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-31 17:00:00 obsr693910 S21625120 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290206666 2021-04-01 10:45:00.916278 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 6000 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288761099 2021-03-30 18:54:05.959583 456 species avibase-D201EB72 American Wigeon Mareca americana 560 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290459678 2015-01-19 14:11:57 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Bronx US-NY-005 30.0 Thain Family Forest L3285445 P 40.8652537 -73.8757181 2015-01-10 11:15:00 obsr642060 S21301255 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291480640 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS357721017 2016-01-13 13:44:09 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-18 obsr681853 S26173191 Historical P62 EBIRD 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS358043034 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294289163 2015-03-12 16:06:17 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-31 17:00:00 obsr693910 S21625120 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291155609 2021-03-26 06:07:45.516082 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991454 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292262496 2021-03-26 06:07:45.516082 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-21 09:15:00 obsr94733 S21444200 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249396 2021-04-01 10:45:00.916278 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206664 2021-04-01 10:45:00.916278 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479888 2021-04-01 10:45:00.916278 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356811 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185180 2021-04-01 10:45:00.916278 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 Male, Adult (1) United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913313 2021-04-01 10:45:00.916278 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293698197 2022-03-09 02:50:29.805088 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232537 2021-04-01 10:45:00.916278 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043015 2021-04-01 10:45:00.916278 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206659 2021-04-01 10:45:00.916278 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 10 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290452143 2015-01-19 14:11:58 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 40 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-11 14:30:00 obsr166394 S21300648 Stationary P21 EBIRD 10.0 2.0 1 G1105472 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634756 2021-04-01 10:45:00.916278 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603295 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155605 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292760714 2021-03-26 06:07:45.516082 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 09:30:00 obsr94733 S21504340 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288355793 2021-04-01 10:45:00.916278 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr335540 S21130956 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116928 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr132644 S21194151 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078440 2021-03-19 16:00:00.303051 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 50 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288250370 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr559486 S21121776 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480637 2021-04-01 10:45:00.916278 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761116 2021-03-30 18:54:05.959583 662 species avibase-FB738385 Bufflehead Bucephala albeola 41 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232533 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288736 2018-08-04 16:55:32 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Twin Islands L865061 H 40.8715659 -73.78533840000001 2015-01-31 16:00:00 obsr693910 S21625086 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613525 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861667 2021-03-26 06:07:45.516082 616 species avibase-25C94A8F Greater Scaup Aythya marila 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289881116 2021-03-26 06:07:45.516082 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 13:00:00 obsr94733 S21254332 Traveling P22 EBIRD 20.0 1.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290815888 2021-03-26 06:07:45.516082 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-13 09:25:00 obsr94733 S21329523 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991437 2021-03-26 06:07:45.516082 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249393 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289606 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Bronx US-NY-005 30.0 Pelham Bay Park--Pelham Bridge L1049030 H 40.862134000000005 -73.8157413 2015-01-31 13:30:00 obsr693910 S21625148 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507533 2021-03-24 19:20:00.696534 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868732 2021-03-26 06:07:45.516082 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292262495 2021-03-26 06:07:45.516082 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-21 09:15:00 obsr94733 S21444200 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288332768 2021-04-01 10:45:00.916278 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr114221 S21129032 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292792517 2021-03-26 06:07:45.516082 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 16:00:00 obsr94733 S21506882 Traveling P22 EBIRD 20.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185174 2021-04-01 10:45:00.916278 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 60 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043031 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290466421 2015-01-19 14:11:57 483 species avibase-85625D75 Mallard Anas platyrhynchos 40 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-11 14:30:00 obsr593385 S21301786 Stationary P21 EBIRD 10.0 2.0 1 G1105472 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129590 2021-04-01 10:45:00.916278 26890 species avibase-94A44032 European Starling Sturnus vulgaris 60 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293698196 2022-03-09 02:50:29.805088 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294280321 2018-08-04 16:55:31 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Bartow Pell Mansion L3330677 P 40.849917100000006 -73.7996292 2015-01-31 14:30:00 obsr118406 S21624428 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206662 2021-04-01 10:45:00.916278 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290214506 2015-01-10 15:39:22 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-10 12:40:00 obsr228675 S21281391 Traveling P22 EBIRD 20.0 0.161 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289881111 2021-03-26 06:07:45.516082 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 13:00:00 obsr94733 S21254332 Traveling P22 EBIRD 20.0 1.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288812138 2021-04-01 10:45:00.916278 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.89294759999999 2015-01-03 10:10:00 obsr34851 S21168046 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288332764 2021-04-01 10:45:00.916278 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr114221 S21129032 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479896 2021-04-01 10:45:00.916278 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232536 2021-04-01 10:45:00.916278 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 8 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206641 2021-04-01 10:45:00.916278 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913323 2021-04-01 10:45:00.916278 592 species avibase-3072CC16 Redhead Aythya americana 7 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116924 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr132644 S21194151 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979189 2021-04-01 10:45:00.916278 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 7 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288250366 2021-04-01 10:45:00.916278 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 4 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr559486 S21121776 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292792868 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 Male, Adult (1) United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 09:30:00 obsr94733 S21504340 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292670086 2018-08-04 16:54:52 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-22 14:45:00 obsr267814 S21497294 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288355789 2021-04-01 10:45:00.916278 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr335540 S21130956 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288735 2018-08-04 16:55:32 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Twin Islands L865061 H 40.8715659 -73.78533840000001 2015-01-31 16:00:00 obsr693910 S21625086 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761124 2021-03-30 18:54:05.959583 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043023 2021-04-01 10:45:00.916278 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479884 2021-04-01 10:45:00.916278 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129587 2021-04-01 10:45:00.916278 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078436 2021-03-19 16:00:00.303051 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761100 2021-03-30 18:54:05.959583 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288730 2018-08-04 16:55:32 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Twin Islands L865061 H 40.8715659 -73.78533840000001 2015-01-31 16:00:00 obsr693910 S21625086 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043011 2021-04-01 10:45:00.916278 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185167 2021-04-01 10:45:00.916278 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288614517 2021-03-24 19:20:00.696534 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus N 10 United States US New York US-NY Bronx US-NY-005 Bronx Kill se side L3259204 P 40.7974211 -73.9147818 2015-01-02 12:15:00 obsr584324 S21152171 Incidental P20 EBIRD 3.0 0 G1091952 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507523 2021-03-24 19:20:00.696534 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 1 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634742 2021-03-24 19:20:00.696534 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N 10 United States US New York US-NY Bronx US-NY-005 Bronx Kill se side L3259204 P 40.7974211 -73.9147818 2015-01-02 12:15:00 obsr335050 S21153895 Incidental P20 EBIRD 3.0 0 G1091952 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290721661 2021-03-26 06:07:45.516082 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii N 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288600249 2021-03-24 19:20:00.696534 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 10 United States US New York US-NY Bronx US-NY-005 Bronx Kill se side L3259204 P 40.7974211 -73.9147818 2015-01-02 12:15:00 obsr385404 S21150988 Incidental P20 EBIRD 3.0 0 G1091952 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249388 2021-04-01 10:45:00.916278 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 51 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719781 2021-03-26 06:07:45.516082 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712316 2021-03-26 06:07:45.516082 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 32 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293571020 2021-03-26 06:07:45.516082 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-27 11:00:00 obsr654937 S21568495 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232534 2021-04-01 10:45:00.916278 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 4 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979208 2021-04-01 10:45:00.916278 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus N 4 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913325 2021-04-01 10:45:00.916278 681 species avibase-407E2CA8 Common Merganser Mergus merganser N X United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288250377 2021-04-01 10:45:00.916278 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr559486 S21121776 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292262504 2021-03-26 06:07:45.516082 505 species avibase-C732CB10 American Black Duck Anas rubripes N 57 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-21 09:15:00 obsr94733 S21444200 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287886 2021-03-26 06:07:45.516082 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 10 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289881119 2021-03-26 06:07:45.516082 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 30 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 13:00:00 obsr94733 S21254332 Traveling P22 EBIRD 20.0 1.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288332775 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos N 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr114221 S21129032 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868745 2021-03-26 06:07:45.516082 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 22 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129609 2021-04-01 10:45:00.916278 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 8 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290815896 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 26 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-13 09:25:00 obsr94733 S21329523 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292760703 2021-03-26 06:07:45.516082 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 70 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 09:30:00 obsr94733 S21504340 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356820 2021-04-01 10:45:00.916278 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus N 15 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292792513 2021-03-26 06:07:45.516082 6339 species avibase-8535345B Herring Gull Larus argentatus N 20 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 16:00:00 obsr94733 S21506882 Traveling P22 EBIRD 20.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861668 2021-03-26 06:07:45.516082 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris N 22 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116935 2021-04-01 10:45:00.916278 337 species avibase-694C127A Mute Swan Cygnus olor N 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr132644 S21194151 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308835046 2021-03-26 06:07:45.516082 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 3 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-28 12:30:00 obsr67397 S22782711 Traveling P22 EBIRD 40.0 1.609 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288355800 2021-04-01 10:45:00.916278 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr335540 S21130956 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293698185 2022-03-09 02:50:29.805088 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 60 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991447 2021-03-26 06:07:45.516082 483 species avibase-85625D75 Mallard Anas platyrhynchos N 60 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155606 2021-03-26 06:07:45.516082 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis N 70 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290017596 2021-03-26 06:07:45.516082 622 species avibase-50566E50 Lesser Scaup Aythya affinis N 28 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-09 12:30:00 obsr94733 S21265314 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290213167 2021-04-01 10:45:00.916278 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 8 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288761098 2021-03-30 18:54:05.959583 505 species avibase-C732CB10 American Black Duck Anas rubripes 14 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293129592 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290459688 2015-01-19 14:11:57 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Bronx US-NY-005 30.0 Thain Family Forest L3285445 P 40.8652537 -73.8757181 2015-01-10 11:15:00 obsr642060 S21301255 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206656 2021-04-01 10:45:00.916278 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 25 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294288727 2018-08-04 16:55:32 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Twin Islands L865061 H 40.8715659 -73.78533840000001 2015-01-31 16:00:00 obsr693910 S21625086 Stationary P21 EBIRD 30.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292185161 2021-04-01 10:45:00.916278 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 Male, Adult (1) United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290213166 2021-04-01 10:45:00.916278 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293698189 2022-03-09 02:50:29.805088 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 76 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155608 2021-03-26 06:07:45.516082 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 60 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288712381 2018-08-04 16:52:38 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Bronx US-NY-005 30.0 Spuyten Duyvil Shorefront Park and RR station L1782672 H 40.878834600000005 -73.9205743 2015-01-03 11:37:00 obsr504578 S21160059 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116922 2021-04-01 10:45:00.916278 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 14 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr132644 S21194151 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296761833 2018-08-04 16:53:27 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-17 09:30:00 obsr162067 S21828032 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603302 2021-04-01 10:45:00.916278 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479876 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868728 2021-03-26 06:07:45.516082 303 species avibase-B59E1863 Canada Goose Branta canadensis 116 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761123 2021-03-30 18:54:05.959583 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 25 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287897 2021-03-26 06:07:45.516082 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 8 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232547 2021-04-01 10:45:00.916278 526 species avibase-56CCA717 Northern Pintail Anas acuta 8 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249391 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 20 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289610 2021-04-01 10:45:00.916278 337 species avibase-694C127A Mute Swan Cygnus olor 7 United States US New York US-NY Bronx US-NY-005 30.0 Pelham Bay Park--Pelham Bridge L1049030 H 40.862134000000005 -73.8157413 2015-01-31 13:30:00 obsr693910 S21625148 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712320 2021-03-26 06:07:45.516082 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 80 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979188 2021-04-01 10:45:00.916278 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288812139 2021-04-01 10:45:00.916278 616 species avibase-25C94A8F Greater Scaup Aythya marila 23 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.89294759999999 2015-01-03 10:10:00 obsr34851 S21168046 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185159 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 15 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288733 2018-08-04 16:55:32 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Twin Islands L865061 H 40.8715659 -73.78533840000001 2015-01-31 16:00:00 obsr693910 S21625086 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288355787 2021-04-01 10:45:00.916278 6339 species avibase-8535345B Herring Gull Larus argentatus 14 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr335540 S21130956 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913321 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 30 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613532 2021-04-01 10:45:00.916278 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206654 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 25 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292262494 2021-03-26 06:07:45.516082 505 species avibase-C732CB10 American Black Duck Anas rubripes 60 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-21 09:15:00 obsr94733 S21444200 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043003 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288332762 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 14 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr114221 S21129032 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289881118 2021-03-26 06:07:45.516082 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 80 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 13:00:00 obsr94733 S21254332 Traveling P22 EBIRD 20.0 1.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292760709 2021-03-26 06:07:45.516082 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 126 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 09:30:00 obsr94733 S21504340 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288250364 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 14 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr559486 S21121776 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634763 2021-04-01 10:45:00.916278 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861672 2021-03-26 06:07:45.516082 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 110 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078430 2021-03-19 16:00:00.303051 681 species avibase-407E2CA8 Common Merganser Mergus merganser 17 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991436 2021-03-26 06:07:45.516082 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 80 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290815885 2021-03-26 06:07:45.516082 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 70 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-13 09:25:00 obsr94733 S21329523 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129581 2021-04-01 10:45:00.916278 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 14 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294280328 2018-08-04 16:55:31 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Bartow Pell Mansion L3330677 P 40.849917100000006 -73.7996292 2015-01-31 14:30:00 obsr118406 S21624428 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292670080 2018-08-04 16:54:52 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 20 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-22 14:45:00 obsr267814 S21497294 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868733 2021-03-26 06:07:45.516082 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913316 2021-04-01 10:45:00.916278 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979193 2021-04-01 10:45:00.916278 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712323 2021-03-26 06:07:45.516082 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719799 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 11 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232541 2021-04-01 10:45:00.916278 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 5 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292670084 2018-08-04 16:54:52 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-22 14:45:00 obsr267814 S21497294 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308835042 2021-03-26 06:07:45.516082 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-28 12:30:00 obsr67397 S22782711 Traveling P22 EBIRD 40.0 1.609 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356817 2021-04-01 10:45:00.916278 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634747 2021-04-01 10:45:00.916278 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613516 2021-04-01 10:45:00.916278 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761111 2021-03-30 18:54:05.959583 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507530 2021-03-24 19:20:00.696534 6339 species avibase-8535345B Herring Gull Larus argentatus 5 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991439 2021-03-26 06:07:45.516082 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289881112 2021-03-26 06:07:45.516082 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 13:00:00 obsr94733 S21254332 Traveling P22 EBIRD 20.0 1.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603286 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185156 2021-04-01 10:45:00.916278 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288411616 2021-03-30 18:54:05.959583 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 1 United States US New York US-NY Bronx US-NY-005 30.0 Pelham Bay Park--Goose Island from Einstein Loop L1816694 H 40.86547279999999 -73.820206 2015-01-02 07:48:00 obsr315583 S21134886 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603299 2021-04-01 10:45:00.916278 616 species avibase-25C94A8F Greater Scaup Aythya marila N X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232545 2021-04-01 10:45:00.916278 662 species avibase-FB738385 Bufflehead Bucephala albeola N 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289608 2021-04-01 10:45:00.916278 6339 species avibase-8535345B Herring Gull Larus argentatus N 3 United States US New York US-NY Bronx US-NY-005 30.0 Pelham Bay Park--Pelham Bridge L1049030 H 40.862134000000005 -73.8157413 2015-01-31 13:30:00 obsr693910 S21625148 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613529 2021-04-01 10:45:00.916278 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761101 2021-03-30 18:54:05.959583 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 7 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206657 2021-04-01 10:45:00.916278 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634760 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043014 2021-04-01 10:45:00.916278 616 species avibase-25C94A8F Greater Scaup Aythya marila N 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479887 2021-04-01 10:45:00.916278 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913330 2021-04-01 10:45:00.916278 251 domestic avibase-6835DC6C Graylag Goose (Domestic type) Anser anser (Domestic type) 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129608 2021-04-01 10:45:00.916278 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712326 2021-03-26 06:07:45.516082 27616 species avibase-D77E4B41 American Robin Turdus migratorius 7 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078450 2021-03-19 16:00:00.303051 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043026 2021-04-01 10:45:00.916278 26109 species avibase-BAC33609 Brown Creeper Certhia americana 6 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292262503 2021-03-26 06:07:45.516082 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 9 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-21 09:15:00 obsr94733 S21444200 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289881106 2021-03-26 06:07:45.516082 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 13:00:00 obsr94733 S21254332 Traveling P22 EBIRD 20.0 1.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290815895 2021-03-26 06:07:45.516082 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-13 09:25:00 obsr94733 S21329523 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479899 2021-04-01 10:45:00.916278 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 6 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861677 2021-03-26 06:07:45.516082 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 14 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249386 2021-04-01 10:45:00.916278 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 9 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761127 2021-03-30 18:54:05.959583 303 species avibase-B59E1863 Canada Goose Branta canadensis 20 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216364 2021-03-19 16:00:00.303051 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr423020 S21619307 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868743 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292792519 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 16:00:00 obsr94733 S21506882 Traveling P22 EBIRD 20.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292670078 2018-08-04 16:54:52 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-22 14:45:00 obsr267814 S21497294 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979206 2021-04-01 10:45:00.916278 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 10 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185190 2021-04-01 10:45:00.916278 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719788 2021-03-26 06:07:45.516082 6339 species avibase-8535345B Herring Gull Larus argentatus 9 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287900 2021-03-26 06:07:45.516082 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 7 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293698186 2022-03-09 02:50:29.805088 447 species avibase-C235A4D7 Gadwall Mareca strepera 6 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293571017 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-27 11:00:00 obsr654937 S21568495 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206651 2021-04-01 10:45:00.916278 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290459686 2015-01-19 14:11:57 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Bronx US-NY-005 30.0 Thain Family Forest L3285445 P 40.8652537 -73.8757181 2015-01-10 11:15:00 obsr642060 S21301255 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291950635 2017-01-02 12:31:20 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-14 15:00:00 obsr267814 S21420161 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386259277 2016-03-27 16:24:55 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-31 13:25:00 obsr396876 S28584053 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991441 2021-03-26 06:07:45.516082 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 7 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290017593 2021-03-26 06:07:45.516082 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 8 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-09 12:30:00 obsr94733 S21265314 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356814 2021-04-01 10:45:00.916278 505 species avibase-C732CB10 American Black Duck Anas rubripes 6 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507517 2021-03-24 19:20:00.696534 622 species avibase-50566E50 Lesser Scaup Aythya affinis 6 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232540 2021-04-01 10:45:00.916278 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719786 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292642204 2017-01-02 11:13:55 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-22 11:00:00 obsr94733 S21494990 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129588 2021-04-01 10:45:00.916278 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991438 2021-03-26 06:07:45.516082 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719800 2021-03-26 06:07:45.516082 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979201 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216363 2021-03-19 16:00:00.303051 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr423020 S21619307 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS357721016 2016-01-13 13:44:09 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-18 obsr681853 S26173191 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249381 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712329 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129601 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507524 2021-03-24 19:20:00.696534 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 5 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308835044 2021-03-26 06:07:45.516082 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-28 12:30:00 obsr67397 S22782711 Traveling P22 EBIRD 40.0 1.609 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861679 2021-03-26 06:07:45.516082 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479892 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761130 2021-03-30 18:54:05.959583 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292760710 2021-03-26 06:07:45.516082 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 09:30:00 obsr94733 S21504340 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913329 2021-04-01 10:45:00.916278 622 species avibase-50566E50 Lesser Scaup Aythya affinis 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043019 2021-04-01 10:45:00.916278 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719782 2021-03-26 06:07:45.516082 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290017600 2021-03-26 06:07:45.516082 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-09 12:30:00 obsr94733 S21265314 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129586 2021-04-01 10:45:00.916278 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078435 2021-03-19 16:00:00.303051 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185166 2021-04-01 10:45:00.916278 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206645 2021-04-01 10:45:00.916278 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS327311331 2015-09-22 06:50:19 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 obsr269906 S23938162 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613518 2021-04-01 10:45:00.916278 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289607 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Pelham Bay Park--Pelham Bridge L1049030 H 40.862134000000005 -73.8157413 2015-01-31 13:30:00 obsr693910 S21625148 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296761829 2018-08-04 16:53:27 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-17 09:30:00 obsr162067 S21828032 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185164 2021-04-01 10:45:00.916278 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 14 Female, Adult (11); Male, Adult (3) United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129584 2021-04-01 10:45:00.916278 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 24 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634749 2021-04-01 10:45:00.916278 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761117 2021-03-30 18:54:05.959583 483 species avibase-85625D75 Mallard Anas platyrhynchos 22 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206648 2021-04-01 10:45:00.916278 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 6 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603288 2021-04-01 10:45:00.916278 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS357721018 2016-01-13 13:44:09 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-18 obsr681853 S26173191 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043022 2021-04-01 10:45:00.916278 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078433 2021-03-19 16:00:00.303051 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 15 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479895 2021-04-01 10:45:00.916278 599 hybrid avibase-DD5213C7 Redhead x Ring-necked Duck (hybrid) Aythya americana x collaris 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232549 2021-04-01 10:45:00.916278 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712322 2021-03-26 06:07:45.516082 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290017602 2021-03-26 06:07:45.516082 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-09 12:30:00 obsr94733 S21265314 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868734 2021-03-26 06:07:45.516082 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507535 2021-03-24 19:20:00.696534 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043008 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634754 2021-04-01 10:45:00.916278 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129594 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356821 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290459682 2015-01-19 14:11:57 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Bronx US-NY-005 30.0 Thain Family Forest L3285445 P 40.8652537 -73.8757181 2015-01-10 11:15:00 obsr642060 S21301255 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216369 2021-03-19 16:00:00.303051 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr423020 S21619307 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296761827 2018-08-04 16:53:27 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-17 09:30:00 obsr162067 S21828032 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991432 2021-03-26 06:07:45.516082 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979194 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185177 2021-04-01 10:45:00.916278 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 3 Female, Unknown Age (2); Male, Unknown Age (1) United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287889 2021-03-26 06:07:45.516082 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249395 2021-04-01 10:45:00.916278 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078442 2021-03-19 16:00:00.303051 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613523 2021-04-01 10:45:00.916278 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479881 2021-04-01 10:45:00.916278 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913311 2021-04-01 10:45:00.916278 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603293 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294280325 2018-08-04 16:55:31 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Bartow Pell Mansion L3330677 P 40.849917100000006 -73.7996292 2015-01-31 14:30:00 obsr118406 S21624428 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206644 2021-04-01 10:45:00.916278 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155604 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761119 2021-03-30 18:54:05.959583 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861665 2021-03-26 06:07:45.516082 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206661 2021-04-01 10:45:00.916278 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292185171 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 Unknown Sex, Adult (1) United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290214505 2015-01-10 15:39:22 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-10 12:40:00 obsr228675 S21281391 Traveling P22 EBIRD 20.0 0.161 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287891 2021-03-26 06:07:45.516082 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249392 2021-04-01 10:45:00.916278 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290815887 2021-03-26 06:07:45.516082 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-13 09:25:00 obsr94733 S21329523 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603304 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288724 2018-08-04 16:55:32 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Twin Islands L865061 H 40.8715659 -73.78533840000001 2015-01-31 16:00:00 obsr693910 S21625086 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290466424 2015-01-19 14:11:57 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-11 14:30:00 obsr593385 S21301786 Stationary P21 EBIRD 10.0 2.0 1 G1105472 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634765 2021-04-01 10:45:00.916278 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613534 2021-04-01 10:45:00.916278 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294280329 2018-08-04 16:55:31 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Bartow Pell Mansion L3330677 P 40.849917100000006 -73.7996292 2015-01-31 14:30:00 obsr118406 S21624428 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868730 2021-03-26 06:07:45.516082 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913315 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043009 2021-04-01 10:45:00.916278 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290452146 2015-01-19 14:11:58 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-11 14:30:00 obsr166394 S21300648 Stationary P21 EBIRD 10.0 2.0 1 G1105472 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861680 2021-03-26 06:07:45.516082 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288812140 2021-04-01 10:45:00.916278 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.89294759999999 2015-01-03 10:10:00 obsr34851 S21168046 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129589 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292642199 2017-01-02 11:13:55 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 Unknown Sex, Adult (1) United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-22 11:00:00 obsr94733 S21494990 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719792 2021-03-26 06:07:45.516082 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206642 2021-04-01 10:45:00.916278 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761125 2021-03-30 18:54:05.959583 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292792516 2021-03-26 06:07:45.516082 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 16:00:00 obsr94733 S21506882 Traveling P22 EBIRD 20.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185172 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 Unknown Sex, Adult (1) United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078438 2021-03-19 16:00:00.303051 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308835041 2021-03-26 06:07:45.516082 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-28 12:30:00 obsr67397 S22782711 Traveling P22 EBIRD 40.0 1.609 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293698184 2022-03-09 02:50:29.805088 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216373 2021-03-19 16:00:00.303051 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr423020 S21619307 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479882 2021-04-01 10:45:00.916278 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292670083 2018-08-04 16:54:52 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-22 14:45:00 obsr267814 S21497294 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991453 2021-03-26 06:07:45.516082 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913326 2021-04-01 10:45:00.916278 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293698194 2022-03-09 02:50:29.805088 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 7 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712318 2021-03-26 06:07:45.516082 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290214504 2015-01-10 15:39:22 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-10 12:40:00 obsr228675 S21281391 Traveling P22 EBIRD 20.0 0.161 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603297 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288250369 2021-04-01 10:45:00.916278 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr559486 S21121776 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289614 2021-04-01 10:45:00.916278 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 11 United States US New York US-NY Bronx US-NY-005 30.0 Pelham Bay Park--Pelham Bridge L1049030 H 40.862134000000005 -73.8157413 2015-01-31 13:30:00 obsr693910 S21625148 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386259281 2016-03-27 16:24:55 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-31 13:25:00 obsr396876 S28584053 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291126268 2021-04-01 10:45:00.916278 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY Bronx US-NY-005 30.0 Nereid Av, 4399 White Plains Road L3155449 P 40.8984 -73.8546 2015-01-13 08:40:00 obsr471789 S21355019 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078439 2021-03-19 16:00:00.303051 662 species avibase-FB738385 Bufflehead Bucephala albeola 200 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292792514 2021-03-26 06:07:45.516082 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 16:00:00 obsr94733 S21506882 Traveling P22 EBIRD 20.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719798 2021-03-26 06:07:45.516082 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979191 2021-04-01 10:45:00.916278 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 5 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292642203 2017-01-02 11:13:55 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-22 11:00:00 obsr94733 S21494990 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290466423 2015-01-19 14:11:57 505 species avibase-C732CB10 American Black Duck Anas rubripes 20 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-11 14:30:00 obsr593385 S21301786 Stationary P21 EBIRD 10.0 2.0 1 G1105472 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761122 2021-03-30 18:54:05.959583 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 69 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288812141 2021-04-01 10:45:00.916278 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 25 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.89294759999999 2015-01-03 10:10:00 obsr34851 S21168046 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185173 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 300 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356824 2021-04-01 10:45:00.916278 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291350839 2017-01-02 12:31:20 681 species avibase-407E2CA8 Common Merganser Mergus merganser 6 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-16 13:47:00 obsr31340 S21373287 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288734 2018-08-04 16:55:32 303 species avibase-B59E1863 Canada Goose Branta canadensis 11 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Twin Islands L865061 H 40.8715659 -73.78533840000001 2015-01-31 16:00:00 obsr693910 S21625086 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861674 2021-03-26 06:07:45.516082 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206655 2021-04-01 10:45:00.916278 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 100 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913328 2021-04-01 10:45:00.916278 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480639 2021-04-01 10:45:00.916278 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634758 2021-04-01 10:45:00.916278 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043033 2021-04-01 10:45:00.916278 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216372 2021-03-19 16:00:00.303051 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr423020 S21619307 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288332767 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr114221 S21129032 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287896 2021-03-26 06:07:45.516082 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 17 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507515 2021-03-24 19:20:00.696534 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116927 2021-04-01 10:45:00.916278 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr132644 S21194151 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290452145 2015-01-19 14:11:58 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 20 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-11 14:30:00 obsr166394 S21300648 Stationary P21 EBIRD 10.0 2.0 1 G1105472 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613527 2021-04-01 10:45:00.916278 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288355792 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr335540 S21130956 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288355794 2021-04-01 10:45:00.916278 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 11 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr335540 S21130956 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603300 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613530 2021-04-01 10:45:00.916278 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288812136 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis N 65 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.89294759999999 2015-01-03 10:10:00 obsr34851 S21168046 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479901 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185176 2021-04-01 10:45:00.916278 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 14 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289613 2021-04-01 10:45:00.916278 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia N 4 United States US New York US-NY Bronx US-NY-005 30.0 Pelham Bay Park--Pelham Bridge L1049030 H 40.862134000000005 -73.8157413 2015-01-31 13:30:00 obsr693910 S21625148 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249394 2021-04-01 10:45:00.916278 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 10 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206658 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 6 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356815 2021-04-01 10:45:00.916278 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 3 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043028 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129593 2021-04-01 10:45:00.916278 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 12 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634761 2021-04-01 10:45:00.916278 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913335 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos N X United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288332769 2021-04-01 10:45:00.916278 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 11 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr114221 S21129032 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291126270 2021-04-01 10:45:00.916278 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N 10 United States US New York US-NY Bronx US-NY-005 30.0 Nereid Av, 4399 White Plains Road L3155449 P 40.8984 -73.8546 2015-01-13 08:40:00 obsr471789 S21355019 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232532 2021-04-01 10:45:00.916278 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 12 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116929 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 11 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr132644 S21194151 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288250371 2021-04-01 10:45:00.916278 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 11 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr559486 S21121776 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979192 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 6 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288250367 2021-04-01 10:45:00.916278 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr559486 S21121776 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116925 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr132644 S21194151 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288332765 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr114221 S21129032 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288355790 2021-04-01 10:45:00.916278 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr335540 S21130956 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712327 2021-03-26 06:07:45.516082 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 Male, Adult (1) United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991449 2021-03-26 06:07:45.516082 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 Male, Adult (1) United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293571021 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-27 11:00:00 obsr654937 S21568495 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292670081 2018-08-04 16:54:52 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-22 14:45:00 obsr267814 S21497294 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155614 2021-03-26 06:07:45.516082 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719794 2021-03-26 06:07:45.516082 681 species avibase-407E2CA8 Common Merganser Mergus merganser 23 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289356822 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 14 Male, Adult (4); Unknown Sex and Age (10) United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293698193 2022-03-09 02:50:29.805088 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292979207 2021-04-01 10:45:00.916278 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 25 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290466428 2015-01-19 14:11:57 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-11 14:30:00 obsr593385 S21301786 Stationary P21 EBIRD 10.0 2.0 1 G1105472 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290452456 2015-01-19 14:11:58 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-11 14:30:00 obsr166394 S21300648 Stationary P21 EBIRD 10.0 2.0 1 G1105472 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479874 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 500 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289078431 2021-03-19 16:00:00.303051 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 450 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS358043001 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos 500 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289712334 2021-03-26 06:07:45.516082 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603284 2021-04-01 10:45:00.916278 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291950636 2017-01-02 12:31:20 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-14 15:00:00 obsr267814 S21420161 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507514 2021-03-24 19:20:00.696534 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 9 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185187 2021-04-01 10:45:00.916278 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043030 2021-04-01 10:45:00.916278 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979203 2021-04-01 10:45:00.916278 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206671 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249383 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479903 2021-04-01 10:45:00.916278 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292792521 2021-03-26 06:07:45.516082 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 16:00:00 obsr94733 S21506882 Traveling P22 EBIRD 20.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293571024 2021-03-26 06:07:45.516082 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-27 11:00:00 obsr654937 S21568495 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913333 2021-04-01 10:45:00.916278 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288725 2018-08-04 16:55:32 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Twin Islands L865061 H 40.8715659 -73.78533840000001 2015-01-31 16:00:00 obsr693910 S21625086 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232539 2021-04-01 10:45:00.916278 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155613 2021-03-26 06:07:45.516082 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296761838 2018-08-04 16:53:27 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-17 09:30:00 obsr162067 S21828032 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719789 2021-03-26 06:07:45.516082 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613514 2021-04-01 10:45:00.916278 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293561050 2015-01-27 14:26:21 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-27 13:00:00 obsr689106 S21567780 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634745 2021-04-01 10:45:00.916278 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991446 2021-03-26 06:07:45.516082 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294280322 2018-08-04 16:55:31 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Bartow Pell Mansion L3330677 P 40.849917100000006 -73.7996292 2015-01-31 14:30:00 obsr118406 S21624428 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290017598 2021-03-26 06:07:45.516082 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-09 12:30:00 obsr94733 S21265314 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868741 2021-03-26 06:07:45.516082 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386259284 2016-03-27 16:24:55 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-31 13:25:00 obsr396876 S28584053 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761107 2021-03-30 18:54:05.959583 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356813 2021-04-01 10:45:00.916278 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292670077 2018-08-04 16:54:52 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-22 14:45:00 obsr267814 S21497294 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356818 2021-04-01 10:45:00.916278 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206673 2021-04-01 10:45:00.916278 662 species avibase-FB738385 Bufflehead Bucephala albeola 6 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603291 2021-04-01 10:45:00.916278 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290815892 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-13 09:25:00 obsr94733 S21329523 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634752 2021-04-01 10:45:00.916278 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155612 2021-03-26 06:07:45.516082 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991442 2021-03-26 06:07:45.516082 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719797 2021-03-26 06:07:45.516082 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 7 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761126 2021-03-30 18:54:05.959583 681 species avibase-407E2CA8 Common Merganser Mergus merganser 16 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479891 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078446 2021-03-19 16:00:00.303051 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287883 2021-03-26 06:07:45.516082 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 9 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292642198 2017-01-02 11:13:55 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-22 11:00:00 obsr94733 S21494990 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216368 2021-03-19 16:00:00.303051 526 species avibase-56CCA717 Northern Pintail Anas acuta 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr423020 S21619307 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293571029 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-27 11:00:00 obsr654937 S21568495 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913327 2021-04-01 10:45:00.916278 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 6 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292262499 2021-03-26 06:07:45.516082 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-21 09:15:00 obsr94733 S21444200 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290017603 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-09 12:30:00 obsr94733 S21265314 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296761828 2018-08-04 16:53:27 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-17 09:30:00 obsr162067 S21828032 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293698181 2022-03-09 02:50:29.805088 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290459681 2015-01-19 14:11:57 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Bronx US-NY-005 30.0 Thain Family Forest L3285445 P 40.8652537 -73.8757181 2015-01-10 11:15:00 obsr642060 S21301255 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868738 2021-03-26 06:07:45.516082 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185184 2021-04-01 10:45:00.916278 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507529 2021-03-24 19:20:00.696534 352 spuh avibase-F9EC83D6 swan sp. Cygnus sp. X United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613521 2021-04-01 10:45:00.916278 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043018 2021-04-01 10:45:00.916278 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 5 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979197 2021-04-01 10:45:00.916278 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249399 2021-04-01 10:45:00.916278 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129598 2021-04-01 10:45:00.916278 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861678 2021-03-26 06:07:45.516082 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712330 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216375 2021-03-19 16:00:00.303051 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr423020 S21619307 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292262500 2021-03-26 06:07:45.516082 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-21 09:15:00 obsr94733 S21444200 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078447 2021-03-19 16:00:00.303051 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249400 2021-04-01 10:45:00.916278 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155601 2021-03-26 06:07:45.516082 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613528 2021-04-01 10:45:00.916278 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr584324 S21151973 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761109 2021-03-30 18:54:05.959583 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129599 2021-04-01 10:45:00.916278 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979198 2021-04-01 10:45:00.916278 622 species avibase-50566E50 Lesser Scaup Aythya affinis 4 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185185 2021-04-01 10:45:00.916278 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507534 2021-03-24 19:20:00.696534 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719791 2021-03-26 06:07:45.516082 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292670082 2018-08-04 16:54:52 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-22 14:45:00 obsr267814 S21497294 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991450 2021-03-26 06:07:45.516082 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913334 2021-04-01 10:45:00.916278 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603298 2021-04-01 10:45:00.916278 11371 species avibase-75600969 Northern Flicker Colaptes auratus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr385404 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289881113 2021-03-26 06:07:45.516082 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 13:00:00 obsr94733 S21254332 Traveling P22 EBIRD 20.0 1.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296761835 2018-08-04 16:53:27 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-01-17 09:30:00 obsr162067 S21828032 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293698182 2022-03-09 02:50:29.805088 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206665 2021-04-01 10:45:00.916278 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634759 2021-04-01 10:45:00.916278 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr335050 S21153896 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292760704 2021-03-26 06:07:45.516082 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 09:30:00 obsr94733 S21504340 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356812 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232548 2021-04-01 10:45:00.916278 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386259283 2016-03-27 16:24:55 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-31 13:25:00 obsr396876 S28584053 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292670076 2018-08-04 16:54:52 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-22 14:45:00 obsr267814 S21497294 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291249384 2021-04-01 10:45:00.916278 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 23 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386259278 2016-03-27 16:24:55 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-31 13:25:00 obsr396876 S28584053 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913314 2021-04-01 10:45:00.916278 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 12 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr496843 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979204 2021-04-01 10:45:00.916278 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 15 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr471789 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290017601 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 26 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-09 12:30:00 obsr94733 S21265314 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155610 2021-03-26 06:07:45.516082 505 species avibase-C732CB10 American Black Duck Anas rubripes 30 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719796 2021-03-26 06:07:45.516082 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 26 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr768869 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292792515 2021-03-26 06:07:45.516082 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 16:00:00 obsr94733 S21506882 Traveling P22 EBIRD 20.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290815894 2021-03-26 06:07:45.516082 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 22 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-13 09:25:00 obsr94733 S21329523 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206672 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Orchard Beach & parking lot L1032818 H 40.86612589999999 -73.79430500000001 2015-01-10 09:30:00 obsr228675 S21280666 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308835045 2021-03-26 06:07:45.516082 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-28 12:30:00 obsr67397 S22782711 Traveling P22 EBIRD 40.0 1.609 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712324 2021-03-26 06:07:45.516082 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 29 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288634744 2021-03-24 19:20:00.696534 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Bronx US-NY-005 Bronx Kill se side L3259204 P 40.7974211 -73.9147818 2015-01-02 12:15:00 obsr335050 S21153895 Incidental P20 EBIRD 3.0 0 G1091952 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216365 2021-03-19 16:00:00.303051 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr423020 S21619307 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232543 2021-04-01 10:45:00.916278 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 8 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr439605 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356827 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr147689 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129606 2021-04-01 10:45:00.916278 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 14 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr775727 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288600251 2021-03-24 19:20:00.696534 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Bronx US-NY-005 Bronx Kill se side L3259204 P 40.7974211 -73.9147818 2015-01-02 12:15:00 obsr385404 S21150988 Incidental P20 EBIRD 3.0 0 G1091952 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292760702 2021-03-26 06:07:45.516082 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 22 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 09:30:00 obsr94733 S21504340 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043017 2021-04-01 10:45:00.916278 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr681853 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479890 2021-04-01 10:45:00.916278 505 species avibase-C732CB10 American Black Duck Anas rubripes 6 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80946999999999 2015-01-17 08:30:00 obsr575843 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287899 2021-03-26 06:07:45.516082 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 11 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L1089906 H 40.872409600000005 -73.8055301 2015-01-31 14:30:00 obsr693910 S21625037 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293698191 2022-03-09 02:50:29.805088 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 22 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293571022 2021-03-26 06:07:45.516082 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 11 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-27 11:00:00 obsr654937 S21568495 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507519 2021-03-24 19:20:00.696534 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.89786779999999 -73.9124419 2015-01-11 09:30:00 obsr566763 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991434 2021-03-26 06:07:45.516082 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 34 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288614519 2021-03-24 19:20:00.696534 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 Bronx Kill se side L3259204 P 40.7974211 -73.9147818 2015-01-02 12:15:00 obsr584324 S21152171 Incidental P20 EBIRD 3.0 0 G1091952 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290459679 2015-01-19 14:11:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Bronx US-NY-005 30.0 Thain Family Forest L3285445 P 40.8652537 -73.8757181 2015-01-10 11:15:00 obsr642060 S21301255 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291350841 2017-01-02 12:31:20 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 16 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-16 13:47:00 obsr31340 S21373287 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861673 2021-03-26 06:07:45.516082 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 30 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868742 2021-03-26 06:07:45.516082 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 18 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185188 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078449 2021-03-19 16:00:00.303051 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-04 12:29:00 obsr692617 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289881114 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 22 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 13:00:00 obsr94733 S21254332 Traveling P22 EBIRD 20.0 1.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292262502 2021-03-26 06:07:45.516082 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 29 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-21 09:15:00 obsr94733 S21444200 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290017594 2021-03-26 06:07:45.516082 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-09 12:30:00 obsr94733 S21265314 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868739 2021-03-26 06:07:45.516082 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155598 2021-03-26 06:07:45.516082 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289861675 2021-03-26 06:07:45.516082 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 6 Female, Adult (2); Male, Adult (4) United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 09:20:00 obsr94733 S21252670 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289712317 2021-03-26 06:07:45.516082 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 18 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-07 09:50:00 obsr94733 S21240415 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289881115 2021-03-26 06:07:45.516082 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 6 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-08 13:00:00 obsr94733 S21254332 Traveling P22 EBIRD 20.0 1.25 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290815883 2021-03-26 06:07:45.516082 456 species avibase-D201EB72 American Wigeon Mareca americana 18 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-13 09:25:00 obsr94733 S21329523 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292760712 2021-03-26 06:07:45.516082 681 species avibase-407E2CA8 Common Merganser Mergus merganser 16 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 09:30:00 obsr94733 S21504340 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292262493 2021-03-26 06:07:45.516082 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 10 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-21 09:15:00 obsr94733 S21444200 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290991444 2021-03-26 06:07:45.516082 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 9 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-14 09:25:00 obsr94733 S21343851 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291249390 2021-04-01 10:45:00.916278 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 18 Female, Adult (8); Male, Adult (10) United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-16 08:43:00 obsr94733 S21365102 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293698180 2022-03-09 02:50:29.805088 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291155597 2021-03-26 06:07:45.516082 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 12 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr94733 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289868726 2021-03-26 06:07:45.516082 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 9 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289868729 2021-03-26 06:07:45.516082 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr94733 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293698187 2022-03-09 02:50:29.805088 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-28 09:30:00 obsr94733 S21578464 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292760705 2021-03-26 06:07:45.516082 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 09:30:00 obsr94733 S21504340 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288761131 2021-03-30 18:54:05.959583 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-03 07:45:00 obsr654937 S21163863 Traveling P22 EBIRD 285.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185178 2021-04-01 10:45:00.916278 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 Male, Adult (1) United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.876887700000005 -73.78981230000001 2015-01-20 10:43:00 obsr471789 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292166166 2021-04-01 10:47:08.851048 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Wall St. Binghamton L255273 P 42.10242720000001 -75.9146586 2015-01-20 11:30:00 obsr325492 S21437281 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291473173 2015-01-17 15:43:05 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 09:35:00 obsr325492 S21383262 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293142383 2021-03-30 19:03:14.123633 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 12 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-25 13:53:00 obsr99508 S21534403 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292916178 2021-03-19 16:02:45.308962 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-24 11:52:00 obsr325492 S21516841 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291624457 2018-08-04 16:53:53 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 15 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-18 07:55:00 obsr423934 S21395142 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275328 2018-08-04 16:53:23 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 10:30:00 obsr760620 S21367326 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095715 2018-08-04 16:54:45 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-20 08:15:00 obsr534674 S21431618 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275049 2021-04-01 10:47:08.851048 662 species avibase-FB738385 Bufflehead Bucephala albeola 8 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-16 10:00:00 obsr760620 S21367302 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171786 2021-03-30 19:03:14.123633 681 species avibase-407E2CA8 Common Merganser Mergus merganser 12 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-25 09:54:00 obsr760620 S21536684 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293749013 2018-08-04 16:55:23 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L2146812 P 42.09197 -76.06111 2015-01-28 15:30:00 obsr534674 S21582626 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421153 2018-08-04 16:53:01 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-10 11:45:00 obsr423934 S21298150 Traveling P22 EBIRD 15.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291916258 2018-08-04 16:54:02 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Broome US-NY-007 28.0 42.4014x-76.0151 - Jan 19, 2015, 1:12 PM L3303719 P 42.401446 -76.015108 2015-01-19 13:12:00 obsr476925 S21417392 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292880456 2021-03-30 19:03:14.123633 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 09:40:00 obsr456332 S21513772 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293253985 2015-01-25 20:41:34 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 6 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 3120-3186 Main Street L3316502 P 42.15793 -75.60163 2015-01-25 12:12:00 obsr99508 S21543036 Stationary P21 EBIRD 2.0 1.0 1 G1123306 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291429057 2018-08-04 16:53:23 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-16 09:00:00 obsr456332 S21379721 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291211236 2021-03-30 19:03:14.123633 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-15 13:30:00 obsr534674 S21362004 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625504 2018-08-04 16:53:54 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 15 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-18 08:48:00 obsr423934 S21395231 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292207508 2021-03-30 19:03:14.123633 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 15:00:00 obsr534674 S21440230 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254145 2018-08-04 16:55:14 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 6 United States US New York US-NY Broome US-NY-007 28.0 320-372 Doolittle Road, 310-372 Dutchtown Road L2584030 P 42.125040000000006 -75.64709 2015-01-25 11:40:00 obsr99508 S21543047 Stationary P21 EBIRD 21.0 1.0 0 G1123309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985252 2021-04-01 10:47:08.851048 622 species avibase-50566E50 Lesser Scaup Aythya affinis 4 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291626177 2018-10-27 08:06:01 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 4 United States US New York US-NY Broome US-NY-007 28.0 Martin Luther King Jr. Memorial Promenade L2467334 H 42.1006345 -75.91548979999999 2015-01-18 09:15:00 obsr423934 S21395296 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293299255 2021-03-30 19:03:14.123633 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 12 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-25 13:50:00 obsr456332 S21546541 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291475349 2015-01-17 15:50:42 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-17 10:30:00 obsr325492 S21383441 Traveling P22 EBIRD 5.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292164342 2021-03-30 19:03:14.123633 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 12 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 16:31:00 obsr52000 S21437135 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291136663 2018-08-04 16:53:21 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 10:15:00 obsr393139 S21355738 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293443453 2021-02-28 20:26:22.473883 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-25 12:46:00 obsr624920 S21558722 Traveling P22 EBIRD 34.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417370 2021-03-30 19:03:14.123633 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1365080 P 42.1336342 -75.89822790000001 2015-01-17 10:00:00 obsr393139 S21378653 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289058140 2018-08-04 16:52:45 26109 species avibase-BAC33609 Brown Creeper Certhia americana 26 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-04 14:42:00 obsr223307 S21189345 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172566 2018-08-04 16:55:29 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-31 11:26:00 obsr624920 S21616021 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095289 2018-08-04 16:54:45 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 10 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 09:30:00 obsr534674 S21431580 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095519 2018-08-04 16:54:45 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Broome US-NY-007 28.0 Port Dickenson Park L1906135 P 42.14136 -75.89749 2015-01-20 08:45:00 obsr534674 S21431599 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293253930 2018-08-04 16:55:14 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 21-217 Centervillage Loop Road L3316564 P 42.15982 -75.60088 2015-01-25 12:31:00 obsr99508 S21543030 Stationary P21 EBIRD 1.0 1.0 1 G1123304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293598445 2021-03-30 19:03:14.123633 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 7 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-27 08:30:00 obsr456332 S21570856 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291426612 2021-04-01 10:47:08.851048 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-15 09:45:00 obsr456332 S21379489 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292915321 2021-03-30 19:03:14.123633 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-24 12:20:00 obsr325492 S21516778 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293848938 2021-03-30 19:03:14.123633 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-29 12:47:00 obsr52000 S21590566 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294005862 2021-03-30 19:03:14.123633 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-30 09:40:00 obsr195505 S21602865 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293589817 2015-01-27 17:21:57 681 species avibase-407E2CA8 Common Merganser Mergus merganser 8 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-22 Stever Dr L1898332 P 42.169582 -75.862128 2015-01-27 16:33:00 obsr52000 S21570128 Traveling P22 EBIRD 48.0 4.667 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120919 2018-08-04 16:55:14 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 21-217 Centervillage Loop Road L3316564 P 42.15982 -75.60088 2015-01-25 12:31:00 obsr223307 S21532819 Stationary P21 EBIRD 1.0 1.0 1 G1123304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292658007 2021-03-30 19:03:14.123633 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-22 17:07:00 obsr52000 S21496386 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291921257 2018-08-04 16:54:02 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-3126 US-11 L3303770 P 42.34318 -75.986756 2015-01-19 13:31:00 obsr476925 S21417730 Stationary P21 EBIRD 2.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298305 2015-01-25 23:24:54 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 3120-3186 Main Street L3316502 P 42.15793 -75.60163 2015-01-25 12:12:00 obsr456332 S21546464 Stationary P21 EBIRD 2.0 1.0 1 G1123306 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293114706 2018-08-04 16:55:14 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Broome US-NY-007 28.0 320-372 Doolittle Road, 310-372 Dutchtown Road L2584030 P 42.125040000000006 -75.64709 2015-01-25 11:40:00 obsr223307 S21532328 Stationary P21 EBIRD 21.0 1.0 0 G1123309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298298 2018-08-04 16:55:14 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Broome US-NY-007 28.0 320-372 Doolittle Road, 310-372 Dutchtown Road L2584030 P 42.125040000000006 -75.64709 2015-01-25 11:40:00 obsr456332 S21546462 Stationary P21 EBIRD 21.0 1.0 0 G1123309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625178 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 08:20:00 obsr423934 S21395195 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250593 2018-08-04 16:53:23 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 09:10:00 obsr534674 S21365214 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291919651 2018-08-04 16:54:02 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Broome US-NY-007 28.0 42.3583x-75.9999 - Jan 19, 2015, 1:24 PM L3303753 P 42.358336 -75.999902 2015-01-19 13:24:00 obsr476925 S21417620 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275606 2018-08-04 16:53:23 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 11:00:00 obsr760620 S21367359 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250980 2018-08-04 16:53:23 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 08:15:00 obsr534674 S21365247 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293117414 2015-01-25 20:41:34 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 3120-3186 Main Street L3316502 P 42.15793 -75.60163 2015-01-25 12:12:00 obsr223307 S21532527 Stationary P21 EBIRD 2.0 1.0 1 G1123306 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292692078 2021-03-30 19:03:14.123633 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-18 12:44:00 obsr624920 S21499162 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291136340 2021-03-30 19:03:14.123633 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 5 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-15 12:15:00 obsr393139 S21355699 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293503932 2021-03-30 19:03:14.123633 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-26 10:00:00 obsr195505 S21563133 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291122708 2021-03-30 19:03:14.123633 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-15 12:05:00 obsr52000 S21354807 Traveling P22 EBIRD 24.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289011400 2021-04-01 10:47:08.851048 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-04 08:07:00 obsr52000 S21185826 Traveling P22 EBIRD 265.0 32.186 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294171376 2016-03-02 21:14:11 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-31 14:45:00 obsr423934 S21615936 Traveling P22 EBIRD 10.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293748821 2021-03-30 19:03:14.123633 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-28 14:15:00 obsr534674 S21582604 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288257957 2018-08-04 16:52:16 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 4 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-01 10:00:00 obsr534674 S21121060 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292461620 2021-03-30 19:03:14.123633 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-21 08:55:00 obsr605122 S21480844 Stationary P21 EBIRD 10.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292150140 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-01-20 15:40:00 obsr52000 S21436012 Traveling P22 EBIRD 16.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298315 2018-08-04 16:55:15 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 21-217 Centervillage Loop Road L3316564 P 42.15982 -75.60088 2015-01-25 12:31:00 obsr456332 S21546466 Stationary P21 EBIRD 1.0 1.0 1 G1123304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498877 2018-08-04 16:53:53 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-17 16:15:00 obsr456332 S21385342 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292975619 2021-03-30 19:03:14.123633 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 9 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-24 16:30:00 obsr456332 S21521147 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545580 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-02 10:06:00 obsr52000 S21146547 Traveling P22 EBIRD 220.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428656 2015-01-17 12:04:54 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Broome US-NY-007 28.0 Treadwell Rd. L3297707 P 42.20824 -75.93565459999999 2015-01-15 12:30:00 obsr456332 S21379674 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095287 2018-08-04 16:54:45 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 09:30:00 obsr534674 S21431580 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129437 2015-01-25 13:10:44 447 species avibase-C235A4D7 Gadwall Mareca strepera 3 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-24 16:25:00 obsr325492 S21533457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292466926 2021-03-19 16:02:45.308962 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 15 United States US New York US-NY Broome US-NY-007 28.0 route 79 L3308143 P 42.3214299 -75.9460402 2015-01-21 10:00:00 obsr605122 S21481185 Traveling P22 EBIRD 15.0 11.265 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291419803 2018-08-04 16:52:20 592 species avibase-3072CC16 Redhead Aythya americana 3 United States US New York US-NY Broome US-NY-007 28.0 Bond St., Binghamton L1430873 P 42.1013271 -75.8812401 2015-01-01 11:20:00 obsr456332 S21378840 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288624299 2015-01-02 21:40:39 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-02 07:00:00 obsr534674 S21153051 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298261 2021-03-24 19:20:44.053843 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 14 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr456332 S21546459 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292207511 2021-03-30 19:03:14.123633 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 15:00:00 obsr534674 S21440230 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288778628 2015-01-03 15:35:01 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-03 09:00:00 obsr325492 S21165327 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291603259 2015-01-18 06:18:40 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 01:42:00 obsr195505 S21393329 Traveling P22 EBIRD 86.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292465535 2019-04-02 20:03:27 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-01-21 09:30:00 obsr605122 S21481068 Traveling P22 EBIRD 12.0 6.437 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292655845 2021-03-26 06:09:25.361188 352 spuh avibase-F9EC83D6 swan sp. Cygnus sp. 2 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-22 07:00:00 obsr325492 S21496232 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171373 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 09:15:00 obsr760620 S21536653 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288616186 2015-01-02 21:04:12 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Broome US-NY-007 28.0 Mt. Hunger Rd. L1872096 H 42.3274528 -76.0494316 2015-01-01 13:40:00 obsr624920 S21152348 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172568 2018-08-04 16:55:29 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-31 11:26:00 obsr624920 S21616021 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293749009 2018-08-04 16:55:23 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L2146812 P 42.09197 -76.06111 2015-01-28 15:30:00 obsr534674 S21582626 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275047 2021-04-01 10:47:08.851048 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-16 10:00:00 obsr760620 S21367302 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289718549 2015-01-07 16:20:26 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 21 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 377 Conklin Avenue L3200484 P 42.09931 -75.88229 2015-01-07 14:18:00 obsr456332 S21240915 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421152 2018-08-04 16:53:01 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-10 11:45:00 obsr423934 S21298150 Traveling P22 EBIRD 15.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293598159 2018-08-04 16:55:19 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 08:20:00 obsr456332 S21570835 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298598876 2018-08-04 16:55:22 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Tioughnioga River, below dam L3193015 H 42.3370316 -75.96967579999999 2015-01-28 12:05:00 obsr423934 S21580590 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291937268 2015-01-19 14:52:51 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 6 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-19 12:27:00 obsr195505 S21419035 Traveling P22 EBIRD 107.0 7.113 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291624463 2018-08-04 16:53:53 592 species avibase-3072CC16 Redhead Aythya americana 15 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-18 07:55:00 obsr423934 S21395142 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291425039 2021-04-01 10:47:08.851048 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-15 09:30:00 obsr456332 S21379326 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414333 2021-04-01 10:47:08.851048 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-11 08:23:00 obsr52000 S21297600 Traveling P22 EBIRD 320.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290899446 2021-04-01 10:47:08.851048 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.09052249999999 2015-01-11 11:28:00 obsr624920 S21336643 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292692077 2021-03-30 19:03:14.123633 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-18 12:44:00 obsr624920 S21499162 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291423764 2015-01-17 11:37:00 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Broome US-NY-007 28.0 DeForest St., Binghamton L2689296 P 42.1169495 -75.90437469999999 2015-01-15 09:15:00 obsr456332 S21379172 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290237862 2021-03-26 06:09:25.361188 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Broome US-NY-007 28.0 Victory St. JC L166647 P 42.125027 -75.98304 2015-01-10 13:00:00 obsr624920 S21283511 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293212832 2015-01-25 18:28:26 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-25 07:00:00 obsr534674 S21539972 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289870237 2021-04-01 10:47:08.851048 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Broome US-NY-007 28.0 I-88--Binghamton L3277864 P 42.163969 -75.869272 2015-01-08 13:20:00 obsr587809 S21253331 Traveling P22 EBIRD 12.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292466251 2021-03-19 16:02:45.308962 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 100 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Barker Hill Rd. Bridge L450623 H 42.2985053 -75.9085891 2015-01-21 09:45:00 obsr605122 S21481135 Traveling P22 EBIRD 10.0 3.219 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290413617 2017-08-16 02:23:57 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-11 09:45:00 obsr423934 S21297548 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289011409 2021-04-01 10:47:08.851048 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-04 08:07:00 obsr52000 S21185826 Traveling P22 EBIRD 265.0 32.186 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292915322 2021-03-30 19:03:14.123633 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-24 12:20:00 obsr325492 S21516778 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289866558 2021-04-01 10:47:08.851048 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-365 Water St L2310812 P 42.106379 -75.911075 2015-01-08 12:11:00 obsr52000 S21253033 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293598446 2021-03-30 19:03:14.123633 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-27 08:30:00 obsr456332 S21570856 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293542777 2021-04-01 10:47:08.851048 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 09:40:00 obsr760620 S21566404 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292652563 2017-02-01 21:17:41 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-22 13:51:00 obsr195505 S21495970 Traveling P22 EBIRD 96.0 6.196000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290201938 2020-01-17 17:31:16 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 7 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-10 13:30:00 obsr325492 S21280224 Traveling P22 EBIRD 30.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293511616 2021-03-26 06:09:25.361188 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 4 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-27 07:15:00 obsr605122 S21563758 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288808590 2015-01-03 17:01:59 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-03 07:00:00 obsr534674 S21167782 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292908570 2015-01-24 12:46:22 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-24 11:15:00 obsr760620 S21516249 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294267298 2021-03-19 16:02:45.308962 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus X United States US New York US-NY Broome US-NY-007 28.0 Monroe St L773661 P 42.1023778 -76.0504317 2015-01-31 12:26:00 obsr624920 S21623552 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293543418 2021-04-01 10:47:08.851048 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-27 10:00:00 obsr760620 S21566452 Traveling P22 EBIRD 20.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613253 2017-12-12 18:37:11 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Broome US-NY-007 28.0 Greenwood County Park L998784 H 42.2869951 -76.0881629 2015-01-01 11:54:00 obsr624920 S21151951 Traveling P22 EBIRD 75.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288737214 2021-04-01 10:47:08.851048 6339 species avibase-8535345B Herring Gull Larus argentatus 12 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-03 09:07:00 obsr52000 S21162014 Traveling P22 EBIRD 248.0 24.14 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116224 2015-01-04 17:54:44 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus X United States US New York US-NY Broome US-NY-007 28.0 Jones Park L716848 P 42.0111915 -75.99244240000002 2015-01-04 09:55:00 obsr624920 S21194068 Traveling P22 EBIRD 58.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587629 2015-01-27 19:51:13 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-27 06:55:00 obsr325492 S21569966 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292975620 2021-03-30 19:03:14.123633 483 species avibase-85625D75 Mallard Anas platyrhynchos 20 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-24 16:30:00 obsr456332 S21521147 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293443447 2021-02-28 20:26:22.473883 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-25 12:46:00 obsr624920 S21558722 Traveling P22 EBIRD 34.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293588412 2021-03-26 06:09:25.361188 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 65 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-27 16:30:00 obsr325492 S21570015 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291619681 2015-01-18 09:48:03 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Broome US-NY-007 28.0 Harold Moore Park L278836 P 42.101117 -76.0136825 2015-01-17 11:50:00 obsr624920 S21394733 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290472529 2020-01-17 17:31:16 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 65 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-11 15:30:00 obsr325492 S21302342 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293726256 2015-01-28 15:34:25 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-28 11:00:00 obsr423934 S21580528 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290271849 2015-01-10 19:03:43 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-10 09:30:00 obsr325492 S21286258 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291626173 2018-10-27 08:06:01 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Broome US-NY-007 28.0 Martin Luther King Jr. Memorial Promenade L2467334 H 42.1006345 -75.91548979999999 2015-01-18 09:15:00 obsr423934 S21395296 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292464692 2021-04-01 10:47:08.851048 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 25 United States US New York US-NY Broome US-NY-007 28.0 Mix Rd. L3308113 P 42.236397700000005 -75.8716679 2015-01-21 09:15:00 obsr605122 S21481026 Traveling P22 EBIRD 10.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293733905 2015-01-28 16:27:31 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-28 13:36:00 obsr195505 S21581138 Traveling P22 EBIRD 68.0 5.697 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292820110 2015-01-23 19:14:08 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-23 15:15:00 obsr171042 S21509110 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290714532 2015-01-12 17:13:36 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-12 16:30:00 obsr325492 S21321881 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985247 2021-04-01 10:47:08.851048 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625503 2018-08-04 16:53:54 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-18 08:48:00 obsr423934 S21395231 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293877542 2017-02-01 21:17:41 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-29 13:29:00 obsr195505 S21593041 Traveling P22 EBIRD 115.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290412923 2015-01-11 13:37:54 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 3 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-11 08:38:00 obsr423934 S21297496 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470226 2020-01-17 17:31:16 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-17 08:02:00 obsr325492 S21383040 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293848941 2021-03-30 19:03:14.123633 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-29 12:47:00 obsr52000 S21590566 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545589 2021-04-01 10:47:08.851048 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-02 10:06:00 obsr52000 S21146547 Traveling P22 EBIRD 220.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095518 2018-08-04 16:54:45 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Broome US-NY-007 28.0 Port Dickenson Park L1906135 P 42.14136 -75.89749 2015-01-20 08:45:00 obsr534674 S21431599 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288688114 2021-03-24 19:20:44.053843 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-02 obsr223307 S21136871 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288619521 2021-03-19 16:02:45.308962 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-02 14:52:00 obsr624920 S21152689 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291696434 2018-08-04 16:53:54 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 08:21:00 obsr195505 S21400406 Traveling P22 EBIRD 79.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291422462 2015-01-17 11:29:56 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Broome US-NY-007 28.0 Bond Street L3200480 P 42.1007 -75.88074 2015-01-11 09:00:00 obsr456332 S21379067 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293443189 2021-03-24 19:20:44.053843 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.09052249999999 2015-01-25 10:27:00 obsr624920 S21558695 Traveling P22 EBIRD 48.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291486876 2021-03-24 19:20:44.053843 341 species avibase-B86C504C Trumpeter Swan Cygnus buccinator 3 United States US New York US-NY Broome US-NY-007 28.0 Kirkwood Backyard L518236 P 42.0855596 -75.7881171 2015-01-16 08:32:00 obsr52763 S21384373 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292461621 2021-03-30 19:03:14.123633 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-21 08:55:00 obsr605122 S21480844 Stationary P21 EBIRD 10.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294071045 2021-02-28 20:26:22.473883 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-30 16:03:00 obsr624920 S21608165 Traveling P22 EBIRD 19.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291426610 2021-04-01 10:47:08.851048 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-15 09:45:00 obsr456332 S21379489 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291324743 2021-03-19 16:02:45.308962 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 16 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-16 16:30:00 obsr325492 S21371423 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288507298 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-02 14:25:00 obsr99508 S21143109 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293665989 2021-03-19 16:02:45.308962 20829 species avibase-B9B272F4 Common Raven Corvus corax 30 United States US New York US-NY Broome US-NY-007 28.0 Broome County Landfill L2494208 H 42.2422743 -75.97730229999999 2015-01-27 23:30:00 obsr195505 S21575895 Traveling P22 EBIRD 40.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291423035 2015-01-17 11:33:20 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin Ave. L1878587 P 42.098759 -75.8831499 2015-01-15 09:00:00 obsr456332 S21379113 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292692241 2018-08-04 16:53:57 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 13:04:00 obsr624920 S21499177 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289173893 2015-01-04 20:42:13 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-04 07:00:00 obsr534674 S21198475 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291122710 2021-03-30 19:03:14.123633 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-15 12:05:00 obsr52000 S21354807 Traveling P22 EBIRD 24.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293670088 2021-04-01 10:47:08.851048 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-28 07:26:00 obsr52000 S21576241 Traveling P22 EBIRD 24.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289027869 2021-03-26 06:09:25.361188 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-407-445 Smith Hill Rd L2029848 P 42.349905 -76.01804200000001 2015-01-04 13:13:00 obsr223307 S21187138 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293881704 2021-04-01 10:47:08.851048 20829 species avibase-B9B272F4 Common Raven Corvus corax 5 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-29 06:55:00 obsr325492 S21593364 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116994 2015-01-01 09:54:41 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-01 08:16:00 obsr52000 S21110568 Stationary P21 EBIRD 97.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288997564 2021-03-24 19:20:44.053843 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-04 11:55:00 obsr223307 S21184758 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625184 2021-04-01 10:47:08.851048 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 08:20:00 obsr423934 S21395195 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291473178 2015-01-17 15:43:05 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 09:35:00 obsr325492 S21383262 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290843189 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Broome US-NY-007 28.0 K-mart L1359831 P 42.1053355 -75.905288 2015-01-13 01:15:00 obsr393139 S21331872 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290822836 2015-01-13 12:00:07 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-13 10:25:00 obsr195505 S21330137 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292526174 2015-01-21 19:25:22 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Deposit - 42.0546x-75.4289 - Jan 21, 2015, 10:58 AM L3307876 P 42.054611 -75.428871 2015-01-21 10:58:00 obsr596231 S21485931 Incidental P20 EBIRD 2.0 0 G1118887 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291620125 2021-03-19 16:02:45.308962 337 species avibase-694C127A Mute Swan Cygnus olor X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-17 12:20:00 obsr624920 S21394785 Traveling P22 EBIRD 17.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292278720 2015-01-21 19:25:22 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Deposit - 42.0546x-75.4289 - Jan 21, 2015, 10:58 AM L3307876 P 42.054611 -75.428871 2015-01-21 10:58:00 obsr223003 S21445659 Incidental P20 EBIRD 2.0 0 G1118887 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289482730 2021-04-01 10:47:08.851048 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-06 12:26:00 obsr52000 S21222750 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256006 2015-01-01 17:15:21 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-01 07:30:00 obsr534674 S21122273 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290463951 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-11 15:30:00 obsr605122 S21301594 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254193 2021-03-24 19:20:44.053843 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 14 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr99508 S21543052 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288703054 2015-01-03 10:59:36 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin L195377 T 42.03428 -75.80383 2015-01-03 10:58:00 obsr603756 S21159222 Stationary P21 EBIRD 10.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291471527 2020-01-19 11:00:58 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-17 09:02:00 obsr325492 S21383141 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292916186 2021-03-19 16:02:45.308962 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-24 11:52:00 obsr325492 S21516841 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293885371 2021-03-19 16:02:45.308962 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 500 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-29 16:29:00 obsr52000 S21593640 Traveling P22 EBIRD 65.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414260 2021-04-01 10:47:08.851048 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-11 10:15:00 obsr423934 S21297595 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292908790 2021-03-24 19:20:44.053843 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Broome US-NY-007 28.0 Tri-City Airport L2347159 H 42.08439 -76.093867 2015-01-24 11:30:00 obsr760620 S21516269 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292750671 2015-01-23 11:22:24 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-23 07:00:00 obsr534674 S21503538 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293741722 2018-08-04 16:55:23 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Broome US-NY-007 28.0 Confluence Park L2473323 H 42.092993 -75.91611540000001 2015-01-28 16:27:00 obsr52000 S21582019 Traveling P22 EBIRD 50.0 12.874 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290012969 2021-03-26 06:09:25.361188 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-08 14:00:00 obsr423934 S21264895 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289119969 2015-01-04 18:03:52 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-04 13:31:00 obsr624920 S21194369 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291136672 2018-08-04 16:53:21 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 10:15:00 obsr393139 S21355738 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095714 2018-08-04 16:54:45 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-20 08:15:00 obsr534674 S21431618 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292575377 2015-01-22 05:11:48 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-21 13:40:00 obsr195505 S21489709 Traveling P22 EBIRD 95.0 5.729 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292151453 2015-01-20 16:04:12 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Broome US-NY-007 28.0 Harold Moore Park L1464971 H 42.099743 -76.0129688 2015-01-20 16:00:00 obsr52000 S21436140 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289339802 2021-03-19 16:02:45.308962 447 species avibase-C235A4D7 Gadwall Mareca strepera 40 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-05 15:50:00 obsr325492 S21211388 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293299254 2021-03-30 19:03:14.123633 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-25 13:50:00 obsr456332 S21546541 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192429 2015-01-10 14:08:05 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-10 07:00:00 obsr534674 S21279456 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292759929 2015-01-23 12:44:44 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-23 08:17:00 obsr195505 S21504293 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293891942 2021-03-19 16:02:45.308962 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 200 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-01-29 16:00:00 obsr534674 S21594108 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292785822 2018-08-04 16:54:55 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-23 13:36:00 obsr195505 S21506362 Traveling P22 EBIRD 109.0 6.968 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250977 2018-08-04 16:53:23 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis X United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 08:15:00 obsr534674 S21365247 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289535205 2015-01-06 17:48:36 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-06 06:55:00 obsr325492 S21226919 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292468551 2015-01-21 13:59:14 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Cherry Valley Road L3308169 P 42.2815953 -76.0516334 2015-01-21 11:45:00 obsr605122 S21481313 Traveling P22 EBIRD 10.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681845 2018-08-04 16:53:56 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 10:00:00 obsr534674 S21399495 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292692551 2018-08-04 16:53:58 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-18 14:28:00 obsr624920 S21499197 Traveling P22 EBIRD 22.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288215627 2021-03-26 06:09:25.361188 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-01 13:00:00 obsr579000 S21118896 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289118149 2015-01-04 18:00:00 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Broome US-NY-007 28.0 Coleman St. Park L1916434 P 42.0338031 -76.02144240000001 2015-01-04 11:22:00 obsr624920 S21194237 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293430795 2018-08-04 16:55:18 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-26 11:10:00 obsr456332 S21557723 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292798137 2021-03-26 06:09:25.361188 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-23 07:10:00 obsr325492 S21507325 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289017276 2021-03-19 16:02:45.308962 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 100 United States US New York US-NY Broome US-NY-007 28.0 Broome County Landfill L2494208 H 42.2422743 -75.97730229999999 2015-01-04 12:15:00 obsr223307 S21186297 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293346817 2021-03-24 19:20:44.053843 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-26 07:00:00 obsr534674 S21550051 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120504 2015-01-25 12:30:55 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-25 08:45:00 obsr325492 S21532778 Traveling P22 EBIRD 68.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291274865 2021-04-01 10:47:08.851048 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-02 10:30:00 obsr760620 S21367283 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292500601 2021-03-19 16:02:45.308962 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-21 16:25:00 obsr52000 S21483892 Traveling P22 EBIRD 46.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097026 2021-03-24 19:20:44.053843 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 14 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr223307 S21530909 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192161 2021-03-26 06:09:25.361188 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-01-10 09:30:00 obsr534674 S21279429 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291977445 2021-04-01 10:47:08.851048 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Wall St. Binghamton L255273 P 42.10242720000001 -75.9146586 2015-01-19 11:10:00 obsr325492 S21422401 Traveling P22 EBIRD 5.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291424042 2021-04-01 10:47:08.851048 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus X United States US New York US-NY Broome US-NY-007 28.0 Lisle, 302-372 Smith Hill Road L1989308 P 42.34888 -76.02524 2015-01-17 10:45:00 obsr534674 S21379191 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289040824 2018-04-20 14:55:52 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Lisle Park & Keibel Rd. L885144 H 42.350552 -75.98142390000001 2015-01-04 13:28:00 obsr223307 S21188064 Traveling P22 EBIRD 43.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146064 2018-08-04 16:53:21 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-15 12:32:00 obsr195505 S21356577 Traveling P22 EBIRD 92.0 5.906000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292805956 2015-01-23 17:50:46 505 species avibase-C732CB10 American Black Duck Anas rubripes 250 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L270868 P 42.0847408 -76.0845325 2015-01-23 16:06:00 obsr624920 S21508055 Traveling P22 EBIRD 48.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293212831 2015-01-25 18:28:26 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-25 07:00:00 obsr534674 S21539972 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289236440 2021-03-26 06:09:25.361188 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-05 07:50:00 obsr605122 S21203097 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293331918 2015-01-26 08:19:15 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-26 08:00:00 obsr605122 S21548759 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289011414 2021-04-01 10:47:08.851048 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-04 08:07:00 obsr52000 S21185826 Traveling P22 EBIRD 265.0 32.186 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288997560 2021-03-24 19:20:44.053843 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-04 11:55:00 obsr223307 S21184758 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290476391 2015-01-11 17:29:20 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 15 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-11 09:30:00 obsr325492 S21302634 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291624259 2021-04-01 10:47:08.851048 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-18 09:30:00 obsr325492 S21395119 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292741666 2015-01-23 10:12:41 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-23 10:00:00 obsr605122 S21502867 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293436621 2015-01-26 18:58:59 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-26 08:30:00 obsr325492 S21558172 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291478052 2015-01-17 15:59:57 662 species avibase-FB738385 Bufflehead Bucephala albeola 5 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-17 11:30:00 obsr325492 S21383615 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289118142 2015-01-04 18:00:00 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Broome US-NY-007 28.0 Coleman St. Park L1916434 P 42.0338031 -76.02144240000001 2015-01-04 11:22:00 obsr624920 S21194237 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291397795 2015-01-17 08:09:52 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-17 07:40:00 obsr605122 S21377016 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293511612 2021-03-26 06:09:25.361188 681 species avibase-407E2CA8 Common Merganser Mergus merganser 9 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-27 07:15:00 obsr605122 S21563758 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290899442 2021-04-01 10:47:08.851048 6616 species avibase-7E022378 Common Loon Gavia immer X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.09052249999999 2015-01-11 11:28:00 obsr624920 S21336643 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470225 2020-01-17 17:31:16 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-17 08:02:00 obsr325492 S21383040 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290412922 2015-01-11 13:37:54 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-11 08:38:00 obsr423934 S21297496 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291475352 2015-01-17 15:50:42 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-17 10:30:00 obsr325492 S21383441 Traveling P22 EBIRD 5.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289140126 2021-04-01 10:47:08.851048 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 5 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-04 09:00:00 obsr325492 S21196011 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288117000 2015-01-01 09:54:41 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 8 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-01 08:16:00 obsr52000 S21110568 Stationary P21 EBIRD 97.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097036 2021-03-24 19:20:44.053843 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr223307 S21530909 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292581677 2021-03-26 06:09:25.361188 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-22 07:50:00 obsr605122 S21490341 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812881 2021-03-26 06:09:25.361188 681 species avibase-407E2CA8 Common Merganser Mergus merganser 10 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 08:00:00 obsr605122 S21587553 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292908791 2021-03-24 19:20:44.053843 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Broome US-NY-007 28.0 Tri-City Airport L2347159 H 42.08439 -76.093867 2015-01-24 11:30:00 obsr760620 S21516269 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292915320 2021-03-30 19:03:14.123633 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-24 12:20:00 obsr325492 S21516778 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293739339 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-28 11:50:00 obsr325492 S21581608 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985241 2021-04-01 10:47:08.851048 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290949310 2015-01-14 09:22:56 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-14 08:55:00 obsr605122 S21340587 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294103894 2021-03-26 06:09:25.361188 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-31 08:00:00 obsr605122 S21610342 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192158 2021-03-26 06:09:25.361188 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-01-10 09:30:00 obsr534674 S21279429 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290359038 2021-03-26 06:09:25.361188 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-11 08:00:00 obsr605122 S21293150 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298271 2021-03-24 19:20:44.053843 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr456332 S21546459 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291429061 2018-08-04 16:53:23 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-16 09:00:00 obsr456332 S21379721 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288624300 2015-01-02 21:40:39 11371 species avibase-75600969 Northern Flicker Colaptes auratus X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-02 07:00:00 obsr534674 S21153051 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293673649 2015-01-28 08:42:43 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 20 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-28 08:30:00 obsr605122 S21576567 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293838845 2015-01-29 11:52:47 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 11:40:00 obsr605122 S21589711 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250591 2018-08-04 16:53:23 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 09:10:00 obsr534674 S21365214 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290803362 2021-03-26 06:09:25.361188 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-13 08:30:00 obsr605122 S21328368 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291280873 2021-03-24 19:20:44.053843 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-16 13:30:00 obsr423934 S21367828 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291486885 2021-03-24 19:20:44.053843 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Broome US-NY-007 28.0 Kirkwood Backyard L518236 P 42.0855596 -75.7881171 2015-01-16 08:32:00 obsr52763 S21384373 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293665992 2021-03-19 16:02:45.308962 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 1 United States US New York US-NY Broome US-NY-007 28.0 Broome County Landfill L2494208 H 42.2422743 -75.97730229999999 2015-01-27 23:30:00 obsr195505 S21575895 Traveling P22 EBIRD 40.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293671538 2015-01-28 08:10:48 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-28 07:30:00 obsr605122 S21576361 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288778629 2015-01-03 15:35:01 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-03 09:00:00 obsr325492 S21165327 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292759937 2015-01-23 12:44:44 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-23 08:17:00 obsr195505 S21504293 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293726259 2015-01-28 15:34:25 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 5 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-28 11:00:00 obsr423934 S21580528 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414339 2021-04-01 10:47:08.851048 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-11 08:23:00 obsr52000 S21297600 Traveling P22 EBIRD 320.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291421543 2021-03-26 06:09:25.361188 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-08 09:00:00 obsr456332 S21378990 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292466928 2021-03-19 16:02:45.308962 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Broome US-NY-007 28.0 route 79 L3308143 P 42.3214299 -75.9460402 2015-01-21 10:00:00 obsr605122 S21481185 Traveling P22 EBIRD 15.0 11.265 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293260066 2022-03-07 16:16:36.127066 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Broome US-NY-007 28.0 Home - Renee L696123 P 42.1130118 -75.93151329999999 2015-01-24 09:24:00 obsr99508 S21543500 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288433302 2021-03-24 19:20:44.053843 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 10 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-02 obsr223307 S21136871 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290271852 2015-01-10 19:03:43 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 4 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-10 09:30:00 obsr325492 S21286258 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290822843 2015-01-13 12:00:07 26890 species avibase-94A44032 European Starling Sturnus vulgaris 14 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-13 10:25:00 obsr195505 S21330137 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291473168 2015-01-17 15:43:05 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 09:35:00 obsr325492 S21383262 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192431 2015-01-10 14:08:05 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 3 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-10 07:00:00 obsr534674 S21279456 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292469203 2021-03-24 19:20:44.053843 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Broome US-NY-007 28.0 Anderson Road L3308174 P 42.283024 -75.995307 2015-01-21 11:57:00 obsr605122 S21481365 Stationary P21 EBIRD 9.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294035767 2015-01-30 17:37:16 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-30 07:15:00 obsr325492 S21605374 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292888004 2021-03-26 06:09:25.361188 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-24 10:15:00 obsr605122 S21514443 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289027870 2021-03-26 06:09:25.361188 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 11 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-407-445 Smith Hill Rd L2029848 P 42.349905 -76.01804200000001 2015-01-04 13:13:00 obsr223307 S21187138 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291871870 2015-01-19 09:24:10 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-19 09:00:00 obsr605122 S21414062 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428247 2015-01-17 12:00:55 662 species avibase-FB738385 Bufflehead Bucephala albeola 6 United States US New York US-NY Broome US-NY-007 28.0 Swift Rd. L1396474 P 42.2199772 -75.9448922 2015-01-15 00:16:00 obsr456332 S21379627 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917465 2015-01-24 13:33:41 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 15 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-24 08:30:00 obsr325492 S21516942 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292595262 2015-01-22 10:35:36 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-22 10:15:00 obsr605122 S21491489 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290012973 2021-03-26 06:09:25.361188 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-08 14:00:00 obsr423934 S21264895 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545594 2021-04-01 10:47:08.851048 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-02 10:06:00 obsr52000 S21146547 Traveling P22 EBIRD 220.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120499 2015-01-25 12:30:55 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-25 08:45:00 obsr325492 S21532778 Traveling P22 EBIRD 68.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293598444 2021-03-30 19:03:14.123633 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-27 08:30:00 obsr456332 S21570856 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290237856 2021-03-26 06:09:25.361188 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Broome US-NY-007 28.0 Victory St. JC L166647 P 42.125027 -75.98304 2015-01-10 13:00:00 obsr624920 S21283511 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288415809 2021-03-26 06:09:25.361188 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-02 08:00:00 obsr605122 S21135244 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292732574 2021-03-26 06:09:25.361188 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 15 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-23 08:00:00 obsr605122 S21502035 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293543414 2021-04-01 10:47:08.851048 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-27 10:00:00 obsr760620 S21566452 Traveling P22 EBIRD 20.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112728 2021-03-26 06:09:25.361188 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-04 16:00:00 obsr223307 S21193794 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254203 2021-03-24 19:20:44.053843 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr99508 S21543052 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288698483 2021-03-24 19:20:44.053843 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin L195377 T 42.03428 -75.80383 2015-01-03 09:45:00 obsr603756 S21158720 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289292369 2015-01-05 13:34:57 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Glen Aubrey L1421889 P 42.2673968 -76.00450079999999 2015-01-05 11:36:00 obsr223307 S21207497 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292469564 2015-01-21 14:10:28 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Broome US-NY-007 28.0 Route 26 near Glen Aubrey L3308182 P 42.2433875 -76.0144472 2015-01-21 12:10:00 obsr605122 S21481401 Traveling P22 EBIRD 5.0 8.047 5.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288811471 2021-03-26 06:09:25.361188 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Lopke pit 79 L2759036 P 42.3089268 -75.93162059999999 2015-01-03 09:00:00 obsr534674 S21168002 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288617374 2015-01-02 21:09:35 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Broome US-NY-007 28.0 Rt 26 Endicott - Whitney Pt L1871519 P 42.2188833 -76.0242126 2015-01-01 14:18:00 obsr624920 S21152469 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097031 2021-03-24 19:20:44.053843 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr223307 S21530909 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291421106 2015-01-17 11:21:04 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Broome US-NY-007 28.0 Vestal Hills Elementary School L3297591 P 42.0844488 -75.9548405 2015-01-06 15:15:00 obsr456332 S21378947 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254198 2021-03-24 19:20:44.053843 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr99508 S21543052 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298266 2021-03-24 19:20:44.053843 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr456332 S21546459 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289173903 2015-01-04 20:42:13 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-04 07:00:00 obsr534674 S21198475 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681830 2018-08-04 16:53:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 10:00:00 obsr534674 S21399495 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292164341 2021-03-30 19:03:14.123633 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 16:31:00 obsr52000 S21437135 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291427365 2021-04-01 10:47:08.851048 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-15 09:45:00 obsr456332 S21379489 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291698744 2018-08-04 16:53:58 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 13:37:00 obsr195505 S21400597 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291136669 2018-08-04 16:53:21 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 10:15:00 obsr393139 S21355738 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292207504 2021-03-30 19:03:14.123633 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 15:00:00 obsr534674 S21440230 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291471522 2020-01-19 11:00:58 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-17 09:02:00 obsr325492 S21383141 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417374 2021-03-30 19:03:14.123633 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1365080 P 42.1336342 -75.89822790000001 2015-01-17 10:00:00 obsr393139 S21378653 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292898831 2015-01-24 11:53:40 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin L195377 T 42.03428 -75.80383 2015-01-24 11:20:00 obsr603756 S21515467 Stationary P21 EBIRD 15.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288812412 2015-01-03 17:11:44 592 species avibase-3072CC16 Redhead Aythya americana 5 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-03 09:30:00 obsr534674 S21168070 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292750677 2015-01-23 11:22:24 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-23 07:00:00 obsr534674 S21503538 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293172372 2015-01-25 16:07:34 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-25 10:30:00 obsr760620 S21536723 Traveling P22 EBIRD 20.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292465537 2019-04-02 20:03:27 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-01-21 09:30:00 obsr605122 S21481068 Traveling P22 EBIRD 12.0 6.437 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289027875 2021-03-26 06:09:25.361188 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-407-445 Smith Hill Rd L2029848 P 42.349905 -76.01804200000001 2015-01-04 13:13:00 obsr223307 S21187138 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292464691 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Mix Rd. L3308113 P 42.236397700000005 -75.8716679 2015-01-21 09:15:00 obsr605122 S21481026 Traveling P22 EBIRD 10.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289058137 2018-08-04 16:52:45 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-04 14:42:00 obsr223307 S21189345 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256010 2015-01-01 17:15:21 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-01 07:30:00 obsr534674 S21122273 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192437 2015-01-10 14:08:05 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-10 07:00:00 obsr534674 S21279456 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254199 2021-03-24 19:20:44.053843 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr99508 S21543052 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428658 2015-01-17 12:04:54 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 1 United States US New York US-NY Broome US-NY-007 28.0 Treadwell Rd. L3297707 P 42.20824 -75.93565459999999 2015-01-15 12:30:00 obsr456332 S21379674 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288624298 2015-01-02 21:40:39 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-02 07:00:00 obsr534674 S21153051 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112726 2021-03-26 06:09:25.361188 30494 species avibase-240E3390 House Sparrow Passer domesticus 12 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-04 16:00:00 obsr223307 S21193794 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292202894 2021-03-30 19:03:14.123633 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 16:31:00 obsr52000 S21437135 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293358716 2015-01-26 11:22:30 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 8 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-25 13:17:00 obsr171042 S21551005 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288281908 2015-01-01 18:24:20 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-01 16:40:00 obsr605122 S21124657 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293212828 2015-01-25 18:28:26 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-25 07:00:00 obsr534674 S21539972 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097032 2021-03-24 19:20:44.053843 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr223307 S21530909 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146068 2018-08-04 16:53:21 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-15 12:32:00 obsr195505 S21356577 Traveling P22 EBIRD 92.0 5.906000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293726254 2015-01-28 15:34:25 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 40 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-28 11:00:00 obsr423934 S21580528 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292469201 2021-03-24 19:20:44.053843 447 species avibase-C235A4D7 Gadwall Mareca strepera 3 United States US New York US-NY Broome US-NY-007 28.0 Anderson Road L3308174 P 42.283024 -75.995307 2015-01-21 11:57:00 obsr605122 S21481365 Stationary P21 EBIRD 9.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298267 2021-03-24 19:20:44.053843 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr456332 S21546459 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289118141 2015-01-04 18:00:00 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Broome US-NY-007 28.0 Coleman St. Park L1916434 P 42.0338031 -76.02144240000001 2015-01-04 11:22:00 obsr624920 S21194237 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288808596 2015-01-03 17:01:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-03 07:00:00 obsr534674 S21167782 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288433304 2021-03-24 19:20:44.053843 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-02 obsr223307 S21136871 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292759933 2015-01-23 12:44:44 6339 species avibase-8535345B Herring Gull Larus argentatus 8 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-23 08:17:00 obsr195505 S21504293 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293346816 2021-03-24 19:20:44.053843 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-26 07:00:00 obsr534674 S21550051 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292466924 2021-03-19 16:02:45.308962 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Broome US-NY-007 28.0 route 79 L3308143 P 42.3214299 -75.9460402 2015-01-21 10:00:00 obsr605122 S21481185 Traveling P22 EBIRD 15.0 11.265 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301153329 2016-03-02 21:14:11 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-31 14:45:00 obsr423934 S21615936 Traveling P22 EBIRD 10.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292469819 2015-01-21 14:09:37 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 Flint Road L3308190 P 42.2320763 -75.9966373 2015-01-21 00:15:00 obsr605122 S21481425 Traveling P22 EBIRD 10.0 11.265 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292460770 2018-08-04 16:54:48 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-21 08:35:00 obsr605122 S21480780 Stationary P21 EBIRD 10.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420047 2021-03-30 19:03:14.123633 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-02 16:30:00 obsr456332 S21378860 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298302 2018-08-04 16:55:14 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 320-372 Doolittle Road, 310-372 Dutchtown Road L2584030 P 42.125040000000006 -75.64709 2015-01-25 11:40:00 obsr456332 S21546462 Stationary P21 EBIRD 21.0 1.0 0 G1123309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254149 2018-08-04 16:55:14 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 320-372 Doolittle Road, 310-372 Dutchtown Road L2584030 P 42.125040000000006 -75.64709 2015-01-25 11:40:00 obsr99508 S21543047 Stationary P21 EBIRD 21.0 1.0 0 G1123309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291937264 2015-01-19 14:52:51 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-19 12:27:00 obsr195505 S21419035 Traveling P22 EBIRD 107.0 7.113 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681835 2018-08-04 16:53:56 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 10:00:00 obsr534674 S21399495 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294071046 2021-02-28 20:26:22.473883 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-30 16:03:00 obsr624920 S21608165 Traveling P22 EBIRD 19.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293877537 2017-02-01 21:17:41 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-29 13:29:00 obsr195505 S21593041 Traveling P22 EBIRD 115.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291136671 2018-08-04 16:53:21 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 10:15:00 obsr393139 S21355738 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291426605 2021-04-01 10:47:08.851048 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-15 09:45:00 obsr456332 S21379489 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293749012 2018-08-04 16:55:23 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L2146812 P 42.09197 -76.06111 2015-01-28 15:30:00 obsr534674 S21582626 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146060 2018-08-04 16:53:21 292 species avibase-60214D49 Cackling Goose Branta hutchinsii 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-15 12:32:00 obsr195505 S21356577 Traveling P22 EBIRD 92.0 5.906000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298925 2018-08-04 16:55:15 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr456332 S21546514 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241697 2018-08-04 16:52:16 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-01 10:00:00 obsr534674 S21121060 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292259185 2015-01-21 09:25:56 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Broome US-NY-007 28.0 Susquehanna River L3307752 P 42.0944409 -75.90263929999999 2015-01-19 13:30:00 obsr481945 S21443922 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289119967 2015-01-04 18:03:52 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-04 13:31:00 obsr624920 S21194369 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293598153 2018-08-04 16:55:19 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 08:20:00 obsr456332 S21570835 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293542783 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 09:40:00 obsr760620 S21566404 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288619517 2021-03-19 16:02:45.308962 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-02 14:52:00 obsr624920 S21152689 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291620128 2021-03-19 16:02:45.308962 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-17 12:20:00 obsr624920 S21394785 Traveling P22 EBIRD 17.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293764099 2021-04-01 10:47:08.851048 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Broome US-NY-007 28.0 Whitney Point L196903 T 42.32897 -75.96774 2015-01-28 12:45:00 obsr423934 S21583792 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292526173 2015-01-21 19:25:22 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Deposit - 42.0546x-75.4289 - Jan 21, 2015, 10:58 AM L3307876 P 42.054611 -75.428871 2015-01-21 10:58:00 obsr596231 S21485931 Incidental P20 EBIRD 2.0 0 G1118887 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293599133 2021-04-01 10:47:08.851048 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin Ave., old Crowley lot L3322621 P 42.0934772 -75.90346140000001 2015-01-27 09:20:00 obsr456332 S21570905 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293430792 2018-08-04 16:55:18 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-26 11:10:00 obsr456332 S21557723 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289728792 2021-03-26 06:09:25.361188 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-30 Charles St L1811019 P 42.108367 -75.92590600000001 2015-01-07 16:10:00 obsr52000 S21241709 Traveling P22 EBIRD 58.0 40.072 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292975215 2018-08-04 16:55:10 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-24 16:07:00 obsr456332 S21521112 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291419801 2018-08-04 16:52:20 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 Bond St., Binghamton L1430873 P 42.1013271 -75.8812401 2015-01-01 11:20:00 obsr456332 S21378840 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289482728 2021-04-01 10:47:08.851048 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-06 12:26:00 obsr52000 S21222750 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289071164 2018-10-27 08:18:26 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-04 15:36:00 obsr223307 S21190407 Stationary P21 EBIRD 7.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292278719 2015-01-21 19:25:22 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Deposit - 42.0546x-75.4289 - Jan 21, 2015, 10:58 AM L3307876 P 42.054611 -75.428871 2015-01-21 10:58:00 obsr223003 S21445659 Incidental P20 EBIRD 2.0 0 G1118887 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293885370 2021-03-19 16:02:45.308962 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-29 16:29:00 obsr52000 S21593640 Traveling P22 EBIRD 65.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120501 2015-01-25 12:30:55 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 Unknown Sex, Adult (2) United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-25 08:45:00 obsr325492 S21532778 Traveling P22 EBIRD 68.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250589 2018-08-04 16:53:23 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 09:10:00 obsr534674 S21365214 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985253 2021-04-01 10:47:08.851048 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292916460 2015-01-24 13:29:07 6339 species avibase-8535345B Herring Gull Larus argentatus 1 Unknown Sex, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 exchangestreetbridge L208966 P 42.0942378 -75.9080311 2015-01-24 11:45:00 obsr325492 S21516862 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293328859 2018-08-04 16:55:15 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr99508 S21548539 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293114710 2018-08-04 16:55:14 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Broome US-NY-007 28.0 320-372 Doolittle Road, 310-372 Dutchtown Road L2584030 P 42.125040000000006 -75.64709 2015-01-25 11:40:00 obsr223307 S21532328 Stationary P21 EBIRD 21.0 1.0 0 G1123309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291429056 2018-08-04 16:53:23 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-16 09:00:00 obsr456332 S21379721 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146062 2018-08-04 16:53:21 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-15 12:32:00 obsr195505 S21356577 Traveling P22 EBIRD 92.0 5.906000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292575369 2015-01-22 05:11:48 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-21 13:40:00 obsr195505 S21489709 Traveling P22 EBIRD 95.0 5.729 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291603257 2015-01-18 06:18:40 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 01:42:00 obsr195505 S21393329 Traveling P22 EBIRD 86.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288812414 2015-01-03 17:11:44 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-03 09:30:00 obsr534674 S21168070 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289173895 2015-01-04 20:42:13 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-04 07:00:00 obsr534674 S21198475 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293260064 2022-03-07 16:16:36.127066 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Broome US-NY-007 28.0 Home - Renee L696123 P 42.1130118 -75.93151329999999 2015-01-24 09:24:00 obsr99508 S21543500 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291486877 2021-03-24 19:20:44.053843 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Broome US-NY-007 28.0 Kirkwood Backyard L518236 P 42.0855596 -75.7881171 2015-01-16 08:32:00 obsr52763 S21384373 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291471525 2020-01-19 11:00:58 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-17 09:02:00 obsr325492 S21383141 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290271851 2015-01-10 19:03:43 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-10 09:30:00 obsr325492 S21286258 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241700 2018-08-04 16:52:16 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-01 10:00:00 obsr534674 S21121060 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292908569 2015-01-24 12:46:22 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-24 11:15:00 obsr760620 S21516249 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298062 2018-08-04 16:55:12 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin, Conklin Park Road L2583869 P 42.06475 -75.80788000000001 2015-01-25 09:30:00 obsr456332 S21546443 Stationary P21 EBIRD 23.0 1.0 0 G1123313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288215623 2021-03-26 06:09:25.361188 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-01 13:00:00 obsr579000 S21118896 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812883 2021-03-26 06:09:25.361188 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 08:00:00 obsr605122 S21587553 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097027 2021-03-24 19:20:44.053843 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr223307 S21530909 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293331917 2015-01-26 08:19:15 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-26 08:00:00 obsr605122 S21548759 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290472527 2020-01-17 17:31:16 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-11 15:30:00 obsr325492 S21302342 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291696435 2018-08-04 16:53:54 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 08:21:00 obsr195505 S21400406 Traveling P22 EBIRD 79.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292595265 2015-01-22 10:35:36 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 4 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-22 10:15:00 obsr605122 S21491489 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414262 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-11 10:15:00 obsr423934 S21297595 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292785823 2018-08-04 16:54:55 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-23 13:36:00 obsr195505 S21506362 Traveling P22 EBIRD 109.0 6.968 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293726255 2015-01-28 15:34:25 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 7 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-28 11:00:00 obsr423934 S21580528 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290413618 2017-08-16 02:23:57 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-11 09:45:00 obsr423934 S21297548 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254194 2021-03-24 19:20:44.053843 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr99508 S21543052 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192156 2021-03-26 06:09:25.361188 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-01-10 09:30:00 obsr534674 S21279429 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192436 2015-01-10 14:08:05 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-10 07:00:00 obsr534674 S21279456 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288808597 2015-01-03 17:01:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-03 07:00:00 obsr534674 S21167782 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288698480 2021-03-24 19:20:44.053843 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin L195377 T 42.03428 -75.80383 2015-01-03 09:45:00 obsr603756 S21158720 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288624291 2015-01-02 21:40:39 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-02 07:00:00 obsr534674 S21153051 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292581676 2021-03-26 06:09:25.361188 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-22 07:50:00 obsr605122 S21490341 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293170512 2015-01-25 16:01:05 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Broome US-NY-007 28.0 Triangle SF L2913510 H 42.388661600000006 -75.8853455 2015-01-25 11:40:00 obsr760620 S21536576 Traveling P22 EBIRD 30.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293511610 2021-03-26 06:09:25.361188 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-27 07:15:00 obsr605122 S21563758 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293121297 2020-01-17 17:31:16 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-25 10:20:00 obsr325492 S21532865 Traveling P22 EBIRD 22.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292466929 2021-03-19 16:02:45.308962 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Broome US-NY-007 28.0 route 79 L3308143 P 42.3214299 -75.9460402 2015-01-21 10:00:00 obsr605122 S21481185 Traveling P22 EBIRD 15.0 11.265 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293092204 2018-08-04 16:55:12 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin, Conklin Park Road L2583869 P 42.06475 -75.80788000000001 2015-01-25 09:30:00 obsr223307 S21530459 Stationary P21 EBIRD 23.0 1.0 0 G1123313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291477449 2018-08-04 16:53:28 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 3 United States US New York US-NY Broome US-NY-007 28.0 Port Dickinson Comm. Park L242754 P 42.1414743 -75.8954533 2015-01-17 10:50:00 obsr325492 S21383573 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290012978 2021-03-26 06:09:25.361188 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-08 14:00:00 obsr423934 S21264895 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171362 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 09:15:00 obsr760620 S21536653 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955086 2017-08-16 02:23:57 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-30 07:37:00 obsr52000 S21598834 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288778627 2015-01-03 15:35:01 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-03 09:00:00 obsr325492 S21165327 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414334 2021-04-01 10:47:08.851048 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-11 08:23:00 obsr52000 S21297600 Traveling P22 EBIRD 320.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288965037 2015-01-04 09:30:32 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-04 09:15:00 obsr605122 S21182035 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301153234 2016-03-02 21:14:11 251 domestic avibase-6835DC6C Graylag Goose (Domestic type) Anser anser (Domestic type) 3 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-31 14:45:00 obsr423934 S21615936 Traveling P22 EBIRD 10.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116995 2015-01-01 09:54:41 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-01 08:16:00 obsr52000 S21110568 Stationary P21 EBIRD 97.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292575378 2015-01-22 05:11:48 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-21 13:40:00 obsr195505 S21489709 Traveling P22 EBIRD 95.0 5.729 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241216 2015-01-01 16:36:42 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-01 10:30:00 obsr325492 S21121015 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290463334 2017-08-16 02:23:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-11 15:05:00 obsr605122 S21301534 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428662 2015-01-17 12:04:54 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Broome US-NY-007 28.0 Treadwell Rd. L3297707 P 42.20824 -75.93565459999999 2015-01-15 12:30:00 obsr456332 S21379674 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917466 2015-01-24 13:33:41 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-24 08:30:00 obsr325492 S21516942 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292652564 2017-02-01 21:17:41 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-22 13:51:00 obsr195505 S21495970 Traveling P22 EBIRD 96.0 6.196000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254454 2018-08-04 16:55:12 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin, Conklin Park Road L2583869 P 42.06475 -75.80788000000001 2015-01-25 09:30:00 obsr99508 S21543075 Stationary P21 EBIRD 23.0 1.0 0 G1123313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288463643 2022-03-07 16:16:36.127066 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Broome US-NY-007 28.0 Home - Renee L696123 P 42.1130118 -75.93151329999999 2015-01-02 11:46:00 obsr99508 S21139524 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294071044 2021-02-28 20:26:22.473883 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-30 16:03:00 obsr624920 S21608165 Traveling P22 EBIRD 19.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420205 2015-01-17 11:16:44 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-03 09:00:00 obsr456332 S21378875 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428245 2015-01-17 12:00:55 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Broome US-NY-007 28.0 Swift Rd. L1396474 P 42.2199772 -75.9448922 2015-01-15 00:16:00 obsr456332 S21379627 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288723231 2015-01-03 12:23:30 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-03 10:20:00 obsr307329 S21160926 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288701898 2021-03-26 06:09:25.361188 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-03 10:30:00 obsr605122 S21159105 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293749016 2018-08-04 16:55:23 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L2146812 P 42.09197 -76.06111 2015-01-28 15:30:00 obsr534674 S21582626 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291624260 2021-04-01 10:47:08.851048 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-18 09:30:00 obsr325492 S21395119 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291937269 2015-01-19 14:52:51 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 8 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-19 12:27:00 obsr195505 S21419035 Traveling P22 EBIRD 107.0 7.113 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291421293 2021-03-26 06:09:25.361188 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-07 09:00:00 obsr456332 S21378968 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290476387 2015-01-11 17:29:20 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-11 09:30:00 obsr325492 S21302634 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291624464 2018-08-04 16:53:53 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-18 07:55:00 obsr423934 S21395142 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293436632 2015-01-26 18:58:59 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-26 08:30:00 obsr325492 S21558172 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292465532 2019-04-02 20:03:27 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-01-21 09:30:00 obsr605122 S21481068 Traveling P22 EBIRD 12.0 6.437 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146065 2018-08-04 16:53:21 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-15 12:32:00 obsr195505 S21356577 Traveling P22 EBIRD 92.0 5.906000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289140120 2021-04-01 10:47:08.851048 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-04 09:00:00 obsr325492 S21196011 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120502 2015-01-25 12:30:55 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-25 08:45:00 obsr325492 S21532778 Traveling P22 EBIRD 68.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293358714 2015-01-26 11:22:30 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 5 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-25 13:17:00 obsr171042 S21551005 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291426607 2021-04-01 10:47:08.851048 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-15 09:45:00 obsr456332 S21379489 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288997565 2021-03-24 19:20:44.053843 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 5 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-04 11:55:00 obsr223307 S21184758 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294103888 2021-03-26 06:09:25.361188 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-31 08:00:00 obsr605122 S21610342 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292464688 2021-04-01 10:47:08.851048 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Broome US-NY-007 28.0 Mix Rd. L3308113 P 42.236397700000005 -75.8716679 2015-01-21 09:15:00 obsr605122 S21481026 Traveling P22 EBIRD 10.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420804 2021-03-26 06:09:25.361188 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-05 09:00:00 obsr456332 S21378913 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291419802 2018-08-04 16:52:20 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Broome US-NY-007 28.0 Bond St., Binghamton L1430873 P 42.1013271 -75.8812401 2015-01-01 11:20:00 obsr456332 S21378840 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095514 2018-08-04 16:54:45 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris X United States US New York US-NY Broome US-NY-007 28.0 Port Dickenson Park L1906135 P 42.14136 -75.89749 2015-01-20 08:45:00 obsr534674 S21431599 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290359039 2021-03-26 06:09:25.361188 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-11 08:00:00 obsr605122 S21293150 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291473170 2015-01-17 15:43:05 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 09:35:00 obsr325492 S21383262 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289718550 2015-01-07 16:20:26 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 377 Conklin Avenue L3200484 P 42.09931 -75.88229 2015-01-07 14:18:00 obsr456332 S21240915 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290973770 2015-01-14 12:32:33 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-14 11:50:00 obsr605122 S21342599 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290949312 2015-01-14 09:22:56 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 4 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-14 08:55:00 obsr605122 S21340587 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292888006 2021-03-26 06:09:25.361188 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-24 10:15:00 obsr605122 S21514443 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293511347 2017-08-16 02:23:57 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-27 07:27:00 obsr52000 S21563733 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291478048 2015-01-17 15:59:57 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-17 11:30:00 obsr325492 S21383615 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288433305 2021-03-24 19:20:44.053843 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 4 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-02 obsr223307 S21136871 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289027872 2021-03-26 06:09:25.361188 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-407-445 Smith Hill Rd L2029848 P 42.349905 -76.01804200000001 2015-01-04 13:13:00 obsr223307 S21187138 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291425036 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-15 09:30:00 obsr456332 S21379326 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172565 2018-08-04 16:55:29 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-31 11:26:00 obsr624920 S21616021 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292467267 2021-03-24 19:20:44.053843 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 Smith Hill L3308153 P 42.34801470000001 -76.03148459999998 2015-01-21 10:30:00 obsr605122 S21481207 Traveling P22 EBIRD 20.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293877543 2017-02-01 21:17:41 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-29 13:29:00 obsr195505 S21593041 Traveling P22 EBIRD 115.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292916184 2021-03-19 16:02:45.308962 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-24 11:52:00 obsr325492 S21516841 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290201936 2020-01-17 17:31:16 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-10 13:30:00 obsr325492 S21280224 Traveling P22 EBIRD 30.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116222 2015-01-04 17:54:44 447 species avibase-C235A4D7 Gadwall Mareca strepera X United States US New York US-NY Broome US-NY-007 28.0 Jones Park L716848 P 42.0111915 -75.99244240000002 2015-01-04 09:55:00 obsr624920 S21194068 Traveling P22 EBIRD 58.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292759930 2015-01-23 12:44:44 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 5 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-23 08:17:00 obsr195505 S21504293 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293327525 2017-08-16 02:23:57 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-26 07:27:00 obsr52000 S21548444 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289011410 2021-04-01 10:47:08.851048 616 species avibase-25C94A8F Greater Scaup Aythya marila 21 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-04 08:07:00 obsr52000 S21185826 Traveling P22 EBIRD 265.0 32.186 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290134362 2021-03-26 06:09:25.361188 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-10 07:30:00 obsr605122 S21274387 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290237854 2021-03-26 06:09:25.361188 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Broome US-NY-007 28.0 Victory St. JC L166647 P 42.125027 -75.98304 2015-01-10 13:00:00 obsr624920 S21283511 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681833 2018-08-04 16:53:56 27616 species avibase-D77E4B41 American Robin Turdus migratorius 30 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 10:00:00 obsr534674 S21399495 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292805959 2015-01-23 17:50:46 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L270868 P 42.0847408 -76.0845325 2015-01-23 16:06:00 obsr624920 S21508055 Traveling P22 EBIRD 48.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291397797 2015-01-17 08:09:52 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-17 07:40:00 obsr605122 S21377016 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290899440 2021-04-01 10:47:08.851048 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.09052249999999 2015-01-11 11:28:00 obsr624920 S21336643 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112723 2021-03-26 06:09:25.361188 505 species avibase-C732CB10 American Black Duck Anas rubripes 20 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-04 16:00:00 obsr223307 S21193794 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298262 2021-03-24 19:20:44.053843 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr456332 S21546459 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293838843 2015-01-29 11:52:47 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 11:40:00 obsr605122 S21589711 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289118150 2015-01-04 18:00:00 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Broome US-NY-007 28.0 Coleman St. Park L1916434 P 42.0338031 -76.02144240000001 2015-01-04 11:22:00 obsr624920 S21194237 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288415806 2021-03-26 06:09:25.361188 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-02 08:00:00 obsr605122 S21135244 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292732577 2021-03-26 06:09:25.361188 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-23 08:00:00 obsr605122 S21502035 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294035766 2015-01-30 17:37:16 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-30 07:15:00 obsr325492 S21605374 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293212835 2015-01-25 18:28:26 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-25 07:00:00 obsr534674 S21539972 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545590 2021-04-01 10:47:08.851048 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-02 10:06:00 obsr52000 S21146547 Traveling P22 EBIRD 220.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288685767 2021-03-26 06:09:25.361188 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-03 08:50:00 obsr605122 S21157617 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288105900 2021-03-26 06:09:25.361188 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-01 08:45:00 obsr605122 S21109834 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291603260 2015-01-18 06:18:40 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 01:42:00 obsr195505 S21393329 Traveling P22 EBIRD 86.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291871872 2015-01-19 09:24:10 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-19 09:00:00 obsr605122 S21414062 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292750674 2015-01-23 11:22:24 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-23 07:00:00 obsr534674 S21503538 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293543421 2021-04-01 10:47:08.851048 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-27 10:00:00 obsr760620 S21566452 Traveling P22 EBIRD 20.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290822837 2015-01-13 12:00:07 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 7 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-13 10:25:00 obsr195505 S21330137 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293671534 2015-01-28 08:10:48 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-28 07:30:00 obsr605122 S21576361 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290412920 2015-01-11 13:37:54 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 15 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-11 08:38:00 obsr423934 S21297496 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292150143 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-01-20 15:40:00 obsr52000 S21436012 Traveling P22 EBIRD 16.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289040825 2018-04-20 14:55:52 447 species avibase-C235A4D7 Gadwall Mareca strepera 30 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Lisle Park & Keibel Rd. L885144 H 42.350552 -75.98142390000001 2015-01-04 13:28:00 obsr223307 S21188064 Traveling P22 EBIRD 43.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256008 2015-01-01 17:15:21 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 6 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-01 07:30:00 obsr534674 S21122273 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290803360 2021-03-26 06:09:25.361188 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-13 08:30:00 obsr605122 S21328368 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293733906 2015-01-28 16:27:31 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-28 13:36:00 obsr195505 S21581138 Traveling P22 EBIRD 68.0 5.697 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293346818 2021-03-24 19:20:44.053843 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-26 07:00:00 obsr534674 S21550051 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985251 2021-04-01 10:47:08.851048 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613252 2017-12-12 18:37:11 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Broome US-NY-007 28.0 Greenwood County Park L998784 H 42.2869951 -76.0881629 2015-01-01 11:54:00 obsr624920 S21151951 Traveling P22 EBIRD 75.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293172376 2015-01-25 16:07:34 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-25 10:30:00 obsr760620 S21536723 Traveling P22 EBIRD 20.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293673650 2015-01-28 08:42:43 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-28 08:30:00 obsr605122 S21576567 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293670089 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-28 07:26:00 obsr52000 S21576241 Traveling P22 EBIRD 24.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291280870 2021-03-24 19:20:44.053843 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-16 13:30:00 obsr423934 S21367828 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293212829 2015-01-25 18:28:26 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-25 07:00:00 obsr534674 S21539972 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289017275 2021-03-19 16:02:45.308962 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Broome US-NY-007 28.0 Broome County Landfill L2494208 H 42.2422743 -75.97730229999999 2015-01-04 12:15:00 obsr223307 S21186297 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288997563 2021-03-24 19:20:44.053843 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-04 11:55:00 obsr223307 S21184758 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290803361 2021-03-26 06:09:25.361188 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-13 08:30:00 obsr605122 S21328368 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293733904 2015-01-28 16:27:31 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-28 13:36:00 obsr195505 S21581138 Traveling P22 EBIRD 68.0 5.697 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097025 2021-03-24 19:20:44.053843 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr223307 S21530909 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985234 2021-04-01 10:47:08.851048 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293170514 2015-01-25 16:01:05 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Broome US-NY-007 28.0 Triangle SF L2913510 H 42.388661600000006 -75.8853455 2015-01-25 11:40:00 obsr760620 S21536576 Traveling P22 EBIRD 30.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291473177 2015-01-17 15:43:05 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 09:35:00 obsr325492 S21383262 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291475350 2015-01-17 15:50:42 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-17 10:30:00 obsr325492 S21383441 Traveling P22 EBIRD 5.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917461 2015-01-24 13:33:41 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-24 08:30:00 obsr325492 S21516942 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289011408 2021-04-01 10:47:08.851048 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-04 08:07:00 obsr52000 S21185826 Traveling P22 EBIRD 265.0 32.186 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290899441 2021-04-01 10:47:08.851048 591 species avibase-1929E1E1 Canvasback Aythya valisineria X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.09052249999999 2015-01-11 11:28:00 obsr624920 S21336643 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293877541 2017-02-01 21:17:41 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-29 13:29:00 obsr195505 S21593041 Traveling P22 EBIRD 115.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292652562 2017-02-01 21:17:41 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-22 13:51:00 obsr195505 S21495970 Traveling P22 EBIRD 96.0 6.196000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292915326 2021-03-30 19:03:14.123633 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-24 12:20:00 obsr325492 S21516778 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291425729 2021-03-19 16:02:45.308962 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 W.Arterial Rd., Hillcrest L2054811 P 42.1497394 -75.8907115 2015-01-15 09:33:00 obsr456332 S21379400 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293838850 2015-01-29 11:52:47 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 11:40:00 obsr605122 S21589711 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290476390 2015-01-11 17:29:20 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-11 09:30:00 obsr325492 S21302634 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290822835 2015-01-13 12:00:07 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 9 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-13 10:25:00 obsr195505 S21330137 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112731 2021-03-26 06:09:25.361188 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-04 16:00:00 obsr223307 S21193794 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292469818 2015-01-21 14:09:37 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Flint Road L3308190 P 42.2320763 -75.9966373 2015-01-21 00:15:00 obsr605122 S21481425 Traveling P22 EBIRD 10.0 11.265 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625505 2018-08-04 16:53:54 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-18 08:48:00 obsr423934 S21395231 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293436625 2015-01-26 18:58:59 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-26 08:30:00 obsr325492 S21558172 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292732573 2021-03-26 06:09:25.361188 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-23 08:00:00 obsr605122 S21502035 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681836 2018-08-04 16:53:56 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 10:00:00 obsr534674 S21399495 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288624297 2015-01-02 21:40:39 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-02 07:00:00 obsr534674 S21153051 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290973774 2015-01-14 12:32:33 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-14 11:50:00 obsr605122 S21342599 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293543422 2021-04-01 10:47:08.851048 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-27 10:00:00 obsr760620 S21566452 Traveling P22 EBIRD 20.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289173901 2015-01-04 20:42:13 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-04 07:00:00 obsr534674 S21198475 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288778623 2015-01-03 15:35:01 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-03 09:00:00 obsr325492 S21165327 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289118147 2015-01-04 18:00:00 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Broome US-NY-007 28.0 Coleman St. Park L1916434 P 42.0338031 -76.02144240000001 2015-01-04 11:22:00 obsr624920 S21194237 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291937267 2015-01-19 14:52:51 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-19 12:27:00 obsr195505 S21419035 Traveling P22 EBIRD 107.0 7.113 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291274738 2015-01-16 13:05:01 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Broome US-NY-007 28.0 Lamoureux Yard list L1160914 P 42.08124779999999 -75.9837198 2015-01-01 09:00:00 obsr760620 S21367260 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291425037 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-15 09:30:00 obsr456332 S21379326 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292785821 2018-08-04 16:54:55 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-23 13:36:00 obsr195505 S21506362 Traveling P22 EBIRD 109.0 6.968 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288105894 2021-03-26 06:09:25.361188 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-01 08:45:00 obsr605122 S21109834 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254192 2021-03-24 19:20:44.053843 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 6 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr99508 S21543052 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292575376 2015-01-22 05:11:48 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-21 13:40:00 obsr195505 S21489709 Traveling P22 EBIRD 95.0 5.729 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290237861 2021-03-26 06:09:25.361188 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY Broome US-NY-007 28.0 Victory St. JC L166647 P 42.125027 -75.98304 2015-01-10 13:00:00 obsr624920 S21283511 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291168215 2021-03-19 16:02:45.308962 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 16:14:00 obsr52000 S21358369 Traveling P22 EBIRD 63.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288808594 2015-01-03 17:01:59 30494 species avibase-240E3390 House Sparrow Passer domesticus 8 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-03 07:00:00 obsr534674 S21167782 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420202 2015-01-17 11:16:44 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-03 09:00:00 obsr456332 S21378875 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291122709 2021-03-30 19:03:14.123633 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-15 12:05:00 obsr52000 S21354807 Traveling P22 EBIRD 24.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428250 2015-01-17 12:00:55 592 species avibase-3072CC16 Redhead Aythya americana 4 United States US New York US-NY Broome US-NY-007 28.0 Swift Rd. L1396474 P 42.2199772 -75.9448922 2015-01-15 00:16:00 obsr456332 S21379627 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428663 2015-01-17 12:04:54 447 species avibase-C235A4D7 Gadwall Mareca strepera 4 United States US New York US-NY Broome US-NY-007 28.0 Treadwell Rd. L3297707 P 42.20824 -75.93565459999999 2015-01-15 12:30:00 obsr456332 S21379674 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116993 2015-01-01 09:54:41 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-01 08:16:00 obsr52000 S21110568 Stationary P21 EBIRD 97.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812884 2021-03-26 06:09:25.361188 26109 species avibase-BAC33609 Brown Creeper Certhia americana 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 08:00:00 obsr605122 S21587553 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292916180 2021-03-19 16:02:45.308962 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-24 11:52:00 obsr325492 S21516841 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288415802 2021-03-26 06:09:25.361188 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-02 08:00:00 obsr605122 S21135244 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241699 2018-08-04 16:52:16 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-01 10:00:00 obsr534674 S21121060 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192432 2015-01-10 14:08:05 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-10 07:00:00 obsr534674 S21279456 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288463642 2022-03-07 16:16:36.127066 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 Home - Renee L696123 P 42.1130118 -75.93151329999999 2015-01-02 11:46:00 obsr99508 S21139524 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256011 2015-01-01 17:15:21 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-01 07:30:00 obsr534674 S21122273 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288215629 2021-03-26 06:09:25.361188 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-01 13:00:00 obsr579000 S21118896 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293346819 2021-03-24 19:20:44.053843 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-26 07:00:00 obsr534674 S21550051 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545588 2021-04-01 10:47:08.851048 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-02 10:06:00 obsr52000 S21146547 Traveling P22 EBIRD 220.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288737213 2021-04-01 10:47:08.851048 681 species avibase-407E2CA8 Common Merganser Mergus merganser 22 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-03 09:07:00 obsr52000 S21162014 Traveling P22 EBIRD 248.0 24.14 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292750676 2015-01-23 11:22:24 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-23 07:00:00 obsr534674 S21503538 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292759928 2015-01-23 12:44:44 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 4 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-23 08:17:00 obsr195505 S21504293 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288701902 2021-03-26 06:09:25.361188 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-03 10:30:00 obsr605122 S21159105 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289027868 2021-03-26 06:09:25.361188 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 4 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-407-445 Smith Hill Rd L2029848 P 42.349905 -76.01804200000001 2015-01-04 13:13:00 obsr223307 S21187138 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290413614 2017-08-16 02:23:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-11 09:45:00 obsr423934 S21297548 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294103891 2021-03-26 06:09:25.361188 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-31 08:00:00 obsr605122 S21610342 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289040823 2018-04-20 14:55:52 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Lisle Park & Keibel Rd. L885144 H 42.350552 -75.98142390000001 2015-01-04 13:28:00 obsr223307 S21188064 Traveling P22 EBIRD 43.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289140125 2021-04-01 10:47:08.851048 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-04 09:00:00 obsr325492 S21196011 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290412929 2015-01-11 13:37:54 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-11 08:38:00 obsr423934 S21297496 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288811475 2021-03-26 06:09:25.361188 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Broome US-NY-007 28.0 Lopke pit 79 L2759036 P 42.3089268 -75.93162059999999 2015-01-03 09:00:00 obsr534674 S21168002 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293726257 2015-01-28 15:34:25 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-28 11:00:00 obsr423934 S21580528 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290359044 2021-03-26 06:09:25.361188 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-11 08:00:00 obsr605122 S21293150 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291397803 2015-01-17 08:09:52 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-17 07:40:00 obsr605122 S21377016 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275055 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-16 10:00:00 obsr760620 S21367302 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298260 2021-03-24 19:20:44.053843 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr456332 S21546459 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288723230 2015-01-03 12:23:30 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-03 10:20:00 obsr307329 S21160926 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293671536 2015-01-28 08:10:48 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-28 07:30:00 obsr605122 S21576361 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116221 2015-01-04 17:54:44 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Broome US-NY-007 28.0 Jones Park L716848 P 42.0111915 -75.99244240000002 2015-01-04 09:55:00 obsr624920 S21194068 Traveling P22 EBIRD 58.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293598450 2021-03-30 19:03:14.123633 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-27 08:30:00 obsr456332 S21570856 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289473573 2021-03-19 16:02:45.308962 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin L195377 T 42.03428 -75.80383 2015-01-06 12:00:00 obsr603756 S21221948 Stationary P21 EBIRD 20.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292466252 2021-03-19 16:02:45.308962 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Barker Hill Rd. Bridge L450623 H 42.2985053 -75.9085891 2015-01-21 09:45:00 obsr605122 S21481135 Traveling P22 EBIRD 10.0 3.219 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241215 2015-01-01 16:36:42 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-01 10:30:00 obsr325492 S21121015 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290271850 2015-01-10 19:03:43 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-10 09:30:00 obsr325492 S21286258 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290134360 2021-03-26 06:09:25.361188 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-10 07:30:00 obsr605122 S21274387 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292464689 2021-04-01 10:47:08.851048 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 5 United States US New York US-NY Broome US-NY-007 28.0 Mix Rd. L3308113 P 42.236397700000005 -75.8716679 2015-01-21 09:15:00 obsr605122 S21481026 Traveling P22 EBIRD 10.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291486875 2021-03-24 19:20:44.053843 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Broome US-NY-007 28.0 Kirkwood Backyard L518236 P 42.0855596 -75.7881171 2015-01-16 08:32:00 obsr52763 S21384373 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470230 2020-01-17 17:31:16 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-17 08:02:00 obsr325492 S21383040 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291764912 2015-01-20 13:55:56 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L3306222 P 42.1827358 -76.01439 2015-01-18 18:21:00 obsr52000 S21405893 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289445020 2015-01-06 08:32:58 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-05 23:00:00 obsr534674 S21219458 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293877546 2017-02-01 21:17:41 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-29 13:29:00 obsr195505 S21593041 Traveling P22 EBIRD 115.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290201934 2020-01-17 17:31:16 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-10 13:30:00 obsr325492 S21280224 Traveling P22 EBIRD 30.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290472523 2020-01-17 17:31:16 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-11 15:30:00 obsr325492 S21302342 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681844 2018-08-04 16:53:56 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 10:00:00 obsr534674 S21399495 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291937272 2015-01-19 14:52:51 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-19 12:27:00 obsr195505 S21419035 Traveling P22 EBIRD 107.0 7.113 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275603 2018-08-04 16:53:23 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 11:00:00 obsr760620 S21367359 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498879 2018-08-04 16:53:53 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-17 16:15:00 obsr456332 S21385342 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250974 2018-08-04 16:53:23 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 08:15:00 obsr534674 S21365247 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291624460 2018-08-04 16:53:53 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-18 07:55:00 obsr423934 S21395142 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290843192 2021-04-01 10:47:08.851048 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 K-mart L1359831 P 42.1053355 -75.905288 2015-01-13 01:15:00 obsr393139 S21331872 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172569 2018-08-04 16:55:29 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-31 11:26:00 obsr624920 S21616021 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192157 2021-03-26 06:09:25.361188 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-01-10 09:30:00 obsr534674 S21279429 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292975213 2018-08-04 16:55:10 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 25 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-24 16:07:00 obsr456332 S21521112 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291324744 2021-03-19 16:02:45.308962 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-16 16:30:00 obsr325492 S21371423 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289338918 2015-01-05 17:11:26 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 273 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-01-05 16:29:00 obsr52000 S21211319 Traveling P22 EBIRD 41.0 18.668 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298314 2018-08-04 16:55:15 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 56 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 21-217 Centervillage Loop Road L3316564 P 42.15982 -75.60088 2015-01-25 12:31:00 obsr456332 S21546466 Stationary P21 EBIRD 1.0 1.0 1 G1123304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417376 2021-03-30 19:03:14.123633 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 50 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1365080 P 42.1336342 -75.89822790000001 2015-01-17 10:00:00 obsr393139 S21378653 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290870646 2015-01-13 17:14:36 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 15 United States US New York US-NY Broome US-NY-007 28.0 NY, Binghamton, Binghamton General Hospital L949986 P 42.085042 -75.9146637 2015-01-13 16:08:00 obsr52000 S21334413 Traveling P22 EBIRD 65.0 20.599 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292466254 2021-03-19 16:02:45.308962 681 species avibase-407E2CA8 Common Merganser Mergus merganser 15 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Barker Hill Rd. Bridge L450623 H 42.2985053 -75.9085891 2015-01-21 09:45:00 obsr605122 S21481135 Traveling P22 EBIRD 10.0 3.219 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289870234 2021-04-01 10:47:08.851048 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 35 United States US New York US-NY Broome US-NY-007 28.0 I-88--Binghamton L3277864 P 42.163969 -75.869272 2015-01-08 13:20:00 obsr587809 S21253331 Traveling P22 EBIRD 12.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293430794 2018-08-04 16:55:18 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 25 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-26 11:10:00 obsr456332 S21557723 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250594 2018-08-04 16:53:23 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 09:10:00 obsr534674 S21365214 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289040819 2018-04-20 14:55:52 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Lisle Park & Keibel Rd. L885144 H 42.350552 -75.98142390000001 2015-01-04 13:28:00 obsr223307 S21188064 Traveling P22 EBIRD 43.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292166168 2021-04-01 10:47:08.851048 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Broome US-NY-007 28.0 Wall St. Binghamton L255273 P 42.10242720000001 -75.9146586 2015-01-20 11:30:00 obsr325492 S21437281 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292653350 2018-08-04 16:54:53 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 35 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-22 16:19:00 obsr52000 S21496035 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291136670 2018-08-04 16:53:21 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 50 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 10:15:00 obsr393139 S21355738 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292150139 2021-04-01 10:47:08.851048 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-01-20 15:40:00 obsr52000 S21436012 Traveling P22 EBIRD 16.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120918 2018-08-04 16:55:14 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 56 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 21-217 Centervillage Loop Road L3316564 P 42.15982 -75.60088 2015-01-25 12:31:00 obsr223307 S21532819 Stationary P21 EBIRD 1.0 1.0 1 G1123304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289011399 2021-04-01 10:47:08.851048 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 95 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-04 08:07:00 obsr52000 S21185826 Traveling P22 EBIRD 265.0 32.186 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291976569 2021-03-19 16:02:45.308962 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-19 06:55:00 obsr325492 S21422329 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293598157 2018-08-04 16:55:19 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 35 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 08:20:00 obsr456332 S21570835 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289531649 2021-04-01 10:47:08.851048 337 species avibase-694C127A Mute Swan Cygnus olor 30 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-30 Charles St L1811019 P 42.108367 -75.92590600000001 2015-01-06 16:26:00 obsr52000 S21226651 Traveling P22 EBIRD 65.0 64.372 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288811470 2021-03-26 06:09:25.361188 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 100 United States US New York US-NY Broome US-NY-007 28.0 Lopke pit 79 L2759036 P 42.3089268 -75.93162059999999 2015-01-03 09:00:00 obsr534674 S21168002 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292692240 2018-08-04 16:53:57 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 13:04:00 obsr624920 S21499177 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470232 2020-01-17 17:31:16 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-17 08:02:00 obsr325492 S21383040 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291426606 2021-04-01 10:47:08.851048 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-15 09:45:00 obsr456332 S21379489 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291919650 2018-08-04 16:54:02 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 42.3583x-75.9999 - Jan 19, 2015, 1:24 PM L3303753 P 42.358336 -75.999902 2015-01-19 13:24:00 obsr476925 S21417620 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292207507 2021-03-30 19:03:14.123633 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 15:00:00 obsr534674 S21440230 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291916257 2018-08-04 16:54:02 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Broome US-NY-007 28.0 42.4014x-76.0151 - Jan 19, 2015, 1:12 PM L3303719 P 42.401446 -76.015108 2015-01-19 13:12:00 obsr476925 S21417392 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292798133 2021-03-26 06:09:25.361188 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-23 07:10:00 obsr325492 S21507325 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289235439 2018-08-04 16:52:46 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 40 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-05 07:38:00 obsr52000 S21202996 Traveling P22 EBIRD 12.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293328862 2018-08-04 16:55:15 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 20 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr99508 S21548539 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275335 2018-08-04 16:53:23 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 12 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 10:30:00 obsr760620 S21367326 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292164339 2021-03-30 19:03:14.123633 483 species avibase-85625D75 Mallard Anas platyrhynchos 16 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 16:31:00 obsr52000 S21437135 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290387394 2015-01-11 11:42:55 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 20 United States US New York US-NY Broome US-NY-007 28.0 Sewage Treatment Plant L3284605 P 42.0965825 -75.9637588 2015-01-10 14:00:00 obsr605122 S21295528 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291697160 2018-08-04 16:53:57 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 12 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-18 12:35:00 obsr195505 S21400464 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290201935 2020-01-17 17:31:16 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-10 13:30:00 obsr325492 S21280224 Traveling P22 EBIRD 30.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291429058 2018-08-04 16:53:23 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 45 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-16 09:00:00 obsr456332 S21379721 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414329 2021-04-01 10:47:08.851048 26890 species avibase-94A44032 European Starling Sturnus vulgaris 125 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-11 08:23:00 obsr52000 S21297600 Traveling P22 EBIRD 320.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289728789 2021-03-26 06:09:25.361188 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 40 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-30 Charles St L1811019 P 42.108367 -75.92590600000001 2015-01-07 16:10:00 obsr52000 S21241709 Traveling P22 EBIRD 58.0 40.072 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288507292 2021-04-01 10:47:08.851048 303 species avibase-B59E1863 Canada Goose Branta canadensis 9 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-02 14:25:00 obsr99508 S21143109 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288997559 2021-03-24 19:20:44.053843 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 25 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-04 11:55:00 obsr223307 S21184758 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545579 2021-04-01 10:47:08.851048 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-02 10:06:00 obsr52000 S21146547 Traveling P22 EBIRD 220.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291423037 2015-01-17 11:33:20 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin Ave. L1878587 P 42.098759 -75.8831499 2015-01-15 09:00:00 obsr456332 S21379113 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291475351 2015-01-17 15:50:42 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 17 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-17 10:30:00 obsr325492 S21383441 Traveling P22 EBIRD 5.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293253929 2018-08-04 16:55:14 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 56 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 21-217 Centervillage Loop Road L3316564 P 42.15982 -75.60088 2015-01-25 12:31:00 obsr99508 S21543030 Stationary P21 EBIRD 1.0 1.0 1 G1123304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293739340 2021-04-01 10:47:08.851048 30494 species avibase-240E3390 House Sparrow Passer domesticus 8 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-28 11:50:00 obsr325492 S21581608 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290237852 2021-03-26 06:09:25.361188 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Victory St. JC L166647 P 42.125027 -75.98304 2015-01-10 13:00:00 obsr624920 S21283511 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625182 2021-04-01 10:47:08.851048 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 150 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 08:20:00 obsr423934 S21395195 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294071042 2021-02-28 20:26:22.473883 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 43 United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-30 16:03:00 obsr624920 S21608165 Traveling P22 EBIRD 19.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095290 2018-08-04 16:54:45 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 30 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 09:30:00 obsr534674 S21431580 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293542776 2021-04-01 10:47:08.851048 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 09:40:00 obsr760620 S21566404 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291471520 2020-01-19 11:00:58 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 70 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-17 09:02:00 obsr325492 S21383141 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256885 2015-01-01 17:18:46 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Broome US-NY-007 28.0 Lopke pit 79 L2759036 P 42.3089268 -75.93162059999999 2015-01-01 09:00:00 obsr534674 S21122369 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293588411 2021-03-26 06:09:25.361188 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-27 16:30:00 obsr325492 S21570015 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241693 2018-08-04 16:52:16 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 40 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-01 10:00:00 obsr534674 S21121060 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291425033 2021-04-01 10:47:08.851048 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 20 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-15 09:30:00 obsr456332 S21379326 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293764097 2021-04-01 10:47:08.851048 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 20 United States US New York US-NY Broome US-NY-007 28.0 Whitney Point L196903 T 42.32897 -75.96774 2015-01-28 12:45:00 obsr423934 S21583792 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298928 2018-08-04 16:55:15 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 20 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr456332 S21546514 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291620126 2021-03-19 16:02:45.308962 483 species avibase-85625D75 Mallard Anas platyrhynchos 37 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-17 12:20:00 obsr624920 S21394785 Traveling P22 EBIRD 17.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171787 2021-03-30 19:03:14.123633 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-25 09:54:00 obsr760620 S21536684 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298598877 2018-08-04 16:55:22 447 species avibase-C235A4D7 Gadwall Mareca strepera 120 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Tioughnioga River, below dam L3193015 H 42.3370316 -75.96967579999999 2015-01-28 12:05:00 obsr423934 S21580590 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292460773 2018-08-04 16:54:48 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 30 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-21 08:35:00 obsr605122 S21480780 Stationary P21 EBIRD 10.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291698743 2018-08-04 16:53:58 6339 species avibase-8535345B Herring Gull Larus argentatus 50 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 13:37:00 obsr195505 S21400597 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292655849 2021-03-26 06:09:25.361188 662 species avibase-FB738385 Bufflehead Bucephala albeola 7 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-22 07:00:00 obsr325492 S21496232 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414261 2021-04-01 10:47:08.851048 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 180 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-11 10:15:00 obsr423934 S21297595 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293741718 2018-08-04 16:55:23 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Broome US-NY-007 28.0 Confluence Park L2473323 H 42.092993 -75.91611540000001 2015-01-28 16:27:00 obsr52000 S21582019 Traveling P22 EBIRD 50.0 12.874 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291168207 2021-03-19 16:02:45.308962 30494 species avibase-240E3390 House Sparrow Passer domesticus 40 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 16:14:00 obsr52000 S21358369 Traveling P22 EBIRD 63.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275600 2018-08-04 16:53:23 447 species avibase-C235A4D7 Gadwall Mareca strepera X United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 11:00:00 obsr760620 S21367359 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292880455 2021-03-30 19:03:14.123633 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 09:40:00 obsr456332 S21513772 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171372 2021-04-01 10:47:08.851048 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 09:15:00 obsr760620 S21536653 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289482725 2021-04-01 10:47:08.851048 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-06 12:26:00 obsr52000 S21222750 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289071160 2018-10-27 08:18:26 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 75 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-04 15:36:00 obsr223307 S21190407 Stationary P21 EBIRD 7.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290843198 2021-04-01 10:47:08.851048 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Broome US-NY-007 28.0 K-mart L1359831 P 42.1053355 -75.905288 2015-01-13 01:15:00 obsr393139 S21331872 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291474652 2015-01-17 15:47:56 662 species avibase-FB738385 Bufflehead Bucephala albeola 10 United States US New York US-NY Broome US-NY-007 28.0 Chenango Forks, steel bridge, broome county L1065413 P 42.2388442 -75.8460903 2015-01-17 10:15:00 obsr325492 S21383388 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289236438 2021-03-26 06:09:25.361188 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-05 07:50:00 obsr605122 S21203097 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985244 2021-04-01 10:47:08.851048 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291603263 2015-01-18 06:18:40 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 01:42:00 obsr195505 S21393329 Traveling P22 EBIRD 86.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293511613 2021-03-26 06:09:25.361188 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-27 07:15:00 obsr605122 S21563758 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288234862 2015-01-01 16:19:32 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-01 16:19:00 obsr52000 S21120492 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293436626 2015-01-26 18:58:59 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-26 08:30:00 obsr325492 S21558172 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290012977 2021-03-26 06:09:25.361188 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-08 14:00:00 obsr423934 S21264895 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292652567 2017-02-01 21:17:41 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-22 13:51:00 obsr195505 S21495970 Traveling P22 EBIRD 96.0 6.196000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292785827 2018-08-04 16:54:55 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-23 13:36:00 obsr195505 S21506362 Traveling P22 EBIRD 109.0 6.968 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291280875 2021-03-24 19:20:44.053843 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-16 13:30:00 obsr423934 S21367828 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420807 2021-03-26 06:09:25.361188 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-05 09:00:00 obsr456332 S21378913 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290476543 2015-01-11 17:29:20 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-11 09:30:00 obsr325492 S21302634 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681846 2018-08-04 16:53:56 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 10:00:00 obsr534674 S21399495 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288778626 2015-01-03 15:35:01 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-03 09:00:00 obsr325492 S21165327 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290413616 2017-08-16 02:23:57 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-11 09:45:00 obsr423934 S21297548 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291937273 2015-01-19 14:52:51 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-19 12:27:00 obsr195505 S21419035 Traveling P22 EBIRD 107.0 7.113 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291696438 2018-08-04 16:53:54 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 08:21:00 obsr195505 S21400406 Traveling P22 EBIRD 79.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291473174 2015-01-17 15:43:05 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 09:35:00 obsr325492 S21383262 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289011412 2021-04-01 10:47:08.851048 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-04 08:07:00 obsr52000 S21185826 Traveling P22 EBIRD 265.0 32.186 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292916185 2021-03-19 16:02:45.308962 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-24 11:52:00 obsr325492 S21516841 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293733909 2015-01-28 16:27:31 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-28 13:36:00 obsr195505 S21581138 Traveling P22 EBIRD 68.0 5.697 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420201 2015-01-17 11:16:44 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-03 09:00:00 obsr456332 S21378875 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293848942 2021-03-30 19:03:14.123633 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-29 12:47:00 obsr52000 S21590566 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291486881 2021-03-24 19:20:44.053843 11528 species avibase-F3DA111C Merlin Falco columbarius 1 United States US New York US-NY Broome US-NY-007 28.0 Kirkwood Backyard L518236 P 42.0855596 -75.7881171 2015-01-16 08:32:00 obsr52763 S21384373 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917460 2015-01-24 13:33:41 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-24 08:30:00 obsr325492 S21516942 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291871868 2015-01-19 09:24:10 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-19 09:00:00 obsr605122 S21414062 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293877547 2017-02-01 21:17:41 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-29 13:29:00 obsr195505 S21593041 Traveling P22 EBIRD 115.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289119968 2015-01-04 18:03:52 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-04 13:31:00 obsr624920 S21194369 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290271854 2015-01-10 19:03:43 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-10 09:30:00 obsr325492 S21286258 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288415801 2021-03-26 06:09:25.361188 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-02 08:00:00 obsr605122 S21135244 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291703707 2015-01-18 15:07:33 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 20 United States US New York US-NY Broome US-NY-007 28.0 CASTLE CREEK, 381-429 West Chenango Road L1908893 P 42.19697 -75.93418 2015-01-18 12:30:00 obsr534674 S21399575 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291429441 2018-08-04 16:53:24 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-16 17:20:00 obsr456332 S21379763 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293297740 2021-04-01 10:47:08.851048 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr456332 S21546407 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254931 2021-04-01 10:47:08.851048 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr99508 S21543115 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250975 2018-08-04 16:53:23 30494 species avibase-240E3390 House Sparrow Passer domesticus 12 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 08:15:00 obsr534674 S21365247 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275602 2018-08-04 16:53:23 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 11:00:00 obsr760620 S21367359 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292975207 2018-08-04 16:55:10 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 4 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-24 16:07:00 obsr456332 S21521112 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291624465 2018-08-04 16:53:53 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 12 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-18 07:55:00 obsr423934 S21395142 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291697163 2018-08-04 16:53:57 681 species avibase-407E2CA8 Common Merganser Mergus merganser 9 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-18 12:35:00 obsr195505 S21400464 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171365 2021-04-01 10:47:08.851048 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 09:15:00 obsr760620 S21536653 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293749015 2018-08-04 16:55:23 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L2146812 P 42.09197 -76.06111 2015-01-28 15:30:00 obsr534674 S21582626 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293083704 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr223307 S21529659 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254896 2021-04-01 10:47:08.851048 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr99508 S21543110 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290843193 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 K-mart L1359831 P 42.1053355 -75.905288 2015-01-13 01:15:00 obsr393139 S21331872 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293083540 2021-04-01 10:47:08.851048 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr223307 S21529646 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498875 2018-08-04 16:53:53 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 9 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-17 16:15:00 obsr456332 S21385342 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289119966 2015-01-04 18:03:52 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-04 13:31:00 obsr624920 S21194369 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290472526 2020-01-17 17:31:16 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 3 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-11 15:30:00 obsr325492 S21302342 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172572 2018-08-04 16:55:29 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-31 11:26:00 obsr624920 S21616021 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470231 2020-01-17 17:31:16 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 10 Male, Adult (3); Unknown Sex, Adult (7) United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-17 08:02:00 obsr325492 S21383040 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293297881 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr456332 S21546418 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414259 2021-04-01 10:47:08.851048 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-11 10:15:00 obsr423934 S21297595 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291172887 2021-04-01 10:47:08.851048 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-15 07:30:00 obsr325492 S21358751 Traveling P22 EBIRD 20.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293511346 2017-08-16 02:23:57 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-27 07:27:00 obsr52000 S21563733 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254898 2021-04-01 10:47:08.851048 681 species avibase-407E2CA8 Common Merganser Mergus merganser 14 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr99508 S21543110 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985233 2021-04-01 10:47:08.851048 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 15 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293588409 2021-03-26 06:09:25.361188 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-27 16:30:00 obsr325492 S21570015 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172570 2018-08-04 16:55:29 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-31 11:26:00 obsr624920 S21616021 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291423763 2015-01-17 11:37:00 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Broome US-NY-007 28.0 DeForest St., Binghamton L2689296 P 42.1169495 -75.90437469999999 2015-01-15 09:15:00 obsr456332 S21379172 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291474653 2015-01-17 15:47:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Broome US-NY-007 28.0 Chenango Forks, steel bridge, broome county L1065413 P 42.2388442 -75.8460903 2015-01-17 10:15:00 obsr325492 S21383388 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292975211 2018-08-04 16:55:10 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 20 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-24 16:07:00 obsr456332 S21521112 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275604 2018-08-04 16:53:23 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 11:00:00 obsr760620 S21367359 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293891940 2021-03-19 16:02:45.308962 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-01-29 16:00:00 obsr534674 S21594108 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291619680 2015-01-18 09:48:03 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Harold Moore Park L278836 P 42.101117 -76.0136825 2015-01-17 11:50:00 obsr624920 S21394733 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146058 2018-08-04 16:53:21 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 11 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-15 12:32:00 obsr195505 S21356577 Traveling P22 EBIRD 92.0 5.906000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293328860 2018-08-04 16:55:15 483 species avibase-85625D75 Mallard Anas platyrhynchos 20 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr99508 S21548539 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289338920 2015-01-05 17:11:26 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 15 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-01-05 16:29:00 obsr52000 S21211319 Traveling P22 EBIRD 41.0 18.668 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292798135 2021-03-26 06:09:25.361188 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-23 07:10:00 obsr325492 S21507325 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254933 2021-04-01 10:47:08.851048 6339 species avibase-8535345B Herring Gull Larus argentatus 14 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr99508 S21543115 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292916181 2021-03-19 16:02:45.308962 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-24 11:52:00 obsr325492 S21516841 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290712435 2018-08-04 16:53:13 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-12 16:20:00 obsr52000 S21321707 Traveling P22 EBIRD 42.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293443450 2021-02-28 20:26:22.473883 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis X United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-25 12:46:00 obsr624920 S21558722 Traveling P22 EBIRD 34.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291477447 2018-08-04 16:53:28 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 2 United States US New York US-NY Broome US-NY-007 28.0 Port Dickinson Comm. Park L242754 P 42.1414743 -75.8954533 2015-01-17 10:50:00 obsr325492 S21383573 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291419799 2018-08-04 16:52:20 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Broome US-NY-007 28.0 Bond St., Binghamton L1430873 P 42.1013271 -75.8812401 2015-01-01 11:20:00 obsr456332 S21378840 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292692553 2018-08-04 16:53:58 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-18 14:28:00 obsr624920 S21499197 Traveling P22 EBIRD 22.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291920723 2018-08-04 16:54:02 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-8967 Main St L3303767 P 42.349416 -75.998953 2015-01-19 13:29:00 obsr476925 S21417689 Stationary P21 EBIRD 2.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292151452 2015-01-20 16:04:12 681 species avibase-407E2CA8 Common Merganser Mergus merganser 6 United States US New York US-NY Broome US-NY-007 28.0 Harold Moore Park L1464971 H 42.099743 -76.0129688 2015-01-20 16:00:00 obsr52000 S21436140 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292797517 2021-03-26 06:09:25.361188 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 10 United States US New York US-NY Broome US-NY-007 28.0 Wall St. Binghamton L255273 P 42.10242720000001 -75.9146586 2015-01-23 11:05:00 obsr325492 S21507285 Traveling P22 EBIRD 5.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095713 2018-08-04 16:54:45 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-20 08:15:00 obsr534674 S21431618 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293749007 2018-08-04 16:55:23 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 24 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L2146812 P 42.09197 -76.06111 2015-01-28 15:30:00 obsr534674 S21582626 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292500600 2021-03-19 16:02:45.308962 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 50 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-21 16:25:00 obsr52000 S21483892 Traveling P22 EBIRD 46.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254453 2018-08-04 16:55:12 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Broome US-NY-007 28.0 Conklin, Conklin Park Road L2583869 P 42.06475 -75.80788000000001 2015-01-25 09:30:00 obsr99508 S21543075 Stationary P21 EBIRD 23.0 1.0 0 G1123313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120921 2018-08-04 16:55:14 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 4 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 21-217 Centervillage Loop Road L3316564 P 42.15982 -75.60088 2015-01-25 12:31:00 obsr223307 S21532819 Stationary P21 EBIRD 1.0 1.0 1 G1123304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288812413 2015-01-03 17:11:44 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-03 09:30:00 obsr534674 S21168070 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289118152 2015-01-04 18:00:00 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Broome US-NY-007 28.0 Coleman St. Park L1916434 P 42.0338031 -76.02144240000001 2015-01-04 11:22:00 obsr624920 S21194237 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417375 2021-03-30 19:03:14.123633 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 12 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1365080 P 42.1336342 -75.89822790000001 2015-01-17 10:00:00 obsr393139 S21378653 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289040820 2018-04-20 14:55:52 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 10 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Lisle Park & Keibel Rd. L885144 H 42.350552 -75.98142390000001 2015-01-04 13:28:00 obsr223307 S21188064 Traveling P22 EBIRD 43.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290843190 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Broome US-NY-007 28.0 K-mart L1359831 P 42.1053355 -75.905288 2015-01-13 01:15:00 obsr393139 S21331872 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292653355 2018-08-04 16:54:53 483 species avibase-85625D75 Mallard Anas platyrhynchos 20 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-22 16:19:00 obsr52000 S21496035 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292729466 2017-08-16 02:23:57 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-23 07:30:00 obsr52000 S21501802 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241696 2018-08-04 16:52:16 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-01 10:00:00 obsr534674 S21121060 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293598154 2018-08-04 16:55:19 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 20 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 08:20:00 obsr456332 S21570835 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292460772 2018-08-04 16:54:48 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-21 08:35:00 obsr605122 S21480780 Stationary P21 EBIRD 10.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192163 2021-03-26 06:09:25.361188 622 species avibase-50566E50 Lesser Scaup Aythya affinis 4 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-01-10 09:30:00 obsr534674 S21279429 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291473167 2015-01-17 15:43:05 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 09:35:00 obsr325492 S21383262 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289119964 2015-01-04 18:03:52 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 4 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-04 13:31:00 obsr624920 S21194369 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298301 2018-08-04 16:55:14 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 7 United States US New York US-NY Broome US-NY-007 28.0 320-372 Doolittle Road, 310-372 Dutchtown Road L2584030 P 42.125040000000006 -75.64709 2015-01-25 11:40:00 obsr456332 S21546462 Stationary P21 EBIRD 21.0 1.0 0 G1123309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298144 2015-01-25 23:23:46 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Broome US-NY-007 28.0 Conklin, 1336 Old Conklin Road L2583902 P 42.03877 -75.80594 2015-01-25 09:55:00 obsr456332 S21546452 Stationary P21 EBIRD 11.0 1.0 0 G1123312 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625185 2021-04-01 10:47:08.851048 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 12 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 08:20:00 obsr423934 S21395195 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292692239 2018-08-04 16:53:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 13:04:00 obsr624920 S21499177 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293417583 2018-08-04 16:55:19 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 40 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-26 16:29:00 obsr52000 S21556549 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291136667 2018-08-04 16:53:21 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 8 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 10:15:00 obsr393139 S21355738 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289866555 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-365 Water St L2310812 P 42.106379 -75.911075 2015-01-08 12:11:00 obsr52000 S21253033 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298317 2018-08-04 16:55:15 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 21-217 Centervillage Loop Road L3316564 P 42.15982 -75.60088 2015-01-25 12:31:00 obsr456332 S21546466 Stationary P21 EBIRD 1.0 1.0 1 G1123304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289728791 2021-03-26 06:09:25.361188 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-30 Charles St L1811019 P 42.108367 -75.92590600000001 2015-01-07 16:10:00 obsr52000 S21241709 Traveling P22 EBIRD 58.0 40.072 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254148 2018-08-04 16:55:14 505 species avibase-C732CB10 American Black Duck Anas rubripes 7 United States US New York US-NY Broome US-NY-007 28.0 320-372 Doolittle Road, 310-372 Dutchtown Road L2584030 P 42.125040000000006 -75.64709 2015-01-25 11:40:00 obsr99508 S21543047 Stationary P21 EBIRD 21.0 1.0 0 G1123309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298306 2015-01-25 23:24:54 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 3120-3186 Main Street L3316502 P 42.15793 -75.60163 2015-01-25 12:12:00 obsr456332 S21546464 Stationary P21 EBIRD 2.0 1.0 1 G1123306 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290463949 2021-04-01 10:47:08.851048 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 12 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-11 15:30:00 obsr605122 S21301594 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293083706 2021-04-01 10:47:08.851048 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 14 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr223307 S21529659 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293092203 2018-08-04 16:55:12 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Broome US-NY-007 28.0 Conklin, Conklin Park Road L2583869 P 42.06475 -75.80788000000001 2015-01-25 09:30:00 obsr223307 S21530459 Stationary P21 EBIRD 23.0 1.0 0 G1123313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095517 2018-08-04 16:54:45 681 species avibase-407E2CA8 Common Merganser Mergus merganser 6 United States US New York US-NY Broome US-NY-007 28.0 Port Dickenson Park L1906135 P 42.14136 -75.89749 2015-01-20 08:45:00 obsr534674 S21431599 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293253986 2015-01-25 20:41:34 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 3120-3186 Main Street L3316502 P 42.15793 -75.60163 2015-01-25 12:12:00 obsr99508 S21543036 Stationary P21 EBIRD 2.0 1.0 1 G1123306 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293885369 2021-03-19 16:02:45.308962 592 species avibase-3072CC16 Redhead Aythya americana 30 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-29 16:29:00 obsr52000 S21593640 Traveling P22 EBIRD 65.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292499193 2021-04-01 10:47:08.851048 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-21 16:35:00 obsr325492 S21483798 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291977446 2021-04-01 10:47:08.851048 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 Male, Adult (6) United States US New York US-NY Broome US-NY-007 28.0 Wall St. Binghamton L255273 P 42.10242720000001 -75.9146586 2015-01-19 11:10:00 obsr325492 S21422401 Traveling P22 EBIRD 5.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291471519 2020-01-19 11:00:58 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 10 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-17 09:02:00 obsr325492 S21383141 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298598878 2018-08-04 16:55:22 622 species avibase-50566E50 Lesser Scaup Aythya affinis 10 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Tioughnioga River, below dam L3193015 H 42.3370316 -75.96967579999999 2015-01-28 12:05:00 obsr423934 S21580590 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293599137 2021-04-01 10:47:08.851048 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 8 United States US New York US-NY Broome US-NY-007 28.0 Conklin Ave., old Crowley lot L3322621 P 42.0934772 -75.90346140000001 2015-01-27 09:20:00 obsr456332 S21570905 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292915323 2021-03-30 19:03:14.123633 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-24 12:20:00 obsr325492 S21516778 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293114709 2018-08-04 16:55:14 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Broome US-NY-007 28.0 320-372 Doolittle Road, 310-372 Dutchtown Road L2584030 P 42.125040000000006 -75.64709 2015-01-25 11:40:00 obsr223307 S21532328 Stationary P21 EBIRD 21.0 1.0 0 G1123309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288507295 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 11 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-02 14:25:00 obsr99508 S21143109 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292820352 2015-01-23 19:16:14 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 NY, Broome, Whitney Point Lake outlet L3312520 P 42.3385997 -75.9658349 2015-01-23 14:45:00 obsr171042 S21509138 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294112640 2017-08-16 02:23:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-31 09:44:00 obsr52000 S21611123 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291976570 2021-03-19 16:02:45.308962 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 7 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-19 06:55:00 obsr325492 S21422329 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291922321 2018-08-04 16:54:03 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 US-NY-Whitney Point - 42.3294x-75.9646 - Jan 19, 2015, 1:37 PM L3303791 P 42.329372 -75.96457099999999 2015-01-19 13:38:00 obsr476925 S21417812 Stationary P21 EBIRD 5.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289071163 2018-10-27 08:18:26 337 species avibase-694C127A Mute Swan Cygnus olor 16 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-04 15:36:00 obsr223307 S21190407 Stationary P21 EBIRD 7.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291429060 2018-08-04 16:53:23 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 20 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-16 09:00:00 obsr456332 S21379721 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250590 2018-08-04 16:53:23 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 09:10:00 obsr534674 S21365214 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254369 2015-01-25 20:42:33 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Broome US-NY-007 28.0 Conklin, 1336 Old Conklin Road L2583902 P 42.03877 -75.80594 2015-01-25 09:55:00 obsr99508 S21543066 Stationary P21 EBIRD 11.0 1.0 0 G1123312 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293297883 2021-04-01 10:47:08.851048 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 14 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr456332 S21546418 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291423038 2015-01-17 11:33:20 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 10 United States US New York US-NY Broome US-NY-007 28.0 Conklin Ave. L1878587 P 42.098759 -75.8831499 2015-01-15 09:00:00 obsr456332 S21379113 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293083542 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 14 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr223307 S21529646 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292166165 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 Male, Adult (9); Female, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Wall St. Binghamton L255273 P 42.10242720000001 -75.9146586 2015-01-20 11:30:00 obsr325492 S21437281 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292466253 2021-03-19 16:02:45.308962 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Barker Hill Rd. Bridge L450623 H 42.2985053 -75.9085891 2015-01-21 09:45:00 obsr605122 S21481135 Traveling P22 EBIRD 10.0 3.219 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293297742 2021-04-01 10:47:08.851048 20829 species avibase-B9B272F4 Common Raven Corvus corax 14 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr456332 S21546407 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171369 2021-04-01 10:47:08.851048 31530 species avibase-B48335B1 Pine Siskin Spinus pinus X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 09:15:00 obsr760620 S21536653 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292207506 2021-03-30 19:03:14.123633 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 15:00:00 obsr534674 S21440230 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470224 2020-01-17 17:31:16 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-17 08:02:00 obsr325492 S21383040 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587632 2015-01-27 19:51:13 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-27 06:55:00 obsr325492 S21569966 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291916261 2018-08-04 16:54:02 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Broome US-NY-007 28.0 42.4014x-76.0151 - Jan 19, 2015, 1:12 PM L3303719 P 42.401446 -76.015108 2015-01-19 13:12:00 obsr476925 S21417392 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291426608 2021-04-01 10:47:08.851048 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 10 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-15 09:45:00 obsr456332 S21379489 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291324741 2021-03-19 16:02:45.308962 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-16 16:30:00 obsr325492 S21371423 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291626171 2018-10-27 08:06:01 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 11 United States US New York US-NY Broome US-NY-007 28.0 Martin Luther King Jr. Memorial Promenade L2467334 H 42.1006345 -75.91548979999999 2015-01-18 09:15:00 obsr423934 S21395296 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293093997 2015-01-25 20:42:33 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 2 United States US New York US-NY Broome US-NY-007 28.0 Conklin, 1336 Old Conklin Road L2583902 P 42.03877 -75.80594 2015-01-25 09:55:00 obsr223307 S21530619 Stationary P21 EBIRD 11.0 1.0 0 G1123312 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275331 2018-08-04 16:53:23 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 10:30:00 obsr760620 S21367326 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291168213 2021-03-19 16:02:45.308962 505 species avibase-C732CB10 American Black Duck Anas rubripes 8 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 16:14:00 obsr52000 S21358369 Traveling P22 EBIRD 63.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293881702 2021-04-01 10:47:08.851048 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 12 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-29 06:55:00 obsr325492 S21593364 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291697165 2018-08-04 16:53:57 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-18 12:35:00 obsr195505 S21400464 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298926 2018-08-04 16:55:15 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 20 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr456332 S21546514 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292655846 2021-03-26 06:09:25.361188 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-22 07:00:00 obsr325492 S21496232 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289482727 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-06 12:26:00 obsr52000 S21222750 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420046 2021-03-30 19:03:14.123633 11494 species avibase-20C2214E American Kestrel Falco sparverius 25 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-02 16:30:00 obsr456332 S21378860 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294545390 2018-08-04 16:54:02 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Broome US-NY-007 28.0 42.3583x-75.9999 - Jan 19, 2015, 1:24 PM L3303753 P 42.358336 -75.999902 2015-01-19 13:24:00 obsr476925 S21417620 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498876 2018-08-04 16:53:53 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-17 16:15:00 obsr456332 S21385342 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291429439 2018-08-04 16:53:24 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 12 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-16 17:20:00 obsr456332 S21379763 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293430798 2018-08-04 16:55:18 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 30 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-26 11:10:00 obsr456332 S21557723 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545583 2021-04-01 10:47:08.851048 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 5 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-02 10:06:00 obsr52000 S21146547 Traveling P22 EBIRD 220.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298061 2018-08-04 16:55:12 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Broome US-NY-007 28.0 Conklin, Conklin Park Road L2583869 P 42.06475 -75.80788000000001 2015-01-25 09:30:00 obsr456332 S21546443 Stationary P21 EBIRD 23.0 1.0 0 G1123313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293253932 2018-08-04 16:55:14 456 species avibase-D201EB72 American Wigeon Mareca americana 4 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 21-217 Centervillage Loop Road L3316564 P 42.15982 -75.60088 2015-01-25 12:31:00 obsr99508 S21543030 Stationary P21 EBIRD 1.0 1.0 1 G1123304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293670086 2021-04-01 10:47:08.851048 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-28 07:26:00 obsr52000 S21576241 Traveling P22 EBIRD 24.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250979 2018-08-04 16:53:23 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 10 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 08:15:00 obsr534674 S21365247 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293117415 2015-01-25 20:41:34 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 1 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 3120-3186 Main Street L3316502 P 42.15793 -75.60163 2015-01-25 12:12:00 obsr223307 S21532527 Stationary P21 EBIRD 2.0 1.0 1 G1123306 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291698749 2018-08-04 16:53:58 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 8 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 13:37:00 obsr195505 S21400597 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293764098 2021-04-01 10:47:08.851048 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 Whitney Point L196903 T 42.32897 -75.96774 2015-01-28 12:45:00 obsr423934 S21583792 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293542775 2021-04-01 10:47:08.851048 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 09:40:00 obsr760620 S21566404 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293741721 2018-08-04 16:55:23 483 species avibase-85625D75 Mallard Anas platyrhynchos 34 United States US New York US-NY Broome US-NY-007 28.0 Confluence Park L2473323 H 42.092993 -75.91611540000001 2015-01-28 16:27:00 obsr52000 S21582019 Traveling P22 EBIRD 50.0 12.874 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291468781 2018-08-04 16:53:25 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Wall St. Binghamton L255273 P 42.10242720000001 -75.9146586 2015-01-17 07:40:00 obsr325492 S21382919 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288619518 2021-03-19 16:02:45.308962 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-02 14:52:00 obsr624920 S21152689 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289235442 2018-08-04 16:52:46 592 species avibase-3072CC16 Redhead Aythya americana 7 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-05 07:38:00 obsr52000 S21202996 Traveling P22 EBIRD 12.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291620130 2021-03-19 16:02:45.308962 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-17 12:20:00 obsr624920 S21394785 Traveling P22 EBIRD 17.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291136341 2021-03-30 19:03:14.123633 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-15 12:15:00 obsr393139 S21355699 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241698 2018-08-04 16:52:16 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-01 10:00:00 obsr534674 S21121060 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289843227 2015-01-08 17:47:06 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Broome US-NY-007 28.0 NY:BRM:Lisle: I-81 N/East Hill Rd L3277563 P 42.4050915 -76.0127306 2015-01-07 07:39:00 obsr520305 S21251131 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290412930 2015-01-11 13:37:54 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-11 08:38:00 obsr423934 S21297496 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292886475 2015-01-24 10:21:26 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-24 10:21:00 obsr52000 S21514283 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293597511 2015-01-27 18:08:51 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 2 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-27 07:47:00 obsr456332 S21570779 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288813020 2021-01-08 12:08:06.924862 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 Knapp Rd. L2032238 P 42.2252124 -75.9883118 2015-01-03 08:10:00 obsr534674 S21168124 Traveling P22 EBIRD 10.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292468552 2015-01-21 13:59:14 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Broome US-NY-007 28.0 Cherry Valley Road L3308169 P 42.2815953 -76.0516334 2015-01-21 11:45:00 obsr605122 S21481313 Traveling P22 EBIRD 10.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291122711 2021-03-30 19:03:14.123633 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-15 12:05:00 obsr52000 S21354807 Traveling P22 EBIRD 24.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289058134 2018-08-04 16:52:45 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-04 14:42:00 obsr223307 S21189345 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292467819 2016-03-08 14:18:23 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Arnold Rd. L499466 H 42.3235162 -76.0783535 2015-01-21 11:00:00 obsr605122 S21481253 Traveling P22 EBIRD 10.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293891938 2021-03-19 16:02:45.308962 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-01-29 16:00:00 obsr534674 S21594108 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289017273 2021-03-19 16:02:45.308962 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 Broome County Landfill L2494208 H 42.2422743 -75.97730229999999 2015-01-04 12:15:00 obsr223307 S21186297 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292290458 2015-01-21 19:25:27 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-9502 NY-79 L3307946 P 42.357845000000005 -76.047575 2015-01-21 11:45:00 obsr223003 S21479728 Incidental P20 EBIRD 2.0 0 G1118888 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291423761 2015-01-17 11:37:00 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Broome US-NY-007 28.0 DeForest St., Binghamton L2689296 P 42.1169495 -75.90437469999999 2015-01-15 09:15:00 obsr456332 S21379172 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955084 2017-08-16 02:23:57 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-30 07:37:00 obsr52000 S21598834 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292526175 2015-01-21 19:25:27 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-9502 NY-79 L3307946 P 42.357845000000005 -76.047575 2015-01-21 11:45:00 obsr596231 S21485932 Incidental P20 EBIRD 2.0 0 G1118888 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293260063 2022-03-07 16:16:36.127066 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Home - Renee L696123 P 42.1130118 -75.93151329999999 2015-01-24 09:24:00 obsr99508 S21543500 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291397961 2015-01-17 08:11:49 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Broome US-NY-007 28.0 Union-Endicott High School L1122310 H 42.0978721 -76.0479641 2015-01-16 17:00:00 obsr605122 S21377031 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294416446 2015-02-01 16:45:41 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-31 14:00:00 obsr760620 S21635223 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985254 2021-04-01 10:47:08.851048 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288965038 2015-01-04 09:30:32 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-04 09:15:00 obsr605122 S21182035 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288624290 2015-01-02 21:40:39 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-02 07:00:00 obsr534674 S21153051 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288685769 2021-03-26 06:09:25.361188 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-03 08:50:00 obsr605122 S21157617 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291422464 2015-01-17 11:29:56 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Broome US-NY-007 28.0 Bond Street L3200480 P 42.1007 -75.88074 2015-01-11 09:00:00 obsr456332 S21379067 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290134359 2021-03-26 06:09:25.361188 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-10 07:30:00 obsr605122 S21274387 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812887 2021-03-26 06:09:25.361188 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 08:00:00 obsr605122 S21587553 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289236435 2021-03-26 06:09:25.361188 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-05 07:50:00 obsr605122 S21203097 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288105896 2021-03-26 06:09:25.361188 6339 species avibase-8535345B Herring Gull Larus argentatus 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-01 08:45:00 obsr605122 S21109834 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292888010 2021-03-26 06:09:25.361188 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-24 10:15:00 obsr605122 S21514443 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293838846 2015-01-29 11:52:47 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 11:40:00 obsr605122 S21589711 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428661 2015-01-17 12:04:54 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Treadwell Rd. L3297707 P 42.20824 -75.93565459999999 2015-01-15 12:30:00 obsr456332 S21379674 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291628294 2021-04-01 10:47:08.851048 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-18 09:30:00 obsr325492 S21395119 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292750679 2015-01-23 11:22:24 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 6 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-23 07:00:00 obsr534674 S21503538 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290012979 2021-03-26 06:09:25.361188 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-08 14:00:00 obsr423934 S21264895 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290973772 2015-01-14 12:32:33 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-14 11:50:00 obsr605122 S21342599 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290822840 2015-01-13 12:00:07 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-13 10:25:00 obsr195505 S21330137 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290843195 2021-04-01 10:47:08.851048 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 K-mart L1359831 P 42.1053355 -75.905288 2015-01-13 01:15:00 obsr393139 S21331872 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291871871 2015-01-19 09:24:10 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-19 09:00:00 obsr605122 S21414062 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146070 2018-08-04 16:53:21 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-15 12:32:00 obsr195505 S21356577 Traveling P22 EBIRD 92.0 5.906000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116226 2015-01-04 17:54:44 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus X United States US New York US-NY Broome US-NY-007 28.0 Jones Park L716848 P 42.0111915 -75.99244240000002 2015-01-04 09:55:00 obsr624920 S21194068 Traveling P22 EBIRD 58.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293346823 2021-03-24 19:20:44.053843 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 9 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-26 07:00:00 obsr534674 S21550051 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292469821 2015-01-21 14:09:37 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 Flint Road L3308190 P 42.2320763 -75.9966373 2015-01-21 00:15:00 obsr605122 S21481425 Traveling P22 EBIRD 10.0 11.265 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293212836 2015-01-25 18:28:26 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-25 07:00:00 obsr534674 S21539972 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288701901 2021-03-26 06:09:25.361188 6339 species avibase-8535345B Herring Gull Larus argentatus 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-03 10:30:00 obsr605122 S21159105 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420203 2015-01-17 11:16:44 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 5 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-03 09:00:00 obsr456332 S21378875 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293665991 2021-03-19 16:02:45.308962 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Broome US-NY-007 28.0 Broome County Landfill L2494208 H 42.2422743 -75.97730229999999 2015-01-27 23:30:00 obsr195505 S21575895 Traveling P22 EBIRD 40.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241214 2015-01-01 16:36:42 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-01 10:30:00 obsr325492 S21121015 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288415808 2021-03-26 06:09:25.361188 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-02 08:00:00 obsr605122 S21135244 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292595263 2015-01-22 10:35:36 662 species avibase-FB738385 Bufflehead Bucephala albeola 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-22 10:15:00 obsr605122 S21491489 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293749006 2018-08-04 16:55:23 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L2146812 P 42.09197 -76.06111 2015-01-28 15:30:00 obsr534674 S21582626 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294035765 2015-01-30 17:37:16 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-30 07:15:00 obsr325492 S21605374 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291486882 2021-03-24 19:20:44.053843 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Broome US-NY-007 28.0 Kirkwood Backyard L518236 P 42.0855596 -75.7881171 2015-01-16 08:32:00 obsr52763 S21384373 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293588407 2021-03-26 06:09:25.361188 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-27 16:30:00 obsr325492 S21570015 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293673648 2015-01-28 08:42:43 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-28 08:30:00 obsr605122 S21576567 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290803367 2021-03-26 06:09:25.361188 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-13 08:30:00 obsr605122 S21328368 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291603264 2015-01-18 06:18:40 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 01:42:00 obsr195505 S21393329 Traveling P22 EBIRD 86.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917462 2015-01-24 13:33:41 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 5 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-24 08:30:00 obsr325492 S21516942 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293172374 2015-01-25 16:07:34 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-25 10:30:00 obsr760620 S21536723 Traveling P22 EBIRD 20.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293260065 2022-03-07 16:16:36.127066 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Broome US-NY-007 28.0 Home - Renee L696123 P 42.1130118 -75.93151329999999 2015-01-24 09:24:00 obsr99508 S21543500 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293358717 2015-01-26 11:22:30 30494 species avibase-240E3390 House Sparrow Passer domesticus 7 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-25 13:17:00 obsr171042 S21551005 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290476383 2015-01-11 17:29:20 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-11 09:30:00 obsr325492 S21302634 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292581675 2021-03-26 06:09:25.361188 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-22 07:50:00 obsr605122 S21490341 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293511611 2021-03-26 06:09:25.361188 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-27 07:15:00 obsr605122 S21563758 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289173892 2015-01-04 20:42:13 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-04 07:00:00 obsr534674 S21198475 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292908573 2015-01-24 12:46:22 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 12 United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-24 11:15:00 obsr760620 S21516249 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291478050 2015-01-17 15:59:57 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-17 11:30:00 obsr325492 S21383615 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292741665 2015-01-23 10:12:41 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-23 10:00:00 obsr605122 S21502867 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291280871 2021-03-24 19:20:44.053843 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 4 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-16 13:30:00 obsr423934 S21367828 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172571 2018-08-04 16:55:29 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-31 11:26:00 obsr624920 S21616021 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288463644 2022-03-07 16:16:36.127066 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Broome US-NY-007 28.0 Home - Renee L696123 P 42.1130118 -75.93151329999999 2015-01-02 11:46:00 obsr99508 S21139524 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428243 2015-01-17 12:00:55 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Broome US-NY-007 28.0 Swift Rd. L1396474 P 42.2199772 -75.9448922 2015-01-15 00:16:00 obsr456332 S21379627 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291397798 2015-01-17 08:09:52 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-17 07:40:00 obsr605122 S21377016 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292468100 2021-03-26 06:09:25.361188 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Caldwell Hill L1981207 H 42.346095700000006 -76.0689363 2015-01-21 11:15:00 obsr605122 S21481277 Traveling P22 EBIRD 15.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291419800 2018-08-04 16:52:20 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Broome US-NY-007 28.0 Bond St., Binghamton L1430873 P 42.1013271 -75.8812401 2015-01-01 11:20:00 obsr456332 S21378840 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192435 2015-01-10 14:08:05 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 6 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-10 07:00:00 obsr534674 S21279456 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301153330 2016-03-02 21:14:11 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-31 14:45:00 obsr423934 S21615936 Traveling P22 EBIRD 10.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293436627 2015-01-26 18:58:59 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-26 08:30:00 obsr325492 S21558172 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288778619 2015-01-03 15:35:01 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 6 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-03 09:00:00 obsr325492 S21165327 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292465533 2019-04-02 20:03:27 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-01-21 09:30:00 obsr605122 S21481068 Traveling P22 EBIRD 12.0 6.437 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290359043 2021-03-26 06:09:25.361188 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-11 08:00:00 obsr605122 S21293150 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292464685 2021-04-01 10:47:08.851048 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 Mix Rd. L3308113 P 42.236397700000005 -75.8716679 2015-01-21 09:15:00 obsr605122 S21481026 Traveling P22 EBIRD 10.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288808588 2015-01-03 17:01:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-03 07:00:00 obsr534674 S21167782 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256005 2015-01-01 17:15:21 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-01 07:30:00 obsr534674 S21122273 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292759934 2015-01-23 12:44:44 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-23 08:17:00 obsr195505 S21504293 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293331916 2015-01-26 08:19:15 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-26 08:00:00 obsr605122 S21548759 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420803 2021-03-26 06:09:25.361188 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 8 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-05 09:00:00 obsr456332 S21378913 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291977757 2015-01-19 17:54:27 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-19 16:55:00 obsr325492 S21422428 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290949309 2015-01-14 09:22:56 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-14 08:55:00 obsr605122 S21340587 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292732575 2021-03-26 06:09:25.361188 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-23 08:00:00 obsr605122 S21502035 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116998 2015-01-01 09:54:41 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-01 08:16:00 obsr52000 S21110568 Stationary P21 EBIRD 97.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289140121 2021-04-01 10:47:08.851048 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-04 09:00:00 obsr325492 S21196011 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293671539 2015-01-28 08:10:48 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-28 07:30:00 obsr605122 S21576361 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294103895 2021-03-26 06:09:25.361188 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-31 08:00:00 obsr605122 S21610342 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288698482 2021-03-24 19:20:44.053843 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin L195377 T 42.03428 -75.80383 2015-01-03 09:45:00 obsr603756 S21158720 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290271847 2015-01-10 19:03:43 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-10 09:30:00 obsr325492 S21286258 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241701 2018-08-04 16:52:16 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-01 10:00:00 obsr534674 S21121060 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292785829 2018-08-04 16:54:55 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-23 13:36:00 obsr195505 S21506362 Traveling P22 EBIRD 109.0 6.968 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097033 2021-03-24 19:20:44.053843 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr223307 S21530909 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289027877 2021-03-26 06:09:25.361188 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-407-445 Smith Hill Rd L2029848 P 42.349905 -76.01804200000001 2015-01-04 13:13:00 obsr223307 S21187138 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288433303 2021-03-24 19:20:44.053843 505 species avibase-C732CB10 American Black Duck Anas rubripes 17 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-02 obsr223307 S21136871 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289040827 2018-04-20 14:55:52 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Lisle Park & Keibel Rd. L885144 H 42.350552 -75.98142390000001 2015-01-04 13:28:00 obsr223307 S21188064 Traveling P22 EBIRD 43.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254200 2021-03-24 19:20:44.053843 681 species avibase-407E2CA8 Common Merganser Mergus merganser 8 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr99508 S21543052 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298268 2021-03-24 19:20:44.053843 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr456332 S21546459 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288997566 2021-03-24 19:20:44.053843 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-04 11:55:00 obsr223307 S21184758 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112727 2021-03-26 06:09:25.361188 406 species avibase-27B2749A Wood Duck Aix sponsa 20 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-04 16:00:00 obsr223307 S21193794 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292820111 2015-01-23 19:14:08 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-23 15:15:00 obsr171042 S21509110 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290012970 2021-03-26 06:09:25.361188 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-08 14:00:00 obsr423934 S21264895 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290237855 2021-03-26 06:09:25.361188 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY Broome US-NY-007 28.0 Victory St. JC L166647 P 42.125027 -75.98304 2015-01-10 13:00:00 obsr624920 S21283511 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917463 2015-01-24 13:33:41 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 Male, Adult (1); Female, Adult (1); Unknown Sex and Age (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-24 08:30:00 obsr325492 S21516942 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293331919 2015-01-26 08:19:15 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-26 08:00:00 obsr605122 S21548759 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292741668 2015-01-23 10:12:41 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-23 10:00:00 obsr605122 S21502867 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288808589 2015-01-03 17:01:59 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-03 07:00:00 obsr534674 S21167782 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428251 2015-01-17 12:00:55 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Broome US-NY-007 28.0 Swift Rd. L1396474 P 42.2199772 -75.9448922 2015-01-15 00:16:00 obsr456332 S21379627 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289173896 2015-01-04 20:42:13 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-04 07:00:00 obsr534674 S21198475 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290476385 2015-01-11 17:29:20 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-11 09:30:00 obsr325492 S21302634 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292692552 2018-08-04 16:53:58 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-18 14:28:00 obsr624920 S21499197 Traveling P22 EBIRD 22.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294071043 2021-02-28 20:26:22.473883 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-30 16:03:00 obsr624920 S21608165 Traveling P22 EBIRD 19.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293443446 2021-02-28 20:26:22.473883 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-25 12:46:00 obsr624920 S21558722 Traveling P22 EBIRD 34.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681842 2018-08-04 16:53:56 526 species avibase-56CCA717 Northern Pintail Anas acuta 6 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 10:00:00 obsr534674 S21399495 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288463641 2022-03-07 16:16:36.127066 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Broome US-NY-007 28.0 Home - Renee L696123 P 42.1130118 -75.93151329999999 2015-01-02 11:46:00 obsr99508 S21139524 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291468780 2018-08-04 16:53:25 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Broome US-NY-007 28.0 Wall St. Binghamton L255273 P 42.10242720000001 -75.9146586 2015-01-17 07:40:00 obsr325492 S21382919 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288778622 2015-01-03 15:35:01 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-03 09:00:00 obsr325492 S21165327 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293671537 2015-01-28 08:10:48 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-28 07:30:00 obsr605122 S21576361 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095515 2018-08-04 16:54:45 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Port Dickenson Park L1906135 P 42.14136 -75.89749 2015-01-20 08:45:00 obsr534674 S21431599 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292908572 2015-01-24 12:46:22 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-24 11:15:00 obsr760620 S21516249 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097024 2021-03-24 19:20:44.053843 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr223307 S21530909 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290413611 2017-08-16 02:23:57 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-11 09:45:00 obsr423934 S21297548 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172563 2018-08-04 16:55:29 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-31 11:26:00 obsr624920 S21616021 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288997562 2021-03-24 19:20:44.053843 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-04 11:55:00 obsr223307 S21184758 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254191 2021-03-24 19:20:44.053843 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr99508 S21543052 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116992 2015-01-01 09:54:41 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-01 08:16:00 obsr52000 S21110568 Stationary P21 EBIRD 97.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291477450 2018-08-04 16:53:28 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Port Dickinson Comm. Park L242754 P 42.1414743 -75.8954533 2015-01-17 10:50:00 obsr325492 S21383573 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290803368 2021-03-26 06:09:25.361188 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-13 08:30:00 obsr605122 S21328368 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292581672 2021-03-26 06:09:25.361188 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-22 07:50:00 obsr605122 S21490341 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293212838 2015-01-25 18:28:26 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-25 07:00:00 obsr534674 S21539972 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292467265 2021-03-24 19:20:44.053843 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Smith Hill L3308153 P 42.34801470000001 -76.03148459999998 2015-01-21 10:30:00 obsr605122 S21481207 Traveling P22 EBIRD 20.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292465534 2019-04-02 20:03:27 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-01-21 09:30:00 obsr605122 S21481068 Traveling P22 EBIRD 12.0 6.437 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291478051 2015-01-17 15:59:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-17 11:30:00 obsr325492 S21383615 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289011407 2021-04-01 10:47:08.851048 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-04 08:07:00 obsr52000 S21185826 Traveling P22 EBIRD 265.0 32.186 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288312161 2015-01-01 19:48:22 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 3712 Frazier Road, Endwell, NY L2280195 P 42.121067 -76.01361390000001 2015-01-01 12:15:00 obsr163307 S21127423 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256007 2015-01-01 17:15:21 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-01 07:30:00 obsr534674 S21122273 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192434 2015-01-10 14:08:05 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-10 07:00:00 obsr534674 S21279456 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290463332 2017-08-16 02:23:57 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-11 15:05:00 obsr605122 S21301534 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290359042 2021-03-26 06:09:25.361188 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-11 08:00:00 obsr605122 S21293150 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289040822 2018-04-20 14:55:52 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Lisle Park & Keibel Rd. L885144 H 42.350552 -75.98142390000001 2015-01-04 13:28:00 obsr223307 S21188064 Traveling P22 EBIRD 43.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812889 2021-03-26 06:09:25.361188 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 08:00:00 obsr605122 S21587553 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293346822 2021-03-24 19:20:44.053843 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-26 07:00:00 obsr534674 S21550051 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288685765 2021-03-26 06:09:25.361188 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-03 08:50:00 obsr605122 S21157617 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291473169 2015-01-17 15:43:05 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 09:35:00 obsr325492 S21383262 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291422460 2015-01-17 11:29:56 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Broome US-NY-007 28.0 Bond Street L3200480 P 42.1007 -75.88074 2015-01-11 09:00:00 obsr456332 S21379067 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288105897 2021-03-26 06:09:25.361188 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-01 08:45:00 obsr605122 S21109834 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298259 2021-03-24 19:20:44.053843 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr456332 S21546459 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290271853 2015-01-10 19:03:43 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-10 09:30:00 obsr325492 S21286258 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241217 2015-01-01 16:36:42 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-01 10:30:00 obsr325492 S21121015 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289140123 2021-04-01 10:47:08.851048 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-04 09:00:00 obsr325492 S21196011 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293598443 2021-03-30 19:03:14.123633 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-27 08:30:00 obsr456332 S21570856 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292888009 2021-03-26 06:09:25.361188 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-24 10:15:00 obsr605122 S21514443 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292916179 2021-03-19 16:02:45.308962 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-24 11:52:00 obsr325492 S21516841 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289236434 2021-03-26 06:09:25.361188 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-05 07:50:00 obsr605122 S21203097 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095716 2018-08-04 16:54:45 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-20 08:15:00 obsr534674 S21431618 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290899443 2021-04-01 10:47:08.851048 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.09052249999999 2015-01-11 11:28:00 obsr624920 S21336643 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292595268 2015-01-22 10:35:36 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-22 10:15:00 obsr605122 S21491489 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293121296 2020-01-17 17:31:16 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-25 10:20:00 obsr325492 S21532865 Traveling P22 EBIRD 22.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470227 2020-01-17 17:31:16 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-17 08:02:00 obsr325492 S21383040 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292732578 2021-03-26 06:09:25.361188 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-23 08:00:00 obsr605122 S21502035 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289118151 2015-01-04 18:00:00 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Broome US-NY-007 28.0 Coleman St. Park L1916434 P 42.0338031 -76.02144240000001 2015-01-04 11:22:00 obsr624920 S21194237 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291274352 2015-01-16 13:03:56 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-15 15:30:00 obsr760620 S21367227 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294103896 2021-03-26 06:09:25.361188 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-31 08:00:00 obsr605122 S21610342 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291486874 2021-03-24 19:20:44.053843 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Broome US-NY-007 28.0 Kirkwood Backyard L518236 P 42.0855596 -75.7881171 2015-01-16 08:32:00 obsr52763 S21384373 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291871874 2015-01-19 09:24:10 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-19 09:00:00 obsr605122 S21414062 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291397802 2015-01-17 08:09:52 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-17 07:40:00 obsr605122 S21377016 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288624292 2015-01-02 21:40:39 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-02 07:00:00 obsr534674 S21153051 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291626175 2018-10-27 08:06:01 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Broome US-NY-007 28.0 Martin Luther King Jr. Memorial Promenade L2467334 H 42.1006345 -75.91548979999999 2015-01-18 09:15:00 obsr423934 S21395296 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293436628 2015-01-26 18:58:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-26 08:30:00 obsr325492 S21558172 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291280872 2021-03-24 19:20:44.053843 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-16 13:30:00 obsr423934 S21367828 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288701899 2021-03-26 06:09:25.361188 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-03 10:30:00 obsr605122 S21159105 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288415807 2021-03-26 06:09:25.361188 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-02 08:00:00 obsr605122 S21135244 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292898830 2015-01-24 11:53:40 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin L195377 T 42.03428 -75.80383 2015-01-24 11:20:00 obsr603756 S21515467 Stationary P21 EBIRD 15.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289058135 2018-08-04 16:52:45 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-04 14:42:00 obsr223307 S21189345 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293170511 2015-01-25 16:01:05 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 Triangle SF L2913510 H 42.388661600000006 -75.8853455 2015-01-25 11:40:00 obsr760620 S21536576 Traveling P22 EBIRD 30.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985239 2021-04-01 10:47:08.851048 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292750675 2015-01-23 11:22:24 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-23 07:00:00 obsr534674 S21503538 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292820114 2015-01-23 19:14:08 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-23 15:15:00 obsr171042 S21509110 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293733902 2015-01-28 16:27:31 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-28 13:36:00 obsr195505 S21581138 Traveling P22 EBIRD 68.0 5.697 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292652560 2017-02-01 21:17:41 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-22 13:51:00 obsr195505 S21495970 Traveling P22 EBIRD 96.0 6.196000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292575370 2015-01-22 05:11:48 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-21 13:40:00 obsr195505 S21489709 Traveling P22 EBIRD 95.0 5.729 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292785819 2018-08-04 16:54:55 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-23 13:36:00 obsr195505 S21506362 Traveling P22 EBIRD 109.0 6.968 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293877538 2017-02-01 21:17:41 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-29 13:29:00 obsr195505 S21593041 Traveling P22 EBIRD 115.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146063 2018-08-04 16:53:21 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-15 12:32:00 obsr195505 S21356577 Traveling P22 EBIRD 92.0 5.906000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290822833 2015-01-13 12:00:07 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-13 10:25:00 obsr195505 S21330137 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292759926 2015-01-23 12:44:44 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-23 08:17:00 obsr195505 S21504293 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291603258 2015-01-18 06:18:40 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 01:42:00 obsr195505 S21393329 Traveling P22 EBIRD 86.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112732 2021-03-26 06:09:25.361188 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-04 16:00:00 obsr223307 S21193794 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289027867 2021-03-26 06:09:25.361188 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-407-445 Smith Hill Rd L2029848 P 42.349905 -76.01804200000001 2015-01-04 13:13:00 obsr223307 S21187138 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290714533 2015-01-12 17:13:36 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-12 16:30:00 obsr325492 S21321881 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587631 2015-01-27 19:51:13 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 8 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-27 06:55:00 obsr325492 S21569966 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292798139 2021-03-26 06:09:25.361188 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 12 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-23 07:10:00 obsr325492 S21507325 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293877548 2017-02-01 21:17:41 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-29 13:29:00 obsr195505 S21593041 Traveling P22 EBIRD 115.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291251285 2015-01-16 09:56:42 6339 species avibase-8535345B Herring Gull Larus argentatus 9 United States US New York US-NY Broome US-NY-007 28.0 E. Maine Rd. L3295318 P 42.1677295 -75.97620959999999 2015-01-16 08:00:00 obsr534674 S21365270 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293170762 2015-01-25 16:02:04 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-25 15:00:00 obsr760620 S21536598 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292652568 2017-02-01 21:17:41 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 4 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-22 13:51:00 obsr195505 S21495970 Traveling P22 EBIRD 96.0 6.196000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292575373 2015-01-22 05:11:48 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-21 13:40:00 obsr195505 S21489709 Traveling P22 EBIRD 95.0 5.729 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428659 2015-01-17 12:04:54 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 2 United States US New York US-NY Broome US-NY-007 28.0 Treadwell Rd. L3297707 P 42.20824 -75.93565459999999 2015-01-15 12:30:00 obsr456332 S21379674 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293733910 2015-01-28 16:27:31 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-28 13:36:00 obsr195505 S21581138 Traveling P22 EBIRD 68.0 5.697 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298265 2021-03-24 19:20:44.053843 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr456332 S21546459 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254197 2021-03-24 19:20:44.053843 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr99508 S21543052 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097030 2021-03-24 19:20:44.053843 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr223307 S21530909 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293212480 2015-01-25 18:26:54 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Broome US-NY-007 28.0 Maine, 264-300 Commercial Drive L2038082 P 42.2002 -75.97039000000001 2015-01-25 13:30:00 obsr534674 S21539936 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291937274 2015-01-19 14:52:51 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-19 12:27:00 obsr195505 S21419035 Traveling P22 EBIRD 107.0 7.113 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294417937 2015-02-01 16:50:52 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Lamoureux Yard list L1160914 P 42.08124779999999 -75.9837198 2015-01-30 08:00:00 obsr760620 S21635346 Stationary P21 EBIRD 1.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294419000 2015-02-01 16:52:13 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Broome US-NY-007 28.0 Lamoureux Yard list L1160914 P 42.08124779999999 -75.9837198 2015-01-31 14:30:00 obsr760620 S21635432 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294174469 2018-02-04 16:42:47 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Vestal-715-887 County Rd 53 L3329444 P 42.08122 -75.983411 2015-01-31 15:50:00 obsr52000 S21616161 Incidental P20 EBIRD 2.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302339959 2016-09-17 21:07:48 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Vestal-Bunn Hill Rd L3458382 P 42.0813613 -75.9834851 2015-01-31 16:45:00 obsr423934 S21615956 Incidental P20 EBIRD 2.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293170164 2015-01-25 15:59:38 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-24 16:45:00 obsr760620 S21536544 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289339801 2021-03-19 16:02:45.308962 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 100 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-05 15:50:00 obsr325492 S21211388 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293670090 2021-04-01 10:47:08.851048 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus N 4 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-28 07:26:00 obsr52000 S21576241 Traveling P22 EBIRD 24.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545592 2021-04-01 10:47:08.851048 592 species avibase-3072CC16 Redhead Aythya americana N 12 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-02 10:06:00 obsr52000 S21146547 Traveling P22 EBIRD 220.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289866559 2021-04-01 10:47:08.851048 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 30 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-365 Water St L2310812 P 42.106379 -75.911075 2015-01-08 12:11:00 obsr52000 S21253033 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291976568 2021-03-19 16:02:45.308962 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 30 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-19 06:55:00 obsr325492 S21422329 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292798138 2021-03-26 06:09:25.361188 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 60 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-23 07:10:00 obsr325492 S21507325 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292466255 2021-03-19 16:02:45.308962 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa N 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Barker Hill Rd. Bridge L450623 H 42.2985053 -75.9085891 2015-01-21 09:45:00 obsr605122 S21481135 Traveling P22 EBIRD 10.0 3.219 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291640972 2021-03-19 16:02:45.308962 303 species avibase-B59E1863 Canada Goose Branta canadensis N 100 United States US New York US-NY Broome US-NY-007 28.0 route 17 and 201 interchange L3300667 P 42.1198083 -75.9693861 2015-01-17 13:15:00 obsr605122 S21396558 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290843197 2021-04-01 10:47:08.851048 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 9 United States US New York US-NY Broome US-NY-007 28.0 K-mart L1359831 P 42.1053355 -75.905288 2015-01-13 01:15:00 obsr393139 S21331872 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293885372 2021-03-19 16:02:45.308962 505 species avibase-C732CB10 American Black Duck Anas rubripes N 200 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-29 16:29:00 obsr52000 S21593640 Traveling P22 EBIRD 65.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291427367 2021-04-01 10:47:08.851048 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-15 09:45:00 obsr456332 S21379489 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293665990 2021-03-19 16:02:45.308962 505 species avibase-C732CB10 American Black Duck Anas rubripes N 50 United States US New York US-NY Broome US-NY-007 28.0 Broome County Landfill L2494208 H 42.2422743 -75.97730229999999 2015-01-27 23:30:00 obsr195505 S21575895 Traveling P22 EBIRD 40.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292500602 2021-03-19 16:02:45.308962 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus N 250 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-21 16:25:00 obsr52000 S21483892 Traveling P22 EBIRD 46.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293891939 2021-03-19 16:02:45.308962 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 6 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-01-29 16:00:00 obsr534674 S21594108 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293443190 2021-03-24 19:20:44.053843 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.09052249999999 2015-01-25 10:27:00 obsr624920 S21558695 Traveling P22 EBIRD 48.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291172889 2021-04-01 10:47:08.851048 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 15 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-15 07:30:00 obsr325492 S21358751 Traveling P22 EBIRD 20.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112733 2021-03-26 06:09:25.361188 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 3 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-04 16:00:00 obsr223307 S21193794 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414337 2021-04-01 10:47:08.851048 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 200 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-11 08:23:00 obsr52000 S21297600 Traveling P22 EBIRD 320.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292916188 2021-03-19 16:02:45.308962 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 75 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-24 11:52:00 obsr325492 S21516841 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293588413 2021-03-26 06:09:25.361188 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) N 30 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-27 16:30:00 obsr325492 S21570015 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294267296 2021-03-19 16:02:45.308962 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY Broome US-NY-007 28.0 Monroe St L773661 P 42.1023778 -76.0504317 2015-01-31 12:26:00 obsr624920 S21623552 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289475651 2021-03-19 16:02:45.308962 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin L195377 T 42.03428 -75.80383 2015-01-06 12:00:00 obsr603756 S21221948 Stationary P21 EBIRD 20.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289729391 2021-04-01 10:47:08.851048 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni N 205 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-07 08:05:00 obsr325492 S21241769 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292467333 2021-03-24 19:20:44.053843 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis N 12 United States US New York US-NY Broome US-NY-007 28.0 Smith Hill L3308153 P 42.34801470000001 -76.03148459999998 2015-01-21 10:30:00 obsr605122 S21481207 Traveling P22 EBIRD 20.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292908789 2021-03-24 19:20:44.053843 505 species avibase-C732CB10 American Black Duck Anas rubripes N X United States US New York US-NY Broome US-NY-007 28.0 Tri-City Airport L2347159 H 42.08439 -76.093867 2015-01-24 11:30:00 obsr760620 S21516269 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275053 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-16 10:00:00 obsr760620 S21367302 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292466927 2021-03-19 16:02:45.308962 483 species avibase-85625D75 Mallard Anas platyrhynchos N 1 United States US New York US-NY Broome US-NY-007 28.0 route 79 L3308143 P 42.3214299 -75.9460402 2015-01-21 10:00:00 obsr605122 S21481185 Traveling P22 EBIRD 15.0 11.265 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290899445 2021-04-01 10:47:08.851048 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.09052249999999 2015-01-11 11:28:00 obsr624920 S21336643 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291324745 2021-03-19 16:02:45.308962 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 10 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-16 16:30:00 obsr325492 S21371423 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291620129 2021-03-19 16:02:45.308962 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis N X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-17 12:20:00 obsr624920 S21394785 Traveling P22 EBIRD 17.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291032605 2021-04-01 10:47:08.851048 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N 250 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-14 15:30:00 obsr325492 S21347361 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292812502 2021-03-19 16:02:45.308962 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 1 United States US New York US-NY Broome US-NY-007 28.0 Perce Rd and Mt Hunger Rd Intersect L3312418 P 42.3461455 -76.0571061 2015-01-23 14:30:00 obsr579000 S21508566 Traveling P22 EBIRD 80.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288566022 2021-03-19 16:02:45.308962 483 species avibase-85625D75 Mallard Anas platyrhynchos N 100 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-02 16:06:00 obsr325492 S21148264 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256577 2021-04-01 10:47:08.851048 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N X United States US New York US-NY Broome US-NY-007 28.0 1449 Front St. Binghamton NY L1890566 P 42.1678573 -75.8887213 2015-01-01 11:59:00 obsr534674 S21122332 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288619520 2021-03-19 16:02:45.308962 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N X United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-02 14:52:00 obsr624920 S21152689 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291425728 2021-03-19 16:02:45.308962 20829 species avibase-B9B272F4 Common Raven Corvus corax N 11 United States US New York US-NY Broome US-NY-007 28.0 W.Arterial Rd., Hillcrest L2054811 P 42.1497394 -75.8907115 2015-01-15 09:33:00 obsr456332 S21379400 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290872437 2021-04-01 10:47:08.851048 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 250 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-13 15:36:00 obsr325492 S21334565 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289017277 2021-03-19 16:02:45.308962 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 9 United States US New York US-NY Broome US-NY-007 28.0 Broome County Landfill L2494208 H 42.2422743 -75.97730229999999 2015-01-04 12:15:00 obsr223307 S21186297 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625181 2021-04-01 10:47:08.851048 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 15 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 08:20:00 obsr423934 S21395195 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289027874 2021-03-26 06:09:25.361188 1375 species avibase-4B9EEF56 Ring-necked Pheasant Phasianus colchicus N 7 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-407-445 Smith Hill Rd L2029848 P 42.349905 -76.01804200000001 2015-01-04 13:13:00 obsr223307 S21187138 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291274864 2021-04-01 10:47:08.851048 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-02 10:30:00 obsr760620 S21367283 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292655850 2021-03-26 06:09:25.361188 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 5 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-22 07:00:00 obsr325492 S21496232 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291168216 2021-03-19 16:02:45.308962 6339 species avibase-8535345B Herring Gull Larus argentatus N 40 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 16:14:00 obsr52000 S21358369 Traveling P22 EBIRD 63.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291624466 2018-08-04 16:53:53 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-18 07:55:00 obsr423934 S21395142 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293142382 2021-03-30 19:03:14.123633 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 3 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-25 13:53:00 obsr99508 S21534403 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095291 2018-08-04 16:54:45 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 09:30:00 obsr534674 S21431580 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294005861 2021-03-30 19:03:14.123633 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-30 09:40:00 obsr195505 S21602865 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292692079 2021-03-30 19:03:14.123633 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-18 12:44:00 obsr624920 S21499162 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293299256 2021-03-30 19:03:14.123633 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-25 13:50:00 obsr456332 S21546541 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417369 2021-03-30 19:03:14.123633 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1365080 P 42.1336342 -75.89822790000001 2015-01-17 10:00:00 obsr393139 S21378653 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275336 2018-08-04 16:53:23 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 10:30:00 obsr760620 S21367326 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292880457 2021-03-30 19:03:14.123633 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 09:40:00 obsr456332 S21513772 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293748823 2021-03-30 19:03:14.123633 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-28 14:15:00 obsr534674 S21582604 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292785828 2018-08-04 16:54:55 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-23 13:36:00 obsr195505 S21506362 Traveling P22 EBIRD 109.0 6.968 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681831 2018-08-04 16:53:56 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 10:00:00 obsr534674 S21399495 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289011402 2021-04-01 10:47:08.851048 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-04 08:07:00 obsr52000 S21185826 Traveling P22 EBIRD 265.0 32.186 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290716065 2018-08-04 16:53:14 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-12 17:20:00 obsr52000 S21322023 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293598449 2021-03-30 19:03:14.123633 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-27 08:30:00 obsr456332 S21570856 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289058133 2018-08-04 16:52:45 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-04 14:42:00 obsr223307 S21189345 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146059 2018-08-04 16:53:21 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-15 12:32:00 obsr195505 S21356577 Traveling P22 EBIRD 92.0 5.906000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985248 2021-04-01 10:47:08.851048 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171368 2021-04-01 10:47:08.851048 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 09:15:00 obsr760620 S21536653 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625500 2018-08-04 16:53:54 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-18 08:48:00 obsr423934 S21395231 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291937263 2015-01-19 14:52:51 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-19 12:27:00 obsr195505 S21419035 Traveling P22 EBIRD 107.0 7.113 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293170165 2015-01-25 15:59:38 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-24 16:45:00 obsr760620 S21536544 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917464 2015-01-24 13:33:41 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-24 08:30:00 obsr325492 S21516942 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290899438 2021-04-01 10:47:08.851048 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.09052249999999 2015-01-11 11:28:00 obsr624920 S21336643 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290413610 2017-08-16 02:23:57 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-11 09:45:00 obsr423934 S21297548 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292468099 2021-03-26 06:09:25.361188 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Broome US-NY-007 28.0 Caldwell Hill L1981207 H 42.346095700000006 -76.0689363 2015-01-21 11:15:00 obsr605122 S21481277 Traveling P22 EBIRD 15.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288778618 2015-01-03 15:35:01 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 Female, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-03 09:00:00 obsr325492 S21165327 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290476388 2015-01-11 17:29:20 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-11 09:30:00 obsr325492 S21302634 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288808591 2015-01-03 17:01:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-03 07:00:00 obsr534674 S21167782 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288619519 2021-03-19 16:02:45.308962 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni X United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-02 14:52:00 obsr624920 S21152689 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292467583 2015-01-21 13:52:16 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 Edwards Hill Rd. L1396502 H 42.3326977 -76.0304532 2015-01-21 10:50:00 obsr605122 S21481234 Traveling P22 EBIRD 10.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241219 2015-01-01 16:36:42 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 Female, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-01 10:30:00 obsr325492 S21121015 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289118146 2015-01-04 18:00:00 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Coleman St. Park L1916434 P 42.0338031 -76.02144240000001 2015-01-04 11:22:00 obsr624920 S21194237 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293838844 2015-01-29 11:52:47 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 11:40:00 obsr605122 S21589711 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681841 2018-08-04 16:53:56 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 10:00:00 obsr534674 S21399495 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290463336 2017-08-16 02:23:57 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-11 15:05:00 obsr605122 S21301534 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289119965 2015-01-04 18:03:52 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-04 13:31:00 obsr624920 S21194369 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192433 2015-01-10 14:08:05 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-10 07:00:00 obsr534674 S21279456 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293726261 2015-01-28 15:34:25 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-28 11:00:00 obsr423934 S21580528 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288701903 2021-03-26 06:09:25.361188 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-03 10:30:00 obsr605122 S21159105 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293436630 2015-01-26 18:58:59 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-26 08:30:00 obsr325492 S21558172 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290412926 2015-01-11 13:37:54 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-11 08:38:00 obsr423934 S21297496 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985236 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288723229 2015-01-03 12:23:30 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-03 10:20:00 obsr307329 S21160926 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290822834 2015-01-13 12:00:07 526 species avibase-56CCA717 Northern Pintail Anas acuta 4 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-13 10:25:00 obsr195505 S21330137 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292759927 2015-01-23 12:44:44 251 domestic avibase-6835DC6C Graylag Goose (Domestic type) Anser anser (Domestic type) 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-23 08:17:00 obsr195505 S21504293 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292652561 2017-02-01 21:17:41 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-22 13:51:00 obsr195505 S21495970 Traveling P22 EBIRD 96.0 6.196000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293877539 2017-02-01 21:17:41 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-29 13:29:00 obsr195505 S21593041 Traveling P22 EBIRD 115.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293083707 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr223307 S21529659 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293297743 2021-04-01 10:47:08.851048 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr456332 S21546407 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254899 2021-04-01 10:47:08.851048 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr99508 S21543110 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171363 2021-04-01 10:47:08.851048 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 09:15:00 obsr760620 S21536653 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293328861 2018-08-04 16:55:15 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr99508 S21548539 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291427368 2021-04-01 10:47:08.851048 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-15 09:45:00 obsr456332 S21379489 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291423765 2015-01-17 11:37:00 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Broome US-NY-007 28.0 DeForest St., Binghamton L2689296 P 42.1169495 -75.90437469999999 2015-01-15 09:15:00 obsr456332 S21379172 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254934 2021-04-01 10:47:08.851048 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr99508 S21543115 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293083543 2021-04-01 10:47:08.851048 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr223307 S21529646 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298598879 2018-08-04 16:55:22 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Tioughnioga River, below dam L3193015 H 42.3370316 -75.96967579999999 2015-01-28 12:05:00 obsr423934 S21580590 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250599 2018-08-04 16:53:23 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 09:10:00 obsr534674 S21365214 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275654 2018-08-04 16:53:23 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 11:00:00 obsr760620 S21367359 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298927 2018-08-04 16:55:15 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr456332 S21546514 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293297884 2021-04-01 10:47:08.851048 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr456332 S21546418 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275334 2018-08-04 16:53:23 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 10:30:00 obsr760620 S21367326 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414257 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-11 10:15:00 obsr423934 S21297595 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681837 2018-08-04 16:53:56 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 10:00:00 obsr534674 S21399495 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293877549 2017-02-01 21:17:41 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-29 13:29:00 obsr195505 S21593041 Traveling P22 EBIRD 115.0 6.437 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292652569 2017-02-01 21:17:41 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-22 13:51:00 obsr195505 S21495970 Traveling P22 EBIRD 96.0 6.196000000000001 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293085519 2015-01-25 20:44:08 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 14 United States US New York US-NY Broome US-NY-007 28.0 Conklin, 745 Conklin Road L2583803 P 42.09929 -75.84971999999999 2015-01-25 08:42:00 obsr223307 S21529797 Stationary P21 EBIRD 13.0 1.0 0 G1123318 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293749011 2018-08-04 16:55:23 505 species avibase-C732CB10 American Black Duck Anas rubripes 8 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L2146812 P 42.09197 -76.06111 2015-01-28 15:30:00 obsr534674 S21582626 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289338919 2015-01-05 17:11:26 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-01-05 16:29:00 obsr52000 S21211319 Traveling P22 EBIRD 41.0 18.668 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292035046 2021-04-01 10:47:08.851048 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Broome US-NY-007 28.0 Wall St. Binghamton L255273 P 42.10242720000001 -75.9146586 2015-01-19 11:10:00 obsr325492 S21422401 Traveling P22 EBIRD 5.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545582 2021-04-01 10:47:08.851048 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-02 10:06:00 obsr52000 S21146547 Traveling P22 EBIRD 220.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420045 2021-03-30 19:03:14.123633 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-02 16:30:00 obsr456332 S21378860 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254739 2015-01-25 20:43:43 592 species avibase-3072CC16 Redhead Aythya americana 4 United States US New York US-NY Broome US-NY-007 28.0 642-672 New York 7, 642-650 Conklin Road L2583798 P 42.10144 -75.85935 2015-01-25 08:43:00 obsr99508 S21543093 Stationary P21 EBIRD 7.0 1.0 0 G1123317 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293542780 2021-04-01 10:47:08.851048 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 09:40:00 obsr760620 S21566404 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298923 2018-08-04 16:55:15 27616 species avibase-D77E4B41 American Robin Turdus migratorius 25 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr456332 S21546514 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470233 2020-01-17 17:31:16 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 10 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-17 08:02:00 obsr325492 S21383040 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291423762 2015-01-17 11:37:00 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Broome US-NY-007 28.0 DeForest St., Binghamton L2689296 P 42.1169495 -75.90437469999999 2015-01-15 09:15:00 obsr456332 S21379172 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293085105 2015-01-25 20:43:43 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Broome US-NY-007 28.0 642-672 New York 7, 642-650 Conklin Road L2583798 P 42.10144 -75.85935 2015-01-25 08:43:00 obsr223307 S21529759 Stationary P21 EBIRD 7.0 1.0 0 G1123317 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172567 2018-08-04 16:55:29 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-31 11:26:00 obsr624920 S21616021 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293598160 2018-08-04 16:55:19 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 25 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 08:20:00 obsr456332 S21570835 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293297942 2015-01-25 23:21:39 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 14 United States US New York US-NY Broome US-NY-007 28.0 Conklin, 745 Conklin Road L2583803 P 42.09929 -75.84971999999999 2015-01-25 08:42:00 obsr456332 S21546425 Stationary P21 EBIRD 13.0 1.0 0 G1123318 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288507294 2021-04-01 10:47:08.851048 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-02 14:25:00 obsr99508 S21143109 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095710 2018-08-04 16:54:45 483 species avibase-85625D75 Mallard Anas platyrhynchos 12 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-20 08:15:00 obsr534674 S21431618 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293443445 2021-02-28 20:26:22.473883 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-25 12:46:00 obsr624920 S21558722 Traveling P22 EBIRD 34.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254147 2018-08-04 16:55:14 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 320-372 Doolittle Road, 310-372 Dutchtown Road L2584030 P 42.125040000000006 -75.64709 2015-01-25 11:40:00 obsr99508 S21543047 Stationary P21 EBIRD 21.0 1.0 0 G1123309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298300 2018-08-04 16:55:14 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Broome US-NY-007 28.0 320-372 Doolittle Road, 310-372 Dutchtown Road L2584030 P 42.125040000000006 -75.64709 2015-01-25 11:40:00 obsr456332 S21546462 Stationary P21 EBIRD 21.0 1.0 0 G1123309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250972 2018-08-04 16:53:23 30494 species avibase-240E3390 House Sparrow Passer domesticus 20 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 08:15:00 obsr534674 S21365247 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095512 2018-08-04 16:54:45 592 species avibase-3072CC16 Redhead Aythya americana 10 United States US New York US-NY Broome US-NY-007 28.0 Port Dickenson Park L1906135 P 42.14136 -75.89749 2015-01-20 08:45:00 obsr534674 S21431599 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291429064 2018-08-04 16:53:23 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-16 09:00:00 obsr456332 S21379721 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275329 2018-08-04 16:53:23 11494 species avibase-20C2214E American Kestrel Falco sparverius 8 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 10:30:00 obsr760620 S21367326 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293297882 2021-04-01 10:47:08.851048 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr456332 S21546418 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985237 2021-04-01 10:47:08.851048 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291136666 2018-08-04 16:53:21 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 15 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 10:15:00 obsr393139 S21355738 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171374 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 09:15:00 obsr760620 S21536653 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291477448 2018-08-04 16:53:28 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Broome US-NY-007 28.0 Port Dickinson Comm. Park L242754 P 42.1414743 -75.8954533 2015-01-17 10:50:00 obsr325492 S21383573 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293599132 2021-04-01 10:47:08.851048 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Broome US-NY-007 28.0 Conklin Ave., old Crowley lot L3322621 P 42.0934772 -75.90346140000001 2015-01-27 09:20:00 obsr456332 S21570905 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291429440 2018-08-04 16:53:24 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 4 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-16 17:20:00 obsr456332 S21379763 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254932 2021-04-01 10:47:08.851048 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr99508 S21543115 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292692238 2018-08-04 16:53:57 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 13:04:00 obsr624920 S21499177 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254618 2015-01-25 20:43:24 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Broome US-NY-007 28.0 Conklin, Conklin Park Road L2583869 P 42.06475 -75.80788000000001 2015-01-25 09:03:00 obsr99508 S21543083 Stationary P21 EBIRD 10.0 1.0 0 G1123315 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298007 2015-01-25 23:22:37 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY Broome US-NY-007 28.0 Conklin, Conklin Park Road L2583869 P 42.06475 -75.80788000000001 2015-01-25 09:03:00 obsr456332 S21546436 Stationary P21 EBIRD 10.0 1.0 0 G1123315 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254897 2021-04-01 10:47:08.851048 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr99508 S21543110 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625180 2021-04-01 10:47:08.851048 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 35 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 08:20:00 obsr423934 S21395195 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291626174 2018-10-27 08:06:01 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Broome US-NY-007 28.0 Martin Luther King Jr. Memorial Promenade L2467334 H 42.1006345 -75.91548979999999 2015-01-18 09:15:00 obsr423934 S21395296 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293087170 2015-01-25 20:43:24 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Broome US-NY-007 28.0 Conklin, Conklin Park Road L2583869 P 42.06475 -75.80788000000001 2015-01-25 09:03:00 obsr223307 S21529959 Stationary P21 EBIRD 10.0 1.0 0 G1123315 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293083705 2021-04-01 10:47:08.851048 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr223307 S21529659 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293328857 2018-08-04 16:55:15 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 25 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr99508 S21548539 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417371 2021-03-30 19:03:14.123633 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 8 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1365080 P 42.1336342 -75.89822790000001 2015-01-17 10:00:00 obsr393139 S21378653 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291620123 2021-03-19 16:02:45.308962 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 2 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-17 12:20:00 obsr624920 S21394785 Traveling P22 EBIRD 17.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293741720 2018-08-04 16:55:23 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Broome US-NY-007 28.0 Confluence Park L2473323 H 42.092993 -75.91611540000001 2015-01-28 16:27:00 obsr52000 S21582019 Traveling P22 EBIRD 50.0 12.874 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293297979 2015-01-25 23:22:14 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 4 United States US New York US-NY Broome US-NY-007 28.0 642-672 New York 7, 642-650 Conklin Road L2583798 P 42.10144 -75.85935 2015-01-25 08:43:00 obsr456332 S21546433 Stationary P21 EBIRD 7.0 1.0 0 G1123317 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291168212 2021-03-19 16:02:45.308962 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 16:14:00 obsr52000 S21358369 Traveling P22 EBIRD 63.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291922320 2018-08-04 16:54:03 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 US-NY-Whitney Point - 42.3294x-75.9646 - Jan 19, 2015, 1:37 PM L3303791 P 42.329372 -75.96457099999999 2015-01-19 13:38:00 obsr476925 S21417812 Stationary P21 EBIRD 5.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192153 2021-03-26 06:09:25.361188 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-01-10 09:30:00 obsr534674 S21279429 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293430796 2018-08-04 16:55:18 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 35 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-26 11:10:00 obsr456332 S21557723 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293297741 2021-04-01 10:47:08.851048 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr456332 S21546407 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293083541 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr223307 S21529646 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291916260 2018-08-04 16:54:02 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Broome US-NY-007 28.0 42.4014x-76.0151 - Jan 19, 2015, 1:12 PM L3303719 P 42.401446 -76.015108 2015-01-19 13:12:00 obsr476925 S21417392 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292499190 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 Male, Adult (2); Female, Adult (3) United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-21 16:35:00 obsr325492 S21483798 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498878 2018-08-04 16:53:53 662 species avibase-FB738385 Bufflehead Bucephala albeola 11 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-17 16:15:00 obsr456332 S21385342 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293417582 2018-08-04 16:55:19 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 40 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-26 16:29:00 obsr52000 S21556549 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275607 2018-08-04 16:53:23 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 11:00:00 obsr760620 S21367359 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290712434 2018-08-04 16:53:13 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 9 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-12 16:20:00 obsr52000 S21321707 Traveling P22 EBIRD 42.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290472530 2020-01-17 17:31:16 6339 species avibase-8535345B Herring Gull Larus argentatus 10 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-11 15:30:00 obsr325492 S21302342 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290843196 2021-04-01 10:47:08.851048 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Broome US-NY-007 28.0 K-mart L1359831 P 42.1053355 -75.905288 2015-01-13 01:15:00 obsr393139 S21331872 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293588410 2021-03-26 06:09:25.361188 447 species avibase-C235A4D7 Gadwall Mareca strepera 4 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-27 16:30:00 obsr325492 S21570015 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293121298 2020-01-17 17:31:16 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-25 10:20:00 obsr325492 S21532865 Traveling P22 EBIRD 22.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292797516 2021-03-26 06:09:25.361188 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Wall St. Binghamton L255273 P 42.10242720000001 -75.9146586 2015-01-23 11:05:00 obsr325492 S21507285 Traveling P22 EBIRD 5.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291698748 2018-08-04 16:53:58 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 11 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 13:37:00 obsr195505 S21400597 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292975214 2018-08-04 16:55:10 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 25 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-24 16:07:00 obsr456332 S21521112 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289482726 2021-04-01 10:47:08.851048 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-06 12:26:00 obsr52000 S21222750 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241695 2018-08-04 16:52:16 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-01 10:00:00 obsr534674 S21121060 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289235441 2018-08-04 16:52:46 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-05 07:38:00 obsr52000 S21202996 Traveling P22 EBIRD 12.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291624462 2018-08-04 16:53:53 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 7 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-18 07:55:00 obsr423934 S21395142 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292460771 2018-08-04 16:54:48 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-21 08:35:00 obsr605122 S21480780 Stationary P21 EBIRD 10.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289071162 2018-10-27 08:18:26 505 species avibase-C732CB10 American Black Duck Anas rubripes 9 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-04 15:36:00 obsr223307 S21190407 Stationary P21 EBIRD 7.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146057 2018-08-04 16:53:21 303 species avibase-B59E1863 Canada Goose Branta canadensis 14 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-15 12:32:00 obsr195505 S21356577 Traveling P22 EBIRD 92.0 5.906000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291426615 2021-04-01 10:47:08.851048 592 species avibase-3072CC16 Redhead Aythya americana 8 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-15 09:45:00 obsr456332 S21379489 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291471521 2020-01-19 11:00:58 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-17 09:02:00 obsr325492 S21383141 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292653354 2018-08-04 16:54:53 20829 species avibase-B9B272F4 Common Raven Corvus corax 20 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-22 16:19:00 obsr52000 S21496035 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291697164 2018-08-04 16:53:57 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 8 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-18 12:35:00 obsr195505 S21400464 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291425034 2021-04-01 10:47:08.851048 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 4 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-15 09:30:00 obsr456332 S21379326 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293114708 2018-08-04 16:55:14 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Broome US-NY-007 28.0 320-372 Doolittle Road, 310-372 Dutchtown Road L2584030 P 42.125040000000006 -75.64709 2015-01-25 11:40:00 obsr223307 S21532328 Stationary P21 EBIRD 21.0 1.0 0 G1123309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250598 2018-08-04 16:53:23 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 09:10:00 obsr534674 S21365214 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290201937 2020-01-17 17:31:16 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-10 13:30:00 obsr325492 S21280224 Traveling P22 EBIRD 30.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254827 2015-01-25 20:44:08 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 14 United States US New York US-NY Broome US-NY-007 28.0 Conklin, 745 Conklin Road L2583803 P 42.09929 -75.84971999999999 2015-01-25 08:42:00 obsr99508 S21543104 Stationary P21 EBIRD 13.0 1.0 0 G1123318 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289531650 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-30 Charles St L1811019 P 42.108367 -75.92590600000001 2015-01-06 16:26:00 obsr52000 S21226651 Traveling P22 EBIRD 65.0 64.372 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291424041 2021-04-01 10:47:08.851048 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Broome US-NY-007 28.0 Lisle, 302-372 Smith Hill Road L1989308 P 42.34888 -76.02524 2015-01-17 10:45:00 obsr534674 S21379191 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293443188 2021-03-24 19:20:44.053843 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon N X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.09052249999999 2015-01-25 10:27:00 obsr624920 S21558695 Traveling P22 EBIRD 48.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290012971 2021-03-26 06:09:25.361188 1375 species avibase-4B9EEF56 Ring-necked Pheasant Phasianus colchicus N 8 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-08 14:00:00 obsr423934 S21264895 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290899437 2021-04-01 10:47:08.851048 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius N X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.09052249999999 2015-01-11 11:28:00 obsr624920 S21336643 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288997568 2021-03-24 19:20:44.053843 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 35 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-04 11:55:00 obsr223307 S21184758 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293346820 2021-03-24 19:20:44.053843 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 11 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-26 07:00:00 obsr534674 S21550051 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294103892 2021-03-26 06:09:25.361188 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-31 08:00:00 obsr605122 S21610342 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292467266 2021-03-24 19:20:44.053843 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 1 United States US New York US-NY Broome US-NY-007 28.0 Smith Hill L3308153 P 42.34801470000001 -76.03148459999998 2015-01-21 10:30:00 obsr605122 S21481207 Traveling P22 EBIRD 20.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288698481 2021-03-24 19:20:44.053843 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin L195377 T 42.03428 -75.80383 2015-01-03 09:45:00 obsr603756 S21158720 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292469204 2021-03-24 19:20:44.053843 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 15 United States US New York US-NY Broome US-NY-007 28.0 Anderson Road L3308174 P 42.283024 -75.995307 2015-01-21 11:57:00 obsr605122 S21481365 Stationary P21 EBIRD 9.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097035 2021-03-24 19:20:44.053843 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N 2 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr223307 S21530909 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293260061 2022-03-07 16:16:36.127066 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus N 2 United States US New York US-NY Broome US-NY-007 28.0 Home - Renee L696123 P 42.1130118 -75.93151329999999 2015-01-24 09:24:00 obsr99508 S21543500 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288433306 2021-03-24 19:20:44.053843 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 12 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-02 obsr223307 S21136871 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293838689 2021-03-24 19:20:44.053843 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 11:00:00 obsr605122 S21589697 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985242 2021-04-01 10:47:08.851048 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292908788 2021-03-24 19:20:44.053843 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N X United States US New York US-NY Broome US-NY-007 28.0 Tri-City Airport L2347159 H 42.08439 -76.093867 2015-01-24 11:30:00 obsr760620 S21516269 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288215626 2021-03-26 06:09:25.361188 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 15 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-01 13:00:00 obsr579000 S21118896 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254202 2021-03-24 19:20:44.053843 483 species avibase-85625D75 Mallard Anas platyrhynchos N 2 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr99508 S21543052 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291280876 2021-03-24 19:20:44.053843 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N 1 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-16 13:30:00 obsr423934 S21367828 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498472 2021-03-24 19:20:44.053843 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-17 16:00:00 obsr456332 S21385304 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289027865 2021-03-26 06:09:25.361188 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 14 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-407-445 Smith Hill Rd L2029848 P 42.349905 -76.01804200000001 2015-01-04 13:13:00 obsr223307 S21187138 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291486884 2021-03-24 19:20:44.053843 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 25 United States US New York US-NY Broome US-NY-007 28.0 Kirkwood Backyard L518236 P 42.0855596 -75.7881171 2015-01-16 08:32:00 obsr52763 S21384373 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298270 2021-03-24 19:20:44.053843 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 2 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr456332 S21546459 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290237858 2021-03-26 06:09:25.361188 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N X United States US New York US-NY Broome US-NY-007 28.0 Victory St. JC L166647 P 42.125027 -75.98304 2015-01-10 13:00:00 obsr624920 S21283511 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292499191 2021-04-01 10:47:08.851048 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 2 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-21 16:35:00 obsr325492 S21483798 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293511614 2021-03-26 06:09:25.361188 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-27 07:15:00 obsr605122 S21563758 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812880 2021-03-26 06:09:25.361188 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 08:00:00 obsr605122 S21587553 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290134361 2021-03-26 06:09:25.361188 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus N 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-10 07:30:00 obsr605122 S21274387 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288463646 2022-03-07 16:16:36.127066 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 23 United States US New York US-NY Broome US-NY-007 28.0 Home - Renee L696123 P 42.1130118 -75.93151329999999 2015-01-02 11:46:00 obsr99508 S21139524 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985240 2021-04-01 10:47:08.851048 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289482731 2021-04-01 10:47:08.851048 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 4 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-06 12:26:00 obsr52000 S21222750 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292888008 2021-03-26 06:09:25.361188 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-24 10:15:00 obsr605122 S21514443 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293260060 2022-03-07 16:16:36.127066 303 species avibase-B59E1863 Canada Goose Branta canadensis N 10 United States US New York US-NY Broome US-NY-007 28.0 Home - Renee L696123 P 42.1130118 -75.93151329999999 2015-01-24 09:24:00 obsr99508 S21543500 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288105899 2021-03-26 06:09:25.361188 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-01 08:45:00 obsr605122 S21109834 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290843194 2021-04-01 10:47:08.851048 505 species avibase-C732CB10 American Black Duck Anas rubripes N 5 United States US New York US-NY Broome US-NY-007 28.0 K-mart L1359831 P 42.1053355 -75.905288 2015-01-13 01:15:00 obsr393139 S21331872 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545595 2021-04-01 10:47:08.851048 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius N 2 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-02 10:06:00 obsr52000 S21146547 Traveling P22 EBIRD 220.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292581673 2021-03-26 06:09:25.361188 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-22 07:50:00 obsr605122 S21490341 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290359046 2021-03-26 06:09:25.361188 303 species avibase-B59E1863 Canada Goose Branta canadensis N 6 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-11 08:00:00 obsr605122 S21293150 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293881703 2021-04-01 10:47:08.851048 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis N 2 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-29 06:55:00 obsr325492 S21593364 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292798136 2021-03-26 06:09:25.361188 483 species avibase-85625D75 Mallard Anas platyrhynchos N 2 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-23 07:10:00 obsr325492 S21507325 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294103890 2021-03-26 06:09:25.361188 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni N 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-31 08:00:00 obsr605122 S21610342 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288701900 2021-03-26 06:09:25.361188 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-03 10:30:00 obsr605122 S21159105 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291172888 2021-04-01 10:47:08.851048 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 2 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-15 07:30:00 obsr325492 S21358751 Traveling P22 EBIRD 20.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288215621 2021-03-26 06:09:25.361188 592 species avibase-3072CC16 Redhead Aythya americana N 20 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-01 13:00:00 obsr579000 S21118896 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288415805 2021-03-26 06:09:25.361188 341 species avibase-B86C504C Trumpeter Swan Cygnus buccinator N 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-02 08:00:00 obsr605122 S21135244 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292732571 2021-03-26 06:09:25.361188 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon N 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-23 08:00:00 obsr605122 S21502035 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292468098 2021-03-26 06:09:25.361188 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 1 United States US New York US-NY Broome US-NY-007 28.0 Caldwell Hill L1981207 H 42.346095700000006 -76.0689363 2015-01-21 11:15:00 obsr605122 S21481277 Traveling P22 EBIRD 15.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294102255 2021-03-26 06:09:25.361188 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus N 1 United States US New York US-NY Broome US-NY-007 28.0 Oakdale Mall L1628149 P 42.12772929999999 -75.97520329999999 2015-01-31 07:54:00 obsr223307 S21610161 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291425038 2021-04-01 10:47:08.851048 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-15 09:30:00 obsr456332 S21379326 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292797518 2021-03-26 06:09:25.361188 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 1 United States US New York US-NY Broome US-NY-007 28.0 Wall St. Binghamton L255273 P 42.10242720000001 -75.9146586 2015-01-23 11:05:00 obsr325492 S21507285 Traveling P22 EBIRD 5.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289027871 2021-03-26 06:09:25.361188 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 22 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-407-445 Smith Hill Rd L2029848 P 42.349905 -76.01804200000001 2015-01-04 13:13:00 obsr223307 S21187138 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288685768 2021-03-26 06:09:25.361188 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus N 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-03 08:50:00 obsr605122 S21157617 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292655848 2021-03-26 06:09:25.361188 303 species avibase-B59E1863 Canada Goose Branta canadensis N 2 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-22 07:00:00 obsr325492 S21496232 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290012968 2021-03-26 06:09:25.361188 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 1 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-08 14:00:00 obsr423934 S21264895 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291421295 2021-03-26 06:09:25.361188 483 species avibase-85625D75 Mallard Anas platyrhynchos N 6 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-07 09:00:00 obsr456332 S21378968 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420806 2021-03-26 06:09:25.361188 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 6 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-05 09:00:00 obsr456332 S21378913 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112724 2021-03-26 06:09:25.361188 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis N 10 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-04 16:00:00 obsr223307 S21193794 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291421544 2021-03-26 06:09:25.361188 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis N 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-08 09:00:00 obsr456332 S21378990 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290237860 2021-03-26 06:09:25.361188 7732 species avibase-A091D50A Northern Harrier Circus hudsonius N X United States US New York US-NY Broome US-NY-007 28.0 Victory St. JC L166647 P 42.125027 -75.98304 2015-01-10 13:00:00 obsr624920 S21283511 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288811472 2021-03-26 06:09:25.361188 483 species avibase-85625D75 Mallard Anas platyrhynchos N 5 United States US New York US-NY Broome US-NY-007 28.0 Lopke pit 79 L2759036 P 42.3089268 -75.93162059999999 2015-01-03 09:00:00 obsr534674 S21168002 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293588406 2021-03-26 06:09:25.361188 622 species avibase-50566E50 Lesser Scaup Aythya affinis N 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-27 16:30:00 obsr325492 S21570015 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293543420 2021-04-01 10:47:08.851048 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos N X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-27 10:00:00 obsr760620 S21566452 Traveling P22 EBIRD 20.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192160 2021-03-26 06:09:25.361188 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 12 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-01-10 09:30:00 obsr534674 S21279429 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289236436 2021-03-26 06:09:25.361188 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-05 07:50:00 obsr605122 S21203097 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289728793 2021-03-26 06:09:25.361188 303 species avibase-B59E1863 Canada Goose Branta canadensis N 3 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-30 Charles St L1811019 P 42.108367 -75.92590600000001 2015-01-07 16:10:00 obsr52000 S21241709 Traveling P22 EBIRD 58.0 40.072 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290803364 2021-03-26 06:09:25.361188 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-13 08:30:00 obsr605122 S21328368 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293430791 2018-08-04 16:55:18 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-26 11:10:00 obsr456332 S21557723 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293417581 2018-08-04 16:55:19 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 3 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-26 16:29:00 obsr52000 S21556549 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291620127 2021-03-19 16:02:45.308962 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 30 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-17 12:20:00 obsr624920 S21394785 Traveling P22 EBIRD 17.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293598448 2021-03-30 19:03:14.123633 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-27 08:30:00 obsr456332 S21570856 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625502 2018-08-04 16:53:54 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-18 08:48:00 obsr423934 S21395231 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420043 2021-03-30 19:03:14.123633 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-02 16:30:00 obsr456332 S21378860 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292915325 2021-03-30 19:03:14.123633 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 10 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-24 12:20:00 obsr325492 S21516778 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298299 2018-08-04 16:55:14 483 species avibase-85625D75 Mallard Anas platyrhynchos 11 United States US New York US-NY Broome US-NY-007 28.0 320-372 Doolittle Road, 310-372 Dutchtown Road L2584030 P 42.125040000000006 -75.64709 2015-01-25 11:40:00 obsr456332 S21546462 Stationary P21 EBIRD 21.0 1.0 0 G1123309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289866554 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-365 Water St L2310812 P 42.106379 -75.911075 2015-01-08 12:11:00 obsr52000 S21253033 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275332 2018-08-04 16:53:23 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 60 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 10:30:00 obsr760620 S21367326 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288619522 2021-03-19 16:02:45.308962 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-02 14:52:00 obsr624920 S21152689 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290463950 2021-04-01 10:47:08.851048 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-11 15:30:00 obsr605122 S21301594 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298598880 2018-08-04 16:55:22 303 species avibase-B59E1863 Canada Goose Branta canadensis 22 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Tioughnioga River, below dam L3193015 H 42.3370316 -75.96967579999999 2015-01-28 12:05:00 obsr423934 S21580590 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275601 2018-08-04 16:53:23 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 11:00:00 obsr760620 S21367359 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470222 2020-01-17 17:31:16 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 40 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-17 08:02:00 obsr325492 S21383040 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292461623 2021-03-30 19:03:14.123633 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 16 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-21 08:55:00 obsr605122 S21480844 Stationary P21 EBIRD 10.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291698745 2018-08-04 16:53:58 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 15 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 13:37:00 obsr195505 S21400597 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298060 2018-08-04 16:55:12 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 11 United States US New York US-NY Broome US-NY-007 28.0 Conklin, Conklin Park Road L2583869 P 42.06475 -75.80788000000001 2015-01-25 09:30:00 obsr456332 S21546443 Stationary P21 EBIRD 23.0 1.0 0 G1123313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291429442 2018-08-04 16:53:24 337 species avibase-694C127A Mute Swan Cygnus olor 20 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-16 17:20:00 obsr456332 S21379763 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985243 2021-04-01 10:47:08.851048 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 40 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292692080 2021-03-30 19:03:14.123633 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-18 12:44:00 obsr624920 S21499162 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625177 2021-04-01 10:47:08.851048 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 10 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 08:20:00 obsr423934 S21395195 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293299252 2021-03-30 19:03:14.123633 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-25 13:50:00 obsr456332 S21546541 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291471524 2020-01-19 11:00:58 303 species avibase-B59E1863 Canada Goose Branta canadensis 20 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-17 09:02:00 obsr325492 S21383141 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291696432 2018-08-04 16:53:54 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 08:21:00 obsr195505 S21400406 Traveling P22 EBIRD 79.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120920 2018-08-04 16:55:14 20829 species avibase-B9B272F4 Common Raven Corvus corax 3 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 21-217 Centervillage Loop Road L3316564 P 42.15982 -75.60088 2015-01-25 12:31:00 obsr223307 S21532819 Stationary P21 EBIRD 1.0 1.0 1 G1123304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293083703 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 21 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr223307 S21529659 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293328856 2018-08-04 16:55:15 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 25 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr99508 S21548539 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293142384 2021-03-30 19:03:14.123633 662 species avibase-FB738385 Bufflehead Bucephala albeola 10 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-25 13:53:00 obsr99508 S21534403 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293417578 2018-08-04 16:55:19 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 75 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-26 16:29:00 obsr52000 S21556549 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292500599 2021-03-19 16:02:45.308962 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 60 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-21 16:25:00 obsr52000 S21483892 Traveling P22 EBIRD 46.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291468779 2018-08-04 16:53:25 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 48 United States US New York US-NY Broome US-NY-007 28.0 Wall St. Binghamton L255273 P 42.10242720000001 -75.9146586 2015-01-17 07:40:00 obsr325492 S21382919 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292975212 2018-08-04 16:55:10 303 species avibase-B59E1863 Canada Goose Branta canadensis 30 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-24 16:07:00 obsr456332 S21521112 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292916182 2021-03-19 16:02:45.308962 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 10 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-24 11:52:00 obsr325492 S21516841 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290201933 2020-01-17 17:31:16 505 species avibase-C732CB10 American Black Duck Anas rubripes 67 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-10 13:30:00 obsr325492 S21280224 Traveling P22 EBIRD 30.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498874 2018-08-04 16:53:53 622 species avibase-50566E50 Lesser Scaup Aythya affinis 12 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-17 16:15:00 obsr456332 S21385342 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289071161 2018-10-27 08:18:26 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 9 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-04 15:36:00 obsr223307 S21190407 Stationary P21 EBIRD 7.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293114707 2018-08-04 16:55:14 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 11 United States US New York US-NY Broome US-NY-007 28.0 320-372 Doolittle Road, 310-372 Dutchtown Road L2584030 P 42.125040000000006 -75.64709 2015-01-25 11:40:00 obsr223307 S21532328 Stationary P21 EBIRD 21.0 1.0 0 G1123309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254930 2021-04-01 10:47:08.851048 6339 species avibase-8535345B Herring Gull Larus argentatus 21 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr99508 S21543115 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250597 2018-08-04 16:53:23 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 09:10:00 obsr534674 S21365214 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291324742 2021-03-19 16:02:45.308962 27616 species avibase-D77E4B41 American Robin Turdus migratorius 7 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-16 16:30:00 obsr325492 S21371423 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292785820 2018-08-04 16:54:55 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 27 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-23 13:36:00 obsr195505 S21506362 Traveling P22 EBIRD 109.0 6.968 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291426611 2021-04-01 10:47:08.851048 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-15 09:45:00 obsr456332 S21379489 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291921258 2018-08-04 16:54:02 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 27 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-3126 US-11 L3303770 P 42.34318 -75.986756 2015-01-19 13:31:00 obsr476925 S21417730 Stationary P21 EBIRD 2.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250978 2018-08-04 16:53:23 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 100 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 08:15:00 obsr534674 S21365247 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293588408 2021-03-26 06:09:25.361188 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-27 16:30:00 obsr325492 S21570015 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291136668 2018-08-04 16:53:21 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 20 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 10:15:00 obsr393139 S21355738 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290712433 2018-08-04 16:53:13 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 38 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-12 16:20:00 obsr52000 S21321707 Traveling P22 EBIRD 42.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095711 2018-08-04 16:54:45 26890 species avibase-94A44032 European Starling Sturnus vulgaris 33 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-20 08:15:00 obsr534674 S21431618 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293542781 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 09:40:00 obsr760620 S21566404 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289011401 2021-04-01 10:47:08.851048 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 14 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-04 08:07:00 obsr52000 S21185826 Traveling P22 EBIRD 265.0 32.186 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254146 2018-08-04 16:55:14 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 11 United States US New York US-NY Broome US-NY-007 28.0 320-372 Doolittle Road, 310-372 Dutchtown Road L2584030 P 42.125040000000006 -75.64709 2015-01-25 11:40:00 obsr99508 S21543047 Stationary P21 EBIRD 21.0 1.0 0 G1123309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292207505 2021-03-30 19:03:14.123633 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 15:00:00 obsr534674 S21440230 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290843187 2021-04-01 10:47:08.851048 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 7 United States US New York US-NY Broome US-NY-007 28.0 K-mart L1359831 P 42.1053355 -75.905288 2015-01-13 01:15:00 obsr393139 S21331872 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414258 2021-04-01 10:47:08.851048 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-11 10:15:00 obsr423934 S21297595 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291624461 2018-08-04 16:53:53 483 species avibase-85625D75 Mallard Anas platyrhynchos 80 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-18 07:55:00 obsr423934 S21395142 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291425727 2021-03-19 16:02:45.308962 483 species avibase-85625D75 Mallard Anas platyrhynchos 13 United States US New York US-NY Broome US-NY-007 28.0 W.Arterial Rd., Hillcrest L2054811 P 42.1497394 -75.8907115 2015-01-15 09:33:00 obsr456332 S21379400 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293083539 2021-04-01 10:47:08.851048 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 21 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr223307 S21529646 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292975617 2021-03-30 19:03:14.123633 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 12 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-24 16:30:00 obsr456332 S21521147 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291919652 2018-08-04 16:54:02 681 species avibase-407E2CA8 Common Merganser Mergus merganser 19 United States US New York US-NY Broome US-NY-007 28.0 42.3583x-75.9999 - Jan 19, 2015, 1:24 PM L3303753 P 42.358336 -75.999902 2015-01-19 13:24:00 obsr476925 S21417620 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417377 2021-03-30 19:03:14.123633 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1365080 P 42.1336342 -75.89822790000001 2015-01-17 10:00:00 obsr393139 S21378653 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254452 2018-08-04 16:55:12 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 11 United States US New York US-NY Broome US-NY-007 28.0 Conklin, Conklin Park Road L2583869 P 42.06475 -75.80788000000001 2015-01-25 09:30:00 obsr99508 S21543075 Stationary P21 EBIRD 23.0 1.0 0 G1123313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298316 2018-08-04 16:55:15 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 3 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 21-217 Centervillage Loop Road L3316564 P 42.15982 -75.60088 2015-01-25 12:31:00 obsr456332 S21546466 Stationary P21 EBIRD 1.0 1.0 1 G1123304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294005863 2021-03-30 19:03:14.123633 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-30 09:40:00 obsr195505 S21602865 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291916259 2018-08-04 16:54:02 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 7 United States US New York US-NY Broome US-NY-007 28.0 42.4014x-76.0151 - Jan 19, 2015, 1:12 PM L3303719 P 42.401446 -76.015108 2015-01-19 13:12:00 obsr476925 S21417392 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292880454 2021-03-30 19:03:14.123633 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 09:40:00 obsr456332 S21513772 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293430790 2018-08-04 16:55:18 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 25 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-26 11:10:00 obsr456332 S21557723 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293891941 2021-03-19 16:02:45.308962 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-01-29 16:00:00 obsr534674 S21594108 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293121299 2020-01-17 17:31:16 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-25 10:20:00 obsr325492 S21532865 Traveling P22 EBIRD 22.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291429062 2018-08-04 16:53:23 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 20 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-16 09:00:00 obsr456332 S21379721 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292692550 2018-08-04 16:53:58 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-18 14:28:00 obsr624920 S21499197 Traveling P22 EBIRD 22.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289728790 2021-03-26 06:09:25.361188 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 3 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-30 Charles St L1811019 P 42.108367 -75.92590600000001 2015-01-07 16:10:00 obsr52000 S21241709 Traveling P22 EBIRD 58.0 40.072 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289058132 2018-08-04 16:52:45 681 species avibase-407E2CA8 Common Merganser Mergus merganser 31 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-04 14:42:00 obsr223307 S21189345 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294172564 2018-08-04 16:55:29 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 55 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-31 11:26:00 obsr624920 S21616021 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095516 2018-08-04 16:54:45 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 50 United States US New York US-NY Broome US-NY-007 28.0 Port Dickenson Park L1906135 P 42.14136 -75.89749 2015-01-20 08:45:00 obsr534674 S21431599 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293443191 2021-03-24 19:20:44.053843 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.09052249999999 2015-01-25 10:27:00 obsr624920 S21558695 Traveling P22 EBIRD 48.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292164337 2021-03-30 19:03:14.123633 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 50 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 16:31:00 obsr52000 S21437135 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293598152 2018-08-04 16:55:19 591 species avibase-1929E1E1 Canvasback Aythya valisineria 25 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 08:20:00 obsr456332 S21570835 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293443448 2021-02-28 20:26:22.473883 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-25 12:46:00 obsr624920 S21558722 Traveling P22 EBIRD 34.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291922319 2018-08-04 16:54:03 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 9 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 US-NY-Whitney Point - 42.3294x-75.9646 - Jan 19, 2015, 1:37 PM L3303791 P 42.329372 -75.96457099999999 2015-01-19 13:38:00 obsr476925 S21417812 Stationary P21 EBIRD 5.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275054 2021-04-01 10:47:08.851048 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-16 10:00:00 obsr760620 S21367302 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293885368 2021-03-19 16:02:45.308962 505 species avibase-C732CB10 American Black Duck Anas rubripes 60 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-29 16:29:00 obsr52000 S21593640 Traveling P22 EBIRD 65.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681834 2018-08-04 16:53:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 13 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 10:00:00 obsr534674 S21399495 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293253931 2018-08-04 16:55:14 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 21-217 Centervillage Loop Road L3316564 P 42.15982 -75.60088 2015-01-25 12:31:00 obsr99508 S21543030 Stationary P21 EBIRD 1.0 1.0 1 G1123304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293741719 2018-08-04 16:55:23 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Broome US-NY-007 28.0 Confluence Park L2473323 H 42.092993 -75.91611540000001 2015-01-28 16:27:00 obsr52000 S21582019 Traveling P22 EBIRD 50.0 12.874 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292655847 2021-03-26 06:09:25.361188 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-22 07:00:00 obsr325492 S21496232 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293739336 2021-04-01 10:47:08.851048 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 18 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-28 11:50:00 obsr325492 S21581608 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292150141 2021-04-01 10:47:08.851048 505 species avibase-C732CB10 American Black Duck Anas rubripes 50 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-01-20 15:40:00 obsr52000 S21436012 Traveling P22 EBIRD 16.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293297739 2021-04-01 10:47:08.851048 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 21 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr456332 S21546407 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289235440 2018-08-04 16:52:46 26890 species avibase-94A44032 European Starling Sturnus vulgaris 35 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-05 07:38:00 obsr52000 S21202996 Traveling P22 EBIRD 12.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292166167 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 50 United States US New York US-NY Broome US-NY-007 28.0 Wall St. Binghamton L255273 P 42.10242720000001 -75.9146586 2015-01-20 11:30:00 obsr325492 S21437281 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291920722 2018-08-04 16:54:02 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-8967 Main St L3303767 P 42.349416 -75.998953 2015-01-19 13:29:00 obsr476925 S21417689 Stationary P21 EBIRD 2.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291425032 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-15 09:30:00 obsr456332 S21379326 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171370 2021-04-01 10:47:08.851048 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 09:15:00 obsr760620 S21536653 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421154 2018-08-04 16:53:01 592 species avibase-3072CC16 Redhead Aythya americana 12 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-10 11:45:00 obsr423934 S21298150 Traveling P22 EBIRD 15.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291977444 2021-04-01 10:47:08.851048 681 species avibase-407E2CA8 Common Merganser Mergus merganser 60 United States US New York US-NY Broome US-NY-007 28.0 Wall St. Binghamton L255273 P 42.10242720000001 -75.9146586 2015-01-19 11:10:00 obsr325492 S21422401 Traveling P22 EBIRD 5.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293848939 2021-03-30 19:03:14.123633 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 4 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-29 12:47:00 obsr52000 S21590566 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292658004 2021-03-30 19:03:14.123633 483 species avibase-85625D75 Mallard Anas platyrhynchos 24 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-22 17:07:00 obsr52000 S21496386 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291697161 2018-08-04 16:53:57 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 8 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-18 12:35:00 obsr195505 S21400464 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293092202 2018-08-04 16:55:12 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 11 United States US New York US-NY Broome US-NY-007 28.0 Conklin, Conklin Park Road L2583869 P 42.06475 -75.80788000000001 2015-01-25 09:30:00 obsr223307 S21530459 Stationary P21 EBIRD 23.0 1.0 0 G1123313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293297880 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 21 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr456332 S21546418 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291477451 2018-08-04 16:53:28 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 46 United States US New York US-NY Broome US-NY-007 28.0 Port Dickinson Comm. Park L242754 P 42.1414743 -75.8954533 2015-01-17 10:50:00 obsr325492 S21383573 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292653351 2018-08-04 16:54:53 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 60 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-22 16:19:00 obsr52000 S21496035 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292460769 2018-08-04 16:54:48 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-21 08:35:00 obsr605122 S21480780 Stationary P21 EBIRD 10.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288507293 2021-04-01 10:47:08.851048 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-02 14:25:00 obsr99508 S21143109 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146056 2018-08-04 16:53:21 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 27 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-15 12:32:00 obsr195505 S21356577 Traveling P22 EBIRD 92.0 5.906000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290716064 2018-08-04 16:53:14 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 12 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-12 17:20:00 obsr52000 S21322023 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292692237 2018-08-04 16:53:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 13:04:00 obsr624920 S21499177 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254895 2021-04-01 10:47:08.851048 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 21 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr99508 S21543110 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095288 2018-08-04 16:54:45 505 species avibase-C732CB10 American Black Duck Anas rubripes 30 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 09:30:00 obsr534674 S21431580 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291168208 2021-03-19 16:02:45.308962 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 40 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 16:14:00 obsr52000 S21358369 Traveling P22 EBIRD 63.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290472525 2020-01-17 17:31:16 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 15 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-11 15:30:00 obsr325492 S21302342 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545581 2021-04-01 10:47:08.851048 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-02 10:06:00 obsr52000 S21146547 Traveling P22 EBIRD 220.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291626176 2018-10-27 08:06:01 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 100 United States US New York US-NY Broome US-NY-007 28.0 Martin Luther King Jr. Memorial Promenade L2467334 H 42.1006345 -75.91548979999999 2015-01-18 09:15:00 obsr423934 S21395296 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293599135 2021-04-01 10:47:08.851048 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Broome US-NY-007 28.0 Conklin Ave., old Crowley lot L3322621 P 42.0934772 -75.90346140000001 2015-01-27 09:20:00 obsr456332 S21570905 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293749014 2018-08-04 16:55:23 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 50 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L2146812 P 42.09197 -76.06111 2015-01-28 15:30:00 obsr534674 S21582626 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292797519 2021-03-26 06:09:25.361188 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 60 United States US New York US-NY Broome US-NY-007 28.0 Wall St. Binghamton L255273 P 42.10242720000001 -75.9146586 2015-01-23 11:05:00 obsr325492 S21507285 Traveling P22 EBIRD 5.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293748822 2021-03-30 19:03:14.123633 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-28 14:15:00 obsr534674 S21582604 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291419798 2018-08-04 16:52:20 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 7 United States US New York US-NY Broome US-NY-007 28.0 Bond St., Binghamton L1430873 P 42.1013271 -75.8812401 2015-01-01 11:20:00 obsr456332 S21378840 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241692 2018-08-04 16:52:16 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-01 10:00:00 obsr534674 S21121060 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298922 2018-08-04 16:55:15 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 25 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr456332 S21546514 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545587 2021-04-01 10:47:08.851048 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-02 10:06:00 obsr52000 S21146547 Traveling P22 EBIRD 220.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625499 2018-08-04 16:53:54 616 species avibase-25C94A8F Greater Scaup Aythya marila 23 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-18 08:48:00 obsr423934 S21395231 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112725 2021-03-26 06:09:25.361188 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-04 16:00:00 obsr223307 S21193794 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192430 2015-01-10 14:08:05 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-10 07:00:00 obsr534674 S21279456 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290012976 2021-03-26 06:09:25.361188 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-08 14:00:00 obsr423934 S21264895 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291486872 2021-03-24 19:20:44.053843 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 13 United States US New York US-NY Broome US-NY-007 28.0 Kirkwood Backyard L518236 P 42.0855596 -75.7881171 2015-01-16 08:32:00 obsr52763 S21384373 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291422461 2015-01-17 11:29:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Bond Street L3200480 P 42.1007 -75.88074 2015-01-11 09:00:00 obsr456332 S21379067 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292467582 2015-01-21 13:52:16 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 Edwards Hill Rd. L1396502 H 42.3326977 -76.0304532 2015-01-21 10:50:00 obsr605122 S21481234 Traveling P22 EBIRD 10.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289011406 2021-04-01 10:47:08.851048 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 16 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-04 08:07:00 obsr52000 S21185826 Traveling P22 EBIRD 265.0 32.186 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290899439 2021-04-01 10:47:08.851048 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.09052249999999 2015-01-11 11:28:00 obsr624920 S21336643 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420802 2021-03-26 06:09:25.361188 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-05 09:00:00 obsr456332 S21378913 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293212837 2015-01-25 18:28:26 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-25 07:00:00 obsr534674 S21539972 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292812501 2021-03-19 16:02:45.308962 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Broome US-NY-007 28.0 Perce Rd and Mt Hunger Rd Intersect L3312418 P 42.3461455 -76.0571061 2015-01-23 14:30:00 obsr579000 S21508566 Traveling P22 EBIRD 80.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292750670 2015-01-23 11:22:24 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-23 07:00:00 obsr534674 S21503538 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293346821 2021-03-24 19:20:44.053843 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-26 07:00:00 obsr534674 S21550051 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288615125 2015-01-02 20:59:42 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 5 United States US New York US-NY Broome US-NY-007 28.0 Mt. Hunger Rd. L1872096 H 42.3274528 -76.0494316 2015-01-01 13:37:00 obsr624920 S21152226 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917468 2015-01-24 13:33:41 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-24 08:30:00 obsr325492 S21516942 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291397796 2015-01-17 08:09:52 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-17 07:40:00 obsr605122 S21377016 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420204 2015-01-17 11:16:44 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-03 09:00:00 obsr456332 S21378875 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292469199 2021-03-24 19:20:44.053843 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Broome US-NY-007 28.0 Anderson Road L3308174 P 42.283024 -75.995307 2015-01-21 11:57:00 obsr605122 S21481365 Stationary P21 EBIRD 9.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985235 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288997561 2021-03-24 19:20:44.053843 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-04 11:55:00 obsr223307 S21184758 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294103893 2021-03-26 06:09:25.361188 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-31 08:00:00 obsr605122 S21610342 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256013 2015-01-01 17:15:21 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-01 07:30:00 obsr534674 S21122273 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288808595 2015-01-03 17:01:59 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 7 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-03 07:00:00 obsr534674 S21167782 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254189 2021-03-24 19:20:44.053843 11494 species avibase-20C2214E American Kestrel Falco sparverius 4 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr99508 S21543052 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498471 2021-03-24 19:20:44.053843 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 3 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-17 16:00:00 obsr456332 S21385304 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290843188 2021-04-01 10:47:08.851048 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Broome US-NY-007 28.0 K-mart L1359831 P 42.1053355 -75.905288 2015-01-13 01:15:00 obsr393139 S21331872 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290463333 2017-08-16 02:23:57 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-11 15:05:00 obsr605122 S21301534 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116991 2015-01-01 09:54:41 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 7 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-01 08:16:00 obsr52000 S21110568 Stationary P21 EBIRD 97.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414332 2021-04-01 10:47:08.851048 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-11 08:23:00 obsr52000 S21297600 Traveling P22 EBIRD 320.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292820115 2015-01-23 19:14:08 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-23 15:15:00 obsr171042 S21509110 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288965036 2015-01-04 09:30:32 8773 species avibase-7AA076EF Barred Owl Strix varia 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-04 09:15:00 obsr605122 S21182035 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288737211 2021-04-01 10:47:08.851048 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-03 09:07:00 obsr52000 S21162014 Traveling P22 EBIRD 248.0 24.14 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291421542 2021-03-26 06:09:25.361188 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-08 09:00:00 obsr456332 S21378990 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097022 2021-03-24 19:20:44.053843 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr223307 S21530909 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428244 2015-01-17 12:00:55 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Swift Rd. L1396474 P 42.2199772 -75.9448922 2015-01-15 00:16:00 obsr456332 S21379627 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288624294 2015-01-02 21:40:39 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-02 07:00:00 obsr534674 S21153051 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288215622 2021-03-26 06:09:25.361188 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-01 13:00:00 obsr579000 S21118896 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289173894 2015-01-04 20:42:13 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-04 07:00:00 obsr534674 S21198475 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812885 2021-03-26 06:09:25.361188 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 08:00:00 obsr605122 S21587553 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290822831 2015-01-13 12:00:07 592 species avibase-3072CC16 Redhead Aythya americana 12 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-13 10:25:00 obsr195505 S21330137 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292759925 2015-01-23 12:44:44 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 12 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-23 08:17:00 obsr195505 S21504293 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291421296 2021-03-26 06:09:25.361188 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 6 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-07 09:00:00 obsr456332 S21378968 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289718554 2015-01-07 16:20:26 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 377 Conklin Avenue L3200484 P 42.09931 -75.88229 2015-01-07 14:18:00 obsr456332 S21240915 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288811474 2021-03-26 06:09:25.361188 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii X United States US New York US-NY Broome US-NY-007 28.0 Lopke pit 79 L2759036 P 42.3089268 -75.93162059999999 2015-01-03 09:00:00 obsr534674 S21168002 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292595267 2015-01-22 10:35:36 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-22 10:15:00 obsr605122 S21491489 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298257 2021-03-24 19:20:44.053843 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr456332 S21546459 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289453531 2015-01-06 10:05:26 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin L195377 T 42.03428 -75.80383 2015-01-06 09:45:00 obsr603756 S21220227 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292464690 2021-04-01 10:47:08.851048 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 Mix Rd. L3308113 P 42.236397700000005 -75.8716679 2015-01-21 09:15:00 obsr605122 S21481026 Traveling P22 EBIRD 10.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293443451 2021-02-28 20:26:22.473883 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii X United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-25 12:46:00 obsr624920 S21558722 Traveling P22 EBIRD 34.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293436629 2015-01-26 18:58:59 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-26 08:30:00 obsr325492 S21558172 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292732570 2021-03-26 06:09:25.361188 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-23 08:00:00 obsr605122 S21502035 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290413613 2017-08-16 02:23:57 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 12 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-11 09:45:00 obsr423934 S21297548 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293848937 2021-03-30 19:03:14.123633 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-29 12:47:00 obsr52000 S21590566 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293299251 2021-03-30 19:03:14.123633 6339 species avibase-8535345B Herring Gull Larus argentatus N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-25 13:50:00 obsr456332 S21546541 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292915324 2021-03-30 19:03:14.123633 1796 species avibase-018B3169 Horned Grebe Podiceps auritus N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-24 12:20:00 obsr325492 S21516778 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275051 2021-04-01 10:47:08.851048 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-16 10:00:00 obsr760620 S21367302 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420044 2021-03-30 19:03:14.123633 303 species avibase-B59E1863 Canada Goose Branta canadensis N 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-02 16:30:00 obsr456332 S21378860 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293503931 2021-03-30 19:03:14.123633 6339 species avibase-8535345B Herring Gull Larus argentatus N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-26 10:00:00 obsr195505 S21563133 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417372 2021-03-30 19:03:14.123633 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1365080 P 42.1336342 -75.89822790000001 2015-01-17 10:00:00 obsr393139 S21378653 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293142381 2021-03-30 19:03:14.123633 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-25 13:53:00 obsr99508 S21534403 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292164340 2021-03-30 19:03:14.123633 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 16:31:00 obsr52000 S21437135 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292880458 2021-03-30 19:03:14.123633 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 09:40:00 obsr456332 S21513772 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294005860 2021-03-30 19:03:14.123633 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-30 09:40:00 obsr195505 S21602865 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292692081 2021-03-30 19:03:14.123633 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-18 12:44:00 obsr624920 S21499162 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171788 2021-03-30 19:03:14.123633 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-25 09:54:00 obsr760620 S21536684 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293748824 2021-03-30 19:03:14.123633 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-28 14:15:00 obsr534674 S21582604 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292461622 2021-03-30 19:03:14.123633 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-21 08:55:00 obsr605122 S21480844 Stationary P21 EBIRD 10.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292658006 2021-03-30 19:03:14.123633 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-22 17:07:00 obsr52000 S21496386 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291122707 2021-03-30 19:03:14.123633 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-15 12:05:00 obsr52000 S21354807 Traveling P22 EBIRD 24.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291211237 2021-03-30 19:03:14.123633 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-15 13:30:00 obsr534674 S21362004 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289064012 2021-03-30 19:03:14.123633 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes N 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-04 15:19:00 obsr223307 S21189805 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292975618 2021-03-30 19:03:14.123633 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-24 16:30:00 obsr456332 S21521147 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292207509 2021-03-30 19:03:14.123633 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 15:00:00 obsr534674 S21440230 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291136339 2021-03-30 19:03:14.123633 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-15 12:15:00 obsr393139 S21355699 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293598447 2021-03-30 19:03:14.123633 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-27 08:30:00 obsr456332 S21570856 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292469200 2021-03-24 19:20:44.053843 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Anderson Road L3308174 P 42.283024 -75.995307 2015-01-21 11:57:00 obsr605122 S21481365 Stationary P21 EBIRD 9.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587628 2015-01-27 19:51:13 7940 spuh avibase-CA08045E Accipiter sp. Accipiter sp. 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-27 06:55:00 obsr325492 S21569966 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291977756 2015-01-19 17:54:27 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-19 16:55:00 obsr325492 S21422428 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289718553 2015-01-07 16:20:26 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 377 Conklin Avenue L3200484 P 42.09931 -75.88229 2015-01-07 14:18:00 obsr456332 S21240915 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289236437 2021-03-26 06:09:25.361188 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-05 07:50:00 obsr605122 S21203097 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291421545 2021-03-26 06:09:25.361188 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-08 09:00:00 obsr456332 S21378990 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288105901 2021-03-26 06:09:25.361188 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-01 08:45:00 obsr605122 S21109834 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414338 2021-04-01 10:47:08.851048 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-11 08:23:00 obsr52000 S21297600 Traveling P22 EBIRD 320.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288415803 2021-03-26 06:09:25.361188 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-02 08:00:00 obsr605122 S21135244 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420805 2021-03-26 06:09:25.361188 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-05 09:00:00 obsr456332 S21378913 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293733912 2015-01-28 16:27:31 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-28 13:36:00 obsr195505 S21581138 Traveling P22 EBIRD 68.0 5.697 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289040828 2018-04-20 14:55:52 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Lisle Park & Keibel Rd. L885144 H 42.350552 -75.98142390000001 2015-01-04 13:28:00 obsr223307 S21188064 Traveling P22 EBIRD 43.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291628295 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-18 09:30:00 obsr325492 S21395119 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288433308 2021-03-24 19:20:44.053843 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-02 obsr223307 S21136871 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288778625 2015-01-03 15:35:01 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-03 09:00:00 obsr325492 S21165327 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291937266 2015-01-19 14:52:51 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-19 12:27:00 obsr195505 S21419035 Traveling P22 EBIRD 107.0 7.113 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291603265 2015-01-18 06:18:40 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 01:42:00 obsr195505 S21393329 Traveling P22 EBIRD 86.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288624296 2015-01-02 21:40:39 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-02 07:00:00 obsr534674 S21153051 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985232 2021-04-01 10:47:08.851048 337 species avibase-694C127A Mute Swan Cygnus olor X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470228 2020-01-17 17:31:16 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-17 08:02:00 obsr325492 S21383040 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291421292 2021-03-26 06:09:25.361188 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-07 09:00:00 obsr456332 S21378968 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428242 2015-01-17 12:00:55 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Broome US-NY-007 28.0 Swift Rd. L1396474 P 42.2199772 -75.9448922 2015-01-15 00:16:00 obsr456332 S21379627 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292464687 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Mix Rd. L3308113 P 42.236397700000005 -75.8716679 2015-01-21 09:15:00 obsr605122 S21481026 Traveling P22 EBIRD 10.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545593 2021-04-01 10:47:08.851048 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-02 10:06:00 obsr52000 S21146547 Traveling P22 EBIRD 220.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292759935 2015-01-23 12:44:44 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-23 08:17:00 obsr195505 S21504293 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254201 2021-03-24 19:20:44.053843 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr99508 S21543052 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917458 2015-01-24 13:33:41 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-24 08:30:00 obsr325492 S21516942 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292798134 2021-03-26 06:09:25.361188 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-23 07:10:00 obsr325492 S21507325 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112735 2021-03-26 06:09:25.361188 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 11 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-04 16:00:00 obsr223307 S21193794 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289118145 2015-01-04 18:00:00 34699 spuh avibase-CFD25837 passerine sp. Passeriformes sp. X United States US New York US-NY Broome US-NY-007 28.0 Coleman St. Park L1916434 P 42.0338031 -76.02144240000001 2015-01-04 11:22:00 obsr624920 S21194237 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288808592 2015-01-03 17:01:59 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-03 07:00:00 obsr534674 S21167782 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116220 2015-01-04 17:54:44 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Broome US-NY-007 28.0 Jones Park L716848 P 42.0111915 -75.99244240000002 2015-01-04 09:55:00 obsr624920 S21194068 Traveling P22 EBIRD 58.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291422466 2015-01-17 11:29:56 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Bond Street L3200480 P 42.1007 -75.88074 2015-01-11 09:00:00 obsr456332 S21379067 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293436623 2015-01-26 18:58:59 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-26 08:30:00 obsr325492 S21558172 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292732572 2021-03-26 06:09:25.361188 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-23 08:00:00 obsr605122 S21502035 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292916183 2021-03-19 16:02:45.308962 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-24 11:52:00 obsr325492 S21516841 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289027878 2021-03-26 06:09:25.361188 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-407-445 Smith Hill Rd L2029848 P 42.349905 -76.01804200000001 2015-01-04 13:13:00 obsr223307 S21187138 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293172373 2015-01-25 16:07:34 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-25 10:30:00 obsr760620 S21536723 Traveling P22 EBIRD 20.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291473171 2015-01-17 15:43:05 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 09:35:00 obsr325492 S21383262 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289454452 2015-01-06 10:05:26 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Broome US-NY-007 28.0 Conklin L195377 T 42.03428 -75.80383 2015-01-06 09:45:00 obsr603756 S21220227 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290822841 2015-01-13 12:00:07 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-13 10:25:00 obsr195505 S21330137 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290899436 2021-04-01 10:47:08.851048 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.09052249999999 2015-01-11 11:28:00 obsr624920 S21336643 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290134363 2021-03-26 06:09:25.361188 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-10 07:30:00 obsr605122 S21274387 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116999 2015-01-01 09:54:41 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-01 08:16:00 obsr52000 S21110568 Stationary P21 EBIRD 97.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292581674 2021-03-26 06:09:25.361188 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-22 07:50:00 obsr605122 S21490341 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420206 2015-01-17 11:16:44 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-03 09:00:00 obsr456332 S21378875 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289011413 2021-04-01 10:47:08.851048 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-04 08:07:00 obsr52000 S21185826 Traveling P22 EBIRD 265.0 32.186 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291696440 2018-08-04 16:53:54 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 08:21:00 obsr195505 S21400406 Traveling P22 EBIRD 79.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256009 2015-01-01 17:15:21 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-01 07:30:00 obsr534674 S21122273 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289140127 2021-04-01 10:47:08.851048 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-04 09:00:00 obsr325492 S21196011 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292469820 2015-01-21 14:09:37 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 Flint Road L3308190 P 42.2320763 -75.9966373 2015-01-21 00:15:00 obsr605122 S21481425 Traveling P22 EBIRD 10.0 11.265 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192155 2021-03-26 06:09:25.361188 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-01-10 09:30:00 obsr534674 S21279429 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812886 2021-03-26 06:09:25.361188 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 08:00:00 obsr605122 S21587553 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290359040 2021-03-26 06:09:25.361188 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-11 08:00:00 obsr605122 S21293150 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292750678 2015-01-23 11:22:24 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-23 07:00:00 obsr534674 S21503538 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288463645 2022-03-07 16:16:36.127066 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 2 United States US New York US-NY Broome US-NY-007 28.0 Home - Renee L696123 P 42.1130118 -75.93151329999999 2015-01-02 11:46:00 obsr99508 S21139524 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298269 2021-03-24 19:20:44.053843 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr456332 S21546459 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097034 2021-03-24 19:20:44.053843 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr223307 S21530909 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289058138 2018-08-04 16:52:45 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-04 14:42:00 obsr223307 S21189345 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288215620 2021-03-26 06:09:25.361188 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 Female, Adult (1); Male, Adult (4) United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-01 13:00:00 obsr579000 S21118896 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291397801 2015-01-17 08:09:52 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-17 07:40:00 obsr605122 S21377016 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293726260 2015-01-28 15:34:25 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-28 11:00:00 obsr423934 S21580528 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301153345 2016-03-02 21:14:11 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-31 14:45:00 obsr423934 S21615936 Traveling P22 EBIRD 10.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290237853 2021-03-26 06:09:25.361188 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Broome US-NY-007 28.0 Victory St. JC L166647 P 42.125027 -75.98304 2015-01-10 13:00:00 obsr624920 S21283511 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294103889 2021-03-26 06:09:25.361188 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-31 08:00:00 obsr605122 S21610342 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293739338 2021-04-01 10:47:08.851048 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-28 11:50:00 obsr325492 S21581608 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292575375 2015-01-22 05:11:48 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-21 13:40:00 obsr195505 S21489709 Traveling P22 EBIRD 95.0 5.729 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095712 2018-08-04 16:54:45 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. X United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-20 08:15:00 obsr534674 S21431618 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291486883 2021-03-24 19:20:44.053843 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Broome US-NY-007 28.0 Kirkwood Backyard L518236 P 42.0855596 -75.7881171 2015-01-16 08:32:00 obsr52763 S21384373 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293260062 2022-03-07 16:16:36.127066 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Broome US-NY-007 28.0 Home - Renee L696123 P 42.1130118 -75.93151329999999 2015-01-24 09:24:00 obsr99508 S21543500 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292908571 2015-01-24 12:46:22 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-24 11:15:00 obsr760620 S21516249 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293212833 2015-01-25 18:28:26 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-25 07:00:00 obsr534674 S21539972 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293511615 2021-03-26 06:09:25.361188 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-27 07:15:00 obsr605122 S21563758 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288997567 2021-03-24 19:20:44.053843 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-04 11:55:00 obsr223307 S21184758 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290012972 2021-03-26 06:09:25.361188 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-08 14:00:00 obsr423934 S21264895 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289173902 2015-01-04 20:42:13 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-04 07:00:00 obsr534674 S21198475 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120503 2015-01-25 12:30:55 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-25 08:45:00 obsr325492 S21532778 Traveling P22 EBIRD 68.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290476386 2015-01-11 17:29:20 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-11 09:30:00 obsr325492 S21302634 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291195496 2015-01-15 19:51:50 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 1528 Front Street L3294503 P 42.17441 -75.88463 2015-01-15 19:50:00 obsr223307 S21360561 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256575 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 1449 Front St. Binghamton NY L1890566 P 42.1678573 -75.8887213 2015-01-01 11:59:00 obsr534674 S21122332 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292915327 2021-03-30 19:03:14.123633 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 Male, Adult (3); Female, Adult (2) United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-24 12:20:00 obsr325492 S21516778 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292207510 2021-03-30 19:03:14.123633 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 15:00:00 obsr534674 S21440230 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095292 2018-08-04 16:54:45 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 09:30:00 obsr534674 S21431580 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292975621 2021-03-30 19:03:14.123633 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 7 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-24 16:30:00 obsr456332 S21521147 Stationary P21 EBIRD 10.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293299253 2021-03-30 19:03:14.123633 616 species avibase-25C94A8F Greater Scaup Aythya marila 8 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-25 13:50:00 obsr456332 S21546541 Stationary P21 EBIRD 10.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292658005 2021-03-30 19:03:14.123633 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-22 17:07:00 obsr52000 S21496386 Stationary P21 EBIRD 10.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294171377 2016-03-02 21:14:11 505 species avibase-C732CB10 American Black Duck Anas rubripes 6 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-31 14:45:00 obsr423934 S21615936 Traveling P22 EBIRD 10.0 0.805 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292164338 2021-03-30 19:03:14.123633 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-20 16:31:00 obsr52000 S21437135 Stationary P21 EBIRD 34.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293142385 2021-03-30 19:03:14.123633 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 8 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-25 13:53:00 obsr99508 S21534403 Stationary P21 EBIRD 11.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294005864 2021-03-30 19:03:14.123633 592 species avibase-3072CC16 Redhead Aythya americana 6 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-30 09:40:00 obsr195505 S21602865 Stationary P21 EBIRD 25.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291275050 2021-04-01 10:47:08.851048 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 7 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-16 10:00:00 obsr760620 S21367302 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288737212 2021-04-01 10:47:08.851048 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-03 09:07:00 obsr52000 S21162014 Traveling P22 EBIRD 248.0 24.14 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292812503 2021-03-19 16:02:45.308962 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 Unknown Sex, Juvenile (1) United States US New York US-NY Broome US-NY-007 28.0 Perce Rd and Mt Hunger Rd Intersect L3312418 P 42.3461455 -76.0571061 2015-01-23 14:30:00 obsr579000 S21508566 Traveling P22 EBIRD 80.0 9.656 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288813019 2021-01-08 12:08:06.924862 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Knapp Rd. L2032238 P 42.2252124 -75.9883118 2015-01-03 08:10:00 obsr534674 S21168124 Traveling P22 EBIRD 10.0 1.609 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288726079 2021-01-08 12:08:06.88885 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-331-353 Flint Rd L3260914 P 42.227937 -75.987094 2015-01-03 12:12:00 obsr99508 S21161151 Incidental P20 EBIRD 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290054699 2015-01-09 17:40:55 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-09 13:01:00 obsr325492 S21268388 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293599136 2021-04-01 10:47:08.851048 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin Ave., old Crowley lot L3322621 P 42.0934772 -75.90346140000001 2015-01-27 09:20:00 obsr456332 S21570905 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291172885 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-15 07:30:00 obsr325492 S21358751 Traveling P22 EBIRD 20.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291423036 2015-01-17 11:33:20 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin Ave. L1878587 P 42.098759 -75.8831499 2015-01-15 09:00:00 obsr456332 S21379113 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293542986 2021-04-01 10:47:08.851048 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Broome US-NY-007 28.0 Downtown Binghamton L1876230 P 42.0981299 -75.91104490000001 2015-01-27 09:20:00 obsr760620 S21566425 Traveling P22 EBIRD 15.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289866557 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-365 Water St L2310812 P 42.106379 -75.911075 2015-01-08 12:11:00 obsr52000 S21253033 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290975830 2015-01-14 12:48:01 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Binghamton, Court House - Lady Liberty's head L1370463 P 42.0981249 -75.91106090000001 2015-01-14 12:47:00 obsr52000 S21342745 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292656150 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-22 16:05:00 obsr325492 S21496251 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292499192 2021-04-01 10:47:08.851048 8773 species avibase-7AA076EF Barred Owl Strix varia 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-21 16:35:00 obsr325492 S21483798 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291032604 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-14 15:30:00 obsr325492 S21347361 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289729389 2021-04-01 10:47:08.851048 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-07 08:05:00 obsr325492 S21241769 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293545634 2015-01-27 13:54:02 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Binghamton, Court House - Lady Liberty's head L1370463 P 42.0981249 -75.91106090000001 2015-01-27 12:40:00 obsr52000 S21566609 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289264803 2015-01-05 10:56:37 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Downtown Binghamton L1359834 P 42.094648 -75.8999298 2015-01-05 10:00:00 obsr393139 S21205278 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289921177 2021-04-01 10:47:08.851048 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-08 09:40:00 obsr325492 S21257617 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587630 2015-01-27 19:51:13 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-27 06:55:00 obsr325492 S21569966 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290872439 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-13 15:36:00 obsr325492 S21334565 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289639897 2015-01-07 09:18:54 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Broome US-NY-007 28.0 Lake road and Route 26, Endicott, New York L3274314 P 42.121933 -76.068898 2015-01-07 08:30:00 obsr481945 S21235379 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293877540 2017-02-01 21:17:41 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-29 13:29:00 obsr195505 S21593041 Traveling P22 EBIRD 115.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428660 2015-01-17 12:04:54 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Treadwell Rd. L3297707 P 42.20824 -75.93565459999999 2015-01-15 12:30:00 obsr456332 S21379674 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295418739 2015-02-07 18:08:02 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Broome US-NY-007 28.0 home L3344694 P 42.09646 -75.879425 2015-01-30 13:00:00 obsr697583 S21715499 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289118144 2015-01-04 18:00:00 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Coleman St. Park L1916434 P 42.0338031 -76.02144240000001 2015-01-04 11:22:00 obsr624920 S21194237 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428249 2015-01-17 12:00:55 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 Swift Rd. L1396474 P 42.2199772 -75.9448922 2015-01-15 00:16:00 obsr456332 S21379627 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293733903 2015-01-28 16:27:31 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-28 13:36:00 obsr195505 S21581138 Traveling P22 EBIRD 68.0 5.697 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292789884 2015-01-23 16:16:37 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-23 15:30:00 obsr760620 S21506675 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681838 2018-08-04 16:53:56 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 10:00:00 obsr534674 S21399495 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613251 2017-12-12 18:37:11 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 Greenwood County Park L998784 H 42.2869951 -76.0881629 2015-01-01 11:54:00 obsr624920 S21151951 Traveling P22 EBIRD 75.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470223 2020-01-17 17:31:16 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-17 08:02:00 obsr325492 S21383040 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290827565 2015-01-13 12:30:45 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Broome US-NY-007 28.0 Kolb Rd. L1395548 H 42.2091652 -75.9667459 2015-01-13 09:00:00 obsr534674 S21330501 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288778624 2015-01-03 15:35:01 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-03 09:00:00 obsr325492 S21165327 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290412924 2015-01-11 13:37:54 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-11 08:38:00 obsr423934 S21297496 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293543419 2021-04-01 10:47:08.851048 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-27 10:00:00 obsr760620 S21566452 Traveling P22 EBIRD 20.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292741667 2015-01-23 10:12:41 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-23 10:00:00 obsr605122 S21502867 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292750673 2015-01-23 11:22:24 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-23 07:00:00 obsr534674 S21503538 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290822842 2015-01-13 12:00:07 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-13 10:25:00 obsr195505 S21330137 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292759936 2015-01-23 12:44:44 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 5 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-23 08:17:00 obsr195505 S21504293 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681839 2018-08-04 16:53:56 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 10:00:00 obsr534674 S21399495 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291618006 2015-01-18 09:34:41 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-18 09:34:00 obsr52000 S21394579 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291486879 2021-03-24 19:20:44.053843 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 Kirkwood Backyard L518236 P 42.0855596 -75.7881171 2015-01-16 08:32:00 obsr52763 S21384373 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545591 2021-04-01 10:47:08.851048 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-02 10:06:00 obsr52000 S21146547 Traveling P22 EBIRD 220.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292785825 2018-08-04 16:54:55 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-23 13:36:00 obsr195505 S21506362 Traveling P22 EBIRD 109.0 6.968 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292575371 2015-01-22 05:11:48 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-21 13:40:00 obsr195505 S21489709 Traveling P22 EBIRD 95.0 5.729 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292886476 2015-01-24 10:21:26 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-24 10:21:00 obsr52000 S21514283 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289011411 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-04 08:07:00 obsr52000 S21185826 Traveling P22 EBIRD 265.0 32.186 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288737215 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-03 09:07:00 obsr52000 S21162014 Traveling P22 EBIRD 248.0 24.14 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293170513 2015-01-25 16:01:05 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Broome US-NY-007 28.0 Triangle SF L2913510 H 42.388661600000006 -75.8853455 2015-01-25 11:40:00 obsr760620 S21536576 Traveling P22 EBIRD 30.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288613254 2017-12-12 18:37:11 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Broome US-NY-007 28.0 Greenwood County Park L998784 H 42.2869951 -76.0881629 2015-01-01 11:54:00 obsr624920 S21151951 Traveling P22 EBIRD 75.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291473175 2015-01-17 15:43:05 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 09:35:00 obsr325492 S21383262 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289173897 2015-01-04 20:42:13 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-04 07:00:00 obsr534674 S21198475 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288808599 2015-01-03 17:01:59 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-03 07:00:00 obsr534674 S21167782 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681832 2018-08-04 16:53:56 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 10:00:00 obsr534674 S21399495 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298258 2021-03-24 19:20:44.053843 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr456332 S21546459 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288624295 2015-01-02 21:40:39 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-02 07:00:00 obsr534674 S21153051 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291486873 2021-03-24 19:20:44.053843 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Kirkwood Backyard L518236 P 42.0855596 -75.7881171 2015-01-16 08:32:00 obsr52763 S21384373 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192438 2015-01-10 14:08:05 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-10 07:00:00 obsr534674 S21279456 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292467268 2021-03-24 19:20:44.053843 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 Smith Hill L3308153 P 42.34801470000001 -76.03148459999998 2015-01-21 10:30:00 obsr605122 S21481207 Traveling P22 EBIRD 20.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291422463 2015-01-17 11:29:56 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Broome US-NY-007 28.0 Bond Street L3200480 P 42.1007 -75.88074 2015-01-11 09:00:00 obsr456332 S21379067 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254190 2021-03-24 19:20:44.053843 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr99508 S21543052 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292805960 2015-01-23 17:50:46 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa X United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L270868 P 42.0847408 -76.0845325 2015-01-23 16:06:00 obsr624920 S21508055 Traveling P22 EBIRD 48.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290237857 2021-03-26 06:09:25.361188 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Broome US-NY-007 28.0 Victory St. JC L166647 P 42.125027 -75.98304 2015-01-10 13:00:00 obsr624920 S21283511 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112736 2021-03-26 06:09:25.361188 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-04 16:00:00 obsr223307 S21193794 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290803365 2021-03-26 06:09:25.361188 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-13 08:30:00 obsr605122 S21328368 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289027866 2021-03-26 06:09:25.361188 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-407-445 Smith Hill Rd L2029848 P 42.349905 -76.01804200000001 2015-01-04 13:13:00 obsr223307 S21187138 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292469822 2015-01-21 14:09:37 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Flint Road L3308190 P 42.2320763 -75.9966373 2015-01-21 00:15:00 obsr605122 S21481425 Traveling P22 EBIRD 10.0 11.265 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289040821 2018-04-20 14:55:52 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Lisle Park & Keibel Rd. L885144 H 42.350552 -75.98142390000001 2015-01-04 13:28:00 obsr223307 S21188064 Traveling P22 EBIRD 43.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290973773 2015-01-14 12:32:33 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-14 11:50:00 obsr605122 S21342599 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290822832 2015-01-13 12:00:07 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-13 10:25:00 obsr195505 S21330137 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097023 2021-03-24 19:20:44.053843 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr223307 S21530909 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291429063 2018-08-04 16:53:23 662 species avibase-FB738385 Bufflehead Bucephala albeola 6 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-16 09:00:00 obsr456332 S21379721 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250592 2018-08-04 16:53:23 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 9 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 09:10:00 obsr534674 S21365214 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291426613 2021-04-01 10:47:08.851048 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 9 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-15 09:45:00 obsr456332 S21379489 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293430793 2018-08-04 16:55:18 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 9 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-26 11:10:00 obsr456332 S21557723 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292653352 2018-08-04 16:54:53 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-22 16:19:00 obsr52000 S21496035 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293542782 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 09:40:00 obsr760620 S21566404 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291471523 2020-01-19 11:00:58 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 Male, Adult (3); Female, Adult (2) United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-17 09:02:00 obsr325492 S21383141 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298929 2018-08-04 16:55:15 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 9 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr456332 S21546514 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275333 2018-08-04 16:53:23 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 6 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 10:30:00 obsr760620 S21367326 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293328864 2018-08-04 16:55:15 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 9 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr99508 S21548539 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625186 2021-04-01 10:47:08.851048 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 9 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 08:20:00 obsr423934 S21395195 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293598158 2018-08-04 16:55:19 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 9 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 08:20:00 obsr456332 S21570835 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292975209 2018-08-04 16:55:10 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 9 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-24 16:07:00 obsr456332 S21521112 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293417579 2018-08-04 16:55:19 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 5 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-26 16:29:00 obsr52000 S21556549 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171371 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 09:15:00 obsr760620 S21536653 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291168209 2021-03-19 16:02:45.308962 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 16:14:00 obsr52000 S21358369 Traveling P22 EBIRD 63.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291698746 2018-08-04 16:53:58 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 13:37:00 obsr195505 S21400597 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291136664 2018-08-04 16:53:21 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 10:15:00 obsr393139 S21355738 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289017274 2021-03-19 16:02:45.308962 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Broome US-NY-007 28.0 Broome County Landfill L2494208 H 42.2422743 -75.97730229999999 2015-01-04 12:15:00 obsr223307 S21186297 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414330 2021-04-01 10:47:08.851048 592 species avibase-3072CC16 Redhead Aythya americana 3 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-11 08:23:00 obsr52000 S21297600 Traveling P22 EBIRD 320.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129438 2015-01-25 13:10:44 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-24 16:25:00 obsr325492 S21533457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275052 2021-04-01 10:47:08.851048 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-16 10:00:00 obsr760620 S21367302 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112729 2021-03-26 06:09:25.361188 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-04 16:00:00 obsr223307 S21193794 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289122907 2015-01-04 18:11:41 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Broome US-NY-007 28.0 Vestal L2177398 P 42.1016932 -75.9767246 2015-01-04 12:08:00 obsr624920 S21194616 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291168214 2021-03-19 16:02:45.308962 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 16:14:00 obsr52000 S21358369 Traveling P22 EBIRD 63.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192159 2021-03-26 06:09:25.361188 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-01-10 09:30:00 obsr534674 S21279429 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288723228 2015-01-03 12:23:30 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-03 10:20:00 obsr307329 S21160926 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293543417 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-27 10:00:00 obsr760620 S21566452 Traveling P22 EBIRD 20.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290041806 2021-04-01 10:47:08.851048 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin L195377 T 42.03428 -75.80383 2015-01-09 08:30:00 obsr603756 S21267293 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294267297 2021-03-19 16:02:45.308962 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Monroe St L773661 P 42.1023778 -76.0504317 2015-01-31 12:26:00 obsr624920 S21623552 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292805958 2015-01-23 17:50:46 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L270868 P 42.0847408 -76.0845325 2015-01-23 16:06:00 obsr624920 S21508055 Traveling P22 EBIRD 48.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291624458 2018-08-04 16:53:53 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-18 07:55:00 obsr423934 S21395142 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288618206 2015-01-02 21:11:06 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 Rt 26 Endicott - Whitney Pt L1871519 P 42.2188833 -76.0242126 2015-01-01 11:38:00 obsr624920 S21152580 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292467818 2016-03-08 14:18:23 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 Arnold Rd. L499466 H 42.3235162 -76.0783535 2015-01-21 11:00:00 obsr605122 S21481253 Traveling P22 EBIRD 10.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293749010 2018-08-04 16:55:23 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L2146812 P 42.09197 -76.06111 2015-01-28 15:30:00 obsr534674 S21582626 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291426609 2021-04-01 10:47:08.851048 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-15 09:45:00 obsr456332 S21379489 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290412919 2015-01-11 13:37:54 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-11 08:38:00 obsr423934 S21297496 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291620124 2021-03-19 16:02:45.308962 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-17 12:20:00 obsr624920 S21394785 Traveling P22 EBIRD 17.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545584 2021-04-01 10:47:08.851048 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-02 10:06:00 obsr52000 S21146547 Traveling P22 EBIRD 220.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289011403 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-04 08:07:00 obsr52000 S21185826 Traveling P22 EBIRD 265.0 32.186 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288117441 2015-02-01 19:30:35 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-01 09:58:00 obsr52000 S21110615 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095709 2018-08-04 16:54:45 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-20 08:15:00 obsr534674 S21431618 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289870235 2021-04-01 10:47:08.851048 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 I-88--Binghamton L3277864 P 42.163969 -75.869272 2015-01-08 13:20:00 obsr587809 S21253331 Traveling P22 EBIRD 12.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295418740 2015-02-07 18:08:02 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 28.0 home L3344694 P 42.09646 -75.879425 2015-01-30 13:00:00 obsr697583 S21715499 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291425040 2021-04-01 10:47:08.851048 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-15 09:30:00 obsr456332 S21379326 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292461209 2015-01-21 13:17:47 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Broome US-NY-007 28.0 route 17 near route 81 L3308094 P 42.1117861 -75.9176302 2015-01-21 08:30:00 obsr605122 S21480813 Incidental P20 EBIRD 5.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293589818 2015-01-27 17:21:57 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-22 Stever Dr L1898332 P 42.169582 -75.862128 2015-01-27 16:33:00 obsr52000 S21570128 Traveling P22 EBIRD 48.0 4.667 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289173898 2015-01-04 20:42:13 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-04 07:00:00 obsr534674 S21198475 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290413612 2017-08-16 02:23:57 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-11 09:45:00 obsr423934 S21297548 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985238 2021-04-01 10:47:08.851048 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291274863 2021-04-01 10:47:08.851048 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-02 10:30:00 obsr760620 S21367283 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292820116 2015-01-23 19:14:08 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-23 15:15:00 obsr171042 S21509110 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289061827 2021-04-01 10:47:08.851048 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Broome US-NY-007 28.0 Lopke Pond L2758973 P 42.3072967 -75.9322166 2015-01-04 14:28:00 obsr223307 S21189615 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292468101 2021-03-26 06:09:25.361188 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Broome US-NY-007 28.0 Caldwell Hill L1981207 H 42.346095700000006 -76.0689363 2015-01-21 11:15:00 obsr605122 S21481277 Traveling P22 EBIRD 15.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289122567 2015-01-04 18:10:42 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Vestal L2177398 P 42.1016932 -75.9767246 2015-01-04 11:15:00 obsr624920 S21194598 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292785818 2018-08-04 16:54:55 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-23 13:36:00 obsr195505 S21506362 Traveling P22 EBIRD 109.0 6.968 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146061 2018-08-04 16:53:21 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-15 12:32:00 obsr195505 S21356577 Traveling P22 EBIRD 92.0 5.906000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428657 2015-01-17 12:04:54 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Treadwell Rd. L3297707 P 42.20824 -75.93565459999999 2015-01-15 12:30:00 obsr456332 S21379674 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116225 2015-01-04 17:54:44 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Jones Park L716848 P 42.0111915 -75.99244240000002 2015-01-04 09:55:00 obsr624920 S21194068 Traveling P22 EBIRD 58.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288215624 2021-03-26 06:09:25.361188 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-01 13:00:00 obsr579000 S21118896 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955085 2017-08-16 02:23:57 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-30 07:37:00 obsr52000 S21598834 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292653356 2018-08-04 16:54:53 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-22 16:19:00 obsr52000 S21496035 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292575368 2015-01-22 05:11:48 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-21 13:40:00 obsr195505 S21489709 Traveling P22 EBIRD 95.0 5.729 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293891937 2021-03-19 16:02:45.308962 456 species avibase-D201EB72 American Wigeon Mareca americana 4 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-01-29 16:00:00 obsr534674 S21594108 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256886 2015-01-01 17:18:46 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Broome US-NY-007 28.0 Lopke pit 79 L2759036 P 42.3089268 -75.93162059999999 2015-01-01 09:00:00 obsr534674 S21122369 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288811473 2021-03-26 06:09:25.361188 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Broome US-NY-007 28.0 Lopke pit 79 L2759036 P 42.3089268 -75.93162059999999 2015-01-03 09:00:00 obsr534674 S21168002 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290412928 2015-01-11 13:37:54 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-11 08:38:00 obsr423934 S21297496 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292904675 2015-01-24 12:26:06 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Broome US-NY-007 28.0 Harold Moore Park L1464971 H 42.099743 -76.0129688 2015-01-24 11:00:00 obsr534674 S21515954 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288507296 2021-04-01 10:47:08.851048 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-02 14:25:00 obsr99508 S21143109 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289291707 2015-01-05 13:31:12 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Broome County Landfill L2494208 H 42.2422743 -75.97730229999999 2015-01-05 13:10:00 obsr223307 S21207450 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298924 2018-08-04 16:55:15 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr456332 S21546514 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985250 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293328858 2018-08-04 16:55:15 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr99508 S21548539 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289011404 2021-04-01 10:47:08.851048 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 2 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-04 08:07:00 obsr52000 S21185826 Traveling P22 EBIRD 265.0 32.186 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290463952 2021-04-01 10:47:08.851048 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-11 15:30:00 obsr605122 S21301594 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545585 2021-04-01 10:47:08.851048 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-02 10:06:00 obsr52000 S21146547 Traveling P22 EBIRD 220.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292692549 2018-08-04 16:53:58 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-18 14:28:00 obsr624920 S21499197 Traveling P22 EBIRD 22.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293443452 2021-02-28 20:26:22.473883 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-25 12:46:00 obsr624920 S21558722 Traveling P22 EBIRD 34.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293543779 2016-06-07 00:04:51 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 SUNY Broome Community College L3583220 H 42.1353684 -75.9091816 2015-01-27 12:20:00 obsr760620 S21566474 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291471526 2020-01-19 11:00:58 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-17 09:02:00 obsr325492 S21383141 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298920 2018-08-04 16:55:15 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr456332 S21546514 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291168210 2021-03-19 16:02:45.308962 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 16:14:00 obsr52000 S21358369 Traveling P22 EBIRD 63.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293430797 2018-08-04 16:55:18 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-26 11:10:00 obsr456332 S21557723 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291624459 2018-08-04 16:53:53 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-18 07:55:00 obsr423934 S21395142 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290472528 2020-01-17 17:31:16 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-11 15:30:00 obsr325492 S21302342 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417373 2021-03-30 19:03:14.123633 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1365080 P 42.1336342 -75.89822790000001 2015-01-17 10:00:00 obsr393139 S21378653 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625183 2021-04-01 10:47:08.851048 11528 species avibase-F3DA111C Merlin Falco columbarius 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 08:20:00 obsr423934 S21395195 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171366 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 09:15:00 obsr760620 S21536653 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291136665 2018-08-04 16:53:21 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 10:15:00 obsr393139 S21355738 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470229 2020-01-17 17:31:16 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-17 08:02:00 obsr325492 S21383040 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275605 2018-08-04 16:53:23 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 11:00:00 obsr760620 S21367359 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293542774 2021-04-01 10:47:08.851048 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 09:40:00 obsr760620 S21566404 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275330 2018-08-04 16:53:23 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 10:30:00 obsr760620 S21367326 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250973 2018-08-04 16:53:23 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 08:15:00 obsr534674 S21365247 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293598155 2018-08-04 16:55:19 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 08:20:00 obsr456332 S21570835 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291697162 2018-08-04 16:53:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-18 12:35:00 obsr195505 S21400464 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291427369 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-15 09:45:00 obsr456332 S21379489 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291698747 2018-08-04 16:53:58 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 13:37:00 obsr195505 S21400597 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250595 2018-08-04 16:53:23 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 09:10:00 obsr534674 S21365214 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291429065 2018-08-04 16:53:23 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-16 09:00:00 obsr456332 S21379721 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292653353 2018-08-04 16:54:53 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-22 16:19:00 obsr52000 S21496035 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293328853 2018-08-04 16:55:15 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr99508 S21548539 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095708 2018-08-04 16:54:45 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-20 08:15:00 obsr534674 S21431618 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292975210 2018-08-04 16:55:10 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-24 16:07:00 obsr456332 S21521112 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293417580 2018-08-04 16:55:19 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-26 16:29:00 obsr52000 S21556549 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275048 2021-04-01 10:47:08.851048 27616 species avibase-D77E4B41 American Robin Turdus migratorius N X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-16 10:00:00 obsr760620 S21367302 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292166164 2021-04-01 10:47:08.851048 526 species avibase-56CCA717 Northern Pintail Anas acuta N 10 United States US New York US-NY Broome US-NY-007 28.0 Wall St. Binghamton L255273 P 42.10242720000001 -75.9146586 2015-01-20 11:30:00 obsr325492 S21437281 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292499194 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-21 16:35:00 obsr325492 S21483798 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289531651 2021-04-01 10:47:08.851048 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 27 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-30 Charles St L1811019 P 42.108367 -75.92590600000001 2015-01-06 16:26:00 obsr52000 S21226651 Traveling P22 EBIRD 65.0 64.372 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293542987 2021-04-01 10:47:08.851048 11371 species avibase-75600969 Northern Flicker Colaptes auratus N X United States US New York US-NY Broome US-NY-007 28.0 Downtown Binghamton L1876230 P 42.0981299 -75.91104490000001 2015-01-27 09:20:00 obsr760620 S21566425 Traveling P22 EBIRD 15.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291427366 2021-04-01 10:47:08.851048 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis N 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-15 09:45:00 obsr456332 S21379489 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290041805 2021-04-01 10:47:08.851048 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin L195377 T 42.03428 -75.80383 2015-01-09 08:30:00 obsr603756 S21267293 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293297744 2021-04-01 10:47:08.851048 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo N 13 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr456332 S21546407 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290463953 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 22 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-11 15:30:00 obsr605122 S21301594 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288737210 2021-04-01 10:47:08.851048 456 species avibase-D201EB72 American Wigeon Mareca americana N 120 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-03 09:07:00 obsr52000 S21162014 Traveling P22 EBIRD 248.0 24.14 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625179 2021-04-01 10:47:08.851048 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 40 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 08:20:00 obsr423934 S21395195 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289140128 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 8 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-04 09:00:00 obsr325492 S21196011 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290899444 2021-04-01 10:47:08.851048 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) N X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.09052249999999 2015-01-11 11:28:00 obsr624920 S21336643 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291172886 2021-04-01 10:47:08.851048 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 8 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-15 07:30:00 obsr325492 S21358751 Traveling P22 EBIRD 20.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292150142 2021-04-01 10:47:08.851048 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum N 3 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-01-20 15:40:00 obsr52000 S21436012 Traveling P22 EBIRD 16.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290843191 2021-04-01 10:47:08.851048 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 40 United States US New York US-NY Broome US-NY-007 28.0 K-mart L1359831 P 42.1053355 -75.905288 2015-01-13 01:15:00 obsr393139 S21331872 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289482729 2021-04-01 10:47:08.851048 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 60 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-06 12:26:00 obsr52000 S21222750 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291977447 2021-04-01 10:47:08.851048 30494 species avibase-240E3390 House Sparrow Passer domesticus N 2 United States US New York US-NY Broome US-NY-007 28.0 Wall St. Binghamton L255273 P 42.10242720000001 -75.9146586 2015-01-19 11:10:00 obsr325492 S21422401 Traveling P22 EBIRD 5.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289729390 2021-04-01 10:47:08.851048 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 23 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-07 08:05:00 obsr325492 S21241769 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545586 2021-04-01 10:47:08.851048 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 120 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-02 10:06:00 obsr52000 S21146547 Traveling P22 EBIRD 220.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293543415 2021-04-01 10:47:08.851048 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-27 10:00:00 obsr760620 S21566452 Traveling P22 EBIRD 20.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293083708 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 13 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr223307 S21529659 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985255 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256576 2021-04-01 10:47:08.851048 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N X United States US New York US-NY Broome US-NY-007 28.0 1449 Front St. Binghamton NY L1890566 P 42.1678573 -75.8887213 2015-01-01 11:59:00 obsr534674 S21122332 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254935 2021-04-01 10:47:08.851048 1796 species avibase-018B3169 Horned Grebe Podiceps auritus N 13 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr99508 S21543115 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289011405 2021-04-01 10:47:08.851048 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N 150 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-04 08:07:00 obsr52000 S21185826 Traveling P22 EBIRD 265.0 32.186 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291274866 2021-04-01 10:47:08.851048 6339 species avibase-8535345B Herring Gull Larus argentatus N X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-02 10:30:00 obsr760620 S21367283 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292656151 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos N 25 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-22 16:05:00 obsr325492 S21496251 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289921176 2021-04-01 10:47:08.851048 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 2 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-08 09:40:00 obsr325492 S21257617 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291425035 2021-04-01 10:47:08.851048 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias N 30 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-15 09:30:00 obsr456332 S21379326 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293542779 2021-04-01 10:47:08.851048 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 09:40:00 obsr760620 S21566404 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293881705 2021-04-01 10:47:08.851048 303 species avibase-B59E1863 Canada Goose Branta canadensis N 60 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-29 06:55:00 obsr325492 S21593364 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293739337 2021-04-01 10:47:08.851048 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 2 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-28 11:50:00 obsr325492 S21581608 Traveling P22 EBIRD 20.0 1.4480000000000002 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293764100 2021-04-01 10:47:08.851048 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N 2 United States US New York US-NY Broome US-NY-007 28.0 Whitney Point L196903 T 42.32897 -75.96774 2015-01-28 12:45:00 obsr423934 S21583792 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292464686 2021-04-01 10:47:08.851048 30494 species avibase-240E3390 House Sparrow Passer domesticus N 50 United States US New York US-NY Broome US-NY-007 28.0 Mix Rd. L3308113 P 42.236397700000005 -75.8716679 2015-01-21 09:15:00 obsr605122 S21481026 Traveling P22 EBIRD 10.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289866556 2021-04-01 10:47:08.851048 6339 species avibase-8535345B Herring Gull Larus argentatus N 55 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-365 Water St L2310812 P 42.106379 -75.911075 2015-01-08 12:11:00 obsr52000 S21253033 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290872438 2021-04-01 10:47:08.851048 6339 species avibase-8535345B Herring Gull Larus argentatus N 30 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-13 15:36:00 obsr325492 S21334565 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291629220 2021-04-01 10:47:08.851048 303 species avibase-B59E1863 Canada Goose Branta canadensis N 7 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-18 09:30:00 obsr325492 S21395119 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254900 2021-04-01 10:47:08.851048 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 13 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr99508 S21543110 Stationary P21 EBIRD 20.0 1.0 0 G1123320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289870236 2021-04-01 10:47:08.851048 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 1 United States US New York US-NY Broome US-NY-007 28.0 I-88--Binghamton L3277864 P 42.163969 -75.869272 2015-01-08 13:20:00 obsr587809 S21253331 Traveling P22 EBIRD 12.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291032603 2021-04-01 10:47:08.851048 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] N 8 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-14 15:30:00 obsr325492 S21347361 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293599134 2021-04-01 10:47:08.851048 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 40 United States US New York US-NY Broome US-NY-007 28.0 Conklin Ave., old Crowley lot L3322621 P 42.0934772 -75.90346140000001 2015-01-27 09:20:00 obsr456332 S21570905 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291424043 2021-04-01 10:47:08.851048 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N X United States US New York US-NY Broome US-NY-007 28.0 Lisle, 302-372 Smith Hill Road L1989308 P 42.34888 -76.02524 2015-01-17 10:45:00 obsr534674 S21379191 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293083544 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos N 13 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr223307 S21529646 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414263 2021-04-01 10:47:08.851048 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 15 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-11 10:15:00 obsr423934 S21297595 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293670087 2021-04-01 10:47:08.851048 26109 species avibase-BAC33609 Brown Creeper Certhia americana N 20 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-28 07:26:00 obsr52000 S21576241 Traveling P22 EBIRD 24.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291976859 2021-04-01 10:47:08.851048 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 150 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.099289500000005 -75.91064449999999 2015-01-19 11:25:00 obsr325492 S21422353 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288507297 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 25 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-01-02 14:25:00 obsr99508 S21143109 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171364 2021-04-01 10:47:08.851048 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 09:15:00 obsr760620 S21536653 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293297885 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos N 13 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 125 Conklin Avenue L2583750 P 42.0932 -75.90544 2015-01-25 08:05:00 obsr456332 S21546418 Stationary P21 EBIRD 30.0 1.0 1 G1123321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289061828 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 18 United States US New York US-NY Broome US-NY-007 28.0 Lopke Pond L2758973 P 42.3072967 -75.9322166 2015-01-04 14:28:00 obsr223307 S21189615 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414331 2021-04-01 10:47:08.851048 505 species avibase-C732CB10 American Black Duck Anas rubripes N 23 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-11 08:23:00 obsr52000 S21297600 Traveling P22 EBIRD 320.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292467820 2016-03-08 14:18:23 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 Arnold Rd. L499466 H 42.3235162 -76.0783535 2015-01-21 11:00:00 obsr605122 S21481253 Traveling P22 EBIRD 10.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625501 2018-08-04 16:53:54 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-18 08:48:00 obsr423934 S21395231 Stationary P21 EBIRD 8.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288616187 2015-01-02 21:04:12 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 Mt. Hunger Rd. L1872096 H 42.3274528 -76.0494316 2015-01-01 13:40:00 obsr624920 S21152348 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291698750 2018-08-04 16:53:58 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-18 13:37:00 obsr195505 S21400597 Stationary P21 EBIRD 30.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293171367 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 09:15:00 obsr760620 S21536653 Stationary P21 EBIRD 30.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291426614 2021-04-01 10:47:08.851048 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-15 09:45:00 obsr456332 S21379489 Stationary P21 EBIRD 23.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291429059 2018-08-04 16:53:23 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689000000001 2015-01-16 09:00:00 obsr456332 S21379721 Stationary P21 EBIRD 35.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292975208 2018-08-04 16:55:10 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-24 16:07:00 obsr456332 S21521112 Stationary P21 EBIRD 20.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293298921 2018-08-04 16:55:15 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr456332 S21546514 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293430789 2018-08-04 16:55:18 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-26 11:10:00 obsr456332 S21557723 Stationary P21 EBIRD 20.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293598156 2018-08-04 16:55:19 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 08:20:00 obsr456332 S21570835 Stationary P21 EBIRD 20.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291252693 2021-03-19 16:02:45.308962 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 16:14:00 obsr52000 S21358369 Traveling P22 EBIRD 63.0 0.161 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293542778 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-27 09:40:00 obsr760620 S21566404 Stationary P21 EBIRD 20.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293328854 2018-08-04 16:55:15 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-25 13:00:00 obsr99508 S21548539 Stationary P21 EBIRD 15.0 2.0 1 G1124309 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291250596 2018-08-04 16:53:23 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 09:10:00 obsr534674 S21365214 Stationary P21 EBIRD 20.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290523042 2015-01-11 20:08:38 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Broome US-NY-007 28.0 Harmony Hill Ranch 751 Dimock Hill Rd L1906146 P 42.20061 -75.94783000000001 2015-01-11 16:00:00 obsr534674 S21306460 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293212830 2015-01-25 18:28:26 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-25 07:00:00 obsr534674 S21539972 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291168211 2021-03-19 16:02:45.308962 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-15 16:14:00 obsr52000 S21358369 Traveling P22 EBIRD 63.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289119970 2015-01-04 18:03:52 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-04 13:31:00 obsr624920 S21194369 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289118143 2015-01-04 18:00:00 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Coleman St. Park L1916434 P 42.0338031 -76.02144240000001 2015-01-04 11:22:00 obsr624920 S21194237 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985245 2021-04-01 10:47:08.851048 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291683517 2015-01-18 15:07:33 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Broome US-NY-007 28.0 CASTLE CREEK, 381-429 West Chenango Road L1908893 P 42.19697 -75.93418 2015-01-18 12:30:00 obsr534674 S21399575 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293726258 2015-01-28 15:34:25 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-28 11:00:00 obsr423934 S21580528 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293848943 2021-03-30 19:03:14.123633 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-29 12:47:00 obsr52000 S21590566 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293733911 2015-01-28 16:27:31 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-28 13:36:00 obsr195505 S21581138 Traveling P22 EBIRD 68.0 5.697 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291421291 2021-03-26 06:09:25.361188 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-07 09:00:00 obsr456332 S21378968 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289718551 2015-01-07 16:20:26 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 377 Conklin Avenue L3200484 P 42.09931 -75.88229 2015-01-07 14:18:00 obsr456332 S21240915 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293358715 2015-01-26 11:22:30 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-25 13:17:00 obsr171042 S21551005 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293172375 2015-01-25 16:07:34 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-25 10:30:00 obsr760620 S21536723 Traveling P22 EBIRD 20.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291424044 2021-04-01 10:47:08.851048 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 Lisle, 302-372 Smith Hill Road L1989308 P 42.34888 -76.02524 2015-01-17 10:45:00 obsr534674 S21379191 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290412925 2015-01-11 13:37:54 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-11 08:38:00 obsr423934 S21297496 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291250976 2018-08-04 16:53:23 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-16 08:15:00 obsr534674 S21365247 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294112639 2017-08-16 02:23:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-31 09:44:00 obsr52000 S21611123 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292575374 2015-01-22 05:11:48 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-21 13:40:00 obsr195505 S21489709 Traveling P22 EBIRD 95.0 5.729 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292916187 2021-03-19 16:02:45.308962 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-24 11:52:00 obsr325492 S21516841 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470234 2020-01-17 17:31:16 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.90260119999999 2015-01-17 08:02:00 obsr325492 S21383040 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292652570 2017-02-01 21:17:41 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-22 13:51:00 obsr195505 S21495970 Traveling P22 EBIRD 96.0 6.196000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292805955 2015-01-23 17:50:46 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L270868 P 42.0847408 -76.0845325 2015-01-23 16:06:00 obsr624920 S21508055 Traveling P22 EBIRD 48.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241218 2015-01-01 16:36:42 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-01 10:30:00 obsr325492 S21121015 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293877544 2017-02-01 21:17:41 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-29 13:29:00 obsr195505 S21593041 Traveling P22 EBIRD 115.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288105898 2021-03-26 06:09:25.361188 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-01 08:45:00 obsr605122 S21109834 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291397800 2015-01-17 08:09:52 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-17 07:40:00 obsr605122 S21377016 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292466925 2021-03-19 16:02:45.308962 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 route 79 L3308143 P 42.3214299 -75.9460402 2015-01-21 10:00:00 obsr605122 S21481185 Traveling P22 EBIRD 15.0 11.265 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254195 2021-03-24 19:20:44.053843 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr99508 S21543052 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288808593 2015-01-03 17:01:59 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-03 07:00:00 obsr534674 S21167782 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097028 2021-03-24 19:20:44.053843 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr223307 S21530909 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290822838 2015-01-13 12:00:07 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-13 10:25:00 obsr195505 S21330137 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288433307 2021-03-24 19:20:44.053843 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-01-02 obsr223307 S21136871 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192439 2015-01-10 14:08:05 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-10 07:00:00 obsr534674 S21279456 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290803366 2021-03-26 06:09:25.361188 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-13 08:30:00 obsr605122 S21328368 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291422465 2015-01-17 11:29:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Bond Street L3200480 P 42.1007 -75.88074 2015-01-11 09:00:00 obsr456332 S21379067 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288415804 2021-03-26 06:09:25.361188 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-02 08:00:00 obsr605122 S21135244 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298263 2021-03-24 19:20:44.053843 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr456332 S21546459 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428246 2015-01-17 12:00:55 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Broome US-NY-007 28.0 Swift Rd. L1396474 P 42.2199772 -75.9448922 2015-01-15 00:16:00 obsr456332 S21379627 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292750669 2015-01-23 11:22:24 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-23 07:00:00 obsr534674 S21503538 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292759931 2015-01-23 12:44:44 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-23 08:17:00 obsr195505 S21504293 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290973771 2015-01-14 12:32:33 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-14 11:50:00 obsr605122 S21342599 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291696436 2018-08-04 16:53:54 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 08:21:00 obsr195505 S21400406 Traveling P22 EBIRD 79.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292805957 2015-01-23 17:50:46 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L270868 P 42.0847408 -76.0845325 2015-01-23 16:06:00 obsr624920 S21508055 Traveling P22 EBIRD 48.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292908574 2015-01-24 12:46:22 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-24 11:15:00 obsr760620 S21516249 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985249 2021-04-01 10:47:08.851048 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291473176 2015-01-17 15:43:05 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 09:35:00 obsr325492 S21383262 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290476389 2015-01-11 17:29:20 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-11 09:30:00 obsr325492 S21302634 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812882 2021-03-26 06:09:25.361188 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 08:00:00 obsr605122 S21587553 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291937270 2015-01-19 14:52:51 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-19 12:27:00 obsr195505 S21419035 Traveling P22 EBIRD 107.0 7.113 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291280877 2021-03-24 19:20:44.053843 526 species avibase-56CCA717 Northern Pintail Anas acuta 3 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-16 13:30:00 obsr423934 S21367828 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291603261 2015-01-18 06:18:40 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 01:42:00 obsr195505 S21393329 Traveling P22 EBIRD 86.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292575379 2015-01-22 05:11:48 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-21 13:40:00 obsr195505 S21489709 Traveling P22 EBIRD 95.0 5.729 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289118148 2015-01-04 18:00:00 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Broome US-NY-007 28.0 Coleman St. Park L1916434 P 42.0338031 -76.02144240000001 2015-01-04 11:22:00 obsr624920 S21194237 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291871869 2015-01-19 09:24:10 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-19 09:00:00 obsr605122 S21414062 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290271848 2015-01-10 19:03:43 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-10 09:30:00 obsr325492 S21286258 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293331915 2015-01-26 08:19:15 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-26 08:00:00 obsr605122 S21548759 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289173899 2015-01-04 20:42:13 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-04 07:00:00 obsr534674 S21198475 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288698484 2021-03-24 19:20:44.053843 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin L195377 T 42.03428 -75.80383 2015-01-03 09:45:00 obsr603756 S21158720 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292732576 2021-03-26 06:09:25.361188 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-23 08:00:00 obsr605122 S21502035 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917467 2015-01-24 13:33:41 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-24 08:30:00 obsr325492 S21516942 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289040826 2018-04-20 14:55:52 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Lisle Park & Keibel Rd. L885144 H 42.350552 -75.98142390000001 2015-01-04 13:28:00 obsr223307 S21188064 Traveling P22 EBIRD 43.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146066 2018-08-04 16:53:21 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-15 12:32:00 obsr195505 S21356577 Traveling P22 EBIRD 92.0 5.906000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291478047 2015-01-17 15:59:57 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-17 11:30:00 obsr325492 S21383615 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288624293 2015-01-02 21:40:39 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-02 07:00:00 obsr534674 S21153051 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414335 2021-04-01 10:47:08.851048 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-11 08:23:00 obsr52000 S21297600 Traveling P22 EBIRD 320.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292465536 2019-04-02 20:03:27 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-01-21 09:30:00 obsr605122 S21481068 Traveling P22 EBIRD 12.0 6.437 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289140124 2021-04-01 10:47:08.851048 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-04 09:00:00 obsr325492 S21196011 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290012974 2021-03-26 06:09:25.361188 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-08 14:00:00 obsr423934 S21264895 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293671535 2015-01-28 08:10:48 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-28 07:30:00 obsr605122 S21576361 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293436622 2015-01-26 18:58:59 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-26 08:30:00 obsr325492 S21558172 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290359041 2021-03-26 06:09:25.361188 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-11 08:00:00 obsr605122 S21293150 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292595264 2015-01-22 10:35:36 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-22 10:15:00 obsr605122 S21491489 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294103897 2021-03-26 06:09:25.361188 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-31 08:00:00 obsr605122 S21610342 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291486878 2021-03-24 19:20:44.053843 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Broome US-NY-007 28.0 Kirkwood Backyard L518236 P 42.0855596 -75.7881171 2015-01-16 08:32:00 obsr52763 S21384373 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420200 2015-01-17 11:16:44 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-03 09:00:00 obsr456332 S21378875 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116996 2015-01-01 09:54:41 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 2 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-01 08:16:00 obsr52000 S21110568 Stationary P21 EBIRD 97.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292888007 2021-03-26 06:09:25.361188 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-24 10:15:00 obsr605122 S21514443 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112730 2021-03-26 06:09:25.361188 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-04 16:00:00 obsr223307 S21193794 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290949308 2015-01-14 09:22:56 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-14 08:55:00 obsr605122 S21340587 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292785824 2018-08-04 16:54:55 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-23 13:36:00 obsr195505 S21506362 Traveling P22 EBIRD 109.0 6.968 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290134364 2021-03-26 06:09:25.361188 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-10 07:30:00 obsr605122 S21274387 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293838841 2015-01-29 11:52:47 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 11:40:00 obsr605122 S21589711 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290237863 2021-03-26 06:09:25.361188 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Victory St. JC L166647 P 42.125027 -75.98304 2015-01-10 13:00:00 obsr624920 S21283511 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120498 2015-01-25 12:30:55 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-25 08:45:00 obsr325492 S21532778 Traveling P22 EBIRD 68.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288685764 2021-03-26 06:09:25.361188 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-03 08:50:00 obsr605122 S21157617 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288723232 2015-01-03 12:23:30 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-03 10:20:00 obsr307329 S21160926 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293733907 2015-01-28 16:27:31 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-28 13:36:00 obsr195505 S21581138 Traveling P22 EBIRD 68.0 5.697 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290413619 2017-08-16 02:23:57 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-11 09:45:00 obsr423934 S21297548 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292652565 2017-02-01 21:17:41 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-22 13:51:00 obsr195505 S21495970 Traveling P22 EBIRD 96.0 6.196000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681840 2018-08-04 16:53:56 447 species avibase-C235A4D7 Gadwall Mareca strepera 6 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 10:00:00 obsr534674 S21399495 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293749008 2018-08-04 16:55:23 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L2146812 P 42.09197 -76.06111 2015-01-28 15:30:00 obsr534674 S21582626 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289140122 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-04 09:00:00 obsr325492 S21196011 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292595266 2015-01-22 10:35:36 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-22 10:15:00 obsr605122 S21491489 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291478049 2015-01-17 15:59:57 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-17 11:30:00 obsr325492 S21383615 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288737216 2021-04-01 10:47:08.851048 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-03 09:07:00 obsr52000 S21162014 Traveling P22 EBIRD 248.0 24.14 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294249880 2018-08-04 16:55:29 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-31 11:26:00 obsr624920 S21616021 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289173900 2015-01-04 20:42:13 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-04 07:00:00 obsr534674 S21198475 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095513 2018-08-04 16:54:45 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Broome US-NY-007 28.0 Port Dickenson Park L1906135 P 42.14136 -75.89749 2015-01-20 08:45:00 obsr534674 S21431599 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290476384 2015-01-11 17:29:20 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-11 09:30:00 obsr325492 S21302634 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290463335 2017-08-16 02:23:57 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-11 15:05:00 obsr605122 S21301534 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681843 2018-08-04 16:53:56 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 10:00:00 obsr534674 S21399495 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293443449 2021-02-28 20:26:22.473883 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-25 12:46:00 obsr624920 S21558722 Traveling P22 EBIRD 34.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097029 2021-03-24 19:20:44.053843 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr223307 S21530909 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292750672 2015-01-23 11:22:24 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-23 07:00:00 obsr534674 S21503538 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241694 2018-08-04 16:52:16 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-01 10:00:00 obsr534674 S21121060 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288808598 2015-01-03 17:01:59 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-03 07:00:00 obsr534674 S21167782 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291397799 2015-01-17 08:09:52 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-17 07:40:00 obsr605122 S21377016 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291280874 2021-03-24 19:20:44.053843 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-16 13:30:00 obsr423934 S21367828 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917459 2015-01-24 13:33:41 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-24 08:30:00 obsr325492 S21516942 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293260067 2022-03-07 16:16:36.127066 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Home - Renee L696123 P 42.1130118 -75.93151329999999 2015-01-24 09:24:00 obsr99508 S21543500 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292888005 2021-03-26 06:09:25.361188 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-24 10:15:00 obsr605122 S21514443 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289027873 2021-03-26 06:09:25.361188 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-407-445 Smith Hill Rd L2029848 P 42.349905 -76.01804200000001 2015-01-04 13:13:00 obsr223307 S21187138 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294103887 2021-03-26 06:09:25.361188 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-31 08:00:00 obsr605122 S21610342 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293212834 2015-01-25 18:28:26 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-25 07:00:00 obsr534674 S21539972 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290359045 2021-03-26 06:09:25.361188 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-11 08:00:00 obsr605122 S21293150 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324314499 2015-05-31 20:40:27 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin L195377 T 42.03428 -75.80383 2015-01-13 14:00:00 obsr603756 S23728191 Stationary P21 EBIRD 45.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256012 2015-01-01 17:15:21 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-01 07:30:00 obsr534674 S21122273 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254196 2021-03-24 19:20:44.053843 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 1 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr99508 S21543052 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192440 2015-01-10 14:08:05 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-10 07:00:00 obsr534674 S21279456 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291486880 2021-03-24 19:20:44.053843 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 Kirkwood Backyard L518236 P 42.0855596 -75.7881171 2015-01-16 08:32:00 obsr52763 S21384373 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120500 2015-01-25 12:30:55 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-25 08:45:00 obsr325492 S21532778 Traveling P22 EBIRD 68.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192154 2021-03-26 06:09:25.361188 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-01-10 09:30:00 obsr534674 S21279429 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291629219 2021-04-01 10:47:08.851048 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-18 09:30:00 obsr325492 S21395119 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291477446 2018-08-04 16:53:28 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 Port Dickinson Comm. Park L242754 P 42.1414743 -75.8954533 2015-01-17 10:50:00 obsr325492 S21383573 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290412921 2015-01-11 13:37:54 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-11 08:38:00 obsr423934 S21297496 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288105893 2021-03-26 06:09:25.361188 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-01 08:45:00 obsr605122 S21109834 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288415800 2021-03-26 06:09:25.361188 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-02 08:00:00 obsr605122 S21135244 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116997 2015-01-01 09:54:41 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-01 08:16:00 obsr52000 S21110568 Stationary P21 EBIRD 97.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298264 2021-03-24 19:20:44.053843 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 Fountain Bleau Court L2750486 P 42.009966 -75.7808781 2015-01-25 10:03:00 obsr456332 S21546459 Traveling P22 EBIRD 28.0 0.451 1.0 1 G1123311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288215625 2021-03-26 06:09:25.361188 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-01 13:00:00 obsr579000 S21118896 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291473172 2015-01-17 15:43:05 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 09:35:00 obsr325492 S21383262 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288624289 2015-01-02 21:40:39 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-02 07:00:00 obsr534674 S21153051 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290237859 2021-03-26 06:09:25.361188 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Broome US-NY-007 28.0 Victory St. JC L166647 P 42.125027 -75.98304 2015-01-10 13:00:00 obsr624920 S21283511 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290413615 2017-08-16 02:23:57 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-11 09:45:00 obsr423934 S21297548 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290012975 2021-03-26 06:09:25.361188 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95501999999999 2015-01-08 14:00:00 obsr423934 S21264895 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290803363 2021-03-26 06:09:25.361188 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-13 08:30:00 obsr605122 S21328368 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293436624 2015-01-26 18:58:59 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-26 08:30:00 obsr325492 S21558172 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291871873 2015-01-19 09:24:10 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-19 09:00:00 obsr605122 S21414062 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812888 2021-03-26 06:09:25.361188 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 08:00:00 obsr605122 S21587553 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288619516 2021-03-19 16:02:45.308962 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-01-02 14:52:00 obsr624920 S21152689 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293838842 2015-01-29 11:52:47 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 11:40:00 obsr605122 S21589711 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985246 2021-04-01 10:47:08.851048 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr624920 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293543416 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-27 10:00:00 obsr760620 S21566452 Traveling P22 EBIRD 20.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292469202 2021-03-24 19:20:44.053843 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 1 United States US New York US-NY Broome US-NY-007 28.0 Anderson Road L3308174 P 42.283024 -75.995307 2015-01-21 11:57:00 obsr605122 S21481365 Stationary P21 EBIRD 9.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116223 2015-01-04 17:54:44 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Broome US-NY-007 28.0 Jones Park L716848 P 42.0111915 -75.99244240000002 2015-01-04 09:55:00 obsr624920 S21194068 Traveling P22 EBIRD 58.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428248 2015-01-17 12:00:55 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 Swift Rd. L1396474 P 42.2199772 -75.9448922 2015-01-15 00:16:00 obsr456332 S21379627 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290271855 2015-01-10 19:03:43 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-10 09:30:00 obsr325492 S21286258 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955087 2017-08-16 02:23:57 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.00170870000001 2015-01-30 07:37:00 obsr52000 S21598834 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241220 2015-01-01 16:36:42 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-01 10:30:00 obsr325492 S21121015 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288778620 2015-01-03 15:35:01 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-03 09:00:00 obsr325492 S21165327 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS574536280 2018-02-05 09:37:44 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-18 09:34:00 obsr52000 S21394579 Incidental P20 EBIRD 1.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288685766 2021-03-26 06:09:25.361188 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-03 08:50:00 obsr605122 S21157617 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293877545 2017-02-01 21:17:41 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-29 13:29:00 obsr195505 S21593041 Traveling P22 EBIRD 115.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112737 2021-03-26 06:09:25.361188 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 4 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-04 16:00:00 obsr223307 S21193794 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291937271 2015-01-19 14:52:51 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-19 12:27:00 obsr195505 S21419035 Traveling P22 EBIRD 107.0 7.113 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291696437 2018-08-04 16:53:54 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 08:21:00 obsr195505 S21400406 Traveling P22 EBIRD 79.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292785826 2018-08-04 16:54:55 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-23 13:36:00 obsr195505 S21506362 Traveling P22 EBIRD 109.0 6.968 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292759932 2015-01-23 12:44:44 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-23 08:17:00 obsr195505 S21504293 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292652566 2017-02-01 21:17:41 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-22 13:51:00 obsr195505 S21495970 Traveling P22 EBIRD 96.0 6.196000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291603262 2015-01-18 06:18:40 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 01:42:00 obsr195505 S21393329 Traveling P22 EBIRD 86.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292575372 2015-01-22 05:11:48 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-21 13:40:00 obsr195505 S21489709 Traveling P22 EBIRD 95.0 5.729 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414336 2021-04-01 10:47:08.851048 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-11 08:23:00 obsr52000 S21297600 Traveling P22 EBIRD 320.0 40.233 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146067 2018-08-04 16:53:21 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-15 12:32:00 obsr195505 S21356577 Traveling P22 EBIRD 92.0 5.906000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293092205 2018-08-04 16:55:12 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin, Conklin Park Road L2583869 P 42.06475 -75.80788000000001 2015-01-25 09:30:00 obsr223307 S21530459 Stationary P21 EBIRD 23.0 1.0 0 G1123313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290822839 2015-01-13 12:00:07 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-01-13 10:25:00 obsr195505 S21330137 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298063 2018-08-04 16:55:12 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin, Conklin Park Road L2583869 P 42.06475 -75.80788000000001 2015-01-25 09:30:00 obsr456332 S21546443 Stationary P21 EBIRD 23.0 1.0 0 G1123313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293733908 2015-01-28 16:27:31 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-28 13:36:00 obsr195505 S21581138 Traveling P22 EBIRD 68.0 5.697 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292820113 2015-01-23 19:14:08 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-23 15:15:00 obsr171042 S21509110 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293254455 2018-08-04 16:55:12 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin, Conklin Park Road L2583869 P 42.06475 -75.80788000000001 2015-01-25 09:30:00 obsr99508 S21543075 Stationary P21 EBIRD 23.0 1.0 0 G1123313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146069 2018-08-04 16:53:21 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-15 12:32:00 obsr195505 S21356577 Traveling P22 EBIRD 92.0 5.906000000000001 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289236439 2021-03-26 06:09:25.361188 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-05 07:50:00 obsr605122 S21203097 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288105895 2021-03-26 06:09:25.361188 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-01 08:45:00 obsr605122 S21109834 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288778621 2015-01-03 15:35:01 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-03 09:00:00 obsr325492 S21165327 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291937265 2015-01-19 14:52:51 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-19 12:27:00 obsr195505 S21419035 Traveling P22 EBIRD 107.0 7.113 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290192162 2021-03-26 06:09:25.361188 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-01-10 09:30:00 obsr534674 S21279429 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290412927 2015-01-11 13:37:54 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-01-11 08:38:00 obsr423934 S21297496 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289718552 2015-01-07 16:20:26 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, 377 Conklin Avenue L3200484 P 42.09931 -75.88229 2015-01-07 14:18:00 obsr456332 S21240915 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292908792 2021-03-24 19:20:44.053843 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Broome US-NY-007 28.0 Tri-City Airport L2347159 H 42.08439 -76.093867 2015-01-24 11:30:00 obsr760620 S21516269 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289027876 2021-03-26 06:09:25.361188 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-407-445 Smith Hill Rd L2029848 P 42.349905 -76.01804200000001 2015-01-04 13:13:00 obsr223307 S21187138 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293358713 2015-01-26 11:22:30 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-25 13:17:00 obsr171042 S21551005 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292466930 2021-03-19 16:02:45.308962 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 route 79 L3308143 P 42.3214299 -75.9460402 2015-01-21 10:00:00 obsr605122 S21481185 Traveling P22 EBIRD 15.0 11.265 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291421294 2021-03-26 06:09:25.361188 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309000000005 -75.88178520000001 2015-01-07 09:00:00 obsr456332 S21378968 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293436631 2015-01-26 18:58:59 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-26 08:30:00 obsr325492 S21558172 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291977755 2015-01-19 17:54:27 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-19 16:55:00 obsr325492 S21422428 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288215628 2021-03-26 06:09:25.361188 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-01 13:00:00 obsr579000 S21118896 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291696439 2018-08-04 16:53:54 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 08:21:00 obsr195505 S21400406 Traveling P22 EBIRD 79.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290949311 2015-01-14 09:22:56 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-14 08:55:00 obsr605122 S21340587 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292820112 2015-01-23 19:14:08 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-01-23 15:15:00 obsr171042 S21509110 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112734 2021-03-26 06:09:25.361188 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 30 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-01-04 16:00:00 obsr223307 S21193794 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293253933 2018-08-04 16:55:14 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 21-217 Centervillage Loop Road L3316564 P 42.15982 -75.60088 2015-01-25 12:31:00 obsr99508 S21543030 Stationary P21 EBIRD 1.0 1.0 1 G1123304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292880213 2015-01-24 09:22:45 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 10 United States US New York US-NY Broome US-NY-007 28.0 Rt.12/Upper Front St. L1887309 P 42.1718279 -75.8860037 2015-01-20 09:37:00 obsr456332 S21513762 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301153233 2016-03-02 21:14:11 6339 species avibase-8535345B Herring Gull Larus argentatus 11 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.88151690000001 2015-01-31 14:45:00 obsr423934 S21615936 Traveling P22 EBIRD 10.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120922 2018-08-04 16:55:14 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 5 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 21-217 Centervillage Loop Road L3316564 P 42.15982 -75.60088 2015-01-25 12:31:00 obsr223307 S21532819 Stationary P21 EBIRD 1.0 1.0 1 G1123304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288737209 2021-04-01 10:47:08.851048 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 5 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-03 09:07:00 obsr52000 S21162014 Traveling P22 EBIRD 248.0 24.14 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293298318 2018-08-04 16:55:15 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 5 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 21-217 Centervillage Loop Road L3316564 P 42.15982 -75.60088 2015-01-25 12:31:00 obsr456332 S21546466 Stationary P21 EBIRD 1.0 1.0 1 G1123304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291696433 2018-08-04 16:53:54 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 10 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-18 08:21:00 obsr195505 S21400406 Traveling P22 EBIRD 79.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625292 2017-07-27 18:32:12 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Broome US-NY-007 28.0 Front St., Binghamton L2675151 P 42.171388 -75.88558 2015-01-18 08:47:00 obsr423934 S21395209 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291211480 2015-01-15 21:32:15 505 species avibase-C732CB10 American Black Duck Anas rubripes 20 United States US New York US-NY Broome US-NY-007 28.0 Willis Rd. L3294719 P 42.15195070000001 -75.9252262 2015-01-15 12:30:00 obsr534674 S21362023 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293721794 2021-03-24 20:56:44.139453 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-21 10:30:00 obsr378702 S21580168 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294908893 2016-09-12 10:27:59 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-28 10:30:00 obsr378702 S21674841 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086057 2021-03-31 04:07:46.581409 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Quaker Lake L246475 H 42.0497222 -78.8716667 2015-01-24 08:50:00 obsr34979 S21529851 Traveling P22 EBIRD 74.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723863 2016-09-12 10:27:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-24 10:30:00 obsr378702 S21580335 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289650513 2016-09-12 10:40:03 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 Holiday Valley Inn L3274471 P 42.2625966 -78.6675704 2015-01-01 09:30:00 obsr165970 S21236307 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292490025 2016-09-12 10:27:59 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-14 10:30:00 obsr378702 S21483089 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316204649 2016-09-12 10:41:58 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 Turkey Corner L863691 H 42.2246372 -78.6408904 2015-01-03 obsr231855 S23249223 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294910639 2016-09-12 10:27:59 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-31 10:00:00 obsr378702 S21674948 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723166 2016-09-12 10:27:59 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-23 10:30:00 obsr378702 S21580276 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292493115 2016-09-12 10:27:59 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-17 10:30:00 obsr378702 S21483309 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290986367 2016-09-12 10:27:59 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-07 11:30:00 obsr378702 S21343426 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097112 2021-04-01 12:28:06.222372 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Cattaraugus US-NY-009 13.0 Hickory Flats, Route 322, Dayton L2686527 H 42.3591782 -79.0241432 2015-01-25 09:53:00 obsr610593 S21530915 Traveling P22 EBIRD 39.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293135668 2021-03-26 07:51:35.34016 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 14 United States US New York US-NY Cattaraugus US-NY-009 28.0 Cuba Lake to Franklinville L3316751 P 42.2565686 -78.3168983 2015-01-24 11:46:00 obsr339506 S21533898 Traveling P22 EBIRD 42.0 30.578000000000003 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292495452 2021-03-24 20:56:44.139453 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-20 10:30:00 obsr378702 S21483496 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292491033 2016-09-12 10:27:59 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-15 10:30:00 obsr378702 S21483161 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294909863 2021-03-24 20:56:44.139453 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-29 10:30:00 obsr378702 S21674900 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293722563 2016-09-12 10:27:59 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-22 10:30:00 obsr378702 S21580224 Stationary P21 EBIRD 225.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723854 2016-09-12 10:27:59 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-24 10:30:00 obsr378702 S21580335 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290986363 2016-09-12 10:27:59 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-07 11:30:00 obsr378702 S21343426 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293725572 2016-09-12 10:27:59 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-26 10:30:00 obsr378702 S21580471 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293721787 2021-03-24 20:56:44.139453 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-21 10:30:00 obsr378702 S21580168 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086060 2021-03-31 04:07:46.581409 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 2 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Quaker Lake L246475 H 42.0497222 -78.8716667 2015-01-24 08:50:00 obsr34979 S21529851 Traveling P22 EBIRD 74.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294910644 2016-09-12 10:27:59 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-31 10:00:00 obsr378702 S21674948 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723165 2016-09-12 10:27:59 447 species avibase-C235A4D7 Gadwall Mareca strepera 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-23 10:30:00 obsr378702 S21580276 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294909858 2021-03-24 20:56:44.139453 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-29 10:30:00 obsr378702 S21674900 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290988579 2016-09-12 10:27:59 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-09 09:30:00 obsr378702 S21343616 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290987723 2016-09-12 10:27:59 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-08 09:45:00 obsr378702 S21343547 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292493114 2016-09-12 10:27:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-17 10:30:00 obsr378702 S21483309 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293135676 2021-03-26 07:51:35.34016 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 Cuba Lake to Franklinville L3316751 P 42.2565686 -78.3168983 2015-01-24 11:46:00 obsr339506 S21533898 Traveling P22 EBIRD 42.0 30.578000000000003 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292492001 2016-09-12 10:27:59 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-16 10:30:00 obsr378702 S21483232 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727029 2016-09-12 10:27:59 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-06 11:00:00 obsr378702 S21241562 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291643480 2016-09-12 10:37:53 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca X United States US New York US-NY Cattaraugus US-NY-009 28.0 Chaffee, 4215-4233 Creek Road L2840314 P 42.51051 -78.55591 2015-01-18 11:58:00 obsr127083 S21396761 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291472383 2018-08-04 16:53:31 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 Male, Adult (1) United States US New York US-NY Cattaraugus US-NY-009 13.0 Conewango Swamp WMA L246473 H 42.1794444 -78.98611109999999 2015-01-17 15:00:00 obsr141536 S21383200 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292492007 2016-09-12 10:27:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-16 10:30:00 obsr378702 S21483232 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292495450 2021-03-24 20:56:44.139453 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-20 10:30:00 obsr378702 S21483496 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293722557 2016-09-12 10:27:59 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-22 10:30:00 obsr378702 S21580224 Stationary P21 EBIRD 225.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289721559 2016-09-12 10:27:59 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-01 08:30:00 obsr378702 S21241109 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289723537 2016-09-12 10:27:59 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-03 10:30:00 obsr378702 S21241260 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290988577 2016-09-12 10:27:59 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-09 09:30:00 obsr378702 S21343616 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086058 2021-03-31 04:07:46.581409 616 species avibase-25C94A8F Greater Scaup Aythya marila 5 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Quaker Lake L246475 H 42.0497222 -78.8716667 2015-01-24 08:50:00 obsr34979 S21529851 Traveling P22 EBIRD 74.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292491030 2016-09-12 10:27:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-15 10:30:00 obsr378702 S21483161 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290987724 2016-09-12 10:27:59 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-08 09:45:00 obsr378702 S21343547 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294908895 2016-09-12 10:27:59 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-28 10:30:00 obsr378702 S21674841 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292493110 2016-09-12 10:27:59 681 species avibase-407E2CA8 Common Merganser Mergus merganser 8 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-17 10:30:00 obsr378702 S21483309 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292490022 2016-09-12 10:27:59 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 6 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-14 10:30:00 obsr378702 S21483089 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727026 2016-09-12 10:27:59 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 6 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-06 11:00:00 obsr378702 S21241562 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723161 2016-09-12 10:27:59 6339 species avibase-8535345B Herring Gull Larus argentatus 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-23 10:30:00 obsr378702 S21580276 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723857 2016-09-12 10:27:59 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-24 10:30:00 obsr378702 S21580335 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294909866 2021-03-24 20:56:44.139453 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-29 10:30:00 obsr378702 S21674900 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293721792 2021-03-24 20:56:44.139453 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-21 10:30:00 obsr378702 S21580168 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290990348 2016-09-12 10:27:59 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-13 11:30:00 obsr378702 S21343755 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293341943 2016-09-12 10:40:03 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 42.264342, -78430625 L3319470 P 42.2919236 -78.45302579999999 2015-01-26 09:08:00 obsr557893 S21549612 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289725379 2016-09-12 10:27:59 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-05 11:00:00 obsr378702 S21241435 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292494783 2016-09-12 10:27:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-19 10:30:00 obsr378702 S21483437 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290986364 2016-09-12 10:27:59 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-07 11:30:00 obsr378702 S21343426 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293135674 2021-03-26 07:51:35.34016 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 Cuba Lake to Franklinville L3316751 P 42.2565686 -78.3168983 2015-01-24 11:46:00 obsr339506 S21533898 Traveling P22 EBIRD 42.0 30.578000000000003 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293725579 2016-09-12 10:27:59 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-26 10:30:00 obsr378702 S21580471 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290989157 2016-09-12 10:27:59 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-12 11:00:00 obsr378702 S21343661 Stationary P21 EBIRD 390.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293726632 2016-09-12 10:27:59 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-27 10:30:00 obsr378702 S21580562 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294910643 2016-09-12 10:27:59 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 7 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-31 10:00:00 obsr378702 S21674948 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289725374 2016-09-12 10:27:59 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-05 11:00:00 obsr378702 S21241435 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086056 2021-03-31 04:07:46.581409 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 9 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Quaker Lake L246475 H 42.0497222 -78.8716667 2015-01-24 08:50:00 obsr34979 S21529851 Traveling P22 EBIRD 74.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293721791 2021-03-24 20:56:44.139453 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-21 10:30:00 obsr378702 S21580168 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292494789 2016-09-12 10:27:59 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-19 10:30:00 obsr378702 S21483437 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294909861 2021-03-24 20:56:44.139453 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-29 10:30:00 obsr378702 S21674900 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292492010 2016-09-12 10:27:59 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-16 10:30:00 obsr378702 S21483232 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292490021 2016-09-12 10:27:59 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-14 10:30:00 obsr378702 S21483089 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290989154 2016-09-12 10:27:59 592 species avibase-3072CC16 Redhead Aythya americana 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-12 11:00:00 obsr378702 S21343661 Stationary P21 EBIRD 390.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293135669 2021-03-26 07:51:35.34016 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 Cuba Lake to Franklinville L3316751 P 42.2565686 -78.3168983 2015-01-24 11:46:00 obsr339506 S21533898 Traveling P22 EBIRD 42.0 30.578000000000003 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294908896 2016-09-12 10:27:59 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-28 10:30:00 obsr378702 S21674841 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727024 2016-09-12 10:27:59 456 species avibase-D201EB72 American Wigeon Mareca americana 6 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-06 11:00:00 obsr378702 S21241562 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097111 2021-04-01 12:28:06.222372 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Cattaraugus US-NY-009 13.0 Hickory Flats, Route 322, Dayton L2686527 H 42.3591782 -79.0241432 2015-01-25 09:53:00 obsr610593 S21530915 Traveling P22 EBIRD 39.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290987718 2016-09-12 10:27:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-08 09:45:00 obsr378702 S21343547 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290988576 2016-09-12 10:27:59 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-09 09:30:00 obsr378702 S21343616 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293725578 2016-09-12 10:27:59 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-26 10:30:00 obsr378702 S21580471 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290986368 2016-09-12 10:27:59 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-07 11:30:00 obsr378702 S21343426 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292491029 2016-09-12 10:27:59 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-15 10:30:00 obsr378702 S21483161 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289723539 2016-09-12 10:27:59 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-03 10:30:00 obsr378702 S21241260 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293726628 2016-09-12 10:27:59 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-27 10:30:00 obsr378702 S21580562 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723861 2016-09-12 10:27:59 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-24 10:30:00 obsr378702 S21580335 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290990347 2016-09-12 10:27:59 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-13 11:30:00 obsr378702 S21343755 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294910649 2016-09-12 10:27:59 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-31 10:00:00 obsr378702 S21674948 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293341938 2016-09-12 10:40:03 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 42.264342, -78430625 L3319470 P 42.2919236 -78.45302579999999 2015-01-26 09:08:00 obsr557893 S21549612 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292493107 2016-09-12 10:27:59 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 7 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-17 10:30:00 obsr378702 S21483309 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289721564 2016-09-12 10:27:59 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-01 08:30:00 obsr378702 S21241109 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293722562 2016-09-12 10:27:59 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-22 10:30:00 obsr378702 S21580224 Stationary P21 EBIRD 225.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292495454 2021-03-24 20:56:44.139453 11528 species avibase-F3DA111C Merlin Falco columbarius 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-20 10:30:00 obsr378702 S21483496 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723167 2016-09-12 10:27:59 447 species avibase-C235A4D7 Gadwall Mareca strepera 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-23 10:30:00 obsr378702 S21580276 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297073445 2018-08-04 16:55:08 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 24 Male, Adult (2); Unknown Sex and Age (6); Male, Immature (3); Female, Unknown Age (13) United States US New York US-NY Cattaraugus US-NY-009 28.0 River Road L2695002 P 42.0723186 -78.4511483 2015-01-24 12:00:00 obsr721566 S21855185 Traveling P22 EBIRD 195.0 4.828 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS297073447 2018-08-04 16:55:08 505 species avibase-C732CB10 American Black Duck Anas rubripes 8 Male, Adult (5); Female, Unknown Age (3) United States US New York US-NY Cattaraugus US-NY-009 28.0 River Road L2695002 P 42.0723186 -78.4511483 2015-01-24 12:00:00 obsr721566 S21855185 Traveling P22 EBIRD 195.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292492002 2016-09-12 10:27:59 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-16 10:30:00 obsr378702 S21483232 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292493116 2016-09-12 10:27:59 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-17 10:30:00 obsr378702 S21483309 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723862 2016-09-12 10:27:59 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-24 10:30:00 obsr378702 S21580335 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293721795 2021-03-24 20:56:44.139453 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-21 10:30:00 obsr378702 S21580168 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292494784 2016-09-12 10:27:59 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-19 10:30:00 obsr378702 S21483437 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316204657 2016-09-12 10:37:47 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cattaraugus US-NY-009 13.0 Conewango Swamp WMA L246473 H 42.1794444 -78.98611109999999 2015-01-03 obsr231855 S23249229 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293135672 2021-03-26 07:51:35.34016 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 Cuba Lake to Franklinville L3316751 P 42.2565686 -78.3168983 2015-01-24 11:46:00 obsr339506 S21533898 Traveling P22 EBIRD 42.0 30.578000000000003 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293726631 2016-09-12 10:27:59 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-27 10:30:00 obsr378702 S21580562 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292495453 2021-03-24 20:56:44.139453 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-20 10:30:00 obsr378702 S21483496 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292495459 2021-03-24 20:56:44.139453 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-20 10:30:00 obsr378702 S21483496 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293721786 2021-03-24 20:56:44.139453 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-21 10:30:00 obsr378702 S21580168 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293725576 2016-09-12 10:27:59 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 10 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-26 10:30:00 obsr378702 S21580471 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723858 2016-09-12 10:27:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-24 10:30:00 obsr378702 S21580335 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293726633 2016-09-12 10:27:59 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-27 10:30:00 obsr378702 S21580562 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292493108 2016-09-12 10:27:59 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-17 10:30:00 obsr378702 S21483309 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292494785 2016-09-12 10:27:59 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-19 10:30:00 obsr378702 S21483437 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290988574 2016-09-12 10:27:59 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-09 09:30:00 obsr378702 S21343616 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293135671 2021-03-26 07:51:35.34016 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Cattaraugus US-NY-009 28.0 Cuba Lake to Franklinville L3316751 P 42.2565686 -78.3168983 2015-01-24 11:46:00 obsr339506 S21533898 Traveling P22 EBIRD 42.0 30.578000000000003 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723164 2016-09-12 10:27:59 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-23 10:30:00 obsr378702 S21580276 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294909864 2021-03-24 20:56:44.139453 616 species avibase-25C94A8F Greater Scaup Aythya marila 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-29 10:30:00 obsr378702 S21674900 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289721561 2016-09-12 10:27:59 592 species avibase-3072CC16 Redhead Aythya americana 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-01 08:30:00 obsr378702 S21241109 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290990351 2016-09-12 10:27:59 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-13 11:30:00 obsr378702 S21343755 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292490018 2016-09-12 10:27:59 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-14 10:30:00 obsr378702 S21483089 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294908892 2016-09-12 10:27:59 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-28 10:30:00 obsr378702 S21674841 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289723543 2016-09-12 10:27:59 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-03 10:30:00 obsr378702 S21241260 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293722559 2016-09-12 10:27:59 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-22 10:30:00 obsr378702 S21580224 Stationary P21 EBIRD 225.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292492003 2016-09-12 10:27:59 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-16 10:30:00 obsr378702 S21483232 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097114 2021-04-01 12:28:06.222372 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Cattaraugus US-NY-009 13.0 Hickory Flats, Route 322, Dayton L2686527 H 42.3591782 -79.0241432 2015-01-25 09:53:00 obsr610593 S21530915 Traveling P22 EBIRD 39.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289725375 2016-09-12 10:27:59 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-05 11:00:00 obsr378702 S21241435 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290987722 2016-09-12 10:27:59 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-08 09:45:00 obsr378702 S21343547 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727027 2016-09-12 10:27:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-06 11:00:00 obsr378702 S21241562 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290986361 2016-09-12 10:27:59 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-07 11:30:00 obsr378702 S21343426 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292491028 2016-09-12 10:27:59 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-15 10:30:00 obsr378702 S21483161 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290989159 2016-09-12 10:27:59 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-12 11:00:00 obsr378702 S21343661 Stationary P21 EBIRD 390.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294910640 2016-09-12 10:27:59 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-31 10:00:00 obsr378702 S21674948 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086061 2021-03-31 04:07:46.581409 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 21 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Quaker Lake L246475 H 42.0497222 -78.8716667 2015-01-24 08:50:00 obsr34979 S21529851 Traveling P22 EBIRD 74.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293726630 2016-09-12 10:27:59 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-27 10:30:00 obsr378702 S21580562 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293721789 2021-03-24 20:56:44.139453 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-21 10:30:00 obsr378702 S21580168 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292492009 2016-09-12 10:27:59 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-16 10:30:00 obsr378702 S21483232 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290986366 2016-09-12 10:27:59 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-07 11:30:00 obsr378702 S21343426 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292494787 2016-09-12 10:27:59 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-19 10:30:00 obsr378702 S21483437 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292491031 2016-09-12 10:27:59 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-15 10:30:00 obsr378702 S21483161 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290989155 2016-09-12 10:27:59 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-12 11:00:00 obsr378702 S21343661 Stationary P21 EBIRD 390.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723162 2016-09-12 10:27:59 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-23 10:30:00 obsr378702 S21580276 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290990353 2016-09-12 10:27:59 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-13 11:30:00 obsr378702 S21343755 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293341941 2016-09-12 10:40:03 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 42.264342, -78430625 L3319470 P 42.2919236 -78.45302579999999 2015-01-26 09:08:00 obsr557893 S21549612 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290988582 2016-09-12 10:27:59 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-09 09:30:00 obsr378702 S21343616 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292495451 2021-03-24 20:56:44.139453 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-20 10:30:00 obsr378702 S21483496 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723860 2016-09-12 10:27:59 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-24 10:30:00 obsr378702 S21580335 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292490023 2016-09-12 10:27:59 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-14 10:30:00 obsr378702 S21483089 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293722561 2016-09-12 10:27:59 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-22 10:30:00 obsr378702 S21580224 Stationary P21 EBIRD 225.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289725376 2016-09-12 10:27:59 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-05 11:00:00 obsr378702 S21241435 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727025 2016-09-12 10:27:59 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-06 11:00:00 obsr378702 S21241562 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289723544 2016-09-12 10:27:59 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-03 10:30:00 obsr378702 S21241260 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293725573 2016-09-12 10:27:59 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-26 10:30:00 obsr378702 S21580471 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294910642 2016-09-12 10:27:59 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-31 10:00:00 obsr378702 S21674948 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289721560 2016-09-12 10:27:59 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-01 08:30:00 obsr378702 S21241109 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097113 2021-04-01 12:28:06.222372 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY Cattaraugus US-NY-009 13.0 Hickory Flats, Route 322, Dayton L2686527 H 42.3591782 -79.0241432 2015-01-25 09:53:00 obsr610593 S21530915 Traveling P22 EBIRD 39.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293135666 2021-03-26 07:51:35.34016 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 56 United States US New York US-NY Cattaraugus US-NY-009 28.0 Cuba Lake to Franklinville L3316751 P 42.2565686 -78.3168983 2015-01-24 11:46:00 obsr339506 S21533898 Traveling P22 EBIRD 42.0 30.578000000000003 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293726635 2016-09-12 10:27:59 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-27 10:30:00 obsr378702 S21580562 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723169 2016-09-12 10:27:59 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-23 10:30:00 obsr378702 S21580276 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293721797 2021-03-24 20:56:44.139453 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-21 10:30:00 obsr378702 S21580168 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293725574 2016-09-12 10:27:59 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-26 10:30:00 obsr378702 S21580471 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292495455 2021-03-24 20:56:44.139453 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-20 10:30:00 obsr378702 S21483496 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290987721 2016-09-12 10:27:59 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-08 09:45:00 obsr378702 S21343547 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292492008 2016-09-12 10:27:59 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-16 10:30:00 obsr378702 S21483232 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292490027 2016-09-12 10:27:59 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-14 10:30:00 obsr378702 S21483089 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292493113 2016-09-12 10:27:59 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-17 10:30:00 obsr378702 S21483309 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290988580 2016-09-12 10:27:59 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-09 09:30:00 obsr378702 S21343616 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290990349 2016-09-12 10:27:59 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-13 11:30:00 obsr378702 S21343755 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289723541 2016-09-12 10:27:59 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-03 10:30:00 obsr378702 S21241260 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292491026 2016-09-12 10:27:59 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-15 10:30:00 obsr378702 S21483161 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294910645 2016-09-12 10:27:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-31 10:00:00 obsr378702 S21674948 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294908894 2016-09-12 10:27:59 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-28 10:30:00 obsr378702 S21674841 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289721563 2016-09-12 10:27:59 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-01 08:30:00 obsr378702 S21241109 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723855 2016-09-12 10:27:59 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-24 10:30:00 obsr378702 S21580335 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727023 2016-09-12 10:27:59 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-06 11:00:00 obsr378702 S21241562 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086055 2021-03-31 04:07:46.581409 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Quaker Lake L246475 H 42.0497222 -78.8716667 2015-01-24 08:50:00 obsr34979 S21529851 Traveling P22 EBIRD 74.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289723538 2016-09-12 10:27:59 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-03 10:30:00 obsr378702 S21241260 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293348042 2017-01-06 16:36:01 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 42.061868, -78.388309 L3319559 P 42.0691163 -78.4161186 2015-01-25 11:30:00 obsr557893 S21550152 Traveling P22 EBIRD 10.0 40.234 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294909865 2021-03-24 20:56:44.139453 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-29 10:30:00 obsr378702 S21674900 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293135673 2021-03-26 07:51:35.34016 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus N 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 Cuba Lake to Franklinville L3316751 P 42.2565686 -78.3168983 2015-01-24 11:46:00 obsr339506 S21533898 Traveling P22 EBIRD 42.0 30.578000000000003 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292495457 2021-03-24 20:56:44.139453 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-20 10:30:00 obsr378702 S21483496 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293721788 2021-03-24 20:56:44.139453 31530 species avibase-B48335B1 Pine Siskin Spinus pinus N 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-21 10:30:00 obsr378702 S21580168 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097115 2021-04-01 12:28:06.222372 483 species avibase-85625D75 Mallard Anas platyrhynchos N X United States US New York US-NY Cattaraugus US-NY-009 13.0 Hickory Flats, Route 322, Dayton L2686527 H 42.3591782 -79.0241432 2015-01-25 09:53:00 obsr610593 S21530915 Traveling P22 EBIRD 39.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293135670 2021-03-26 07:51:35.34016 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon N 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 Cuba Lake to Franklinville L3316751 P 42.2565686 -78.3168983 2015-01-24 11:46:00 obsr339506 S21533898 Traveling P22 EBIRD 42.0 30.578000000000003 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297073446 2018-08-04 16:55:08 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 23 United States US New York US-NY Cattaraugus US-NY-009 28.0 River Road L2695002 P 42.0723186 -78.4511483 2015-01-24 12:00:00 obsr721566 S21855185 Traveling P22 EBIRD 195.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291472384 2018-08-04 16:53:31 337 species avibase-694C127A Mute Swan Cygnus olor 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Cattaraugus US-NY-009 13.0 Conewango Swamp WMA L246473 H 42.1794444 -78.98611109999999 2015-01-17 15:00:00 obsr141536 S21383200 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293721785 2021-03-24 20:56:44.139453 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 7 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-21 10:30:00 obsr378702 S21580168 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289723542 2016-09-12 10:27:59 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-03 10:30:00 obsr378702 S21241260 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290988581 2016-09-12 10:27:59 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-09 09:30:00 obsr378702 S21343616 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293341940 2016-09-12 10:40:03 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 42.264342, -78430625 L3319470 P 42.2919236 -78.45302579999999 2015-01-26 09:08:00 obsr557893 S21549612 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290986360 2016-09-12 10:27:59 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-07 11:30:00 obsr378702 S21343426 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294909862 2021-03-24 20:56:44.139453 337 species avibase-694C127A Mute Swan Cygnus olor 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-29 10:30:00 obsr378702 S21674900 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723168 2016-09-12 10:27:59 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-23 10:30:00 obsr378702 S21580276 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294908897 2016-09-12 10:27:59 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 12 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-28 10:30:00 obsr378702 S21674841 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294910641 2016-09-12 10:27:59 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-31 10:00:00 obsr378702 S21674948 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293725575 2016-09-12 10:27:59 483 species avibase-85625D75 Mallard Anas platyrhynchos 13 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-26 10:30:00 obsr378702 S21580471 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292493111 2016-09-12 10:27:59 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-17 10:30:00 obsr378702 S21483309 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292492004 2016-09-12 10:27:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-16 10:30:00 obsr378702 S21483232 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292495449 2021-03-24 20:56:44.139453 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-20 10:30:00 obsr378702 S21483496 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289721562 2016-09-12 10:27:59 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-01 08:30:00 obsr378702 S21241109 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292494788 2016-09-12 10:27:59 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-19 10:30:00 obsr378702 S21483437 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292490026 2016-09-12 10:27:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-14 10:30:00 obsr378702 S21483089 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293726629 2016-09-12 10:27:59 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 6 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-27 10:30:00 obsr378702 S21580562 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290989153 2016-09-12 10:27:59 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-12 11:00:00 obsr378702 S21343661 Stationary P21 EBIRD 390.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293722558 2016-09-12 10:27:59 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-22 10:30:00 obsr378702 S21580224 Stationary P21 EBIRD 225.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292491034 2016-09-12 10:27:59 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-15 10:30:00 obsr378702 S21483161 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727030 2016-09-12 10:27:59 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-06 11:00:00 obsr378702 S21241562 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289725380 2016-09-12 10:27:59 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-05 11:00:00 obsr378702 S21241435 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290990350 2016-09-12 10:27:59 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-13 11:30:00 obsr378702 S21343755 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723160 2016-09-12 10:27:59 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-23 10:30:00 obsr378702 S21580276 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290989158 2016-09-12 10:27:59 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-12 11:00:00 obsr378702 S21343661 Stationary P21 EBIRD 390.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292493105 2016-09-12 10:27:59 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-17 10:30:00 obsr378702 S21483309 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289723536 2016-09-12 10:27:59 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-03 10:30:00 obsr378702 S21241260 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292494786 2016-09-12 10:27:59 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-19 10:30:00 obsr378702 S21483437 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289725378 2016-09-12 10:27:59 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-05 11:00:00 obsr378702 S21241435 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293722560 2016-09-12 10:27:59 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-22 10:30:00 obsr378702 S21580224 Stationary P21 EBIRD 225.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292491035 2016-09-12 10:27:59 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-15 10:30:00 obsr378702 S21483161 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290987719 2016-09-12 10:27:59 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-08 09:45:00 obsr378702 S21343547 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293721790 2021-03-24 20:56:44.139453 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-21 10:30:00 obsr378702 S21580168 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290986365 2016-09-12 10:27:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-07 11:30:00 obsr378702 S21343426 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086062 2021-03-31 04:07:46.581409 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Quaker Lake L246475 H 42.0497222 -78.8716667 2015-01-24 08:50:00 obsr34979 S21529851 Traveling P22 EBIRD 74.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294909859 2021-03-24 20:56:44.139453 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-29 10:30:00 obsr378702 S21674900 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723856 2016-09-12 10:27:59 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-24 10:30:00 obsr378702 S21580335 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294910648 2016-09-12 10:27:59 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-31 10:00:00 obsr378702 S21674948 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293726634 2016-09-12 10:27:59 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-27 10:30:00 obsr378702 S21580562 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727028 2016-09-12 10:27:59 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-06 11:00:00 obsr378702 S21241562 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292495456 2021-03-24 20:56:44.139453 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-20 10:30:00 obsr378702 S21483496 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289721566 2016-09-12 10:27:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-01 08:30:00 obsr378702 S21241109 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292492005 2016-09-12 10:27:59 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-16 10:30:00 obsr378702 S21483232 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292490020 2016-09-12 10:27:59 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-14 10:30:00 obsr378702 S21483089 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290988578 2016-09-12 10:27:59 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-09 09:30:00 obsr378702 S21343616 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293725577 2016-09-12 10:27:59 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-26 10:30:00 obsr378702 S21580471 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097110 2021-04-01 12:28:06.222372 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Cattaraugus US-NY-009 13.0 Hickory Flats, Route 322, Dayton L2686527 H 42.3591782 -79.0241432 2015-01-25 09:53:00 obsr610593 S21530915 Traveling P22 EBIRD 39.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293135675 2021-03-26 07:51:35.34016 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 Cuba Lake to Franklinville L3316751 P 42.2565686 -78.3168983 2015-01-24 11:46:00 obsr339506 S21533898 Traveling P22 EBIRD 42.0 30.578000000000003 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293476452 2016-09-12 10:40:03 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 onoville L3321008 P 42.0294779 -78.97292709999999 2015-01-25 14:00:00 obsr605033 S21561246 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293341944 2016-09-12 10:40:03 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 42.264342, -78430625 L3319470 P 42.2919236 -78.45302579999999 2015-01-26 09:08:00 obsr557893 S21549612 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293721796 2021-03-24 20:56:44.139453 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-21 10:30:00 obsr378702 S21580168 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292495458 2021-03-24 20:56:44.139453 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-20 10:30:00 obsr378702 S21483496 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292491032 2016-09-12 10:27:59 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-15 10:30:00 obsr378702 S21483161 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292493106 2016-09-12 10:27:59 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-17 10:30:00 obsr378702 S21483309 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293722564 2016-09-12 10:27:59 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-22 10:30:00 obsr378702 S21580224 Stationary P21 EBIRD 225.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297073448 2018-08-04 16:55:08 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 River Road L2695002 P 42.0723186 -78.4511483 2015-01-24 12:00:00 obsr721566 S21855185 Traveling P22 EBIRD 195.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294910647 2016-09-12 10:27:59 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-31 10:00:00 obsr378702 S21674948 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293721793 2021-03-24 20:56:44.139453 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-21 10:30:00 obsr378702 S21580168 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293143291 2021-03-31 04:07:46.581409 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Quaker Lake L246475 H 42.0497222 -78.8716667 2015-01-24 08:50:00 obsr34979 S21529851 Traveling P22 EBIRD 74.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292493112 2016-09-12 10:27:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-17 10:30:00 obsr378702 S21483309 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291472382 2018-08-04 16:53:31 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cattaraugus US-NY-009 13.0 Conewango Swamp WMA L246473 H 42.1794444 -78.98611109999999 2015-01-17 15:00:00 obsr141536 S21383200 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097107 2021-04-01 12:28:06.222372 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Cattaraugus US-NY-009 13.0 Hickory Flats, Route 322, Dayton L2686527 H 42.3591782 -79.0241432 2015-01-25 09:53:00 obsr610593 S21530915 Traveling P22 EBIRD 39.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086052 2021-03-31 04:07:46.581409 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Quaker Lake L246475 H 42.0497222 -78.8716667 2015-01-24 08:50:00 obsr34979 S21529851 Traveling P22 EBIRD 74.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097109 2021-04-01 12:28:06.222372 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N X United States US New York US-NY Cattaraugus US-NY-009 13.0 Hickory Flats, Route 322, Dayton L2686527 H 42.3591782 -79.0241432 2015-01-25 09:53:00 obsr610593 S21530915 Traveling P22 EBIRD 39.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097108 2021-04-01 12:28:06.222372 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Cattaraugus US-NY-009 13.0 Hickory Flats, Route 322, Dayton L2686527 H 42.3591782 -79.0241432 2015-01-25 09:53:00 obsr610593 S21530915 Traveling P22 EBIRD 39.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086053 2021-03-31 04:07:46.581409 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Quaker Lake L246475 H 42.0497222 -78.8716667 2015-01-24 08:50:00 obsr34979 S21529851 Traveling P22 EBIRD 74.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289342754 2016-09-12 10:37:51 11494 species avibase-20C2214E American Kestrel Falco sparverius 10 United States US New York US-NY Cattaraugus US-NY-009 28.0 11714-11774 Bixby Hill Road, 11522-11774 County Highway 90 L2605751 P 42.50945 -78.43262 2015-01-05 16:25:00 obsr127083 S21211595 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291643674 2016-09-12 10:40:03 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 Freedom, 11660 Bixby Hill Road L3270774 P 42.50636 -78.43264 2015-01-06 12:29:00 obsr127083 S21396775 Incidental P20 EBIRD 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293135667 2021-03-26 07:51:35.34016 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 Cuba Lake to Franklinville L3316751 P 42.2565686 -78.3168983 2015-01-24 11:46:00 obsr339506 S21533898 Traveling P22 EBIRD 42.0 30.578000000000003 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293341942 2016-09-12 10:40:03 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 42.264342, -78430625 L3319470 P 42.2919236 -78.45302579999999 2015-01-26 09:08:00 obsr557893 S21549612 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290986362 2016-09-12 10:27:59 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-07 11:30:00 obsr378702 S21343426 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293726636 2016-09-12 10:27:59 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-27 10:30:00 obsr378702 S21580562 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293341939 2016-09-12 10:40:03 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 42.264342, -78430625 L3319470 P 42.2919236 -78.45302579999999 2015-01-26 09:08:00 obsr557893 S21549612 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292493109 2016-09-12 10:27:59 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-17 10:30:00 obsr378702 S21483309 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294909860 2021-03-24 20:56:44.139453 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-29 10:30:00 obsr378702 S21674900 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292491027 2016-09-12 10:27:59 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-15 10:30:00 obsr378702 S21483161 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292490024 2016-09-12 10:27:59 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-14 10:30:00 obsr378702 S21483089 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290987720 2016-09-12 10:27:59 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-08 09:45:00 obsr378702 S21343547 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292492006 2016-09-12 10:27:59 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-16 10:30:00 obsr378702 S21483232 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294908891 2016-09-12 10:27:59 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-28 10:30:00 obsr378702 S21674841 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086059 2021-03-31 04:07:46.581409 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Quaker Lake L246475 H 42.0497222 -78.8716667 2015-01-24 08:50:00 obsr34979 S21529851 Traveling P22 EBIRD 74.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289721565 2016-09-12 10:27:59 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-01 08:30:00 obsr378702 S21241109 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293721798 2021-03-24 20:56:44.139453 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-21 10:30:00 obsr378702 S21580168 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290989156 2016-09-12 10:27:59 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-12 11:00:00 obsr378702 S21343661 Stationary P21 EBIRD 390.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290988575 2016-09-12 10:27:59 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-09 09:30:00 obsr378702 S21343616 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289723540 2016-09-12 10:27:59 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-03 10:30:00 obsr378702 S21241260 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294910646 2016-09-12 10:27:59 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-31 10:00:00 obsr378702 S21674948 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292494790 2016-09-12 10:27:59 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-19 10:30:00 obsr378702 S21483437 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293722556 2016-09-12 10:27:59 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-22 10:30:00 obsr378702 S21580224 Stationary P21 EBIRD 225.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290990352 2016-09-12 10:27:59 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-13 11:30:00 obsr378702 S21343755 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723859 2016-09-12 10:27:59 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-24 10:30:00 obsr378702 S21580335 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293725571 2016-09-12 10:27:59 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-26 10:30:00 obsr378702 S21580471 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289725377 2016-09-12 10:27:59 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-05 11:00:00 obsr378702 S21241435 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292495460 2021-03-24 20:56:44.139453 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-20 10:30:00 obsr378702 S21483496 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723163 2016-09-12 10:27:59 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-23 10:30:00 obsr378702 S21580276 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS551679857 2018-10-14 21:59:05 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 Maine Hill Road (private) L4591494 P 42.224583200000005 -78.4270191 2015-01-11 16:40:00 obsr512372 S40679288 Incidental P20 EBIRD 1.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293086054 2021-03-31 04:07:46.581409 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 14 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Quaker Lake L246475 H 42.0497222 -78.8716667 2015-01-24 08:50:00 obsr34979 S21529851 Traveling P22 EBIRD 74.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293097106 2021-04-01 12:28:06.222372 662 species avibase-FB738385 Bufflehead Bucephala albeola 8 United States US New York US-NY Cattaraugus US-NY-009 13.0 Hickory Flats, Route 322, Dayton L2686527 H 42.3591782 -79.0241432 2015-01-25 09:53:00 obsr610593 S21530915 Traveling P22 EBIRD 39.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312123310 2018-08-04 16:55:10 6339 species avibase-8535345B Herring Gull Larus argentatus 10 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr760316 S23001567 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543347 2018-08-04 16:53:00 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr77889 S21308019 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289444575 2015-01-06 08:27:42 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Cayuga US-NY-011 13.0 NY 38- Stone School L3270331 P 42.8724416 -76.53917309999999 2015-01-04 12:00:00 obsr318875 S21219420 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354163 2021-03-26 06:11:29.8335 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292898163 2018-08-04 16:55:07 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 159 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-24 10:58:00 obsr75717 S21515398 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294335788 2019-11-29 17:53:52 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 15:13:00 obsr520305 S21628957 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292920616 2018-08-04 16:55:09 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:40:00 obsr75717 S21517212 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218486 2021-03-30 19:03:28.117389 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289257550 2021-03-30 19:03:28.117389 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-04 12:50:00 obsr437271 S21204654 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292891032 2021-03-26 06:11:29.8335 30494 species avibase-240E3390 House Sparrow Passer domesticus 49 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-01-24 10:30:00 obsr75717 S21514737 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355733 2018-08-04 16:55:31 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 14:43:00 obsr660965 S21630449 Stationary P21 EBIRD 7.0 2.0 1 G1131447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917446 2018-08-04 16:55:08 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:25:00 obsr455504 S21516940 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111769 2018-08-04 16:55:14 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-25 11:35:00 obsr301884 S21532080 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683092 2018-08-04 16:53:07 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr68520 S21319374 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355643 2021-03-26 06:11:29.8335 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291971035 2018-08-04 16:53:55 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake - Fall Brook (private) L1377696 P 42.832681 -76.3456749 2015-01-18 09:38:00 obsr37213 S21421856 Traveling P22 EBIRD 57.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288158594 2019-09-10 13:56:02 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 8 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-01 12:18:00 obsr223307 S21114131 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434796 2018-08-04 16:53:07 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr317741 S21299212 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288762941 2018-08-04 16:52:40 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 18 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-03 14:35:00 obsr485179 S21163999 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1095576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290162917 2018-08-04 16:53:00 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr630514 S21277064 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537548 2021-04-01 10:49:39.496318 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355695 2021-03-30 19:03:28.117389 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135198 2018-08-04 16:52:43 505 species avibase-C732CB10 American Black Duck Anas rubripes 25 United States US New York US-NY Cayuga US-NY-011 13.0 West end of Lake Rd L3134977 P 42.7103807 -76.6994619 2015-01-04 11:19:00 obsr613199 S21195614 Traveling P22 EBIRD 19.0 0.805 6.0 1 G1095922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292880533 2021-03-26 06:11:29.8335 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road north--Long Point to Lake Road bluff L1375811 P 42.728647 -76.7103856 2015-01-24 09:01:00 obsr75717 S21513779 Traveling P22 EBIRD 24.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292267671 2021-03-30 19:03:28.117389 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 4 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.34588839999999 -76.710341 2015-01-18 10:35:00 obsr705863 S21445016 Traveling P22 EBIRD 25.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355607 2021-03-24 19:23:17.886063 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469497 2018-08-04 16:53:08 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr613199 S21302063 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735227 2019-07-23 17:27:05 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292455407 2019-07-23 17:27:09 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098397 2018-08-04 16:52:40 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 19 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr465975 S21192664 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354181 2018-08-04 16:55:26 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr660965 S21630310 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292886778 2019-07-23 17:27:10 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-24 09:46:00 obsr75717 S21514316 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290985139 2018-08-04 16:53:18 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 4 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-14 13:23:00 obsr628463 S21343327 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289478047 2018-10-24 13:52:29 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-06 12:40:00 obsr335050 S21222354 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293109166 2018-08-04 16:55:13 30494 species avibase-240E3390 House Sparrow Passer domesticus 35 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-25 11:09:00 obsr301884 S21531872 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968736 2018-08-04 16:53:56 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290444977 2018-08-04 16:53:08 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr317741 S21300011 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290828833 2018-08-04 16:52:44 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-04 11:39:00 obsr520305 S21330618 Stationary P21 EBIRD 20.0 6.0 1 G1095921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324993171 2018-08-04 16:54:45 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 20 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake L3696266 P 42.7716286 -76.71069229999999 2015-01-20 09:00:00 obsr503745 S23775359 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290827437 2019-11-29 17:55:18 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 35 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: S/Long Pt SP L3289857 P 42.711757 -76.70484240000002 2015-01-04 11:28:00 obsr520305 S21330494 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653043 2019-07-23 17:27:05 505 species avibase-C732CB10 American Black Duck Anas rubripes 10 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr630514 S21397552 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219123 2018-08-04 16:55:31 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 14:43:00 obsr160104 S21619503 Stationary P21 EBIRD 7.0 2.0 1 G1131447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294150340 2018-08-04 16:55:30 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 10 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr99508 S21614279 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098318 2018-08-04 16:52:40 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 18 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-03 14:35:00 obsr465975 S21192654 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1095576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355497 2021-03-19 16:06:54.047432 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 40 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010662 2021-03-19 16:06:54.047432 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137339 2021-03-19 16:06:54.047432 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr223307 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293039742 2019-11-29 18:03:23 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 NY:CAY:Ledyard: NYS-90: Wells College boathouse L1071843 P 42.7451252 -76.7010149 2015-01-24 12:48:00 obsr520305 S21525942 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993878 2021-03-26 06:11:29.8335 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214003 2021-03-30 19:03:28.117389 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 20 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033208 2021-03-19 16:06:54.047432 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217490 2021-03-26 06:11:29.8335 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293051288 2018-08-04 16:55:10 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 10 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr151326 S21526856 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469134 2018-08-04 16:53:07 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr613199 S21302036 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764273 2018-08-04 16:52:40 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 19 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr485179 S21164107 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288992975 2018-08-04 16:52:43 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 25 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. L3278634 P 42.7105699 -76.7030239 2015-01-04 11:19:00 obsr317741 S21184357 Traveling P22 EBIRD 19.0 0.805 6.0 1 G1095922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135105 2018-08-04 16:52:44 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 18 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-04 11:39:00 obsr613199 S21195602 Stationary P21 EBIRD 20.0 6.0 1 G1095921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683520 2018-08-04 16:53:08 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr68520 S21319413 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877953 2018-08-04 16:55:05 31268 issf avibase-95F9C840 Purple Finch Haemorhous purpureus Purple Finch (Eastern) Haemorhous purpureus purpureus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-24 08:28:00 obsr75717 S21513574 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741295 2019-07-23 17:27:05 447 species avibase-C235A4D7 Gadwall Mareca strepera X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290682964 2018-08-04 16:53:07 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr68520 S21319366 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290437161 2018-08-04 16:53:07 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-11 10:58:00 obsr317741 S21299408 Traveling P22 EBIRD 7.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469250 2018-08-04 16:53:07 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr613199 S21302044 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216757 2021-03-24 19:23:17.886063 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 20 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380935 2021-03-30 19:03:28.117389 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 20 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288999517 2018-08-04 16:52:44 11494 species avibase-20C2214E American Kestrel Falco sparverius 18 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-04 11:39:00 obsr317741 S21184863 Stationary P21 EBIRD 20.0 6.0 1 G1095921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292899135 2015-01-24 20:40:49 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 10 United States US New York US-NY Cayuga US-NY-011 13.0 Ellis Rd., Levanna L1340510 H 42.7851685 -76.71619140000001 2015-01-24 11:48:00 obsr75717 S21515496 Traveling P22 EBIRD 6.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355868 2018-08-04 16:55:31 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr660965 S21630459 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026981 2021-03-30 19:03:28.117389 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 22 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869992 2019-07-23 17:27:05 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 10 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr214884 S22246816 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299327 2018-08-04 16:52:46 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-04 15:30:00 obsr318875 S21208053 Traveling P22 EBIRD 30.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294039523 2020-10-12 18:18:36 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Dorothy McIlroy Bird Sanctuary (FLLT) L295002 H 42.670086100000006 -76.2951639 2015-01-30 08:00:00 obsr68520 S21605720 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293994079 2018-08-04 16:55:26 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr160104 S21601836 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870428 2018-08-04 16:53:00 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr214884 S22246849 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288129542 2021-03-26 06:11:29.8335 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 6 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288484 2018-08-04 16:55:30 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219875 2018-08-04 16:55:31 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr160104 S21619562 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111499 2021-03-19 16:06:54.047432 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 525 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290379169 2018-08-04 16:53:07 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr317741 S21294812 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320905 2018-08-04 16:55:30 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr223307 S21627703 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216005 2021-03-19 16:06:54.047432 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 40 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294550143 2018-08-04 16:55:15 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 22 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-25 13:00:00 obsr476925 S21645814 Stationary P21 EBIRD 45.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354165 2021-03-26 06:11:29.8335 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469364 2015-01-11 17:05:25 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr613199 S21302053 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292922405 2018-01-14 21:21:32 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-24 13:57:00 obsr75717 S21517356 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293892353 2020-06-27 08:21:38 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lick St N/ NYS-90, Christmas tree farm L2207177 P 42.6485278 -76.3455176 2015-01-29 14:10:00 obsr520305 S21594135 Traveling P22 EBIRD 10.0 0.322 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870335 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr214884 S22246841 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210258 2021-03-19 16:06:54.047432 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Cayuga US-NY-011 28.0 Summerhill SF--Lick St. Christmas Tree Farm L1318052 H 42.6464402 -76.3459897 2015-01-31 09:41:00 obsr160104 S21618858 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1131430 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216024 2021-03-19 16:06:54.047432 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289031433 2019-09-10 13:56:02 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-04 13:37:00 obsr317741 S21187424 Traveling P22 EBIRD 9.0 0.805 6.0 1 G1095918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217503 2021-03-26 06:11:29.8335 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292886787 2019-07-23 17:27:10 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-24 09:46:00 obsr75717 S21514316 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111498 2021-03-19 16:06:54.047432 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291638892 2021-03-26 06:11:29.8335 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr630514 S21396396 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870005 2019-07-23 17:27:05 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr214884 S22246816 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290825871 2020-01-31 18:57:31 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-04 11:20:00 obsr520305 S21330358 Stationary P21 EBIRD 5.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292135457 2015-01-24 12:10:15 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Port Byron - 43.0418x-76.6268 - Jan 19, 2015, 2:20 PM L3303894 P 43.0418 -76.626754 2015-01-19 14:20:00 obsr464008 S21434875 Incidental P20 EBIRD 2.0 1 G1117598 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291535796 2021-03-19 16:06:54.047432 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-17 15:00:00 obsr386262 S21388272 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292455416 2019-07-23 17:27:09 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870238 2015-03-08 21:09:52 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 2 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr214884 S22246830 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869951 2015-03-08 21:09:39 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr214884 S22246815 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741287 2019-07-23 17:27:05 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288144732 2018-08-04 16:52:20 26109 species avibase-BAC33609 Brown Creeper Certhia americana 4 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-01 11:21:00 obsr223307 S21112915 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288992981 2018-08-04 16:52:43 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. L3278634 P 42.7105699 -76.7030239 2015-01-04 11:19:00 obsr317741 S21184357 Traveling P22 EBIRD 19.0 0.805 6.0 1 G1095922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521260 2020-01-31 18:57:31 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 25 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-11 11:36:00 obsr151326 S21306329 Stationary P21 EBIRD 3.0 2.0 1 G1105898 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993880 2021-03-26 06:11:29.8335 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291456912 2021-03-19 16:06:54.047432 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-17 12:30:00 obsr317741 S21381981 Stationary P21 EBIRD 15.0 2.0 1 G1112142 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288104668 2021-03-26 06:11:29.8335 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 3 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-01 08:56:00 obsr223307 S21109713 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291732576 2021-04-01 10:49:39.496318 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:30:00 obsr317741 S21403330 Traveling P22 EBIRD 20.0 0.805 7.0 1 G1114094 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543993 2015-01-11 21:18:07 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr77889 S21308076 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292899138 2015-01-24 20:40:49 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Ellis Rd., Levanna L1340510 H 42.7851685 -76.71619140000001 2015-01-24 11:48:00 obsr75717 S21515496 Traveling P22 EBIRD 6.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292186236 2018-08-04 16:54:47 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Emerson Park L354461 H 42.901996 -76.537299 2015-01-20 14:19:00 obsr232835 S21438675 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355710 2021-03-30 19:03:28.117389 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543353 2018-08-04 16:53:00 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr77889 S21308019 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290438606 2018-08-04 16:53:08 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr317741 S21299516 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354276 2021-03-19 16:06:54.047432 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3327291 P 42.70038 -76.6437 2015-01-30 11:05:00 obsr660965 S21630316 Traveling P22 EBIRD 11.0 0.483 2.0 1 G1131422 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293957306 2015-01-30 16:56:32 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3326836 P 42.70043 -76.64254 2015-01-30 08:05:00 obsr257692 S21599026 Stationary P21 EBIRD 19.0 2.0 1 G1129049 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434741 2015-01-11 17:05:25 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr317741 S21299206 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294171542 2015-01-31 15:37:41 20829 species avibase-B9B272F4 Common Raven Corvus corax 3 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 12:53:00 obsr630514 S21615952 Traveling P22 EBIRD 28.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292880538 2021-03-26 06:11:29.8335 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road north--Long Point to Lake Road bluff L1375811 P 42.728647 -76.7103856 2015-01-24 09:01:00 obsr75717 S21513779 Traveling P22 EBIRD 24.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544070 2015-01-11 21:18:21 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr77889 S21308081 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288479 2018-08-04 16:55:30 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026978 2021-03-30 19:03:28.117389 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS671437445 2020-01-31 18:57:31 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 12 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-24 16:30:00 obsr54645 S49539490 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391842 2015-01-11 21:18:07 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr630514 S21295886 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653056 2019-07-23 17:27:05 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr630514 S21397552 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288126556 2021-03-26 06:11:29.8335 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543528 2021-03-30 19:03:28.117389 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr77889 S21308038 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968750 2018-08-04 16:53:56 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299325 2018-08-04 16:52:46 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 28 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-04 15:30:00 obsr318875 S21208053 Traveling P22 EBIRD 30.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292504164 2021-04-01 10:49:39.496318 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 100 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-21 11:55:00 obsr223307 S21484189 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354519 2021-03-19 16:06:54.047432 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Cayuga US-NY-011 28.0 Summerhill SF--Lick St. Christmas Tree Farm L1318052 H 42.6464402 -76.3459897 2015-01-31 09:41:00 obsr660965 S21630348 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1131430 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294128497 2015-01-31 12:01:37 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cayuga US-NY-011 28.0 Summerhill SF--Lick St. Christmas Tree Farm L1318052 H 42.6464402 -76.3459897 2015-01-31 11:33:00 obsr630514 S21612601 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290824270 2021-04-01 10:49:39.496318 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Cayuga US-NY-011 13.0 Center Rd. L99618 H 42.6500149 -76.6246314 2015-01-04 11:00:00 obsr520305 S21330238 Traveling P22 EBIRD 10.0 0.805 6.0 1 G1095923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209370 2015-02-01 12:41:20 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt, Hoag and Dresser Rd. area L573479 H 42.6674167 -76.3267422 2015-01-31 09:49:00 obsr160104 S21618791 Traveling P22 EBIRD 16.0 1.287 2.0 1 G1131432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033212 2021-03-19 16:06:54.047432 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537527 2021-04-01 10:49:39.496318 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290444973 2018-08-04 16:53:08 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr317741 S21300011 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289147442 2018-08-04 16:52:46 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Cayuga US-NY-011 13.0 Hoopes Park L1126200 P 42.9332642 -76.5428129 2015-01-04 15:34:00 obsr232835 S21196616 Traveling P22 EBIRD 30.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010666 2021-03-19 16:06:54.047432 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293972374 2015-01-30 16:56:32 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3326836 P 42.70043 -76.64254 2015-01-30 08:05:00 obsr151326 S21600434 Stationary P21 EBIRD 19.0 2.0 1 G1129049 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218501 2021-03-30 19:03:28.117389 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291490576 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-17 12:30:00 obsr613199 S21384636 Stationary P21 EBIRD 15.0 2.0 1 G1112142 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355516 2021-03-19 16:06:54.047432 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870258 2015-03-08 21:09:53 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr214884 S22246832 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137349 2021-03-19 16:06:54.047432 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr223307 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469281 2018-08-04 16:53:08 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr613199 S21302047 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683402 2015-01-12 14:34:29 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr68520 S21319401 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354690 2021-03-19 16:06:54.047432 303 species avibase-B59E1863 Canada Goose Branta canadensis 80 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr660965 S21630374 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735219 2019-07-23 17:27:05 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116450 2015-01-01 09:52:28 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 21 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard, 1544 Lake Rd L1802598 P 42.7108 -76.69261999999999 2015-01-01 09:22:00 obsr223307 S21110527 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290830954 2019-09-10 13:56:02 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-04 13:37:00 obsr520305 S21330808 Traveling P22 EBIRD 9.0 0.805 6.0 1 G1095918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290437664 2020-01-31 18:57:31 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-11 10:24:00 obsr317741 S21299439 Stationary P21 EBIRD 4.0 12.0 1 G1105490 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214028 2021-03-30 19:03:28.117389 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 10 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290180401 2021-03-30 19:03:28.117389 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 5 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr630514 S21278516 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291706967 2015-03-08 19:37:21 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr630514 S21401294 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289134969 2019-09-10 13:56:02 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-04 13:37:00 obsr613199 S21195589 Traveling P22 EBIRD 9.0 0.805 6.0 1 G1095918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384030 2018-08-04 16:53:07 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:18:00 obsr257692 S21295238 Stationary P21 EBIRD 7.0 1.0 1 G1105900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869913 2021-03-26 06:11:29.8335 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr214884 S22246811 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683276 2018-08-04 16:53:08 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr68520 S21319389 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211186 2015-02-01 12:41:40 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Cayuga US-NY-011 28.0 Summerhill SF--Lick St. Christmas Tree Farm L1318052 H 42.6464402 -76.3459897 2015-01-31 10:56:00 obsr160104 S21618953 Traveling P22 EBIRD 13.0 0.483 2.0 1 G1131437 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216774 2021-03-24 19:23:17.886063 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 10 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292875256 2020-01-31 18:57:31 6361 issf avibase-0C55DFCC Iceland Gull Larus glaucoides Iceland Gull (kumlieni) Larus glaucoides kumlieni 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-24 08:21:00 obsr75717 S21513337 Traveling P22 EBIRD 3.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355623 2021-03-24 19:23:17.886063 456 species avibase-D201EB72 American Wigeon Mareca americana 10 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211936 2021-03-19 16:06:54.047432 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 80 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr160104 S21619012 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355656 2021-03-26 06:11:29.8335 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288427444 2015-01-02 09:47:38 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 13 United States US New York US-NY Cayuga US-NY-011 13.0 Backyard Haven L758893 P 42.9395754 -76.5754192 2015-01-01 08:11:00 obsr232835 S21136347 Stationary P21 EBIRD 15.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354569 2015-02-01 12:41:20 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt, Hoag and Dresser Rd. area L573479 H 42.6674167 -76.3267422 2015-01-31 09:49:00 obsr660965 S21630356 Traveling P22 EBIRD 16.0 1.287 2.0 1 G1131432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291971039 2018-08-04 16:53:55 622 species avibase-50566E50 Lesser Scaup Aythya affinis 5 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake - Fall Brook (private) L1377696 P 42.832681 -76.3456749 2015-01-18 09:38:00 obsr37213 S21421856 Traveling P22 EBIRD 57.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993299 2021-03-26 06:11:29.8335 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 4 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr160104 S21601821 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294381081 2018-12-04 21:19:16 337 species avibase-694C127A Mute Swan Cygnus olor 300 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3327291 P 42.70038 -76.6437 2015-01-31 11:43:00 obsr660965 S21632385 Stationary P21 EBIRD 19.0 2.0 1 G1131562 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294133383 2016-07-19 14:06:08 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt Rd. L366919 H 42.6564028 -76.3262996 2015-01-31 12:14:00 obsr630514 S21612989 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289025 2021-03-19 16:06:54.047432 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: forest N/Long Pt SP L3330817 P 42.7218766 -76.7081952 2015-01-31 14:14:00 obsr520305 S21625110 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877964 2018-08-04 16:55:05 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-24 08:28:00 obsr75717 S21513574 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288986679 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Center Rd. L99618 H 42.6500149 -76.6246314 2015-01-04 11:00:00 obsr317741 S21183723 Traveling P22 EBIRD 10.0 0.805 6.0 1 G1095923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292882063 2018-08-04 16:55:06 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-24 09:32:00 obsr75717 S21513915 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210934 2021-03-26 06:11:29.8335 30494 species avibase-240E3390 House Sparrow Passer domesticus 20 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293994157 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3327291 P 42.70038 -76.6437 2015-01-30 11:05:00 obsr160104 S21601874 Traveling P22 EBIRD 11.0 0.483 2.0 1 G1131422 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294527090 2021-03-31 03:59:50.422612 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard Road L3333894 P 42.7003994 -76.64253470000001 2015-01-31 13:00:00 obsr493483 S21643868 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741221 2021-04-01 10:49:39.496318 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:30:00 obsr613199 S21404051 Traveling P22 EBIRD 20.0 0.805 7.0 1 G1114094 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469077 2020-01-31 18:57:31 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-11 10:24:00 obsr613199 S21302033 Stationary P21 EBIRD 4.0 12.0 1 G1105490 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288150092 2018-08-04 16:52:21 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-01 11:41:00 obsr223307 S21113445 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469493 2018-08-04 16:53:08 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr613199 S21302063 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294154355 2015-01-31 14:15:04 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como #1291 E Lake Rd L1808836 P 42.679629 -76.301994 2015-01-31 13:27:00 obsr630514 S21614577 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354626 2021-03-26 06:11:29.8335 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 20 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287597 2019-11-29 17:55:18 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: S/Long Pt SP L3289857 P 42.711757 -76.70484240000002 2015-01-31 13:19:00 obsr520305 S21625018 Traveling P22 EBIRD 7.0 0.8690000000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135366 2021-04-01 10:49:39.496318 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Cayuga US-NY-011 13.0 Center Rd. L99618 H 42.6500149 -76.6246314 2015-01-04 11:00:00 obsr613199 S21195622 Traveling P22 EBIRD 10.0 0.805 6.0 1 G1095923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289480988 2015-01-06 13:05:52 592 species avibase-3072CC16 Redhead Aythya americana 6 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Sterling - 43.3548x-76.6499 - Jan 6, 2015, 1:05 PM L3270876 P 43.354796 -76.649929 2015-01-06 13:05:00 obsr335050 S21222591 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290162923 2018-08-04 16:53:00 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr630514 S21277064 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293268997 2020-01-31 18:57:31 681 species avibase-407E2CA8 Common Merganser Mergus merganser 20 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-24 14:57:00 obsr75717 S21544233 Traveling P22 EBIRD 3.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293109175 2018-08-04 16:55:13 6339 species avibase-8535345B Herring Gull Larus argentatus 200 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-25 11:09:00 obsr301884 S21531872 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290405041 2021-04-01 10:49:39.496318 599 hybrid avibase-DD5213C7 Redhead x Ring-necked Duck (hybrid) Aythya americana x collaris 5 United States US New York US-NY Cayuga US-NY-011 13.0 Irwin Road L372903 P 43.3938222 -76.63066859999999 2015-01-11 13:00:00 obsr385404 S21296879 Traveling P22 EBIRD 8.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870434 2018-08-04 16:53:00 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr214884 S22246849 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683516 2018-08-04 16:53:08 31530 species avibase-B48335B1 Pine Siskin Spinus pinus X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr68520 S21319413 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521291 2018-08-04 16:53:08 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 3 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:18:00 obsr151326 S21306332 Stationary P21 EBIRD 7.0 1.0 1 G1105900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293924483 2021-03-24 19:23:17.886063 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-29 10:00:00 obsr486113 S21596457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211509 2018-12-04 21:19:16 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 300 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3327291 P 42.70038 -76.6437 2015-01-31 11:43:00 obsr160104 S21618973 Stationary P21 EBIRD 19.0 2.0 1 G1131562 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380960 2021-03-30 19:03:28.117389 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354642 2015-02-01 12:41:40 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Cayuga US-NY-011 28.0 Summerhill SF--Lick St. Christmas Tree Farm L1318052 H 42.6464402 -76.3459897 2015-01-31 10:56:00 obsr660965 S21630365 Traveling P22 EBIRD 13.0 0.483 2.0 1 G1131437 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135204 2018-08-04 16:52:43 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 West end of Lake Rd L3134977 P 42.7103807 -76.6994619 2015-01-04 11:19:00 obsr613199 S21195614 Traveling P22 EBIRD 19.0 0.805 6.0 1 G1095922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289464449 2021-03-24 19:23:17.886063 1375 species avibase-4B9EEF56 Ring-necked Pheasant Phasianus colchicus 5 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Cato-11126 South St L3270600 P 43.155871000000005 -76.570162 2015-01-06 11:18:00 obsr335050 S21221122 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291945267 2015-01-24 12:10:15 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Port Byron - 43.0418x-76.6268 - Jan 19, 2015, 2:20 PM L3303894 P 43.0418 -76.626754 2015-01-19 14:20:00 obsr279500 S21419699 Incidental P20 EBIRD 2.0 1 G1117598 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293104957 2021-04-01 10:49:39.496318 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco - Reynolds Rd. L631459 P 42.8693593 -76.4608526 2015-01-04 11:15:00 obsr37213 S21531559 Traveling P22 EBIRD 43.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116133 2021-04-01 10:49:39.496318 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 390 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354134 2021-03-26 06:11:29.8335 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr660965 S21630306 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290996201 2019-09-10 13:56:02 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-14 14:32:00 obsr628463 S21344280 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289444916 2015-01-06 08:32:01 6339 species avibase-8535345B Herring Gull Larus argentatus 150 United States US New York US-NY Cayuga US-NY-011 13.0 Mobbs Road L3270333 P 42.880492700000005 -76.563549 2015-01-04 10:30:00 obsr318875 S21219450 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290682956 2020-01-31 18:57:31 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-11 10:24:00 obsr68520 S21319364 Stationary P21 EBIRD 4.0 12.0 1 G1105490 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293890517 2019-11-29 18:27:29 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lake Como Rd: Lane E: #1196 L3326108 P 42.6759534 -76.3046327 2015-01-29 11:50:00 obsr520305 S21594008 Traveling P22 EBIRD 52.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290616706 2021-03-26 06:11:29.8335 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-12 08:26:00 obsr630514 S21313323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290386804 2020-01-31 18:57:31 591 species avibase-1929E1E1 Canvasback Aythya valisineria 25 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-11 11:36:00 obsr257692 S21295467 Stationary P21 EBIRD 3.0 2.0 1 G1105898 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391666 2015-01-11 21:18:21 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr630514 S21295872 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539664 2021-03-19 16:06:54.047432 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-17 15:40:00 obsr386262 S21388589 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216035 2021-03-19 16:06:54.047432 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289444914 2015-01-06 08:32:01 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Cayuga US-NY-011 13.0 Mobbs Road L3270333 P 42.880492700000005 -76.563549 2015-01-04 10:30:00 obsr318875 S21219450 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355658 2021-03-26 06:11:29.8335 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116144 2021-04-01 10:49:39.496318 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293924492 2021-03-24 19:23:17.886063 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-29 10:00:00 obsr486113 S21596457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544078 2015-01-11 21:18:21 1806 species avibase-32DCEC14 Eared Grebe Podiceps nigricollis 20 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr77889 S21308081 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380968 2021-03-30 19:03:28.117389 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294153025 2020-05-02 15:38:26 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 9 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-31 13:33:00 obsr595883 S21614483 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026976 2021-03-30 19:03:28.117389 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294154363 2015-01-31 14:15:04 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 26 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como #1291 E Lake Rd L1808836 P 42.679629 -76.301994 2015-01-31 13:27:00 obsr630514 S21614577 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870246 2015-03-08 21:09:52 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 20 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr214884 S22246830 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292272311 2015-01-21 10:40:21 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-18 11:30:00 obsr705863 S21445072 Traveling P22 EBIRD 30.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557562 2020-05-02 15:38:26 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-27 13:03:00 obsr595883 S21567472 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288104673 2021-03-26 06:11:29.8335 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 8 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-01 08:56:00 obsr223307 S21109713 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354638 2021-03-26 06:11:29.8335 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 45 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354175 2021-03-26 06:11:29.8335 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289464455 2021-03-24 19:23:17.886063 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 3 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Cato-11126 South St L3270600 P 43.155871000000005 -76.570162 2015-01-06 11:18:00 obsr335050 S21221122 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289022 2021-03-19 16:06:54.047432 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: forest N/Long Pt SP L3330817 P 42.7218766 -76.7081952 2015-01-31 14:14:00 obsr520305 S21625110 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869958 2015-03-08 21:09:39 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr214884 S22246815 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355527 2021-03-19 16:06:54.047432 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210946 2021-03-26 06:11:29.8335 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 45 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391674 2015-01-11 21:18:21 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 20 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr630514 S21295872 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294039875 2021-03-24 19:23:17.886063 30494 species avibase-240E3390 House Sparrow Passer domesticus 50 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-30 08:45:00 obsr68520 S21605751 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293890518 2019-11-29 18:27:29 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 80 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lake Como Rd: Lane E: #1196 L3326108 P 42.6759534 -76.3046327 2015-01-29 11:50:00 obsr520305 S21594008 Traveling P22 EBIRD 52.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214036 2021-03-30 19:03:28.117389 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294171545 2015-01-31 15:37:41 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 90 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 12:53:00 obsr630514 S21615952 Traveling P22 EBIRD 28.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289482476 2015-01-06 13:16:15 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Sterling - 43.3687x-76.6503 - Jan 6, 2015, 1:13 PM L3270901 P 43.368744 -76.650251 2015-01-06 13:13:00 obsr335050 S21222729 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216783 2021-03-24 19:23:17.886063 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217505 2021-03-26 06:11:29.8335 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993890 2021-03-26 06:11:29.8335 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294264687 2021-03-24 19:23:17.886063 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-31 obsr486113 S21623325 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288129540 2021-03-26 06:11:29.8335 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291706973 2015-03-08 19:37:21 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr630514 S21401294 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537534 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355632 2021-03-24 19:23:17.886063 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293903508 2015-01-29 19:13:49 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lake Como:E Lake Rd 1285 L2589477 P 42.67978170000001 -76.3022717 2015-01-29 12:50:00 obsr520305 S21594914 Stationary P21 EBIRD 5.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288763940 2021-03-19 16:06:54.047432 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-03 14:44:00 obsr485179 S21164081 Traveling P22 EBIRD 2.0 0.805 2.0 1 G1095573 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290387649 2017-08-16 16:19:00 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard, 1559 Highway 90 L2088157 P 42.69262 -76.66757 2015-01-11 11:43:00 obsr257692 S21295555 Incidental P20 EBIRD 2.0 0 G1105896 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288706448 2015-01-03 11:15:57 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 McDonald Road L1155399 P 42.9731688 -76.61983790000001 2015-01-02 14:03:00 obsr232835 S21159548 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292875255 2020-01-31 18:57:31 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-24 08:21:00 obsr75717 S21513337 Traveling P22 EBIRD 3.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291740871 2015-01-18 17:30:13 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Rte 90 south of Long Pt Winery L3300942 P 42.70691179999999 -76.6787338 2015-01-18 12:15:00 obsr613199 S21404026 Incidental P20 EBIRD 3.0 0 G1114090 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291674697 2015-01-18 17:30:13 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Rte 90 south of Long Pt Winery L3300942 P 42.70691179999999 -76.6787338 2015-01-18 12:15:00 obsr317741 S21398957 Incidental P20 EBIRD 3.0 0 G1114090 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521254 2017-08-16 16:19:00 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard, 1559 Highway 90 L2088157 P 42.69262 -76.66757 2015-01-11 11:43:00 obsr151326 S21306326 Incidental P20 EBIRD 2.0 0 G1105896 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098133 2021-03-19 16:06:54.047432 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-03 14:44:00 obsr465975 S21192639 Traveling P22 EBIRD 2.0 0.805 2.0 1 G1095573 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292504166 2021-04-01 10:49:39.496318 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-21 11:55:00 obsr223307 S21484189 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291643527 2015-03-08 19:43:20 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard Rd. L1173829 P 42.7041367 -76.66706090000001 2015-01-18 12:15:00 obsr630514 S21396765 Incidental P20 EBIRD 3.0 1 G1171083 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869866 2015-03-08 21:09:33 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard Rd. L1173829 P 42.7041367 -76.66706090000001 2015-01-18 12:15:00 obsr214884 S22246809 Incidental P20 EBIRD 3.0 1 G1171083 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290826399 2019-11-29 18:04:57 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: NYS-90: Aurora Shoe Co, S/Ledyard Rd L2203904 P 42.7002811 -76.6730046 2015-01-04 11:18:00 obsr520305 S21330400 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026984 2021-03-30 19:03:28.117389 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 10 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172897 2021-04-01 10:49:39.496318 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr630514 S21277920 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870392 2021-04-01 10:49:39.496318 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr214884 S22246845 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543394 2021-04-01 10:49:39.496318 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr77889 S21308024 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917452 2018-08-04 16:55:08 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:25:00 obsr455504 S21516940 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288160206 2019-09-10 13:56:02 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-01 12:18:00 obsr223307 S21114131 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299320 2018-08-04 16:52:46 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-04 15:30:00 obsr318875 S21208053 Traveling P22 EBIRD 30.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293959396 2018-08-04 16:55:25 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 08:42:00 obsr257692 S21599183 Stationary P21 EBIRD 5.0 2.0 1 G1129048 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033216 2021-03-19 16:06:54.047432 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543385 2021-04-01 10:49:39.496318 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr77889 S21308024 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870383 2021-04-01 10:49:39.496318 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr214884 S22246845 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290830938 2019-11-29 18:22:33 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Union Springs: Mill Pond, NYS-90 L1301373 P 42.8451859 -76.6912597 2015-01-04 12:56:00 obsr520305 S21330804 Stationary P21 EBIRD 5.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380934 2021-03-30 19:03:28.117389 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135081 2018-08-04 16:52:44 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-04 12:55:00 obsr613199 S21195600 Stationary P21 EBIRD 4.0 6.0 1 G1095920 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288150086 2018-08-04 16:52:21 483 species avibase-85625D75 Mallard Anas platyrhynchos 15 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-01 11:41:00 obsr223307 S21113445 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293972370 2018-08-04 16:55:25 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 08:42:00 obsr151326 S21600433 Stationary P21 EBIRD 5.0 2.0 1 G1129048 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355732 2018-08-04 16:55:31 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 6 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 14:43:00 obsr660965 S21630449 Stationary P21 EBIRD 7.0 2.0 1 G1131447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290982440 2018-08-04 16:53:18 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 15 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-14 13:13:00 obsr628463 S21343142 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289019248 2018-08-04 16:52:44 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-04 12:55:00 obsr317741 S21186459 Stationary P21 EBIRD 4.0 6.0 1 G1095920 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293116324 2018-08-04 16:55:14 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-25 11:58:00 obsr301884 S21532441 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289066675 2018-08-04 16:52:46 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 12 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-04 15:15:00 obsr630514 S21190004 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294133282 2018-08-04 16:55:29 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 15 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 12:20:00 obsr99508 S21612977 Stationary P21 EBIRD 8.0 1.0 1 G1131260 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543373 2018-08-04 16:53:01 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 40 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr77889 S21308022 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290444969 2018-08-04 16:53:08 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr317741 S21300011 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870400 2018-08-04 16:53:01 337 species avibase-694C127A Mute Swan Cygnus olor 40 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr214884 S22246846 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292030408 2021-03-19 16:06:54.047432 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214002 2021-03-30 19:03:28.117389 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292537033 2018-08-04 16:54:50 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Cayuga US-NY-011 13.0 Mill Pond L1057399 P 42.844821200000005 -76.6919732 2015-01-21 15:41:00 obsr232835 S21486831 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288705310 2018-08-04 16:52:30 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Mill Pond L1057399 P 42.844821200000005 -76.6919732 2015-01-02 11:53:00 obsr232835 S21159449 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172920 2018-08-04 16:53:01 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 40 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr630514 S21277927 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683512 2018-08-04 16:53:08 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr68520 S21319413 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320460 2018-08-04 16:55:29 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 15 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 12:20:00 obsr223307 S21627679 Stationary P21 EBIRD 8.0 1.0 1 G1131260 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354120 2021-03-26 06:11:29.8335 30494 species avibase-240E3390 House Sparrow Passer domesticus 21 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr660965 S21630306 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469489 2018-08-04 16:53:08 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr613199 S21302063 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172888 2021-04-01 10:49:39.496318 592 species avibase-3072CC16 Redhead Aythya americana 6 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr630514 S21277920 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917445 2018-08-04 16:55:08 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:25:00 obsr455504 S21516940 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292920615 2018-08-04 16:55:09 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:40:00 obsr75717 S21517212 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288470 2018-08-04 16:55:30 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293992851 2021-03-26 06:11:29.8335 279 species avibase-3E04020B Brant Branta bernicla 21 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr160104 S21601821 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219122 2018-08-04 16:55:31 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 14:43:00 obsr160104 S21619503 Stationary P21 EBIRD 7.0 2.0 1 G1131447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293104960 2021-04-01 10:49:39.496318 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco - Reynolds Rd. L631459 P 42.8693593 -76.4608526 2015-01-04 11:15:00 obsr37213 S21531559 Traveling P22 EBIRD 43.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294264686 2021-03-24 19:23:17.886063 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-31 obsr486113 S21623325 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292504169 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-21 11:55:00 obsr223307 S21484189 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210940 2021-03-26 06:11:29.8335 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 10 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289482473 2015-01-06 13:16:15 662 species avibase-FB738385 Bufflehead Bucephala albeola 20 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Sterling - 43.3687x-76.6503 - Jan 6, 2015, 1:13 PM L3270901 P 43.368744 -76.650251 2015-01-06 13:13:00 obsr335050 S21222729 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993876 2021-03-26 06:11:29.8335 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294153021 2020-05-02 15:38:26 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-31 13:33:00 obsr595883 S21614483 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291706972 2015-03-08 19:37:21 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr630514 S21401294 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354693 2021-03-19 16:06:54.047432 591 species avibase-1929E1E1 Canvasback Aythya valisineria 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr660965 S21630374 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320910 2018-08-04 16:55:30 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr223307 S21627703 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354124 2021-03-26 06:11:29.8335 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr660965 S21630306 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116454 2015-01-01 09:52:28 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard, 1544 Lake Rd L1802598 P 42.7108 -76.69261999999999 2015-01-01 09:22:00 obsr223307 S21110527 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289257558 2021-03-30 19:03:28.117389 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-04 12:50:00 obsr437271 S21204654 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993289 2021-03-26 06:11:29.8335 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr160104 S21601821 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294323071 2015-02-01 10:16:10 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-King Ferry-815-817 Lake Rd L3329186 P 42.662618 -76.63815600000001 2015-01-31 14:12:00 obsr223307 S21627910 Stationary P21 EBIRD 1.0 1.0 1 G1131275 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354521 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 28.0 Summerhill SF--Lick St. Christmas Tree Farm L1318052 H 42.6464402 -76.3459897 2015-01-31 09:41:00 obsr660965 S21630348 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1131430 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544073 2015-01-11 21:18:21 27616 species avibase-D77E4B41 American Robin Turdus migratorius 12 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr77889 S21308081 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354572 2015-02-01 12:41:20 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt, Hoag and Dresser Rd. area L573479 H 42.6674167 -76.3267422 2015-01-31 09:49:00 obsr660965 S21630356 Traveling P22 EBIRD 16.0 1.287 2.0 1 G1131432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557558 2020-05-02 15:38:26 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-27 13:03:00 obsr595883 S21567472 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294150345 2018-08-04 16:55:30 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr99508 S21614279 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294133387 2016-07-19 14:06:08 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt Rd. L366919 H 42.6564028 -76.3262996 2015-01-31 12:14:00 obsr630514 S21612989 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293924482 2021-03-24 19:23:17.886063 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-29 10:00:00 obsr486113 S21596457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294160814 2015-02-01 10:16:10 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-King Ferry-815-817 Lake Rd L3329186 P 42.662618 -76.63815600000001 2015-01-31 14:12:00 obsr99508 S21615164 Stationary P21 EBIRD 1.0 1.0 1 G1131275 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293903506 2015-01-29 19:13:49 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lake Como:E Lake Rd 1285 L2589477 P 42.67978170000001 -76.3022717 2015-01-29 12:50:00 obsr520305 S21594914 Stationary P21 EBIRD 5.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287595 2019-11-29 17:55:18 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: S/Long Pt SP L3289857 P 42.711757 -76.70484240000002 2015-01-31 13:19:00 obsr520305 S21625018 Traveling P22 EBIRD 7.0 0.8690000000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294029054 2020-05-02 15:38:26 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-30 16:10:00 obsr595883 S21604821 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354632 2021-03-26 06:11:29.8335 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289480989 2015-01-06 13:05:52 616 species avibase-25C94A8F Greater Scaup Aythya marila 14 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Sterling - 43.3548x-76.6499 - Jan 6, 2015, 1:05 PM L3270876 P 43.354796 -76.649929 2015-01-06 13:05:00 obsr335050 S21222591 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391669 2015-01-11 21:18:21 303 species avibase-B59E1863 Canada Goose Branta canadensis 12 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr630514 S21295872 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292272310 2015-01-21 10:40:21 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 11 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-18 11:30:00 obsr705863 S21445072 Traveling P22 EBIRD 30.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216780 2021-03-24 19:23:17.886063 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211939 2021-03-19 16:06:54.047432 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr160104 S21619012 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480064 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 23 United States US New York US-NY Cayuga US-NY-011 13.0 McFarland Road L792888 P 43.3699926 -76.6313553 2015-01-11 13:18:00 obsr385404 S21302955 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355629 2021-03-24 19:23:17.886063 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210260 2021-03-19 16:06:54.047432 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Cayuga US-NY-011 28.0 Summerhill SF--Lick St. Christmas Tree Farm L1318052 H 42.6464402 -76.3459897 2015-01-31 09:41:00 obsr160104 S21618858 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1131430 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537540 2021-04-01 10:49:39.496318 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380963 2021-03-30 19:03:28.117389 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292704309 2015-01-22 22:17:14 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-22 15:45:00 obsr542235 S21500024 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355522 2021-03-19 16:06:54.047432 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 6 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288150095 2018-08-04 16:52:21 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-01 11:41:00 obsr223307 S21113445 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294154359 2015-01-31 14:15:04 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 24 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como #1291 E Lake Rd L1808836 P 42.679629 -76.301994 2015-01-31 13:27:00 obsr630514 S21614577 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354161 2021-03-26 06:11:29.8335 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289464452 2021-03-24 19:23:17.886063 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Cato-11126 South St L3270600 P 43.155871000000005 -76.570162 2015-01-06 11:18:00 obsr335050 S21221122 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288126560 2021-03-26 06:11:29.8335 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209373 2015-02-01 12:41:20 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt, Hoag and Dresser Rd. area L573479 H 42.6674167 -76.3267422 2015-01-31 09:49:00 obsr160104 S21618791 Traveling P22 EBIRD 16.0 1.287 2.0 1 G1131432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292455418 2019-07-23 17:27:09 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 5 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870241 2015-03-08 21:09:52 26890 species avibase-94A44032 European Starling Sturnus vulgaris 12 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr214884 S22246830 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288104670 2021-03-26 06:11:29.8335 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 9 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-01 08:56:00 obsr223307 S21109713 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869957 2015-03-08 21:09:39 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr214884 S22246815 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216030 2021-03-19 16:06:54.047432 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214031 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290405042 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Irwin Road L372903 P 43.3938222 -76.63066859999999 2015-01-11 13:00:00 obsr385404 S21296879 Traveling P22 EBIRD 8.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968743 2018-08-04 16:53:56 8157 spuh avibase-E91E7830 Buteo sp. Buteo sp. 10 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026998 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289465629 2017-04-14 15:31:12 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Cayuga US-NY-011 13.0 Cato to Victory-NY-370 L5516856 P 43.167463 -76.58466999999999 2015-01-06 11:24:00 obsr335050 S21221200 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292536287 2018-07-26 14:58:33 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora--Paines Creek mouth L1172078 H 42.7377775 -76.7026377 2015-01-21 14:22:00 obsr232835 S21486761 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291971038 2018-08-04 16:53:55 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake - Fall Brook (private) L1377696 P 42.832681 -76.3456749 2015-01-18 09:38:00 obsr37213 S21421856 Traveling P22 EBIRD 57.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683099 2018-08-04 16:53:07 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr68520 S21319374 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355618 2021-03-24 19:23:17.886063 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434736 2015-01-11 17:05:25 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr317741 S21299206 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290180399 2021-03-30 19:03:28.117389 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 2 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr630514 S21278516 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741286 2019-07-23 17:27:05 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219882 2018-08-04 16:55:31 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr160104 S21619562 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290996199 2019-09-10 13:56:02 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-14 14:32:00 obsr628463 S21344280 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033210 2021-03-19 16:06:54.047432 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380951 2021-03-30 19:03:28.117389 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291655286 2015-03-08 19:36:41 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-18 13:13:00 obsr630514 S21397715 Incidental P20 EBIRD 3.0 1 G1171060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539662 2021-03-19 16:06:54.047432 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-17 15:40:00 obsr386262 S21388589 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355510 2021-03-19 16:06:54.047432 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010664 2021-03-19 16:06:54.047432 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290831562 2019-09-10 13:56:02 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-04 00:38:00 obsr520305 S21330855 Stationary P21 EBIRD 3.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294335778 2019-11-29 17:53:52 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 15:13:00 obsr520305 S21628957 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292051013 2015-01-19 22:47:01 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Weedsport - 43.0645x-76.5490 - Jan 19, 2015, 10:54 AM L3303406 P 43.064494 -76.549026 2015-01-19 10:54:00 obsr628463 S21428095 Incidental P20 EBIRD 1.0 1 G1116651 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292266446 2021-03-26 06:11:29.8335 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 Unknown Sex, Adult (1) United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-18 08:45:00 obsr705863 S21444552 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289478049 2018-10-24 13:52:29 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-06 12:40:00 obsr335050 S21222354 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434514 2018-08-04 16:53:07 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:00:00 obsr378414 S21299184 Stationary P21 EBIRD 20.0 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469257 2018-08-04 16:53:07 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr613199 S21302044 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735218 2019-07-23 17:27:05 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291890864 2015-01-19 22:47:01 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Weedsport - 43.0645x-76.5490 - Jan 19, 2015, 10:54 AM L3303406 P 43.064494 -76.549026 2015-01-19 10:54:00 obsr531382 S21415401 Incidental P20 EBIRD 1.0 1 G1116651 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289031432 2019-09-10 13:56:02 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-04 13:37:00 obsr317741 S21187424 Traveling P22 EBIRD 9.0 0.805 6.0 1 G1095918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218497 2021-03-30 19:03:28.117389 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355706 2021-03-30 19:03:28.117389 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355875 2018-08-04 16:55:31 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr660965 S21630459 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293043714 2019-11-29 18:02:50 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: NYS-90: Hilltop Farm, .6mi N/Levanna Rd L3315324 P 42.7932779 -76.7117035 2015-01-24 13:24:00 obsr520305 S21526236 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870333 2021-03-30 19:03:28.117389 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 2 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr214884 S22246841 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290830953 2019-09-10 13:56:02 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-04 13:37:00 obsr520305 S21330808 Traveling P22 EBIRD 9.0 0.805 6.0 1 G1095918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214019 2021-03-30 19:03:28.117389 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683397 2015-01-12 14:34:29 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 3 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr68520 S21319401 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521289 2018-08-04 16:53:08 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 Unknown Sex, Adult (1) United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:18:00 obsr151326 S21306332 Stationary P21 EBIRD 7.0 1.0 1 G1105900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543526 2021-03-30 19:03:28.117389 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr77889 S21308038 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216769 2021-03-24 19:23:17.886063 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384028 2018-08-04 16:53:07 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 Unknown Sex, Adult (1) United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:18:00 obsr257692 S21295238 Stationary P21 EBIRD 7.0 1.0 1 G1105900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537554 2021-04-01 10:49:39.496318 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289134968 2019-09-10 13:56:02 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-04 13:37:00 obsr613199 S21195589 Traveling P22 EBIRD 9.0 0.805 6.0 1 G1095918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216018 2021-03-19 16:06:54.047432 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968747 2018-08-04 16:53:56 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469359 2015-01-11 17:05:25 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr613199 S21302053 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869864 2015-03-08 21:09:32 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 1 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-18 13:13:00 obsr214884 S22246808 Incidental P20 EBIRD 3.0 1 G1171060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291205648 2015-01-15 20:51:30 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Aurelius: Mud Lock L2333460 P 42.9466119 -76.73388809999999 2015-01-15 13:37:00 obsr520305 S21361513 Stationary P21 EBIRD 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434803 2018-08-04 16:53:07 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr317741 S21299212 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292925983 2021-03-26 06:11:29.8335 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 11 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Harbor Marina (private) L632907 H 42.8396606 -76.69735909999999 2015-01-24 14:03:00 obsr75717 S21517633 Stationary P21 EBIRD 18.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291706968 2015-03-08 19:37:21 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 7 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr630514 S21401294 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289257546 2015-01-05 10:10:29 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-04 14:15:00 obsr437271 S21204652 Traveling P22 EBIRD 25.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288150093 2018-08-04 16:52:21 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-01 11:41:00 obsr223307 S21113445 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543392 2021-04-01 10:49:39.496318 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr77889 S21308024 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290479192 2021-04-01 10:49:39.496318 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Cayuga US-NY-011 13.0 Irwin Road L372903 P 43.3938222 -76.63066859999999 2015-01-11 13:00:00 obsr385404 S21296879 Traveling P22 EBIRD 8.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289021 2021-03-19 16:06:54.047432 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: forest N/Long Pt SP L3330817 P 42.7218766 -76.7081952 2015-01-31 14:14:00 obsr520305 S21625110 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380961 2021-03-30 19:03:28.117389 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 12 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354171 2021-03-26 06:11:29.8335 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294154356 2015-01-31 14:15:04 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 14 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como #1291 E Lake Rd L1808836 P 42.679629 -76.301994 2015-01-31 13:27:00 obsr630514 S21614577 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294171543 2015-01-31 15:37:41 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 20 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 12:53:00 obsr630514 S21615952 Traveling P22 EBIRD 28.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993294 2021-03-26 06:11:29.8335 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr160104 S21601821 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391843 2015-01-11 21:18:07 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 14 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr630514 S21295886 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870390 2021-04-01 10:49:39.496318 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr214884 S22246845 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294381003 2021-03-19 16:06:54.047432 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr660965 S21632370 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869953 2015-03-08 21:09:39 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr214884 S22246815 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870259 2015-03-08 21:09:53 303 species avibase-B59E1863 Canada Goose Branta canadensis 14 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr214884 S22246832 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355624 2021-03-24 19:23:17.886063 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294153018 2020-05-02 15:38:26 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-31 13:33:00 obsr595883 S21614483 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172895 2021-04-01 10:49:39.496318 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr630514 S21277920 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557555 2020-05-02 15:38:26 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 5 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-27 13:03:00 obsr595883 S21567472 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294133384 2016-07-19 14:06:08 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 12 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt Rd. L366919 H 42.6564028 -76.3262996 2015-01-31 12:14:00 obsr630514 S21612989 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216025 2021-03-19 16:06:54.047432 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116139 2021-04-01 10:49:39.496318 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211187 2015-02-01 12:41:40 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Cayuga US-NY-011 28.0 Summerhill SF--Lick St. Christmas Tree Farm L1318052 H 42.6464402 -76.3459897 2015-01-31 10:56:00 obsr160104 S21618953 Traveling P22 EBIRD 13.0 0.483 2.0 1 G1131437 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294264684 2021-03-24 19:23:17.886063 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-31 obsr486113 S21623325 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292272306 2015-01-21 10:40:21 8099 form avibase-65613235 Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (abieticola) Buteo jamaicensis abieticola 2 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-18 11:30:00 obsr705863 S21445072 Traveling P22 EBIRD 30.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355711 2021-03-30 19:03:28.117389 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289464450 2021-03-24 19:23:17.886063 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Cato-11126 South St L3270600 P 43.155871000000005 -76.570162 2015-01-06 11:18:00 obsr335050 S21221122 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354628 2021-03-26 06:11:29.8335 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 30 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209371 2015-02-01 12:41:20 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 8 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt, Hoag and Dresser Rd. area L573479 H 42.6674167 -76.3267422 2015-01-31 09:49:00 obsr160104 S21618791 Traveling P22 EBIRD 16.0 1.287 2.0 1 G1131432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993886 2021-03-26 06:11:29.8335 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288126557 2021-03-26 06:11:29.8335 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292455417 2019-07-23 17:27:09 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294039526 2020-10-12 18:18:36 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Dorothy McIlroy Bird Sanctuary (FLLT) L295002 H 42.670086100000006 -76.2951639 2015-01-30 08:00:00 obsr68520 S21605720 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543994 2015-01-11 21:18:07 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 14 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr77889 S21308076 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354643 2015-02-01 12:41:40 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 28.0 Summerhill SF--Lick St. Christmas Tree Farm L1318052 H 42.6464402 -76.3459897 2015-01-31 10:56:00 obsr660965 S21630365 Traveling P22 EBIRD 13.0 0.483 2.0 1 G1131437 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391667 2015-01-11 21:18:21 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 10 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr630514 S21295872 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288469 2018-08-04 16:55:30 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210936 2021-03-26 06:11:29.8335 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 30 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209447 2015-02-01 12:41:26 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-31 10:07:00 obsr160104 S21618804 Stationary P21 EBIRD 4.0 2.0 1 G1131434 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354129 2021-03-26 06:11:29.8335 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr660965 S21630306 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291971040 2018-08-04 16:53:55 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 5 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake - Fall Brook (private) L1377696 P 42.832681 -76.3456749 2015-01-18 09:38:00 obsr37213 S21421856 Traveling P22 EBIRD 57.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293924481 2021-03-24 19:23:17.886063 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-29 10:00:00 obsr486113 S21596457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219198 2021-03-19 16:06:54.047432 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr160104 S21619509 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544071 2015-01-11 21:18:21 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr77889 S21308081 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292704312 2015-01-22 22:17:14 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-22 15:45:00 obsr542235 S21500024 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218502 2021-03-30 19:03:28.117389 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292504175 2021-04-01 10:49:39.496318 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-21 11:55:00 obsr223307 S21484189 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354618 2015-02-01 12:41:26 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-31 10:07:00 obsr660965 S21630361 Stationary P21 EBIRD 4.0 2.0 1 G1131434 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294039873 2021-03-24 19:23:17.886063 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 9 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-30 08:45:00 obsr68520 S21605751 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116451 2015-01-01 09:52:28 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard, 1544 Lake Rd L1802598 P 42.7108 -76.69261999999999 2015-01-01 09:22:00 obsr223307 S21110527 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293890512 2019-11-29 18:27:29 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 10 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lake Como Rd: Lane E: #1196 L3326108 P 42.6759534 -76.3046327 2015-01-29 11:50:00 obsr520305 S21594008 Traveling P22 EBIRD 52.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216775 2021-03-24 19:23:17.886063 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288158601 2019-09-10 13:56:02 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-01 12:18:00 obsr223307 S21114131 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111483 2021-03-19 16:06:54.047432 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537552 2021-04-01 10:49:39.496318 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293104958 2021-04-01 10:49:39.496318 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco - Reynolds Rd. L631459 P 42.8693593 -76.4608526 2015-01-04 11:15:00 obsr37213 S21531559 Traveling P22 EBIRD 43.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354570 2015-02-01 12:41:20 505 species avibase-C732CB10 American Black Duck Anas rubripes 8 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt, Hoag and Dresser Rd. area L573479 H 42.6674167 -76.3267422 2015-01-31 09:49:00 obsr660965 S21630356 Traveling P22 EBIRD 16.0 1.287 2.0 1 G1131432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289469109 2021-03-24 19:23:17.886063 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Sterling-14340-14346 Victory St L3270675 P 43.310953000000005 -76.70646500000001 2015-01-06 11:44:00 obsr335050 S21221510 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293109176 2018-08-04 16:55:13 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-25 11:09:00 obsr301884 S21531872 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870239 2015-03-08 21:09:52 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 10 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr214884 S22246830 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137350 2021-03-19 16:06:54.047432 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr223307 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355517 2021-03-19 16:06:54.047432 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917450 2018-08-04 16:55:08 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:25:00 obsr455504 S21516940 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877965 2018-08-04 16:55:05 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-24 08:28:00 obsr75717 S21513574 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214029 2021-03-30 19:03:28.117389 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 12 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299323 2018-08-04 16:52:46 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-04 15:30:00 obsr318875 S21208053 Traveling P22 EBIRD 30.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289444915 2015-01-06 08:32:01 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Cayuga US-NY-011 13.0 Mobbs Road L3270333 P 42.880492700000005 -76.563549 2015-01-04 10:30:00 obsr318875 S21219450 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294381002 2021-03-19 16:06:54.047432 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr660965 S21632370 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219197 2021-03-19 16:06:54.047432 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr160104 S21619509 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293924490 2021-03-24 19:23:17.886063 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-29 10:00:00 obsr486113 S21596457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292504168 2021-04-01 10:49:39.496318 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-21 11:55:00 obsr223307 S21484189 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354160 2021-03-26 06:11:29.8335 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544069 2015-01-11 21:18:21 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr77889 S21308081 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354617 2015-02-01 12:41:26 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-31 10:07:00 obsr660965 S21630361 Stationary P21 EBIRD 4.0 2.0 1 G1131434 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292891043 2021-03-26 06:11:29.8335 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-01-24 10:30:00 obsr75717 S21514737 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288104667 2021-03-26 06:11:29.8335 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 7 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-01 08:56:00 obsr223307 S21109713 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293890513 2019-11-29 18:27:29 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lake Como Rd: Lane E: #1196 L3326108 P 42.6759534 -76.3046327 2015-01-29 11:50:00 obsr520305 S21594008 Traveling P22 EBIRD 52.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294039871 2021-03-24 19:23:17.886063 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-30 08:45:00 obsr68520 S21605751 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209446 2015-02-01 12:41:26 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-31 10:07:00 obsr160104 S21618804 Stationary P21 EBIRD 4.0 2.0 1 G1131434 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870237 2015-03-08 21:09:52 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr214884 S22246830 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172894 2021-04-01 10:49:39.496318 8829 species avibase-8F123A11 Short-eared Owl Asio flammeus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr630514 S21277920 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355515 2021-03-19 16:06:54.047432 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111495 2021-03-19 16:06:54.047432 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294154354 2015-01-31 14:15:04 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como #1291 E Lake Rd L1808836 P 42.679629 -76.301994 2015-01-31 13:27:00 obsr630514 S21614577 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391665 2015-01-11 21:18:21 662 species avibase-FB738385 Bufflehead Bucephala albeola 6 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr630514 S21295872 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543992 2015-01-11 21:18:07 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr77889 S21308076 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209369 2015-02-01 12:41:20 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt, Hoag and Dresser Rd. area L573479 H 42.6674167 -76.3267422 2015-01-31 09:49:00 obsr160104 S21618791 Traveling P22 EBIRD 16.0 1.287 2.0 1 G1131432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391841 2015-01-11 21:18:07 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 5 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr630514 S21295886 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288427448 2015-01-02 09:47:38 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Backyard Haven L758893 P 42.9395754 -76.5754192 2015-01-01 08:11:00 obsr232835 S21136347 Stationary P21 EBIRD 15.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537535 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216023 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870257 2015-03-08 21:09:53 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr214884 S22246832 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214027 2021-03-30 19:03:28.117389 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557554 2020-05-02 15:38:26 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-27 13:03:00 obsr595883 S21567472 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291706966 2015-03-08 19:37:21 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr630514 S21401294 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289464448 2021-03-24 19:23:17.886063 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Cato-11126 South St L3270600 P 43.155871000000005 -76.570162 2015-01-06 11:18:00 obsr335050 S21221122 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870389 2021-04-01 10:49:39.496318 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr214884 S22246845 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289482471 2015-01-06 13:16:15 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Sterling - 43.3687x-76.6503 - Jan 6, 2015, 1:13 PM L3270901 P 43.368744 -76.650251 2015-01-06 13:13:00 obsr335050 S21222729 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211935 2021-03-19 16:06:54.047432 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr160104 S21619012 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210933 2021-03-26 06:11:29.8335 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294133382 2016-07-19 14:06:08 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt Rd. L366919 H 42.6564028 -76.3262996 2015-01-31 12:14:00 obsr630514 S21612989 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292455415 2019-07-23 17:27:09 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993875 2021-03-26 06:11:29.8335 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116449 2015-01-01 09:52:28 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard, 1544 Lake Rd L1802598 P 42.7108 -76.69261999999999 2015-01-01 09:22:00 obsr223307 S21110527 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294264690 2021-03-24 19:23:17.886063 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-31 obsr486113 S21623325 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116148 2021-04-01 10:49:39.496318 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294153017 2020-05-02 15:38:26 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-31 13:33:00 obsr595883 S21614483 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287596 2019-11-29 17:55:18 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: S/Long Pt SP L3289857 P 42.711757 -76.70484240000002 2015-01-31 13:19:00 obsr520305 S21625018 Traveling P22 EBIRD 7.0 0.8690000000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869950 2015-03-08 21:09:39 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr214884 S22246815 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289020 2021-03-19 16:06:54.047432 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: forest N/Long Pt SP L3330817 P 42.7218766 -76.7081952 2015-01-31 14:14:00 obsr520305 S21625110 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290616705 2021-03-26 06:11:29.8335 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-12 08:26:00 obsr630514 S21313323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354689 2021-03-19 16:06:54.047432 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr660965 S21630374 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380959 2021-03-30 19:03:28.117389 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543391 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr77889 S21308024 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294171541 2015-01-31 15:37:41 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 12:53:00 obsr630514 S21615952 Traveling P22 EBIRD 28.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480071 2021-04-01 10:49:39.496318 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Cayuga US-NY-011 13.0 McFarland Road L792888 P 43.3699926 -76.6313553 2015-01-11 13:18:00 obsr385404 S21302955 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354568 2015-02-01 12:41:20 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt, Hoag and Dresser Rd. area L573479 H 42.6674167 -76.3267422 2015-01-31 09:49:00 obsr660965 S21630356 Traveling P22 EBIRD 16.0 1.287 2.0 1 G1131432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354625 2021-03-26 06:11:29.8335 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870245 2015-03-08 21:09:52 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 30 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr214884 S22246830 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544077 2015-01-11 21:18:21 26890 species avibase-94A44032 European Starling Sturnus vulgaris 30 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr77889 S21308081 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210944 2021-03-26 06:11:29.8335 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 31 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354636 2021-03-26 06:11:29.8335 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 31 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294154362 2015-01-31 14:15:04 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 52 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como #1291 E Lake Rd L1808836 P 42.679629 -76.301994 2015-01-31 13:27:00 obsr630514 S21614577 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294039877 2021-03-24 19:23:17.886063 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 8 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-30 08:45:00 obsr68520 S21605751 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293903507 2015-01-29 19:13:49 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 13 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lake Como:E Lake Rd 1285 L2589477 P 42.67978170000001 -76.3022717 2015-01-29 12:50:00 obsr520305 S21594914 Stationary P21 EBIRD 5.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391673 2015-01-11 21:18:21 483 species avibase-85625D75 Mallard Anas platyrhynchos 30 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr630514 S21295872 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288144728 2018-08-04 16:52:20 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-01 11:21:00 obsr223307 S21112915 Stationary P21 EBIRD 15.0 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289257553 2021-03-30 19:03:28.117389 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-04 12:50:00 obsr437271 S21204654 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290521298 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 11:01:00 obsr151326 S21306333 Stationary P21 EBIRD 4.0 1.0 1 G1105901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288754824 2018-08-04 16:52:40 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-03 14:13:00 obsr485179 S21163375 Incidental P20 EBIRD 1.0 0 G1095579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290438605 2018-08-04 16:53:08 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr317741 S21299516 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469280 2018-08-04 16:53:08 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr613199 S21302047 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135200 2018-08-04 16:52:43 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Cayuga US-NY-011 13.0 West end of Lake Rd L3134977 P 42.7103807 -76.6994619 2015-01-04 11:19:00 obsr613199 S21195614 Traveling P22 EBIRD 19.0 0.805 6.0 1 G1095922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137342 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr223307 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355736 2018-08-04 16:55:31 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 16 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 14:43:00 obsr660965 S21630449 Stationary P21 EBIRD 7.0 2.0 1 G1131447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380944 2021-03-30 19:03:28.117389 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469363 2015-01-11 17:05:25 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr613199 S21302053 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289475431 2018-08-04 16:52:51 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 Little Sodus Bay L5404103 H 43.3297159 -76.7094849 2015-01-06 12:24:00 obsr335050 S21222100 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292920619 2018-08-04 16:55:09 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 8 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:40:00 obsr75717 S21517212 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870430 2018-08-04 16:53:00 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 8 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr214884 S22246849 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294150342 2018-08-04 16:55:30 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr99508 S21614279 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683275 2018-08-04 16:53:08 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr68520 S21319389 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293109170 2018-08-04 16:55:13 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 14 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-25 11:09:00 obsr301884 S21531872 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214012 2021-03-30 19:03:28.117389 505 species avibase-C732CB10 American Black Duck Anas rubripes 10 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292272470 2017-03-02 20:21:54 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Marsh Road overlook, Moon Beach L1026279 H 43.3967411 -76.6448562 2015-01-18 12:15:00 obsr705863 S21445090 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098470 2018-08-04 16:52:40 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-03 14:13:00 obsr465975 S21192672 Incidental P20 EBIRD 1.0 0 G1095579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539665 2021-03-19 16:06:54.047432 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 35 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-17 15:40:00 obsr386262 S21388589 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291204797 2018-08-04 16:53:21 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 3 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Union Springs: Factory St pond L2109353 P 42.8411868 -76.6943657 2015-01-15 13:15:00 obsr520305 S21361423 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292536647 2018-08-04 16:54:49 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 24 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-21 14:22:00 obsr232835 S21486800 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683401 2015-01-12 14:34:29 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr68520 S21319401 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135107 2018-08-04 16:52:44 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-04 11:39:00 obsr613199 S21195602 Stationary P21 EBIRD 20.0 6.0 1 G1095921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294335776 2019-11-29 17:53:52 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 15:13:00 obsr520305 S21628957 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289019251 2018-08-04 16:52:44 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-04 12:55:00 obsr317741 S21186459 Stationary P21 EBIRD 4.0 6.0 1 G1095920 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543377 2018-08-04 16:53:01 447 species avibase-C235A4D7 Gadwall Mareca strepera 5 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr77889 S21308022 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870404 2018-08-04 16:53:01 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr214884 S22246846 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288992977 2018-08-04 16:52:43 662 species avibase-FB738385 Bufflehead Bucephala albeola 6 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. L3278634 P 42.7105699 -76.7030239 2015-01-04 11:19:00 obsr317741 S21184357 Traveling P22 EBIRD 19.0 0.805 6.0 1 G1095922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292922404 2018-01-14 21:21:32 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-24 13:57:00 obsr75717 S21517356 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968744 2018-08-04 16:53:56 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292536865 2018-01-14 21:21:32 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-21 15:29:00 obsr232835 S21486815 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380998 2021-03-19 16:06:54.047432 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr660965 S21632370 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111497 2021-03-19 16:06:54.047432 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 10 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653049 2019-07-23 17:27:05 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr630514 S21397552 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877956 2018-08-04 16:55:05 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-24 08:28:00 obsr75717 S21513574 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292267672 2021-03-30 19:03:28.117389 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.34588839999999 -76.710341 2015-01-18 10:35:00 obsr705863 S21445016 Traveling P22 EBIRD 25.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216012 2021-03-19 16:06:54.047432 681 species avibase-407E2CA8 Common Merganser Mergus merganser 20 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993301 2021-03-26 06:11:29.8335 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr160104 S21601821 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355649 2021-03-26 06:11:29.8335 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 3 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219126 2018-08-04 16:55:31 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 16 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 14:43:00 obsr160104 S21619503 Stationary P21 EBIRD 7.0 2.0 1 G1131447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320462 2018-08-04 16:55:29 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 15 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 12:20:00 obsr223307 S21627679 Stationary P21 EBIRD 8.0 1.0 1 G1131260 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290380121 2021-04-01 10:49:39.496318 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 11:01:00 obsr257692 S21294888 Stationary P21 EBIRD 4.0 1.0 1 G1105901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217496 2021-03-26 06:11:29.8335 1806 species avibase-32DCEC14 Eared Grebe Podiceps nigricollis 3 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320907 2018-08-04 16:55:30 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 8 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr223307 S21627703 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869998 2019-07-23 17:27:05 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr214884 S22246816 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683513 2018-08-04 16:53:08 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr68520 S21319413 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469490 2018-08-04 16:53:08 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr613199 S21302063 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293959399 2018-08-04 16:55:25 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 08:42:00 obsr257692 S21599183 Stationary P21 EBIRD 5.0 2.0 1 G1129048 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290982444 2018-08-04 16:53:18 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-14 13:13:00 obsr628463 S21343142 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026975 2021-03-30 19:03:28.117389 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 14 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469252 2018-08-04 16:53:07 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr613199 S21302044 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537545 2021-04-01 10:49:39.496318 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289066678 2018-08-04 16:52:46 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 6 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-04 15:15:00 obsr630514 S21190004 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292880536 2021-03-26 06:11:29.8335 681 species avibase-407E2CA8 Common Merganser Mergus merganser 14 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road north--Long Point to Lake Road bluff L1375811 P 42.728647 -76.7103856 2015-01-24 09:01:00 obsr75717 S21513779 Traveling P22 EBIRD 24.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288705309 2018-08-04 16:52:30 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Cayuga US-NY-011 13.0 Mill Pond L1057399 P 42.844821200000005 -76.6919732 2015-01-02 11:53:00 obsr232835 S21159449 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434517 2018-08-04 16:53:07 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:00:00 obsr378414 S21299184 Stationary P21 EBIRD 20.0 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294550139 2018-08-04 16:55:15 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-25 13:00:00 obsr476925 S21645814 Stationary P21 EBIRD 45.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216763 2021-03-24 19:23:17.886063 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288999519 2018-08-04 16:52:44 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-04 11:39:00 obsr317741 S21184863 Stationary P21 EBIRD 20.0 6.0 1 G1095921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320650 2018-08-04 16:55:30 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 12:30:00 obsr223307 S21627686 Stationary P21 EBIRD 5.0 1.0 1 G1131263 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293116327 2018-08-04 16:55:14 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 20 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-25 11:58:00 obsr301884 S21532441 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290682966 2018-08-04 16:53:07 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr68520 S21319366 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434798 2018-08-04 16:53:07 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr317741 S21299212 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917449 2018-08-04 16:55:08 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:25:00 obsr455504 S21516940 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290162919 2018-08-04 16:53:00 447 species avibase-C235A4D7 Gadwall Mareca strepera 8 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr630514 S21277064 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288150091 2018-08-04 16:52:21 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-01 11:41:00 obsr223307 S21113445 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290985142 2018-08-04 16:53:18 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-14 13:23:00 obsr628463 S21343327 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324993169 2018-08-04 16:54:45 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 5 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake L3696266 P 42.7716286 -76.71069229999999 2015-01-20 09:00:00 obsr503745 S23775359 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354136 2021-03-26 06:11:29.8335 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr660965 S21630306 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098402 2018-08-04 16:52:40 505 species avibase-C732CB10 American Black Duck Anas rubripes 22 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr465975 S21192664 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288144725 2018-08-04 16:52:20 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-01 11:21:00 obsr223307 S21112915 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543349 2018-08-04 16:53:00 505 species avibase-C732CB10 American Black Duck Anas rubripes 8 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr77889 S21308019 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288482 2018-08-04 16:55:30 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135084 2018-08-04 16:52:44 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-04 12:55:00 obsr613199 S21195600 Stationary P21 EBIRD 4.0 6.0 1 G1095920 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294135118 2018-08-04 16:55:30 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 12:30:00 obsr99508 S21613084 Stationary P21 EBIRD 5.0 1.0 1 G1131263 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290830939 2019-11-29 18:22:33 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Union Springs: Mill Pond, NYS-90 L1301373 P 42.8451859 -76.6912597 2015-01-04 12:56:00 obsr520305 S21330804 Stationary P21 EBIRD 5.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290444970 2018-08-04 16:53:08 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr317741 S21300011 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293972373 2018-08-04 16:55:25 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 08:42:00 obsr151326 S21600433 Stationary P21 EBIRD 5.0 2.0 1 G1129048 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290828835 2018-08-04 16:52:44 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-04 11:39:00 obsr520305 S21330618 Stationary P21 EBIRD 20.0 6.0 1 G1095921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292455409 2019-07-23 17:27:09 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 27 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355504 2021-03-19 16:06:54.047432 303 species avibase-B59E1863 Canada Goose Branta canadensis 20 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292886782 2019-07-23 17:27:10 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-24 09:46:00 obsr75717 S21514316 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764278 2018-08-04 16:52:40 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 22 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr485179 S21164107 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288705632 2018-01-14 21:21:32 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-02 12:19:00 obsr232835 S21159474 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434740 2015-01-11 17:05:25 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr317741 S21299206 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172924 2018-08-04 16:53:01 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr630514 S21277927 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219193 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr160104 S21619509 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294133284 2018-08-04 16:55:29 26109 species avibase-BAC33609 Brown Creeper Certhia americana 15 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 12:20:00 obsr99508 S21612977 Stationary P21 EBIRD 8.0 1.0 1 G1131260 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683094 2018-08-04 16:53:07 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr68520 S21319374 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469136 2018-08-04 16:53:07 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr613199 S21302036 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290379172 2018-08-04 16:53:07 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr317741 S21294812 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355613 2021-03-24 19:23:17.886063 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291638890 2021-03-26 06:11:29.8335 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr630514 S21396396 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS301869911 2021-03-26 06:11:29.8335 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr214884 S22246811 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290543341 2018-08-04 16:53:00 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr77889 S21308019 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290162915 2018-08-04 16:53:00 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr630514 S21277064 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870426 2018-08-04 16:53:00 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr214884 S22246849 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292266440 2021-03-26 06:11:29.8335 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 8 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-18 08:45:00 obsr705863 S21444552 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137338 2021-03-19 16:06:54.047432 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr223307 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292672022 2018-08-04 16:54:50 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-21 15:30:00 obsr386262 S21497478 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293104954 2021-04-01 10:49:39.496318 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 20 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco - Reynolds Rd. L631459 P 42.8693593 -76.4608526 2015-01-04 11:15:00 obsr37213 S21531559 Traveling P22 EBIRD 43.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135104 2018-08-04 16:52:44 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-04 11:39:00 obsr613199 S21195602 Stationary P21 EBIRD 20.0 6.0 1 G1095921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537523 2021-04-01 10:49:39.496318 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033201 2021-03-19 16:06:54.047432 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 40 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288986677 2021-04-01 10:49:39.496318 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Cayuga US-NY-011 13.0 Center Rd. L99618 H 42.6500149 -76.6246314 2015-01-04 11:00:00 obsr317741 S21183723 Traveling P22 EBIRD 10.0 0.805 6.0 1 G1095923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294550145 2018-08-04 16:55:15 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 27 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-25 13:00:00 obsr476925 S21645814 Stationary P21 EBIRD 45.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354180 2018-08-04 16:55:26 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 100 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr660965 S21630310 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289478046 2018-10-24 13:52:29 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 400 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-06 12:40:00 obsr335050 S21222354 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293109163 2018-08-04 16:55:13 483 species avibase-85625D75 Mallard Anas platyrhynchos 75 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-25 11:09:00 obsr301884 S21531872 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292886777 2019-07-23 17:27:10 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 16 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-24 09:46:00 obsr75717 S21514316 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290385284 2018-08-04 16:53:08 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 20 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-11 11:29:00 obsr257692 S21295337 Incidental P20 EBIRD 2.0 0 G1105899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917443 2018-08-04 16:55:08 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:25:00 obsr455504 S21516940 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293046552 2021-03-30 19:03:28.117389 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Farley's Pt Rd: N point L3315348 P 42.8226639 -76.70619559999999 2015-01-24 13:55:00 obsr520305 S21526465 Stationary P21 EBIRD 5.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683091 2018-08-04 16:53:07 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr68520 S21319374 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293994078 2018-08-04 16:55:26 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 100 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr160104 S21601836 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292898161 2018-08-04 16:55:07 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 547 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-24 10:58:00 obsr75717 S21515398 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292882057 2018-08-04 16:55:06 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-24 09:32:00 obsr75717 S21513915 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543371 2018-08-04 16:53:01 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1700 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr77889 S21308022 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290827441 2019-11-29 17:55:18 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: S/Long Pt SP L3289857 P 42.711757 -76.70484240000002 2015-01-04 11:28:00 obsr520305 S21330494 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290616696 2021-03-26 06:11:29.8335 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5000 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-12 08:26:00 obsr630514 S21313323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320903 2018-08-04 16:55:30 26109 species avibase-BAC33609 Brown Creeper Certhia americana X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr223307 S21627703 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355642 2021-03-26 06:11:29.8335 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 800 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216754 2021-03-24 19:23:17.886063 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 6000 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764272 2018-08-04 16:52:40 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 9 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr485179 S21164107 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434513 2018-08-04 16:53:07 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:00:00 obsr378414 S21299184 Stationary P21 EBIRD 20.0 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543346 2018-08-04 16:53:00 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1200 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr77889 S21308019 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521292 2021-04-01 10:49:39.496318 1375 species avibase-4B9EEF56 Ring-necked Pheasant Phasianus colchicus 500 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 11:01:00 obsr151326 S21306333 Stationary P21 EBIRD 4.0 1.0 1 G1105901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320458 2018-08-04 16:55:29 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 12:20:00 obsr223307 S21627679 Stationary P21 EBIRD 8.0 1.0 1 G1131260 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290379168 2018-08-04 16:53:07 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr317741 S21294812 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469249 2018-08-04 16:53:07 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr613199 S21302044 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521258 2020-01-31 18:57:31 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 20 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-11 11:36:00 obsr151326 S21306329 Stationary P21 EBIRD 3.0 2.0 1 G1105898 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469495 2018-08-04 16:53:08 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr613199 S21302063 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290437163 2018-08-04 16:53:07 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis X United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-11 10:58:00 obsr317741 S21299408 Traveling P22 EBIRD 7.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290824268 2021-04-01 10:49:39.496318 406 species avibase-27B2749A Wood Duck Aix sponsa X United States US New York US-NY Cayuga US-NY-011 13.0 Center Rd. L99618 H 42.6500149 -76.6246314 2015-01-04 11:00:00 obsr520305 S21330238 Traveling P22 EBIRD 10.0 0.805 6.0 1 G1095923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294150338 2018-08-04 16:55:30 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr99508 S21614279 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172887 2021-04-01 10:49:39.496318 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 62 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr630514 S21277920 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324993177 2018-08-04 16:54:45 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 500 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake L3696266 P 42.7716286 -76.71069229999999 2015-01-20 09:00:00 obsr503745 S23775359 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354131 2021-03-26 06:11:29.8335 447 species avibase-C235A4D7 Gadwall Mareca strepera 15 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr660965 S21630306 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543517 2021-03-30 19:03:28.117389 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1600 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr77889 S21308038 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292880531 2021-03-26 06:11:29.8335 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1600 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road north--Long Point to Lake Road bluff L1375811 P 42.728647 -76.7103856 2015-01-24 09:01:00 obsr75717 S21513779 Traveling P22 EBIRD 24.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521286 2018-08-04 16:53:08 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2000 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:18:00 obsr151326 S21306332 Stationary P21 EBIRD 7.0 1.0 1 G1105900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289444918 2015-01-06 08:32:01 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 250 United States US New York US-NY Cayuga US-NY-011 13.0 Mobbs Road L3270333 P 42.880492700000005 -76.563549 2015-01-04 10:30:00 obsr318875 S21219450 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289137470 2018-08-04 16:52:44 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-04 12:17:00 obsr613199 S21195816 Stationary P21 EBIRD 10.0 6.0 1 G1095941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294133280 2018-08-04 16:55:29 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 12:20:00 obsr99508 S21612977 Stationary P21 EBIRD 8.0 1.0 1 G1131260 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293959394 2018-08-04 16:55:25 505 species avibase-C732CB10 American Black Duck Anas rubripes 750 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 08:42:00 obsr257692 S21599183 Stationary P21 EBIRD 5.0 2.0 1 G1129048 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683279 2018-08-04 16:53:08 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr68520 S21319389 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869912 2021-03-26 06:11:29.8335 622 species avibase-50566E50 Lesser Scaup Aythya affinis 11 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr214884 S22246811 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218483 2021-03-30 19:03:28.117389 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1000 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290985137 2018-08-04 16:53:18 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-14 13:23:00 obsr628463 S21343327 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521283 2018-08-04 16:53:08 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 20 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-11 11:29:00 obsr151326 S21306331 Incidental P20 EBIRD 2.0 0 G1105899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877951 2018-08-04 16:55:05 30494 species avibase-240E3390 House Sparrow Passer domesticus 143 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-24 08:28:00 obsr75717 S21513574 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290682963 2018-08-04 16:53:07 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr68520 S21319366 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294213998 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1500 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539655 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-17 15:40:00 obsr386262 S21388589 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434737 2015-01-11 17:05:25 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr317741 S21299206 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291638891 2021-03-26 06:11:29.8335 616 species avibase-25C94A8F Greater Scaup Aythya marila 11 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr630514 S21396396 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026991 2021-03-30 19:03:28.117389 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1097 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216003 2021-03-19 16:06:54.047432 681 species avibase-407E2CA8 Common Merganser Mergus merganser 800 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290438609 2018-08-04 16:53:08 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr317741 S21299516 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292925986 2021-03-26 06:11:29.8335 6339 species avibase-8535345B Herring Gull Larus argentatus 60 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Harbor Marina (private) L632907 H 42.8396606 -76.69735909999999 2015-01-24 14:03:00 obsr75717 S21517633 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289147443 2018-08-04 16:52:46 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 125 United States US New York US-NY Cayuga US-NY-011 13.0 Hoopes Park L1126200 P 42.9332642 -76.5428129 2015-01-04 15:34:00 obsr232835 S21196616 Traveling P22 EBIRD 30.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312123304 2018-08-04 16:55:10 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 30 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr760316 S23001567 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683398 2015-01-12 14:34:29 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr68520 S21319401 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290682954 2020-01-31 18:57:31 456 species avibase-D201EB72 American Wigeon Mareca americana X United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-11 10:24:00 obsr68520 S21319364 Stationary P21 EBIRD 4.0 12.0 1 G1105490 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290180390 2021-03-30 19:03:28.117389 6339 species avibase-8535345B Herring Gull Larus argentatus 1600 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr630514 S21278516 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290828832 2018-08-04 16:52:44 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-04 11:39:00 obsr520305 S21330618 Stationary P21 EBIRD 20.0 6.0 1 G1095921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870393 2018-08-04 16:53:01 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 1700 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr214884 S22246846 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469075 2020-01-31 18:57:31 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-11 10:24:00 obsr613199 S21302033 Stationary P21 EBIRD 4.0 12.0 1 G1105490 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469360 2015-01-11 17:05:25 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr613199 S21302053 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469284 2018-08-04 16:53:08 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr613199 S21302047 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135364 2021-04-01 10:49:39.496318 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Cayuga US-NY-011 13.0 Center Rd. L99618 H 42.6500149 -76.6246314 2015-01-04 11:00:00 obsr613199 S21195622 Traveling P22 EBIRD 10.0 0.805 6.0 1 G1095923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735225 2019-07-23 17:27:05 11528 species avibase-F3DA111C Merlin Falco columbarius X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289024 2021-03-19 16:06:54.047432 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: forest N/Long Pt SP L3330817 P 42.7218766 -76.7081952 2015-01-31 14:14:00 obsr520305 S21625110 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290982438 2018-08-04 16:53:18 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 500 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-14 13:13:00 obsr628463 S21343142 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993296 2021-03-26 06:11:29.8335 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 15 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr160104 S21601821 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543384 2021-04-01 10:49:39.496318 447 species avibase-C235A4D7 Gadwall Mareca strepera 62 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr77889 S21308024 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870382 2021-04-01 10:49:39.496318 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 62 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr214884 S22246845 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653041 2019-07-23 17:27:05 483 species avibase-85625D75 Mallard Anas platyrhynchos 20 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr630514 S21397552 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098396 2018-08-04 16:52:40 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 9 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr465975 S21192664 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293972368 2018-08-04 16:55:25 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 750 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 08:42:00 obsr151326 S21600433 Stationary P21 EBIRD 5.0 2.0 1 G1129048 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217489 2021-03-26 06:11:29.8335 622 species avibase-50566E50 Lesser Scaup Aythya affinis 800 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290386802 2020-01-31 18:57:31 505 species avibase-C732CB10 American Black Duck Anas rubripes 20 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-11 11:36:00 obsr257692 S21295467 Stationary P21 EBIRD 3.0 2.0 1 G1105898 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469133 2018-08-04 16:53:07 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr613199 S21302036 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480646 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-11 13:45:00 obsr385404 S21303009 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288999516 2018-08-04 16:52:44 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-04 11:39:00 obsr317741 S21184863 Stationary P21 EBIRD 20.0 6.0 1 G1095921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294335779 2019-11-29 17:53:52 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 15:13:00 obsr520305 S21628957 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290444975 2018-08-04 16:53:08 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr317741 S21300011 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683518 2018-08-04 16:53:08 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr68520 S21319413 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355692 2021-03-30 19:03:28.117389 6339 species avibase-8535345B Herring Gull Larus argentatus 1000 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288158593 2019-09-10 13:56:02 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 20 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-01 12:18:00 obsr223307 S21114131 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288126549 2021-03-26 06:11:29.8335 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 13 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380930 2021-03-30 19:03:28.117389 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1500 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010655 2021-03-19 16:06:54.047432 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 40 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741223 2021-04-01 10:49:39.496318 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:30:00 obsr613199 S21404051 Traveling P22 EBIRD 20.0 0.805 7.0 1 G1114094 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384025 2018-08-04 16:53:07 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2000 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:18:00 obsr257692 S21295238 Stationary P21 EBIRD 7.0 1.0 1 G1105900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288144723 2018-08-04 16:52:20 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis X United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-01 11:21:00 obsr223307 S21112915 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355604 2021-03-24 19:23:17.886063 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6000 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434795 2018-08-04 16:53:07 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr317741 S21299212 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291971034 2018-08-04 16:53:55 505 species avibase-C732CB10 American Black Duck Anas rubripes 85 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake - Fall Brook (private) L1377696 P 42.832681 -76.3456749 2015-01-18 09:38:00 obsr37213 S21421856 Traveling P22 EBIRD 57.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290380115 2021-04-01 10:49:39.496318 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 500 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 11:01:00 obsr257692 S21294888 Stationary P21 EBIRD 4.0 1.0 1 G1105901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291732578 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:30:00 obsr317741 S21403330 Traveling P22 EBIRD 20.0 0.805 7.0 1 G1114094 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290162916 2018-08-04 16:53:00 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1200 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr630514 S21277064 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291535793 2021-03-19 16:06:54.047432 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa X United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-17 15:00:00 obsr386262 S21388272 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211931 2021-03-19 16:06:54.047432 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 10 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr160104 S21619012 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741293 2019-07-23 17:27:05 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288473 2018-08-04 16:55:30 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870427 2018-08-04 16:53:00 483 species avibase-85625D75 Mallard Anas platyrhynchos 1200 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr214884 S22246849 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292891038 2021-03-26 06:11:29.8335 30494 species avibase-240E3390 House Sparrow Passer domesticus 18 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-01-24 10:30:00 obsr75717 S21514737 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869988 2019-07-23 17:27:05 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 20 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr214884 S22246816 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290437662 2020-01-31 18:57:31 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-11 10:24:00 obsr317741 S21299439 Stationary P21 EBIRD 4.0 12.0 1 G1105490 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294166344 2018-08-04 16:55:29 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-31 11:12:00 obsr79559 S21615638 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116147 2021-04-01 10:49:39.496318 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 965 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292455405 2019-07-23 17:27:09 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 75 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870324 2021-03-30 19:03:28.117389 303 species avibase-B59E1863 Canada Goose Branta canadensis 1600 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr214884 S22246841 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289134959 2018-08-04 16:52:44 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-04 12:17:00 obsr317741 S21195588 Stationary P21 EBIRD 10.0 6.0 1 G1095941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293039739 2019-11-29 18:03:23 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 NY:CAY:Ledyard: NYS-90: Wells College boathouse L1071843 P 42.7451252 -76.7010149 2015-01-24 12:48:00 obsr520305 S21525942 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355495 2021-03-19 16:06:54.047432 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 800 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288150084 2018-08-04 16:52:21 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-01 11:41:00 obsr223307 S21113445 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290405040 2021-04-01 10:49:39.496318 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 36 United States US New York US-NY Cayuga US-NY-011 13.0 Irwin Road L372903 P 43.3938222 -76.63066859999999 2015-01-11 13:00:00 obsr385404 S21296879 Traveling P22 EBIRD 8.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292186234 2018-08-04 16:54:47 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 45 United States US New York US-NY Cayuga US-NY-011 13.0 Emerson Park L354461 H 42.901996 -76.537299 2015-01-20 14:19:00 obsr232835 S21438675 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172918 2018-08-04 16:53:01 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1700 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr630514 S21277927 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293051282 2018-08-04 16:55:10 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 30 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr151326 S21526856 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354685 2021-03-19 16:06:54.047432 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr660965 S21630374 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355870 2018-08-04 16:55:31 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 500 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr660965 S21630459 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026977 2021-03-30 19:03:28.117389 30494 species avibase-240E3390 House Sparrow Passer domesticus 276 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324993180 2018-08-04 16:54:45 681 species avibase-407E2CA8 Common Merganser Mergus merganser 12 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake L3696266 P 42.7716286 -76.71069229999999 2015-01-20 09:00:00 obsr503745 S23775359 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293046555 2021-03-30 19:03:28.117389 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Farley's Pt Rd: N point L3315348 P 42.8226639 -76.70619559999999 2015-01-24 13:55:00 obsr520305 S21526465 Stationary P21 EBIRD 5.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219877 2018-08-04 16:55:31 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 500 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr160104 S21619562 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968738 2018-08-04 16:53:56 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 13 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870391 2021-04-01 10:49:39.496318 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr214884 S22246845 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292899139 2015-01-24 20:40:49 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ellis Rd., Levanna L1340510 H 42.7851685 -76.71619140000001 2015-01-24 11:48:00 obsr75717 S21515496 Traveling P22 EBIRD 6.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683278 2018-08-04 16:53:08 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr68520 S21319389 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543354 2018-08-04 16:53:00 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr77889 S21308019 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216776 2021-03-24 19:23:17.886063 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214015 2021-03-30 19:03:28.117389 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290438608 2018-08-04 16:53:08 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr317741 S21299516 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290162924 2018-08-04 16:53:00 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr630514 S21277064 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026974 2021-03-30 19:03:28.117389 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355625 2021-03-24 19:23:17.886063 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870435 2018-08-04 16:53:00 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr214884 S22246849 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116453 2015-01-01 09:52:28 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard, 1544 Lake Rd L1802598 P 42.7108 -76.69261999999999 2015-01-01 09:22:00 obsr223307 S21110527 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543393 2021-04-01 10:49:39.496318 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr77889 S21308024 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219200 2021-03-19 16:06:54.047432 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr160104 S21619509 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216028 2021-03-19 16:06:54.047432 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355520 2021-03-19 16:06:54.047432 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288126559 2021-03-26 06:11:29.8335 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380947 2021-03-30 19:03:28.117389 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469283 2018-08-04 16:53:08 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr613199 S21302047 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294381005 2021-03-19 16:06:54.047432 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr660965 S21632370 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172896 2021-04-01 10:49:39.496318 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr630514 S21277920 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741299 2019-07-23 17:27:05 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543524 2021-03-30 19:03:28.117389 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 2 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr77889 S21308038 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292886783 2019-07-23 17:27:10 681 species avibase-407E2CA8 Common Merganser Mergus merganser 54 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-24 09:46:00 obsr75717 S21514316 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324993178 2018-08-04 16:54:45 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 15 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake L3696266 P 42.7716286 -76.71069229999999 2015-01-20 09:00:00 obsr503745 S23775359 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292882060 2018-08-04 16:55:06 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 38 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-24 09:32:00 obsr75717 S21513915 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293109171 2018-08-04 16:55:13 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-25 11:09:00 obsr301884 S21531872 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290437164 2018-08-04 16:53:07 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-11 10:58:00 obsr317741 S21299408 Traveling P22 EBIRD 7.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290180397 2021-03-30 19:03:28.117389 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr630514 S21278516 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292880537 2021-03-26 06:11:29.8335 505 species avibase-C732CB10 American Black Duck Anas rubripes 35 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road north--Long Point to Lake Road bluff L1375811 P 42.728647 -76.7103856 2015-01-24 09:01:00 obsr75717 S21513779 Traveling P22 EBIRD 24.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289478048 2018-10-24 13:52:29 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-06 12:40:00 obsr335050 S21222354 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292455410 2019-07-23 17:27:09 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 61 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355505 2021-03-19 16:06:54.047432 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 80 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294166346 2018-08-04 16:55:29 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-31 11:12:00 obsr79559 S21615638 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292267669 2021-03-30 19:03:28.117389 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 15 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.34588839999999 -76.710341 2015-01-18 10:35:00 obsr705863 S21445016 Traveling P22 EBIRD 25.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293994076 2018-08-04 16:55:26 303 species avibase-B59E1863 Canada Goose Branta canadensis 30 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr160104 S21601836 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288144726 2018-08-04 16:52:20 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-01 11:21:00 obsr223307 S21112915 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289137473 2018-08-04 16:52:44 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-04 12:17:00 obsr613199 S21195816 Stationary P21 EBIRD 10.0 6.0 1 G1095941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219880 2018-08-04 16:55:31 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr160104 S21619562 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290162920 2018-08-04 16:53:00 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 40 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr630514 S21277064 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355873 2018-08-04 16:55:31 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr660965 S21630459 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290379173 2018-08-04 16:53:07 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr317741 S21294812 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289470879 2017-04-14 14:40:46 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Cayuga US-NY-011 Little Sodus Bay L5404103 H 43.3297159 -76.7094849 2015-01-06 11:50:00 obsr335050 S21221692 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211932 2021-03-19 16:06:54.047432 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr160104 S21619012 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877957 2018-08-04 16:55:05 20829 species avibase-B9B272F4 Common Raven Corvus corax 63 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-24 08:28:00 obsr75717 S21513574 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216764 2021-03-24 19:23:17.886063 26890 species avibase-94A44032 European Starling Sturnus vulgaris 50 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434799 2018-08-04 16:53:07 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr317741 S21299212 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469253 2018-08-04 16:53:07 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr613199 S21302044 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289475432 2018-08-04 16:52:51 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 28 United States US New York US-NY Cayuga US-NY-011 Little Sodus Bay L5404103 H 43.3297159 -76.7094849 2015-01-06 12:24:00 obsr335050 S21222100 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354178 2018-08-04 16:55:26 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 30 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr660965 S21630310 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380945 2021-03-30 19:03:28.117389 592 species avibase-3072CC16 Redhead Aythya americana 20 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290616699 2021-03-26 06:11:29.8335 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 40 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-12 08:26:00 obsr630514 S21313323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870331 2021-03-30 19:03:28.117389 20294 species avibase-76158864 Northern Shrike Lanius borealis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr214884 S22246841 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292272467 2017-03-02 20:21:54 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 4 United States US New York US-NY Cayuga US-NY-011 13.0 Marsh Road overlook, Moon Beach L1026279 H 43.3967411 -76.6448562 2015-01-18 12:15:00 obsr705863 S21445090 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294550141 2018-08-04 16:55:15 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 53 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-25 13:00:00 obsr476925 S21645814 Stationary P21 EBIRD 45.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537549 2021-04-01 10:49:39.496318 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290682967 2018-08-04 16:53:07 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr68520 S21319366 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869999 2019-07-23 17:27:05 616 species avibase-25C94A8F Greater Scaup Aythya marila 80 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr214884 S22246816 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434519 2018-08-04 16:53:07 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:00:00 obsr378414 S21299184 Stationary P21 EBIRD 20.0 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288489 2018-08-04 16:55:30 11494 species avibase-20C2214E American Kestrel Falco sparverius X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293051289 2018-08-04 16:55:10 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 8 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr151326 S21526856 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292266444 2021-03-26 06:11:29.8335 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 48 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-18 08:45:00 obsr705863 S21444552 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111489 2021-03-19 16:06:54.047432 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289134962 2018-08-04 16:52:44 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-04 12:17:00 obsr317741 S21195588 Stationary P21 EBIRD 10.0 6.0 1 G1095941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355701 2021-03-30 19:03:28.117389 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 40 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355614 2021-03-24 19:23:17.886063 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 50 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384027 2018-08-04 16:53:07 242 species avibase-D3A260BC Snow Goose Anser caerulescens 12 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:18:00 obsr257692 S21295238 Stationary P21 EBIRD 7.0 1.0 1 G1105900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218492 2021-03-30 19:03:28.117389 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 40 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469137 2018-08-04 16:53:07 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr613199 S21302036 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026992 2021-03-30 19:03:28.117389 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 110 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289472608 2021-03-30 19:03:28.117389 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Cayuga US-NY-011 Little Sodus Bay L5404103 H 43.3297159 -76.7094849 2015-01-06 12:10:00 obsr335050 S21221872 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968745 2018-08-04 16:53:56 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 88 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543350 2018-08-04 16:53:00 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 40 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr77889 S21308019 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735231 2019-07-23 17:27:05 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137343 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr223307 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293039747 2019-11-29 18:03:23 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 NY:CAY:Ledyard: NYS-90: Wells College boathouse L1071843 P 42.7451252 -76.7010149 2015-01-24 12:48:00 obsr520305 S21525942 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764279 2018-08-04 16:52:40 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 308 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr485179 S21164107 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292925989 2021-03-26 06:11:29.8335 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 70 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Harbor Marina (private) L632907 H 42.8396606 -76.69735909999999 2015-01-24 14:03:00 obsr75717 S21517633 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292891035 2021-03-26 06:11:29.8335 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 22 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-01-24 10:30:00 obsr75717 S21514737 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653050 2019-07-23 17:27:05 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 80 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr630514 S21397552 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355650 2021-03-26 06:11:29.8335 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 30 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010661 2021-03-19 16:06:54.047432 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214013 2021-03-30 19:03:28.117389 592 species avibase-3072CC16 Redhead Aythya americana 20 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683095 2018-08-04 16:53:07 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr68520 S21319374 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290829779 2018-08-04 16:52:44 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-04 11:39:00 obsr520305 S21330618 Stationary P21 EBIRD 20.0 6.0 1 G1095921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217497 2021-03-26 06:11:29.8335 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 30 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521288 2018-08-04 16:53:08 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 12 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:18:00 obsr151326 S21306332 Stationary P21 EBIRD 7.0 1.0 1 G1105900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870431 2018-08-04 16:53:00 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 40 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr214884 S22246849 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292272307 2015-01-21 10:40:21 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 10 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-18 11:30:00 obsr705863 S21445072 Traveling P22 EBIRD 30.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033207 2021-03-19 16:06:54.047432 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312123311 2018-08-04 16:55:10 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 8 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr760316 S23001567 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291670456 2021-03-30 19:03:28.117389 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-18 13:16:00 obsr584324 S21398679 Traveling P22 EBIRD 11.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354686 2021-03-19 16:06:54.047432 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr660965 S21630374 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292898170 2018-08-04 16:55:07 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 50 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-24 10:58:00 obsr75717 S21515398 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293046556 2021-03-30 19:03:28.117389 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Farley's Pt Rd: N point L3315348 P 42.8226639 -76.70619559999999 2015-01-24 13:55:00 obsr520305 S21526465 Stationary P21 EBIRD 5.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480641 2021-03-30 19:03:28.117389 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 38 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-11 13:45:00 obsr385404 S21303009 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098403 2018-08-04 16:52:40 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 308 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr465975 S21192664 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294335785 2019-11-29 17:53:52 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 15:13:00 obsr520305 S21628957 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216013 2021-03-19 16:06:54.047432 6339 species avibase-8535345B Herring Gull Larus argentatus 80 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216016 2021-03-19 16:06:54.047432 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293109174 2018-08-04 16:55:13 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-25 11:09:00 obsr301884 S21531872 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292904080 2021-03-19 16:06:54.047432 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355508 2021-03-19 16:06:54.047432 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293109172 2018-08-04 16:55:13 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-25 11:09:00 obsr301884 S21531872 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355702 2021-03-30 19:03:28.117389 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 20 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292891036 2021-03-26 06:11:29.8335 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-01-24 10:30:00 obsr75717 S21514737 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289470881 2017-04-14 14:40:46 681 species avibase-407E2CA8 Common Merganser Mergus merganser 41 United States US New York US-NY Cayuga US-NY-011 Little Sodus Bay L5404103 H 43.3297159 -76.7094849 2015-01-06 11:50:00 obsr335050 S21221692 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354687 2021-03-19 16:06:54.047432 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr660965 S21630374 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292672021 2018-08-04 16:54:50 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-21 15:30:00 obsr386262 S21497478 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469357 2015-01-11 17:05:25 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr613199 S21302053 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294550140 2018-08-04 16:55:15 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 29 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-25 13:00:00 obsr476925 S21645814 Stationary P21 EBIRD 45.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292266443 2021-03-26 06:11:29.8335 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 20 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-18 08:45:00 obsr705863 S21444552 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010667 2021-03-19 16:06:54.047432 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 20 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289137474 2018-08-04 16:52:44 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-04 12:17:00 obsr613199 S21195816 Stationary P21 EBIRD 10.0 6.0 1 G1095941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355874 2018-08-04 16:55:31 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr660965 S21630459 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764280 2018-08-04 16:52:40 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr485179 S21164107 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216765 2021-03-24 19:23:17.886063 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 30 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741300 2019-07-23 17:27:05 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098404 2018-08-04 16:52:40 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr465975 S21192664 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355506 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 30 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292457834 2019-07-23 17:27:09 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 41 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291971037 2018-08-04 16:53:55 337 species avibase-694C127A Mute Swan Cygnus olor 22 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake - Fall Brook (private) L1377696 P 42.832681 -76.3456749 2015-01-18 09:38:00 obsr37213 S21421856 Traveling P22 EBIRD 57.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380949 2021-03-30 19:03:28.117389 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 50 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292925990 2021-03-26 06:11:29.8335 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 52 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Harbor Marina (private) L632907 H 42.8396606 -76.69735909999999 2015-01-24 14:03:00 obsr75717 S21517633 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293051290 2018-08-04 16:55:10 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 19 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr151326 S21526856 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292899136 2015-01-24 20:40:49 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 8 United States US New York US-NY Cayuga US-NY-011 13.0 Ellis Rd., Levanna L1340510 H 42.7851685 -76.71619140000001 2015-01-24 11:48:00 obsr75717 S21515496 Traveling P22 EBIRD 6.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294335775 2019-11-29 17:53:52 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 15:13:00 obsr520305 S21628957 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683395 2015-01-12 14:34:29 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr68520 S21319401 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026993 2021-03-30 19:03:28.117389 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877958 2018-08-04 16:55:05 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 26 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-24 08:28:00 obsr75717 S21513574 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216014 2021-03-19 16:06:54.047432 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 30 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219881 2018-08-04 16:55:31 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus X United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr160104 S21619562 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218493 2021-03-30 19:03:28.117389 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 20 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217498 2021-03-26 06:11:29.8335 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 15 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355615 2021-03-24 19:23:17.886063 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 30 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355651 2021-03-26 06:11:29.8335 303 species avibase-B59E1863 Canada Goose Branta canadensis 15 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434734 2015-01-11 17:05:25 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr317741 S21299206 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289134963 2018-08-04 16:52:44 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-04 12:17:00 obsr317741 S21195588 Stationary P21 EBIRD 10.0 6.0 1 G1095941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293039743 2019-11-29 18:03:23 337 species avibase-694C127A Mute Swan Cygnus olor X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 NY:CAY:Ledyard: NYS-90: Wells College boathouse L1071843 P 42.7451252 -76.7010149 2015-01-24 12:48:00 obsr520305 S21525942 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211933 2021-03-19 16:06:54.047432 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr160104 S21619012 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111487 2021-03-19 16:06:54.047432 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 20 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735232 2019-07-23 17:27:05 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537537 2021-04-01 10:49:39.496318 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288475 2018-08-04 16:55:30 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214017 2021-03-30 19:03:28.117389 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 50 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312123312 2018-08-04 16:55:10 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 19 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr760316 S23001567 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434518 2018-08-04 16:53:07 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:00:00 obsr378414 S21299184 Stationary P21 EBIRD 20.0 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033213 2021-03-19 16:06:54.047432 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 20 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210935 2021-03-26 06:11:29.8335 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293924491 2021-03-24 19:23:17.886063 1375 species avibase-4B9EEF56 Ring-necked Pheasant Phasianus colchicus X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-29 10:00:00 obsr486113 S21596457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354627 2021-03-26 06:11:29.8335 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293892354 2020-06-27 08:21:38 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lick St N/ NYS-90, Christmas tree farm L2207177 P 42.6485278 -76.3455176 2015-01-29 14:10:00 obsr520305 S21594135 Traveling P22 EBIRD 10.0 0.322 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294527084 2021-03-31 03:59:50.422612 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard Road L3333894 P 42.7003994 -76.64253470000001 2015-01-31 13:00:00 obsr493483 S21643868 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294264688 2021-03-24 19:23:17.886063 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-31 obsr486113 S21623325 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293890516 2019-11-29 18:27:29 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lake Como Rd: Lane E: #1196 L3326108 P 42.6759534 -76.3046327 2015-01-29 11:50:00 obsr520305 S21594008 Traveling P22 EBIRD 52.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544064 2015-01-11 21:18:21 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr77889 S21308081 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391660 2015-01-11 21:18:21 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr630514 S21295872 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870232 2015-03-08 21:09:52 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr214884 S22246830 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290385286 2018-08-04 16:53:08 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-11 11:29:00 obsr257692 S21295337 Incidental P20 EBIRD 2.0 0 G1105899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521285 2018-08-04 16:53:08 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-11 11:29:00 obsr151326 S21306331 Incidental P20 EBIRD 2.0 0 G1105899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293924480 2021-03-24 19:23:17.886063 447 species avibase-C235A4D7 Gadwall Mareca strepera X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-29 10:00:00 obsr486113 S21596457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026999 2021-03-30 19:03:28.117389 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557560 2020-05-02 15:38:26 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 5 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-27 13:03:00 obsr595883 S21567472 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293903510 2015-01-29 19:13:49 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 6 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lake Como:E Lake Rd 1285 L2589477 P 42.67978170000001 -76.3022717 2015-01-29 12:50:00 obsr520305 S21594914 Stationary P21 EBIRD 5.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116142 2021-04-01 10:49:39.496318 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288126562 2021-03-26 06:11:29.8335 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 14 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320911 2018-08-04 16:55:30 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr223307 S21627703 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288427449 2015-01-02 09:47:38 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 7 United States US New York US-NY Cayuga US-NY-011 13.0 Backyard Haven L758893 P 42.9395754 -76.5754192 2015-01-01 08:11:00 obsr232835 S21136347 Stationary P21 EBIRD 15.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537538 2021-04-01 10:49:39.496318 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288487 2018-08-04 16:55:30 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294029056 2020-05-02 15:38:26 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 10 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-30 16:10:00 obsr595883 S21604821 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289444912 2015-01-06 08:32:01 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Mobbs Road L3270333 P 42.880492700000005 -76.563549 2015-01-04 10:30:00 obsr318875 S21219450 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289482474 2015-01-06 13:16:15 303 species avibase-B59E1863 Canada Goose Branta canadensis 16 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Sterling - 43.3687x-76.6503 - Jan 6, 2015, 1:13 PM L3270901 P 43.368744 -76.650251 2015-01-06 13:13:00 obsr335050 S21222729 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294153023 2020-05-02 15:38:26 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 6 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-31 13:33:00 obsr595883 S21614483 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292704316 2015-01-22 22:17:14 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-22 15:45:00 obsr542235 S21500024 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480072 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 11 United States US New York US-NY Cayuga US-NY-011 13.0 McFarland Road L792888 P 43.3699926 -76.6313553 2015-01-11 13:18:00 obsr385404 S21302955 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294039869 2021-03-24 19:23:17.886063 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-30 08:45:00 obsr68520 S21605751 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294264682 2021-03-24 19:23:17.886063 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-31 obsr486113 S21623325 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292266445 2021-03-26 06:11:29.8335 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-18 08:45:00 obsr705863 S21444552 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993881 2021-03-26 06:11:29.8335 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289469110 2021-03-24 19:23:17.886063 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Sterling-14340-14346 Victory St L3270675 P 43.310953000000005 -76.70646500000001 2015-01-06 11:44:00 obsr335050 S21221510 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292455419 2019-07-23 17:27:09 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354166 2021-03-26 06:11:29.8335 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289464453 2021-03-24 19:23:17.886063 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Cato-11126 South St L3270600 P 43.155871000000005 -76.570162 2015-01-06 11:18:00 obsr335050 S21221122 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293924485 2021-03-24 19:23:17.886063 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-29 10:00:00 obsr486113 S21596457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293890514 2019-11-29 18:27:29 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lake Como Rd: Lane E: #1196 L3326108 P 42.6759534 -76.3046327 2015-01-29 11:50:00 obsr520305 S21594008 Traveling P22 EBIRD 52.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294150346 2018-08-04 16:55:30 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr99508 S21614279 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290479191 2021-04-01 10:49:39.496318 456 species avibase-D201EB72 American Wigeon Mareca americana 6 United States US New York US-NY Cayuga US-NY-011 13.0 Irwin Road L372903 P 43.3938222 -76.63066859999999 2015-01-11 13:00:00 obsr385404 S21296879 Traveling P22 EBIRD 8.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292504170 2021-04-01 10:49:39.496318 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-21 11:55:00 obsr223307 S21484189 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294154360 2015-01-31 14:15:04 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 6 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como #1291 E Lake Rd L1808836 P 42.679629 -76.301994 2015-01-31 13:27:00 obsr630514 S21614577 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870243 2015-03-08 21:09:52 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 14 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr214884 S22246830 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380966 2021-03-30 19:03:28.117389 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293109178 2018-08-04 16:55:13 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 5 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-25 11:09:00 obsr301884 S21531872 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391845 2015-01-11 21:18:07 681 species avibase-407E2CA8 Common Merganser Mergus merganser 10 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr630514 S21295886 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294133388 2016-07-19 14:06:08 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt Rd. L366919 H 42.6564028 -76.3262996 2015-01-31 12:14:00 obsr630514 S21612989 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869918 2021-03-26 06:11:29.8335 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr214884 S22246811 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391671 2015-01-11 21:18:21 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 14 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr630514 S21295872 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111490 2021-03-19 16:06:54.047432 11371 species avibase-75600969 Northern Flicker Colaptes auratus X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354634 2021-03-26 06:11:29.8335 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210942 2021-03-26 06:11:29.8335 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026987 2021-03-30 19:03:28.117389 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354573 2015-02-01 12:41:20 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt, Hoag and Dresser Rd. area L573479 H 42.6674167 -76.3267422 2015-01-31 09:49:00 obsr660965 S21630356 Traveling P22 EBIRD 16.0 1.287 2.0 1 G1131432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354695 2021-03-19 16:06:54.047432 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr660965 S21630374 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355525 2021-03-19 16:06:54.047432 456 species avibase-D201EB72 American Wigeon Mareca americana 18 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216781 2021-03-24 19:23:17.886063 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543996 2015-01-11 21:18:07 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr77889 S21308076 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211941 2021-03-19 16:06:54.047432 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr160104 S21619012 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544075 2015-01-11 21:18:21 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 14 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr77889 S21308081 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287598 2019-11-29 17:55:18 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 7 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: S/Long Pt SP L3289857 P 42.711757 -76.70484240000002 2015-01-31 13:19:00 obsr520305 S21625018 Traveling P22 EBIRD 7.0 0.8690000000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870261 2015-03-08 21:09:53 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 10 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr214884 S22246832 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209374 2015-02-01 12:41:20 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt, Hoag and Dresser Rd. area L573479 H 42.6674167 -76.3267422 2015-01-31 09:49:00 obsr160104 S21618791 Traveling P22 EBIRD 16.0 1.287 2.0 1 G1131432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355630 2021-03-24 19:23:17.886063 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 4 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214034 2021-03-30 19:03:28.117389 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116456 2015-01-01 09:52:28 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 11 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard, 1544 Lake Rd L1802598 P 42.7108 -76.69261999999999 2015-01-01 09:22:00 obsr223307 S21110527 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216033 2021-03-19 16:06:54.047432 6339 species avibase-8535345B Herring Gull Larus argentatus 18 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291638897 2021-03-26 06:11:29.8335 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr630514 S21396396 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293104953 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco - Reynolds Rd. L631459 P 42.8693593 -76.4608526 2015-01-04 11:15:00 obsr37213 S21531559 Traveling P22 EBIRD 43.0 1.931 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293924486 2021-03-24 19:23:17.886063 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-29 10:00:00 obsr486113 S21596457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993297 2021-03-26 06:11:29.8335 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr160104 S21601821 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355514 2021-03-19 16:06:54.047432 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294264691 2021-03-24 19:23:17.886063 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-31 obsr486113 S21623325 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288427447 2015-01-02 09:47:38 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 Backyard Haven L758893 P 42.9395754 -76.5754192 2015-01-01 08:11:00 obsr232835 S21136347 Stationary P21 EBIRD 15.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214025 2021-03-30 19:03:28.117389 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210931 2021-03-26 06:11:29.8335 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 4 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380957 2021-03-30 19:03:28.117389 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557552 2020-05-02 15:38:26 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-27 13:03:00 obsr595883 S21567472 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111504 2021-03-19 16:06:54.047432 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294029052 2020-05-02 15:38:26 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-30 16:10:00 obsr595883 S21604821 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537539 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292704313 2015-01-22 22:17:14 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 1 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-22 15:45:00 obsr542235 S21500024 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993892 2021-03-26 06:11:29.8335 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294153016 2020-05-02 15:38:26 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-31 13:33:00 obsr595883 S21614483 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289482470 2015-01-06 13:16:15 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Sterling - 43.3687x-76.6503 - Jan 6, 2015, 1:13 PM L3270901 P 43.368744 -76.650251 2015-01-06 13:13:00 obsr335050 S21222729 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116137 2021-04-01 10:49:39.496318 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290379177 2018-08-04 16:53:07 1375 species avibase-4B9EEF56 Ring-necked Pheasant Phasianus colchicus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr317741 S21294812 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288705631 2018-01-14 21:21:32 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-02 12:19:00 obsr232835 S21159474 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216022 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219196 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr160104 S21619509 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354177 2021-03-26 06:11:29.8335 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290682971 2018-08-04 16:53:07 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr68520 S21319366 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288126555 2021-03-26 06:11:29.8335 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354132 2021-03-26 06:11:29.8335 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr660965 S21630306 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294039876 2021-03-24 19:23:17.886063 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-30 08:45:00 obsr68520 S21605751 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293890521 2019-11-29 18:27:29 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lake Como Rd: Lane E: #1196 L3326108 P 42.6759534 -76.3046327 2015-01-29 11:50:00 obsr520305 S21594008 Traveling P22 EBIRD 52.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469141 2018-08-04 16:53:07 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr613199 S21302036 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354623 2021-03-26 06:11:29.8335 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299321 2018-08-04 16:52:46 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-04 15:30:00 obsr318875 S21208053 Traveling P22 EBIRD 30.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294381001 2021-03-19 16:06:54.047432 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr660965 S21632370 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289464447 2021-03-24 19:23:17.886063 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Cato-11126 South St L3270600 P 43.155871000000005 -76.570162 2015-01-06 11:18:00 obsr335050 S21221122 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870234 2015-03-08 21:09:52 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr214884 S22246830 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294154353 2015-01-31 14:15:04 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como #1291 E Lake Rd L1808836 P 42.679629 -76.301994 2015-01-31 13:27:00 obsr630514 S21614577 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391662 2015-01-11 21:18:21 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr630514 S21295872 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653055 2019-07-23 17:27:05 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr630514 S21397552 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026982 2021-03-30 19:03:28.117389 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870004 2019-07-23 17:27:05 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr214884 S22246816 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544066 2015-01-11 21:18:21 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr77889 S21308081 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543989 2015-01-11 21:18:07 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr77889 S21308076 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294171539 2015-01-31 15:37:41 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 12:53:00 obsr630514 S21615952 Traveling P22 EBIRD 28.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291706976 2015-03-08 19:37:21 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr630514 S21401294 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294133381 2016-07-19 14:06:08 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt Rd. L366919 H 42.6564028 -76.3262996 2015-01-31 12:14:00 obsr630514 S21612989 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391838 2015-01-11 21:18:07 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr630514 S21295886 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870254 2015-03-08 21:09:53 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr214884 S22246832 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869963 2015-03-08 21:09:39 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr214884 S22246815 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294166349 2018-08-04 16:55:29 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-31 11:12:00 obsr79559 S21615638 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218496 2021-03-30 19:03:28.117389 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290434802 2018-08-04 16:53:07 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr317741 S21299212 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290469256 2018-08-04 16:53:07 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr613199 S21302044 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290616702 2021-03-26 06:11:29.8335 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-12 08:26:00 obsr630514 S21313323 Stationary P21 EBIRD 20.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294355705 2021-03-30 19:03:28.117389 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290683098 2018-08-04 16:53:07 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr68520 S21319374 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290469142 2018-08-04 16:53:07 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr613199 S21302036 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289023 2021-03-19 16:06:54.047432 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: forest N/Long Pt SP L3330817 P 42.7218766 -76.7081952 2015-01-31 14:14:00 obsr520305 S21625110 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290682972 2018-08-04 16:53:07 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr68520 S21319366 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290379178 2018-08-04 16:53:07 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr317741 S21294812 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293113940 2018-08-04 16:55:14 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-25 11:51:00 obsr301884 S21532269 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294337544 2021-03-19 16:06:54.047432 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Aurelius: River Rd, S leg L3331543 P 42.9435287 -76.7316297 2015-01-31 16:25:00 obsr520305 S21629113 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292504174 2021-04-01 10:49:39.496318 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus N 100 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-21 11:55:00 obsr223307 S21484189 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537524 2021-04-01 10:49:39.496318 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291535795 2021-03-19 16:06:54.047432 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-17 15:00:00 obsr386262 S21388272 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993888 2021-03-26 06:11:29.8335 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 10 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294289026 2021-03-19 16:06:54.047432 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 8 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: forest N/Long Pt SP L3330817 P 42.7218766 -76.7081952 2015-01-31 14:14:00 obsr520305 S21625110 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111503 2021-03-19 16:06:54.047432 526 species avibase-56CCA717 Northern Pintail Anas acuta N X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354370 2021-04-01 10:49:39.496318 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 40 United States US New York US-NY Cayuga US-NY-011 13.0 Triangle Diner L368656 H 42.664724 -76.638903 2015-01-30 11:25:00 obsr660965 S21630332 Stationary P21 EBIRD 3.0 2.0 1 G1131425 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355627 2021-03-24 19:23:17.886063 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 5 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480070 2021-04-01 10:49:39.496318 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N X United States US New York US-NY Cayuga US-NY-011 13.0 McFarland Road L792888 P 43.3699926 -76.6313553 2015-01-11 13:18:00 obsr385404 S21302955 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033197 2021-03-19 16:06:54.047432 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N X United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380992 2021-03-19 16:06:54.047432 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr660965 S21632370 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354520 2021-03-19 16:06:54.047432 505 species avibase-C732CB10 American Black Duck Anas rubripes N 2 United States US New York US-NY Cayuga US-NY-011 28.0 Summerhill SF--Lick St. Christmas Tree Farm L1318052 H 42.6464402 -76.3459897 2015-01-31 09:41:00 obsr660965 S21630348 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1131430 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288104669 2021-03-26 06:11:29.8335 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 5 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-01 08:56:00 obsr223307 S21109713 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354277 2021-03-19 16:06:54.047432 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 2 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3327291 P 42.70038 -76.6437 2015-01-30 11:05:00 obsr660965 S21630316 Traveling P22 EBIRD 11.0 0.483 2.0 1 G1131422 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354631 2021-03-26 06:11:29.8335 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 20 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291490575 2021-03-19 16:06:54.047432 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-17 12:30:00 obsr613199 S21384636 Stationary P21 EBIRD 15.0 2.0 1 G1112142 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293994158 2021-03-19 16:06:54.047432 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N 2 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3327291 P 42.70038 -76.6437 2015-01-30 11:05:00 obsr160104 S21601874 Traveling P22 EBIRD 11.0 0.483 2.0 1 G1131422 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216029 2021-03-19 16:06:54.047432 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 10 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216778 2021-03-24 19:23:17.886063 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 5 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539660 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-17 15:40:00 obsr386262 S21388589 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291638895 2021-03-26 06:11:29.8335 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 100 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr630514 S21396396 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293994352 2021-04-01 10:49:39.496318 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 40 United States US New York US-NY Cayuga US-NY-011 13.0 Triangle Diner L368656 H 42.664724 -76.638903 2015-01-30 11:25:00 obsr160104 S21601877 Stationary P21 EBIRD 3.0 2.0 1 G1131425 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869916 2021-03-26 06:11:29.8335 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 100 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr214884 S22246811 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010651 2021-03-19 16:06:54.047432 483 species avibase-85625D75 Mallard Anas platyrhynchos N X United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291732575 2021-04-01 10:49:39.496318 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:30:00 obsr317741 S21403330 Traveling P22 EBIRD 20.0 0.805 7.0 1 G1114094 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211938 2021-03-19 16:06:54.047432 303 species avibase-B59E1863 Canada Goose Branta canadensis N 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr160104 S21619012 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137353 2021-03-19 16:06:54.047432 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr223307 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355657 2021-03-26 06:11:29.8335 303 species avibase-B59E1863 Canada Goose Branta canadensis N 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288763941 2021-03-19 16:06:54.047432 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii N 15 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-03 14:44:00 obsr485179 S21164081 Traveling P22 EBIRD 2.0 0.805 2.0 1 G1095573 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354692 2021-03-19 16:06:54.047432 505 species avibase-C732CB10 American Black Duck Anas rubripes N 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr660965 S21630374 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098134 2021-03-19 16:06:54.047432 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 15 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-03 14:44:00 obsr465975 S21192639 Traveling P22 EBIRD 2.0 0.805 2.0 1 G1095573 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217504 2021-03-26 06:11:29.8335 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219201 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr160104 S21619509 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741220 2021-04-01 10:49:39.496318 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:30:00 obsr613199 S21404051 Traveling P22 EBIRD 20.0 0.805 7.0 1 G1114094 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210259 2021-03-19 16:06:54.047432 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 2 United States US New York US-NY Cayuga US-NY-011 28.0 Summerhill SF--Lick St. Christmas Tree Farm L1318052 H 42.6464402 -76.3459897 2015-01-31 09:41:00 obsr160104 S21618858 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1131430 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291456911 2021-03-19 16:06:54.047432 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis N X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-17 12:30:00 obsr317741 S21381981 Stationary P21 EBIRD 15.0 2.0 1 G1112142 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026983 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 30 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290616707 2021-03-26 06:11:29.8335 303 species avibase-B59E1863 Canada Goose Branta canadensis N 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-12 08:26:00 obsr630514 S21313323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210939 2021-03-26 06:11:29.8335 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 20 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355521 2021-03-19 16:06:54.047432 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 10 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116136 2021-04-01 10:49:39.496318 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 20 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354173 2021-03-26 06:11:29.8335 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 10 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289464451 2021-03-24 19:23:17.886063 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N X United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Cato-11126 South St L3270600 P 43.155871000000005 -76.570162 2015-01-06 11:18:00 obsr335050 S21221122 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098467 2018-08-04 16:52:40 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 15 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-03 14:13:00 obsr465975 S21192672 Incidental P20 EBIRD 1.0 0 G1095579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288754821 2018-08-04 16:52:40 26890 species avibase-94A44032 European Starling Sturnus vulgaris 15 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-03 14:13:00 obsr485179 S21163375 Incidental P20 EBIRD 1.0 0 G1095579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219121 2018-08-04 16:55:31 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 15 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 14:43:00 obsr160104 S21619503 Stationary P21 EBIRD 7.0 2.0 1 G1131447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290982439 2018-08-04 16:53:18 592 species avibase-3072CC16 Redhead Aythya americana 20 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-14 13:13:00 obsr628463 S21343142 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469491 2018-08-04 16:53:08 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr613199 S21302063 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214001 2021-03-30 19:03:28.117389 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288150085 2018-08-04 16:52:21 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 75 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-01 11:41:00 obsr223307 S21113445 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010660 2021-03-19 16:06:54.047432 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320459 2018-08-04 16:55:29 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 12:20:00 obsr223307 S21627679 Stationary P21 EBIRD 8.0 1.0 1 G1131260 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033206 2021-03-19 16:06:54.047432 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 8 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292922401 2018-01-14 21:21:32 592 species avibase-3072CC16 Redhead Aythya americana 13 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-24 13:57:00 obsr75717 S21517356 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291204795 2018-08-04 16:53:21 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 40 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Union Springs: Factory St pond L2109353 P 42.8411868 -76.6943657 2015-01-15 13:15:00 obsr520305 S21361423 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290444971 2018-08-04 16:53:08 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr317741 S21300011 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537553 2021-04-01 10:49:39.496318 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292920614 2018-08-04 16:55:09 337 species avibase-694C127A Mute Swan Cygnus olor 16 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:40:00 obsr75717 S21517212 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293116323 2018-08-04 16:55:14 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 15 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-25 11:58:00 obsr301884 S21532441 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293113936 2018-08-04 16:55:14 681 species avibase-407E2CA8 Common Merganser Mergus merganser 40 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-25 11:51:00 obsr301884 S21532269 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135197 2018-08-04 16:52:43 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 West end of Lake Rd L3134977 P 42.7103807 -76.6994619 2015-01-04 11:19:00 obsr613199 S21195614 Traveling P22 EBIRD 19.0 0.805 6.0 1 G1095922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469282 2018-08-04 16:53:08 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 20 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr613199 S21302047 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993889 2021-03-26 06:11:29.8335 30494 species avibase-240E3390 House Sparrow Passer domesticus 45 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288141287 2018-01-14 21:21:32 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-01 11:15:00 obsr223307 S21112582 Stationary P21 EBIRD 8.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290830940 2019-11-29 18:22:33 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Union Springs: Mill Pond, NYS-90 L1301373 P 42.8451859 -76.6912597 2015-01-04 12:56:00 obsr520305 S21330804 Stationary P21 EBIRD 5.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380933 2021-03-30 19:03:28.117389 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026986 2021-03-30 19:03:28.117389 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294133281 2018-08-04 16:55:29 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 12:20:00 obsr99508 S21612977 Stationary P21 EBIRD 8.0 1.0 1 G1131260 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292536866 2018-01-14 21:21:32 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-21 15:29:00 obsr232835 S21486815 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290827440 2019-11-29 17:55:18 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: S/Long Pt SP L3289857 P 42.711757 -76.70484240000002 2015-01-04 11:28:00 obsr520305 S21330494 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293972369 2018-08-04 16:55:25 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 08:42:00 obsr151326 S21600433 Stationary P21 EBIRD 5.0 2.0 1 G1129048 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354174 2021-03-26 06:11:29.8335 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 45 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917444 2018-08-04 16:55:08 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:25:00 obsr455504 S21516940 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293109165 2018-08-04 16:55:13 662 species avibase-FB738385 Bufflehead Bucephala albeola 8 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-25 11:09:00 obsr301884 S21531872 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294135115 2018-08-04 16:55:30 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 74 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 12:30:00 obsr99508 S21613084 Stationary P21 EBIRD 5.0 1.0 1 G1131263 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870399 2018-08-04 16:53:01 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 30 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr214884 S22246846 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289066674 2018-08-04 16:52:46 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 6 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-04 15:15:00 obsr630514 S21190004 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993291 2021-03-26 06:11:29.8335 681 species avibase-407E2CA8 Common Merganser Mergus merganser 50 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr160104 S21601821 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320647 2018-08-04 16:55:30 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 74 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 12:30:00 obsr223307 S21627686 Stationary P21 EBIRD 5.0 1.0 1 G1131263 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135080 2018-08-04 16:52:44 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-04 12:55:00 obsr613199 S21195600 Stationary P21 EBIRD 4.0 6.0 1 G1095920 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288705630 2018-01-14 21:21:32 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-02 12:19:00 obsr232835 S21159474 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968735 2018-08-04 16:53:56 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 4 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290380116 2021-04-01 10:49:39.496318 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 25 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 11:01:00 obsr257692 S21294888 Stationary P21 EBIRD 4.0 1.0 1 G1105901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289019247 2018-08-04 16:52:44 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-04 12:55:00 obsr317741 S21186459 Stationary P21 EBIRD 4.0 6.0 1 G1095920 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292537034 2018-08-04 16:54:50 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 7 United States US New York US-NY Cayuga US-NY-011 13.0 Mill Pond L1057399 P 42.844821200000005 -76.6919732 2015-01-21 15:41:00 obsr232835 S21486831 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288471 2018-08-04 16:55:30 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293959395 2018-08-04 16:55:25 11494 species avibase-20C2214E American Kestrel Falco sparverius 4 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 08:42:00 obsr257692 S21599183 Stationary P21 EBIRD 5.0 2.0 1 G1129048 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683277 2018-08-04 16:53:08 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 20 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr68520 S21319389 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294550144 2018-08-04 16:55:15 30494 species avibase-240E3390 House Sparrow Passer domesticus 8 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-25 13:00:00 obsr476925 S21645814 Stationary P21 EBIRD 45.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521293 2021-04-01 10:49:39.496318 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 25 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 11:01:00 obsr151326 S21306333 Stationary P21 EBIRD 4.0 1.0 1 G1105901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354126 2021-03-26 06:11:29.8335 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 50 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr660965 S21630306 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683514 2018-08-04 16:53:08 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr68520 S21319413 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355731 2018-08-04 16:55:31 662 species avibase-FB738385 Bufflehead Bucephala albeola 15 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 14:43:00 obsr660965 S21630449 Stationary P21 EBIRD 7.0 2.0 1 G1131447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288705308 2018-08-04 16:52:30 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 8 United States US New York US-NY Cayuga US-NY-011 13.0 Mill Pond L1057399 P 42.844821200000005 -76.6919732 2015-01-02 11:53:00 obsr232835 S21159449 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290438607 2018-08-04 16:53:08 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 20 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr317741 S21299516 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543372 2018-08-04 16:53:01 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 30 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr77889 S21308022 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288992974 2018-08-04 16:52:43 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. L3278634 P 42.7105699 -76.7030239 2015-01-04 11:19:00 obsr317741 S21184357 Traveling P22 EBIRD 19.0 0.805 6.0 1 G1095922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172919 2018-08-04 16:53:01 681 species avibase-407E2CA8 Common Merganser Mergus merganser 30 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr630514 S21277927 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290985138 2018-08-04 16:53:18 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 98 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-14 13:23:00 obsr628463 S21343327 Stationary P21 EBIRD 10.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294380994 2021-03-19 16:06:54.047432 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 158 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr660965 S21632370 Stationary P21 EBIRD 9.0 2.0 1 G1131559 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294219189 2021-03-19 16:06:54.047432 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 158 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr160104 S21619509 Stationary P21 EBIRD 9.0 2.0 1 G1131559 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294355655 2021-03-26 06:11:29.8335 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380954 2021-03-30 19:03:28.117389 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292455414 2019-07-23 17:27:09 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355621 2021-03-24 19:23:17.886063 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288485 2018-08-04 16:55:30 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877963 2018-08-04 16:55:05 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-24 08:28:00 obsr75717 S21513574 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741297 2019-07-23 17:27:05 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288144731 2018-08-04 16:52:20 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-01 11:21:00 obsr223307 S21112915 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218500 2021-03-30 19:03:28.117389 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 3 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033205 2021-03-19 16:06:54.047432 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288158600 2019-09-10 13:56:02 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-01 12:18:00 obsr223307 S21114131 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292898173 2018-08-04 16:55:07 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-24 10:58:00 obsr75717 S21515398 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870003 2019-07-23 17:27:05 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr214884 S22246816 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289444576 2015-01-06 08:27:42 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 2 United States US New York US-NY Cayuga US-NY-011 13.0 NY 38- Stone School L3270331 P 42.8724416 -76.53917309999999 2015-01-04 12:00:00 obsr318875 S21219420 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137348 2021-03-19 16:06:54.047432 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr223307 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355877 2018-08-04 16:55:31 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr660965 S21630459 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735229 2019-07-23 17:27:05 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292882062 2018-08-04 16:55:06 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-24 09:32:00 obsr75717 S21513915 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217502 2021-03-26 06:11:29.8335 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010659 2021-03-19 16:06:54.047432 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653054 2019-07-23 17:27:05 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr630514 S21397552 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216772 2021-03-24 19:23:17.886063 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214022 2021-03-30 19:03:28.117389 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543352 2018-08-04 16:53:00 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr77889 S21308019 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290162922 2018-08-04 16:53:00 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr630514 S21277064 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355709 2021-03-30 19:03:28.117389 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293994077 2018-08-04 16:55:26 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr160104 S21601836 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111486 2021-03-19 16:06:54.047432 622 species avibase-50566E50 Lesser Scaup Aythya affinis X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354179 2018-08-04 16:55:26 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr660965 S21630310 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219884 2018-08-04 16:55:31 508 slash avibase-52C49405 Mallard/American Black Duck Anas platyrhynchos/rubripes 4 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr160104 S21619562 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292891042 2021-03-26 06:11:29.8335 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-01-24 10:30:00 obsr75717 S21514737 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293051281 2018-08-04 16:55:10 20829 species avibase-B9B272F4 Common Raven Corvus corax 5 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr151326 S21526856 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312123303 2018-08-04 16:55:10 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr760316 S23001567 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292186233 2018-08-04 16:54:47 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Emerson Park L354461 H 42.901996 -76.537299 2015-01-20 14:19:00 obsr232835 S21438675 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870433 2018-08-04 16:53:00 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr214884 S22246849 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293113938 2018-08-04 16:55:14 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-25 11:51:00 obsr301884 S21532269 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288150089 2018-08-04 16:52:21 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-01 11:41:00 obsr223307 S21113445 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380996 2021-03-19 16:06:54.047432 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 3 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr660965 S21632370 Stationary P21 EBIRD 9.0 2.0 1 G1131559 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294219191 2021-03-19 16:06:54.047432 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 3 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr160104 S21619509 Stationary P21 EBIRD 9.0 2.0 1 G1131559 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294354172 2021-03-26 06:11:29.8335 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293993887 2021-03-26 06:11:29.8335 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291204798 2018-08-04 16:53:21 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Union Springs: Factory St pond L2109353 P 42.8411868 -76.6943657 2015-01-15 13:15:00 obsr520305 S21361423 Stationary P21 EBIRD 5.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288537550 2021-04-01 10:49:39.496318 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290380118 2021-04-01 10:49:39.496318 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 11:01:00 obsr257692 S21294888 Stationary P21 EBIRD 4.0 1.0 1 G1105901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521295 2021-04-01 10:49:39.496318 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 11:01:00 obsr151326 S21306333 Stationary P21 EBIRD 4.0 1.0 1 G1105901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290985141 2018-08-04 16:53:18 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-14 13:23:00 obsr628463 S21343327 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292922402 2018-01-14 21:21:32 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-24 13:57:00 obsr75717 S21517356 Stationary P21 EBIRD 3.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290469492 2018-08-04 16:53:08 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr613199 S21302063 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290683515 2018-08-04 16:53:08 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr68520 S21319413 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290444972 2018-08-04 16:53:08 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr317741 S21300011 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294335784 2019-11-29 17:53:52 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 15:13:00 obsr520305 S21628957 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137352 2021-03-19 16:06:54.047432 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr223307 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355626 2021-03-24 19:23:17.886063 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288472 2018-08-04 16:55:30 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216777 2021-03-24 19:23:17.886063 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294039524 2020-10-12 18:18:36 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Dorothy McIlroy Bird Sanctuary (FLLT) L295002 H 42.670086100000006 -76.2951639 2015-01-30 08:00:00 obsr68520 S21605720 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294336634 2019-11-29 18:23:11 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Union Springs: Mill Pond outlet streams L3331514 P 42.84565 -76.69557809999999 2015-01-31 16:11:00 obsr520305 S21629032 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292925991 2021-03-26 06:11:29.8335 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Harbor Marina (private) L632907 H 42.8396606 -76.69735909999999 2015-01-24 14:03:00 obsr75717 S21517633 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288158101 2015-01-01 12:25:47 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Union Springs just north of L1485735 P 42.8569751 -76.6916362 2015-01-01 11:57:00 obsr223307 S21114088 Stationary P21 EBIRD 1.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537551 2021-04-01 10:49:39.496318 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324993176 2018-08-04 16:54:45 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake L3696266 P 42.7716286 -76.71069229999999 2015-01-20 09:00:00 obsr503745 S23775359 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653046 2019-07-23 17:27:05 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 200 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr630514 S21397552 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288483 2018-08-04 16:55:30 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216010 2021-03-19 16:06:54.047432 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 50 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137341 2021-03-19 16:06:54.047432 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr223307 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294335790 2019-11-29 17:53:52 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 15:13:00 obsr520305 S21628957 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355502 2021-03-19 16:06:54.047432 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 50 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764277 2018-08-04 16:52:40 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr485179 S21164107 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869995 2019-07-23 17:27:05 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 200 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr214884 S22246816 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292898168 2018-08-04 16:55:07 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 20 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-24 10:58:00 obsr75717 S21515398 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735223 2019-07-23 17:27:05 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741291 2019-07-23 17:27:05 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355699 2021-03-30 19:03:28.117389 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 40 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968741 2018-08-04 16:53:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218490 2021-03-30 19:03:28.117389 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 40 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380941 2021-03-30 19:03:28.117389 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214009 2021-03-30 19:03:28.117389 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 20 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098401 2018-08-04 16:52:40 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr465975 S21192664 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354624 2021-03-26 06:11:29.8335 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289257557 2021-03-30 19:03:28.117389 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-04 12:50:00 obsr437271 S21204654 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210932 2021-03-26 06:11:29.8335 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111502 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557553 2020-05-02 15:38:26 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-27 13:03:00 obsr595883 S21567472 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537530 2021-04-01 10:49:39.496318 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293890511 2019-11-29 18:27:29 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lake Como Rd: Lane E: #1196 L3326108 P 42.6759534 -76.3046327 2015-01-29 11:50:00 obsr520305 S21594008 Traveling P22 EBIRD 52.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294171540 2015-01-31 15:37:41 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 12:53:00 obsr630514 S21615952 Traveling P22 EBIRD 28.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543990 2015-01-11 21:18:07 526 species avibase-56CCA717 Northern Pintail Anas acuta 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr77889 S21308076 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544067 2015-01-11 21:18:21 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr77889 S21308081 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870235 2015-03-08 21:09:52 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr214884 S22246830 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870255 2015-03-08 21:09:53 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr214884 S22246832 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391839 2015-01-11 21:18:07 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr630514 S21295886 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391663 2015-01-11 21:18:21 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr630514 S21295872 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111772 2018-08-04 16:55:14 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-25 11:35:00 obsr301884 S21532080 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290616703 2021-03-26 06:11:29.8335 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-12 08:26:00 obsr630514 S21313323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098322 2018-08-04 16:52:40 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-03 14:35:00 obsr465975 S21192654 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1095576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288126553 2021-03-26 06:11:29.8335 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288762945 2018-08-04 16:52:40 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-03 14:35:00 obsr485179 S21163999 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1095576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764282 2018-08-04 16:52:40 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr485179 S21164107 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111496 2021-03-19 16:06:54.047432 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098406 2018-08-04 16:52:40 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr465975 S21192664 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870002 2019-07-23 17:27:05 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 7 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr214884 S22246816 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653053 2019-07-23 17:27:05 616 species avibase-25C94A8F Greater Scaup Aythya marila 7 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr630514 S21397552 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137347 2021-03-19 16:06:54.047432 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr223307 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292455413 2019-07-23 17:27:09 27616 species avibase-D77E4B41 American Robin Turdus migratorius 33 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010658 2021-03-19 16:06:54.047432 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 75 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216019 2021-03-19 16:06:54.047432 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355511 2021-03-19 16:06:54.047432 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355708 2021-03-30 19:03:28.117389 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469260 2018-08-04 16:53:07 292 species avibase-60214D49 Cackling Goose Branta hutchinsii X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr613199 S21302044 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320909 2018-08-04 16:55:30 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr223307 S21627703 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290379175 2018-08-04 16:53:07 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr317741 S21294812 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116134 2021-04-01 10:49:39.496318 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877962 2018-08-04 16:55:05 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-24 08:28:00 obsr75717 S21513574 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469139 2018-08-04 16:53:07 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr613199 S21302036 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434805 2018-08-04 16:53:07 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr317741 S21299212 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216771 2021-03-24 19:23:17.886063 616 species avibase-25C94A8F Greater Scaup Aythya marila 8 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293994083 2018-08-04 16:55:26 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr160104 S21601836 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968748 2018-08-04 16:53:56 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355620 2021-03-24 19:23:17.886063 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 8 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480643 2021-03-30 19:03:28.117389 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-11 13:45:00 obsr385404 S21303009 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355876 2018-08-04 16:55:31 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr660965 S21630459 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214021 2021-03-30 19:03:28.117389 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 8 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354185 2018-08-04 16:55:26 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr660965 S21630310 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741292 2019-07-23 17:27:05 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033204 2021-03-19 16:06:54.047432 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 75 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292898172 2018-08-04 16:55:07 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-24 10:58:00 obsr75717 S21515398 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469365 2015-01-11 17:05:25 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr613199 S21302053 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219883 2018-08-04 16:55:31 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr160104 S21619562 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292882061 2018-08-04 16:55:06 447 species avibase-C235A4D7 Gadwall Mareca strepera 4 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-24 09:32:00 obsr75717 S21513915 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294335781 2019-11-29 17:53:52 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 15:13:00 obsr520305 S21628957 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292925984 2021-03-26 06:11:29.8335 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Harbor Marina (private) L632907 H 42.8396606 -76.69735909999999 2015-01-24 14:03:00 obsr75717 S21517633 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218499 2021-03-30 19:03:28.117389 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290682969 2018-08-04 16:53:07 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr68520 S21319366 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355654 2021-03-26 06:11:29.8335 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 5 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683403 2015-01-12 14:34:29 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr68520 S21319401 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380953 2021-03-30 19:03:28.117389 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 8 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292891041 2021-03-26 06:11:29.8335 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-01-24 10:30:00 obsr75717 S21514737 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288144730 2018-08-04 16:52:20 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-01 11:21:00 obsr223307 S21112915 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288488 2018-08-04 16:55:30 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683101 2018-08-04 16:53:07 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr68520 S21319374 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289257555 2021-03-30 19:03:28.117389 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 8 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-04 12:50:00 obsr437271 S21204654 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735224 2019-07-23 17:27:05 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217501 2021-03-26 06:11:29.8335 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288158599 2019-09-10 13:56:02 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-01 12:18:00 obsr223307 S21114131 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026988 2021-03-30 19:03:28.117389 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 16 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294150344 2018-08-04 16:55:30 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr99508 S21614279 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434742 2015-01-11 17:05:25 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr317741 S21299206 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537544 2021-04-01 10:49:39.496318 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543525 2021-03-30 19:03:28.117389 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr77889 S21308038 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434735 2015-01-11 17:05:25 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr317741 S21299206 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289470880 2017-04-14 14:40:46 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Cayuga US-NY-011 Little Sodus Bay L5404103 H 43.3297159 -76.7094849 2015-01-06 11:50:00 obsr335050 S21221692 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380946 2021-03-30 19:03:28.117389 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294550142 2018-08-04 16:55:15 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-25 13:00:00 obsr476925 S21645814 Stationary P21 EBIRD 45.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870332 2021-03-30 19:03:28.117389 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr214884 S22246841 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469358 2015-01-11 17:05:25 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr613199 S21302053 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214014 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968746 2018-08-04 16:53:56 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 1 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683396 2015-01-12 14:34:29 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 6 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr68520 S21319401 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288158596 2019-09-10 13:56:02 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-01 12:18:00 obsr223307 S21114131 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293027000 2021-03-30 19:03:28.117389 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 6 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290180398 2021-03-30 19:03:28.117389 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr630514 S21278516 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137345 2021-03-19 16:06:54.047432 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr223307 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111484 2021-03-19 16:06:54.047432 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543351 2018-08-04 16:53:00 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr77889 S21308019 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288480 2018-08-04 16:55:30 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469255 2018-08-04 16:53:07 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 5 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr613199 S21302044 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292886785 2019-07-23 17:27:10 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 7 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-24 09:46:00 obsr75717 S21514316 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217500 2021-03-26 06:11:29.8335 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293039740 2019-11-29 18:03:23 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 NY:CAY:Ledyard: NYS-90: Wells College boathouse L1071843 P 42.7451252 -76.7010149 2015-01-24 12:48:00 obsr520305 S21525942 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355653 2021-03-26 06:11:29.8335 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870001 2019-07-23 17:27:05 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 9 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr214884 S22246816 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735222 2019-07-23 17:27:05 11528 species avibase-F3DA111C Merlin Falco columbarius X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289137469 2018-08-04 16:52:44 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-04 12:17:00 obsr613199 S21195816 Stationary P21 EBIRD 10.0 6.0 1 G1095941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877960 2018-08-04 16:55:05 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-24 08:28:00 obsr75717 S21513574 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380950 2021-03-30 19:03:28.117389 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 5 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290162921 2018-08-04 16:53:00 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr630514 S21277064 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214018 2021-03-30 19:03:28.117389 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290828836 2018-08-04 16:52:44 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-04 11:39:00 obsr520305 S21330618 Stationary P21 EBIRD 20.0 6.0 1 G1095921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216017 2021-03-19 16:06:54.047432 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 6 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288999520 2018-08-04 16:52:44 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-04 11:39:00 obsr317741 S21184863 Stationary P21 EBIRD 20.0 6.0 1 G1095921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290616701 2021-03-26 06:11:29.8335 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-12 08:26:00 obsr630514 S21313323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289134965 2018-08-04 16:52:44 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-04 12:17:00 obsr317741 S21195588 Stationary P21 EBIRD 10.0 6.0 1 G1095941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135108 2018-08-04 16:52:44 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-04 11:39:00 obsr613199 S21195602 Stationary P21 EBIRD 20.0 6.0 1 G1095921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741290 2019-07-23 17:27:05 8829 species avibase-8F123A11 Short-eared Owl Asio flammeus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434515 2018-08-04 16:53:07 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:00:00 obsr378414 S21299184 Stationary P21 EBIRD 20.0 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355509 2021-03-19 16:06:54.047432 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 6 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292891039 2021-03-26 06:11:29.8335 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-01-24 10:30:00 obsr75717 S21514737 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434801 2018-08-04 16:53:07 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr317741 S21299212 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683097 2018-08-04 16:53:07 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr68520 S21319374 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870432 2018-08-04 16:53:00 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr214884 S22246849 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653052 2019-07-23 17:27:05 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 9 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr630514 S21397552 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216768 2021-03-24 19:23:17.886063 616 species avibase-25C94A8F Greater Scaup Aythya marila 22 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294355617 2021-03-24 19:23:17.886063 483 species avibase-85625D75 Mallard Anas platyrhynchos 22 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294335786 2019-11-29 17:53:52 303 species avibase-B59E1863 Canada Goose Branta canadensis 18 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 15:13:00 obsr520305 S21628957 Stationary P21 EBIRD 32.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291741222 2021-04-01 10:49:39.496318 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:30:00 obsr613199 S21404051 Traveling P22 EBIRD 20.0 0.805 7.0 1 G1114094 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293896565 2019-11-29 17:58:15 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 60 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Ledyard Rd: N side W/Dixon Rd L3326167 P 42.70081679999999 -76.6425562 2015-01-29 15:35:00 obsr520305 S21594472 Traveling P22 EBIRD 10.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993328 2021-04-01 10:49:39.496318 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 16 United States US New York US-NY Cayuga US-NY-011 13.0 Triangle Diner L368656 H 42.664724 -76.638903 2015-01-30 11:25:00 obsr160104 S21601877 Stationary P21 EBIRD 3.0 2.0 1 G1131425 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294160813 2015-02-01 10:16:10 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-King Ferry-815-817 Lake Rd L3329186 P 42.662618 -76.63815600000001 2015-01-31 14:12:00 obsr99508 S21615164 Stationary P21 EBIRD 1.0 1.0 1 G1131275 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354275 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 150 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3327291 P 42.70038 -76.6437 2015-01-30 11:05:00 obsr660965 S21630316 Traveling P22 EBIRD 11.0 0.483 2.0 1 G1131422 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293994156 2021-03-19 16:06:54.047432 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 150 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3327291 P 42.70038 -76.6437 2015-01-30 11:05:00 obsr160104 S21601874 Traveling P22 EBIRD 11.0 0.483 2.0 1 G1131422 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290824271 2021-04-01 10:49:39.496318 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 100 United States US New York US-NY Cayuga US-NY-011 13.0 Center Rd. L99618 H 42.6500149 -76.6246314 2015-01-04 11:00:00 obsr520305 S21330238 Traveling P22 EBIRD 10.0 0.805 6.0 1 G1095923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135367 2021-04-01 10:49:39.496318 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 13.0 Center Rd. L99618 H 42.6500149 -76.6246314 2015-01-04 11:00:00 obsr613199 S21195622 Traveling P22 EBIRD 10.0 0.805 6.0 1 G1095923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294323070 2015-02-01 10:16:10 11494 species avibase-20C2214E American Kestrel Falco sparverius X United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-King Ferry-815-817 Lake Rd L3329186 P 42.662618 -76.63815600000001 2015-01-31 14:12:00 obsr223307 S21627910 Stationary P21 EBIRD 1.0 1.0 1 G1131275 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291490574 2021-03-19 16:06:54.047432 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-17 12:30:00 obsr613199 S21384636 Stationary P21 EBIRD 15.0 2.0 1 G1112142 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291732577 2021-04-01 10:49:39.496318 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:30:00 obsr317741 S21403330 Traveling P22 EBIRD 20.0 0.805 7.0 1 G1114094 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291638893 2021-03-26 06:11:29.8335 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr630514 S21396396 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291456910 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-17 12:30:00 obsr317741 S21381981 Stationary P21 EBIRD 15.0 2.0 1 G1112142 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294527089 2021-03-31 03:59:50.422612 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard Road L3333894 P 42.7003994 -76.64253470000001 2015-01-31 13:00:00 obsr493483 S21643868 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288986680 2021-04-01 10:49:39.496318 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Cayuga US-NY-011 13.0 Center Rd. L99618 H 42.6500149 -76.6246314 2015-01-04 11:00:00 obsr317741 S21183723 Traveling P22 EBIRD 10.0 0.805 6.0 1 G1095923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354371 2021-04-01 10:49:39.496318 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 16 United States US New York US-NY Cayuga US-NY-011 13.0 Triangle Diner L368656 H 42.664724 -76.638903 2015-01-30 11:25:00 obsr660965 S21630332 Stationary P21 EBIRD 3.0 2.0 1 G1131425 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869914 2021-03-26 06:11:29.8335 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 20 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr214884 S22246811 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293957307 2015-01-30 16:56:32 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 400 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3326836 P 42.70043 -76.64254 2015-01-30 08:05:00 obsr257692 S21599026 Stationary P21 EBIRD 19.0 2.0 1 G1129049 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294211510 2018-12-04 21:19:16 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 400 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3327291 P 42.70038 -76.6437 2015-01-31 11:43:00 obsr160104 S21618973 Stationary P21 EBIRD 19.0 2.0 1 G1131562 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294381082 2018-12-04 21:19:16 483 species avibase-85625D75 Mallard Anas platyrhynchos 400 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3327291 P 42.70038 -76.6437 2015-01-31 11:43:00 obsr660965 S21632385 Stationary P21 EBIRD 19.0 2.0 1 G1131562 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293972375 2015-01-30 16:56:32 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 400 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3326836 P 42.70043 -76.64254 2015-01-30 08:05:00 obsr151326 S21600434 Stationary P21 EBIRD 19.0 2.0 1 G1129049 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294355631 2021-03-24 19:23:17.886063 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993293 2021-03-26 06:11:29.8335 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr160104 S21601821 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354637 2021-03-26 06:11:29.8335 7732 species avibase-A091D50A Northern Harrier Circus hudsonius N 4 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294039870 2021-03-24 19:23:17.886063 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 1 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-30 08:45:00 obsr68520 S21605751 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293924479 2021-03-24 19:23:17.886063 11371 species avibase-75600969 Northern Flicker Colaptes auratus N X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-29 10:00:00 obsr486113 S21596457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116135 2021-04-01 10:49:39.496318 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus N 4 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294264689 2021-03-24 19:23:17.886063 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N X Female, Unknown Age (1); Male, Unknown Age (1) United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-31 obsr486113 S21623325 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216782 2021-03-24 19:23:17.886063 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289464454 2021-03-24 19:23:17.886063 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 2 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Cato-11126 South St L3270600 P 43.155871000000005 -76.570162 2015-01-06 11:18:00 obsr335050 S21221122 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289469112 2021-03-24 19:23:17.886063 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Sterling-14340-14346 Victory St L3270675 P 43.310953000000005 -76.70646500000001 2015-01-06 11:44:00 obsr335050 S21221510 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210945 2021-03-26 06:11:29.8335 303 species avibase-B59E1863 Canada Goose Branta canadensis N 4 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354128 2021-03-26 06:11:29.8335 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) N 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr660965 S21630306 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741225 2021-04-01 10:49:39.496318 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:30:00 obsr613199 S21404051 Traveling P22 EBIRD 20.0 0.805 7.0 1 G1114094 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292266442 2021-03-26 06:11:29.8335 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N 3 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-18 08:45:00 obsr705863 S21444552 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292880539 2021-03-26 06:11:29.8335 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road north--Long Point to Lake Road bluff L1375811 P 42.728647 -76.7103856 2015-01-24 09:01:00 obsr75717 S21513779 Traveling P22 EBIRD 24.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290616708 2021-03-26 06:11:29.8335 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-12 08:26:00 obsr630514 S21313323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993295 2021-03-26 06:11:29.8335 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus N 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr160104 S21601821 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292925985 2021-03-26 06:11:29.8335 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Harbor Marina (private) L632907 H 42.8396606 -76.69735909999999 2015-01-24 14:03:00 obsr75717 S21517633 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217506 2021-03-26 06:11:29.8335 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292891044 2021-03-26 06:11:29.8335 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-01-24 10:30:00 obsr75717 S21514737 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354639 2021-03-26 06:11:29.8335 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 4 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210947 2021-03-26 06:11:29.8335 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 4 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293104961 2021-04-01 10:49:39.496318 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 4 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco - Reynolds Rd. L631459 P 42.8693593 -76.4608526 2015-01-04 11:15:00 obsr37213 S21531559 Traveling P22 EBIRD 43.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355659 2021-03-26 06:11:29.8335 20829 species avibase-B9B272F4 Common Raven Corvus corax N 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869919 2021-03-26 06:11:29.8335 20829 species avibase-B9B272F4 Common Raven Corvus corax N 32 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr214884 S22246811 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116140 2021-04-01 10:49:39.496318 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 10 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537543 2021-04-01 10:49:39.496318 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291638898 2021-03-26 06:11:29.8335 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 32 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr630514 S21396396 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292266721 2021-03-26 06:11:29.8335 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 3 United States US New York US-NY Cayuga US-NY-011 13.0 Little Sodus Bay, south L1338234 H 43.3147982 -76.71439649999999 2015-01-18 10:20:00 obsr705863 S21444578 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354130 2021-03-26 06:11:29.8335 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr660965 S21630306 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219978 2021-03-26 06:11:29.8335 662 species avibase-FB738385 Bufflehead Bucephala albeola N 8 United States US New York US-NY Cayuga US-NY-011 13.0 Union Springs--Pete's Treats L3800085 H 42.856448 -76.691703 2015-01-31 15:16:00 obsr160104 S21619571 Stationary P21 EBIRD 1.0 2.0 1 G1131449 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355894 2021-03-26 06:11:29.8335 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 8 United States US New York US-NY Cayuga US-NY-011 13.0 Union Springs--Pete's Treats L3800085 H 42.856448 -76.691703 2015-01-31 15:16:00 obsr660965 S21630462 Stationary P21 EBIRD 1.0 2.0 1 G1131449 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288104674 2021-03-26 06:11:29.8335 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii N 100 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-01 08:56:00 obsr223307 S21109713 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288129541 2021-03-26 06:11:29.8335 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291732580 2021-04-01 10:49:39.496318 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:30:00 obsr317741 S21403330 Traveling P22 EBIRD 20.0 0.805 7.0 1 G1114094 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993882 2021-03-26 06:11:29.8335 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 5 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354167 2021-03-26 06:11:29.8335 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 5 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293972377 2015-01-30 16:56:32 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3326836 P 42.70043 -76.64254 2015-01-30 08:05:00 obsr151326 S21600434 Stationary P21 EBIRD 19.0 2.0 1 G1129049 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211511 2018-12-04 21:19:16 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3327291 P 42.70038 -76.6437 2015-01-31 11:43:00 obsr160104 S21618973 Stationary P21 EBIRD 19.0 2.0 1 G1131562 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294381083 2018-12-04 21:19:16 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3327291 P 42.70038 -76.6437 2015-01-31 11:43:00 obsr660965 S21632385 Stationary P21 EBIRD 19.0 2.0 1 G1131562 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293896566 2019-11-29 17:58:15 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Ledyard Rd: N side W/Dixon Rd L3326167 P 42.70081679999999 -76.6425562 2015-01-29 15:35:00 obsr520305 S21594472 Traveling P22 EBIRD 10.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293971816 2015-01-30 16:56:32 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3326836 P 42.70043 -76.64254 2015-01-30 08:05:00 obsr257692 S21599026 Stationary P21 EBIRD 19.0 2.0 1 G1129049 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294997294 2021-03-31 03:59:50.422612 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard Road L3333894 P 42.7003994 -76.64253470000001 2015-01-31 13:00:00 obsr493483 S21643868 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293046559 2021-03-30 19:03:28.117389 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Farley's Pt Rd: N point L3315348 P 42.8226639 -76.70619559999999 2015-01-24 13:55:00 obsr520305 S21526465 Stationary P21 EBIRD 5.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290831560 2019-09-10 13:56:02 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-04 00:38:00 obsr520305 S21330855 Stationary P21 EBIRD 3.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116447 2015-01-01 09:52:28 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard, 1544 Lake Rd L1802598 P 42.7108 -76.69261999999999 2015-01-01 09:22:00 obsr223307 S21110527 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289257556 2021-03-30 19:03:28.117389 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-04 12:50:00 obsr437271 S21204654 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218491 2021-03-30 19:03:28.117389 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 25 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735228 2019-07-23 17:27:05 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216761 2021-03-24 19:23:17.886063 681 species avibase-407E2CA8 Common Merganser Mergus merganser 60 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294335791 2019-11-29 17:53:52 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 15:13:00 obsr520305 S21628957 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355647 2021-03-26 06:11:29.8335 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380942 2021-03-30 19:03:28.117389 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 40 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355611 2021-03-24 19:23:17.886063 26109 species avibase-BAC33609 Brown Creeper Certhia americana 60 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741296 2019-07-23 17:27:05 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354184 2018-08-04 16:55:26 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr660965 S21630310 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214010 2021-03-30 19:03:28.117389 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 40 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026996 2021-03-30 19:03:28.117389 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 60 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216011 2021-03-19 16:06:54.047432 30494 species avibase-240E3390 House Sparrow Passer domesticus 35 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653047 2019-07-23 17:27:05 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr630514 S21397552 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293994082 2018-08-04 16:55:26 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr160104 S21601836 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288476 2018-08-04 16:55:30 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355503 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 35 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292898169 2018-08-04 16:55:07 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 25 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-24 10:58:00 obsr75717 S21515398 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355700 2021-03-30 19:03:28.117389 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 25 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869996 2019-07-23 17:27:05 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr214884 S22246816 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968742 2018-08-04 16:53:56 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217494 2021-03-26 06:11:29.8335 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324993179 2018-08-04 16:54:45 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 15 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake L3696266 P 42.7716286 -76.71069229999999 2015-01-20 09:00:00 obsr503745 S23775359 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324993172 2018-08-04 16:54:45 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake L3696266 P 42.7716286 -76.71069229999999 2015-01-20 09:00:00 obsr503745 S23775359 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380943 2021-03-30 19:03:28.117389 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877955 2018-08-04 16:55:05 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-24 08:28:00 obsr75717 S21513574 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288490 2018-08-04 16:55:30 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214011 2021-03-30 19:03:28.117389 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293109169 2018-08-04 16:55:13 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-25 11:09:00 obsr301884 S21531872 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480645 2021-03-30 19:03:28.117389 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 4 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-11 13:45:00 obsr385404 S21303009 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292272308 2015-01-21 10:40:21 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-18 11:30:00 obsr705863 S21445072 Traveling P22 EBIRD 30.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292458017 2019-07-23 17:27:09 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292267676 2021-03-30 19:03:28.117389 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 30 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.34588839999999 -76.710341 2015-01-18 10:35:00 obsr705863 S21445016 Traveling P22 EBIRD 25.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289257552 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-04 12:50:00 obsr437271 S21204654 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290682965 2018-08-04 16:53:07 622 species avibase-50566E50 Lesser Scaup Aythya affinis X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr68520 S21319366 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543522 2021-03-30 19:03:28.117389 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr77889 S21308038 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292898164 2018-08-04 16:55:07 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 53 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-24 10:58:00 obsr75717 S21515398 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289066676 2018-08-04 16:52:46 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-04 15:15:00 obsr630514 S21190004 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917447 2018-08-04 16:55:08 7732 species avibase-A091D50A Northern Harrier Circus hudsonius X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:25:00 obsr455504 S21516940 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026985 2021-03-30 19:03:28.117389 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293051283 2018-08-04 16:55:10 483 species avibase-85625D75 Mallard Anas platyrhynchos 173 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr151326 S21526856 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288126550 2021-03-26 06:11:29.8335 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 44 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010669 2021-03-19 16:06:54.047432 616 species avibase-25C94A8F Greater Scaup Aythya marila 30 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098319 2018-08-04 16:52:40 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-03 14:35:00 obsr465975 S21192654 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1095576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312123305 2018-08-04 16:55:10 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 173 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr760316 S23001567 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543374 2018-08-04 16:53:01 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 6 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr77889 S21308022 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354121 2021-03-26 06:11:29.8335 616 species avibase-25C94A8F Greater Scaup Aythya marila 15 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr660965 S21630306 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290162918 2018-08-04 16:53:00 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 14 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr630514 S21277064 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683274 2018-08-04 16:53:08 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 20 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr68520 S21319389 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290438604 2018-08-04 16:53:08 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 20 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr317741 S21299516 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354164 2021-03-26 06:11:29.8335 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 15 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469494 2018-08-04 16:53:08 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr613199 S21302063 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219190 2021-03-19 16:06:54.047432 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 40 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr160104 S21619509 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355869 2018-08-04 16:55:31 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr660965 S21630459 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299328 2018-08-04 16:52:46 681 species avibase-407E2CA8 Common Merganser Mergus merganser 78 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-04 15:30:00 obsr318875 S21208053 Traveling P22 EBIRD 30.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219876 2018-08-04 16:55:31 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr160104 S21619562 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870429 2018-08-04 16:53:00 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 14 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr214884 S22246849 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521287 2018-08-04 16:53:08 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 125 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:18:00 obsr151326 S21306332 Stationary P21 EBIRD 7.0 1.0 1 G1105900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543348 2018-08-04 16:53:00 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 14 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-10 11:15:00 obsr77889 S21308019 Stationary P21 EBIRD 22.0 3.0 1 G1106096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098398 2018-08-04 16:52:40 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 455 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr465975 S21192664 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735226 2019-07-23 17:27:05 1375 species avibase-4B9EEF56 Ring-necked Pheasant Phasianus colchicus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289147441 2018-08-04 16:52:46 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 14 United States US New York US-NY Cayuga US-NY-011 13.0 Hoopes Park L1126200 P 42.9332642 -76.5428129 2015-01-04 15:34:00 obsr232835 S21196616 Traveling P22 EBIRD 30.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537542 2021-04-01 10:49:39.496318 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033215 2021-03-19 16:06:54.047432 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 30 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135199 2018-08-04 16:52:43 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Cayuga US-NY-011 13.0 West end of Lake Rd L3134977 P 42.7103807 -76.6994619 2015-01-04 11:19:00 obsr613199 S21195614 Traveling P22 EBIRD 19.0 0.805 6.0 1 G1095922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290982441 2018-08-04 16:53:18 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 25 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-14 13:13:00 obsr628463 S21343142 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290830952 2019-09-10 13:56:02 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-04 13:37:00 obsr520305 S21330808 Traveling P22 EBIRD 9.0 0.805 6.0 1 G1095918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289475430 2018-08-04 16:52:51 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 4 United States US New York US-NY Cayuga US-NY-011 Little Sodus Bay L5404103 H 43.3297159 -76.7094849 2015-01-06 12:24:00 obsr335050 S21222100 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219124 2018-08-04 16:55:31 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 30 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 14:43:00 obsr160104 S21619503 Stationary P21 EBIRD 7.0 2.0 1 G1131447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290831561 2019-09-10 13:56:02 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-04 00:38:00 obsr520305 S21330855 Stationary P21 EBIRD 3.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993879 2021-03-26 06:11:29.8335 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 15 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294133283 2018-08-04 16:55:29 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 12:20:00 obsr99508 S21612977 Stationary P21 EBIRD 8.0 1.0 1 G1131260 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217491 2021-03-26 06:11:29.8335 505 species avibase-C732CB10 American Black Duck Anas rubripes 50 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292267670 2021-03-30 19:03:28.117389 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 30 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.34588839999999 -76.710341 2015-01-18 10:35:00 obsr705863 S21445016 Traveling P22 EBIRD 25.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290380117 2021-04-01 10:49:39.496318 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 50 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 11:01:00 obsr257692 S21294888 Stationary P21 EBIRD 4.0 1.0 1 G1105901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288158595 2019-09-10 13:56:02 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-01 12:18:00 obsr223307 S21114131 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741294 2019-07-23 17:27:05 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355608 2021-03-24 19:23:17.886063 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 100 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292537035 2018-08-04 16:54:50 337 species avibase-694C127A Mute Swan Cygnus olor 20 United States US New York US-NY Cayuga US-NY-011 13.0 Mill Pond L1057399 P 42.844821200000005 -76.6919732 2015-01-21 15:41:00 obsr232835 S21486831 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292536648 2018-08-04 16:54:49 483 species avibase-85625D75 Mallard Anas platyrhynchos 15 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-21 14:22:00 obsr232835 S21486800 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290827439 2019-11-29 17:55:18 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: S/Long Pt SP L3289857 P 42.711757 -76.70484240000002 2015-01-04 11:28:00 obsr520305 S21330494 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877954 2018-08-04 16:55:05 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 60 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-24 08:28:00 obsr75717 S21513574 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683517 2018-08-04 16:53:08 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr68520 S21319413 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764274 2018-08-04 16:52:40 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 455 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr485179 S21164107 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292186231 2018-08-04 16:54:47 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 8 United States US New York US-NY Cayuga US-NY-011 13.0 Emerson Park L354461 H 42.901996 -76.537299 2015-01-20 14:19:00 obsr232835 S21438675 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294166348 2018-08-04 16:55:29 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-31 11:12:00 obsr79559 S21615638 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434516 2018-08-04 16:53:07 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:00:00 obsr378414 S21299184 Stationary P21 EBIRD 20.0 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293039748 2019-11-29 18:03:23 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 NY:CAY:Ledyard: NYS-90: Wells College boathouse L1071843 P 42.7451252 -76.7010149 2015-01-24 12:48:00 obsr520305 S21525942 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292672023 2018-08-04 16:54:50 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-21 15:30:00 obsr386262 S21497478 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098468 2018-08-04 16:52:40 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 50 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-03 14:13:00 obsr465975 S21192672 Incidental P20 EBIRD 1.0 0 G1095579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289137471 2018-08-04 16:52:44 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-04 12:17:00 obsr613199 S21195816 Stationary P21 EBIRD 10.0 6.0 1 G1095941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320906 2018-08-04 16:55:30 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr223307 S21627703 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683093 2018-08-04 16:53:07 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr68520 S21319374 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290379170 2018-08-04 16:53:07 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr317741 S21294812 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320461 2018-08-04 16:55:29 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 12:20:00 obsr223307 S21627679 Stationary P21 EBIRD 8.0 1.0 1 G1131260 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869993 2019-07-23 17:27:05 483 species avibase-85625D75 Mallard Anas platyrhynchos 120 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr214884 S22246816 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290830937 2019-11-29 18:22:33 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Union Springs: Mill Pond, NYS-90 L1301373 P 42.8451859 -76.6912597 2015-01-04 12:56:00 obsr520305 S21330804 Stationary P21 EBIRD 5.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288150087 2018-08-04 16:52:21 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 13 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-01 11:41:00 obsr223307 S21113445 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289019249 2018-08-04 16:52:44 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-04 12:55:00 obsr317741 S21186459 Stationary P21 EBIRD 4.0 6.0 1 G1095920 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293046557 2021-03-30 19:03:28.117389 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Farley's Pt Rd: N point L3315348 P 42.8226639 -76.70619559999999 2015-01-24 13:55:00 obsr520305 S21526465 Stationary P21 EBIRD 5.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292886779 2019-07-23 17:27:10 303 species avibase-B59E1863 Canada Goose Branta canadensis 122 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-24 09:46:00 obsr75717 S21514316 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324993175 2018-08-04 16:54:45 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 75 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake L3696266 P 42.7716286 -76.71069229999999 2015-01-20 09:00:00 obsr503745 S23775359 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293972371 2018-08-04 16:55:25 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 20 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 08:42:00 obsr151326 S21600433 Stationary P21 EBIRD 5.0 2.0 1 G1129048 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289134960 2018-08-04 16:52:44 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-04 12:17:00 obsr317741 S21195588 Stationary P21 EBIRD 10.0 6.0 1 G1095941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290437166 2018-08-04 16:53:07 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-11 10:58:00 obsr317741 S21299408 Traveling P22 EBIRD 7.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292891033 2021-03-26 06:11:29.8335 11494 species avibase-20C2214E American Kestrel Falco sparverius 25 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-01-24 10:30:00 obsr75717 S21514737 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111494 2021-03-19 16:06:54.047432 6339 species avibase-8535345B Herring Gull Larus argentatus 98 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214004 2021-03-30 19:03:28.117389 592 species avibase-3072CC16 Redhead Aythya americana 200 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290828834 2018-08-04 16:52:44 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-04 11:39:00 obsr520305 S21330618 Stationary P21 EBIRD 20.0 6.0 1 G1095921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293116325 2018-08-04 16:55:14 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 25 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-25 11:58:00 obsr301884 S21532441 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870384 2021-04-01 10:49:39.496318 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr214884 S22246845 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216006 2021-03-19 16:06:54.047432 303 species avibase-B59E1863 Canada Goose Branta canadensis 100 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288999518 2018-08-04 16:52:44 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 10 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-04 11:39:00 obsr317741 S21184863 Stationary P21 EBIRD 20.0 6.0 1 G1095921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434797 2018-08-04 16:53:07 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr317741 S21299212 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288754822 2018-08-04 16:52:40 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 50 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-03 14:13:00 obsr485179 S21163375 Incidental P20 EBIRD 1.0 0 G1095579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290180395 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr630514 S21278516 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294135116 2018-08-04 16:55:30 6339 species avibase-8535345B Herring Gull Larus argentatus 9 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 12:30:00 obsr99508 S21613084 Stationary P21 EBIRD 5.0 1.0 1 G1131263 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292455408 2019-07-23 17:27:09 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 65 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289031431 2019-09-10 13:56:02 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-04 13:37:00 obsr317741 S21187424 Traveling P22 EBIRD 9.0 0.805 6.0 1 G1095918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292880534 2021-03-26 06:11:29.8335 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 40 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road north--Long Point to Lake Road bluff L1375811 P 42.728647 -76.7103856 2015-01-24 09:01:00 obsr75717 S21513779 Traveling P22 EBIRD 24.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290385285 2018-08-04 16:53:08 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 5 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-11 11:29:00 obsr257692 S21295337 Incidental P20 EBIRD 2.0 0 G1105899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521284 2018-08-04 16:53:08 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 5 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-11 11:29:00 obsr151326 S21306331 Incidental P20 EBIRD 2.0 0 G1105899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384026 2018-08-04 16:53:07 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 125 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:18:00 obsr257692 S21295238 Stationary P21 EBIRD 7.0 1.0 1 G1105900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172889 2021-04-01 10:49:39.496318 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr630514 S21277920 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289134967 2019-09-10 13:56:02 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-04 13:37:00 obsr613199 S21195589 Traveling P22 EBIRD 9.0 0.805 6.0 1 G1095918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291971036 2018-08-04 16:53:55 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 9 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake - Fall Brook (private) L1377696 P 42.832681 -76.3456749 2015-01-18 09:38:00 obsr37213 S21421856 Traveling P22 EBIRD 57.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216758 2021-03-24 19:23:17.886063 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 100 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469251 2018-08-04 16:53:07 11494 species avibase-20C2214E American Kestrel Falco sparverius X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr613199 S21302044 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289257551 2021-03-30 19:03:28.117389 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 6 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-04 12:50:00 obsr437271 S21204654 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355644 2021-03-26 06:11:29.8335 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 50 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355498 2021-03-19 16:06:54.047432 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 100 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521294 2021-04-01 10:49:39.496318 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 50 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 11:01:00 obsr151326 S21306333 Stationary P21 EBIRD 4.0 1.0 1 G1105901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380995 2021-03-19 16:06:54.047432 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 40 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr660965 S21632370 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288144724 2018-08-04 16:52:20 30494 species avibase-240E3390 House Sparrow Passer domesticus 7 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-01 11:21:00 obsr223307 S21112915 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291204796 2018-08-04 16:53:21 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Union Springs: Factory St pond L2109353 P 42.8411868 -76.6943657 2015-01-15 13:15:00 obsr520305 S21361423 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290985140 2018-08-04 16:53:18 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 30 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-14 13:23:00 obsr628463 S21343327 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320648 2018-08-04 16:55:30 681 species avibase-407E2CA8 Common Merganser Mergus merganser 9 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 12:30:00 obsr223307 S21627686 Stationary P21 EBIRD 5.0 1.0 1 G1131263 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469279 2018-08-04 16:53:08 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 20 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr613199 S21302047 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292925987 2021-03-26 06:11:29.8335 483 species avibase-85625D75 Mallard Anas platyrhynchos 48 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Harbor Marina (private) L632907 H 42.8396606 -76.69735909999999 2015-01-24 14:03:00 obsr75717 S21517633 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290616697 2021-03-26 06:11:29.8335 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-12 08:26:00 obsr630514 S21313323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294335789 2019-11-29 17:53:52 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 15:13:00 obsr520305 S21628957 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288992976 2018-08-04 16:52:43 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa X United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. L3278634 P 42.7105699 -76.7030239 2015-01-04 11:19:00 obsr317741 S21184357 Traveling P22 EBIRD 19.0 0.805 6.0 1 G1095922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870329 2021-03-30 19:03:28.117389 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr214884 S22246841 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290444974 2018-08-04 16:53:08 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr317741 S21300011 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293113937 2018-08-04 16:55:14 505 species avibase-C732CB10 American Black Duck Anas rubripes 10 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-25 11:51:00 obsr301884 S21532269 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294150341 2018-08-04 16:55:30 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr99508 S21614279 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469135 2018-08-04 16:53:07 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr613199 S21302036 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293109167 2018-08-04 16:55:13 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 75 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-25 11:09:00 obsr301884 S21531872 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653044 2019-07-23 17:27:05 303 species avibase-B59E1863 Canada Goose Branta canadensis 120 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr630514 S21397552 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292920617 2018-08-04 16:55:09 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 63 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:40:00 obsr75717 S21517212 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218487 2021-03-30 19:03:28.117389 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 30 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294336633 2019-11-29 18:23:11 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Union Springs: Mill Pond outlet streams L3331514 P 42.84565 -76.69557809999999 2015-01-31 16:11:00 obsr520305 S21629032 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288705311 2018-08-04 16:52:30 341 species avibase-B86C504C Trumpeter Swan Cygnus buccinator 27 United States US New York US-NY Cayuga US-NY-011 13.0 Mill Pond L1057399 P 42.844821200000005 -76.6919732 2015-01-02 11:53:00 obsr232835 S21159449 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293994084 2018-08-04 16:55:26 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 20 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr160104 S21601836 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111770 2018-08-04 16:55:14 337 species avibase-694C127A Mute Swan Cygnus olor 5 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-25 11:35:00 obsr301884 S21532080 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137340 2021-03-19 16:06:54.047432 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr223307 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172921 2018-08-04 16:53:01 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr630514 S21277927 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968737 2018-08-04 16:53:56 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 45 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293959397 2018-08-04 16:55:25 30494 species avibase-240E3390 House Sparrow Passer domesticus 20 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 08:42:00 obsr257692 S21599183 Stationary P21 EBIRD 5.0 2.0 1 G1129048 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539663 2021-03-19 16:06:54.047432 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-17 15:40:00 obsr386262 S21388589 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288762942 2018-08-04 16:52:40 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-03 14:35:00 obsr485179 S21163999 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1095576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870401 2018-08-04 16:53:01 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr214884 S22246846 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543386 2021-04-01 10:49:39.496318 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr77889 S21308024 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354186 2018-08-04 16:55:26 303 species avibase-B59E1863 Canada Goose Branta canadensis 20 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr660965 S21630310 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135106 2018-08-04 16:52:44 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-04 11:39:00 obsr613199 S21195602 Stationary P21 EBIRD 20.0 6.0 1 G1095921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293992852 2021-03-26 06:11:29.8335 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 15 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr160104 S21601821 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288481 2018-08-04 16:55:30 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135082 2018-08-04 16:52:44 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-04 12:55:00 obsr613199 S21195600 Stationary P21 EBIRD 4.0 6.0 1 G1095920 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380936 2021-03-30 19:03:28.117389 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 200 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355696 2021-03-30 19:03:28.117389 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 30 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294550138 2018-08-04 16:55:15 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 93 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-25 13:00:00 obsr476925 S21645814 Stationary P21 EBIRD 45.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480647 2021-03-30 19:03:28.117389 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 16 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-11 13:45:00 obsr385404 S21303009 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292266722 2021-03-26 06:11:29.8335 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Little Sodus Bay, south L1338234 H 43.3147982 -76.71439649999999 2015-01-18 10:20:00 obsr705863 S21444578 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292882059 2018-08-04 16:55:06 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-24 09:32:00 obsr75717 S21513915 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355734 2018-08-04 16:55:31 26890 species avibase-94A44032 European Starling Sturnus vulgaris 30 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 14:43:00 obsr660965 S21630449 Stationary P21 EBIRD 7.0 2.0 1 G1131447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292912516 2019-07-23 17:27:11 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-24 13:06:00 obsr455504 S21516532 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293039745 2019-11-29 18:03:23 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 NY:CAY:Ledyard: NYS-90: Wells College boathouse L1071843 P 42.7451252 -76.7010149 2015-01-24 12:48:00 obsr520305 S21525942 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354616 2015-02-01 12:41:26 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-31 10:07:00 obsr660965 S21630361 Stationary P21 EBIRD 4.0 2.0 1 G1131434 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870233 2015-03-08 21:09:52 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 9 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr214884 S22246830 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290982445 2018-08-04 16:53:18 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-14 13:13:00 obsr628463 S21343142 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216020 2021-03-19 16:06:54.047432 6339 species avibase-8535345B Herring Gull Larus argentatus 10 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289482472 2015-01-06 13:16:15 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 20 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Sterling - 43.3687x-76.6503 - Jan 6, 2015, 1:13 PM L3270901 P 43.368744 -76.650251 2015-01-06 13:13:00 obsr335050 S21222729 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209445 2015-02-01 12:41:26 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-31 10:07:00 obsr160104 S21618804 Stationary P21 EBIRD 4.0 2.0 1 G1131434 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292504173 2021-04-01 10:49:39.496318 20829 species avibase-B9B272F4 Common Raven Corvus corax 3 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-21 11:55:00 obsr223307 S21484189 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116132 2021-04-01 10:49:39.496318 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219194 2021-03-19 16:06:54.047432 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr160104 S21619509 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292899137 2015-01-24 20:40:49 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 4 United States US New York US-NY Cayuga US-NY-011 13.0 Ellis Rd., Levanna L1340510 H 42.7851685 -76.71619140000001 2015-01-24 11:48:00 obsr75717 S21515496 Traveling P22 EBIRD 6.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288104666 2021-03-26 06:11:29.8335 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 5 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-01 08:56:00 obsr223307 S21109713 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216773 2021-03-24 19:23:17.886063 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294171537 2015-01-31 15:37:41 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 12:53:00 obsr630514 S21615952 Traveling P22 EBIRD 28.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537532 2021-04-01 10:49:39.496318 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355512 2021-03-19 16:06:54.047432 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 10 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294029051 2020-05-02 15:38:26 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-30 16:10:00 obsr595883 S21604821 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544065 2015-01-11 21:18:21 483 species avibase-85625D75 Mallard Anas platyrhynchos 9 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr77889 S21308081 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299322 2018-08-04 16:52:46 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-04 15:30:00 obsr318875 S21208053 Traveling P22 EBIRD 30.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214023 2021-03-30 19:03:28.117389 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380999 2021-03-19 16:06:54.047432 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr660965 S21632370 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026994 2021-03-30 19:03:28.117389 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557551 2020-05-02 15:38:26 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-27 13:03:00 obsr595883 S21567472 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480067 2021-04-01 10:49:39.496318 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Cayuga US-NY-011 13.0 McFarland Road L792888 P 43.3699926 -76.6313553 2015-01-11 13:18:00 obsr385404 S21302955 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380955 2021-03-30 19:03:28.117389 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355622 2021-03-24 19:23:17.886063 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210929 2021-03-26 06:11:29.8335 483 species avibase-85625D75 Mallard Anas platyrhynchos 25 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993884 2021-03-26 06:11:29.8335 20294 species avibase-76158864 Northern Shrike Lanius borealis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289444910 2015-01-06 08:32:01 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Mobbs Road L3270333 P 42.880492700000005 -76.563549 2015-01-04 10:30:00 obsr318875 S21219450 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354621 2021-03-26 06:11:29.8335 292 species avibase-60214D49 Cackling Goose Branta hutchinsii 25 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391661 2015-01-11 21:18:21 6339 species avibase-8535345B Herring Gull Larus argentatus 9 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr630514 S21295872 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354169 2021-03-26 06:11:29.8335 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294154351 2015-01-31 14:15:04 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 11 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como #1291 E Lake Rd L1808836 P 42.679629 -76.301994 2015-01-31 13:27:00 obsr630514 S21614577 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292704310 2015-01-22 22:17:14 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-22 15:45:00 obsr542235 S21500024 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294153014 2020-05-02 15:38:26 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-31 13:33:00 obsr595883 S21614483 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355693 2021-03-30 19:03:28.117389 6339 species avibase-8535345B Herring Gull Larus argentatus N 6 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293046553 2021-03-30 19:03:28.117389 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 4 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Farley's Pt Rd: N point L3315348 P 42.8226639 -76.70619559999999 2015-01-24 13:55:00 obsr520305 S21526465 Stationary P21 EBIRD 5.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870325 2021-03-30 19:03:28.117389 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr214884 S22246841 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026997 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543518 2021-03-30 19:03:28.117389 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr77889 S21308038 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480642 2021-03-30 19:03:28.117389 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 4 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-11 13:45:00 obsr385404 S21303009 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289257549 2021-03-30 19:03:28.117389 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. N 11 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-04 12:50:00 obsr437271 S21204654 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294213999 2021-03-30 19:03:28.117389 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289472607 2021-03-30 19:03:28.117389 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 10 United States US New York US-NY Cayuga US-NY-011 Little Sodus Bay L5404103 H 43.3297159 -76.7094849 2015-01-06 12:10:00 obsr335050 S21221872 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292267675 2021-03-30 19:03:28.117389 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 4 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.34588839999999 -76.710341 2015-01-18 10:35:00 obsr705863 S21445016 Traveling P22 EBIRD 25.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380931 2021-03-30 19:03:28.117389 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218484 2021-03-30 19:03:28.117389 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 6 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290180391 2021-03-30 19:03:28.117389 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr630514 S21278516 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291670455 2021-03-30 19:03:28.117389 483 species avibase-85625D75 Mallard Anas platyrhynchos N 4 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-18 13:16:00 obsr584324 S21398679 Traveling P22 EBIRD 11.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098324 2018-08-04 16:52:40 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-03 14:35:00 obsr465975 S21192654 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1095576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292455420 2019-07-23 17:27:09 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354135 2021-03-26 06:11:29.8335 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr660965 S21630306 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214035 2021-03-30 19:03:28.117389 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116149 2021-04-01 10:49:39.496318 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993885 2021-03-26 06:11:29.8335 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870262 2015-03-08 21:09:53 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr214884 S22246832 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288762947 2018-08-04 16:52:40 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-03 14:35:00 obsr485179 S21163999 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1095576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294150347 2018-08-04 16:55:30 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr99508 S21614279 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380993 2021-03-19 16:06:54.047432 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr660965 S21632370 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543997 2015-01-11 21:18:07 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr77889 S21308076 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290479194 2021-04-01 10:49:39.496318 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Irwin Road L372903 P 43.3938222 -76.63066859999999 2015-01-11 13:00:00 obsr385404 S21296879 Traveling P22 EBIRD 8.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288427446 2015-01-02 09:47:38 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Backyard Haven L758893 P 42.9395754 -76.5754192 2015-01-01 08:11:00 obsr232835 S21136347 Stationary P21 EBIRD 15.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033209 2021-03-19 16:06:54.047432 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288126563 2021-03-26 06:11:29.8335 30494 species avibase-240E3390 House Sparrow Passer domesticus 12 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116457 2015-01-01 09:52:28 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard, 1544 Lake Rd L1802598 P 42.7108 -76.69261999999999 2015-01-01 09:22:00 obsr223307 S21110527 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380967 2021-03-30 19:03:28.117389 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870244 2015-03-08 21:09:52 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr214884 S22246830 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294154361 2015-01-31 14:15:04 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como #1291 E Lake Rd L1808836 P 42.679629 -76.301994 2015-01-31 13:27:00 obsr630514 S21614577 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289469111 2021-03-24 19:23:17.886063 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Sterling-14340-14346 Victory St L3270675 P 43.310953000000005 -76.70646500000001 2015-01-06 11:44:00 obsr335050 S21221510 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354696 2021-03-19 16:06:54.047432 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr660965 S21630374 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209448 2015-02-01 12:41:26 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-31 10:07:00 obsr160104 S21618804 Stationary P21 EBIRD 4.0 2.0 1 G1131434 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354635 2021-03-26 06:11:29.8335 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354619 2015-02-01 12:41:26 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-31 10:07:00 obsr660965 S21630361 Stationary P21 EBIRD 4.0 2.0 1 G1131434 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557561 2020-05-02 15:38:26 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-27 13:03:00 obsr595883 S21567472 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289482475 2015-01-06 13:16:15 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Sterling - 43.3687x-76.6503 - Jan 6, 2015, 1:13 PM L3270901 P 43.368744 -76.650251 2015-01-06 13:13:00 obsr335050 S21222729 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287593 2019-11-29 17:55:18 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: S/Long Pt SP L3289857 P 42.711757 -76.70484240000002 2015-01-31 13:19:00 obsr520305 S21625018 Traveling P22 EBIRD 7.0 0.8690000000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294029057 2020-05-02 15:38:26 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-30 16:10:00 obsr595883 S21604821 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111488 2021-03-19 16:06:54.047432 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010663 2021-03-19 16:06:54.047432 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391846 2015-01-11 21:18:07 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr630514 S21295886 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354170 2021-03-26 06:11:29.8335 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294153024 2020-05-02 15:38:26 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-31 13:33:00 obsr595883 S21614483 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993300 2021-03-26 06:11:29.8335 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr160104 S21601821 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391672 2015-01-11 21:18:21 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr630514 S21295872 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320912 2018-08-04 16:55:30 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr223307 S21627703 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288104672 2021-03-26 06:11:29.8335 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 10 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-01 08:56:00 obsr223307 S21109713 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288150096 2018-08-04 16:52:21 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-01 11:41:00 obsr223307 S21113445 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219202 2021-03-19 16:06:54.047432 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr160104 S21619509 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355526 2021-03-19 16:06:54.047432 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216034 2021-03-19 16:06:54.047432 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289444911 2015-01-06 08:32:01 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Mobbs Road L3270333 P 42.880492700000005 -76.563549 2015-01-04 10:30:00 obsr318875 S21219450 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480069 2021-04-01 10:49:39.496318 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Cayuga US-NY-011 13.0 McFarland Road L792888 P 43.3699926 -76.6313553 2015-01-11 13:18:00 obsr385404 S21302955 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917453 2018-08-04 16:55:08 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:25:00 obsr455504 S21516940 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544076 2015-01-11 21:18:21 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr77889 S21308081 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299329 2018-08-04 16:52:46 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-04 15:30:00 obsr318875 S21208053 Traveling P22 EBIRD 30.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211942 2021-03-19 16:06:54.047432 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr160104 S21619012 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292704311 2015-01-22 22:17:14 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-22 15:45:00 obsr542235 S21500024 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293924484 2021-03-24 19:23:17.886063 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-29 10:00:00 obsr486113 S21596457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210943 2021-03-26 06:11:29.8335 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968752 2018-08-04 16:53:56 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292504171 2021-04-01 10:49:39.496318 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-21 11:55:00 obsr223307 S21484189 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294264681 2021-03-24 19:23:17.886063 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-31 obsr486113 S21623325 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292272469 2017-03-02 20:21:54 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Marsh Road overlook, Moon Beach L1026279 H 43.3967411 -76.6448562 2015-01-18 12:15:00 obsr705863 S21445090 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292704314 2015-01-22 22:17:14 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-22 15:45:00 obsr542235 S21500024 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294264692 2021-03-24 19:23:17.886063 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-31 obsr486113 S21623325 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293116328 2018-08-04 16:55:14 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-25 11:58:00 obsr301884 S21532441 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291670458 2021-03-30 19:03:28.117389 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-18 13:16:00 obsr584324 S21398679 Traveling P22 EBIRD 11.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026989 2021-03-30 19:03:28.117389 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290387648 2017-08-16 16:19:00 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard, 1559 Highway 90 L2088157 P 42.69262 -76.66757 2015-01-11 11:43:00 obsr257692 S21295555 Incidental P20 EBIRD 2.0 0 G1105896 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290682955 2020-01-31 18:57:31 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-11 10:24:00 obsr68520 S21319364 Stationary P21 EBIRD 4.0 12.0 1 G1105490 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521259 2020-01-31 18:57:31 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-11 11:36:00 obsr151326 S21306329 Stationary P21 EBIRD 3.0 2.0 1 G1105898 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292536609 2020-01-31 18:57:31 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-21 14:47:00 obsr232835 S21486790 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135202 2018-08-04 16:52:43 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 West end of Lake Rd L3134977 P 42.7103807 -76.6994619 2015-01-04 11:19:00 obsr613199 S21195614 Traveling P22 EBIRD 19.0 0.805 6.0 1 G1095922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290437663 2020-01-31 18:57:31 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-11 10:24:00 obsr317741 S21299439 Stationary P21 EBIRD 4.0 12.0 1 G1105490 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294151499 2021-04-01 10:49:39.496318 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-31 13:55:00 obsr99508 S21614370 Traveling P22 EBIRD 8.0 0.402 1.0 1 G1131267 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521253 2017-08-16 16:19:00 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard, 1559 Highway 90 L2088157 P 42.69262 -76.66757 2015-01-11 11:43:00 obsr151326 S21306326 Incidental P20 EBIRD 2.0 0 G1105896 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290825872 2020-01-31 18:57:31 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-04 11:20:00 obsr520305 S21330358 Stationary P21 EBIRD 5.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469076 2020-01-31 18:57:31 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-11 10:24:00 obsr613199 S21302033 Stationary P21 EBIRD 4.0 12.0 1 G1105490 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291535794 2021-03-19 16:06:54.047432 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-17 15:00:00 obsr386262 S21388272 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290386803 2020-01-31 18:57:31 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-11 11:36:00 obsr257692 S21295467 Stationary P21 EBIRD 3.0 2.0 1 G1105898 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320960 2021-04-01 10:49:39.496318 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-31 13:55:00 obsr223307 S21627708 Traveling P22 EBIRD 8.0 0.402 1.0 1 G1131267 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288992979 2018-08-04 16:52:43 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. L3278634 P 42.7105699 -76.7030239 2015-01-04 11:19:00 obsr317741 S21184357 Traveling P22 EBIRD 19.0 0.805 6.0 1 G1095922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290912097 2017-08-16 16:19:11 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Cayuga US-NY-011 13.0 State Road 90 Fields L512938 P 42.6738537 -76.6457748 2015-01-12 obsr381576 S21337640 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355713 2017-01-07 18:16:34 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Cayuga US-NY-011 13.0 Rt. 90 at Slocum Dr., Ledyard L2100849 P 42.79341 -76.71161 2015-01-31 14:39:00 obsr660965 S21630445 Incidental P20 EBIRD 2.0 0 G1131446 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355895 2021-03-26 06:11:29.8335 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Cayuga US-NY-011 13.0 Union Springs--Pete's Treats L3800085 H 42.856448 -76.691703 2015-01-31 15:16:00 obsr660965 S21630462 Stationary P21 EBIRD 1.0 2.0 1 G1131449 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289245171 2021-04-01 10:49:39.496318 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219979 2021-03-26 06:11:29.8335 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Union Springs--Pete's Treats L3800085 H 42.856448 -76.691703 2015-01-31 15:16:00 obsr160104 S21619571 Stationary P21 EBIRD 1.0 2.0 1 G1131449 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289444913 2015-01-06 08:32:01 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Mobbs Road L3270333 P 42.880492700000005 -76.563549 2015-01-04 10:30:00 obsr318875 S21219450 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218598 2017-01-07 18:16:34 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Rt. 90 at Slocum Dr., Ledyard L2100849 P 42.79341 -76.71161 2015-01-31 14:39:00 obsr160104 S21619464 Incidental P20 EBIRD 2.0 0 G1131446 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294330476 2019-11-29 17:53:52 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 14:25:00 obsr520305 S21628447 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293992853 2021-03-26 06:11:29.8335 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr160104 S21601821 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288474 2018-08-04 16:55:30 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111491 2021-03-19 16:06:54.047432 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214005 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294335780 2019-11-29 17:53:52 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 15:13:00 obsr520305 S21628957 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293109168 2018-08-04 16:55:13 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-25 11:09:00 obsr301884 S21531872 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098400 2018-08-04 16:52:40 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr465975 S21192664 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288150088 2018-08-04 16:52:21 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-01 11:41:00 obsr223307 S21113445 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380937 2021-03-30 19:03:28.117389 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543375 2018-08-04 16:53:01 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr77889 S21308022 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354122 2021-03-26 06:11:29.8335 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr660965 S21630306 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172890 2021-04-01 10:49:39.496318 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr630514 S21277920 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543387 2021-04-01 10:49:39.496318 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr77889 S21308024 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290982442 2018-08-04 16:53:18 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-14 13:13:00 obsr628463 S21343142 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764276 2018-08-04 16:52:40 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr485179 S21164107 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288129539 2021-03-26 06:11:29.8335 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172922 2018-08-04 16:53:01 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr630514 S21277927 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870402 2018-08-04 16:53:01 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr214884 S22246846 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290437162 2018-08-04 16:53:07 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-11 10:58:00 obsr317741 S21299408 Traveling P22 EBIRD 7.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292898166 2018-08-04 16:55:07 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 Male, Adult (1) United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-24 10:58:00 obsr75717 S21515398 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870385 2021-04-01 10:49:39.496318 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr214884 S22246845 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291945265 2015-01-24 12:10:15 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Port Byron - 43.0418x-76.6268 - Jan 19, 2015, 2:20 PM L3303894 P 43.0418 -76.626754 2015-01-19 14:20:00 obsr279500 S21419699 Incidental P20 EBIRD 2.0 1 G1117598 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292135455 2015-01-24 12:10:15 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Port Byron - 43.0418x-76.6268 - Jan 19, 2015, 2:20 PM L3303894 P 43.0418 -76.626754 2015-01-19 14:20:00 obsr464008 S21434875 Incidental P20 EBIRD 2.0 1 G1117598 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293892355 2020-06-27 08:21:38 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lick St N/ NYS-90, Christmas tree farm L2207177 P 42.6485278 -76.3455176 2015-01-29 14:10:00 obsr520305 S21594135 Traveling P22 EBIRD 10.0 0.322 2.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294264694 2021-03-24 19:23:17.886063 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-31 obsr486113 S21623325 Incidental P20 EBIRD 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294380958 2021-03-30 19:03:28.117389 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434738 2015-01-11 17:05:25 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr317741 S21299206 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033199 2021-03-19 16:06:54.047432 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469361 2015-01-11 17:05:25 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr613199 S21302053 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683399 2015-01-12 14:34:29 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr68520 S21319401 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010653 2021-03-19 16:06:54.047432 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214026 2021-03-30 19:03:28.117389 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098471 2018-08-04 16:52:40 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-03 14:13:00 obsr465975 S21192672 Incidental P20 EBIRD 1.0 0 G1095579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288754825 2018-08-04 16:52:40 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-03 14:13:00 obsr485179 S21163375 Incidental P20 EBIRD 1.0 0 G1095579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289444578 2015-01-06 08:27:42 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Cayuga US-NY-011 13.0 NY 38- Stone School L3270331 P 42.8724416 -76.53917309999999 2015-01-04 12:00:00 obsr318875 S21219420 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391664 2015-01-11 21:18:21 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr630514 S21295872 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391840 2015-01-11 21:18:07 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr630514 S21295886 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544068 2015-01-11 21:18:21 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr77889 S21308081 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290435521 2015-01-11 20:02:34 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora to McKenzie Childs L3285214 P 42.7637039 -76.7064064 2015-01-11 11:15:00 obsr257692 S21299271 Incidental P20 EBIRD 2.0 0 G1105897 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521255 2015-01-11 20:02:34 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora to McKenzie Childs L3285214 P 42.7637039 -76.7064064 2015-01-11 11:15:00 obsr151326 S21306327 Incidental P20 EBIRD 2.0 0 G1105897 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543991 2015-01-11 21:18:07 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr77889 S21308076 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292457836 2019-07-23 17:27:09 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869949 2015-03-08 21:09:39 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr214884 S22246815 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870236 2015-03-08 21:09:52 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr214884 S22246830 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870256 2015-03-08 21:09:53 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr214884 S22246832 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291706965 2015-03-08 19:37:21 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr630514 S21401294 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294264685 2021-03-24 19:23:17.886063 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-31 obsr486113 S21623325 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294128496 2015-01-31 12:01:37 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 28.0 Summerhill SF--Lick St. Christmas Tree Farm L1318052 H 42.6464402 -76.3459897 2015-01-31 11:33:00 obsr630514 S21612601 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294039872 2021-03-24 19:23:17.886063 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-30 08:45:00 obsr68520 S21605751 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293890520 2019-11-29 18:27:29 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lake Como Rd: Lane E: #1196 L3326108 P 42.6759534 -76.3046327 2015-01-29 11:50:00 obsr520305 S21594008 Traveling P22 EBIRD 52.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870000 2019-07-23 17:27:05 30494 species avibase-240E3390 House Sparrow Passer domesticus 12 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr214884 S22246816 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292272468 2017-03-02 20:21:54 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 15 United States US New York US-NY Cayuga US-NY-011 13.0 Marsh Road overlook, Moon Beach L1026279 H 43.3967411 -76.6448562 2015-01-18 12:15:00 obsr705863 S21445090 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010657 2021-03-19 16:06:54.047432 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877959 2018-08-04 16:55:05 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 38 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-24 08:28:00 obsr75717 S21513574 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434800 2018-08-04 16:53:07 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr317741 S21299212 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320908 2018-08-04 16:55:30 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 15 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr223307 S21627703 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293972367 2015-01-30 10:50:18 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 Ellis Rd., Levanna L1340510 H 42.7851685 -76.71619140000001 2015-01-30 08:53:00 obsr151326 S21600432 Stationary P21 EBIRD 2.0 2.0 1 G1129047 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354688 2021-03-19 16:06:54.047432 616 species avibase-25C94A8F Greater Scaup Aythya marila 10 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr660965 S21630374 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434520 2018-08-04 16:53:07 11494 species avibase-20C2214E American Kestrel Falco sparverius X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:00:00 obsr378414 S21299184 Stationary P21 EBIRD 20.0 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653051 2019-07-23 17:27:05 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 12 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr630514 S21397552 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288126551 2021-03-26 06:11:29.8335 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292891037 2021-03-26 06:11:29.8335 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 8 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-01-24 10:30:00 obsr75717 S21514737 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292266441 2021-03-26 06:11:29.8335 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 36 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-18 08:45:00 obsr705863 S21444552 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289475433 2018-08-04 16:52:51 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Cayuga US-NY-011 Little Sodus Bay L5404103 H 43.3297159 -76.7094849 2015-01-06 12:24:00 obsr335050 S21222100 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292267673 2021-03-30 19:03:28.117389 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 17 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.34588839999999 -76.710341 2015-01-18 10:35:00 obsr705863 S21445016 Traveling P22 EBIRD 25.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741302 2019-07-23 17:27:05 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098405 2018-08-04 16:52:40 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr465975 S21192664 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290827438 2019-11-29 17:55:18 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: S/Long Pt SP L3289857 P 42.711757 -76.70484240000002 2015-01-04 11:28:00 obsr520305 S21330494 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292898171 2018-08-04 16:55:07 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-24 10:58:00 obsr75717 S21515398 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355703 2021-03-30 19:03:28.117389 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 40 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355652 2021-03-26 06:11:29.8335 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 8 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290616700 2021-03-26 06:11:29.8335 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-12 08:26:00 obsr630514 S21313323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764281 2018-08-04 16:52:40 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr485179 S21164107 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355507 2021-03-19 16:06:54.047432 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 80 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469254 2018-08-04 16:53:07 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr613199 S21302044 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293924487 2021-03-24 19:23:17.886063 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-29 10:00:00 obsr486113 S21596457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033203 2021-03-19 16:06:54.047432 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137344 2021-03-19 16:06:54.047432 662 species avibase-FB738385 Bufflehead Bucephala albeola 26 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr223307 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291670457 2021-03-30 19:03:28.117389 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-18 13:16:00 obsr584324 S21398679 Traveling P22 EBIRD 11.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211934 2021-03-19 16:06:54.047432 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio 10 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr160104 S21619012 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216015 2021-03-19 16:06:54.047432 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 80 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292272309 2015-01-21 10:40:21 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 60 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-18 11:30:00 obsr705863 S21445072 Traveling P22 EBIRD 30.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292886784 2019-07-23 17:27:10 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 30 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-24 09:46:00 obsr75717 S21514316 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135201 2018-08-04 16:52:43 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 West end of Lake Rd L3134977 P 42.7103807 -76.6994619 2015-01-04 11:19:00 obsr613199 S21195614 Traveling P22 EBIRD 19.0 0.805 6.0 1 G1095922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111485 2021-03-19 16:06:54.047432 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 46 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289137468 2018-08-04 16:52:44 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-04 12:17:00 obsr613199 S21195816 Stationary P21 EBIRD 10.0 6.0 1 G1095941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293039749 2019-11-29 18:03:23 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 NY:CAY:Ledyard: NYS-90: Wells College boathouse L1071843 P 42.7451252 -76.7010149 2015-01-24 12:48:00 obsr520305 S21525942 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537546 2021-04-01 10:49:39.496318 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683096 2018-08-04 16:53:07 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr68520 S21319374 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288477 2018-08-04 16:55:30 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288992978 2018-08-04 16:52:43 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. L3278634 P 42.7105699 -76.7030239 2015-01-04 11:19:00 obsr317741 S21184357 Traveling P22 EBIRD 19.0 0.805 6.0 1 G1095922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293960184 2015-01-30 10:50:18 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Ellis Rd., Levanna L1340510 H 42.7851685 -76.71619140000001 2015-01-30 08:53:00 obsr257692 S21599261 Stationary P21 EBIRD 2.0 2.0 1 G1129047 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294150343 2018-08-04 16:55:30 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 15 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr99508 S21614279 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735234 2019-07-23 17:27:05 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289134964 2018-08-04 16:52:44 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-04 12:17:00 obsr317741 S21195588 Stationary P21 EBIRD 10.0 6.0 1 G1095941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216766 2021-03-24 19:23:17.886063 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 100 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292672019 2018-08-04 16:54:50 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-21 15:30:00 obsr386262 S21497478 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288144727 2018-08-04 16:52:20 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-01 11:21:00 obsr223307 S21112915 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355616 2021-03-24 19:23:17.886063 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 100 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294335787 2019-11-29 17:53:52 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 15:13:00 obsr520305 S21628957 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293109173 2018-08-04 16:55:13 616 species avibase-25C94A8F Greater Scaup Aythya marila 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-25 11:09:00 obsr301884 S21531872 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292455411 2019-07-23 17:27:09 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 55 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217499 2021-03-26 06:11:29.8335 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 8 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290437165 2018-08-04 16:53:07 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 16 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-11 10:58:00 obsr317741 S21299408 Traveling P22 EBIRD 7.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218494 2021-03-30 19:03:28.117389 662 species avibase-FB738385 Bufflehead Bucephala albeola 40 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354571 2015-02-01 12:41:20 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt, Hoag and Dresser Rd. area L573479 H 42.6674167 -76.3267422 2015-01-31 09:49:00 obsr660965 S21630356 Traveling P22 EBIRD 16.0 1.287 2.0 1 G1131432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291706970 2015-03-08 19:37:21 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr630514 S21401294 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294133385 2016-07-19 14:06:08 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt Rd. L366919 H 42.6564028 -76.3262996 2015-01-31 12:14:00 obsr630514 S21612989 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209372 2015-02-01 12:41:20 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt, Hoag and Dresser Rd. area L573479 H 42.6674167 -76.3267422 2015-01-31 09:49:00 obsr160104 S21618791 Traveling P22 EBIRD 16.0 1.287 2.0 1 G1131432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869955 2015-03-08 21:09:39 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr214884 S22246815 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294039868 2021-03-24 19:23:17.886063 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-30 08:45:00 obsr68520 S21605751 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214024 2021-03-30 19:03:28.117389 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098323 2018-08-04 16:52:40 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-03 14:35:00 obsr465975 S21192654 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1095576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543988 2015-01-11 21:18:07 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr77889 S21308076 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354622 2021-03-26 06:11:29.8335 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480066 2021-04-01 10:49:39.496318 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 McFarland Road L792888 P 43.3699926 -76.6313553 2015-01-11 13:18:00 obsr385404 S21302955 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537533 2021-04-01 10:49:39.496318 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111493 2021-03-19 16:06:54.047432 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293903509 2015-01-29 19:13:49 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lake Como:E Lake Rd 1285 L2589477 P 42.67978170000001 -76.3022717 2015-01-29 12:50:00 obsr520305 S21594914 Stationary P21 EBIRD 5.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288126554 2021-03-26 06:11:29.8335 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293924477 2021-03-24 19:23:17.886063 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-29 10:00:00 obsr486113 S21596457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290379176 2018-08-04 16:53:07 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr317741 S21294812 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294153015 2020-05-02 15:38:26 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-31 13:33:00 obsr595883 S21614483 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287594 2019-11-29 17:55:18 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: S/Long Pt SP L3289857 P 42.711757 -76.70484240000002 2015-01-31 13:19:00 obsr520305 S21625018 Traveling P22 EBIRD 7.0 0.8690000000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391837 2015-01-11 21:18:07 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr630514 S21295886 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870253 2015-03-08 21:09:53 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr214884 S22246832 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116448 2015-01-01 09:52:28 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard, 1544 Lake Rd L1802598 P 42.7108 -76.69261999999999 2015-01-01 09:22:00 obsr223307 S21110527 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219195 2021-03-19 16:06:54.047432 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr160104 S21619509 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469140 2018-08-04 16:53:07 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr613199 S21302036 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288762946 2018-08-04 16:52:40 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-03 14:35:00 obsr485179 S21163999 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1095576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294171538 2015-01-31 15:37:41 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 12:53:00 obsr630514 S21615952 Traveling P22 EBIRD 28.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380956 2021-03-30 19:03:28.117389 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354168 2021-03-26 06:11:29.8335 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968749 2018-08-04 16:53:56 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294381000 2021-03-19 16:06:54.047432 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr660965 S21632370 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290682970 2018-08-04 16:53:07 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr68520 S21319366 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869961 2015-03-08 21:09:39 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr214884 S22246815 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294264693 2021-03-24 19:23:17.886063 11371 species avibase-75600969 Northern Flicker Colaptes auratus X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-31 obsr486113 S21623325 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290616704 2021-03-26 06:11:29.8335 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-12 08:26:00 obsr630514 S21313323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355513 2021-03-19 16:06:54.047432 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993883 2021-03-26 06:11:29.8335 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111773 2018-08-04 16:55:14 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-25 11:35:00 obsr301884 S21532080 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216021 2021-03-19 16:06:54.047432 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210930 2021-03-26 06:11:29.8335 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294154352 2015-01-31 14:15:04 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como #1291 E Lake Rd L1808836 P 42.679629 -76.301994 2015-01-31 13:27:00 obsr630514 S21614577 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539656 2021-03-19 16:06:54.047432 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 1 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-17 15:40:00 obsr386262 S21388589 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291706975 2015-03-08 19:37:21 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr630514 S21401294 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380938 2021-03-30 19:03:28.117389 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1500 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290180396 2021-03-30 19:03:28.117389 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr630514 S21278516 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870330 2021-03-30 19:03:28.117389 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr214884 S22246841 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355697 2021-03-30 19:03:28.117389 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 5000 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292672020 2018-08-04 16:54:50 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-21 15:30:00 obsr386262 S21497478 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289019250 2018-08-04 16:52:44 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-04 12:55:00 obsr317741 S21186459 Stationary P21 EBIRD 4.0 6.0 1 G1095920 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543376 2018-08-04 16:53:01 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 20 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr77889 S21308022 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172891 2021-04-01 10:49:39.496318 27616 species avibase-D77E4B41 American Robin Turdus migratorius 8 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr630514 S21277920 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653045 2019-07-23 17:27:05 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 600 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr630514 S21397552 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293116326 2018-08-04 16:55:14 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1200 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-25 11:58:00 obsr301884 S21532441 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292925988 2021-03-26 06:11:29.8335 662 species avibase-FB738385 Bufflehead Bucephala albeola 1600 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Harbor Marina (private) L632907 H 42.8396606 -76.69735909999999 2015-01-24 14:03:00 obsr75717 S21517633 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294335777 2019-11-29 17:53:52 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 15:13:00 obsr520305 S21628957 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292922403 2018-01-14 21:21:32 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 8 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-24 13:57:00 obsr75717 S21517356 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320457 2018-08-04 16:55:29 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 100 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 12:20:00 obsr223307 S21627679 Stationary P21 EBIRD 8.0 1.0 1 G1131260 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354183 2018-08-04 16:55:26 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr660965 S21630310 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292537032 2018-08-04 16:54:50 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 75 United States US New York US-NY Cayuga US-NY-011 13.0 Mill Pond L1057399 P 42.844821200000005 -76.6919732 2015-01-21 15:41:00 obsr232835 S21486831 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033202 2021-03-19 16:06:54.047432 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 200 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469496 2018-08-04 16:53:08 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr613199 S21302063 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219878 2018-08-04 16:55:31 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr160104 S21619562 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355735 2018-08-04 16:55:31 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 12 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 14:43:00 obsr660965 S21630449 Stationary P21 EBIRD 7.0 2.0 1 G1131447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870386 2021-04-01 10:49:39.496318 303 species avibase-B59E1863 Canada Goose Branta canadensis 8 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr214884 S22246845 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288705313 2018-08-04 16:52:30 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Cayuga US-NY-011 13.0 Mill Pond L1057399 P 42.844821200000005 -76.6919732 2015-01-02 11:53:00 obsr232835 S21159449 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293039741 2019-11-29 18:03:23 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 NY:CAY:Ledyard: NYS-90: Wells College boathouse L1071843 P 42.7451252 -76.7010149 2015-01-24 12:48:00 obsr520305 S21525942 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172923 2018-08-04 16:53:01 406 species avibase-27B2749A Wood Duck Aix sponsa 20 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr630514 S21277927 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355645 2021-03-26 06:11:29.8335 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 80 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135083 2018-08-04 16:52:44 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-04 12:55:00 obsr613199 S21195600 Stationary P21 EBIRD 4.0 6.0 1 G1095920 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289066677 2018-08-04 16:52:46 681 species avibase-407E2CA8 Common Merganser Mergus merganser 40 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-04 15:15:00 obsr630514 S21190004 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380997 2021-03-19 16:06:54.047432 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 25 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr660965 S21632370 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543523 2021-03-30 19:03:28.117389 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr77889 S21308038 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355500 2021-03-19 16:06:54.047432 337 species avibase-694C127A Mute Swan Cygnus olor 1500 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543388 2021-04-01 10:49:39.496318 251 domestic avibase-6835DC6C Graylag Goose (Domestic type) Anser anser (Domestic type) 8 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr77889 S21308024 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521296 2021-04-01 10:49:39.496318 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 40 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 11:01:00 obsr151326 S21306333 Stationary P21 EBIRD 4.0 1.0 1 G1105901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741289 2019-07-23 17:27:05 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288150090 2018-08-04 16:52:21 303 species avibase-B59E1863 Canada Goose Branta canadensis 11 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-01 11:41:00 obsr223307 S21113445 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219125 2018-08-04 16:55:31 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 12 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 14:43:00 obsr160104 S21619503 Stationary P21 EBIRD 7.0 2.0 1 G1131447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355609 2021-03-24 19:23:17.886063 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2000 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294135117 2018-08-04 16:55:30 30494 species avibase-240E3390 House Sparrow Passer domesticus 9 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 12:30:00 obsr99508 S21613084 Stationary P21 EBIRD 5.0 1.0 1 G1131263 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292920618 2018-08-04 16:55:09 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 37 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:40:00 obsr75717 S21517212 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917448 2018-08-04 16:55:08 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:25:00 obsr455504 S21516940 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293113939 2018-08-04 16:55:14 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-25 11:51:00 obsr301884 S21532269 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355871 2018-08-04 16:55:31 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr660965 S21630459 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214006 2021-03-30 19:03:28.117389 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1500 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292898167 2018-08-04 16:55:07 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1380 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-24 10:58:00 obsr75717 S21515398 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869994 2019-07-23 17:27:05 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 600 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr214884 S22246816 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290380119 2021-04-01 10:49:39.496318 20829 species avibase-B9B272F4 Common Raven Corvus corax 40 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 11:01:00 obsr257692 S21294888 Stationary P21 EBIRD 4.0 1.0 1 G1105901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354123 2021-03-26 06:11:29.8335 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 250 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr660965 S21630306 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010656 2021-03-19 16:06:54.047432 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 200 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293959398 2018-08-04 16:55:25 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 30 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 08:42:00 obsr257692 S21599183 Stationary P21 EBIRD 5.0 2.0 1 G1129048 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870403 2018-08-04 16:53:01 505 species avibase-C732CB10 American Black Duck Anas rubripes 20 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr214884 S22246846 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293992854 2021-03-26 06:11:29.8335 456 species avibase-D201EB72 American Wigeon Mareca americana 250 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr160104 S21601821 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290444976 2018-08-04 16:53:08 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr317741 S21300011 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293994081 2018-08-04 16:55:26 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr160104 S21601836 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968739 2018-08-04 16:53:56 483 species avibase-85625D75 Mallard Anas platyrhynchos 210 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290982443 2018-08-04 16:53:18 483 species avibase-85625D75 Mallard Anas platyrhynchos 50 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-14 13:13:00 obsr628463 S21343142 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293972372 2018-08-04 16:55:25 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 30 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 08:42:00 obsr151326 S21600433 Stationary P21 EBIRD 5.0 2.0 1 G1129048 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292536867 2018-01-14 21:21:32 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-21 15:29:00 obsr232835 S21486815 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735221 2019-07-23 17:27:05 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539661 2021-03-19 16:06:54.047432 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-17 15:40:00 obsr386262 S21388589 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098320 2018-08-04 16:52:40 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 37 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-03 14:35:00 obsr465975 S21192654 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1095576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320649 2018-08-04 16:55:30 681 species avibase-407E2CA8 Common Merganser Mergus merganser 9 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 12:30:00 obsr223307 S21627686 Stationary P21 EBIRD 5.0 1.0 1 G1131263 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293046558 2021-03-30 19:03:28.117389 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Farley's Pt Rd: N point L3315348 P 42.8226639 -76.70619559999999 2015-01-24 13:55:00 obsr520305 S21526465 Stationary P21 EBIRD 5.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324993174 2018-08-04 16:54:45 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 150 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake L3696266 P 42.7716286 -76.71069229999999 2015-01-20 09:00:00 obsr503745 S23775359 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299330 2018-08-04 16:52:46 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 Male, Adult (2) United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-04 15:30:00 obsr318875 S21208053 Traveling P22 EBIRD 30.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354176 2021-03-26 06:11:29.8335 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 10 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993891 2021-03-26 06:11:29.8335 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683519 2018-08-04 16:53:08 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr68520 S21319413 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293027001 2021-03-30 19:03:28.117389 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 4050 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290830936 2019-11-29 18:22:33 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Union Springs: Mill Pond, NYS-90 L1301373 P 42.8451859 -76.6912597 2015-01-04 12:56:00 obsr520305 S21330804 Stationary P21 EBIRD 5.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217492 2021-03-26 06:11:29.8335 505 species avibase-C732CB10 American Black Duck Anas rubripes 80 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288762943 2018-08-04 16:52:40 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 37 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-03 14:35:00 obsr485179 S21163999 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1095576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288754823 2018-08-04 16:52:40 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 90 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-03 14:13:00 obsr485179 S21163375 Incidental P20 EBIRD 1.0 0 G1095579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111500 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1710 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219192 2021-03-19 16:06:54.047432 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 25 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr160104 S21619509 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292891034 2021-03-26 06:11:29.8335 505 species avibase-C732CB10 American Black Duck Anas rubripes 300 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-01-24 10:30:00 obsr75717 S21514737 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216759 2021-03-24 19:23:17.886063 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2000 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434521 2018-08-04 16:53:07 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:00:00 obsr378414 S21299184 Stationary P21 EBIRD 20.0 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294135048 2018-08-04 16:55:29 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 100 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-31 12:20:00 obsr99508 S21612977 Stationary P21 EBIRD 8.0 1.0 1 G1131260 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098469 2018-08-04 16:52:40 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 90 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-03 14:13:00 obsr465975 S21192672 Incidental P20 EBIRD 1.0 0 G1095579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288478 2018-08-04 16:55:30 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218488 2021-03-30 19:03:28.117389 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5000 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292886780 2019-07-23 17:27:10 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 51 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-24 09:46:00 obsr75717 S21514316 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537547 2021-04-01 10:49:39.496318 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216008 2021-03-19 16:06:54.047432 483 species avibase-85625D75 Mallard Anas platyrhynchos 1500 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218495 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355704 2021-03-30 19:03:28.117389 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172892 2021-04-01 10:49:39.496318 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr630514 S21277920 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391836 2015-01-11 21:18:07 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr630514 S21295886 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543987 2015-01-11 21:18:07 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr77889 S21308076 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870387 2021-04-01 10:49:39.496318 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr214884 S22246845 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288992980 2018-08-04 16:52:43 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. L3278634 P 42.7105699 -76.7030239 2015-01-04 11:19:00 obsr317741 S21184357 Traveling P22 EBIRD 19.0 0.805 6.0 1 G1095922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543389 2021-04-01 10:49:39.496318 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr77889 S21308024 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135203 2018-08-04 16:52:43 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 West end of Lake Rd L3134977 P 42.7103807 -76.6994619 2015-01-04 11:19:00 obsr613199 S21195614 Traveling P22 EBIRD 19.0 0.805 6.0 1 G1095922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870252 2015-03-08 21:09:53 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr214884 S22246832 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288704866 2015-01-03 11:08:03 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Half Acre Road L1391706 P 42.8975928 -76.63058459999999 2015-01-02 11:43:00 obsr232835 S21159392 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216770 2021-03-24 19:23:17.886063 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291945266 2015-01-24 12:10:15 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Port Byron - 43.0418x-76.6268 - Jan 19, 2015, 2:20 PM L3303894 P 43.0418 -76.626754 2015-01-19 14:20:00 obsr279500 S21419699 Incidental P20 EBIRD 2.0 1 G1117598 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292135456 2015-01-24 12:10:15 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Port Byron - 43.0418x-76.6268 - Jan 19, 2015, 2:20 PM L3303894 P 43.0418 -76.626754 2015-01-19 14:20:00 obsr464008 S21434875 Incidental P20 EBIRD 2.0 1 G1117598 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291490577 2021-03-19 16:06:54.047432 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-17 12:30:00 obsr613199 S21384636 Stationary P21 EBIRD 15.0 2.0 1 G1112142 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291456913 2021-03-19 16:06:54.047432 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-17 12:30:00 obsr317741 S21381981 Stationary P21 EBIRD 15.0 2.0 1 G1112142 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291654266 2015-01-18 13:10:18 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Sterling-1301-1399 County Rte 122 L2485768 P 43.346906 -76.649413 2015-01-18 13:09:00 obsr584324 S21397638 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289466110 2017-04-14 15:31:12 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Cayuga US-NY-011 13.0 Cato to Victory-NY-370 L5516856 P 43.167463 -76.58466999999999 2015-01-06 11:28:00 obsr335050 S21221250 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293890515 2019-11-29 18:27:29 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lake Como Rd: Lane E: #1196 L3326108 P 42.6759534 -76.3046327 2015-01-29 11:50:00 obsr520305 S21594008 Traveling P22 EBIRD 52.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293709567 2015-01-28 13:38:21 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Weedsport - 43.0664x-76.5356 - Jan 28, 2015, 1:37 PM L3323943 P 43.066431 -76.535612 2015-01-28 13:37:00 obsr322656 S21579253 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537536 2021-04-01 10:49:39.496318 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292504165 2021-04-01 10:49:39.496318 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-21 11:55:00 obsr223307 S21484189 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116143 2021-04-01 10:49:39.496318 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116446 2015-01-01 09:52:28 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard, 1544 Lake Rd L1802598 P 42.7108 -76.69261999999999 2015-01-01 09:22:00 obsr223307 S21110527 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288158597 2019-09-10 13:56:02 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-01 12:18:00 obsr223307 S21114131 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010665 2021-03-19 16:06:54.047432 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033211 2021-03-19 16:06:54.047432 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290825870 2020-01-31 18:57:31 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-04 11:20:00 obsr520305 S21330358 Stationary P21 EBIRD 5.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480068 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 McFarland Road L792888 P 43.3699926 -76.6313553 2015-01-11 13:18:00 obsr385404 S21302955 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290996200 2019-09-10 13:56:02 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-14 14:32:00 obsr628463 S21344280 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293633266 2015-01-27 21:25:47 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Weedsport - 43.0585x-76.5790 - Jan 27, 2015, 9:25 PM L3322975 P 43.058532 -76.57898 2015-01-26 14:40:00 obsr322656 S21573414 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293628092 2015-01-27 20:53:22 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Weedsport - 43.0621x-76.5577 - Jan 27, 2015, 8:52 PM L3322913 P 43.062058 -76.557736 2015-01-26 15:50:00 obsr322656 S21573072 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292535770 2015-01-21 20:31:55 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cayuga US-NY-011 13.0 Stone School Road L2043948 P 42.8685416 -76.5502453 2015-01-21 13:59:00 obsr232835 S21486728 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293708861 2015-01-28 13:33:14 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 RT NY 10-09III L820291 P 43.0352 -76.6412167 2015-01-28 13:32:00 obsr322656 S21579204 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294264695 2021-03-24 19:23:17.886063 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-31 obsr486113 S21623325 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355619 2021-03-24 19:23:17.886063 31268 issf avibase-95F9C840 Purple Finch Haemorhous purpureus Purple Finch (Eastern) Haemorhous purpureus purpureus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293050233 2020-01-31 18:57:31 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-24 16:41:00 obsr520305 S21526763 Stationary P21 EBIRD 18.0 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111771 2018-08-04 16:55:14 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-25 11:35:00 obsr301884 S21532080 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288427445 2015-01-02 09:47:38 681 species avibase-407E2CA8 Common Merganser Mergus merganser 9 United States US New York US-NY Cayuga US-NY-011 13.0 Backyard Haven L758893 P 42.9395754 -76.5754192 2015-01-01 08:11:00 obsr232835 S21136347 Stationary P21 EBIRD 15.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469138 2018-08-04 16:53:07 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr613199 S21302036 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869960 2015-03-08 21:09:39 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr214884 S22246815 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218498 2021-03-30 19:03:28.117389 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521290 2018-08-04 16:53:08 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 12 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:18:00 obsr151326 S21306332 Stationary P21 EBIRD 7.0 1.0 1 G1105900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293051286 2018-08-04 16:55:10 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 68 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr151326 S21526856 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288144729 2018-08-04 16:52:20 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 5 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-01 11:21:00 obsr223307 S21112915 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292186232 2018-08-04 16:54:47 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 43 United States US New York US-NY Cayuga US-NY-011 13.0 Emerson Park L354461 H 42.901996 -76.537299 2015-01-20 14:19:00 obsr232835 S21438675 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033214 2021-03-19 16:06:54.047432 31530 species avibase-B48335B1 Pine Siskin Spinus pinus X United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877961 2018-08-04 16:55:05 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-24 08:28:00 obsr75717 S21513574 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312123308 2018-08-04 16:55:10 483 species avibase-85625D75 Mallard Anas platyrhynchos 68 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr760316 S23001567 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480644 2021-03-30 19:03:28.117389 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-11 13:45:00 obsr385404 S21303009 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293104955 2021-04-01 10:49:39.496318 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco - Reynolds Rd. L631459 P 42.8693593 -76.4608526 2015-01-04 11:15:00 obsr37213 S21531559 Traveling P22 EBIRD 43.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288126552 2021-03-26 06:11:29.8335 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741303 2019-07-23 17:27:05 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116145 2021-04-01 10:49:39.496318 6339 species avibase-8535345B Herring Gull Larus argentatus 33 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870334 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr214884 S22246841 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098321 2018-08-04 16:52:40 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-03 14:35:00 obsr465975 S21192654 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1095576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137346 2021-03-19 16:06:54.047432 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr223307 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434804 2018-08-04 16:53:07 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr317741 S21299212 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214020 2021-03-30 19:03:28.117389 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735235 2019-07-23 17:27:05 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290379174 2018-08-04 16:53:07 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr317741 S21294812 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026990 2021-03-30 19:03:28.117389 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292455412 2019-07-23 17:27:09 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 15 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683100 2018-08-04 16:53:07 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr68520 S21319374 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290180400 2021-03-30 19:03:28.117389 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr630514 S21278516 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289470882 2017-04-14 14:40:46 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Cayuga US-NY-011 Little Sodus Bay L5404103 H 43.3297159 -76.7094849 2015-01-06 11:50:00 obsr335050 S21221692 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384029 2018-08-04 16:53:07 681 species avibase-407E2CA8 Common Merganser Mergus merganser 12 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:18:00 obsr257692 S21295238 Stationary P21 EBIRD 7.0 1.0 1 G1105900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539658 2021-03-19 16:06:54.047432 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-17 15:40:00 obsr386262 S21388589 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469259 2018-08-04 16:53:07 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:09:00 obsr613199 S21302044 Stationary P21 EBIRD 21.0 12.0 1 G1105492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010668 2021-03-19 16:06:54.047432 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289444577 2015-01-06 08:27:42 622 species avibase-50566E50 Lesser Scaup Aythya affinis 7 United States US New York US-NY Cayuga US-NY-011 13.0 NY 38- Stone School L3270331 P 42.8724416 -76.53917309999999 2015-01-04 12:00:00 obsr318875 S21219420 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111501 2021-03-19 16:06:54.047432 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355707 2021-03-30 19:03:28.117389 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288762944 2018-08-04 16:52:40 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-03 14:35:00 obsr485179 S21163999 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1095576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537541 2021-04-01 10:49:39.496318 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288158598 2019-09-10 13:56:02 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-01 12:18:00 obsr223307 S21114131 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434522 2018-08-04 16:53:07 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 7 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:00:00 obsr378414 S21299184 Stationary P21 EBIRD 20.0 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290682968 2018-08-04 16:53:07 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-11 10:32:00 obsr68520 S21319366 Stationary P21 EBIRD 20.0 12.0 1 G1105491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380952 2021-03-30 19:03:28.117389 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543527 2021-03-30 19:03:28.117389 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr77889 S21308038 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291706974 2015-03-08 19:37:21 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr630514 S21401294 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289257554 2021-03-30 19:03:28.117389 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 10 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-04 12:50:00 obsr437271 S21204654 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324993170 2018-08-04 16:54:45 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 30 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake L3696266 P 42.7716286 -76.71069229999999 2015-01-20 09:00:00 obsr503745 S23775359 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290380120 2021-04-01 10:49:39.496318 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 11:01:00 obsr257692 S21294888 Stationary P21 EBIRD 4.0 1.0 1 G1105901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521297 2021-04-01 10:49:39.496318 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 11:01:00 obsr151326 S21306333 Stationary P21 EBIRD 4.0 1.0 1 G1105901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355698 2021-03-30 19:03:28.117389 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214008 2021-03-30 19:03:28.117389 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 30 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026980 2021-03-30 19:03:28.117389 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 99 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218489 2021-03-30 19:03:28.117389 681 species avibase-407E2CA8 Common Merganser Mergus merganser 10 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355646 2021-03-26 06:11:29.8335 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294166347 2018-08-04 16:55:29 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-31 11:12:00 obsr79559 S21615638 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216760 2021-03-24 19:23:17.886063 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 15 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288468 2018-08-04 16:55:30 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537528 2021-04-01 10:49:39.496318 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355610 2021-03-24 19:23:17.886063 483 species avibase-85625D75 Mallard Anas platyrhynchos 15 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216009 2021-03-19 16:06:54.047432 483 species avibase-85625D75 Mallard Anas platyrhynchos 15 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968740 2018-08-04 16:53:56 592 species avibase-3072CC16 Redhead Aythya americana 5 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380940 2021-03-30 19:03:28.117389 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 30 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355501 2021-03-19 16:06:54.047432 681 species avibase-407E2CA8 Common Merganser Mergus merganser 15 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217493 2021-03-26 06:11:29.8335 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294381039 2021-03-31 03:59:50.422612 483 species avibase-85625D75 Mallard Anas platyrhynchos N 1 United States US New York US-NY Cayuga US-NY-011 13.0 Rt. 90, Ledyard L1079227 P 42.7064073 -76.6787338 2015-01-31 12:07:00 obsr660965 S21632376 Stationary P21 EBIRD 1.0 2.0 1 G1131560 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320959 2021-04-01 10:49:39.496318 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-31 13:55:00 obsr223307 S21627708 Traveling P22 EBIRD 8.0 0.402 1.0 1 G1131267 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294151498 2021-04-01 10:49:39.496318 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus N 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-31 13:55:00 obsr99508 S21614370 Traveling P22 EBIRD 8.0 0.402 1.0 1 G1131267 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287091 2021-03-31 03:59:50.422612 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 1 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: NYS-90: betw Ledyard Rd & (S) Lake Rd L3330790 P 42.7084105 -76.6802841 2015-01-31 13:18:00 obsr520305 S21624988 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294527088 2021-03-31 03:59:50.422612 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard Road L3333894 P 42.7003994 -76.64253470000001 2015-01-31 13:00:00 obsr493483 S21643868 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290973470 2021-03-31 03:59:50.422612 6339 species avibase-8535345B Herring Gull Larus argentatus N 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Ridge Road L637375 P 42.6296963 -76.62684920000001 2015-01-14 obsr381576 S21342581 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211678 2021-03-31 03:59:50.422612 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 1 United States US New York US-NY Cayuga US-NY-011 13.0 Rt. 90, Ledyard L1079227 P 42.7064073 -76.6787338 2015-01-31 12:07:00 obsr160104 S21618991 Stationary P21 EBIRD 1.0 2.0 1 G1131560 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290824269 2021-04-01 10:49:39.496318 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 5 United States US New York US-NY Cayuga US-NY-011 13.0 Center Rd. L99618 H 42.6500149 -76.6246314 2015-01-04 11:00:00 obsr520305 S21330238 Traveling P22 EBIRD 10.0 0.805 6.0 1 G1095923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741224 2021-04-01 10:49:39.496318 662 species avibase-FB738385 Bufflehead Bucephala albeola N X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:30:00 obsr613199 S21404051 Traveling P22 EBIRD 20.0 0.805 7.0 1 G1114094 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537529 2021-04-01 10:49:39.496318 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi N X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290479195 2021-04-01 10:49:39.496318 483 species avibase-85625D75 Mallard Anas platyrhynchos N 3 United States US New York US-NY Cayuga US-NY-011 13.0 Irwin Road L372903 P 43.3938222 -76.63066859999999 2015-01-11 13:00:00 obsr385404 S21296879 Traveling P22 EBIRD 8.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135365 2021-04-01 10:49:39.496318 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 5 United States US New York US-NY Cayuga US-NY-011 13.0 Center Rd. L99618 H 42.6500149 -76.6246314 2015-01-04 11:00:00 obsr613199 S21195622 Traveling P22 EBIRD 10.0 0.805 6.0 1 G1095923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292504172 2021-04-01 10:49:39.496318 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 100 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-21 11:55:00 obsr223307 S21484189 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521299 2021-04-01 10:49:39.496318 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 8 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 11:01:00 obsr151326 S21306333 Stationary P21 EBIRD 4.0 1.0 1 G1105901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870388 2021-04-01 10:49:39.496318 505 species avibase-C732CB10 American Black Duck Anas rubripes N 22 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr214884 S22246845 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354369 2021-04-01 10:49:39.496318 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 10 United States US New York US-NY Cayuga US-NY-011 13.0 Triangle Diner L368656 H 42.664724 -76.638903 2015-01-30 11:25:00 obsr660965 S21630332 Stationary P21 EBIRD 3.0 2.0 1 G1131425 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293104956 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco - Reynolds Rd. L631459 P 42.8693593 -76.4608526 2015-01-04 11:15:00 obsr37213 S21531559 Traveling P22 EBIRD 43.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543390 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 22 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr77889 S21308024 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294151501 2021-04-01 10:49:39.496318 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-31 13:55:00 obsr99508 S21614370 Traveling P22 EBIRD 8.0 0.402 1.0 1 G1131267 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291732579 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:30:00 obsr317741 S21403330 Traveling P22 EBIRD 20.0 0.805 7.0 1 G1114094 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290480065 2021-04-01 10:49:39.496318 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 16 United States US New York US-NY Cayuga US-NY-011 13.0 McFarland Road L792888 P 43.3699926 -76.6313553 2015-01-11 13:18:00 obsr385404 S21302955 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290380122 2021-04-01 10:49:39.496318 616 species avibase-25C94A8F Greater Scaup Aythya marila N 8 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 11:01:00 obsr257692 S21294888 Stationary P21 EBIRD 4.0 1.0 1 G1105901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116138 2021-04-01 10:49:39.496318 303 species avibase-B59E1863 Canada Goose Branta canadensis N 20 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172893 2021-04-01 10:49:39.496318 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 22 United States US New York US-NY Cayuga US-NY-011 13.0 Cheese Factory, Union Springs L1124941 P 42.8450886 -76.69551369999999 2015-01-10 12:36:00 obsr630514 S21277920 Stationary P21 EBIRD 7.0 3.0 1 G1106098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288986678 2021-04-01 10:49:39.496318 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 5 United States US New York US-NY Cayuga US-NY-011 13.0 Center Rd. L99618 H 42.6500149 -76.6246314 2015-01-04 11:00:00 obsr317741 S21183723 Traveling P22 EBIRD 10.0 0.805 6.0 1 G1095923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293994351 2021-04-01 10:49:39.496318 483 species avibase-85625D75 Mallard Anas platyrhynchos N 10 United States US New York US-NY Cayuga US-NY-011 13.0 Triangle Diner L368656 H 42.664724 -76.638903 2015-01-30 11:25:00 obsr160104 S21601877 Stationary P21 EBIRD 3.0 2.0 1 G1131425 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320962 2021-04-01 10:49:39.496318 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-31 13:55:00 obsr223307 S21627708 Traveling P22 EBIRD 8.0 0.402 1.0 1 G1131267 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320961 2021-04-01 10:49:39.496318 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-31 13:55:00 obsr223307 S21627708 Traveling P22 EBIRD 8.0 0.402 1.0 1 G1131267 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292454083 2020-01-31 18:57:31 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-21 12:21:00 obsr223307 S21480179 Stationary P21 EBIRD 1.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291674696 2015-01-18 17:30:13 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Rte 90 south of Long Pt Winery L3300942 P 42.70691179999999 -76.6787338 2015-01-18 12:15:00 obsr317741 S21398957 Incidental P20 EBIRD 3.0 0 G1114090 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869865 2015-03-08 21:09:33 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard Rd. L1173829 P 42.7041367 -76.66706090000001 2015-01-18 12:15:00 obsr214884 S22246809 Incidental P20 EBIRD 3.0 1 G1171083 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294151500 2021-04-01 10:49:39.496318 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-31 13:55:00 obsr99508 S21614370 Traveling P22 EBIRD 8.0 0.402 1.0 1 G1131267 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293268996 2020-01-31 18:57:31 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-24 14:57:00 obsr75717 S21544233 Traveling P22 EBIRD 3.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291740870 2015-01-18 17:30:13 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Cayuga US-NY-011 13.0 Rte 90 south of Long Pt Winery L3300942 P 42.70691179999999 -76.6787338 2015-01-18 12:15:00 obsr613199 S21404026 Incidental P20 EBIRD 3.0 0 G1114090 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291643526 2015-03-08 19:43:20 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard Rd. L1173829 P 42.7041367 -76.66706090000001 2015-01-18 12:15:00 obsr630514 S21396765 Incidental P20 EBIRD 3.0 1 G1171083 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294039525 2020-10-12 18:18:36 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Dorothy McIlroy Bird Sanctuary (FLLT) L295002 H 42.670086100000006 -76.2951639 2015-01-30 08:00:00 obsr68520 S21605720 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354372 2021-04-01 10:49:39.496318 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Triangle Diner L368656 H 42.664724 -76.638903 2015-01-30 11:25:00 obsr660965 S21630332 Stationary P21 EBIRD 3.0 2.0 1 G1131425 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294323072 2015-02-01 10:16:10 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-King Ferry-815-817 Lake Rd L3329186 P 42.662618 -76.63815600000001 2015-01-31 14:12:00 obsr223307 S21627910 Stationary P21 EBIRD 1.0 1.0 1 G1131275 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293993329 2021-04-01 10:49:39.496318 251 domestic avibase-6835DC6C Graylag Goose (Domestic type) Anser anser (Domestic type) 1 United States US New York US-NY Cayuga US-NY-011 13.0 Triangle Diner L368656 H 42.664724 -76.638903 2015-01-30 11:25:00 obsr160104 S21601877 Stationary P21 EBIRD 3.0 2.0 1 G1131425 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294160815 2015-02-01 10:16:10 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-King Ferry-815-817 Lake Rd L3329186 P 42.662618 -76.63815600000001 2015-01-31 14:12:00 obsr99508 S21615164 Stationary P21 EBIRD 1.0 1.0 1 G1131275 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294219879 2018-08-04 16:55:31 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr160104 S21619562 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289134961 2018-08-04 16:52:44 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-04 12:17:00 obsr317741 S21195588 Stationary P21 EBIRD 10.0 6.0 1 G1095941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292267674 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.34588839999999 -76.710341 2015-01-18 10:35:00 obsr705863 S21445016 Traveling P22 EBIRD 25.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355872 2018-08-04 16:55:31 631 spuh avibase-2243C710 Aythya sp. Aythya sp. X United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr660965 S21630459 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293051285 2018-08-04 16:55:10 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 250 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr151326 S21526856 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289137472 2018-08-04 16:52:44 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-04 12:17:00 obsr613199 S21195816 Stationary P21 EBIRD 10.0 6.0 1 G1095941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312123307 2018-08-04 16:55:10 483 species avibase-85625D75 Mallard Anas platyrhynchos 250 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr760316 S23001567 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS671437444 2020-01-31 18:57:31 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-24 16:30:00 obsr54645 S49539490 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000113 2015-06-04 14:35:16 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point Winery L3696349 P 42.7103807 -76.685214 2015-01-12 16:00:00 obsr503745 S23775888 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293050232 2020-01-31 18:57:31 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-24 16:41:00 obsr520305 S21526763 Stationary P21 EBIRD 18.0 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289480987 2015-01-06 13:05:52 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Sterling - 43.3548x-76.6499 - Jan 6, 2015, 1:05 PM L3270876 P 43.354796 -76.649929 2015-01-06 13:05:00 obsr335050 S21222591 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289444917 2015-01-06 08:32:01 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Cayuga US-NY-011 13.0 Mobbs Road L3270333 P 42.880492700000005 -76.563549 2015-01-04 10:30:00 obsr318875 S21219450 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292266447 2021-03-26 06:11:29.8335 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-18 08:45:00 obsr705863 S21444552 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291732581 2021-04-01 10:49:39.496318 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:30:00 obsr317741 S21403330 Traveling P22 EBIRD 20.0 0.805 7.0 1 G1114094 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291638896 2021-03-26 06:11:29.8335 505 species avibase-C732CB10 American Black Duck Anas rubripes 30 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr630514 S21396396 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291456914 2021-03-19 16:06:54.047432 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-17 12:30:00 obsr317741 S21381981 Stationary P21 EBIRD 15.0 2.0 1 G1112142 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354274 2021-03-19 16:06:54.047432 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3327291 P 42.70038 -76.6437 2015-01-30 11:05:00 obsr660965 S21630316 Traveling P22 EBIRD 11.0 0.483 2.0 1 G1131422 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293896564 2019-11-29 17:58:15 483 species avibase-85625D75 Mallard Anas platyrhynchos 20 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Ledyard Rd: N side W/Dixon Rd L3326167 P 42.70081679999999 -76.6425562 2015-01-29 15:35:00 obsr520305 S21594472 Traveling P22 EBIRD 10.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291490578 2021-03-19 16:06:54.047432 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-17 12:30:00 obsr613199 S21384636 Stationary P21 EBIRD 15.0 2.0 1 G1112142 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293994155 2021-03-19 16:06:54.047432 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3327291 P 42.70038 -76.6437 2015-01-30 11:05:00 obsr160104 S21601874 Traveling P22 EBIRD 11.0 0.483 2.0 1 G1131422 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294527086 2021-03-31 03:59:50.422612 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard Road L3333894 P 42.7003994 -76.64253470000001 2015-01-31 13:00:00 obsr493483 S21643868 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741226 2021-04-01 10:49:39.496318 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:30:00 obsr613199 S21404051 Traveling P22 EBIRD 20.0 0.805 7.0 1 G1114094 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294381084 2018-12-04 21:19:16 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 130 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3327291 P 42.70038 -76.6437 2015-01-31 11:43:00 obsr660965 S21632385 Stationary P21 EBIRD 19.0 2.0 1 G1131562 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290969340 2015-01-14 12:08:57 483 species avibase-85625D75 Mallard Anas platyrhynchos 12 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry Winery L503947 H 42.6501534 -76.6355932 2015-01-14 12:05:00 obsr656595 S21342303 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869917 2021-03-26 06:11:29.8335 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 30 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr214884 S22246811 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293957308 2015-01-30 16:56:32 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 50 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3326836 P 42.70043 -76.64254 2015-01-30 08:05:00 obsr257692 S21599026 Stationary P21 EBIRD 19.0 2.0 1 G1129049 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293972376 2015-01-30 16:56:32 303 species avibase-B59E1863 Canada Goose Branta canadensis 50 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3326836 P 42.70043 -76.64254 2015-01-30 08:05:00 obsr151326 S21600434 Stationary P21 EBIRD 19.0 2.0 1 G1129049 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211512 2018-12-04 21:19:16 505 species avibase-C732CB10 American Black Duck Anas rubripes 130 United States US New York US-NY Cayuga US-NY-011 13.0 King Ferry, 1356-1398 Ledyard Road L3327291 P 42.70038 -76.6437 2015-01-31 11:43:00 obsr160104 S21618973 Stationary P21 EBIRD 19.0 2.0 1 G1131562 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324993173 2018-08-04 16:54:45 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake L3696266 P 42.7716286 -76.71069229999999 2015-01-20 09:00:00 obsr503745 S23775359 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137337 2021-03-19 16:06:54.047432 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr223307 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355523 2021-03-19 16:06:54.047432 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214032 2021-03-30 19:03:28.117389 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216031 2021-03-19 16:06:54.047432 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380964 2021-03-30 19:03:28.117389 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294527085 2021-03-31 03:59:50.422612 505 species avibase-C732CB10 American Black Duck Anas rubripes 8 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard Road L3333894 P 42.7003994 -76.64253470000001 2015-01-31 13:00:00 obsr493483 S21643868 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294337543 2021-03-19 16:06:54.047432 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Aurelius: River Rd, S leg L3331543 P 42.9435287 -76.7316297 2015-01-31 16:25:00 obsr520305 S21629113 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543521 2021-03-30 19:03:28.117389 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 500 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr77889 S21308038 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870328 2021-03-30 19:03:28.117389 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 500 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr214884 S22246841 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290180394 2021-03-30 19:03:28.117389 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 500 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr630514 S21278516 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294166350 2018-08-04 16:55:29 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-31 11:12:00 obsr79559 S21615638 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993877 2021-03-26 06:11:29.8335 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr160104 S21601829 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354162 2021-03-26 06:11:29.8335 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr660965 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292536646 2018-08-04 16:54:49 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-21 14:22:00 obsr232835 S21486800 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292186235 2018-08-04 16:54:47 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Emerson Park L354461 H 42.901996 -76.537299 2015-01-20 14:19:00 obsr232835 S21438675 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543519 2021-03-30 19:03:28.117389 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr77889 S21308038 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216755 2021-03-24 19:23:17.886063 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870326 2021-03-30 19:03:28.117389 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr214884 S22246841 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290180392 2021-03-30 19:03:28.117389 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr630514 S21278516 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993298 2021-03-26 06:11:29.8335 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr160104 S21601821 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116452 2015-01-01 09:52:28 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 9 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard, 1544 Lake Rd L1802598 P 42.7108 -76.69261999999999 2015-01-01 09:22:00 obsr223307 S21110527 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219199 2021-03-19 16:06:54.047432 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr160104 S21619509 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216026 2021-03-19 16:06:54.047432 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391668 2015-01-11 21:18:21 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr630514 S21295872 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877966 2018-08-04 16:55:05 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 1 S C2 S United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-24 08:28:00 obsr75717 S21513574 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288126558 2021-03-26 06:11:29.8335 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211937 2021-03-19 16:06:54.047432 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr160104 S21619012 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111492 2021-03-19 16:06:54.047432 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116146 2021-04-01 10:49:39.496318 616 species avibase-25C94A8F Greater Scaup Aythya marila 4 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557556 2020-05-02 15:38:26 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-27 13:03:00 obsr595883 S21567472 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870240 2015-03-08 21:09:52 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr214884 S22246830 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380962 2021-03-30 19:03:28.117389 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294154357 2015-01-31 14:15:04 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como #1291 E Lake Rd L1808836 P 42.679629 -76.301994 2015-01-31 13:27:00 obsr630514 S21614577 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537531 2021-04-01 10:49:39.496318 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968751 2018-08-04 16:53:56 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.27657409999999 2015-01-18 10:50:00 obsr37213 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869915 2021-03-26 06:11:29.8335 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr214884 S22246811 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354629 2021-03-26 06:11:29.8335 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 7 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294381004 2021-03-19 16:06:54.047432 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-31 14:53:00 obsr660965 S21632370 Stationary P21 EBIRD 9.0 2.0 1 G1131559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294153019 2020-05-02 15:38:26 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-31 13:33:00 obsr595883 S21614483 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869954 2015-03-08 21:09:39 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr214884 S22246815 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917451 2018-08-04 16:55:08 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:25:00 obsr455504 S21516940 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293109177 2018-08-04 16:55:13 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-25 11:09:00 obsr301884 S21531872 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288150094 2018-08-04 16:52:21 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-01 11:41:00 obsr223307 S21113445 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293924478 2021-03-24 19:23:17.886063 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-29 10:00:00 obsr486113 S21596457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214030 2021-03-30 19:03:28.117389 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210937 2021-03-26 06:11:29.8335 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 7 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294264696 2021-03-24 19:23:17.886063 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-31 obsr486113 S21623325 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544072 2015-01-11 21:18:21 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr77889 S21308081 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291638894 2021-03-26 06:11:29.8335 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-01-18 11:34:00 obsr630514 S21396396 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1171082 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291706969 2015-03-08 19:37:21 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr630514 S21401294 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355518 2021-03-19 16:06:54.047432 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354133 2021-03-26 06:11:29.8335 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr660965 S21630306 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354691 2021-03-19 16:06:54.047432 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr660965 S21630374 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137351 2021-03-19 16:06:54.047432 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr223307 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355606 2021-03-24 19:23:17.886063 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 30 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293051287 2018-08-04 16:55:10 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 61 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr151326 S21526856 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026995 2021-03-30 19:03:28.117389 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 413 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293046554 2021-03-30 19:03:28.117389 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Farley's Pt Rd: N point L3315348 P 42.8226639 -76.70619559999999 2015-01-24 13:55:00 obsr520305 S21526465 Stationary P21 EBIRD 5.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294150339 2018-08-04 16:55:30 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr99508 S21614279 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543520 2021-03-30 19:03:28.117389 662 species avibase-FB738385 Bufflehead Bucephala albeola 100 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr77889 S21308038 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216756 2021-03-24 19:23:17.886063 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 30 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292904081 2021-03-19 16:06:54.047432 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 52 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-24 11:03:00 obsr455504 S21515910 Traveling P22 EBIRD 79.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292455406 2019-07-23 17:27:09 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 49 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292891031 2021-03-26 06:11:29.8335 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-01-24 10:30:00 obsr75717 S21514737 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870327 2021-03-30 19:03:28.117389 11371 species avibase-75600969 Northern Flicker Colaptes auratus 100 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr214884 S22246841 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290469362 2015-01-11 17:05:25 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr613199 S21302053 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289031430 2019-09-10 13:56:02 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-04 13:37:00 obsr317741 S21187424 Traveling P22 EBIRD 9.0 0.805 6.0 1 G1095918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735230 2019-07-23 17:27:05 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320904 2018-08-04 16:55:30 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:41:00 obsr223307 S21627703 Traveling P22 EBIRD 14.0 1.609 1.0 1 G1131265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295875016 2015-02-09 22:48:42 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 9 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard L3349867 P 42.698356200000006 -76.6838354 2015-01-30 16:45:00 obsr495590 S21749337 Stationary P21 EBIRD 45.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741298 2019-07-23 17:27:05 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380932 2021-03-30 19:03:28.117389 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 30 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219874 2018-08-04 16:55:31 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 300 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr160104 S21619562 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290180393 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 100 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-01-10 12:57:00 obsr630514 S21278516 Stationary P21 EBIRD 20.0 3.0 1 G1106099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355867 2018-08-04 16:55:31 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 300 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-01-31 15:05:00 obsr660965 S21630459 Stationary P21 EBIRD 6.0 2.0 1 G1131448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312123309 2018-08-04 16:55:10 303 species avibase-B59E1863 Canada Goose Branta canadensis 61 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr760316 S23001567 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292880532 2021-03-26 06:11:29.8335 662 species avibase-FB738385 Bufflehead Bucephala albeola 118 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road north--Long Point to Lake Road bluff L1375811 P 42.728647 -76.7103856 2015-01-24 09:01:00 obsr75717 S21513779 Traveling P22 EBIRD 24.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869990 2019-07-23 17:27:05 30494 species avibase-240E3390 House Sparrow Passer domesticus 102 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr214884 S22246816 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216004 2021-03-19 16:06:54.047432 622 species avibase-50566E50 Lesser Scaup Aythya affinis 50 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010654 2021-03-19 16:06:54.047432 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 13 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355496 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 50 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324993182 2018-08-04 16:54:45 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 30 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake L3696266 P 42.7716286 -76.71069229999999 2015-01-20 09:00:00 obsr503745 S23775359 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289134966 2019-09-10 13:56:02 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-04 13:37:00 obsr613199 S21195589 Traveling P22 EBIRD 9.0 0.805 6.0 1 G1095918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290830951 2019-09-10 13:56:02 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-04 13:37:00 obsr520305 S21330808 Traveling P22 EBIRD 9.0 0.805 6.0 1 G1095918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877952 2018-08-04 16:55:05 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 61 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-24 08:28:00 obsr75717 S21513574 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288486 2018-08-04 16:55:30 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 13:27:00 obsr520305 S21625074 Traveling P22 EBIRD 37.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218485 2021-03-30 19:03:28.117389 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 9 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr160104 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293109164 2018-08-04 16:55:13 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 16 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-25 11:09:00 obsr301884 S21531872 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292898162 2018-08-04 16:55:07 483 species avibase-85625D75 Mallard Anas platyrhynchos 53 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-24 10:58:00 obsr75717 S21515398 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214000 2021-03-30 19:03:28.117389 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 30 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434739 2015-01-11 17:05:25 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr317741 S21299206 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355694 2021-03-30 19:03:28.117389 11528 species avibase-F3DA111C Merlin Falco columbarius 9 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr660965 S21630443 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683400 2015-01-12 14:34:29 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.72986750000001 2015-01-11 12:50:00 obsr68520 S21319401 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293039744 2019-11-29 18:03:23 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 NY:CAY:Ledyard: NYS-90: Wells College boathouse L1071843 P 42.7451252 -76.7010149 2015-01-24 12:48:00 obsr520305 S21525942 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292882058 2018-08-04 16:55:06 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 8 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-24 09:32:00 obsr75717 S21513915 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294335782 2019-11-29 17:53:52 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 15:13:00 obsr520305 S21628957 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033200 2021-03-19 16:06:54.047432 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 13 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653042 2019-07-23 17:27:05 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 102 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr630514 S21397552 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111768 2018-08-04 16:55:14 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 10 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-25 11:35:00 obsr301884 S21532080 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292672018 2018-08-04 16:54:50 662 species avibase-FB738385 Bufflehead Bucephala albeola 66 United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-21 15:30:00 obsr386262 S21497478 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291535792 2021-03-19 16:06:54.047432 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-17 15:00:00 obsr386262 S21388272 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116141 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.49265290000001 2015-01-04 10:05:00 obsr705863 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294029053 2020-05-02 15:38:26 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-30 16:10:00 obsr595883 S21604821 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210938 2021-03-26 06:11:29.8335 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216027 2021-03-19 16:06:54.047432 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354630 2021-03-26 06:11:29.8335 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291971041 2018-08-04 16:53:55 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake - Fall Brook (private) L1377696 P 42.832681 -76.3456749 2015-01-18 09:38:00 obsr37213 S21421856 Traveling P22 EBIRD 57.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294153020 2020-05-02 15:38:26 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-31 13:33:00 obsr595883 S21614483 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293890519 2019-11-29 18:27:29 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lake Como Rd: Lane E: #1196 L3326108 P 42.6759534 -76.3046327 2015-01-29 11:50:00 obsr520305 S21594008 Traveling P22 EBIRD 52.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557557 2020-05-02 15:38:26 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-27 13:03:00 obsr595883 S21567472 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293924488 2021-03-24 19:23:17.886063 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-29 10:00:00 obsr486113 S21596457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380939 2021-03-30 19:03:28.117389 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355519 2021-03-19 16:06:54.047432 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293104959 2021-04-01 10:49:39.496318 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco - Reynolds Rd. L631459 P 42.8693593 -76.4608526 2015-01-04 11:15:00 obsr37213 S21531559 Traveling P22 EBIRD 43.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354127 2021-03-26 06:11:29.8335 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr660965 S21630306 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294039874 2021-03-24 19:23:17.886063 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-30 08:45:00 obsr68520 S21605751 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214007 2021-03-30 19:03:28.117389 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292704315 2015-01-22 22:17:14 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-22 15:45:00 obsr542235 S21500024 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537526 2021-04-01 10:49:39.496318 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294264683 2021-03-24 19:23:17.886063 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-31 obsr486113 S21623325 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289257547 2015-01-05 10:10:29 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-04 14:15:00 obsr437271 S21204652 Traveling P22 EBIRD 25.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299326 2018-08-04 16:52:46 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-04 15:30:00 obsr318875 S21208053 Traveling P22 EBIRD 30.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293993292 2021-03-26 06:11:29.8335 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr160104 S21601821 Stationary P21 EBIRD 17.0 2.0 1 G1131418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026979 2021-03-30 19:03:28.117389 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr75717 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870260 2015-03-08 21:09:53 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr214884 S22246832 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543995 2015-01-11 21:18:07 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr77889 S21308076 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292457835 2019-07-23 17:27:09 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294171544 2015-01-31 15:37:41 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 12:53:00 obsr630514 S21615952 Traveling P22 EBIRD 28.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294154358 2015-01-31 14:15:04 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como #1291 E Lake Rd L1808836 P 42.679629 -76.301994 2015-01-31 13:27:00 obsr630514 S21614577 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391844 2015-01-11 21:18:07 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hovel Chalet L276947 H 42.688482 -76.330084 2015-01-11 10:28:00 obsr630514 S21295886 Stationary P21 EBIRD 9.0 3.0 1 G1106106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291706971 2015-03-08 19:37:21 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr630514 S21401294 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869956 2015-03-08 21:09:39 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896000000005 -76.7037109 2015-01-18 14:26:00 obsr214884 S22246815 Traveling P22 EBIRD 51.0 0.805 5.0 1 G1171062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294133386 2016-07-19 14:06:08 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt Rd. L366919 H 42.6564028 -76.3262996 2015-01-31 12:14:00 obsr630514 S21612989 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288104671 2021-03-26 06:11:29.8335 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-01 08:56:00 obsr223307 S21109713 Stationary P21 EBIRD 11.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS301870242 2015-03-08 21:09:52 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr214884 S22246830 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293924489 2021-03-24 19:23:17.886063 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-29 10:00:00 obsr486113 S21596457 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380965 2021-03-30 19:03:28.117389 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354633 2021-03-26 06:11:29.8335 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr660965 S21630363 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294287592 2019-11-29 17:55:18 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 4 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: S/Long Pt SP L3289857 P 42.711757 -76.70484240000002 2015-01-31 13:19:00 obsr520305 S21625018 Traveling P22 EBIRD 7.0 0.8690000000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292504167 2021-04-01 10:49:39.496318 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, Ledyard L367454 H 42.6331378 -76.6293812 2015-01-21 11:55:00 obsr223307 S21484189 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544074 2015-01-11 21:18:21 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr77889 S21308081 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294029055 2020-05-02 15:38:26 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-30 16:10:00 obsr595883 S21604821 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214033 2021-03-30 19:03:28.117389 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354694 2021-03-19 16:06:54.047432 6339 species avibase-8535345B Herring Gull Larus argentatus 7 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr660965 S21630374 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216032 2021-03-19 16:06:54.047432 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557559 2020-05-02 15:38:26 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-27 13:03:00 obsr595883 S21567472 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210941 2021-03-26 06:11:29.8335 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 10:16:00 obsr160104 S21618935 Traveling P22 EBIRD 31.0 2.414 2.0 1 G1131435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391670 2015-01-11 21:18:21 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr630514 S21295872 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355524 2021-03-19 16:06:54.047432 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288126561 2021-03-26 06:11:29.8335 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-01 09:53:00 obsr223307 S21111192 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211940 2021-03-19 16:06:54.047432 26890 species avibase-94A44032 European Starling Sturnus vulgaris 7 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr160104 S21619012 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116455 2015-01-01 09:52:28 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard, 1544 Lake Rd L1802598 P 42.7108 -76.69261999999999 2015-01-01 09:22:00 obsr223307 S21110527 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294153022 2020-05-02 15:38:26 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-31 13:33:00 obsr595883 S21614483 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653048 2019-07-23 17:27:05 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr630514 S21397552 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292886781 2019-07-23 17:27:10 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-24 09:46:00 obsr75717 S21514316 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290616698 2021-03-26 06:11:29.8335 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-12 08:26:00 obsr630514 S21313323 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216762 2021-03-24 19:23:17.886063 483 species avibase-85625D75 Mallard Anas platyrhynchos 17 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294335783 2019-11-29 17:53:52 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 17 United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.734050200000006 -76.70606020000001 2015-01-31 15:13:00 obsr520305 S21628957 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292457833 2019-07-23 17:27:09 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-21 12:33:00 obsr223307 S21480316 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355612 2021-03-24 19:23:17.886063 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus 17 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741288 2019-07-23 17:27:05 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735220 2019-07-23 17:27:05 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 6 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293039746 2019-11-29 18:03:23 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 NY:CAY:Ledyard: NYS-90: Wells College boathouse L1071843 P 42.7451252 -76.7010149 2015-01-24 12:48:00 obsr520305 S21525942 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869997 2019-07-23 17:27:05 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:20:00 obsr214884 S22246816 Stationary P21 EBIRD 36.0 5.0 1 G1171086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355648 2021-03-26 06:11:29.8335 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 17 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr660965 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292912515 2019-07-23 17:27:11 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-24 13:06:00 obsr455504 S21516532 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294217495 2021-03-26 06:11:29.8335 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 17 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr160104 S21619390 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290479193 2021-04-01 10:49:39.496318 303 species avibase-B59E1863 Canada Goose Branta canadensis 12 United States US New York US-NY Cayuga US-NY-011 13.0 Irwin Road L372903 P 43.3938222 -76.63066859999999 2015-01-11 13:00:00 obsr385404 S21296879 Traveling P22 EBIRD 8.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294527087 2021-03-31 03:59:50.422612 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 3 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard Road L3333894 P 42.7003994 -76.64253470000001 2015-01-31 13:00:00 obsr493483 S21643868 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299324 2018-08-04 16:52:46 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 Male, Adult (1) United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-04 15:30:00 obsr318875 S21208053 Traveling P22 EBIRD 30.0 0.805 5.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288764275 2018-08-04 16:52:40 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr485179 S21164107 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292898165 2018-08-04 16:55:07 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-24 10:58:00 obsr75717 S21515398 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216007 2021-03-19 16:06:54.047432 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr160104 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291539657 2021-03-19 16:06:54.047432 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Cayuga US-NY-011 13.0 Honoco Rd., Aurora L2607370 H 42.7018659 -76.6888189 2015-01-17 15:40:00 obsr386262 S21388589 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324993181 2018-08-04 16:54:45 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 2 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake L3696266 P 42.7716286 -76.71069229999999 2015-01-20 09:00:00 obsr503745 S23775359 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355499 2021-03-19 16:06:54.047432 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr660965 S21630429 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292880535 2021-03-26 06:11:29.8335 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road north--Long Point to Lake Road bluff L1375811 P 42.728647 -76.7103856 2015-01-24 09:01:00 obsr75717 S21513779 Traveling P22 EBIRD 24.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098399 2018-08-04 16:52:40 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr465975 S21192664 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294166345 2018-08-04 16:55:29 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-31 11:12:00 obsr79559 S21615638 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354125 2021-03-26 06:11:29.8335 20294 species avibase-76158864 Northern Shrike Lanius borealis 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr660965 S21630306 Stationary P21 EBIRD 17.0 2.0 1 G1131418 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293993290 2021-03-26 06:11:29.8335 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-30 09:57:00 obsr160104 S21601821 Stationary P21 EBIRD 17.0 2.0 1 G1131418 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290543378 2018-08-04 16:53:01 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr77889 S21308022 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735233 2019-07-23 17:27:05 456 species avibase-D201EB72 American Wigeon Mareca americana X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr317741 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354182 2018-08-04 16:55:26 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr660965 S21630310 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293994080 2018-08-04 16:55:26 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr160104 S21601836 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292886786 2019-07-23 17:27:10 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-24 09:46:00 obsr75717 S21514316 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312123306 2018-08-04 16:55:10 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr760316 S23001567 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292891040 2021-03-26 06:11:29.8335 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 8 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-01-24 10:30:00 obsr75717 S21514737 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290172925 2018-08-04 16:53:01 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr630514 S21277927 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292010652 2021-03-19 16:06:54.047432 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr166394 S21425015 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741301 2019-07-23 17:27:05 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr613199 S21404056 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870405 2018-08-04 16:53:01 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-10 12:20:00 obsr214884 S22246846 Stationary P21 EBIRD 11.0 3.0 1 G1106097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293051284 2018-08-04 16:55:10 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 10 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr151326 S21526856 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033198 2021-03-19 16:06:54.047432 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 6 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.933992700000005 -76.7278183 2015-01-19 14:00:00 obsr593385 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537525 2021-04-01 10:49:39.496318 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr393139 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295845175 2015-02-09 20:43:04 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard L3349867 P 42.698356200000006 -76.6838354 2015-01-31 14:10:00 obsr495590 S21748681 Stationary P21 EBIRD 10.0 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288141288 2018-01-14 21:21:32 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-01 11:15:00 obsr223307 S21112582 Stationary P21 EBIRD 8.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216779 2021-03-24 19:23:17.886063 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr160104 S21619337 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380948 2021-03-30 19:03:28.117389 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr660965 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214016 2021-03-30 19:03:28.117389 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr160104 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355628 2021-03-24 19:23:17.886063 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.732040600000005 -76.7083025 2015-01-31 13:14:00 obsr660965 S21630437 Traveling P22 EBIRD 31.0 0.483 2.0 1 G1131443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453737 2021-04-01 10:51:06.899622 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291699839 2018-08-04 16:53:58 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Pond behind Walmart, Fredonia L2057244 H 42.4528479 -79.3144333 2015-01-18 14:48:00 obsr610593 S21400682 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901345 2018-08-04 16:55:07 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544498 2018-08-04 16:52:51 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-10401 Bennett Rd walmart pond L2583912 P 42.453091 -79.313939 2015-01-06 13:45:00 obsr196919 S21227599 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612682 2021-03-30 19:03:54.667077 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292462051 2021-03-24 05:37:45.927792 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-21 13:09:00 obsr610593 S21480867 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544000 2021-04-01 10:51:06.899622 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 17 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291640384 2018-08-04 16:53:56 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Eagle Bay L3182194 H 42.5358712 -79.2230498 2015-01-18 11:21:00 obsr610593 S21396070 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289290319 2021-03-24 05:37:45.927792 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 23 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-05 12:54:00 obsr610593 S21207331 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291631400 2015-02-21 15:54:40 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Saint Hyacinth Chapel and Cemetery L2057391 H 42.5051356 -79.3030071 2015-01-18 11:03:00 obsr610593 S21395732 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994662 2021-03-24 05:37:45.927792 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:20:00 obsr610593 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171141 2021-04-01 10:51:06.899622 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk L141361 T 42.4794617 -79.3339691 2015-01-25 13:00:00 obsr77651 S21536626 Traveling P22 EBIRD 120.0 48.28 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288185751 2021-04-01 10:51:06.899622 1806 species avibase-32DCEC14 Eared Grebe Podiceps nigricollis 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768000000001 2015-01-01 13:01:00 obsr610593 S21116275 Stationary P21 EBIRD 44.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290958467 2018-08-04 16:53:17 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 13:15:00 obsr448063 S21341387 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293450302 2015-01-26 20:03:44 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 18 United States US New York US-NY Chautauqua US-NY-013 13.0 Sandhill Designs L3320804 P 42.006055 -79.16491090000001 2015-01-25 10:00:00 obsr605033 S21559323 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453734 2021-04-01 10:51:06.899622 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291097506 2021-04-01 10:51:06.899622 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-15 07:57:00 obsr610593 S21352645 Traveling P22 EBIRD 35.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219010 2015-01-15 22:36:25 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648449 2021-04-01 10:51:06.899622 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 156 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-01-22 11:00:00 obsr655124 S21495478 Traveling P22 EBIRD 90.0 59.54600000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288138883 2021-04-01 10:51:06.899622 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Celoron Boat Launch, Chautauqua Lake L200467 H 42.1113404 -79.2830005 2015-01-01 09:35:00 obsr562964 S21112332 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291938902 2015-01-19 14:59:07 662 species avibase-FB738385 Bufflehead Bucephala albeola 6 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Silver Creek-12002-12118 Co Touring Rte 79 L3303974 P 42.524084 -79.237154 2015-01-19 14:00:00 obsr279182 S21419148 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291687435 2015-01-18 14:09:18 8829 species avibase-8F123A11 Short-eared Owl Asio flammeus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Canadaway Creek Preserve L122937 H 42.47417 -79.36528 2015-01-18 13:59:00 obsr610593 S21399789 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290025143 2021-09-03 19:22:31.034431 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-09 08:14:00 obsr610593 S21262361 Stationary P21 EBIRD 314.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292956112 2015-01-24 16:21:24 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Clymer-1351-1365 Old Rd L3314343 P 42.060603 -79.733531 2015-01-24 09:00:00 obsr616597 S21519860 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288446444 2019-12-12 11:01:20 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 10:42:00 obsr610593 S21137904 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293946061 2021-03-26 06:12:17.833181 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-29 23:00:00 obsr77651 S21598110 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288453184 2018-08-04 16:52:29 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-02 11:20:00 obsr610593 S21138544 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288109660 2015-03-09 21:12:28 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-01 09:01:00 obsr610593 S21110132 Traveling P22 EBIRD 34.0 5.632999999999999 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288196560 2021-03-24 19:24:40.212356 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-01 14:02:00 obsr610593 S21117237 Traveling P22 EBIRD 18.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291771082 2021-03-24 05:37:45.927792 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 13:30:00 obsr448063 S21406389 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290612164 2021-04-01 10:51:06.899622 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-12 07:52:00 obsr610593 S21312980 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290227729 2021-03-19 16:08:39.161312 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768000000001 2015-01-10 16:05:00 obsr610593 S21282519 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288986135 2021-04-01 10:51:06.899622 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-04 10:47:00 obsr610593 S21183668 Traveling P22 EBIRD 20.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289679108 2019-01-07 15:27:28 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-07 12:34:00 obsr610593 S21238196 Traveling P22 EBIRD 33.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292198219 2021-03-26 06:12:17.833181 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-19 10:45:00 obsr77651 S21439566 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116439 2018-08-04 16:52:16 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-01 09:41:00 obsr610593 S21110522 Traveling P22 EBIRD 10.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294254238 2021-03-24 19:24:40.212356 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.33021550000001 2015-01-31 11:30:00 obsr22013 S21622559 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926524 2015-01-03 23:41:22 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-02 09:00:00 obsr650950 S21179164 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291609135 2021-04-01 10:51:06.899622 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-18 07:40:00 obsr610593 S21393783 Traveling P22 EBIRD 31.0 6.035 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867860 2015-01-19 08:57:23 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Boutwell Hill SF L2054628 H 42.31860579999999 -79.1861057 2015-01-19 07:57:00 obsr610593 S21413712 Traveling P22 EBIRD 55.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288121660 2021-03-24 05:37:45.927792 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-01 09:52:00 obsr610593 S21110968 Stationary P21 EBIRD 12.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288139318 2021-04-01 10:51:06.899622 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 22 United States US New York US-NY Chautauqua US-NY-013 13.0 Town of Busti L2076554 P 42.0197126 -79.3120193 2015-01-01 09:54:00 obsr562964 S21112379 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292954067 2015-03-09 21:12:28 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-24 10:00:00 obsr77804 S21519677 Traveling P22 EBIRD 45.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292884132 2015-03-03 10:02:11 592 species avibase-3072CC16 Redhead Aythya americana 6 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-24 08:00:00 obsr448063 S21514098 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926341 2018-08-04 16:52:14 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288416502 2021-09-03 19:22:31.034431 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-02 08:35:00 obsr610593 S21135298 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421448 2015-01-11 16:23:57 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-11 12:43:00 obsr610593 S21298168 Traveling P22 EBIRD 86.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293690166 2021-09-03 19:22:31.034431 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 15 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-28 10:44:00 obsr610593 S21577894 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292589064 2021-09-03 19:22:31.034431 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 17 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-22 09:21:00 obsr610593 S21490937 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289741985 2015-03-03 10:02:11 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 11 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-07 08:00:00 obsr448063 S21242835 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926523 2015-01-03 23:41:22 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-02 09:00:00 obsr650950 S21179164 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292884130 2015-03-03 10:02:11 26109 species avibase-BAC33609 Brown Creeper Certhia americana 7 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-24 08:00:00 obsr448063 S21514098 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294117383 2021-09-03 19:22:31.034431 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 21 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-31 07:45:00 obsr610593 S21611639 Stationary P21 EBIRD 135.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290153365 2021-09-03 19:22:31.034431 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 14 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-10 10:27:00 obsr610593 S21276110 Stationary P21 EBIRD 68.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289543991 2021-04-01 10:51:06.899622 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219007 2015-01-15 22:36:25 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289981875 2021-09-03 19:22:31.034431 662 species avibase-FB738385 Bufflehead Bucephala albeola 11 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-09 08:14:00 obsr610593 S21262361 Stationary P21 EBIRD 314.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288417613 2021-09-03 19:22:31.034431 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-02 08:35:00 obsr610593 S21135298 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293734989 2015-03-03 10:02:11 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 6 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-28 09:00:00 obsr448063 S21581225 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926334 2018-08-04 16:52:14 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293450296 2015-01-26 20:03:44 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Sandhill Designs L3320804 P 42.006055 -79.16491090000001 2015-01-25 10:00:00 obsr605033 S21559323 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351376 2015-03-03 10:02:11 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 15 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-10 08:15:00 obsr448063 S21292457 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291937360 2015-03-09 21:12:28 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-19 14:15:00 obsr279182 S21419046 Traveling P22 EBIRD 38.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291609134 2021-04-01 10:51:06.899622 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-18 07:40:00 obsr610593 S21393783 Traveling P22 EBIRD 31.0 6.035 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867862 2015-01-19 08:57:23 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Chautauqua US-NY-013 13.0 Boutwell Hill SF L2054628 H 42.31860579999999 -79.1861057 2015-01-19 07:57:00 obsr610593 S21413712 Traveling P22 EBIRD 55.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289543999 2021-04-01 10:51:06.899622 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291609138 2021-04-01 10:51:06.899622 303 species avibase-B59E1863 Canada Goose Branta canadensis 24 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-18 07:40:00 obsr610593 S21393783 Traveling P22 EBIRD 31.0 6.035 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926329 2018-08-04 16:52:14 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289741988 2015-03-03 10:02:11 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-07 08:00:00 obsr448063 S21242835 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291097507 2021-04-01 10:51:06.899622 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 25 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-15 07:57:00 obsr610593 S21352645 Traveling P22 EBIRD 35.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867864 2015-01-19 08:57:23 26890 species avibase-94A44032 European Starling Sturnus vulgaris 14 United States US New York US-NY Chautauqua US-NY-013 13.0 Boutwell Hill SF L2054628 H 42.31860579999999 -79.1861057 2015-01-19 07:57:00 obsr610593 S21413712 Traveling P22 EBIRD 55.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293749758 2021-03-26 06:12:17.833181 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Chautauqua US-NY-013 13.0 Center Rd., Sheridan, NY L3303876 P 42.5230401 -79.2365313 2015-01-19 13:50:00 obsr610593 S21418485 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293734991 2015-03-03 10:02:11 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-28 09:00:00 obsr448063 S21581225 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219003 2015-01-15 22:36:25 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351366 2015-03-03 10:02:11 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-10 08:15:00 obsr448063 S21292457 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421452 2015-01-11 16:23:57 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-11 12:43:00 obsr610593 S21298168 Traveling P22 EBIRD 86.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290153362 2021-09-03 19:22:31.034431 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-10 10:27:00 obsr610593 S21276110 Stationary P21 EBIRD 68.0 2.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400097 2015-01-26 15:24:42 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293450301 2015-01-26 20:03:44 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Sandhill Designs L3320804 P 42.006055 -79.16491090000001 2015-01-25 10:00:00 obsr605033 S21559323 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289981872 2021-09-03 19:22:31.034431 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-09 08:14:00 obsr610593 S21262361 Stationary P21 EBIRD 314.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291406317 2015-01-17 09:36:34 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 12 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-12 Orchard St L3283632 P 42.438359000000005 -79.323639 2015-01-17 09:00:00 obsr279182 S21377740 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288887090 2019-12-12 11:01:20 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 15:40:00 obsr479854 S21176168 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291561817 2021-03-30 19:03:54.667077 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 11:00:00 obsr8904 S21390302 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291720613 2015-01-19 16:10:10 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Sunset Bay L3304184 P 42.5681687 -79.1366959 2015-01-18 11:15:00 obsr279182 S21402407 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290612162 2021-04-01 10:51:06.899622 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-12 07:52:00 obsr610593 S21312980 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288453179 2018-08-04 16:52:29 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 Unknown Sex, Adult (2) United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-02 11:20:00 obsr610593 S21138544 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290958469 2018-08-04 16:53:17 11494 species avibase-20C2214E American Kestrel Falco sparverius 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 13:15:00 obsr448063 S21341387 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294253083 2018-08-04 16:55:28 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 Unknown Sex, Immature (3) United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-31 10:00:00 obsr22013 S21622483 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421443 2015-01-11 16:23:57 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 Unknown Sex, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-11 12:43:00 obsr610593 S21298168 Traveling P22 EBIRD 86.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116436 2018-08-04 16:52:16 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-01 09:41:00 obsr610593 S21110522 Traveling P22 EBIRD 10.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171142 2021-04-01 10:51:06.899622 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk L141361 T 42.4794617 -79.3339691 2015-01-25 13:00:00 obsr77651 S21536626 Traveling P22 EBIRD 120.0 48.28 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291687434 2015-01-18 14:09:18 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Canadaway Creek Preserve L122937 H 42.47417 -79.36528 2015-01-18 13:59:00 obsr610593 S21399789 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290807459 2021-03-24 05:37:45.927792 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 Unknown Sex, Adult (1); Unknown Sex, Immature (1) United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 07:39:00 obsr610593 S21328771 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288185748 2021-04-01 10:51:06.899622 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768000000001 2015-01-01 13:01:00 obsr610593 S21116275 Stationary P21 EBIRD 44.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020181 2021-04-01 10:51:06.899622 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-30 16:02:00 obsr610593 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292462056 2021-03-24 05:37:45.927792 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 Unknown Sex, Immature (4); Unknown Sex, Adult (3) United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-21 13:09:00 obsr610593 S21480867 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288446439 2019-12-12 11:01:20 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 10:42:00 obsr610593 S21137904 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291635393 2018-08-04 16:53:56 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Eagle Bay L3182194 H 42.5358712 -79.2230498 2015-01-18 11:21:00 obsr610593 S21396070 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289088430 2021-03-24 05:37:45.927792 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 Unknown Sex, Immature (1) United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:50:00 obsr448063 S21191894 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288167140 2021-09-03 19:22:31.034431 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-01 11:16:00 obsr610593 S21114776 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612693 2021-03-30 19:03:54.667077 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994657 2021-03-24 05:37:45.927792 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:20:00 obsr610593 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544005 2021-04-01 10:51:06.899622 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293734992 2015-03-03 10:02:11 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-28 09:00:00 obsr448063 S21581225 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351367 2015-03-03 10:02:11 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 12 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-10 08:15:00 obsr448063 S21292457 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293690163 2021-09-03 19:22:31.034431 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-28 10:44:00 obsr610593 S21577894 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551432 2015-03-03 10:02:11 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-02 16:00:00 obsr448063 S21147065 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926338 2018-08-04 16:52:14 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 8 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291631406 2015-02-21 15:54:40 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Saint Hyacinth Chapel and Cemetery L2057391 H 42.5051356 -79.3030071 2015-01-18 11:03:00 obsr610593 S21395732 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289885763 2021-09-03 19:22:31.034431 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-08 14:31:00 obsr610593 S21254711 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294117391 2021-09-03 19:22:31.034431 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-31 07:45:00 obsr610593 S21611639 Stationary P21 EBIRD 135.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293450299 2015-01-26 20:03:44 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Sandhill Designs L3320804 P 42.006055 -79.16491090000001 2015-01-25 10:00:00 obsr605033 S21559323 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288257077 2021-09-03 19:22:31.034431 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-01 15:31:00 obsr610593 S21122387 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290153360 2021-09-03 19:22:31.034431 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-10 10:27:00 obsr610593 S21276110 Stationary P21 EBIRD 68.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867861 2015-01-19 08:57:23 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Chautauqua US-NY-013 13.0 Boutwell Hill SF L2054628 H 42.31860579999999 -79.1861057 2015-01-19 07:57:00 obsr610593 S21413712 Traveling P22 EBIRD 55.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288167142 2021-09-03 19:22:31.034431 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 9 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-01 11:16:00 obsr610593 S21114776 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926522 2015-01-03 23:41:22 662 species avibase-FB738385 Bufflehead Bucephala albeola 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-02 09:00:00 obsr650950 S21179164 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288185752 2021-04-01 10:51:06.899622 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768000000001 2015-01-01 13:01:00 obsr610593 S21116275 Stationary P21 EBIRD 44.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288427712 2021-03-26 06:12:17.833181 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown, Southside L2023033 P 42.0758647 -79.23477170000001 2015-01-02 09:30:00 obsr562964 S21136370 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292884136 2015-03-03 10:02:11 483 species avibase-85625D75 Mallard Anas platyrhynchos 13 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-24 08:00:00 obsr448063 S21514098 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS419567165 2021-03-24 19:24:40.212356 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 10 United States US New York US-NY Chautauqua US-NY-013 13.0 US-New York-Clymer-9968 King Road - 42.068x-79.709 L4808852 P 42.0679833 -79.70899509999998 2015-01-24 08:30:00 obsr241677 S30809895 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293178940 2021-03-26 06:12:17.833181 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Orchard/Eagle L2848533 P 42.4370138 -79.3200874 2015-01-25 15:45:00 obsr279182 S21537252 Stationary P21 EBIRD 46.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292198224 2021-03-26 06:12:17.833181 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 10 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-19 10:45:00 obsr77651 S21439566 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289741981 2015-03-03 10:02:11 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-07 08:00:00 obsr448063 S21242835 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289981870 2021-09-03 19:22:31.034431 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-09 08:14:00 obsr610593 S21262361 Stationary P21 EBIRD 314.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292589060 2021-09-03 19:22:31.034431 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-22 09:21:00 obsr610593 S21490937 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290320625 2021-03-26 06:12:17.833181 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-12 Orchard St L3283632 P 42.438359000000005 -79.323639 2015-01-10 14:45:00 obsr279182 S21290154 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293946058 2021-03-26 06:12:17.833181 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-29 23:00:00 obsr77651 S21598110 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400089 2015-01-26 15:24:42 447 species avibase-C235A4D7 Gadwall Mareca strepera 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291218999 2015-01-15 22:36:25 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289990964 2015-01-09 12:32:29 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Orchard/Eagle L2848533 P 42.4370138 -79.3200874 2015-01-09 09:30:00 obsr279182 S21263029 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294254237 2021-03-24 19:24:40.212356 447 species avibase-C235A4D7 Gadwall Mareca strepera 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.33021550000001 2015-01-31 11:30:00 obsr22013 S21622559 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421449 2015-01-11 16:23:57 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 18 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-11 12:43:00 obsr610593 S21298168 Traveling P22 EBIRD 86.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288449411 2021-12-27 20:39:04.096623 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-01-02 11:06:00 obsr610593 S21138182 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291406315 2015-01-17 09:36:34 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-12 Orchard St L3283632 P 42.438359000000005 -79.323639 2015-01-17 09:00:00 obsr279182 S21377740 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293450300 2015-01-26 20:03:44 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Sandhill Designs L3320804 P 42.006055 -79.16491090000001 2015-01-25 10:00:00 obsr605033 S21559323 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292884127 2015-03-03 10:02:11 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-24 08:00:00 obsr448063 S21514098 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291631405 2015-02-21 15:54:40 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Saint Hyacinth Chapel and Cemetery L2057391 H 42.5051356 -79.3030071 2015-01-18 11:03:00 obsr610593 S21395732 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867859 2015-01-19 08:57:23 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Boutwell Hill SF L2054628 H 42.31860579999999 -79.1861057 2015-01-19 07:57:00 obsr610593 S21413712 Traveling P22 EBIRD 55.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400102 2015-01-26 15:24:42 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291097505 2021-04-01 10:51:06.899622 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-15 07:57:00 obsr610593 S21352645 Traveling P22 EBIRD 35.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292589066 2021-09-03 19:22:31.034431 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-22 09:21:00 obsr610593 S21490937 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289741984 2015-03-03 10:02:11 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-07 08:00:00 obsr448063 S21242835 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290320624 2021-03-26 06:12:17.833181 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-12 Orchard St L3283632 P 42.438359000000005 -79.323639 2015-01-10 14:45:00 obsr279182 S21290154 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293734990 2015-03-03 10:02:11 505 species avibase-C732CB10 American Black Duck Anas rubripes 8 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-28 09:00:00 obsr448063 S21581225 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926519 2015-01-03 23:41:22 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-02 09:00:00 obsr650950 S21179164 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291876506 2021-03-19 16:08:39.161312 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-19 09:27:00 obsr610593 S21414472 Traveling P22 EBIRD 27.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289989053 2015-01-09 12:32:29 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Orchard/Eagle L2848533 P 42.4370138 -79.3200874 2015-01-09 09:30:00 obsr279182 S21263029 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294117387 2021-09-03 19:22:31.034431 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-31 07:45:00 obsr610593 S21611639 Stationary P21 EBIRD 135.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926327 2018-08-04 16:52:14 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291640381 2018-08-04 16:53:56 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Eagle Bay L3182194 H 42.5358712 -79.2230498 2015-01-18 11:21:00 obsr610593 S21396070 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288986134 2021-04-01 10:51:06.899622 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-04 10:47:00 obsr610593 S21183668 Traveling P22 EBIRD 20.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294254232 2021-03-24 19:24:40.212356 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.33021550000001 2015-01-31 11:30:00 obsr22013 S21622559 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293690162 2021-09-03 19:22:31.034431 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-28 10:44:00 obsr610593 S21577894 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289981869 2021-09-03 19:22:31.034431 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-09 08:14:00 obsr610593 S21262361 Stationary P21 EBIRD 314.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648454 2021-04-01 10:51:06.899622 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 8 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-01-22 11:00:00 obsr655124 S21495478 Traveling P22 EBIRD 90.0 59.54600000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288139112 2015-01-01 11:13:09 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Forestville-10381 Center Rd L3181944 P 42.45311 -79.23689399999999 2015-01-01 11:10:00 obsr610593 S21112359 Incidental P20 EBIRD 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291928201 2015-01-19 14:03:43 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Route 5 Rest Area - Sheridan L3303838 P 42.53865 -79.214019 2015-01-19 13:50:00 obsr279182 S21418257 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292198216 2021-03-26 06:12:17.833181 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-19 10:45:00 obsr77651 S21439566 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351372 2015-03-03 10:02:11 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-10 08:15:00 obsr448063 S21292457 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288185750 2021-04-01 10:51:06.899622 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768000000001 2015-01-01 13:01:00 obsr610593 S21116275 Stationary P21 EBIRD 44.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421447 2015-01-11 16:23:57 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-11 12:43:00 obsr610593 S21298168 Traveling P22 EBIRD 86.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288449410 2021-12-27 20:39:04.096623 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-01-02 11:06:00 obsr610593 S21138182 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293946059 2021-03-26 06:12:17.833181 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 6 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-29 23:00:00 obsr77651 S21598110 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291218998 2015-01-15 22:36:25 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288453180 2018-08-04 16:52:29 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-02 11:20:00 obsr610593 S21138544 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544003 2021-04-01 10:51:06.899622 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 19 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289290327 2021-03-24 05:37:45.927792 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-05 12:54:00 obsr610593 S21207331 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219000 2015-01-15 22:36:25 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400090 2015-01-26 15:24:42 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551428 2015-03-03 10:02:11 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-02 16:00:00 obsr448063 S21147065 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351369 2015-03-03 10:02:11 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-10 08:15:00 obsr448063 S21292457 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926336 2018-08-04 16:52:14 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421451 2015-01-11 16:23:57 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-11 12:43:00 obsr610593 S21298168 Traveling P22 EBIRD 86.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291615328 2021-03-19 16:08:39.161312 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Point Gratiot--Cedar Beach L2811591 H 42.4920361 -79.34995649999999 2015-01-18 08:56:00 obsr610593 S21394318 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612686 2021-03-30 19:03:54.667077 6339 species avibase-8535345B Herring Gull Larus argentatus 150 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171136 2021-04-01 10:51:06.899622 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 25 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk L141361 T 42.4794617 -79.3339691 2015-01-25 13:00:00 obsr77651 S21536626 Traveling P22 EBIRD 120.0 48.28 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544010 2021-04-01 10:51:06.899622 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 24 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400103 2015-01-26 15:24:42 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 9 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291631401 2015-02-21 15:54:40 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Saint Hyacinth Chapel and Cemetery L2057391 H 42.5051356 -79.3030071 2015-01-18 11:03:00 obsr610593 S21395732 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453744 2021-04-01 10:51:06.899622 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219011 2015-01-15 22:36:25 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303607740 2018-08-04 16:53:10 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-11 14:00:00 obsr583008 S22388515 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289052270 2021-03-24 05:37:45.927792 681 species avibase-407E2CA8 Common Merganser Mergus merganser 7 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:20:00 obsr610593 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288446434 2019-12-12 11:01:20 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 18 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 10:42:00 obsr610593 S21137904 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291561819 2021-03-30 19:03:54.667077 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 11:00:00 obsr8904 S21390302 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291635389 2018-08-04 16:53:56 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 58 United States US New York US-NY Chautauqua US-NY-013 13.0 Eagle Bay L3182194 H 42.5358712 -79.2230498 2015-01-18 11:21:00 obsr610593 S21396070 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294253085 2018-08-04 16:55:28 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-31 10:00:00 obsr22013 S21622483 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291693445 2015-01-18 17:48:41 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 16 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-18 14:15:00 obsr610593 S21400211 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116434 2018-08-04 16:52:16 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 10 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-01 09:41:00 obsr610593 S21110522 Traveling P22 EBIRD 10.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289979151 2015-01-09 08:59:13 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 15 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-08 16:00:00 obsr279182 S21262087 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289088427 2021-03-24 05:37:45.927792 20829 species avibase-B9B272F4 Common Raven Corvus corax 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:50:00 obsr448063 S21191894 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290807455 2021-03-24 05:37:45.927792 26890 species avibase-94A44032 European Starling Sturnus vulgaris 55 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 07:39:00 obsr610593 S21328771 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291619864 2018-08-04 16:53:55 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 9 United States US New York US-NY Chautauqua US-NY-013 Barcelona Harbor L337145 H 42.342789 -79.5939356 2015-01-18 09:34:00 obsr610593 S21394750 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290958462 2018-08-04 16:53:17 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 13:15:00 obsr448063 S21341387 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901361 2018-08-04 16:55:07 447 species avibase-C235A4D7 Gadwall Mareca strepera X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289543996 2021-04-01 10:51:06.899622 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 180 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288121651 2021-03-24 05:37:45.927792 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 55 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-01 09:52:00 obsr610593 S21110968 Stationary P21 EBIRD 12.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290807450 2021-03-24 05:37:45.927792 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 200 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 07:39:00 obsr610593 S21328771 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020173 2021-04-01 10:51:06.899622 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-30 16:02:00 obsr610593 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294253086 2018-08-04 16:55:28 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-31 10:00:00 obsr22013 S21622483 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289088426 2021-03-24 05:37:45.927792 681 species avibase-407E2CA8 Common Merganser Mergus merganser 8 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:50:00 obsr448063 S21191894 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289296850 2021-03-24 05:37:45.927792 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-05 12:54:00 obsr610593 S21207331 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293399442 2015-01-26 15:22:08 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 9 United States US New York US-NY Chautauqua US-NY-013 13.0 Fredonia Central School L3279251 P 42.445533000000005 -79.3107104 2015-01-26 15:20:00 obsr279182 S21554894 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291771080 2021-03-24 05:37:45.927792 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 13:30:00 obsr448063 S21406389 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292799793 2021-04-01 10:51:06.899622 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 65 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-23 13:30:00 obsr448063 S21507455 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292954069 2015-03-09 21:12:28 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 17 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-24 10:00:00 obsr77804 S21519677 Traveling P22 EBIRD 45.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292940572 2015-01-24 15:15:50 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 40 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-10366 Bennett Rd L3314133 P 42.451969 -79.308319 2015-01-24 15:14:00 obsr279182 S21518626 Incidental P20 EBIRD 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288446428 2019-12-12 11:01:20 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 80 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 10:42:00 obsr610593 S21137904 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291944697 2018-08-04 16:54:43 592 species avibase-3072CC16 Redhead Aythya americana 38 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-19 15:00:00 obsr279182 S21419645 Stationary P21 EBIRD 25.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291652337 2018-08-04 16:53:57 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 90 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Silver Creek-1964 Lake Rd L3300815 P 42.544824 -79.191314 2015-01-18 12:55:00 obsr279182 S21397497 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291561815 2021-03-30 19:03:54.667077 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 11:00:00 obsr8904 S21390302 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293136468 2015-02-06 09:32:24 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 31 United States US New York US-NY Chautauqua US-NY-013 13.0 Eagle Bay L3182194 H 42.5358712 -79.2230498 2015-01-25 13:25:00 obsr279182 S21533967 Stationary P21 EBIRD 13.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994648 2021-03-24 05:37:45.927792 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 9 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:20:00 obsr610593 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901356 2018-08-04 16:55:07 456 species avibase-D201EB72 American Wigeon Mareca americana X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290180300 2015-01-10 13:17:55 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 155 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-10 13:11:00 obsr279182 S21278506 Traveling P22 EBIRD 25.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291459556 2015-11-16 14:58:04 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 50 United States US New York US-NY Chautauqua US-NY-013 Barcelona Harbor L337145 H 42.342789 -79.5939356 2015-01-17 14:34:00 obsr686867 S21382185 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612680 2021-03-30 19:03:54.667077 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1700 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171133 2021-04-01 10:51:06.899622 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 200 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk L141361 T 42.4794617 -79.3339691 2015-01-25 13:00:00 obsr77651 S21536626 Traveling P22 EBIRD 120.0 48.28 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290958465 2018-08-04 16:53:17 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 13:15:00 obsr448063 S21341387 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291699838 2018-08-04 16:53:58 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 46 United States US New York US-NY Chautauqua US-NY-013 13.0 Pond behind Walmart, Fredonia L2057244 H 42.4528479 -79.3144333 2015-01-18 14:48:00 obsr610593 S21400682 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288887096 2019-12-12 11:01:20 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 30 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 15:40:00 obsr479854 S21176168 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290029536 2021-09-03 19:22:31.034431 662 species avibase-FB738385 Bufflehead Bucephala albeola 37 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-09 08:14:00 obsr610593 S21262361 Stationary P21 EBIRD 314.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453735 2021-04-01 10:51:06.899622 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 24 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288138884 2021-04-01 10:51:06.899622 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 215 United States US New York US-NY Chautauqua US-NY-013 13.0 Celoron Boat Launch, Chautauqua Lake L200467 H 42.1113404 -79.2830005 2015-01-01 09:35:00 obsr562964 S21112332 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292462050 2021-03-24 05:37:45.927792 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-21 13:09:00 obsr610593 S21480867 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292957917 2015-01-24 16:29:04 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 30 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 15:25:00 obsr279182 S21519988 Stationary P21 EBIRD 63.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544500 2018-08-04 16:52:51 303 species avibase-B59E1863 Canada Goose Branta canadensis 114 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-10401 Bennett Rd walmart pond L2583912 P 42.453091 -79.313939 2015-01-06 13:45:00 obsr196919 S21227599 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290807453 2021-03-24 05:37:45.927792 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 30 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 07:39:00 obsr610593 S21328771 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901352 2018-08-04 16:55:07 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289543998 2021-04-01 10:51:06.899622 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 29 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291561816 2021-03-30 19:03:54.667077 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 11:00:00 obsr8904 S21390302 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020175 2021-04-01 10:51:06.899622 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-30 16:02:00 obsr610593 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290958458 2018-08-04 16:53:17 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 13:15:00 obsr448063 S21341387 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291771081 2021-03-24 05:37:45.927792 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 13:30:00 obsr448063 S21406389 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612684 2021-03-30 19:03:54.667077 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 83 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294253087 2018-08-04 16:55:28 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-31 10:00:00 obsr22013 S21622483 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171140 2021-04-01 10:51:06.899622 616 species avibase-25C94A8F Greater Scaup Aythya marila 20 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk L141361 T 42.4794617 -79.3339691 2015-01-25 13:00:00 obsr77651 S21536626 Traveling P22 EBIRD 120.0 48.28 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994650 2021-03-24 05:37:45.927792 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 16 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:20:00 obsr610593 S21184544 Stationary P21 EBIRD 25.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453739 2021-04-01 10:51:06.899622 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 52 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292462053 2021-03-24 05:37:45.927792 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-21 13:09:00 obsr610593 S21480867 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291876509 2021-03-19 16:08:39.161312 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-19 09:27:00 obsr610593 S21414472 Traveling P22 EBIRD 27.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291944699 2018-08-04 16:54:43 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 8 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-19 15:00:00 obsr279182 S21419645 Stationary P21 EBIRD 25.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290958471 2018-08-04 16:53:17 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 13:15:00 obsr448063 S21341387 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303607739 2018-08-04 16:53:10 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-11 14:00:00 obsr583008 S22388515 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292957919 2015-01-24 16:29:04 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 15:25:00 obsr279182 S21519988 Stationary P21 EBIRD 63.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291635390 2018-08-04 16:53:56 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Eagle Bay L3182194 H 42.5358712 -79.2230498 2015-01-18 11:21:00 obsr610593 S21396070 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290807456 2021-03-24 05:37:45.927792 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 07:39:00 obsr610593 S21328771 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292799811 2021-04-01 10:51:06.899622 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-23 13:30:00 obsr448063 S21507455 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901346 2018-08-04 16:55:07 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544002 2021-04-01 10:51:06.899622 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294253093 2018-08-04 16:55:28 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-31 10:00:00 obsr22013 S21622483 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020178 2021-04-01 10:51:06.899622 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-30 16:02:00 obsr610593 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120355 2018-08-04 16:55:14 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-25 11:30:00 obsr279182 S21532763 Stationary P21 EBIRD 58.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291619865 2018-08-04 16:53:55 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 5 United States US New York US-NY Chautauqua US-NY-013 Barcelona Harbor L337145 H 42.342789 -79.5939356 2015-01-18 09:34:00 obsr610593 S21394750 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291693446 2015-01-18 17:48:41 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 15 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-18 14:15:00 obsr610593 S21400211 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291640382 2018-08-04 16:53:56 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Eagle Bay L3182194 H 42.5358712 -79.2230498 2015-01-18 11:21:00 obsr610593 S21396070 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289290323 2021-03-24 05:37:45.927792 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-05 12:54:00 obsr610593 S21207331 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289979150 2015-01-09 08:59:13 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 40 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-08 16:00:00 obsr279182 S21262087 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453746 2021-04-01 10:51:06.899622 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288890665 2015-01-03 21:05:30 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 6 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-03 14:50:00 obsr479854 S21176393 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289543988 2021-04-01 10:51:06.899622 447 species avibase-C235A4D7 Gadwall Mareca strepera 272 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612688 2021-03-30 19:03:54.667077 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288446436 2019-12-12 11:01:20 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 35 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 10:42:00 obsr610593 S21137904 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291720612 2015-01-19 16:10:10 26890 species avibase-94A44032 European Starling Sturnus vulgaris 125 United States US New York US-NY Chautauqua US-NY-013 13.0 Sunset Bay L3304184 P 42.5681687 -79.1366959 2015-01-18 11:15:00 obsr279182 S21402407 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120357 2018-08-04 16:55:14 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 19 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-25 11:30:00 obsr279182 S21532763 Stationary P21 EBIRD 58.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994653 2021-03-24 05:37:45.927792 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:20:00 obsr610593 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291619866 2018-08-04 16:53:55 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Chautauqua US-NY-013 Barcelona Harbor L337145 H 42.342789 -79.5939356 2015-01-18 09:34:00 obsr610593 S21394750 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901349 2018-08-04 16:55:07 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289088432 2021-03-24 05:37:45.927792 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:50:00 obsr448063 S21191894 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290958461 2018-08-04 16:53:17 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 13:15:00 obsr448063 S21341387 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421441 2015-01-11 16:23:57 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 1 Male, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-11 12:43:00 obsr610593 S21298168 Traveling P22 EBIRD 86.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648450 2021-04-01 10:51:06.899622 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-01-22 11:00:00 obsr655124 S21495478 Traveling P22 EBIRD 90.0 59.54600000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303607743 2018-08-04 16:53:10 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-11 14:00:00 obsr583008 S22388515 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171143 2021-04-01 10:51:06.899622 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk L141361 T 42.4794617 -79.3339691 2015-01-25 13:00:00 obsr77651 S21536626 Traveling P22 EBIRD 120.0 48.28 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292799805 2021-04-01 10:51:06.899622 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-23 13:30:00 obsr448063 S21507455 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294029999 2015-01-30 16:59:11 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Route 39 Forestville L3327707 P 42.468140000000005 -79.203068 2015-01-30 12:55:00 obsr610593 S21604923 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292116040 2015-01-20 13:16:33 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Route 394 west of village of Falconer L3306156 P 42.1351986 -79.1647768 2015-01-08 09:00:00 obsr124076 S21433321 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292589063 2021-09-03 19:22:31.034431 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-22 09:21:00 obsr610593 S21490937 Stationary P21 EBIRD 12.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648452 2021-04-01 10:51:06.899622 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-01-22 11:00:00 obsr655124 S21495478 Traveling P22 EBIRD 90.0 59.54600000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293378532 2015-01-26 13:38:37 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 Unknown Sex, Immature (1) United States US New York US-NY Chautauqua US-NY-013 13.0 SUNY Fredonia L2057173 H 42.4510604 -79.33941779999999 2015-01-26 13:03:00 obsr610593 S21552663 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292884133 2015-03-03 10:02:11 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-24 08:00:00 obsr448063 S21514098 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926340 2018-08-04 16:52:14 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293735000 2015-03-03 10:02:11 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-28 09:00:00 obsr448063 S21581225 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926526 2015-01-03 23:41:22 447 species avibase-C235A4D7 Gadwall Mareca strepera 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-02 09:00:00 obsr650950 S21179164 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294254233 2021-03-24 19:24:40.212356 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.33021550000001 2015-01-31 11:30:00 obsr22013 S21622559 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289990963 2015-01-09 12:32:29 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Orchard/Eagle L2848533 P 42.4370138 -79.3200874 2015-01-09 09:30:00 obsr279182 S21263029 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219006 2015-01-15 22:36:25 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292884124 2015-03-03 10:02:11 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 20 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-24 08:00:00 obsr448063 S21514098 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292589898 2021-09-03 19:22:31.034431 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-22 09:21:00 obsr610593 S21490937 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288257079 2021-09-03 19:22:31.034431 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-01 15:31:00 obsr610593 S21122387 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551431 2015-03-03 10:02:11 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 24 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-02 16:00:00 obsr448063 S21147065 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648445 2021-04-01 10:51:06.899622 592 species avibase-3072CC16 Redhead Aythya americana 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-01-22 11:00:00 obsr655124 S21495478 Traveling P22 EBIRD 90.0 59.54600000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288427711 2021-03-26 06:12:17.833181 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown, Southside L2023033 P 42.0758647 -79.23477170000001 2015-01-02 09:30:00 obsr562964 S21136370 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293946405 2021-03-26 06:12:17.833181 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-29 23:00:00 obsr77651 S21598110 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289741983 2015-03-03 10:02:11 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 15 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-07 08:00:00 obsr448063 S21242835 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292198223 2021-03-26 06:12:17.833181 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-19 10:45:00 obsr77651 S21439566 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293734994 2015-03-03 10:02:11 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 9 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-28 09:00:00 obsr448063 S21581225 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867865 2015-01-19 08:57:23 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Boutwell Hill SF L2054628 H 42.31860579999999 -79.1861057 2015-01-19 07:57:00 obsr610593 S21413712 Traveling P22 EBIRD 55.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294117389 2021-09-03 19:22:31.034431 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-31 07:45:00 obsr610593 S21611639 Stationary P21 EBIRD 135.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351375 2015-03-03 10:02:11 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 15 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-10 08:15:00 obsr448063 S21292457 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292956114 2015-01-24 16:21:24 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Clymer-1351-1365 Old Rd L3314343 P 42.060603 -79.733531 2015-01-24 09:00:00 obsr616597 S21519860 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926335 2018-08-04 16:52:14 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400104 2015-01-26 15:24:42 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293450297 2015-01-26 20:03:44 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Sandhill Designs L3320804 P 42.006055 -79.16491090000001 2015-01-25 10:00:00 obsr605033 S21559323 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291097508 2021-04-01 10:51:06.899622 681 species avibase-407E2CA8 Common Merganser Mergus merganser 9 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-15 07:57:00 obsr610593 S21352645 Traveling P22 EBIRD 35.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421453 2015-01-11 16:23:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-11 12:43:00 obsr610593 S21298168 Traveling P22 EBIRD 86.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288196561 2021-03-24 19:24:40.212356 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-01 14:02:00 obsr610593 S21117237 Traveling P22 EBIRD 18.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293690164 2021-09-03 19:22:31.034431 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-28 10:44:00 obsr610593 S21577894 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290227732 2021-03-19 16:08:39.161312 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768000000001 2015-01-10 16:05:00 obsr610593 S21282519 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS419567172 2021-03-24 19:24:40.212356 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 8 United States US New York US-NY Chautauqua US-NY-013 13.0 US-New York-Clymer-9968 King Road - 42.068x-79.709 L4808852 P 42.0679833 -79.70899509999998 2015-01-24 08:30:00 obsr241677 S30809895 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290153363 2021-09-03 19:22:31.034431 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-10 10:27:00 obsr610593 S21276110 Stationary P21 EBIRD 68.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291406318 2015-01-17 09:36:34 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-12 Orchard St L3283632 P 42.438359000000005 -79.323639 2015-01-17 09:00:00 obsr279182 S21377740 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289981873 2021-09-03 19:22:31.034431 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-09 08:14:00 obsr610593 S21262361 Stationary P21 EBIRD 314.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289885764 2021-09-03 19:22:31.034431 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-08 14:31:00 obsr610593 S21254711 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020180 2021-04-01 10:51:06.899622 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-30 16:02:00 obsr610593 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292782647 2015-01-23 15:23:46 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 5 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-23 14:55:00 obsr279182 S21506073 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292957923 2015-01-24 16:29:04 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 15:25:00 obsr279182 S21519988 Stationary P21 EBIRD 63.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612691 2021-03-30 19:03:54.667077 26890 species avibase-94A44032 European Starling Sturnus vulgaris 125 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994655 2021-03-24 05:37:45.927792 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:20:00 obsr610593 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290958460 2018-08-04 16:53:17 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 13:15:00 obsr448063 S21341387 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291561811 2021-03-30 19:03:54.667077 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 11:00:00 obsr8904 S21390302 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288446438 2019-12-12 11:01:20 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 75 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 10:42:00 obsr610593 S21137904 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291771090 2021-03-24 05:37:45.927792 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 13:30:00 obsr448063 S21406389 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292799797 2021-04-01 10:51:06.899622 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-23 13:30:00 obsr448063 S21507455 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288887091 2019-12-12 11:01:20 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 15:40:00 obsr479854 S21176168 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453749 2021-04-01 10:51:06.899622 337 species avibase-694C127A Mute Swan Cygnus olor 46 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292462055 2021-03-24 05:37:45.927792 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-21 13:09:00 obsr610593 S21480867 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289088423 2021-03-24 05:37:45.927792 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:50:00 obsr448063 S21191894 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289290325 2021-03-24 05:37:45.927792 303 species avibase-B59E1863 Canada Goose Branta canadensis 100 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-05 12:54:00 obsr610593 S21207331 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544013 2021-04-01 10:51:06.899622 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 67 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288890664 2015-01-03 21:05:30 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-03 14:50:00 obsr479854 S21176393 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901342 2018-08-04 16:55:07 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294253088 2018-08-04 16:55:28 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-31 10:00:00 obsr22013 S21622483 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926339 2018-08-04 16:52:14 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219015 2015-01-15 22:36:25 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293734996 2015-03-03 10:02:11 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-28 09:00:00 obsr448063 S21581225 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926516 2015-01-03 23:41:22 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-02 09:00:00 obsr650950 S21179164 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293720573 2021-09-03 19:22:31.034431 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-28 10:44:00 obsr610593 S21577894 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288167141 2021-09-03 19:22:31.034431 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-01 11:16:00 obsr610593 S21114776 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292198221 2021-03-26 06:12:17.833181 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-19 10:45:00 obsr77651 S21439566 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293450295 2015-01-26 20:03:44 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Sandhill Designs L3320804 P 42.006055 -79.16491090000001 2015-01-25 10:00:00 obsr605033 S21559323 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294117392 2021-09-03 19:22:31.034431 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-31 07:45:00 obsr610593 S21611639 Stationary P21 EBIRD 135.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351374 2015-03-03 10:02:11 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-10 08:15:00 obsr448063 S21292457 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290320623 2021-03-26 06:12:17.833181 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-12 Orchard St L3283632 P 42.438359000000005 -79.323639 2015-01-10 14:45:00 obsr279182 S21290154 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289981867 2021-09-03 19:22:31.034431 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 Male, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-09 08:14:00 obsr610593 S21262361 Stationary P21 EBIRD 314.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400096 2015-01-26 15:24:42 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292884135 2015-03-03 10:02:11 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-24 08:00:00 obsr448063 S21514098 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289989054 2015-01-09 12:32:29 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Orchard/Eagle L2848533 P 42.4370138 -79.3200874 2015-01-09 09:30:00 obsr279182 S21263029 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289885761 2021-09-03 19:22:31.034431 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-08 14:31:00 obsr610593 S21254711 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289741982 2015-03-03 10:02:11 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-07 08:00:00 obsr448063 S21242835 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551430 2015-03-03 10:02:11 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-02 16:00:00 obsr448063 S21147065 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293946056 2021-03-26 06:12:17.833181 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-29 23:00:00 obsr77651 S21598110 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291406314 2015-01-17 09:36:34 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-12 Orchard St L3283632 P 42.438359000000005 -79.323639 2015-01-17 09:00:00 obsr279182 S21377740 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288449409 2021-12-27 20:39:04.096623 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-01-02 11:06:00 obsr610593 S21138182 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294254235 2021-03-24 19:24:40.212356 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.33021550000001 2015-01-31 11:30:00 obsr22013 S21622559 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS419567170 2021-03-24 19:24:40.212356 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Chautauqua US-NY-013 13.0 US-New York-Clymer-9968 King Road - 42.068x-79.709 L4808852 P 42.0679833 -79.70899509999998 2015-01-24 08:30:00 obsr241677 S30809895 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291635397 2018-08-04 16:53:56 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Eagle Bay L3182194 H 42.5358712 -79.2230498 2015-01-18 11:21:00 obsr610593 S21396070 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290612165 2021-04-01 10:51:06.899622 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-12 07:52:00 obsr610593 S21312980 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291876507 2021-03-19 16:08:39.161312 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-19 09:27:00 obsr610593 S21414472 Traveling P22 EBIRD 27.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291609136 2021-04-01 10:51:06.899622 483 species avibase-85625D75 Mallard Anas platyrhynchos 13 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-18 07:40:00 obsr610593 S21393783 Traveling P22 EBIRD 31.0 6.035 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292798440 2016-10-31 01:12:05 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 Female, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Lakeview Cemetery L1945680 P 42.1115314 -79.2364025 2015-01-23 14:00:00 obsr281209 S21507349 Stationary P21 EBIRD 15.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288126872 2021-03-19 16:08:39.161312 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa N 225 United States US New York US-NY Chautauqua US-NY-013 13.0 Vineyards on South Roberts Rd. L2057350 P 42.4558006 -79.2631495 2015-01-01 10:15:00 obsr610593 S21111213 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291876508 2021-03-19 16:08:39.161312 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 75 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-19 09:27:00 obsr610593 S21414472 Traveling P22 EBIRD 27.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288185753 2021-04-01 10:51:06.899622 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 20 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768000000001 2015-01-01 13:01:00 obsr610593 S21116275 Stationary P21 EBIRD 44.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648455 2021-04-01 10:51:06.899622 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 10 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-01-22 11:00:00 obsr655124 S21495478 Traveling P22 EBIRD 90.0 59.54600000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290227730 2021-03-19 16:08:39.161312 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768000000001 2015-01-10 16:05:00 obsr610593 S21282519 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291615334 2021-03-19 16:08:39.161312 616 species avibase-25C94A8F Greater Scaup Aythya marila N 18 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Point Gratiot--Cedar Beach L2811591 H 42.4920361 -79.34995649999999 2015-01-18 08:56:00 obsr610593 S21394318 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288139317 2021-04-01 10:51:06.899622 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 80 United States US New York US-NY Chautauqua US-NY-013 13.0 Town of Busti L2076554 P 42.0197126 -79.3120193 2015-01-01 09:54:00 obsr562964 S21112379 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020188 2021-04-01 10:51:06.899622 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-30 16:02:00 obsr610593 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289543995 2021-04-01 10:51:06.899622 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos N 38 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291609137 2021-04-01 10:51:06.899622 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-18 07:40:00 obsr610593 S21393783 Traveling P22 EBIRD 31.0 6.035 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288986136 2021-04-01 10:51:06.899622 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-04 10:47:00 obsr610593 S21183668 Traveling P22 EBIRD 20.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288446429 2019-12-12 11:01:20 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 10:42:00 obsr610593 S21137904 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544502 2018-08-04 16:52:51 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-10401 Bennett Rd walmart pond L2583912 P 42.453091 -79.313939 2015-01-06 13:45:00 obsr196919 S21227599 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289543994 2021-04-01 10:51:06.899622 303 species avibase-B59E1863 Canada Goose Branta canadensis 36 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291788808 2021-03-30 19:03:54.667077 456 species avibase-D201EB72 American Wigeon Mareca americana 13 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289290320 2021-03-24 05:37:45.927792 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-05 12:54:00 obsr610593 S21207331 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292957926 2015-01-24 16:29:04 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 15:25:00 obsr279182 S21519988 Stationary P21 EBIRD 63.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612697 2021-03-30 19:03:54.667077 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 13 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292088190 2015-01-20 08:47:06 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 SUNY Fredonia L2057173 H 42.4510604 -79.33941779999999 2015-01-20 08:25:00 obsr610593 S21430974 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292462060 2021-03-24 05:37:45.927792 6361 issf avibase-0C55DFCC Iceland Gull Larus glaucoides Iceland Gull (kumlieni) Larus glaucoides kumlieni X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-21 13:09:00 obsr610593 S21480867 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291459555 2015-11-16 14:58:04 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Chautauqua US-NY-013 Barcelona Harbor L337145 H 42.342789 -79.5939356 2015-01-17 14:34:00 obsr686867 S21382185 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290958466 2018-08-04 16:53:17 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 13:15:00 obsr448063 S21341387 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291771087 2021-03-24 05:37:45.927792 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 35 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 13:30:00 obsr448063 S21406389 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291944701 2018-08-04 16:54:43 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-19 15:00:00 obsr279182 S21419645 Stationary P21 EBIRD 25.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288986131 2021-04-01 10:51:06.899622 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-04 10:47:00 obsr610593 S21183668 Traveling P22 EBIRD 20.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291561820 2021-03-30 19:03:54.667077 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 11:00:00 obsr8904 S21390302 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289543989 2021-04-01 10:51:06.899622 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 98 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020185 2021-04-01 10:51:06.899622 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-30 16:02:00 obsr610593 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288887094 2019-12-12 11:01:20 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 25 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 15:40:00 obsr479854 S21176168 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291619870 2018-08-04 16:53:55 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 18 United States US New York US-NY Chautauqua US-NY-013 Barcelona Harbor L337145 H 42.342789 -79.5939356 2015-01-18 09:34:00 obsr610593 S21394750 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288453183 2018-08-04 16:52:29 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-02 11:20:00 obsr610593 S21138544 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291615333 2021-03-19 16:08:39.161312 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 8 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Point Gratiot--Cedar Beach L2811591 H 42.4920361 -79.34995649999999 2015-01-18 08:56:00 obsr610593 S21394318 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120361 2018-08-04 16:55:14 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-25 11:30:00 obsr279182 S21532763 Stationary P21 EBIRD 58.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289088434 2021-03-24 05:37:45.927792 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 22 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:50:00 obsr448063 S21191894 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291631404 2015-02-21 15:54:40 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Saint Hyacinth Chapel and Cemetery L2057391 H 42.5051356 -79.3030071 2015-01-18 11:03:00 obsr610593 S21395732 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288446443 2019-12-12 11:01:20 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 22 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 10:42:00 obsr610593 S21137904 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994661 2021-03-24 05:37:45.927792 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 11 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:20:00 obsr610593 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288449408 2021-12-27 20:39:04.096623 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-01-02 11:06:00 obsr610593 S21138182 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901353 2018-08-04 16:55:07 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292799809 2021-04-01 10:51:06.899622 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-23 13:30:00 obsr448063 S21507455 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291635396 2018-08-04 16:53:56 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Eagle Bay L3182194 H 42.5358712 -79.2230498 2015-01-18 11:21:00 obsr610593 S21396070 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291720615 2015-01-19 16:10:10 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Sunset Bay L3304184 P 42.5681687 -79.1366959 2015-01-18 11:15:00 obsr279182 S21402407 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453753 2021-04-01 10:51:06.899622 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 12 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171134 2021-04-01 10:51:06.899622 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 10 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk L141361 T 42.4794617 -79.3339691 2015-01-25 13:00:00 obsr77651 S21536626 Traveling P22 EBIRD 120.0 48.28 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291693450 2015-01-18 17:48:41 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-18 14:15:00 obsr610593 S21400211 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289290330 2021-03-24 05:37:45.927792 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 104 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-05 12:54:00 obsr610593 S21207331 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294253092 2018-08-04 16:55:28 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-31 10:00:00 obsr22013 S21622483 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288121659 2021-03-24 05:37:45.927792 6339 species avibase-8535345B Herring Gull Larus argentatus 7 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-01 09:52:00 obsr610593 S21110968 Stationary P21 EBIRD 12.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294253090 2018-08-04 16:55:28 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-31 10:00:00 obsr22013 S21622483 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291615332 2021-03-19 16:08:39.161312 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 Unknown Sex, Juvenile (1) United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Point Gratiot--Cedar Beach L2811591 H 42.4920361 -79.34995649999999 2015-01-18 08:56:00 obsr610593 S21394318 Stationary P21 EBIRD 14.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400086 2015-01-26 15:24:42 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926344 2018-08-04 16:52:14 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289088422 2021-03-24 05:37:45.927792 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:50:00 obsr448063 S21191894 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994647 2021-03-24 05:37:45.927792 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:20:00 obsr610593 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290851480 2021-03-24 05:37:45.927792 483 species avibase-85625D75 Mallard Anas platyrhynchos X 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 07:39:00 obsr610593 S21328771 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291771084 2021-03-24 05:37:45.927792 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 13:30:00 obsr448063 S21406389 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289543990 2021-04-01 10:51:06.899622 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292799807 2021-04-01 10:51:06.899622 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-23 13:30:00 obsr448063 S21507455 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292462049 2021-03-24 05:37:45.927792 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-21 13:09:00 obsr610593 S21480867 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289296851 2021-03-24 05:37:45.927792 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-05 12:54:00 obsr610593 S21207331 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288121649 2021-03-24 05:37:45.927792 505 species avibase-C732CB10 American Black Duck Anas rubripes X 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-01 09:52:00 obsr610593 S21110968 Stationary P21 EBIRD 12.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020189 2021-04-01 10:51:06.899622 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-30 16:02:00 obsr610593 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901348 2018-08-04 16:55:07 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994656 2021-03-24 05:37:45.927792 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:20:00 obsr610593 S21184544 Stationary P21 EBIRD 25.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421989 2015-01-11 14:15:32 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Ripley - 42.2686x-79.7342 - Jan 11, 2015, 2:14 PM L3285035 P 42.268628 -79.734173 2015-01-11 14:14:00 obsr55788 S21298213 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291771085 2021-03-24 05:37:45.927792 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 13:30:00 obsr448063 S21406389 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612692 2021-03-30 19:03:54.667077 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901358 2018-08-04 16:55:07 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288453178 2018-08-04 16:52:29 681 species avibase-407E2CA8 Common Merganser Mergus merganser 25 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-02 11:20:00 obsr610593 S21138544 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453741 2021-04-01 10:51:06.899622 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289543987 2021-04-01 10:51:06.899622 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 17 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293522246 2015-01-27 09:48:52 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Cassadaga Creek lowland off Co Rt 70 L3321648 P 42.196096 -79.2730522 2015-01-26 22:30:00 obsr448063 S21564696 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293734997 2015-03-03 10:02:11 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-28 09:00:00 obsr448063 S21581225 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293946062 2021-03-26 06:12:17.833181 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-29 23:00:00 obsr77651 S21598110 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292884126 2015-03-03 10:02:11 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 4 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-24 08:00:00 obsr448063 S21514098 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293690161 2021-09-03 19:22:31.034431 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-28 10:44:00 obsr610593 S21577894 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS419567169 2021-03-24 19:24:40.212356 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-New York-Clymer-9968 King Road - 42.068x-79.709 L4808852 P 42.0679833 -79.70899509999998 2015-01-24 08:30:00 obsr241677 S30809895 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291218997 2015-01-15 22:36:25 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289741980 2015-03-03 10:02:11 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-07 08:00:00 obsr448063 S21242835 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351441 2015-03-03 10:02:11 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-10 08:15:00 obsr448063 S21292457 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926517 2015-01-03 23:41:22 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-02 09:00:00 obsr650950 S21179164 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926343 2018-08-04 16:52:14 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551429 2015-03-03 10:02:11 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-02 16:00:00 obsr448063 S21147065 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292198220 2021-03-26 06:12:17.833181 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-19 10:45:00 obsr77651 S21439566 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290153358 2021-09-03 19:22:31.034431 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 Female, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-10 10:27:00 obsr610593 S21276110 Stationary P21 EBIRD 68.0 2.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400100 2015-01-26 15:24:42 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612696 2021-03-30 19:03:54.667077 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291615331 2021-03-19 16:08:39.161312 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Point Gratiot--Cedar Beach L2811591 H 42.4920361 -79.34995649999999 2015-01-18 08:56:00 obsr610593 S21394318 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291635395 2018-08-04 16:53:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Chautauqua US-NY-013 13.0 Eagle Bay L3182194 H 42.5358712 -79.2230498 2015-01-18 11:21:00 obsr610593 S21396070 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289543992 2021-04-01 10:51:06.899622 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 156 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291693449 2015-01-18 17:48:41 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-18 14:15:00 obsr610593 S21400211 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291609132 2021-04-01 10:51:06.899622 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-18 07:40:00 obsr610593 S21393783 Traveling P22 EBIRD 31.0 6.035 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421445 2015-01-11 16:23:57 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-11 12:43:00 obsr610593 S21298168 Traveling P22 EBIRD 86.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292462059 2021-03-24 05:37:45.927792 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-21 13:09:00 obsr610593 S21480867 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291631403 2015-02-21 15:54:40 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Chautauqua US-NY-013 13.0 Saint Hyacinth Chapel and Cemetery L2057391 H 42.5051356 -79.3030071 2015-01-18 11:03:00 obsr610593 S21395732 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291619869 2018-08-04 16:53:55 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Chautauqua US-NY-013 Barcelona Harbor L337145 H 42.342789 -79.5939356 2015-01-18 09:34:00 obsr610593 S21394750 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020184 2021-04-01 10:51:06.899622 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-30 16:02:00 obsr610593 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116438 2018-08-04 16:52:16 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-01 09:41:00 obsr610593 S21110522 Traveling P22 EBIRD 10.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294253094 2018-08-04 16:55:28 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-31 10:00:00 obsr22013 S21622483 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901360 2018-08-04 16:55:07 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288446442 2019-12-12 11:01:20 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 29 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 10:42:00 obsr610593 S21137904 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288121658 2021-03-24 05:37:45.927792 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 80 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-01 09:52:00 obsr610593 S21110968 Stationary P21 EBIRD 12.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289290329 2021-03-24 05:37:45.927792 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 75 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-05 12:54:00 obsr610593 S21207331 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288138882 2021-04-01 10:51:06.899622 337 species avibase-694C127A Mute Swan Cygnus olor 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Celoron Boat Launch, Chautauqua Lake L200467 H 42.1113404 -79.2830005 2015-01-01 09:35:00 obsr562964 S21112332 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994660 2021-03-24 05:37:45.927792 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:20:00 obsr610593 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290807462 2021-03-24 05:37:45.927792 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 07:39:00 obsr610593 S21328771 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453752 2021-04-01 10:51:06.899622 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288887092 2019-12-12 11:01:20 483 species avibase-85625D75 Mallard Anas platyrhynchos 50 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 15:40:00 obsr479854 S21176168 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288986130 2021-04-01 10:51:06.899622 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-04 10:47:00 obsr610593 S21183668 Traveling P22 EBIRD 20.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288453182 2018-08-04 16:52:29 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-02 11:20:00 obsr610593 S21138544 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294253081 2018-08-04 16:55:28 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-31 10:00:00 obsr22013 S21622483 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171139 2021-04-01 10:51:06.899622 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk L141361 T 42.4794617 -79.3339691 2015-01-25 13:00:00 obsr77651 S21536626 Traveling P22 EBIRD 120.0 48.28 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901341 2018-08-04 16:55:07 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288890668 2015-01-03 21:05:30 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 20 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-03 14:50:00 obsr479854 S21176393 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292782646 2015-01-23 15:23:46 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 9 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-23 14:55:00 obsr279182 S21506073 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291635391 2018-08-04 16:53:56 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 14 United States US New York US-NY Chautauqua US-NY-013 13.0 Eagle Bay L3182194 H 42.5358712 -79.2230498 2015-01-18 11:21:00 obsr610593 S21396070 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120356 2018-08-04 16:55:14 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 15 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-25 11:30:00 obsr279182 S21532763 Stationary P21 EBIRD 58.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289305159 2021-03-24 05:37:45.927792 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-05 12:54:00 obsr610593 S21207331 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290807457 2021-03-24 05:37:45.927792 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 07:39:00 obsr610593 S21328771 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453745 2021-04-01 10:51:06.899622 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116435 2018-08-04 16:52:16 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-01 09:41:00 obsr610593 S21110522 Traveling P22 EBIRD 10.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288121653 2021-03-24 05:37:45.927792 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-01 09:52:00 obsr610593 S21110968 Stationary P21 EBIRD 12.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289088424 2021-03-24 05:37:45.927792 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:50:00 obsr448063 S21191894 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292957920 2015-01-24 16:29:04 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 15:25:00 obsr279182 S21519988 Stationary P21 EBIRD 63.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544497 2018-08-04 16:52:51 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-10401 Bennett Rd walmart pond L2583912 P 42.453091 -79.313939 2015-01-06 13:45:00 obsr196919 S21227599 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020179 2021-04-01 10:51:06.899622 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-30 16:02:00 obsr610593 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612687 2021-03-30 19:03:54.667077 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292799802 2021-04-01 10:51:06.899622 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 15 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-23 13:30:00 obsr448063 S21507455 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291561812 2021-03-30 19:03:54.667077 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 11:00:00 obsr8904 S21390302 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994652 2021-03-24 05:37:45.927792 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:20:00 obsr610593 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544004 2021-04-01 10:51:06.899622 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 28 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303607741 2018-08-04 16:53:10 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-11 14:00:00 obsr583008 S22388515 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288887089 2019-12-12 11:01:20 681 species avibase-407E2CA8 Common Merganser Mergus merganser 40 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 15:40:00 obsr479854 S21176168 Stationary P21 EBIRD 35.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288446435 2019-12-12 11:01:20 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 48 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 10:42:00 obsr610593 S21137904 Stationary P21 EBIRD 19.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293690165 2021-09-03 19:22:31.034431 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-28 10:44:00 obsr610593 S21577894 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294117382 2021-09-03 19:22:31.034431 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-31 07:45:00 obsr610593 S21611639 Stationary P21 EBIRD 135.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290153364 2021-09-03 19:22:31.034431 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-10 10:27:00 obsr610593 S21276110 Stationary P21 EBIRD 68.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS419567174 2021-03-24 19:24:40.212356 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus N 4 United States US New York US-NY Chautauqua US-NY-013 13.0 US-New York-Clymer-9968 King Road - 42.068x-79.709 L4808852 P 42.0679833 -79.70899509999998 2015-01-24 08:30:00 obsr241677 S30809895 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289981874 2021-09-03 19:22:31.034431 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 Male, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-09 08:14:00 obsr610593 S21262361 Stationary P21 EBIRD 314.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292589062 2021-09-03 19:22:31.034431 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 18 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-22 09:21:00 obsr610593 S21490937 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294254236 2021-03-24 19:24:40.212356 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.33021550000001 2015-01-31 11:30:00 obsr22013 S21622559 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288185756 2021-04-01 10:51:06.899622 303 species avibase-B59E1863 Canada Goose Branta canadensis N 12 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768000000001 2015-01-01 13:01:00 obsr610593 S21116275 Stationary P21 EBIRD 44.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288427713 2021-03-26 06:12:17.833181 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis N 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown, Southside L2023033 P 42.0758647 -79.23477170000001 2015-01-02 09:30:00 obsr562964 S21136370 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288196562 2021-03-24 19:24:40.212356 505 species avibase-C732CB10 American Black Duck Anas rubripes N 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-01 14:02:00 obsr610593 S21117237 Traveling P22 EBIRD 18.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292198217 2021-03-26 06:12:17.833181 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 10 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-19 10:45:00 obsr77651 S21439566 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293752266 2021-03-26 06:12:17.833181 483 species avibase-85625D75 Mallard Anas platyrhynchos N X United States US New York US-NY Chautauqua US-NY-013 13.0 Center Rd., Sheridan, NY L3303876 P 42.5230401 -79.2365313 2015-01-19 13:50:00 obsr610593 S21418485 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290320628 2021-03-26 06:12:17.833181 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 9 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-12 Orchard St L3283632 P 42.438359000000005 -79.323639 2015-01-10 14:45:00 obsr279182 S21290154 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293946057 2021-03-26 06:12:17.833181 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 10 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-29 23:00:00 obsr77651 S21598110 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293178942 2021-03-26 06:12:17.833181 30494 species avibase-240E3390 House Sparrow Passer domesticus N 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Orchard/Eagle L2848533 P 42.4370138 -79.3200874 2015-01-25 15:45:00 obsr279182 S21537252 Stationary P21 EBIRD 46.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288427714 2021-03-26 06:12:17.833181 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown, Southside L2023033 P 42.0758647 -79.23477170000001 2015-01-02 09:30:00 obsr562964 S21136370 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292589065 2021-09-03 19:22:31.034431 505 species avibase-C732CB10 American Black Duck Anas rubripes N 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-22 09:21:00 obsr610593 S21490937 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453742 2021-04-01 10:51:06.899622 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544008 2021-04-01 10:51:06.899622 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 6 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292957918 2015-01-24 16:29:04 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 15:25:00 obsr279182 S21519988 Stationary P21 EBIRD 63.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901343 2018-08-04 16:55:07 592 species avibase-3072CC16 Redhead Aythya americana 4 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288446433 2019-12-12 11:01:20 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 10:42:00 obsr610593 S21137904 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291693444 2015-01-18 17:48:41 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-18 14:15:00 obsr610593 S21400211 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288453177 2018-08-04 16:52:29 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-02 11:20:00 obsr610593 S21138544 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116433 2018-08-04 16:52:16 26890 species avibase-94A44032 European Starling Sturnus vulgaris 175 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-01 09:41:00 obsr610593 S21110522 Traveling P22 EBIRD 10.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291699840 2018-08-04 16:53:58 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 18 United States US New York US-NY Chautauqua US-NY-013 13.0 Pond behind Walmart, Fredonia L2057244 H 42.4528479 -79.3144333 2015-01-18 14:48:00 obsr610593 S21400682 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612683 2021-03-30 19:03:54.667077 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 225 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292799791 2021-04-01 10:51:06.899622 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 65 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-23 13:30:00 obsr448063 S21507455 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288887095 2019-12-12 11:01:20 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 15:40:00 obsr479854 S21176168 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292462052 2021-03-24 05:37:45.927792 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-21 13:09:00 obsr610593 S21480867 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291771086 2021-03-24 05:37:45.927792 303 species avibase-B59E1863 Canada Goose Branta canadensis 45 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 13:30:00 obsr448063 S21406389 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453738 2021-04-01 10:51:06.899622 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 115 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288446430 2019-12-12 11:01:20 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 90 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 10:42:00 obsr610593 S21137904 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289968755 2018-08-04 16:52:54 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 18 Female, Adult (8); Male, Adult (10) United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-08 10:00:00 obsr256457 S21261306 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926330 2018-08-04 16:52:14 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291652338 2018-08-04 16:53:57 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Silver Creek-1964 Lake Rd L3300815 P 42.544824 -79.191314 2015-01-18 12:55:00 obsr279182 S21397497 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291619862 2018-08-04 16:53:55 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 Barcelona Harbor L337145 H 42.342789 -79.5939356 2015-01-18 09:34:00 obsr610593 S21394750 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303607738 2018-08-04 16:53:10 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-11 14:00:00 obsr583008 S22388515 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120354 2018-08-04 16:55:14 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-25 11:30:00 obsr279182 S21532763 Stationary P21 EBIRD 58.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290807452 2021-03-24 05:37:45.927792 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 250 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 07:39:00 obsr610593 S21328771 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171138 2021-04-01 10:51:06.899622 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 25 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk L141361 T 42.4794617 -79.3339691 2015-01-25 13:00:00 obsr77651 S21536626 Traveling P22 EBIRD 120.0 48.28 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289543997 2021-04-01 10:51:06.899622 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 104 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291635387 2018-08-04 16:53:56 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 45 United States US New York US-NY Chautauqua US-NY-013 13.0 Eagle Bay L3182194 H 42.5358712 -79.2230498 2015-01-18 11:21:00 obsr610593 S21396070 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289290321 2021-03-24 05:37:45.927792 681 species avibase-407E2CA8 Common Merganser Mergus merganser 300 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-05 12:54:00 obsr610593 S21207331 Stationary P21 EBIRD 28.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289088429 2021-03-24 05:37:45.927792 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:50:00 obsr448063 S21191894 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290958463 2018-08-04 16:53:17 622 species avibase-50566E50 Lesser Scaup Aythya affinis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 13:15:00 obsr448063 S21341387 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291944698 2018-08-04 16:54:43 447 species avibase-C235A4D7 Gadwall Mareca strepera 42 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-19 15:00:00 obsr279182 S21419645 Stationary P21 EBIRD 25.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294253091 2018-08-04 16:55:28 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-31 10:00:00 obsr22013 S21622483 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994649 2021-03-24 05:37:45.927792 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:20:00 obsr610593 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544501 2018-08-04 16:52:51 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 16 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-10401 Bennett Rd walmart pond L2583912 P 42.453091 -79.313939 2015-01-06 13:45:00 obsr196919 S21227599 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020174 2021-04-01 10:51:06.899622 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-30 16:02:00 obsr610593 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901344 2018-08-04 16:55:07 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291561821 2021-03-30 19:03:54.667077 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 11:00:00 obsr8904 S21390302 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289089922 2015-03-09 21:12:28 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 Unknown Sex, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-04 13:10:00 obsr448063 S21192009 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293720438 2021-09-03 19:22:31.034431 662 species avibase-FB738385 Bufflehead Bucephala albeola 9 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-28 10:44:00 obsr610593 S21577894 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551433 2015-03-03 10:02:11 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 7 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-02 16:00:00 obsr448063 S21147065 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400093 2015-01-26 15:24:42 1806 species avibase-32DCEC14 Eared Grebe Podiceps nigricollis 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292198215 2021-03-26 06:12:17.833181 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-19 10:45:00 obsr77651 S21439566 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS419567166 2021-03-24 19:24:40.212356 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Chautauqua US-NY-013 13.0 US-New York-Clymer-9968 King Road - 42.068x-79.709 L4808852 P 42.0679833 -79.70899509999998 2015-01-24 08:30:00 obsr241677 S30809895 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293734995 2015-03-03 10:02:11 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-28 09:00:00 obsr448063 S21581225 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293946052 2021-03-26 06:12:17.833181 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-29 23:00:00 obsr77651 S21598110 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289741987 2015-03-03 10:02:11 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-07 08:00:00 obsr448063 S21242835 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291406313 2015-01-17 09:36:34 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-12 Orchard St L3283632 P 42.438359000000005 -79.323639 2015-01-17 09:00:00 obsr279182 S21377740 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289981866 2021-09-03 19:22:31.034431 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-09 08:14:00 obsr610593 S21262361 Stationary P21 EBIRD 314.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290227728 2021-03-19 16:08:39.161312 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768000000001 2015-01-10 16:05:00 obsr610593 S21282519 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926521 2015-01-03 23:41:22 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-02 09:00:00 obsr650950 S21179164 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288196558 2021-03-24 19:24:40.212356 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-01 14:02:00 obsr610593 S21117237 Traveling P22 EBIRD 18.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291097504 2021-04-01 10:51:06.899622 662 species avibase-FB738385 Bufflehead Bucephala albeola 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-15 07:57:00 obsr610593 S21352645 Traveling P22 EBIRD 35.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351373 2015-03-03 10:02:11 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-10 08:15:00 obsr448063 S21292457 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288139110 2015-01-01 11:13:09 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Forestville-10381 Center Rd L3181944 P 42.45311 -79.23689399999999 2015-01-01 11:10:00 obsr610593 S21112359 Incidental P20 EBIRD 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219014 2015-01-15 22:36:25 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294117385 2021-09-03 19:22:31.034431 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-31 07:45:00 obsr610593 S21611639 Stationary P21 EBIRD 135.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288126871 2021-03-19 16:08:39.161312 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Vineyards on South Roberts Rd. L2057350 P 42.4558006 -79.2631495 2015-01-01 10:15:00 obsr610593 S21111213 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926342 2018-08-04 16:52:14 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453736 2021-04-01 10:51:06.899622 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 4 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612681 2021-03-30 19:03:54.667077 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 4 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291562251 2021-03-30 19:03:54.667077 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 11:00:00 obsr8904 S21390302 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648451 2021-04-01 10:51:06.899622 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-01-22 11:00:00 obsr655124 S21495478 Traveling P22 EBIRD 90.0 59.54600000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292198222 2021-03-26 06:12:17.833181 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-19 10:45:00 obsr77651 S21439566 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288139319 2021-04-01 10:51:06.899622 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Town of Busti L2076554 P 42.0197126 -79.3120193 2015-01-01 09:54:00 obsr562964 S21112379 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294254234 2021-03-24 19:24:40.212356 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.33021550000001 2015-01-31 11:30:00 obsr22013 S21622559 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289741986 2015-03-03 10:02:11 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-07 08:00:00 obsr448063 S21242835 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290024625 2021-09-03 19:22:31.034431 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 Male, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-09 08:14:00 obsr610593 S21262361 Stationary P21 EBIRD 314.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293749756 2021-03-26 06:12:17.833181 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Center Rd., Sheridan, NY L3303876 P 42.5230401 -79.2365313 2015-01-19 13:50:00 obsr610593 S21418485 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291876510 2021-03-19 16:08:39.161312 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-19 09:27:00 obsr610593 S21414472 Traveling P22 EBIRD 27.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293734993 2015-03-03 10:02:11 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-28 09:00:00 obsr448063 S21581225 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293450294 2015-01-26 20:03:44 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Sandhill Designs L3320804 P 42.006055 -79.16491090000001 2015-01-25 10:00:00 obsr605033 S21559323 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291631409 2015-02-21 15:54:40 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Saint Hyacinth Chapel and Cemetery L2057391 H 42.5051356 -79.3030071 2015-01-18 11:03:00 obsr610593 S21395732 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294117388 2021-09-03 19:22:31.034431 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-31 07:45:00 obsr610593 S21611639 Stationary P21 EBIRD 135.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292884134 2015-03-03 10:02:11 526 species avibase-56CCA717 Northern Pintail Anas acuta 4 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-24 08:00:00 obsr448063 S21514098 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219009 2015-01-15 22:36:25 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421454 2015-01-11 16:23:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-11 12:43:00 obsr610593 S21298168 Traveling P22 EBIRD 86.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288185755 2021-04-01 10:51:06.899622 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768000000001 2015-01-01 13:01:00 obsr610593 S21116275 Stationary P21 EBIRD 44.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293720437 2021-09-03 19:22:31.034431 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 Male, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-28 10:44:00 obsr610593 S21577894 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926527 2015-01-03 23:41:22 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-02 09:00:00 obsr650950 S21179164 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293946060 2021-03-26 06:12:17.833181 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-29 23:00:00 obsr77651 S21598110 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351365 2015-03-03 10:02:11 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-10 08:15:00 obsr448063 S21292457 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400095 2015-01-26 15:24:42 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291406319 2015-01-17 09:36:34 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-12 Orchard St L3283632 P 42.438359000000005 -79.323639 2015-01-17 09:00:00 obsr279182 S21377740 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290320627 2021-03-26 06:12:17.833181 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-12 Orchard St L3283632 P 42.438359000000005 -79.323639 2015-01-10 14:45:00 obsr279182 S21290154 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291097509 2021-04-01 10:51:06.899622 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-15 07:57:00 obsr610593 S21352645 Traveling P22 EBIRD 35.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926345 2018-08-04 16:52:14 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294037033 2021-09-03 19:22:31.034431 447 species avibase-C235A4D7 Gadwall Mareca strepera 6 Male, Adult (3); Female, Adult (3) United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-30 17:45:00 obsr610593 S21605495 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS419567163 2021-03-24 19:24:40.212356 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 US-New York-Clymer-9968 King Road - 42.068x-79.709 L4808852 P 42.0679833 -79.70899509999998 2015-01-24 08:30:00 obsr241677 S30809895 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291930888 2021-03-26 06:12:17.833181 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Center Rd., Sheridan, NY L3303876 P 42.5230401 -79.2365313 2015-01-19 13:50:00 obsr610593 S21418485 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289885762 2021-09-03 19:22:31.034431 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 Male, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-08 14:31:00 obsr610593 S21254711 Incidental P20 EBIRD 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289981868 2021-09-03 19:22:31.034431 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 Male, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-09 08:14:00 obsr610593 S21262361 Stationary P21 EBIRD 314.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290153359 2021-09-03 19:22:31.034431 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 Male, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-10 10:27:00 obsr610593 S21276110 Stationary P21 EBIRD 68.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171135 2021-04-01 10:51:06.899622 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk L141361 T 42.4794617 -79.3339691 2015-01-25 13:00:00 obsr77651 S21536626 Traveling P22 EBIRD 120.0 48.28 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544007 2021-04-01 10:51:06.899622 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293130898 2017-08-15 16:58:44 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-25 12:21:00 obsr610593 S21533591 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291930887 2021-03-26 06:12:17.833181 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Center Rd., Sheridan, NY L3303876 P 42.5230401 -79.2365313 2015-01-19 13:50:00 obsr610593 S21418485 Incidental P20 EBIRD 1.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020187 2021-04-01 10:51:06.899622 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-30 16:02:00 obsr610593 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292604691 2015-01-22 11:52:57 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_861 13.0 I-86 Chautauqua lake Bridge L3309804 P 42.1518234 -79.39255 2015-01-21 16:10:00 obsr562964 S21492252 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421446 2015-01-11 16:23:57 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-11 12:43:00 obsr610593 S21298168 Traveling P22 EBIRD 86.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219013 2015-01-15 22:36:25 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292884131 2015-03-03 10:02:11 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-24 08:00:00 obsr448063 S21514098 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400094 2015-01-26 15:24:42 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292956111 2015-01-24 16:21:24 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Clymer-1351-1365 Old Rd L3314343 P 42.060603 -79.733531 2015-01-24 09:00:00 obsr616597 S21519860 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926529 2015-01-03 23:41:22 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-02 09:00:00 obsr650950 S21179164 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219002 2015-01-15 22:36:25 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS419567171 2021-03-24 19:24:40.212356 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Chautauqua US-NY-013 13.0 US-New York-Clymer-9968 King Road - 42.068x-79.709 L4808852 P 42.0679833 -79.70899509999998 2015-01-24 08:30:00 obsr241677 S30809895 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400099 2015-01-26 15:24:42 303 species avibase-B59E1863 Canada Goose Branta canadensis 12 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453747 2021-04-01 10:51:06.899622 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 10 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292957921 2015-01-24 16:29:04 616 species avibase-25C94A8F Greater Scaup Aythya marila 5 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 15:25:00 obsr279182 S21519988 Stationary P21 EBIRD 63.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612689 2021-03-30 19:03:54.667077 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288446437 2019-12-12 11:01:20 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 20 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 10:42:00 obsr610593 S21137904 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291693447 2015-01-18 17:48:41 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 14 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-18 14:15:00 obsr610593 S21400211 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292799804 2021-04-01 10:51:06.899622 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 20 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-23 13:30:00 obsr448063 S21507455 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288890667 2015-01-03 21:05:30 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-03 14:50:00 obsr479854 S21176393 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120358 2018-08-04 16:55:14 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 15 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-25 11:30:00 obsr279182 S21532763 Stationary P21 EBIRD 58.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289290324 2021-03-24 05:37:45.927792 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-05 12:54:00 obsr610593 S21207331 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994654 2021-03-24 05:37:45.927792 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:20:00 obsr610593 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901347 2018-08-04 16:55:07 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544011 2021-04-01 10:51:06.899622 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 18 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291635392 2018-08-04 16:53:56 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 85 United States US New York US-NY Chautauqua US-NY-013 13.0 Eagle Bay L3182194 H 42.5358712 -79.2230498 2015-01-18 11:21:00 obsr610593 S21396070 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290958468 2018-08-04 16:53:17 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 13:15:00 obsr448063 S21341387 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421442 2015-01-11 16:23:57 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-11 12:43:00 obsr610593 S21298168 Traveling P22 EBIRD 86.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291615329 2021-03-19 16:08:39.161312 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 60 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Point Gratiot--Cedar Beach L2811591 H 42.4920361 -79.34995649999999 2015-01-18 08:56:00 obsr610593 S21394318 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291459553 2015-11-16 14:58:04 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Chautauqua US-NY-013 Barcelona Harbor L337145 H 42.342789 -79.5939356 2015-01-17 14:34:00 obsr686867 S21382185 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291619867 2018-08-04 16:53:55 30494 species avibase-240E3390 House Sparrow Passer domesticus 18 United States US New York US-NY Chautauqua US-NY-013 Barcelona Harbor L337145 H 42.342789 -79.5939356 2015-01-18 09:34:00 obsr610593 S21394750 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926328 2018-08-04 16:52:14 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288167143 2021-09-03 19:22:31.034431 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-01 11:16:00 obsr610593 S21114776 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219012 2015-01-15 22:36:25 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294117390 2021-09-03 19:22:31.034431 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-31 07:45:00 obsr610593 S21611639 Stationary P21 EBIRD 135.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290153361 2021-09-03 19:22:31.034431 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-10 10:27:00 obsr610593 S21276110 Stationary P21 EBIRD 68.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400098 2015-01-26 15:24:42 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289981871 2021-09-03 19:22:31.034431 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-09 08:14:00 obsr610593 S21262361 Stationary P21 EBIRD 314.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292956113 2015-01-24 16:21:24 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Clymer-1351-1365 Old Rd L3314343 P 42.060603 -79.733531 2015-01-24 09:00:00 obsr616597 S21519860 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293946054 2021-03-26 06:12:17.833181 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-29 23:00:00 obsr77651 S21598110 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289983147 2021-09-03 19:22:31.034431 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-09 08:14:00 obsr610593 S21262361 Stationary P21 EBIRD 314.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219005 2015-01-15 22:36:25 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291640383 2018-08-04 16:53:56 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Eagle Bay L3182194 H 42.5358712 -79.2230498 2015-01-18 11:21:00 obsr610593 S21396070 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292198214 2021-03-26 06:12:17.833181 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-19 10:45:00 obsr77651 S21439566 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS419567167 2021-03-24 19:24:40.212356 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-New York-Clymer-9968 King Road - 42.068x-79.709 L4808852 P 42.0679833 -79.70899509999998 2015-01-24 08:30:00 obsr241677 S30809895 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926333 2018-08-04 16:52:14 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289741979 2015-03-03 10:02:11 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-07 08:00:00 obsr448063 S21242835 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293734988 2015-03-03 10:02:11 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-28 09:00:00 obsr448063 S21581225 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351368 2015-03-03 10:02:11 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-10 08:15:00 obsr448063 S21292457 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867858 2015-01-19 08:57:23 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Boutwell Hill SF L2054628 H 42.31860579999999 -79.1861057 2015-01-19 07:57:00 obsr610593 S21413712 Traveling P22 EBIRD 55.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294254231 2021-03-24 19:24:40.212356 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.33021550000001 2015-01-31 11:30:00 obsr22013 S21622559 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288139111 2015-01-01 11:13:09 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Forestville-10381 Center Rd L3181944 P 42.45311 -79.23689399999999 2015-01-01 11:10:00 obsr610593 S21112359 Incidental P20 EBIRD 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400091 2015-01-26 15:24:42 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294117386 2021-09-03 19:22:31.034431 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-31 07:45:00 obsr610593 S21611639 Stationary P21 EBIRD 135.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292884128 2015-03-03 10:02:11 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-24 08:00:00 obsr448063 S21514098 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290153357 2021-09-03 19:22:31.034431 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-10 10:27:00 obsr610593 S21276110 Stationary P21 EBIRD 68.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292799813 2021-04-01 10:51:06.899622 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 30 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-23 13:30:00 obsr448063 S21507455 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291771083 2021-03-24 05:37:45.927792 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 13:30:00 obsr448063 S21406389 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421440 2015-01-11 16:23:57 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-11 12:43:00 obsr610593 S21298168 Traveling P22 EBIRD 86.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290807454 2021-03-24 05:37:45.927792 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 75 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 07:39:00 obsr610593 S21328771 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901351 2018-08-04 16:55:07 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288446432 2019-12-12 11:01:20 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 18 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 10:42:00 obsr610593 S21137904 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994651 2021-03-24 05:37:45.927792 483 species avibase-85625D75 Mallard Anas platyrhynchos 125 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:20:00 obsr610593 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291635388 2018-08-04 16:53:56 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Eagle Bay L3182194 H 42.5358712 -79.2230498 2015-01-18 11:21:00 obsr610593 S21396070 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544499 2018-08-04 16:52:51 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-10401 Bennett Rd walmart pond L2583912 P 42.453091 -79.313939 2015-01-06 13:45:00 obsr196919 S21227599 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292462054 2021-03-24 05:37:45.927792 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-21 13:09:00 obsr610593 S21480867 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544006 2021-04-01 10:51:06.899622 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 251 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290958464 2018-08-04 16:53:17 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 13:15:00 obsr448063 S21341387 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289290322 2021-03-24 05:37:45.927792 622 species avibase-50566E50 Lesser Scaup Aythya affinis 24 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-05 12:54:00 obsr610593 S21207331 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291699841 2018-08-04 16:53:58 681 species avibase-407E2CA8 Common Merganser Mergus merganser 37 United States US New York US-NY Chautauqua US-NY-013 13.0 Pond behind Walmart, Fredonia L2057244 H 42.4528479 -79.3144333 2015-01-18 14:48:00 obsr610593 S21400682 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291459552 2015-11-16 14:58:04 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Chautauqua US-NY-013 Barcelona Harbor L337145 H 42.342789 -79.5939356 2015-01-17 14:34:00 obsr686867 S21382185 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292782645 2015-01-23 15:23:46 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-23 14:55:00 obsr279182 S21506073 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453740 2021-04-01 10:51:06.899622 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 23 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288206271 2021-03-24 05:37:45.927792 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-01 09:52:00 obsr610593 S21110968 Stationary P21 EBIRD 12.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020176 2021-04-01 10:51:06.899622 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-30 16:02:00 obsr610593 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289088433 2021-03-24 05:37:45.927792 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 8 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:50:00 obsr448063 S21191894 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294253089 2018-08-04 16:55:28 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-31 10:00:00 obsr22013 S21622483 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648453 2021-04-01 10:51:06.899622 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-01-22 11:00:00 obsr655124 S21495478 Traveling P22 EBIRD 90.0 59.54600000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288416501 2021-09-03 19:22:31.034431 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 Unknown Sex, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-02 08:35:00 obsr610593 S21135298 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294117384 2021-09-03 19:22:31.034431 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-31 07:45:00 obsr610593 S21611639 Stationary P21 EBIRD 135.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288889506 2015-01-03 21:01:44 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Off Route 5 L3263133 P 42.52794779999999 -79.2472976 2015-01-03 14:40:00 obsr479854 S21176310 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288986129 2021-04-01 10:51:06.899622 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-04 10:47:00 obsr610593 S21183668 Traveling P22 EBIRD 20.0 4.828 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291937473 2015-01-19 14:54:21 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Dunkirk-11501-11733 Co Touring Rte 79 L3303961 P 42.509908 -79.237111 2015-01-18 10:41:00 obsr279182 S21419055 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926518 2015-01-03 23:41:22 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-02 09:00:00 obsr650950 S21179164 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290713975 2015-03-09 21:12:28 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-12 16:54:00 obsr610593 S21321836 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295533481 2015-02-08 11:14:40 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 bus route pm L3346457 P 42.1421296 -79.3559647 2015-01-31 15:00:00 obsr400171 S21724782 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288109659 2015-03-09 21:12:28 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-01 09:01:00 obsr610593 S21110132 Traveling P22 EBIRD 34.0 5.632999999999999 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867857 2015-01-19 08:57:23 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Boutwell Hill SF L2054628 H 42.31860579999999 -79.1861057 2015-01-19 07:57:00 obsr610593 S21413712 Traveling P22 EBIRD 55.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288139109 2015-01-01 11:13:09 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Forestville-10381 Center Rd L3181944 P 42.45311 -79.23689399999999 2015-01-01 11:10:00 obsr610593 S21112359 Incidental P20 EBIRD 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291561818 2021-03-30 19:03:54.667077 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 11:00:00 obsr8904 S21390302 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288139316 2021-04-01 10:51:06.899622 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Town of Busti L2076554 P 42.0197126 -79.3120193 2015-01-01 09:54:00 obsr562964 S21112379 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171137 2021-04-01 10:51:06.899622 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk L141361 T 42.4794617 -79.3339691 2015-01-25 13:00:00 obsr77651 S21536626 Traveling P22 EBIRD 120.0 48.28 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289685427 2019-01-07 15:27:28 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-07 12:34:00 obsr610593 S21238196 Traveling P22 EBIRD 33.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291609131 2021-04-01 10:51:06.899622 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-18 07:40:00 obsr610593 S21393783 Traveling P22 EBIRD 31.0 6.035 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288196557 2021-03-24 19:24:40.212356 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-01 14:02:00 obsr610593 S21117237 Traveling P22 EBIRD 18.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293608150 2015-01-27 19:05:44 6339 species avibase-8535345B Herring Gull Larus argentatus 1 Unknown Sex, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 County Rd 70, 1.7 mile N of Kimble Stand L3226067 P 42.188385 -79.273587 2015-01-27 14:24:00 obsr448063 S21571565 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291928199 2015-01-19 14:03:43 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Route 5 Rest Area - Sheridan L3303838 P 42.53865 -79.214019 2015-01-19 13:50:00 obsr279182 S21418257 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292954070 2015-03-09 21:12:28 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-24 10:00:00 obsr77804 S21519677 Traveling P22 EBIRD 45.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219016 2015-01-15 22:36:25 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291631402 2015-02-21 15:54:40 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Chautauqua US-NY-013 13.0 Saint Hyacinth Chapel and Cemetery L2057391 H 42.5051356 -79.3030071 2015-01-18 11:03:00 obsr610593 S21395732 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421444 2015-01-11 16:23:57 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-11 12:43:00 obsr610593 S21298168 Traveling P22 EBIRD 86.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303607745 2018-08-04 16:53:10 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-11 14:00:00 obsr583008 S22388515 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290807461 2021-03-24 05:37:45.927792 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 07:39:00 obsr610593 S21328771 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116437 2018-08-04 16:52:16 681 species avibase-407E2CA8 Common Merganser Mergus merganser 500 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-01 09:41:00 obsr610593 S21110522 Traveling P22 EBIRD 10.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289290328 2021-03-24 05:37:45.927792 483 species avibase-85625D75 Mallard Anas platyrhynchos 1400 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-05 12:54:00 obsr610593 S21207331 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020183 2021-04-01 10:51:06.899622 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-30 16:02:00 obsr610593 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648448 2021-04-01 10:51:06.899622 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-01-22 11:00:00 obsr655124 S21495478 Traveling P22 EBIRD 90.0 59.54600000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292940573 2015-01-24 15:15:50 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-10366 Bennett Rd L3314133 P 42.451969 -79.308319 2015-01-24 15:14:00 obsr279182 S21518626 Incidental P20 EBIRD 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288890666 2015-01-03 21:05:30 26890 species avibase-94A44032 European Starling Sturnus vulgaris 25 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-03 14:50:00 obsr479854 S21176393 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288887097 2019-12-12 11:01:20 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 100 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 15:40:00 obsr479854 S21176168 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544496 2018-08-04 16:52:51 483 species avibase-85625D75 Mallard Anas platyrhynchos 14 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-10401 Bennett Rd walmart pond L2583912 P 42.453091 -79.313939 2015-01-06 13:45:00 obsr196919 S21227599 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288446441 2019-12-12 11:01:20 622 species avibase-50566E50 Lesser Scaup Aythya affinis 450 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 10:42:00 obsr610593 S21137904 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291771089 2021-03-24 05:37:45.927792 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 13:30:00 obsr448063 S21406389 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453751 2021-04-01 10:51:06.899622 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292462058 2021-03-24 05:37:45.927792 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-21 13:09:00 obsr610593 S21480867 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294253084 2018-08-04 16:55:28 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-31 10:00:00 obsr22013 S21622483 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288138885 2021-04-01 10:51:06.899622 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 68 United States US New York US-NY Chautauqua US-NY-013 13.0 Celoron Boat Launch, Chautauqua Lake L200467 H 42.1113404 -79.2830005 2015-01-01 09:35:00 obsr562964 S21112332 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291615330 2021-03-19 16:08:39.161312 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Point Gratiot--Cedar Beach L2811591 H 42.4920361 -79.34995649999999 2015-01-18 08:56:00 obsr610593 S21394318 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291699843 2018-08-04 16:53:58 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis X United States US New York US-NY Chautauqua US-NY-013 13.0 Pond behind Walmart, Fredonia L2057244 H 42.4528479 -79.3144333 2015-01-18 14:48:00 obsr610593 S21400682 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901355 2018-08-04 16:55:07 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291720614 2015-01-19 16:10:10 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 150 United States US New York US-NY Chautauqua US-NY-013 13.0 Sunset Bay L3304184 P 42.5681687 -79.1366959 2015-01-18 11:15:00 obsr279182 S21402407 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291693448 2015-01-18 17:48:41 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-18 14:15:00 obsr610593 S21400211 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291459554 2015-11-16 14:58:04 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 45 United States US New York US-NY Chautauqua US-NY-013 Barcelona Harbor L337145 H 42.342789 -79.5939356 2015-01-17 14:34:00 obsr686867 S21382185 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291928200 2015-01-19 14:03:43 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Route 5 Rest Area - Sheridan L3303838 P 42.53865 -79.214019 2015-01-19 13:50:00 obsr279182 S21418257 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289979149 2015-01-09 08:59:13 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 400 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-08 16:00:00 obsr279182 S21262087 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290958459 2018-08-04 16:53:17 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 13:15:00 obsr448063 S21341387 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994659 2021-03-24 05:37:45.927792 456 species avibase-D201EB72 American Wigeon Mareca americana X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:20:00 obsr610593 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292782648 2015-01-23 15:23:46 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 55 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-23 14:55:00 obsr279182 S21506073 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288453181 2018-08-04 16:52:29 31530 species avibase-B48335B1 Pine Siskin Spinus pinus X United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-02 11:20:00 obsr610593 S21138544 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291619868 2018-08-04 16:53:55 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Chautauqua US-NY-013 Barcelona Harbor L337145 H 42.342789 -79.5939356 2015-01-18 09:34:00 obsr610593 S21394750 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291561813 2021-03-30 19:03:54.667077 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 11:00:00 obsr8904 S21390302 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544001 2021-04-01 10:51:06.899622 592 species avibase-3072CC16 Redhead Aythya americana 278 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290180301 2015-01-10 13:17:55 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 109 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-10 13:11:00 obsr279182 S21278506 Traveling P22 EBIRD 25.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612695 2021-03-30 19:03:54.667077 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292957925 2015-01-24 16:29:04 622 species avibase-50566E50 Lesser Scaup Aythya affinis 80 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 15:25:00 obsr279182 S21519988 Stationary P21 EBIRD 63.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291635394 2018-08-04 16:53:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Chautauqua US-NY-013 13.0 Eagle Bay L3182194 H 42.5358712 -79.2230498 2015-01-18 11:21:00 obsr610593 S21396070 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292799789 2021-04-01 10:51:06.899622 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-23 13:30:00 obsr448063 S21507455 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289088425 2021-03-24 05:37:45.927792 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 45 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:50:00 obsr448063 S21191894 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291944700 2018-08-04 16:54:43 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 54 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.31982990000002 2015-01-19 15:00:00 obsr279182 S21419645 Stationary P21 EBIRD 25.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120360 2018-08-04 16:55:14 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 75 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-25 11:30:00 obsr279182 S21532763 Stationary P21 EBIRD 58.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291619863 2018-08-04 16:53:55 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Chautauqua US-NY-013 Barcelona Harbor L337145 H 42.342789 -79.5939356 2015-01-18 09:34:00 obsr610593 S21394750 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291699842 2018-08-04 16:53:58 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Pond behind Walmart, Fredonia L2057244 H 42.4528479 -79.3144333 2015-01-18 14:48:00 obsr610593 S21400682 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544014 2021-04-01 10:51:06.899622 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901354 2018-08-04 16:55:07 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288138881 2021-04-01 10:51:06.899622 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Celoron Boat Launch, Chautauqua Lake L200467 H 42.1113404 -79.2830005 2015-01-01 09:35:00 obsr562964 S21112332 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648446 2021-04-01 10:51:06.899622 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 81 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-01-22 11:00:00 obsr655124 S21495478 Traveling P22 EBIRD 90.0 59.54600000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288185749 2021-04-01 10:51:06.899622 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768000000001 2015-01-01 13:01:00 obsr610593 S21116275 Stationary P21 EBIRD 44.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020186 2021-04-01 10:51:06.899622 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-30 16:02:00 obsr610593 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292799796 2021-04-01 10:51:06.899622 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 25 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-23 13:30:00 obsr448063 S21507455 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544009 2021-04-01 10:51:06.899622 20829 species avibase-B9B272F4 Common Raven Corvus corax N 9 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291097503 2021-04-01 10:51:06.899622 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 37 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-15 07:57:00 obsr610593 S21352645 Traveling P22 EBIRD 35.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171144 2021-04-01 10:51:06.899622 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk L141361 T 42.4794617 -79.3339691 2015-01-25 13:00:00 obsr77651 S21536626 Traveling P22 EBIRD 120.0 48.28 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291609133 2021-04-01 10:51:06.899622 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis N 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-18 07:40:00 obsr610593 S21393783 Traveling P22 EBIRD 31.0 6.035 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453733 2021-04-01 10:51:06.899622 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 8 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288139315 2021-04-01 10:51:06.899622 6339 species avibase-8535345B Herring Gull Larus argentatus N 59 United States US New York US-NY Chautauqua US-NY-013 13.0 Town of Busti L2076554 P 42.0197126 -79.3120193 2015-01-01 09:54:00 obsr562964 S21112379 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293124637 2021-04-01 10:51:06.899622 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport Parking Lot L3316607 P 42.493334 -79.278148 2015-01-25 12:35:00 obsr279182 S21533128 Stationary P21 EBIRD 13.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288986132 2021-04-01 10:51:06.899622 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 30 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-04 10:47:00 obsr610593 S21183668 Traveling P22 EBIRD 20.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290612163 2021-04-01 10:51:06.899622 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus N 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-12 07:52:00 obsr610593 S21312980 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291129461 2015-01-15 13:07:28 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Frissell Road L3293695 P 42.0186605 -79.168607 2015-01-15 09:30:00 obsr368143 S21355235 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289025314 2019-01-07 15:27:14 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-South Dayton-886 Butcher Rd L3265250 P 42.381013 -79.111796 2015-01-04 13:26:00 obsr610593 S21186936 Incidental P20 EBIRD 2.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290807458 2021-03-24 05:37:45.927792 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 07:39:00 obsr610593 S21328771 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453748 2021-04-01 10:51:06.899622 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289544012 2021-04-01 10:51:06.899622 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901359 2018-08-04 16:55:07 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292957922 2015-01-24 16:29:04 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 15:25:00 obsr279182 S21519988 Stationary P21 EBIRD 63.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288887098 2019-12-12 11:01:20 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 5 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 15:40:00 obsr479854 S21176168 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612690 2021-03-30 19:03:54.667077 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288121655 2021-03-24 05:37:45.927792 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-01 09:52:00 obsr610593 S21110968 Stationary P21 EBIRD 12.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453743 2021-04-01 10:51:06.899622 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612685 2021-03-30 19:03:54.667077 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 33 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294253082 2018-08-04 16:55:28 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-31 10:00:00 obsr22013 S21622483 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020177 2021-04-01 10:51:06.899622 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-30 16:02:00 obsr610593 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289088431 2021-03-24 05:37:45.927792 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:50:00 obsr448063 S21191894 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289295145 2021-03-24 05:37:45.927792 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-05 12:54:00 obsr610593 S21207331 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290633695 2015-03-09 21:12:28 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-11 06:00:00 obsr468871 S21314841 Traveling P22 EBIRD 60.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400101 2015-01-26 15:24:42 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292798494 2015-03-03 10:02:11 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-23 09:15:00 obsr448063 S21507352 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289003067 2021-09-03 19:22:31.034431 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-04 12:11:00 obsr610593 S21185151 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288185754 2021-04-01 10:51:06.899622 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768000000001 2015-01-01 13:01:00 obsr610593 S21116275 Stationary P21 EBIRD 44.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293124638 2021-04-01 10:51:06.899622 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 13 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport Parking Lot L3316607 P 42.493334 -79.278148 2015-01-25 12:35:00 obsr279182 S21533128 Stationary P21 EBIRD 13.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867863 2015-01-19 08:57:23 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 55 United States US New York US-NY Chautauqua US-NY-013 13.0 Boutwell Hill SF L2054628 H 42.31860579999999 -79.1861057 2015-01-19 07:57:00 obsr610593 S21413712 Traveling P22 EBIRD 55.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290227731 2021-03-19 16:08:39.161312 681 species avibase-407E2CA8 Common Merganser Mergus merganser 50 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768000000001 2015-01-10 16:05:00 obsr610593 S21282519 Stationary P21 EBIRD 20.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292954068 2015-03-09 21:12:28 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 181 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-24 10:00:00 obsr77804 S21519677 Traveling P22 EBIRD 45.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291937361 2015-03-09 21:12:28 662 species avibase-FB738385 Bufflehead Bucephala albeola 12 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-19 14:15:00 obsr279182 S21419046 Traveling P22 EBIRD 38.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291315688 2015-03-09 21:12:28 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-16 17:10:00 obsr279182 S21370726 Traveling P22 EBIRD 6.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290713976 2015-03-09 21:12:28 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-12 16:54:00 obsr610593 S21321836 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289393990 2015-03-09 21:12:28 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 Male, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-05 15:30:00 obsr279182 S21215608 Traveling P22 EBIRD 60.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288986133 2021-04-01 10:51:06.899622 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-04 10:47:00 obsr610593 S21183668 Traveling P22 EBIRD 20.0 4.828 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288196559 2021-03-24 19:24:40.212356 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-01 14:02:00 obsr610593 S21117237 Traveling P22 EBIRD 18.0 5.632999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292802918 2020-03-11 19:16:56 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Industrial Park (S Roberts Road X Progress Drive), Dunkirk L3312313 H 42.4862182 -79.3175481 2015-01-23 17:31:00 obsr610593 S21507782 Incidental P20 EBIRD 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289679107 2019-01-07 15:27:28 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-07 12:34:00 obsr610593 S21238196 Traveling P22 EBIRD 33.0 6.437 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292901350 2018-08-04 16:55:07 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400092 2015-01-26 15:24:42 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294254230 2021-03-24 19:24:40.212356 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.33021550000001 2015-01-31 11:30:00 obsr22013 S21622559 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219001 2015-01-15 22:36:25 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291928202 2015-01-19 14:03:43 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Route 5 Rest Area - Sheridan L3303838 P 42.53865 -79.214019 2015-01-19 13:50:00 obsr279182 S21418257 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926515 2015-01-03 23:41:22 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-02 09:00:00 obsr650950 S21179164 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926337 2018-08-04 16:52:14 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292589061 2021-09-03 19:22:31.034431 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-22 09:21:00 obsr610593 S21490937 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293450303 2015-01-26 20:03:44 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Sandhill Designs L3320804 P 42.006055 -79.16491090000001 2015-01-25 10:00:00 obsr605033 S21559323 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293946053 2021-03-26 06:12:17.833181 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-29 23:00:00 obsr77651 S21598110 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288257078 2021-09-03 19:22:31.034431 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-01 15:31:00 obsr610593 S21122387 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS419567164 2021-03-24 19:24:40.212356 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-New York-Clymer-9968 King Road - 42.068x-79.709 L4808852 P 42.0679833 -79.70899509999998 2015-01-24 08:30:00 obsr241677 S30809895 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293734998 2015-03-03 10:02:11 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-28 09:00:00 obsr448063 S21581225 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291631407 2015-02-21 15:54:40 526 species avibase-56CCA717 Northern Pintail Anas acuta 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Saint Hyacinth Chapel and Cemetery L2057391 H 42.5051356 -79.3030071 2015-01-18 11:03:00 obsr610593 S21395732 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293720436 2021-09-03 19:22:31.034431 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-28 10:44:00 obsr610593 S21577894 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292884123 2015-03-03 10:02:11 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-24 08:00:00 obsr448063 S21514098 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290807451 2021-03-24 05:37:45.927792 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 6 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 07:39:00 obsr610593 S21328771 Stationary P21 EBIRD 21.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303607744 2018-08-04 16:53:10 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-11 14:00:00 obsr583008 S22388515 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288449412 2021-12-27 20:39:04.096623 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-01-02 11:06:00 obsr610593 S21138182 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290320626 2021-03-26 06:12:17.833181 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-12 Orchard St L3283632 P 42.438359000000005 -79.323639 2015-01-10 14:45:00 obsr279182 S21290154 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926528 2015-01-03 23:41:22 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-02 09:00:00 obsr650950 S21179164 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293178941 2021-03-26 06:12:17.833181 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Orchard/Eagle L2848533 P 42.4370138 -79.3200874 2015-01-25 15:45:00 obsr279182 S21537252 Stationary P21 EBIRD 46.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292884125 2015-03-03 10:02:11 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-24 08:00:00 obsr448063 S21514098 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288427710 2021-03-26 06:12:17.833181 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown, Southside L2023033 P 42.0758647 -79.23477170000001 2015-01-02 09:30:00 obsr562964 S21136370 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926332 2018-08-04 16:52:14 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293946055 2021-03-26 06:12:17.833181 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-29 23:00:00 obsr77651 S21598110 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS419567168 2021-03-24 19:24:40.212356 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 US-New York-Clymer-9968 King Road - 42.068x-79.709 L4808852 P 42.0679833 -79.70899509999998 2015-01-24 08:30:00 obsr241677 S30809895 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351371 2015-03-03 10:02:11 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-10 08:15:00 obsr448063 S21292457 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421450 2015-01-11 16:23:57 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.42209129999999 -79.42812049999999 2015-01-11 12:43:00 obsr610593 S21298168 Traveling P22 EBIRD 86.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219008 2015-01-15 22:36:25 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291631408 2015-02-21 15:54:40 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Saint Hyacinth Chapel and Cemetery L2057391 H 42.5051356 -79.3030071 2015-01-18 11:03:00 obsr610593 S21395732 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292198218 2021-03-26 06:12:17.833181 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.24839990000001 2015-01-19 10:45:00 obsr77651 S21439566 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290002886 2015-01-09 12:32:29 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Orchard/Eagle L2848533 P 42.4370138 -79.3200874 2015-01-09 09:30:00 obsr279182 S21263029 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293450298 2015-01-26 20:03:44 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Sandhill Designs L3320804 P 42.006055 -79.16491090000001 2015-01-25 10:00:00 obsr605033 S21559323 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290024626 2021-09-03 19:22:31.034431 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-09 08:14:00 obsr610593 S21262361 Stationary P21 EBIRD 314.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291406316 2015-01-17 09:36:34 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-12 Orchard St L3283632 P 42.438359000000005 -79.323639 2015-01-17 09:00:00 obsr279182 S21377740 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293734999 2015-03-03 10:02:11 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-28 09:00:00 obsr448063 S21581225 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400087 2015-01-26 15:24:42 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926525 2015-01-03 23:41:22 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-02 09:00:00 obsr650950 S21179164 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292884129 2015-03-03 10:02:11 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-24 08:00:00 obsr448063 S21514098 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351370 2015-03-03 10:02:11 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-10 08:15:00 obsr448063 S21292457 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926331 2018-08-04 16:52:14 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr650950 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291775862 2015-01-18 19:34:47 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Chautauqua US-NY-013 13.0 Co rd 342 near Luce Rd L3302089 P 42.3171779 -79.3103027 2015-01-18 15:00:00 obsr448063 S21406746 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926520 2015-01-03 23:41:22 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 13 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-02 09:00:00 obsr650950 S21179164 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867856 2015-01-19 08:57:23 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 8 United States US New York US-NY Chautauqua US-NY-013 13.0 Boutwell Hill SF L2054628 H 42.31860579999999 -79.1861057 2015-01-19 07:57:00 obsr610593 S21413712 Traveling P22 EBIRD 55.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303442373 2015-03-16 01:20:28 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 16 United States US New York US-NY Chautauqua US-NY-013 13.0 South Ripley, Miller Road L3360057 P 42.21902 -79.75516 2015-01-06 10:30:00 obsr221298 S22375284 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400088 2015-01-26 15:24:42 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-25 14:30:00 obsr650950 S21554955 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292648447 2021-04-01 10:51:06.899622 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 16 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-01-22 11:00:00 obsr655124 S21495478 Traveling P22 EBIRD 90.0 59.54600000000001 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291624085 2015-01-18 10:20:32 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 28 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia - 42.4123x-79.4218 - Jan 18, 2015, 10:20 AM L3300402 P 42.4123 -79.421838 2015-01-18 10:20:00 obsr610593 S21395101 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219004 2015-01-15 22:36:25 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr650950 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288889505 2015-01-03 21:01:44 303 species avibase-B59E1863 Canada Goose Branta canadensis 12 United States US New York US-NY Chautauqua US-NY-013 13.0 Off Route 5 L3263133 P 42.52794779999999 -79.2472976 2015-01-03 14:40:00 obsr479854 S21176310 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS419567173 2021-03-24 19:24:40.212356 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-New York-Clymer-9968 King Road - 42.068x-79.709 L4808852 P 42.0679833 -79.70899509999998 2015-01-24 08:30:00 obsr241677 S30809895 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289543993 2021-04-01 10:51:06.899622 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 158 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-06 14:45:00 obsr196919 S21227560 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291453750 2021-04-01 10:51:06.899622 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 75 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 13:34:00 obsr686867 S21381687 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291771088 2021-03-24 05:37:45.927792 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 13:30:00 obsr448063 S21406389 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994658 2021-03-24 05:37:45.927792 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:20:00 obsr610593 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289088428 2021-03-24 05:37:45.927792 447 species avibase-C235A4D7 Gadwall Mareca strepera 43 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-04 11:50:00 obsr448063 S21191894 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901357 2018-08-04 16:55:07 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 11:20:00 obsr77804 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288446440 2019-12-12 11:01:20 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 250 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 10:42:00 obsr610593 S21137904 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292462057 2021-03-24 05:37:45.927792 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-21 13:09:00 obsr610593 S21480867 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288121656 2021-03-24 05:37:45.927792 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 32 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-01 09:52:00 obsr610593 S21110968 Stationary P21 EBIRD 12.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612694 2021-03-30 19:03:54.667077 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 135 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-18 08:21:00 obsr610593 S21394083 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291561814 2021-03-30 19:03:54.667077 8157 spuh avibase-E91E7830 Buteo sp. Buteo sp. X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-17 11:00:00 obsr8904 S21390302 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292799800 2021-04-01 10:51:06.899622 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-23 13:30:00 obsr448063 S21507455 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288890669 2015-01-03 21:05:30 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 60 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-03 14:50:00 obsr479854 S21176393 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293120359 2018-08-04 16:55:14 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-25 11:30:00 obsr279182 S21532763 Stationary P21 EBIRD 58.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290807460 2021-03-24 05:37:45.927792 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 85 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 07:39:00 obsr610593 S21328771 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289290326 2021-03-24 05:37:45.927792 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 175 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-05 12:54:00 obsr610593 S21207331 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288887093 2019-12-12 11:01:20 681 species avibase-407E2CA8 Common Merganser Mergus merganser 40 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-02 15:40:00 obsr479854 S21176168 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303607742 2018-08-04 16:53:10 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-11 14:00:00 obsr583008 S22388515 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020182 2021-04-01 10:51:06.899622 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-30 16:02:00 obsr610593 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290958470 2018-08-04 16:53:17 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-13 13:15:00 obsr448063 S21341387 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292957924 2015-01-24 16:29:04 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.33679959999999 2015-01-24 15:25:00 obsr279182 S21519988 Stationary P21 EBIRD 63.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293690160 2021-09-03 19:22:31.034431 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 Female, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-28 10:44:00 obsr610593 S21577894 Stationary P21 EBIRD 36.0 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290155557 2021-09-03 19:22:31.034431 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 Female, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.452949700000005 -79.2192119 2015-01-10 10:27:00 obsr610593 S21276110 Stationary P21 EBIRD 68.0 2.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292856369 2021-04-01 10:51:50.668112 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Chemung US-NY-015 28.0 Riverfront Park--West L160742 H 42.087345 -76.806526 2015-01-19 15:28:00 obsr142856 S21511914 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292900486 2018-08-04 16:54:47 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Chemung US-NY-015 28.0 Mill St. Pond Trail, Horseheads L292227 H 42.1655917 -76.80856690000002 2015-01-20 15:00:00 obsr28914 S21515601 Traveling P22 EBIRD 1.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289208906 2018-08-04 16:52:36 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Chemung US-NY-015 28.0 Eldridge Lake L312256 P 42.1137818 -76.8172738 2015-01-03 09:36:00 obsr142856 S21201098 Stationary P21 EBIRD 24.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290331661 2015-01-11 00:09:41 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP West Parking Lot L2753176 P 42.213698 -76.842365 2015-01-10 11:16:00 obsr142856 S21291061 Traveling P22 EBIRD 3.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290333820 2021-04-01 10:51:50.668112 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Chemung US-NY-015 28.0 Riverfront Park--East L160700 H 42.08786 -76.80247 2015-01-10 15:48:00 obsr142856 S21291252 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294277674 2018-08-04 16:55:17 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Chemung US-NY-015 28.0 Riverfront Park--East L160700 H 42.08786 -76.80247 2015-01-25 15:30:00 obsr142856 S21624242 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290330621 2018-08-04 16:53:00 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 40 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail East Woods L2372368 P 42.210721 -76.837918 2015-01-10 10:13:00 obsr142856 S21290978 Traveling P22 EBIRD 55.0 1.4480000000000002 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293293589 2020-06-22 14:18:48 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 13 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP--Ek Birding Trail L2888425 H 42.2128769 -76.8451113 2015-01-25 14:12:00 obsr49925 S21546096 Traveling P22 EBIRD 33.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290164141 2021-03-24 19:27:13.077399 341 species avibase-B86C504C Trumpeter Swan Cygnus buccinator 5 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-10 10:16:00 obsr49925 S21277166 Traveling P22 EBIRD 31.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289204274 2021-03-24 19:27:13.077399 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 14 United States US New York US-NY Chemung US-NY-015 28.0 Horseheads Dump L372311 P 42.1496122 -76.8287873 2015-01-03 07:12:00 obsr142856 S21200771 Traveling P22 EBIRD 113.0 2.092 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291977335 2021-03-24 19:27:13.077399 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-01-19 12:00:00 obsr28914 S21422388 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294262581 2021-03-24 19:27:13.077399 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 6 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-31 10:46:00 obsr49925 S21623175 Traveling P22 EBIRD 36.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290164472 2021-03-24 19:27:13.077399 31268 issf avibase-95F9C840 Purple Finch Haemorhous purpureus Purple Finch (Eastern) Haemorhous purpureus purpureus 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-10 08:34:00 obsr49925 S21277196 Stationary P21 EBIRD 41.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291743828 2021-04-01 10:51:50.668112 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 21 United States US New York US-NY Chemung US-NY-015 28.0 Orthopedic Associates L364650 P 42.0871719 -76.8088746 2015-01-17 07:48:00 obsr142856 S21404223 Stationary P21 EBIRD 58.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290333514 2018-08-04 16:53:02 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Chemung US-NY-015 28.0 Riverfront Park--West L160742 H 42.087345 -76.806526 2015-01-10 13:38:00 obsr142856 S21291228 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991212 2021-03-24 19:27:13.077399 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-14 08:50:00 obsr49925 S21343828 Traveling P22 EBIRD 34.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288205496 2021-03-24 19:27:13.077399 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-01 10:11:00 obsr49925 S21117997 Stationary P21 EBIRD 48.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290870884 2015-01-13 17:15:30 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-13 09:20:00 obsr49925 S21334430 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290330616 2018-08-04 16:53:00 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail East Woods L2372368 P 42.210721 -76.837918 2015-01-10 10:13:00 obsr142856 S21290978 Traveling P22 EBIRD 55.0 1.4480000000000002 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289848956 2021-03-24 19:27:13.077399 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-07 10:02:00 obsr49925 S21251602 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292949037 2018-08-04 16:55:06 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Chemung US-NY-015 28.0 Sugar 'N Spice Restaurant L321121 P 42.1725583 -76.8255559 2015-01-24 10:00:00 obsr142856 S21519349 Stationary P21 EBIRD 5.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292788679 2015-01-23 16:06:17 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-22 08:17:00 obsr49925 S21506586 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292991821 2015-01-24 18:30:04 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 6 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-24 09:55:00 obsr49925 S21522478 Traveling P22 EBIRD 35.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082147 2021-03-24 19:27:13.077399 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-19 12:15:00 obsr49925 S21430531 Traveling P22 EBIRD 40.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293293515 2018-08-04 16:55:16 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Chemung US-NY-015 28.0 Horseheads Marsh--South End L285432 H 42.1727046 -76.824578 2015-01-25 15:01:00 obsr49925 S21546087 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292856749 2018-08-04 16:54:44 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 64 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Holiday Inn L160744 H 42.08827 -76.79419 2015-01-19 15:44:00 obsr142856 S21511939 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290331932 2021-03-26 06:13:28.501496 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Chemung US-NY-015 28.0 Sugar 'N Spice Restaurant L321121 P 42.1725583 -76.8255559 2015-01-10 11:30:00 obsr142856 S21291091 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292899238 2015-01-24 11:56:54 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-01-24 11:13:00 obsr28914 S21515507 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289849557 2018-06-21 21:43:16 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 24 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP--East Loop L1458265 H 42.2136179 -76.83333590000001 2015-01-03 09:24:00 obsr49925 S21251663 Traveling P22 EBIRD 51.0 2.092 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293536204 2021-03-24 19:27:13.077399 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-27 10:24:00 obsr49925 S21565839 Traveling P22 EBIRD 22.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291962789 2018-08-04 16:53:56 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 6 United States US New York US-NY Chemung US-NY-015 28.0 Chemung River, Dunn Field Fishing Access L2342791 H 42.081189 -76.778705 2015-01-18 10:30:00 obsr37567 S21421200 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291967084 2021-04-01 10:51:50.668112 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Chemung US-NY-015 28.0 Coldbrook Creek at bridge on Laurentian Place, Southport, NY L3017069 P 42.0645633 -76.7879373 2015-01-18 12:00:00 obsr37567 S21421541 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289848997 2021-03-24 19:27:13.077399 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-08 08:33:00 obsr49925 S21251604 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289210693 2021-03-19 16:10:30.527219 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Chemung US-NY-015 28.0 Eldridge Trail L319530 P 42.1177453 -76.81043079999999 2015-01-03 10:00:00 obsr142856 S21201232 Traveling P22 EBIRD 50.0 1.4480000000000002 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289209332 2021-03-19 16:10:30.527219 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Chemung US-NY-015 28.0 Eldridge Park South Parking Lot L2403477 P 42.112534 -76.816144 2015-01-03 09:36:00 obsr142856 S21201136 Stationary P21 EBIRD 24.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288987256 2021-03-26 06:13:28.501496 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 15 United States US New York US-NY Chemung US-NY-015 28.0 Whennex rd Subdivision to Cohen School L3264692 P 42.1251792 -76.8276072 2015-01-03 09:40:00 obsr339506 S21183782 Traveling P22 EBIRD 75.0 20.921 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288631429 2018-06-21 21:43:16 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP--East Loop L1458265 H 42.2136179 -76.83333590000001 2015-01-02 11:14:00 obsr49925 S21153649 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292992169 2021-03-24 19:27:13.077399 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-23 16:10:00 obsr49925 S21522505 Traveling P22 EBIRD 32.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082447 2021-03-24 19:27:13.077399 20829 species avibase-B9B272F4 Common Raven Corvus corax 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-18 09:11:00 obsr49925 S21430560 Traveling P22 EBIRD 18.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288986431 2021-03-19 16:10:30.527219 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 8 United States US New York US-NY Chemung US-NY-015 28.0 Boces - Bush Campus in Elmira L2583687 H 42.150709 -76.839781 2015-01-03 07:05:00 obsr339506 S21183692 Traveling P22 EBIRD 120.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289424607 2021-04-01 10:51:50.668112 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Chemung US-NY-015 28.0 Madison Ave C Elmira L3270085 P 42.096436 -76.801985 2015-01-03 13:24:00 obsr142856 S21218013 Traveling P22 EBIRD 3.0 2.092 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288886773 2021-01-13 07:46:42.954345 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Chemung US-NY-015 28.0 Eldridge Lake, Eldridge Park, Elmira, NY L3263072 P 42.11321220000001 -76.8156633 2015-01-03 15:00:00 obsr537982 S21176147 Stationary P21 EBIRD 15.0 0.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294280634 2018-08-04 16:55:32 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Holiday Inn L160744 H 42.08827 -76.79419 2015-01-31 15:51:00 obsr142856 S21624451 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289215306 2015-01-05 00:31:30 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Chemung US-NY-015 28.0 Lake St C Elmira L291579 P 42.1088078 -76.8066187 2015-01-03 11:45:00 obsr142856 S21201607 Traveling P22 EBIRD 6.0 2.897 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292788784 2021-03-24 19:27:13.077399 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-20 08:19:00 obsr49925 S21506595 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294076404 2021-03-24 19:27:13.077399 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 11 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-29 09:03:00 obsr49925 S21608527 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289214442 2015-01-05 00:18:11 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Chemung US-NY-015 28.0 E Thurston St C Elmira L3267584 P 42.113079 -76.80785 2015-01-03 11:39:00 obsr142856 S21201509 Traveling P22 EBIRD 2.0 0.966 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294280274 2021-04-01 10:51:50.668112 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Chemung US-NY-015 28.0 Valicenti Advisory Services L284347 P 42.088067200000005 -76.8002746 2015-01-31 15:40:00 obsr142856 S21624421 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290327191 2015-01-10 23:33:49 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail Fields L2372364 P 42.212377 -76.840805 2015-01-10 10:03:00 obsr142856 S21290711 Traveling P22 EBIRD 10.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292946405 2015-01-24 15:40:20 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP East Parking Lot L305092 P 42.2153016 -76.83941740000002 2015-01-24 08:00:00 obsr142856 S21519115 Stationary P21 EBIRD 10.0 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288689532 2015-01-03 09:47:16 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 7 United States US New York US-NY Chemung US-NY-015 28.0 Plymouth Woods Nature Preserve L809538 H 42.080324100000006 -76.9132125 2015-01-03 09:20:00 obsr500511 S21157913 Traveling P22 EBIRD 27.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288632191 2021-03-19 16:10:30.527219 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 220 United States US New York US-NY Chemung US-NY-015 28.0 Smith Rd. (East) Fields, Veteran L3259562 P 42.22927 -76.81358399999999 2015-01-02 12:45:00 obsr49925 S21153711 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292948434 2018-08-04 16:54:57 592 species avibase-3072CC16 Redhead Aythya americana 3 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail East Woods L2372368 P 42.210721 -76.837918 2015-01-24 08:15:00 obsr142856 S21519295 Traveling P22 EBIRD 86.0 1.4480000000000002 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289424278 2021-03-19 16:10:30.527219 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 6 United States US New York US-NY Chemung US-NY-015 28.0 Grand Central Ave C Elmira L293036 P 42.110108700000005 -76.8105547 2015-01-03 13:21:00 obsr142856 S21217984 Traveling P22 EBIRD 3.0 1.931 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293491850 2015-01-26 23:47:14 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-26 07:44:00 obsr49925 S21562288 Traveling P22 EBIRD 21.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289423991 2021-04-01 10:51:50.668112 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 1 United States US New York US-NY Chemung US-NY-015 28.0 Lynwood Ave V Elmira Heights s of Hope St L3270071 P 42.120665 -76.821887 2015-01-03 13:20:00 obsr142856 S21217965 Traveling P22 EBIRD 1.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292788532 2021-03-24 19:27:13.077399 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 7 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-23 07:53:00 obsr49925 S21506571 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288630204 2021-03-24 19:27:13.077399 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-01 14:18:00 obsr49925 S21153555 Traveling P22 EBIRD 26.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082557 2021-03-24 19:27:13.077399 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 4 United States US New York US-NY Chemung US-NY-015 28.0 Big Flats Trail--East L1404014 H 42.1456056 -76.90781729999999 2015-01-15 08:53:00 obsr49925 S21430567 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293293602 2021-03-24 19:27:13.077399 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-25 10:35:00 obsr49925 S21546098 Traveling P22 EBIRD 26.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289849125 2021-03-24 19:27:13.077399 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-04 09:13:00 obsr49925 S21251622 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315227074 2021-03-26 06:13:28.501496 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.17525560000001 -76.8558787 2015-01-23 08:15:00 obsr380390 S23195354 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290331289 2015-01-11 00:06:26 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail Fields L2372364 P 42.212377 -76.840805 2015-01-10 11:08:00 obsr142856 S21291034 Traveling P22 EBIRD 8.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315226256 2021-03-26 06:13:28.501496 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 4 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.17525560000001 -76.8558787 2015-01-02 09:30:00 obsr380390 S23195318 Stationary P21 EBIRD 100.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290559604 2021-03-24 19:27:13.077399 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-11 09:34:00 obsr49925 S21309168 Traveling P22 EBIRD 25.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288683414 2018-08-04 16:52:34 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 9 United States US New York US-NY Chemung US-NY-015 28.0 West Elmira Riverine Forest--West L292122 H 42.0745153 -76.8522876 2015-01-03 07:54:00 obsr500511 S21157404 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289646222 2021-03-24 19:27:13.077399 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-05 09:14:00 obsr49925 S21235900 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293682331 2015-01-28 10:15:14 483 species avibase-85625D75 Mallard Anas platyrhynchos 16 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-28 08:04:00 obsr49925 S21577258 Traveling P22 EBIRD 31.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290164959 2015-01-10 12:08:47 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-09 08:32:00 obsr49925 S21277253 Traveling P22 EBIRD 38.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289849732 2018-06-21 21:45:47 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 11 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP--Northeast Loop L1458234 H 42.2172242 -76.8368658 2015-01-03 08:01:00 obsr49925 S21251672 Traveling P22 EBIRD 54.0 1.336 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289474385 2021-03-24 19:27:13.077399 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-06 10:00:00 obsr49925 S21222021 Traveling P22 EBIRD 33.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294076536 2015-01-30 23:15:20 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-30 07:14:00 obsr49925 S21608542 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294278911 2018-08-04 16:55:17 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Holiday Inn L160744 H 42.08827 -76.79419 2015-01-25 15:54:00 obsr142856 S21624323 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294279911 2018-08-04 16:55:32 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Chemung US-NY-015 28.0 Riverfront Park--East L160700 H 42.08786 -76.80247 2015-01-31 15:30:00 obsr142856 S21624398 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289646283 2021-04-01 10:51:50.668112 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 135 United States US New York US-NY Chemung US-NY-015 28.0 Riverfront Park--East L160700 H 42.08786 -76.80247 2015-01-04 15:28:00 obsr49925 S21235906 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289215705 2015-01-05 00:35:50 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Chemung US-NY-015 28.0 McCauley Ave V Elmira Heights L3267641 P 42.125999 -76.813343 2015-01-03 11:51:00 obsr142856 S21201639 Traveling P22 EBIRD 1.0 0.644 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288987894 2021-04-01 10:51:50.668112 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Chemung US-NY-015 28.0 Woodlawn Cemetery L3264708 P 42.1067218 -76.82790759999999 2015-01-03 11:00:00 obsr339506 S21183852 Traveling P22 EBIRD 31.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289870418 2021-03-24 19:27:13.077399 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 7 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-03 13:46:00 obsr49925 S21253345 Stationary P21 EBIRD 74.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290331663 2015-01-11 00:09:41 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 9 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP West Parking Lot L2753176 P 42.213698 -76.842365 2015-01-10 11:16:00 obsr142856 S21291061 Traveling P22 EBIRD 3.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288631597 2017-08-16 16:10:34 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY Chemung US-NY-015 28.0 Dann Blvd L1030485 H 42.239432 -76.8013752 2015-01-02 12:50:00 obsr49925 S21153665 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289425429 2021-03-19 16:10:30.527219 483 species avibase-85625D75 Mallard Anas platyrhynchos 196 United States US New York US-NY Chemung US-NY-015 28.0 Dike s of Dunn Field L3270095 P 42.071223 -76.777523 2015-01-03 13:30:00 obsr142856 S21218095 Traveling P22 EBIRD 120.0 3.862 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292788738 2021-04-01 10:51:50.668112 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-21 08:43:00 obsr49925 S21506591 Traveling P22 EBIRD 33.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082699 2021-03-24 19:27:13.077399 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Chemung US-NY-015 28.0 Big Flats Trail--East L1404014 H 42.1456056 -76.90781729999999 2015-01-17 11:00:00 obsr49925 S21430580 Traveling P22 EBIRD 33.0 0.322 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290332132 2018-08-04 16:53:02 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Dam L160699 H 42.0864692 -76.8096739 2015-01-10 13:27:00 obsr142856 S21291106 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290623317 2021-03-24 19:27:13.077399 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-12 08:55:00 obsr49925 S21314032 Traveling P22 EBIRD 33.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288989968 2015-01-04 11:27:06 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 165 United States US New York US-NY Chemung US-NY-015 28.0 N Hoffman Rd Elmira Heights L3264733 P 42.11991870000001 -76.8448162 2015-01-03 14:44:00 obsr339506 S21184002 Traveling P22 EBIRD 22.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289849892 2016-07-06 11:50:49 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 2 United States US New York US-NY Chemung US-NY-015 28.0 Dann Blvd L1030485 H 42.239432 -76.8013752 2015-01-03 11:07:00 obsr49925 S21251692 Traveling P22 EBIRD 26.0 2.012 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288630128 2021-03-24 19:27:13.077399 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-02 09:35:00 obsr49925 S21153546 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082876 2015-01-20 07:54:36 26890 species avibase-94A44032 European Starling Sturnus vulgaris 9 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-15 09:54:00 obsr49925 S21430590 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290164478 2021-03-24 19:27:13.077399 591 species avibase-1929E1E1 Canvasback Aythya valisineria 12 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-10 08:34:00 obsr49925 S21277196 Stationary P21 EBIRD 41.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307081459 2015-04-03 00:21:37 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Chemung US-NY-015 28.0 West Water Street T Elmira L292280 P 42.0781273 -76.839993 2015-01-01 15:45:00 obsr142856 S22653720 Traveling P22 EBIRD 5.0 0.29 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082707 2021-03-24 19:27:13.077399 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Chemung US-NY-015 28.0 Big Flats Trail--East L1404014 H 42.1456056 -76.90781729999999 2015-01-17 11:00:00 obsr49925 S21430580 Traveling P22 EBIRD 33.0 0.322 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288989139 2021-03-24 19:27:13.077399 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chemung US-NY-015 28.0 Halderman Hollow Rd L3264673 P 42.13931 -76.8686342 2015-01-03 12:58:00 obsr339506 S21183957 Traveling P22 EBIRD 94.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291977332 2021-03-24 19:27:13.077399 662 species avibase-FB738385 Bufflehead Bucephala albeola 90 United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-01-19 12:00:00 obsr28914 S21422388 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082775 2021-03-24 19:27:13.077399 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Chemung US-NY-015 28.0 Big Flats Trail L267718 H 42.1451205 -76.909635 2015-01-15 09:24:00 obsr49925 S21430586 Traveling P22 EBIRD 16.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290870890 2015-01-13 17:15:30 592 species avibase-3072CC16 Redhead Aythya americana 19 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-13 09:20:00 obsr49925 S21334430 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290559611 2021-03-24 19:27:13.077399 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 8 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-11 09:34:00 obsr49925 S21309168 Traveling P22 EBIRD 25.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289204275 2021-03-24 19:27:13.077399 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 13 United States US New York US-NY Chemung US-NY-015 28.0 Horseheads Dump L372311 P 42.1496122 -76.8287873 2015-01-03 07:12:00 obsr142856 S21200771 Traveling P22 EBIRD 113.0 2.092 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288630211 2021-03-24 19:27:13.077399 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 9 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-01 14:18:00 obsr49925 S21153555 Traveling P22 EBIRD 26.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289849005 2021-03-24 19:27:13.077399 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 19 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-08 08:33:00 obsr49925 S21251604 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082453 2021-03-24 19:27:13.077399 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 3 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-18 09:11:00 obsr49925 S21430560 Traveling P22 EBIRD 18.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288631434 2018-06-21 21:43:16 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP--East Loop L1458265 H 42.2136179 -76.83333590000001 2015-01-02 11:14:00 obsr49925 S21153649 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294076542 2015-01-30 23:15:20 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 12 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-30 07:14:00 obsr49925 S21608542 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289474392 2021-03-24 19:27:13.077399 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-06 10:00:00 obsr49925 S21222021 Traveling P22 EBIRD 33.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293682339 2015-01-28 10:15:14 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-28 08:04:00 obsr49925 S21577258 Traveling P22 EBIRD 31.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289646232 2021-03-24 19:27:13.077399 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 24 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-05 09:14:00 obsr49925 S21235900 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289870427 2021-03-24 19:27:13.077399 26890 species avibase-94A44032 European Starling Sturnus vulgaris 14 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-03 13:46:00 obsr49925 S21253345 Stationary P21 EBIRD 74.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082759 2021-03-24 19:27:13.077399 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-17 15:28:00 obsr49925 S21430583 Traveling P22 EBIRD 18.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292991828 2015-01-24 18:30:04 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-24 09:55:00 obsr49925 S21522478 Traveling P22 EBIRD 35.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292788791 2021-03-24 19:27:13.077399 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-20 08:19:00 obsr49925 S21506595 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290331287 2015-01-11 00:06:26 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail Fields L2372364 P 42.212377 -76.840805 2015-01-10 11:08:00 obsr142856 S21291034 Traveling P22 EBIRD 8.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289421620 2021-03-26 06:13:28.501496 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Chemung US-NY-015 28.0 E 9th St V Elmira Heights L3270049 P 42.125463 -76.821093 2015-01-03 13:13:00 obsr142856 S21217779 Traveling P22 EBIRD 3.0 0.322 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293492024 2021-03-24 19:27:13.077399 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 11 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-26 16:10:00 obsr49925 S21562296 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290330619 2018-08-04 16:53:00 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail East Woods L2372368 P 42.210721 -76.837918 2015-01-10 10:13:00 obsr142856 S21290978 Traveling P22 EBIRD 55.0 1.4480000000000002 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082154 2021-03-24 19:27:13.077399 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-19 12:15:00 obsr49925 S21430531 Traveling P22 EBIRD 40.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293491857 2015-01-26 23:47:14 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 11 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-26 07:44:00 obsr49925 S21562288 Traveling P22 EBIRD 21.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289210692 2021-03-19 16:10:30.527219 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 9 United States US New York US-NY Chemung US-NY-015 28.0 Eldridge Trail L319530 P 42.1177453 -76.81043079999999 2015-01-03 10:00:00 obsr142856 S21201232 Traveling P22 EBIRD 50.0 1.4480000000000002 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288630137 2021-03-24 19:27:13.077399 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 10 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-02 09:35:00 obsr49925 S21153546 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082881 2015-01-20 07:54:36 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-15 09:54:00 obsr49925 S21430590 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294262592 2021-03-24 19:27:13.077399 681 species avibase-407E2CA8 Common Merganser Mergus merganser 16 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-31 10:46:00 obsr49925 S21623175 Traveling P22 EBIRD 36.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294076412 2021-03-24 19:27:13.077399 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 7 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-29 09:03:00 obsr49925 S21608527 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293536213 2021-03-24 19:27:13.077399 30494 species avibase-240E3390 House Sparrow Passer domesticus 14 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-27 10:24:00 obsr49925 S21565839 Traveling P22 EBIRD 22.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292788684 2015-01-23 16:06:17 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-22 08:17:00 obsr49925 S21506586 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307067759 2021-03-26 06:13:28.501496 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chemung US-NY-015 28.0 West Elmira Riverine Forest--East L292119 H 42.07583220000001 -76.8353493 2015-01-01 12:16:00 obsr142856 S22652773 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290004139 2021-03-26 06:13:28.501496 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 4 United States US New York US-NY Chemung US-NY-015 28.0 Chambers Road L3279517 P 42.2251955 -76.8933105 2015-01-09 07:20:00 obsr618227 S21264231 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991220 2021-03-24 19:27:13.077399 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 10 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-14 08:50:00 obsr49925 S21343828 Traveling P22 EBIRD 34.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289849566 2018-06-21 21:43:16 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 7 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP--East Loop L1458265 H 42.2136179 -76.83333590000001 2015-01-03 09:24:00 obsr49925 S21251663 Traveling P22 EBIRD 51.0 2.092 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082563 2021-03-24 19:27:13.077399 20294 species avibase-76158864 Northern Shrike Lanius borealis 5 United States US New York US-NY Chemung US-NY-015 28.0 Big Flats Trail--East L1404014 H 42.1456056 -76.90781729999999 2015-01-15 08:53:00 obsr49925 S21430567 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289848963 2021-03-24 19:27:13.077399 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 11 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-07 10:02:00 obsr49925 S21251602 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290164963 2015-01-10 12:08:47 662 species avibase-FB738385 Bufflehead Bucephala albeola 11 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-09 08:32:00 obsr49925 S21277253 Traveling P22 EBIRD 38.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288205505 2021-03-24 19:27:13.077399 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-01 10:11:00 obsr49925 S21117997 Stationary P21 EBIRD 48.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290164149 2021-03-24 19:27:13.077399 681 species avibase-407E2CA8 Common Merganser Mergus merganser 17 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-10 10:16:00 obsr49925 S21277166 Traveling P22 EBIRD 31.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290623324 2021-03-24 19:27:13.077399 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-12 08:55:00 obsr49925 S21314032 Traveling P22 EBIRD 33.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292788541 2021-03-24 19:27:13.077399 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 5 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-23 07:53:00 obsr49925 S21506571 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292788746 2021-04-01 10:51:50.668112 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-21 08:43:00 obsr49925 S21506591 Traveling P22 EBIRD 33.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293293610 2021-03-24 19:27:13.077399 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 14 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-25 10:35:00 obsr49925 S21546098 Traveling P22 EBIRD 26.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291967091 2021-04-01 10:51:50.668112 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Chemung US-NY-015 28.0 Coldbrook Creek at bridge on Laurentian Place, Southport, NY L3017069 P 42.0645633 -76.7879373 2015-01-18 12:00:00 obsr37567 S21421541 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289849134 2021-03-24 19:27:13.077399 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 14 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-04 09:13:00 obsr49925 S21251622 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289849739 2018-06-21 21:45:47 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 10 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP--Northeast Loop L1458234 H 42.2172242 -76.8368658 2015-01-03 08:01:00 obsr49925 S21251672 Traveling P22 EBIRD 54.0 1.336 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294262586 2021-03-24 19:27:13.077399 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-31 10:46:00 obsr49925 S21623175 Traveling P22 EBIRD 36.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289849734 2018-06-21 21:45:47 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP--Northeast Loop L1458234 H 42.2172242 -76.8368658 2015-01-03 08:01:00 obsr49925 S21251672 Traveling P22 EBIRD 54.0 1.336 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289204272 2021-03-24 19:27:13.077399 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Chemung US-NY-015 28.0 Horseheads Dump L372311 P 42.1496122 -76.8287873 2015-01-03 07:12:00 obsr142856 S21200771 Traveling P22 EBIRD 113.0 2.092 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289849894 2016-07-06 11:50:49 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 20 United States US New York US-NY Chemung US-NY-015 28.0 Dann Blvd L1030485 H 42.239432 -76.8013752 2015-01-03 11:07:00 obsr49925 S21251692 Traveling P22 EBIRD 26.0 2.012 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294262587 2021-03-24 19:27:13.077399 6616 species avibase-7E022378 Common Loon Gavia immer 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-31 10:46:00 obsr49925 S21623175 Traveling P22 EBIRD 36.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289849736 2018-06-21 21:45:47 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP--Northeast Loop L1458234 H 42.2172242 -76.8368658 2015-01-03 08:01:00 obsr49925 S21251672 Traveling P22 EBIRD 54.0 1.336 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291977340 2021-03-24 19:27:13.077399 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-01-19 12:00:00 obsr28914 S21422388 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082771 2021-03-24 19:27:13.077399 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 8 United States US New York US-NY Chemung US-NY-015 28.0 Big Flats Trail L267718 H 42.1451205 -76.909635 2015-01-15 09:24:00 obsr49925 S21430586 Traveling P22 EBIRD 16.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290331933 2021-03-26 06:13:28.501496 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Chemung US-NY-015 28.0 Sugar 'N Spice Restaurant L321121 P 42.1725583 -76.8255559 2015-01-10 11:30:00 obsr142856 S21291091 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288989140 2021-03-24 19:27:13.077399 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Chemung US-NY-015 28.0 Halderman Hollow Rd L3264673 P 42.13931 -76.8686342 2015-01-03 12:58:00 obsr339506 S21183957 Traveling P22 EBIRD 94.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289210695 2021-03-19 16:10:30.527219 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Chemung US-NY-015 28.0 Eldridge Trail L319530 P 42.1177453 -76.81043079999999 2015-01-03 10:00:00 obsr142856 S21201232 Traveling P22 EBIRD 50.0 1.4480000000000002 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288632192 2021-03-19 16:10:30.527219 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chemung US-NY-015 28.0 Smith Rd. (East) Fields, Veteran L3259562 P 42.22927 -76.81358399999999 2015-01-02 12:45:00 obsr49925 S21153711 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290164142 2021-03-24 19:27:13.077399 30494 species avibase-240E3390 House Sparrow Passer domesticus 21 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-10 10:16:00 obsr49925 S21277166 Traveling P22 EBIRD 31.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293682332 2015-01-28 10:15:14 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-28 08:04:00 obsr49925 S21577258 Traveling P22 EBIRD 31.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307083589 2021-03-19 16:10:30.527219 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Chemung US-NY-015 28.0 C.R. 64 Big Flats L285739 P 42.1404045 -76.90907309999999 2015-01-01 16:13:00 obsr142856 S22653901 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293293604 2021-03-24 19:27:13.077399 505 species avibase-C732CB10 American Black Duck Anas rubripes 18 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-25 10:35:00 obsr49925 S21546098 Traveling P22 EBIRD 26.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082449 2021-03-24 19:27:13.077399 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 9 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-18 09:11:00 obsr49925 S21430560 Traveling P22 EBIRD 18.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292788785 2021-03-24 19:27:13.077399 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 11 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-20 08:19:00 obsr49925 S21506595 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315227080 2021-03-26 06:13:28.501496 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.17525560000001 -76.8558787 2015-01-23 08:15:00 obsr380390 S23195354 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991213 2021-03-24 19:27:13.077399 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 8 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-14 08:50:00 obsr49925 S21343828 Traveling P22 EBIRD 34.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289848998 2021-03-24 19:27:13.077399 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 15 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-08 08:33:00 obsr49925 S21251604 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289849127 2021-03-24 19:27:13.077399 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 11 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-04 09:13:00 obsr49925 S21251622 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290870885 2015-01-13 17:15:30 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 8 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-13 09:20:00 obsr49925 S21334430 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288989147 2021-03-24 19:27:13.077399 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 12 United States US New York US-NY Chemung US-NY-015 28.0 Halderman Hollow Rd L3264673 P 42.13931 -76.8686342 2015-01-03 12:58:00 obsr339506 S21183957 Traveling P22 EBIRD 94.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294076537 2015-01-30 23:15:20 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-30 07:14:00 obsr49925 S21608542 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289474386 2021-03-24 19:27:13.077399 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 12 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-06 10:00:00 obsr49925 S21222021 Traveling P22 EBIRD 33.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289204266 2021-03-24 19:27:13.077399 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 5 United States US New York US-NY Chemung US-NY-015 28.0 Horseheads Dump L372311 P 42.1496122 -76.8287873 2015-01-03 07:12:00 obsr142856 S21200771 Traveling P22 EBIRD 113.0 2.092 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290164473 2021-03-24 19:27:13.077399 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-10 08:34:00 obsr49925 S21277196 Stationary P21 EBIRD 41.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289646224 2021-03-24 19:27:13.077399 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-05 09:14:00 obsr49925 S21235900 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307082240 2021-03-26 06:13:28.501496 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Chemung US-NY-015 28.0 Westmont Ave T Elmira n of home L2452895 P 42.076695 -76.842075 2015-01-01 15:50:00 obsr142856 S22653789 Traveling P22 EBIRD 5.0 0.145 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307075525 2015-04-02 23:27:59 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Chemung US-NY-015 28.0 West Elmira Riverine Forest--West L292122 H 42.0745153 -76.8522876 2015-01-01 12:26:00 obsr142856 S22653340 Traveling P22 EBIRD 17.0 0.6759999999999999 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292992171 2021-03-24 19:27:13.077399 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-23 16:10:00 obsr49925 S21522505 Traveling P22 EBIRD 32.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082558 2021-03-24 19:27:13.077399 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Chemung US-NY-015 28.0 Big Flats Trail--East L1404014 H 42.1456056 -76.90781729999999 2015-01-15 08:53:00 obsr49925 S21430567 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082877 2015-01-20 07:54:36 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 8 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-15 09:54:00 obsr49925 S21430590 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290327190 2015-01-10 23:33:49 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail Fields L2372364 P 42.212377 -76.840805 2015-01-10 10:03:00 obsr142856 S21290711 Traveling P22 EBIRD 10.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291967094 2021-04-01 10:51:50.668112 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 11 United States US New York US-NY Chemung US-NY-015 28.0 Coldbrook Creek at bridge on Laurentian Place, Southport, NY L3017069 P 42.0645633 -76.7879373 2015-01-18 12:00:00 obsr37567 S21421541 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292948437 2018-08-04 16:54:57 505 species avibase-C732CB10 American Black Duck Anas rubripes 7 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail East Woods L2372368 P 42.210721 -76.837918 2015-01-24 08:15:00 obsr142856 S21519295 Traveling P22 EBIRD 86.0 1.4480000000000002 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315226248 2021-03-26 06:13:28.501496 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.17525560000001 -76.8558787 2015-01-02 09:30:00 obsr380390 S23195318 Stationary P21 EBIRD 100.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288631430 2018-06-21 21:43:16 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP--East Loop L1458265 H 42.2136179 -76.83333590000001 2015-01-02 11:14:00 obsr49925 S21153649 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293536205 2021-03-24 19:27:13.077399 505 species avibase-C732CB10 American Black Duck Anas rubripes 12 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-27 10:24:00 obsr49925 S21565839 Traveling P22 EBIRD 22.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290331288 2015-01-11 00:06:26 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail Fields L2372364 P 42.212377 -76.840805 2015-01-10 11:08:00 obsr142856 S21291034 Traveling P22 EBIRD 8.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290623318 2021-03-24 19:27:13.077399 20829 species avibase-B9B272F4 Common Raven Corvus corax 6 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-12 08:55:00 obsr49925 S21314032 Traveling P22 EBIRD 33.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288630129 2021-03-24 19:27:13.077399 483 species avibase-85625D75 Mallard Anas platyrhynchos 14 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-02 09:35:00 obsr49925 S21153546 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290164960 2015-01-10 12:08:47 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-09 08:32:00 obsr49925 S21277253 Traveling P22 EBIRD 38.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292991822 2015-01-24 18:30:04 681 species avibase-407E2CA8 Common Merganser Mergus merganser 11 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-24 09:55:00 obsr49925 S21522478 Traveling P22 EBIRD 35.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289848957 2021-03-24 19:27:13.077399 622 species avibase-50566E50 Lesser Scaup Aythya affinis 9 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-07 10:02:00 obsr49925 S21251602 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290559605 2021-03-24 19:27:13.077399 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 9 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-11 09:34:00 obsr49925 S21309168 Traveling P22 EBIRD 25.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082751 2021-03-24 19:27:13.077399 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 13 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-17 15:28:00 obsr49925 S21430583 Traveling P22 EBIRD 18.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289849733 2018-06-21 21:45:47 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP--Northeast Loop L1458234 H 42.2172242 -76.8368658 2015-01-03 08:01:00 obsr49925 S21251672 Traveling P22 EBIRD 54.0 1.336 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292788533 2021-03-24 19:27:13.077399 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 12 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-23 07:53:00 obsr49925 S21506571 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288986424 2021-03-19 16:10:30.527219 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Chemung US-NY-015 28.0 Boces - Bush Campus in Elmira L2583687 H 42.150709 -76.839781 2015-01-03 07:05:00 obsr339506 S21183692 Traveling P22 EBIRD 120.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307080809 2015-04-03 00:11:47 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Chemung US-NY-015 28.0 Westmont Ave T Elmira n of home L2452895 P 42.076695 -76.842075 2015-01-01 15:42:00 obsr142856 S22653673 Traveling P22 EBIRD 3.0 0.225 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293492019 2021-03-24 19:27:13.077399 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-26 16:10:00 obsr49925 S21562296 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288630205 2021-03-24 19:27:13.077399 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-01 14:18:00 obsr49925 S21153555 Traveling P22 EBIRD 26.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307078486 2015-04-02 23:51:54 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Chemung US-NY-015 28.0 Home L284346 P 42.0761071 -76.8417294 2015-01-01 15:41:00 obsr142856 S22653527 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289421623 2021-03-26 06:13:28.501496 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chemung US-NY-015 28.0 E 9th St V Elmira Heights L3270049 P 42.125463 -76.821093 2015-01-03 13:13:00 obsr142856 S21217779 Traveling P22 EBIRD 3.0 0.322 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292899234 2015-01-24 11:56:54 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-01-24 11:13:00 obsr28914 S21515507 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288769365 2015-01-03 15:02:42 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Chemung US-NY-015 28.0 42.1045 X -76.8766 L3261553 P 42.10452 -76.87665 2015-01-03 14:07:00 obsr500511 S21164527 Traveling P22 EBIRD 55.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288205497 2021-03-24 19:27:13.077399 26109 species avibase-BAC33609 Brown Creeper Certhia americana 13 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-01 10:11:00 obsr49925 S21117997 Stationary P21 EBIRD 48.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082769 2021-03-24 19:27:13.077399 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Chemung US-NY-015 28.0 Big Flats Trail L267718 H 42.1451205 -76.909635 2015-01-15 09:24:00 obsr49925 S21430586 Traveling P22 EBIRD 16.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292788739 2021-04-01 10:51:50.668112 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 9 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-21 08:43:00 obsr49925 S21506591 Traveling P22 EBIRD 33.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290330620 2018-08-04 16:53:00 6339 species avibase-8535345B Herring Gull Larus argentatus 7 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail East Woods L2372368 P 42.210721 -76.837918 2015-01-10 10:13:00 obsr142856 S21290978 Traveling P22 EBIRD 55.0 1.4480000000000002 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289425424 2021-03-19 16:10:30.527219 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY Chemung US-NY-015 28.0 Dike s of Dunn Field L3270095 P 42.071223 -76.777523 2015-01-03 13:30:00 obsr142856 S21218095 Traveling P22 EBIRD 120.0 3.862 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289849558 2018-06-21 21:43:16 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 17 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP--East Loop L1458265 H 42.2136179 -76.83333590000001 2015-01-03 09:24:00 obsr49925 S21251663 Traveling P22 EBIRD 51.0 2.092 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288987268 2021-03-26 06:13:28.501496 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Chemung US-NY-015 28.0 Whennex rd Subdivision to Cohen School L3264692 P 42.1251792 -76.8276072 2015-01-03 09:40:00 obsr339506 S21183782 Traveling P22 EBIRD 75.0 20.921 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292788680 2015-01-23 16:06:17 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-22 08:17:00 obsr49925 S21506586 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289210687 2021-03-19 16:10:30.527219 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Chemung US-NY-015 28.0 Eldridge Trail L319530 P 42.1177453 -76.81043079999999 2015-01-03 10:00:00 obsr142856 S21201232 Traveling P22 EBIRD 50.0 1.4480000000000002 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293293593 2020-06-22 14:18:48 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP--Ek Birding Trail L2888425 H 42.2128769 -76.8451113 2015-01-25 14:12:00 obsr49925 S21546096 Traveling P22 EBIRD 33.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294262583 2021-03-24 19:27:13.077399 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 12 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.85977940000001 2015-01-31 10:46:00 obsr49925 S21623175 Traveling P22 EBIRD 36.0 0.322 2.0 1 0 1 0 diff --git a/tests/mocked/small1.txt b/tests/mocked/small1.txt new file mode 100644 index 0000000..0fe5bd1 --- /dev/null +++ b/tests/mocked/small1.txt @@ -0,0 +1,10001 @@ +global_unique_identifier last_edited_date taxonomic_order category taxon_concept_id common_name scientific_name subspecies_common_name subspecies_scientific_name exotic_code observation_count breeding_code breeding_category behavior_code age_sex country country_code state state_code county county_code iba_code bcr_code usfws_code atlas_block locality locality_id locality_type latitude longitude observation_date time_observations_started observer_id sampling_event_identifier protocol_type protocol_code project_code duration_minutes effort_distance_km effort_area_ha number_observers all_species_reported group_identifier has_media approved reviewed reason trip_comments species_comments +URN:CornellLabOfOrnithology:EBIRD:OBS305336688 2015-03-25 21:56:02 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 5 United States US New York US-NY Fulton US-NY-035 13.0 Fulton County Landfill L2600909 P 43.0130653 -74.4762325 2015-03-25 15:30:00 obsr1708031 S22521149 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301636994 2021-03-17 20:40:01.119925 657 species avibase-B7B1A5DD Black Scoter Melanitta americana X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-08 11:37:00 obsr1419875 S22227651 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312783485 2021-03-24 20:33:47.533911 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 13.0 Nate's Patch--Bluegrass to Hanshaw to Freese L1006570 P 42.4655757 -76.4526987 2015-04-25 09:41:00 obsr1062070 S23047174 Traveling P22 EBIRD 158.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307119350 2021-04-01 11:30:42.037277 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-01 15:45:00 obsr2598985 S22656640 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316851524 2015-05-07 12:37:05 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-07 09:15:00 obsr1534851 S23286566 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314906556 2021-04-01 10:51:06.899622 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Watts Flats WMA L490893 H 42.0350422 -79.4263016 2015-05-02 07:25:00 obsr2910282 S23177430 Traveling P22 EBIRD 130.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319852173 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-15 05:45:00 obsr1433400 S23455609 Traveling P22 EBIRD 195.0 4.007 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307290304 2021-11-09 21:57:30.391586 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Ulster US-NY-111 13.0 Hurley, 1637 Hurley Mountain Road L3535911 P 41.92469 -74.08275 2015-04-03 17:30:00 obsr1446126 S22668766 Stationary P21 EBIRD 45.0 2.0 1 G1203333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296161314 2021-11-09 21:23:47.89824 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata 3 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-11 16:00:00 obsr2568221 S21773801 Stationary P21 EBIRD 90.0 3.0 0 G1144498 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315398796 2021-03-26 06:07:26.162322 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Allegany US-NY-003 28.0 Cuba Lake L1326387 H 42.2508599 -78.2923025 2015-05-03 12:45:00 obsr2933610 S23204075 Traveling P22 EBIRD 45.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318715838 2021-03-30 06:01:28.020715 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-06 08:35:00 obsr753816 S23390033 Traveling P22 EBIRD 125.0 3.38 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312078463 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-22 07:55:00 obsr1516787 S22998674 Traveling P22 EBIRD 210.0 4.41 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312496901 2015-04-24 10:11:23 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Saratoga US-NY-091 13.0 Nolan Rd Boat Launch area L2850346 P 43.2708588 -73.6607444 2015-04-24 07:55:00 obsr2943723 S23026983 Traveling P22 EBIRD 45.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311039743 2021-03-23 16:48:08.60516 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-18 09:51:00 obsr241086 S22931939 Traveling P22 EBIRD 50.0 0.322 1.0 1 G1224764 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320879957 2018-08-04 17:27:54 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Chemung US-NY-015 28.0 Sullivanville Dam L312295 H 42.1930881 -76.7819872 2015-05-18 11:00:00 obsr1092576 S23511238 Traveling P22 EBIRD 13.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292125428 2021-03-26 06:55:00.227271 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-01-20 12:38:00 obsr606693 S21434083 Traveling P22 EBIRD 14.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313991728 2021-03-26 06:29:56.44369 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-04-29 07:43:00 obsr2678807 S23122006 Traveling P22 EBIRD 43.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308227886 2015-04-07 10:52:49 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-04-04 17:49:00 obsr1334267 S22736516 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305609194 2021-04-22 12:55:05.75868 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Oneida US-NY-065 13.0 Waterville Home Grounds L1257983 P 42.9688865 -75.3351134 2015-03-27 11:00:00 obsr2139704 S22542448 Traveling P22 EBIRD 135.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000213 2021-03-26 07:56:20.588749 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 7 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-01 16:00:00 obsr2218212 S23775899 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309952093 2015-04-14 10:45:46 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Vesper Sparrow fields L1740241 P 43.220789 -76.421831 2015-04-14 10:30:00 obsr2172593 S22858674 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305221508 2021-03-26 07:30:35.289997 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 14 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-25 07:47:00 obsr1655171 S22512179 Traveling P22 EBIRD 64.0 0.483 2.0 1 G1194527 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304042587 2018-08-04 17:01:59 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Seneca US-NY-099 13.0 Sheldrake Point L99384 H 42.6658357 -76.6997626 2015-03-19 13:12:00 obsr354090 S22422542 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308745719 2021-04-01 11:47:43.260314 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Oswego US-NY-075 13.0 Derby Hill Bird Observatory L982887 P 43.5273932 -76.2341309 2015-04-09 11:00:00 obsr979921 S22776212 Stationary P21 EBIRD 300.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293166161 2021-03-01 11:20:54.007808 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-25 15:17:00 obsr1092576 S21536272 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288440818 2021-03-26 07:20:31.408164 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Suffolk US-NY-103 30.0 Home L1525287 P 40.8112246 -73.1320357 2015-01-02 10:22:00 obsr2448785 S21137376 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292767802 2021-04-01 11:24:19.637193 5891 species avibase-DC3050A9 Ruddy Turnstone Arenaria interpres 120 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-21 13:15:00 obsr294236 S21504886 Traveling P22 EBIRD 45.0 0.322 2.0 1 G1120229 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319553909 2021-11-15 03:06:58.889978 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 3 Male, Adult (3) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-14 06:28:00 obsr642993 S23438673 Traveling P22 EBIRD 265.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297572243 2021-03-23 16:47:03.540174 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 2 United States US New York US-NY Schenectady US-NY-093 13.0 Karenwald L2635899 P 42.800376 -73.9004481 2015-02-16 12:15:00 obsr634949 S21900042 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320715112 2021-04-01 11:30:42.037277 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-10 07:00:00 obsr2235775 S23501207 Traveling P22 EBIRD 180.0 3.219 16.0 1 G1275937 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311552500 2018-08-04 17:11:22 26109 species avibase-BAC33609 Brown Creeper Certhia americana 3 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-04-20 09:58:00 obsr1565981 S22963484 Traveling P22 EBIRD 65.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322796187 2021-06-10 13:56:09.754681 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Monroe US-NY-055 13.0 Rush Oak Openings Preserve L122970 H 42.9625 -77.67278 2015-05-25 09:30:00 obsr1030861 S23627031 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292472272 2021-01-26 14:30:31.740863 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--CR 25 X Outlet Creek [Clifton Springs_NE] L1078648 P 42.9754531 -77.1413183 2015-01-21 12:22:00 obsr606693 S21481638 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319200347 2021-03-24 20:58:04.794277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-05-12 16:00:00 obsr1680059 S23418254 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308347321 2022-03-05 22:03:50.715584 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 14 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-07 18:05:00 obsr1544235 S22745383 Traveling P22 EBIRD 60.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302351182 2021-04-01 11:30:42.037277 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-10 11:00:00 obsr2319444 S22290410 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293992471 2015-02-01 12:38:33 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Main Pool (West Side Overlook) L767028 H 42.9747388 -76.7707336 2015-01-30 09:01:00 obsr1655171 S21601793 Incidental P20 EBIRD 2.0 0 G1131413 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294811173 2021-03-26 06:29:56.44369 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 3 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-03 17:37:00 obsr934639 S21667057 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306762147 2021-04-01 12:32:15.282601 7429 species avibase-1327AC55 Osprey Pandion haliaetus 15 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-27 09:00:00 obsr2218212 S22629550 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300869429 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-03-03 15:20:00 obsr2270510 S22169397 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308419864 2016-09-06 17:36:51 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 35 United States US New York US-NY Allegany US-NY-003 28.0 Browns Marsh L2764855 H 42.1359887 -77.9052973 2015-04-07 16:50:00 obsr2700440 S22750914 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323260977 2021-11-15 03:06:58.889978 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-25 10:10:00 obsr1706920 S23656808 Traveling P22 EBIRD 200.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301889522 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-03-08 13:00:00 obsr609516 S22248213 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306829618 2021-03-30 19:07:52.958398 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-01 14:20:00 obsr2363365 S22634699 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309964008 2021-03-23 17:32:20.03109 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-04-14 09:45:00 obsr660214 S22859458 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308375905 2021-04-01 11:15:31.646886 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-07 16:30:00 obsr2750470 S22747467 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303175403 2015-03-14 23:06:49 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus 1 United States US New York US-NY New York US-NY-061 Randalls Island--Backstop 46 vicinity L3137339 P 40.7974373 -73.9176464 2015-03-14 17:25:00 obsr856524 S22354305 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322631732 2021-03-19 16:44:35.607263 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 10 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-19 08:30:00 obsr334398 S23616927 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314263154 2021-11-15 03:06:58.889978 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-28 07:00:00 obsr570335 S23138686 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307161053 2016-05-30 13:10:40 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Seneca US-NY-099 13.0 Cove L678244 P 42.6487254 -76.8698493 2015-03-20 obsr2731440 S22659592 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317643467 2018-02-01 15:11:46 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor21 L3513963 H 42.6488131 -76.0917255 2015-05-09 15:44:00 obsr620377 S23332037 Stationary P21 EBIRD 15.0 2.0 1 G1272230 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322391619 2021-03-26 06:39:43.334073 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Greywacke Arch L2179946 H 40.7792619 -73.9657742 2015-05-22 08:13:00 obsr1548221 S23603522 Traveling P22 EBIRD 22.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299884428 2021-04-01 12:32:15.282601 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-02-27 10:30:00 obsr1489009 S22095006 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299531126 2021-03-26 07:42:06.558742 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 4 Female, Adult (4) United States US New York US-NY Washington US-NY-115 13.0 Towpath Rd--off Crowley Rd L2588719 P 43.3212043 -73.5277605 2015-02-25 08:50:00 obsr1222746 S22067299 Traveling P22 EBIRD 79.0 7.403 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300898992 2021-03-26 07:30:35.289997 26890 species avibase-94A44032 European Starling Sturnus vulgaris 97 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-04 12:18:00 obsr1696616 S22171626 Stationary P21 EBIRD 24.0 1.0 1 G1166506 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312769544 2015-04-25 11:39:59 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Richmond US-NY-085 US-NY-4499 Hylan Blvd L3588967 P 40.531337 -74.15688 2015-04-25 11:39:00 obsr1958124 S23046409 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305972887 2021-03-23 16:39:03.255227 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF--Snag Swamp L1473094 H 40.515363 -74.2213938 2015-03-29 08:43:00 obsr1958124 S22569651 Traveling P22 EBIRD 23.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311211546 2021-03-26 07:30:35.289997 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-19 11:09:00 obsr1062070 S22942373 Traveling P22 EBIRD 33.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295211592 2021-11-02 20:32:06.137153 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-02-06 12:30:00 obsr317968 S21698619 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298410292 2021-04-01 11:42:50.317679 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-02-17 10:45:00 obsr2892286 S21974178 Stationary P21 EBIRD 150.0 2.0 1 G1152652 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308343812 2021-04-01 12:32:15.282601 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-01 12:30:00 obsr2233270 S22745042 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300273695 2021-04-01 12:32:15.282601 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 7 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-28 10:30:00 obsr2555972 S22125920 Traveling P22 EBIRD 180.0 4.828 3.0 1 G1162300 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294429766 2021-03-23 17:26:08.495143 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-02-01 14:05:00 obsr916370 S21636253 Traveling P22 EBIRD 70.0 1.931 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304803328 2022-02-17 14:32:23.002448 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-22 15:00:00 obsr2180607 S22479654 Traveling P22 EBIRD 120.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316803204 2021-03-19 16:44:35.607263 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-07 09:04:00 obsr1958774 S23284097 Traveling P22 EBIRD 46.0 0.402 2.0 1 G1291694 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317469647 2021-03-26 07:56:20.588749 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-05-09 08:00:00 obsr1296638 S23321891 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301345923 2021-03-24 21:06:05.39641 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Onondaga US-NY-067 13.0 US-NY-Baldwinsville-8336-8412 County Rd 180 L3460645 P 43.174258 -76.397673 2015-03-07 09:05:00 obsr1092576 S22206017 Stationary P21 EBIRD 6.0 4.0 1 G1168629 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303767336 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-17 15:45:00 obsr2750470 S22400764 Traveling P22 EBIRD 120.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317192368 2021-04-01 11:30:42.037277 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY New York US-NY-061 30.0 Hudson River Park at Horatio Street L1770097 P 40.7387556 -74.0104131 2015-05-08 13:40:00 obsr2797341 S23305569 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323618975 2018-08-06 22:31:19 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Chemung US-NY-015 28.0 Sullivanville Dam L312295 H 42.1930881 -76.7819872 2015-05-28 18:08:00 obsr1092576 S23681108 Traveling P22 EBIRD 22.0 0.1 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292562002 2018-08-04 16:54:50 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L3036997 P 42.7755269 -73.6954093 2015-01-21 16:21:00 obsr2186523 S21488782 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304937159 2015-03-23 17:52:31 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Chemung US-NY-015 28.0 Horseheads, New York 13 and Interstate 86 L3502714 P 42.14956 -76.80755 2015-03-21 08:40:00 obsr2211210 S22490005 Incidental P20 EBIRD 2.0 0 G1187054 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309549813 2021-03-26 07:30:35.289997 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 30 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-12 18:30:00 obsr1006348 S22829825 Traveling P22 EBIRD 80.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298478165 2022-02-17 14:32:23.002448 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-19 14:15:00 obsr2363365 S21980624 Traveling P22 EBIRD 105.0 0.966 3.0 1 G1153068 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296790493 2021-11-09 22:04:47.967972 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-13 09:00:00 obsr2734682 S21830472 Stationary P21 EBIRD 390.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312436266 2021-03-24 20:33:47.533911 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 2 United States US New York US-NY Tompkins US-NY-109 13.0 206 Tareyton Drive, Ithaca L141039 P 42.471756 -76.4603653 2015-04-23 11:15:00 obsr620377 S23022926 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308082099 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Nassau US-NY-059 Mill Pond, Port Washington L1813608 H 40.8367848 -73.6986976 2015-04-06 17:00:00 obsr2480606 S22724974 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311924282 2021-06-18 15:46:16.584924 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Schoharie US-NY-095 28.0 Mine Kill SP--Lower NYPA Reservoir L1578594 H 42.4401863 -74.4532411 2015-04-21 09:48:00 obsr2846677 S22988626 Stationary P21 EBIRD 50.0 2.0 1 G1230556 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290248634 2018-08-04 16:53:02 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 17 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-01-10 14:09:00 obsr1893950 S21284386 Traveling P22 EBIRD 16.0 0.644 2.0 1 G1103709 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313365167 2021-03-26 06:21:08.096334 7200 species avibase-49D9148A Great Egret Ardea alba 3 United States US New York US-NY Jefferson US-NY-045 Kring Point SP L787951 H 44.378098 -75.8550806 2015-04-26 09:39:00 obsr1558090 S23081971 Traveling P22 EBIRD 49.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305907229 2021-03-26 06:12:17.833181 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-03-28 09:00:00 obsr479109 S22564907 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000812 2021-03-26 07:56:20.588749 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-13 09:00:00 obsr2218212 S23775918 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307339901 2021-03-23 16:39:03.255227 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Richmond US-NY-085 30.0 High Rock Park L300503 H 40.5840296 -74.1233772 2015-03-28 08:30:00 obsr1706920 S22672500 Traveling P22 EBIRD 200.0 3.219 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312109053 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 15 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-04-22 06:00:00 obsr2233143 S23000644 Area P23 EBIRD 480.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299355826 2021-03-26 06:52:34.887371 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 5 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-02-16 10:00:00 obsr2141910 S22054136 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313841251 2021-09-28 07:19:21.859968 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 S C2 S United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. E woods, SE swamp, PRIVATE (3176D) [Clifton Springs_NE] L1117697 P 42.9941601 -77.1554019 2015-04-28 14:08:00 obsr606693 S23112354 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002092 2021-04-01 12:26:53.827486 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 3 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-29 15:45:00 obsr119187 S21602552 Stationary P21 EBIRD 35.0 2.0 1 G1129180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308411918 2021-03-26 07:07:10.758746 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-08 07:20:00 obsr1958124 S22750130 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292957703 2019-03-04 17:55:09 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 10 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-01-24 08:30:00 obsr1918430 S21519970 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290250752 2021-03-26 07:52:59.845315 11371 species avibase-75600969 Northern Flicker Colaptes auratus N 5 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-10 07:30:00 obsr1000124 S21284542 Area P23 EBIRD 90.0 2.59 2.0 1 G1109828 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302018038 2015-03-09 14:58:07 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Bradfield Hall Cornell L1826966 P 42.447794 -76.476053 2015-03-09 14:53:00 obsr887540 S22257578 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309323067 2021-03-26 07:00:33.333856 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 4 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-04-12 08:28:00 obsr2574755 S22815500 Traveling P22 EBIRD 58.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311194007 2021-07-07 10:10:23.226504 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Tompkins US-NY-109 28.0 von Engeln Preserve (TNC) L123087 H 42.5350144 -76.3148224 2015-04-19 10:17:00 obsr1696616 S22941392 Traveling P22 EBIRD 29.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312638404 2021-03-19 16:02:45.308962 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Broome US-NY-007 28.0 murphys pit L3587710 P 42.101771 -76.0039705 2015-04-24 10:00:00 obsr1573028 S23037592 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293250111 2021-11-09 18:28:50.133002 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Home, Millbrook, NY L2119013 P 41.7923452 -73.6592703 2015-01-24 07:00:00 obsr1062217 S21542760 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310377326 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 06:10:00 obsr1433400 S22888054 Traveling P22 EBIRD 90.0 4.088 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295343733 2015-02-07 13:31:41 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2316 United States US New York US-NY Suffolk US-NY-103 30.0 Riverhead Sod Farms--Doctors Path L588228 H 40.9613311 -72.6676512 2015-02-07 11:41:00 obsr2485753 S21709648 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316017021 2015-05-05 08:08:10 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Delaware US-NY-025 28.0 Home L150688 P 42.248363 -74.82349 2015-05-05 07:23:00 obsr2582087 S23238632 Traveling P22 EBIRD 44.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309479699 2018-08-04 17:08:54 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 12 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-12 13:56:00 obsr800690 S22824952 Stationary P21 EBIRD 10.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302936089 2021-12-10 08:21:29.396662 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-13 17:45:00 obsr258431 S22333244 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321562819 2022-02-27 09:35:49.066489 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 1 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-05-17 obsr545221 S23552914 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310430991 2021-09-03 19:22:31.034431 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-04-16 12:32:00 obsr2497657 S22891662 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289240757 2021-11-09 18:28:47.869738 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Bard College L2062518 P 42.0209241 -73.9082158 2015-01-03 11:00:00 obsr2010779 S21203370 Stationary P21 EBIRD 60.0 2.0 1 G1096875 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320639173 2021-04-01 12:32:15.282601 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-05-17 14:30:00 obsr2823378 S23497150 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312656625 2018-08-04 17:12:02 7200 species avibase-49D9148A Great Egret Ardea alba 5 United States US New York US-NY Essex US-NY-031 14.0 Corner of Bull Rock and Shattuck L3026671 P 43.815311 -73.498596 2015-04-24 19:46:00 obsr2693145 S23038834 Traveling P22 EBIRD 50.0 0.805 2.0 1 G1234311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316798914 2020-11-12 13:33:47 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 9 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-07 06:20:00 obsr1830659 S23283874 Traveling P22 EBIRD 190.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315140817 2021-04-01 11:24:19.637193 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-05-02 06:45:00 obsr1782363 S23190360 Stationary P21 EBIRD 60.0 2.0 1 G1248879 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313493911 2021-04-01 11:24:19.637193 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-04-24 17:25:00 obsr1962295 S23090468 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315214243 2018-08-04 17:13:56 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-01 11:45:00 obsr1826325 S23194652 Traveling P22 EBIRD 44.0 3.219 1.0 1 G1248672 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300245822 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-01 07:30:00 obsr2207991 S22123715 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311336836 2018-08-04 17:10:30 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-19 08:57:00 obsr1222746 S22950024 Rusty Blackbird Spring Migration Blitz P41 EBIRD 350.0 2.977 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326329518 2019-03-17 16:38:55 526 species avibase-56CCA717 Northern Pintail Anas acuta 3 United States US New York US-NY Essex US-NY-031 14.0 Chapamini Residence L2506431 P 43.820419 -73.493089 2015-05-17 05:15:00 obsr2398987 S23868568 Traveling P22 EBIRD 93.0 1.609 2.0 1 G3954751 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311174966 2021-03-26 06:11:29.8335 27616 species avibase-D77E4B41 American Robin Turdus migratorius 25 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-04-19 08:34:00 obsr1655171 S22940236 Stationary P21 EBIRD 7.0 2.0 1 G1230113 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303116154 2021-04-01 11:24:19.637193 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris 75 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-14 15:13:00 obsr334398 S22349639 Stationary P21 EBIRD 62.0 2.0 1 G1179460 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310459849 2021-04-01 11:42:15.525388 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Fort Niagara SP L210265 H 43.2638703 -79.0567981 2015-04-16 14:45:00 obsr2588479 S22893572 Traveling P22 EBIRD 28.0 0.322 3.0 1 G1222155 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302212531 2022-02-17 14:32:23.002448 303 species avibase-B59E1863 Canada Goose Branta canadensis N 5 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-10 08:32:00 obsr1605975 S22274173 Traveling P22 EBIRD 150.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317265348 2021-11-15 03:06:58.889978 662 species avibase-FB738385 Bufflehead Bucephala albeola 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 15:00:00 obsr1135516 S23309650 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304310405 2021-03-23 17:22:05.708166 30494 species avibase-240E3390 House Sparrow Passer domesticus 9 United States US New York US-NY Herkimer US-NY-043 13.0 Dairy Hill Road - from Mexico Rd to Black Creek Rd. L626277 P 43.2107593 -74.8837781 2015-03-20 14:57:00 obsr1000124 S22443362 Traveling P22 EBIRD 9.0 5.472 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306370758 2022-01-20 13:44:29.539827 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Seneca US-NY-099 US-NY_803 13.0 Geneva Lakefront Park, birds over water ONLY (Seneca Co.) L360643 H 42.8659781 -76.9714307 2015-03-30 14:50:00 obsr967916 S22599449 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301112973 2021-03-26 06:07:26.162322 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-03-05 08:30:00 obsr2700440 S22186666 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294122267 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Dead Horse Bay, Marina L151656 H 40.585205 -73.901276 2015-01-31 10:01:00 obsr152435 S21612059 Stationary P21 EBIRD 74.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310469809 2021-03-26 06:07:45.516082 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-04-16 14:00:00 obsr128156 S22894328 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310514872 2021-03-19 16:10:30.527219 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 135 United States US New York US-NY Chemung US-NY-015 28.0 Grove St. Fishing Access L1949349 H 42.08293 -76.81726 2015-04-16 07:55:00 obsr2430746 S22897773 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302462981 2021-03-30 06:01:28.020715 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-11 12:30:00 obsr1655171 S22298812 Traveling P22 EBIRD 45.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303469681 2021-11-15 03:06:58.889978 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-15 11:50:00 obsr1706920 S22377998 Traveling P22 EBIRD 70.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317489313 2018-08-06 22:29:18 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-09 05:45:00 obsr290506 S23323639 Traveling P22 EBIRD 240.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306435323 2021-04-01 11:43:48.927316 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata N 8 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, City Pier L357819 H 42.871907 -77.2725534 2015-03-30 09:25:00 obsr528918 S22604657 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296245122 2015-02-12 10:40:27 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 14 United States US New York US-NY Warren US-NY-113 14.0 Cat and Thomas Mountains L3355400 P 43.603909 -73.692505 2015-02-10 11:06:00 obsr2420101 S21780500 Traveling P22 EBIRD 382.0 11.265 2.0 1 G1143792 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292953440 2021-03-24 20:58:04.794277 447 species avibase-C235A4D7 Gadwall Mareca strepera 6 United States US New York US-NY Herkimer US-NY-043 13.0 Sheep Run Daylily Farm L655147 H 43.2036169 -74.9769688 2015-01-24 13:00:00 obsr1027300 S21519635 Stationary P21 EBIRD 140.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299663613 2021-03-24 20:33:47.533911 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 4 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N Sherwood Pltform base - small brdg (0.15km) L1370979 P 42.4801875 -76.4541519 2015-02-26 07:58:00 obsr2307843 S22077672 Traveling P22 EBIRD 10.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322028844 2018-08-06 22:30:50 1375 species avibase-4B9EEF56 Ring-necked Pheasant Phasianus colchicus 4 United States US New York US-NY Essex US-NY-031 13.0 Noblewood Park L191517 H 44.3548774 -73.356574 2015-05-22 11:30:00 obsr2105231 S23582455 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307939344 2018-04-28 14:11:14 5976 species avibase-F4829920 American Woodcock Scolopax minor 1 United States US New York US-NY Cortland US-NY-023 28.0 Tully Lake, south end L508613 H 42.76418 -76.13746 2015-04-06 09:05:00 obsr1042912 S22714980 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289111456 2021-04-01 12:14:19.266649 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-01-04 14:40:00 obsr102311 S21193683 Traveling P22 EBIRD 80.0 2.414 2.0 1 G1095692 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312999257 2021-03-30 19:07:52.958398 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 12:15:00 obsr2448957 S23060013 Traveling P22 EBIRD 465.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322892323 2021-03-26 06:11:29.8335 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 6 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-05-25 08:36:00 obsr1008519 S23632877 Traveling P22 EBIRD 15.0 1.609 2.0 1 G1289536 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314527676 2021-11-15 03:06:58.889978 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-30 15:35:00 obsr516108 S23155073 Traveling P22 EBIRD 240.0 0.644 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324125265 2018-08-06 22:31:28 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 S C2 S United States US New York US-NY Hamilton US-NY-041 14.0 Blue Mt. Summit L263560 H 43.8725478 -74.4011674 2015-05-30 10:10:00 obsr2937317 S23715979 Traveling P22 EBIRD 341.0 3.219 3.0 1 G1296977 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303610604 2015-03-16 21:38:43 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Tioga US-NY-107 28.0 US-NY-Spencer-310 Michigan Hollow Rd L2347556 P 42.275927 -76.493058 2015-03-16 20:00:00 obsr1318356 S22388748 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294892061 2021-04-01 11:47:43.260314 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 35 United States US New York US-NY Oswego US-NY-075 Oswego Harbor L247908 H 43.4658286 -76.5149873 2015-02-04 13:00:00 obsr1633923 S21673666 Traveling P22 EBIRD 90.0 0.805 1.0 1 G1135287 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307918254 2021-03-26 07:56:20.588749 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-05 09:47:00 obsr1987335 S22713611 Rusty Blackbird Spring Migration Blitz P41 EBIRD 81.0 1.609 2.0 1 G1207233 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318433228 2015-05-10 23:28:48 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-07 17:10:00 obsr1334267 S23374455 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310663940 2021-03-24 20:49:55.752669 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-04-17 12:28:00 obsr1721609 S22907778 Stationary P21 EBIRD 62.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315220303 2021-03-30 19:07:52.958398 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 07:15:00 obsr1077730 S23194980 Traveling P22 EBIRD 315.0 4.828 26.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306901643 2021-03-19 16:19:20.977326 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-03-29 09:50:00 obsr1079517 S22639844 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304945001 2021-04-01 11:15:31.646886 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 3 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-03-23 16:30:00 obsr1731572 S22490629 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308476541 2018-08-04 17:08:06 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY Broome US-NY-007 28.0 West Corners Marsh L1513804 H 42.1169195 -76.0743913 2015-04-08 10:57:00 obsr879105 S22755256 Stationary P21 EBIRD 10.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293108928 2021-04-01 11:15:31.646886 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 120 United States US New York US-NY Kings US-NY-047 Gravesend Bay, middle parking lot L1843449 H 40.6040297 -74.0243731 2015-01-25 10:53:00 obsr598381 S21531859 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303159014 2021-04-01 11:24:19.637193 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 11 United States US New York US-NY Monroe US-NY-055 13.0 stakeout Yellow-headed Blackbird, Jeffords Rd., Rush (2015) L3304693 H 43.00988 -77.62134 2015-01-24 08:46:00 obsr334398 S22353068 Stationary P21 EBIRD 137.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309681964 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-13 09:55:00 obsr2574755 S22839278 Traveling P22 EBIRD 11.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301496099 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-07 12:45:00 obsr544268 S22217065 Traveling P22 EBIRD 150.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313014553 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-25 15:00:00 obsr1348614 S23060866 Traveling P22 EBIRD 120.0 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314994372 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 06:25:00 obsr2514491 S23182158 Traveling P22 EBIRD 413.0 8.047 4.0 1 G1247369 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306654954 2021-03-30 19:13:38.458673 5155 species avibase-4880DC55 Virginia Rail Rallus limicola 25 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-18 17:50:00 obsr1561508 S22621821 Stationary P21 EBIRD 30.0 2.0 1 G1200160 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309202857 2021-01-26 11:54:44.804994 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-11 17:57:00 obsr606693 S22807667 Traveling P22 EBIRD 14.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314457541 2015-04-30 20:05:58 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Oswego US-NY-075 13.0 Sunset Bay Park L250628 H 43.5211406 -76.3839446 2015-04-25 14:09:00 obsr2787912 S23150605 Stationary P21 EBIRD 30.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288444535 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 12 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-01-02 09:30:00 obsr1488063 S21137755 Stationary P21 EBIRD 25.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312116426 2021-04-01 11:30:42.037277 681 species avibase-407E2CA8 Common Merganser Mergus merganser N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-21 17:00:00 obsr609516 S23001106 Traveling P22 EBIRD 75.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315491716 2021-11-09 18:43:18.978402 337 species avibase-694C127A Mute Swan Cygnus olor 4 United States US New York US-NY Dutchess US-NY-027 14.0 Reagan Road Millerton L3292286 P 41.9044809 -73.5126543 2015-05-03 10:27:00 obsr2343626 S23209214 Traveling P22 EBIRD 30.0 1.609 2.0 1 G1249917 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318114857 2021-11-15 03:06:58.889978 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-10 08:15:00 obsr1944212 S23357357 Traveling P22 EBIRD 165.0 1.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323118896 2021-04-01 11:15:31.646886 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 60 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 13:10:00 obsr150415 S23647629 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498481 2021-01-02 20:17:06.602961 303 species avibase-B59E1863 Canada Goose Branta canadensis 100 United States US New York US-NY Tompkins US-NY-109 13.0 Allan H. Treman State Marine Park--marina (not lakeshore or woods) L159024 H 42.4571425 -76.5143238 2015-01-17 14:30:00 obsr887540 S21385305 Stationary P21 EBIRD 102.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316018242 2015-05-05 08:13:59 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-05-05 06:25:00 obsr2716320 S23238698 Traveling P22 EBIRD 52.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315446676 2021-04-01 12:32:15.282601 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Nassau US-NY-059 30.0 Norman J. Levy Park and Preserve L284148 H 40.6471523 -73.5630634 2015-05-03 09:30:00 obsr87415 S23206682 Traveling P22 EBIRD 140.0 2.414 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290876625 2021-03-30 19:29:33.633096 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 4 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-13 08:00:00 obsr916370 S21334914 Traveling P22 EBIRD 110.0 3.058 3.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310270271 2021-11-09 21:22:28.893225 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Ulster US-NY-111 13.0 Falling Waters Preserve L1236834 H 42.0541799 -73.9394009 2015-04-15 13:24:00 obsr2546168 S22880477 Traveling P22 EBIRD 66.0 4.023 2.0 1 G1221030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293697859 2021-04-01 12:32:15.282601 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-01-28 10:30:00 obsr247620 S21578447 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310613592 2018-02-01 15:11:46 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor28 L3513970 H 42.4979113 -76.1702413 2015-04-16 09:55:00 obsr1042912 S22904665 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305659149 2021-03-26 07:56:20.588749 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Nassau US-NY-059 30.0 Hofstra University L639147 H 40.7145119 -73.6003128 2015-03-27 15:13:00 obsr904434 S22546244 Traveling P22 EBIRD 14.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296698005 2018-08-04 16:56:28 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-14 11:18:00 obsr155915 S21822045 Stationary P21 EBIRD 8.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318082113 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-05-09 16:00:00 obsr2309457 S23355706 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313879361 2021-03-23 17:00:13.087107 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-26 09:03:00 obsr2683910 S23114898 Traveling P22 EBIRD 37.0 1.127 2.0 1 G1241593 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301402859 2018-08-04 16:58:56 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Seneca US-NY-099 13.0 Sampson SP L356616 H 42.7288824 -76.9038166 2015-03-07 12:50:00 obsr983655 S22210642 Traveling P22 EBIRD 25.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311325165 2021-04-01 11:15:31.646886 634 species avibase-F3D74914 King Eider Somateria spectabilis 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 08:30:00 obsr1659461 S22949288 Traveling P22 EBIRD 330.0 6.437 2.0 1 G1227456 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319450609 2021-03-23 17:18:00.959502 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Albany US-NY-001 13.0 Miller Rd from Pictuay Rd to Rte 9W L3641687 P 42.5210791 -73.8200462 2015-05-13 16:40:00 obsr2855945 S23432448 Traveling P22 EBIRD 35.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290552272 2021-03-26 08:14:57.071052 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-01-11 08:15:00 obsr258431 S21308665 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291994359 2021-03-19 16:44:35.607263 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 200 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-19 11:00:00 obsr1655171 S21423720 Traveling P22 EBIRD 74.0 2.414 2.0 1 G1116495 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741153 2021-03-23 17:00:13.087107 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 3 United States US New York US-NY Tompkins US-NY-109 13.0 845 Taughannock Blvd L3301517 P 42.4635812 -76.5241528 2015-01-18 08:45:00 obsr241086 S21404046 Stationary P21 EBIRD 70.0 7.0 1 G1114093 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310119779 2021-03-26 08:13:27.160698 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Tioga US-NY-107 28.0 Lockheed Martin Pond L2347076 H 42.097235 -76.221474 2015-04-14 07:47:00 obsr1318356 S22870494 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310388340 2021-04-01 11:30:42.037277 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 06:53:00 obsr2313260 S22888849 Traveling P22 EBIRD 143.0 1.609 6.0 1 G1232810 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317968301 2021-04-01 11:15:31.646886 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Kings US-NY-047 Canarsie Pier L247765 H 40.6287773 -73.8836704 2015-05-09 17:30:00 obsr420385 S23349670 Stationary P21 EBIRD 15.0 2.0 1 G1261019 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135683 2021-03-26 07:56:20.588749 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-03 16:00:00 obsr2218212 S23589174 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294552901 2021-04-01 12:14:19.266649 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Suffolk US-NY-103 Lake Montauk L3316869 P 41.062777 -71.923413 2015-01-25 12:00:00 obsr110238 S21646046 Traveling P22 EBIRD 120.0 3.219 4.0 1 G1132921 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288597196 2021-11-09 18:18:59.388232 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Dutchess US-NY-027 28.0 Sterling Drive, Beekman, NY L1397136 P 41.6230312 -73.6487302 2015-01-01 10:30:00 obsr2175245 S21150738 Traveling P22 EBIRD 15.0 0.483 3.0 1 G1091107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314708182 2021-04-01 11:30:42.037277 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-01 10:30:00 obsr2448505 S23165756 Traveling P22 EBIRD 150.0 4.828 2.0 1 G1246282 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288480321 2021-03-30 19:29:33.633096 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 4 United States US New York US-NY Suffolk US-NY-103 30.0 Swan Lake, East Patchogue L279859 H 40.770108 -72.9932633 2015-01-02 10:20:00 obsr706483 S21140894 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309342461 2015-04-12 10:46:05 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Tonawanda WMA--Meadville Marsh L899745 H 43.1208458 -78.4629822 2015-04-12 09:19:00 obsr1603345 S22816711 Traveling P22 EBIRD 16.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307809315 2021-04-01 11:15:31.646886 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 4 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-05 15:00:00 obsr2976 S22705386 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314284892 2021-03-24 20:13:27.613389 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Queens US-NY-081 Breezy Point, 2 Rockaway Point Boulevard L3557945 P 40.55594 -73.93184 2015-04-30 07:14:00 obsr1605975 S23140116 Traveling P22 EBIRD 144.0 5.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302658587 2015-04-07 11:31:49 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-03-10 11:17:00 obsr2760150 S22313866 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320097520 2021-03-19 16:02:45.308962 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 20 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-16 06:05:00 obsr800690 S23469117 Traveling P22 EBIRD 254.0 3.219 2.0 1 G1273111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298186660 2021-04-01 10:55:39.308231 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 7 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-02-18 08:38:00 obsr502830 S21954878 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871397 2021-03-26 07:56:20.588749 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 46 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-23 16:00:00 obsr2218212 S21672044 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311592316 2021-03-26 06:55:00.227271 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 Male, Adult (2) United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-20 12:08:00 obsr606693 S22966659 Traveling P22 EBIRD 4.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305307063 2021-03-23 17:15:00.080143 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Road L3514759 P 43.0455895 -76.7246103 2015-03-25 12:45:00 obsr2430746 S22518891 Traveling P22 EBIRD 40.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322505595 2021-04-01 12:26:53.827486 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 3 CF C4 CF United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-24 06:07:00 obsr2512689 S23609858 Traveling P22 EBIRD 58.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312246692 2021-03-23 17:00:13.087107 11371 species avibase-75600969 Northern Flicker Colaptes auratus 5 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southwest L879237 H 42.4634388 -76.4367664 2015-04-23 06:53:00 obsr1696616 S23010152 Traveling P22 EBIRD 71.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304961065 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-03-22 11:00:00 obsr2072398 S22491939 Traveling P22 EBIRD 30.0 0.805 2.0 1 G1190687 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302063531 2021-11-15 03:06:58.889978 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-09 08:29:00 obsr1548221 S22261293 Traveling P22 EBIRD 51.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289759233 2021-03-26 07:52:59.845315 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-05 08:15:00 obsr316199 S21244138 Area P23 EBIRD 79.0 2.59 2.0 1 G1100456 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309084189 2021-03-19 16:02:45.308962 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Broome US-NY-007 28.0 Gilbert Creek L251064 H 42.2101575 -75.8729663 2015-04-10 07:30:00 obsr1476567 S22799899 Stationary P21 EBIRD 120.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322743032 2018-08-06 22:31:05 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Essex US-NY-031 13.0 Maple Meadows L4115608 P 44.0422008 -73.4797356 2015-05-25 07:10:00 obsr2769235 S23623865 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317113771 2021-03-30 19:39:10.250398 27616 species avibase-D77E4B41 American Robin Turdus migratorius 10 United States US New York US-NY Nassau US-NY-059 30.0 North Woodmere Park L3514361 H 40.641285 -73.7363824 2015-05-08 09:00:00 obsr1693806 S23301552 Traveling P22 EBIRD 40.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300535476 2021-04-01 11:54:40.172593 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus N 12 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-02 14:25:00 obsr1958124 S22144392 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289897511 2021-11-09 20:12:16.773384 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 Male, Adult (1) United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-01-08 12:23:00 obsr1912104 S21255681 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318895017 2018-12-14 02:24:14 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Tinker Nature Park L2137320 P 43.06707 -77.57339 2015-05-10 16:43:00 obsr1243175 S23400797 Stationary P21 EBIRD 25.0 2.0 1 G1267189 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303056458 2021-04-01 11:24:19.637193 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-14 07:35:00 obsr302343 S22345094 Traveling P22 EBIRD 85.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313493925 2021-04-01 11:24:19.637193 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 10 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-04-24 17:25:00 obsr1962295 S23090468 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309106586 2018-08-04 17:05:21 456 species avibase-D201EB72 American Wigeon Mareca americana 8 United States US New York US-NY Warren US-NY-113 14.0 Veteran's Park L3192312 P 43.5622261 -73.6516142 2015-04-04 09:45:00 obsr2019190 S22801254 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320119634 2018-08-06 22:30:09 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Monroe US-NY-055 13.0 Durand-Eastman Park--Horseshoe Rd. L1167931 H 43.2369181 -77.564064 2015-05-16 09:47:00 obsr1124114 S23470167 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS379410497 2021-11-09 19:56:59.830667 245 species avibase-7A24F57F Ross's Goose Anser rossii N X United States US New York US-NY Orange US-NY-071 28.0 Walden--Lake Osiris Rd L3454418 P 41.575196 -74.1635513 2015-03-01 13:00:00 obsr1477666 S28009438 Traveling P22 EBIRD 10.0 0.644 3.0 0 G1634051 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292097351 2021-04-01 11:46:19.761029 5948 species avibase-A47B0BD4 Least Sandpiper Calidris minutilla N 38 United States US New York US-NY Orleans US-NY-073 13.0 US-NY-Medina-4241-4299 Waterworks Rd L3298005 P 43.199742 -78.369924 2015-01-20 10:07:00 obsr2588479 S21431796 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294491512 2021-11-09 22:45:29.949255 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Sullivan US-NY-105 28.0 Cooley Mt Road L3333352 P 41.8711658 -74.696289 2015-02-01 11:00:00 obsr1544235 S21641127 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290527443 2015-03-08 12:30:18 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-11 14:30:00 obsr1243175 S21306817 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1105967 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300534339 2018-08-04 16:58:36 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 10 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-02 13:45:00 obsr820113 S22144314 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318093697 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Albany US-NY-001 13.0 Albany International Airport--Sicker Rd. eastern side L2494355 H 42.751172 -73.801319 2015-05-09 16:40:00 obsr777630 S23356289 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309755720 2015-04-13 14:46:18 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Oneida US-NY-065 13.0 Durhamville L1580253 P 43.1192416 -75.669179 2015-04-13 10:40:00 obsr2950436 S22844875 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301678140 2018-08-04 16:59:05 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Herkimer US-NY-043 13.0 Mohawk River at Dyke Road L2592405 P 43.0913154 -75.1577711 2015-03-08 14:15:00 obsr642516 S22230670 Stationary P21 EBIRD 23.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308823058 2021-11-09 22:38:28.159504 26109 species avibase-BAC33609 Brown Creeper Certhia americana 30 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill, Birch Trail L2044729 P 41.5194067 -74.5349622 2015-04-09 17:36:00 obsr1788273 S22781881 Traveling P22 EBIRD 51.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298266047 2021-04-01 12:14:19.266649 31530 species avibase-B48335B1 Pine Siskin Spinus pinus X United States US New York US-NY Suffolk US-NY-103 30.0 Argyle Lake L623005 H 40.6965832 -73.329277 2015-02-18 14:00:00 obsr1137265 S21961882 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309338221 2021-03-26 07:16:36.956617 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-12 07:45:00 obsr1918430 S22816420 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323492896 2021-11-09 18:11:17.700944 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook L123705 T 41.78509 -73.69397 2015-05-23 06:00:00 obsr445356 S23672679 Traveling P22 EBIRD 240.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316105753 2021-04-01 11:15:31.646886 8773 species avibase-7AA076EF Barred Owl Strix varia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 09:05:00 obsr2677000 S23243487 Traveling P22 EBIRD 180.0 3.219 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313072934 2021-04-01 11:30:42.037277 616 species avibase-25C94A8F Greater Scaup Aythya marila 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 08:00:00 obsr512869 S23064545 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310441868 2015-04-16 13:46:07 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP Rice Hill trail L2617704 P 42.5449906 -76.6149965 2015-04-16 11:42:00 obsr2260025 S22892314 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313805077 2018-08-04 17:12:36 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-28 09:23:00 obsr1472872 S23110087 Traveling P22 EBIRD 45.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321350915 2018-08-06 22:30:32 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Fulton US-NY-035 13.0 Dolgeville - East L619350 P 43.0989461 -74.7668982 2015-05-19 06:08:00 obsr2694889 S23539929 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292769139 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola 30 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-23 10:21:00 obsr904434 S21504992 Traveling P22 EBIRD 60.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293754277 2021-03-26 06:29:56.44369 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-27 10:10:00 obsr1782363 S21583081 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291409946 2015-01-17 09:58:43 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 2 United States US New York US-NY Ontario US-NY-069 13.0 Gorham L651552 T 42.79897 -77.1316 2015-01-16 14:00:00 obsr654258 S21378010 Historical P62 EBIRD 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314028547 2021-03-24 19:48:44.880783 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-04-29 06:03:00 obsr1410564 S23124194 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314442725 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-04-29 15:19:00 obsr1348614 S23149539 Traveling P22 EBIRD 147.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317149775 2021-11-09 18:41:49.178307 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 2 United States US New York US-NY Dutchess US-NY-027 14.0 Harlem Valley Rail Trail - Sharon Station Rd to Rt 1, Amenia, NY L3103688 P 41.8794728 -73.5208619 2015-05-08 06:05:00 obsr1062217 S23303366 Traveling P22 EBIRD 120.0 1.609 2.0 1 G1257284 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298260642 2021-04-01 12:18:57.910168 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 50 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-10 08:33:00 obsr2683910 S21961441 Traveling P22 EBIRD 28.0 0.483 2.0 1 G1151990 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303953357 2015-03-18 20:56:42 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2737378 P 42.7558333 -78.8616667 2015-03-15 10:00:00 obsr436899 S22415412 Stationary P21 EBIRD 240.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293096291 2021-04-01 12:35:52.669792 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas N 25 United States US New York US-NY Onondaga US-NY-067 13.0 Phoenix downriver--Onondaga County side L3284681 P 43.2292889 -76.3059282 2015-01-24 11:45:00 obsr1633923 S21530846 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310090967 2021-03-26 07:30:35.289997 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 12 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-10 07:43:00 obsr2683910 S22868467 Traveling P22 EBIRD 46.0 0.483 2.0 1 G1219953 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307064758 2021-03-26 06:59:15.841579 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-02 09:44:00 obsr2588479 S22652558 Traveling P22 EBIRD 428.0 0.08 5.0 1 G1202058 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361324534 2018-08-04 17:08:19 681 species avibase-407E2CA8 Common Merganser Mergus merganser 50 United States US New York US-NY Saratoga US-NY-091 13.0 Wrights Loop North L4098899 P 42.990146 -73.6125183 2015-04-10 08:30:00 obsr1620448 S26473032 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312901640 2021-03-23 17:35:23.829899 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Otsego US-NY-077 28.0 Oneonta Susquehanna Greenway L563049 H 42.439496 -75.1034349 2015-04-25 10:30:00 obsr1452192 S23054049 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290920410 2021-03-26 06:55:00.227271 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Home L3158249 P 42.7894329 -77.5681436 2015-01-13 07:30:00 obsr39511 S21338317 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319728801 2021-11-15 03:06:58.889978 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-14 11:40:00 obsr516108 S23448599 Traveling P22 EBIRD 480.0 2.575 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290248957 2021-03-31 04:03:32.881251 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-01-10 08:11:00 obsr1893950 S21284415 Traveling P22 EBIRD 30.0 0.805 2.0 1 G1103730 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291668123 2021-11-09 21:36:59.310849 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Ulster US-NY-111 13.0 rosendale, ny L1465355 P 41.8499692 -74.081765 2015-01-18 07:15:00 obsr187701 S21398530 Stationary P21 EBIRD 45.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298332145 2020-05-16 18:13:11 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Otsego US-NY-077 28.0 I-88 between exits 13 & 14 L3398539 P 42.4419545 -75.079236 2015-02-18 09:40:00 obsr2855945 S21967515 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322935142 2018-08-06 22:31:02 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Hamilton US-NY-041 14.0 Willis Lake Swamp L1160273 P 43.3721139 -74.2425156 2015-05-24 10:30:00 obsr739254 S23635740 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306703777 2022-03-05 22:03:50.715584 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 88 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-01 08:30:00 obsr2219590 S22625630 Traveling P22 EBIRD 135.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321475282 2021-03-26 06:17:19.712573 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-18 11:00:00 obsr2155111 S23547629 Traveling P22 EBIRD 180.0 1.207 2.0 1 G1280786 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289283432 2021-11-09 18:17:28.944709 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Dutchess US-NY-027 13.0 Stissing Pond L1363612 H 41.9692413 -73.670132 2015-01-03 09:30:00 obsr481595 S21206777 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1006524480 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-19 10:00:00 obsr562303 S75771180 Stationary P21 EBIRD 240.0 2.0 1 G5871584 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302339771 2021-03-24 19:20:44.053843 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95502 2015-03-10 15:45:00 obsr1830659 S22289420 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314182730 2021-04-01 11:24:19.637193 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-29 07:00:00 obsr1782363 S23133558 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322499398 2021-03-26 06:21:54.883933 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 09:49:00 obsr173911 S23609550 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311443865 2021-11-09 21:31:40.219848 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-19 17:00:00 obsr610423 S22956685 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321661685 2021-03-26 06:29:56.44369 11528 species avibase-F3DA111C Merlin Falco columbarius 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-20 07:00:00 obsr745890 S23559034 Stationary P21 EBIRD 7.0 2.0 1 G1281518 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310854566 2021-03-23 16:47:03.540174 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 6 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-18 07:30:00 obsr1918430 S22920386 Traveling P22 EBIRD 110.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311769661 2019-10-01 15:53:27 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Tompkins US-NY-109 28.0 Jim Schug Trail--Weber to Keith including Dryden Pond L520931 H 42.4769082 -76.2953818 2015-04-18 09:40:00 obsr2683910 S22978498 Stationary P21 EBIRD 4.0 2.0 1 G1229839 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299996182 2021-04-01 10:55:39.308231 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 435 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-02-28 08:02:00 obsr502830 S22102830 Stationary P21 EBIRD 42.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311028919 2021-04-01 11:49:53.573686 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge--Big Johns Pond L594699 H 40.6206631 -73.8238335 2015-04-18 14:22:00 obsr749440 S22926505 Traveling P22 EBIRD 49.0 1.609 2.0 1 G1225469 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321400476 2021-11-09 18:47:29.90468 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Dutchess US-NY-027 13.0 Shunpike (RT57) from Rt44 to Rt 82 L3650369 P 41.829305 -73.7041426 2015-05-16 14:40:00 obsr763723 S23543111 Traveling P22 EBIRD 85.0 13.679 3.0 1 G1275186 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309184179 2021-03-30 19:07:52.958398 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 07:15:00 obsr139757 S22806420 Traveling P22 EBIRD 360.0 4.828 25.0 1 G1214819 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298269587 2021-03-19 16:32:34.732091 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 6 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek--Leon S. Kaiser Park L1312993 H 40.5806115 -73.9979002 2015-02-18 12:30:00 obsr369788 S21962174 Traveling P22 EBIRD 45.0 0.483 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306920956 2021-04-01 10:57:06.520339 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Essex US-NY-031 13.0 Lower La Chute River & Ticonderoga Marsh L4910422 H 43.8448239 -73.4016323 2015-04-02 09:27:00 obsr2769235 S22641399 Traveling P22 EBIRD 130.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313072744 2021-03-30 19:29:33.633096 5976 species avibase-F4829920 American Woodcock Scolopax minor 8 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 Mashomack Preserve L122936 H 41.0562576 -72.2896713 2015-04-26 08:25:00 obsr1628584 S23064537 Traveling P22 EBIRD 90.0 5.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001008 2021-03-26 07:56:20.588749 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-16 16:00:00 obsr2218212 S23775924 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313632335 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-27 16:15:00 obsr1659461 S23099014 Traveling P22 EBIRD 180.0 4.828 3.0 1 G1240494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323231330 2022-02-17 14:32:23.002448 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-26 13:00:00 obsr1310902 S23654980 Historical P62 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304576478 2018-08-04 17:02:25 7169 issf avibase-6A9DD06F Great Blue Heron Ardea herodias Great Blue Heron (Great Blue) Ardea herodias [herodias Group] 15 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-03-22 09:11:00 obsr502830 S22463010 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314745654 2021-03-26 07:52:40.224846 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-05-01 14:00:00 obsr1708031 S23168019 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315212465 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 09:00:00 obsr2499879 S23194562 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314923063 2017-03-21 22:11:35 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Administration Building L813773 H 42.1003559 -78.7494099 2015-05-02 11:15:00 obsr2933610 S23178352 Stationary P21 EBIRD 75.0 2.0 1 G1254120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312089431 2021-03-24 20:33:47.533911 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 8 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-22 13:40:00 obsr1655171 S22999405 Traveling P22 EBIRD 25.0 0.483 2.0 1 G1231557 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302999233 2021-03-26 07:07:10.758746 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-11 16:23:00 obsr1032565 S22340317 Traveling P22 EBIRD 130.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318373362 2018-08-06 22:29:34 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-05-10 09:00:00 obsr1380963 S23371196 Area P23 EBIRD 510.0 2.0234 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317075274 2021-03-26 06:17:19.712573 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-07 07:50:00 obsr736608 S23299398 Traveling P22 EBIRD 130.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306193673 2021-03-23 17:38:38.809066 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 1 United States US New York US-NY Schuyler US-NY-097 28.0 Lisk Road fields L3524669 P 42.391684 -76.746948 2015-03-29 12:28:00 obsr2173269 S22586096 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308284547 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-07 11:00:00 obsr1353449 S22740617 Traveling P22 EBIRD 240.0 4.828 2.0 1 G1209984 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316511117 2021-04-01 11:30:42.037277 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 06:50:00 obsr145923 S23267057 Traveling P22 EBIRD 250.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304853002 2015-10-03 13:12:22 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Tompkins US-NY-109 28.0 Lindsay-Parsons Biodiversity Preserve (FLLT) L109055 H 42.3101677 -76.5216895 2015-03-22 15:23:00 obsr1655171 S22477637 Traveling P22 EBIRD 41.0 0.644 2.0 1 G1190057 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315585452 2021-03-19 15:59:05.496822 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Allegany US-NY-003 28.0 Hawks Rd- Independence, NY L2894838 P 42.0672294 -77.7844048 2015-05-03 14:35:00 obsr2700440 S23214222 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312744245 2021-03-19 16:08:39.161312 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 12 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 09:15:00 obsr2001485 S23044799 Stationary P21 EBIRD 40.0 8.0 1 G1235586 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313175191 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-26 06:30:00 obsr352522 S23070483 Traveling P22 EBIRD 60.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300520731 2021-03-24 19:35:34.045988 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Erie US-NY-029 13.0 Home L2093742 P 42.7338768 -78.7242615 2015-03-02 08:40:00 obsr916033 S22143308 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310463814 2015-04-16 15:36:26 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-16 13:40:00 obsr1472872 S22893886 Traveling P22 EBIRD 75.0 5.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321189800 2021-03-26 06:09:25.361188 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 917 grant street L1861629 P 42.1114312 -76.0806034 2015-05-19 08:00:00 obsr1947568 S23530306 Stationary P21 EBIRD 150.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317489282 2018-08-06 22:29:18 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-09 05:45:00 obsr290506 S23323639 Traveling P22 EBIRD 240.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298535136 2021-11-09 22:04:47.967972 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-19 08:15:00 obsr1122431 S21985012 Traveling P22 EBIRD 360.0 14.484 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313482219 2021-03-26 06:29:14.715704 7429 species avibase-1327AC55 Osprey Pandion haliaetus 2 United States US New York US-NY Madison US-NY-053 28.0 Backyard Feeders L1106615 P 42.8417296 -75.7263565 2015-04-26 07:45:00 obsr2240720 S23089781 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313406003 2019-10-25 16:17:36 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY St. Lawrence US-NY-089 US-NY_775 13.0 Fields behind Rte 68 DEC facility L3554159 P 44.6191938 -75.2304161 2015-04-25 17:45:00 obsr2056110 S23085062 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307069675 2021-03-19 16:44:35.607263 447 species avibase-C235A4D7 Gadwall Mareca strepera 100 United States US New York US-NY Monroe US-NY-055 13.0 Lake Edwards L462614 H 43.0890745 -77.3890686 2015-04-01 19:30:00 obsr528918 S22652934 Traveling P22 EBIRD 5.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308367158 2021-04-01 10:55:39.308231 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-07 14:15:00 obsr2597186 S22746824 Traveling P22 EBIRD 115.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321401901 2021-03-26 06:21:54.883933 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Kings US-NY-047 30.0 Park Place (Backyard list), Brooklyn L1355824 P 40.678271 -73.9753908 2015-05-20 05:45:00 obsr827632 S23543209 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319217355 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L3369812 P 40.8729288 -73.923912 2015-05-13 07:45:00 obsr1406422 S23419286 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322281031 2021-03-26 07:56:20.588749 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus N 8 United States US New York US-NY Nassau US-NY-059 30.0 Lynbrook L3091077 P 40.6511413 -73.6801529 2015-05-23 14:00:00 obsr358492 S23596961 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318895961 2021-04-01 11:24:19.637193 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-12 06:58:00 obsr1243175 S23400863 Traveling P22 EBIRD 15.0 0.016 2.0 1 G1267219 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301351287 2021-09-03 19:22:31.034431 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-03-07 08:45:00 obsr2497657 S22206428 Stationary P21 EBIRD 67.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303735724 2015-03-17 17:14:09 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Steuben US-NY-101 28.0 1072 Slate Creek Rd, Canisteo NY 14823 L3372268 P 42.193444 -77.6792139 2015-03-12 10:30:00 obsr1669793 S22398305 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309356469 2018-08-04 17:08:50 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-12 11:16:00 obsr749440 S22817574 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306130421 2021-03-23 17:00:13.087107 32666 species avibase-5110842F Baltimore Oriole Icterus galbula X United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-03-29 09:00:00 obsr59643 S22581199 Stationary P21 EBIRD 20.0 4.0 1 G1197078 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301838871 2018-12-15 22:24:29 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Kings US-NY-047 Gravesend Bay, middle parking lot L1843449 H 40.6040297 -74.0243731 2015-03-07 11:30:00 obsr1659461 S22244381 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310600114 2018-08-04 17:09:29 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 7 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-04-17 07:53:00 obsr2588479 S22903678 Stationary P21 EBIRD 22.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297161931 2021-03-26 08:05:20.615241 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 1 United States US New York US-NY Onondaga US-NY-067 13.0 862 route 11 L2227264 P 42.810894 -76.1209869 2015-02-15 09:30:00 obsr392884 S21863412 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297321127 2022-02-17 14:32:23.002448 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-17 13:36:00 obsr2180607 S21877856 Traveling P22 EBIRD 60.0 4.828 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319879965 2021-04-01 11:15:31.646886 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-15 07:30:00 obsr2336264 S23457052 Traveling P22 EBIRD 420.0 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303111085 2019-05-29 16:43:27 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 38 United States US New York US-NY Tompkins US-NY-109 13.0 Salt Point Natural Area L353038 H 42.5394116 -76.5496267 2015-03-14 17:10:00 obsr1363650 S22349247 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315943322 2021-06-25 16:13:37.10193 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 13:00:00 obsr2448957 S23233919 Traveling P22 EBIRD 420.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303239770 2022-02-04 06:14:13.892644 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-03-15 09:30:00 obsr1223279 S22359127 Traveling P22 EBIRD_CAN 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304192473 2021-03-26 07:56:20.588749 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-03-20 07:00:00 obsr676630 S22434279 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289447851 2015-01-06 09:06:39 26890 species avibase-94A44032 European Starling Sturnus vulgaris 16 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 Mashomack Preserve L122936 H 41.0562576 -72.2896713 2015-01-06 06:47:00 obsr613775 S21219735 Traveling P22 EBIRD 132.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318534900 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-05-11 07:35:00 obsr2512689 S23380015 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302422950 2021-04-01 11:49:53.573686 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-05 07:00:00 obsr1982614 S22295932 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314269344 2021-03-24 20:33:47.533911 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Tompkins US-NY-109 13.0 east hill recreation trail south L2816554 P 42.433197 -76.468891 2015-04-30 08:00:00 obsr241086 S23139108 Traveling P22 EBIRD 17.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317852260 2021-11-09 18:46:59.805015 6619 spuh avibase-C3E757A3 loon sp. Gavia sp. 2 United States US New York US-NY Dutchess US-NY-027 13.0 Mud Pond, Pine Plains, NY L3610246 P 41.9816075 -73.6743486 2015-04-24 11:25:00 obsr2786327 S23343152 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311842429 2021-03-30 19:07:52.958398 20829 species avibase-B9B272F4 Common Raven Corvus corax 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 07:30:00 obsr2363365 S22983392 Traveling P22 EBIRD 300.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295994288 2021-03-24 20:23:39.258075 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 10 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--Golf Course L507417 H 40.6235296 -73.2860184 2015-02-10 11:00:00 obsr247620 S21760621 Traveling P22 EBIRD 240.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290444969 2018-08-04 16:53:08 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr59643 S21300011 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319087197 2016-02-16 08:41:41 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Jefferson US-NY-045 13.0 Kelsey Creek, Watertown L273304 H 43.9906455 -75.9170911 2015-04-01 09:00:00 obsr585290 S23412041 Traveling P22 EBIRD 540.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340107081 2021-04-01 12:32:15.282601 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-08 08:40:00 obsr294325 S24873700 Traveling P22 EBIRD 265.0 9.656 3.0 1 G1395239 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309323675 2021-04-01 11:24:19.637193 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-12 08:40:00 obsr334398 S22815543 Traveling P22 EBIRD 44.0 0.032 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309830605 2021-03-23 16:30:20.514143 26278 species avibase-A381417F House Wren Troglodytes aedon 84 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 10:49:00 obsr2173269 S22850017 Stationary P21 EBIRD 299.0 5.0 1 G1218628 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299025389 2021-11-09 18:34:57.804398 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 12 Female, Adult (6); Male, Adult (6) United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-02-22 15:00:00 obsr1264675 S22026429 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS972326489 2021-10-17 07:31:27.668273 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 08:00:00 obsr2272914 S72822969 Traveling P22 EBIRD 180.0 5.0 2.0 1 G7321428 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302945057 2015-03-13 20:58:47 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--parking area L3485939 P 42.4807697 -76.4498475 2015-03-13 10:07:00 obsr1062070 S22336091 Traveling P22 EBIRD 3.0 0.193 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316851478 2015-05-07 22:37:18 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 Lopke Pond L2758973 P 42.3072967 -75.9322166 2015-05-07 12:17:00 obsr800690 S23286563 Stationary P21 EBIRD 9.0 1.0 0 G1256745 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309646746 2015-04-13 06:51:47 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Spicer Creek L2106846 P 43.025608 -78.895483 2015-04-12 15:30:00 obsr1831158 S22836227 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292254305 2015-01-21 12:32:00 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus X United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-01-21 07:30:00 obsr2001485 S21443529 Stationary P21 EBIRD 63.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304056130 2021-03-24 20:33:47.533911 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-03-19 14:40:00 obsr1655171 S22423632 Traveling P22 EBIRD 12.0 0.483 2.0 1 G1185153 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290216492 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-10 08:30:00 obsr1807494 S21280067 Traveling P22 EBIRD 300.0 4.828 3.0 1 G1103277 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315003878 2021-11-09 18:02:59.935226 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Dutchess US-NY-027 28.0 Madam Brett Park L1171361 H 41.4886892 -73.9742571 2015-05-02 15:00:00 obsr2241630 S23182672 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312794199 2021-03-19 16:44:35.607263 6616 species avibase-7E022378 Common Loon Gavia immer 2 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-04-25 07:30:00 obsr1534851 S23047785 Traveling P22 EBIRD 210.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319178629 2021-03-26 06:29:56.44369 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-12 12:15:00 obsr1962295 S23416939 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294079792 2021-04-01 11:30:42.037277 591 species avibase-1929E1E1 Canvasback Aythya valisineria 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-30 12:30:00 obsr2363365 S21608769 Traveling P22 EBIRD 90.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310681188 2021-03-24 20:11:57.676649 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Oswego US-NY-075 13.0 Sunset Bay Park L250628 H 43.5211406 -76.3839446 2015-04-17 11:00:00 obsr1633923 S22908802 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293810554 2015-01-29 07:53:30 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Herkimer US-NY-043 13.0 Platform Road - Town of Fairfield L622941 P 43.1581106 -74.9605751 2015-01-27 14:30:00 obsr1683226 S21587345 Incidental P20 EBIRD 0 G1128093 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314605751 2018-08-04 17:13:56 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-01 11:45:00 obsr800690 S23159923 Traveling P22 EBIRD 44.0 3.219 1.0 1 G1248672 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316676606 2021-04-01 11:30:42.037277 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 07:30:00 obsr1102914 S23276879 Traveling P22 EBIRD 300.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322370176 2021-03-26 06:17:19.712573 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Erie US-NY-029 13.0 Knox Farm SP L160588 H 42.7715237 -78.636327 2015-05-23 13:40:00 obsr2912088 S23602296 Traveling P22 EBIRD 240.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298634776 2021-03-30 19:43:32.881136 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-20 14:30:00 obsr1628992 S21993578 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303696290 2018-08-04 17:01:42 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Suffolk US-NY-103 30.0 Oregon Rd L756800 P 41.0287369 -72.51719 2015-03-17 13:20:00 obsr2485753 S22395307 Traveling P22 EBIRD 31.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312045626 2021-03-26 07:20:31.408164 30494 species avibase-240E3390 House Sparrow Passer domesticus N X United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-04-22 08:00:00 obsr2011512 S22996717 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323542487 2018-08-06 22:31:18 242 species avibase-D3A260BC Snow Goose Anser caerulescens 3 United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L692296 H 42.8874107 -78.7166119 2015-05-28 09:44:00 obsr2588479 S23676092 Traveling P22 EBIRD 109.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302876831 2021-04-01 11:54:40.172593 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-13 14:35:00 obsr1958124 S22330400 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308752824 2021-03-26 07:30:35.289997 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-05 11:01:00 obsr2683910 S22776707 Traveling P22 EBIRD 34.0 0.966 2.0 1 G1212774 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298958209 2021-04-01 11:30:42.037277 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-22 09:45:00 obsr512869 S22020878 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301945582 2022-02-18 10:47:29.953615 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 24 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-09 07:06:00 obsr1062070 S22252070 Stationary P21 EBIRD 89.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296027577 2021-04-01 12:45:19.712958 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 8 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-10 15:30:00 obsr114791 S21763308 Traveling P22 EBIRD 60.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293136202 2021-04-01 10:55:39.308231 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina X United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 US-NY-Buffalo-12-52 Crowley Ave L3316775 P 42.952625 -78.908517 2015-01-25 12:31:00 obsr2588479 S21533946 Stationary P21 EBIRD 50.0 14.0 1 G1123057 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291331967 2021-03-24 20:23:39.258075 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 PI--Route 3 L985260 P 41.180269 -72.1993589 2015-01-16 09:50:00 obsr2485753 S21371959 Traveling P22 EBIRD 28.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991217 2021-03-24 19:27:13.077399 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 11 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-14 08:50:00 obsr1334267 S21343828 Traveling P22 EBIRD 34.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313700775 2021-04-01 11:24:19.637193 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-26 10:30:00 obsr1782363 S23103321 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312753148 2021-03-26 07:17:57.136956 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-18 06:30:00 obsr121903 S22933562 Traveling P22 EBIRD 259.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317645959 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 08:15:00 obsr1814684 S23332163 Traveling P22 EBIRD 300.0 6.437 3.0 1 G1257992 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310207855 2018-08-04 17:09:15 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 20 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-15 09:30:00 obsr820113 S22876442 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324203988 2022-02-17 14:32:23.002448 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-31 08:00:00 obsr2078092 S23720922 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315980105 2015-05-04 23:55:33 616 species avibase-25C94A8F Greater Scaup Aythya marila 3 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-02 07:22:00 obsr1000124 S23236107 Area P23 EBIRD 80.0 2.59 2.0 1 G1252521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303996588 2021-03-24 21:12:00.789723 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Schuyler US-NY-097 13.0 Hector Falls Marsh L2354312 H 42.4547794 -76.7754114 2015-03-19 07:10:00 obsr2871406 S22418573 Stationary P21 EBIRD 6.0 3.0 1 G1184879 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308219330 2021-03-23 17:00:13.087107 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Fall Creek Rd. wetlands L1111423 H 42.5171015 -76.3409478 2015-04-07 08:53:00 obsr1655171 S22735881 Stationary P21 EBIRD 4.0 2.0 1 G1212812 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS329942410 2021-04-01 10:55:39.308231 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N X United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L692296 H 42.8874107 -78.7166119 2015-05-28 15:30:00 obsr1379161 S24129988 Traveling P22 EBIRD 150.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305770701 2015-03-28 12:16:07 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 15 United States US New York US-NY Cortland US-NY-023 28.0 Snyder Hill Road - Virgil L3406906 P 42.5002632 -76.090107 2015-03-28 08:13:00 obsr931232 S22554864 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310253555 2021-03-30 19:07:52.958398 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-04-15 13:45:00 obsr2078092 S22879420 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302413877 2021-04-01 10:57:06.520339 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 98 United States US New York US-NY Essex US-NY-031 13.0 Alexandria Ave bridge L2589364 P 43.8362139 -73.4292054 2015-03-10 11:10:00 obsr2693145 S22295145 Traveling P22 EBIRD 12.0 0.161 1.0 1 G1174676 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320658705 2021-03-19 16:25:42.617988 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Essex US-NY-031 14.0 Hurricane Mt. L893685 H 44.235196 -73.709193 2015-05-16 09:00:00 obsr2571887 S23498244 Traveling P22 EBIRD 405.0 17.059 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322763786 2021-03-19 16:19:20.977326 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L143485 P 42.8484688 -78.8569107 2015-05-24 08:50:00 obsr2155111 S23625086 Traveling P22 EBIRD 3.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308027175 2021-04-01 12:43:36.236969 447 species avibase-C235A4D7 Gadwall Mareca strepera 6 United States US New York US-NY Tioga US-NY-107 28.0 West Shore Road, Spencer, NY L3543657 P 42.2477637 -76.5033817 2015-04-06 12:00:00 obsr2430746 S22721065 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296840321 2021-04-01 10:44:41.995232 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 5 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-02-14 07:45:00 obsr2700440 S21834923 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304844947 2021-03-26 06:17:19.712573 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 3 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP--Beaver Island L1781444 H 42.9603249 -78.9603013 2015-03-20 10:30:00 obsr970333 S22482486 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319131989 2021-03-19 16:25:42.617988 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 3 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-12 07:31:00 obsr2420101 S23414468 Traveling P22 EBIRD 510.0 1.609 2.0 1 G1268391 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310882196 2021-03-23 17:32:20.03109 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 3 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-18 06:48:00 obsr2224244 S22922152 Traveling P22 EBIRD 253.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316077669 2015-05-05 11:44:05 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown, Northside L2440357 P 42.1134734 -79.2237318 2015-05-05 09:00:00 obsr2910282 S23242056 Stationary P21 EBIRD 630.0 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307194617 2021-03-26 06:09:25.361188 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 6 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Windsor-398-456 Vinegar Hill Rd L3535060 P 42.011504 -75.5487 2015-04-03 14:08:00 obsr1764243 S22661789 Traveling P22 EBIRD 70.0 19.312 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315429606 2021-03-26 07:56:20.588749 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-05-02 08:00:00 obsr1296638 S23205730 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307401491 2021-04-01 11:15:31.646886 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-04 07:21:00 obsr1711339 S22677080 Traveling P22 EBIRD 255.0 8.047 11.0 1 G1203947 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305557642 2018-01-07 20:13:45 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-03-27 07:21:00 obsr2420101 S22538358 Stationary P21 EBIRD 23.0 2.0 1 G1193933 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308289488 2021-04-01 11:49:53.573686 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Queens US-NY-081 30.0 Flushing Meadows Corona Park--Willow Lake L1788997 H 40.7238052 -73.8330507 2015-04-07 13:10:00 obsr1982614 S22740945 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323177493 2022-02-17 14:32:23.002448 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-23 08:30:00 obsr1211277 S23651588 Traveling P22 EBIRD 180.0 1.77 5.0 1 G1288834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293725022 2022-01-30 05:59:21.134541 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Feeders Only L1037405 H 40.6580479 -73.9676857 2015-01-28 14:49:00 obsr1821546 S21580432 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313333263 2021-03-26 06:55:00.227271 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 1 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Home L3158249 P 42.7894329 -77.5681436 2015-04-26 06:55:00 obsr39511 S23080097 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307873755 2015-04-06 10:18:19 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-04 16:00:00 obsr1160328 S22709996 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308347327 2022-03-05 22:03:50.715584 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-07 18:05:00 obsr1544235 S22745383 Traveling P22 EBIRD 60.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307154198 2021-03-24 05:37:45.927792 27616 species avibase-D77E4B41 American Robin Turdus migratorius 21 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-03 11:09:00 obsr1603345 S22659133 Traveling P22 EBIRD 92.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308257236 2021-03-26 06:17:19.712573 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-04-07 10:57:00 obsr2096529 S22738821 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315320668 2018-08-04 17:13:57 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-01 15:00:00 obsr2729089 S23200029 Historical P62 EBIRD 165.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295335122 2021-11-09 22:04:47.967972 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-07 09:48:00 obsr2471548 S21708946 Traveling P22 EBIRD 90.0 8.047 2.0 1 G1139762 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319868627 2015-05-15 14:20:47 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Delaware US-NY-025 28.0 Margaretteville L3645053 P 42.141245 -74.653945 2015-05-15 07:55:00 obsr481595 S23456439 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300203062 2021-03-26 06:29:56.44369 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-02-28 08:03:00 obsr2595828 S22119942 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291447613 2015-01-18 07:44:32 6616 species avibase-7E022378 Common Loon Gavia immer 3 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 East Rd L3150550 P 43.0133173 -76.7605734 2015-01-17 12:40:00 obsr204036 S21381199 Traveling P22 EBIRD 5.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310418356 2019-07-24 17:38:53 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 20 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr2780117 S22890820 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS313020905 2021-11-15 03:06:58.889978 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-25 08:40:00 obsr2797341 S23061244 Traveling P22 EBIRD 120.0 1.609 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1229026849 2021-10-05 12:34:00.962621 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 obsr1927179 S94080473 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307917646 2021-03-30 19:13:38.458673 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay WMA--North Marina L2100373 P 43.3179 -77.72282 2015-04-04 09:22:00 obsr745890 S22713556 Stationary P21 EBIRD 60.0 4.0 1 G1207219 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305770200 2015-04-16 12:43:25 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Rodmans Neck L1816643 H 40.8564741 -73.8006581 2015-03-28 06:30:00 obsr916370 S22554824 Rusty Blackbird Spring Migration Blitz P41 EBIRD 240.0 7.725 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291950712 2021-03-30 19:07:52.958398 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-19 14:07:00 obsr152435 S21420171 Traveling P22 EBIRD 108.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295066794 2021-03-26 07:56:20.588749 26278 species avibase-A381417F House Wren Troglodytes aedon N 10 United States US New York US-NY Nassau US-NY-059 30.0 Bpage L209674 P 40.7512779 -73.4836176 2015-02-02 15:45:00 obsr1518265 S21688941 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306336251 2021-03-26 06:58:34.561206 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-03-30 08:29:00 obsr2588479 S22596763 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304584212 2021-04-01 11:54:40.172593 23291 species avibase-58C502EA Barn Swallow Hirundo rustica X United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-03-19 09:00:00 obsr666331 S22463567 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310372481 2021-04-01 12:30:15.438381 337 species avibase-694C127A Mute Swan Cygnus olor N 1 United States US New York US-NY Herkimer US-NY-043 13.0 Van Buren St. ,Dolgeville L2827820 P 43.0946402 -74.7678798 2015-04-15 08:42:00 obsr2694889 S22887663 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301257609 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 24 United States US New York US-NY New York US-NY-061 Randalls Island--NE fields and shoreline L1785381 H 40.7943072 -73.9138235 2015-03-06 15:12:00 obsr2105033 S22198268 Traveling P22 EBIRD 66.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288808766 2021-11-09 20:43:08.681969 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Putnam US-NY-079 28.0 Tilly Foster Farm Conservation Area L366986 H 41.4206016 -73.636692 2015-01-03 09:27:00 obsr187432 S21167798 Traveling P22 EBIRD 49.0 1.609 2.0 1 G1097917 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313715848 2021-03-26 07:43:12.52294 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 1 United States US New York US-NY Wayne US-NY-117 13.0 Powell's Yard L783199 P 43.0918854 -77.3488167 2015-04-27 16:30:00 obsr749440 S23104387 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316083689 2021-04-01 11:24:19.637193 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay L83 H 43.3130395 -77.7153471 2015-05-05 11:40:00 obsr2933610 S23242385 Traveling P22 EBIRD 20.0 0.805 2.0 1 G1254138 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313081686 2022-02-18 10:47:29.953615 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 Male, Adult (1) United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-26 08:45:00 obsr1062070 S23065074 Stationary P21 EBIRD 109.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312591105 2021-03-23 16:48:08.60516 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR - Visitor's Pool & Auto Route L2132160 P 42.9604427 -76.7559814 2015-04-24 12:00:00 obsr983655 S23034214 Traveling P22 EBIRD 90.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305824513 2021-11-09 20:51:06.773494 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Rockland US-NY-087 28.0 Kakiat County Park L1023278 H 41.1461171 -74.11466 2015-03-28 07:30:00 obsr1932005 S22558588 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307365557 2015-04-04 09:07:10 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY Erie US-NY-029 13.0 Alden - Crittenden Rd. L586154 P 42.9165364 -78.4935379 2015-04-04 09:00:00 obsr2871264 S22674450 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293863400 2021-03-30 19:40:59.354574 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 3 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-29 09:30:00 obsr2143830 S21591849 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315636772 2018-08-04 17:14:39 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-05-04 05:58:00 obsr2321296 S23217130 Traveling P22 EBIRD 62.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317299497 2022-02-17 14:32:23.002448 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-08 12:20:00 obsr2448957 S23311558 Traveling P22 EBIRD 300.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288471767 2015-01-02 12:46:08 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Suffolk US-NY-103 30.0 53 Highview Lane L296117 P 40.9075594 -72.8885669 2015-01-02 11:55:00 obsr395994 S21140208 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308687705 2018-08-04 17:08:14 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Ontario US-NY-069 28.0 Canandaigua Lake, Woodville Boat Launch (Ontario Co.) L729068 H 42.6685886 -77.3638478 2015-04-09 15:22:00 obsr354090 S22771572 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293902285 2021-11-09 19:51:09.255083 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 10 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-01-29 16:30:00 obsr2219590 S21594820 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321273967 2021-04-01 12:32:15.282601 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-19 09:00:00 obsr706483 S23535389 Traveling P22 EBIRD 120.0 1.609 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298419561 2021-04-01 12:24:14.132004 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 Ft. Edward Grasslands IBA L358625 H 43.2650813 -73.5411072 2015-02-15 15:00:00 obsr2019190 S21975028 Traveling P22 EBIRD 90.0 16.093 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302085096 2021-04-01 11:49:53.573686 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Queens US-NY-081 30.0 Brookville Park L2687495 H 40.6629513 -73.7429361 2015-03-08 14:30:00 obsr1982614 S22262977 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320291167 2021-03-19 16:44:35.607263 242 species avibase-D3A260BC Snow Goose Anser caerulescens 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-16 06:50:00 obsr2504709 S23478847 Traveling P22 EBIRD 110.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309217782 2021-03-26 06:39:43.334073 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 14 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Cedar Hill L5197378 H 40.7770344 -73.9654146 2015-04-11 15:55:00 obsr1548221 S22808708 Traveling P22 EBIRD 12.0 0.161 2.0 1 G1215029 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871351 2021-03-26 07:56:20.588749 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-22 09:00:00 obsr2218212 S21672042 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309855479 2021-03-23 17:22:05.708166 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 Female, Adult (2); Male, Adult (3) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-12 07:05:00 obsr316199 S22851667 Area P23 EBIRD 90.0 2.59 2.0 1 G1218815 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323444109 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-27 07:16:00 obsr2595828 S23669469 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313081447 2021-04-01 11:47:43.260314 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-04-26 09:54:00 obsr2224244 S23065060 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307708103 2015-05-07 17:06:12 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm creek trail transect L2272449 P 42.3462003 -76.3006094 2015-04-05 08:18:00 obsr455249 S22698088 Traveling P22 EBIRD 6.0 0.338 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306548082 2015-03-31 15:37:30 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Orleans US-NY-073 13.0 Lake Ontario Parkway Borrow Pits--Pit D L775728 H 43.3616625 -78.1672955 2015-03-31 13:30:00 obsr137150 S22613468 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS437493250 2021-03-26 08:14:57.071052 30494 species avibase-240E3390 House Sparrow Passer domesticus 20 United States US New York US-NY Westchester US-NY-119 30.0 Rye Town Park L1108049 H 40.9600672 -73.6812635 2015-02-03 09:15:00 obsr1544235 S32134758 Traveling P22 EBIRD 190.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291649656 2015-01-18 14:27:50 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 18 United States US New York US-NY Suffolk US-NY-103 30.0 Great River L2706365 P 40.7213514 -73.1577873 2015-01-10 16:00:00 obsr564905 S21397289 Stationary P21 EBIRD 8.0 2.0 1 G1113706 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292551381 2021-11-09 19:30:40.312662 11371 species avibase-75600969 Northern Flicker Colaptes auratus 14 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR (NY) L1238320 H 41.2865783 -74.5264006 2015-01-19 07:00:00 obsr2800626 S21488031 Traveling P22 EBIRD 180.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304931940 2021-01-26 12:10:36.731005 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 18 United States US New York US-NY Ontario US-NY-069 13.0 **US-NY-ONT Canandaigua--CR 4 X Outlet Creek (3175C) [Clifton Springs_SW] L1383148 P 42.9017285 -77.2466044 2015-03-23 13:14:00 obsr606693 S22489593 Stationary P21 EBIRD 1.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319002893 2021-03-19 16:19:20.977326 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-12 10:30:00 obsr2871264 S23406696 Traveling P22 EBIRD 180.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303457982 2021-03-23 17:41:09.545385 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Westchester US-NY-119 30.0 Katonah, 10 Meadow Lane L3491451 P 41.25894 -73.69483 2015-03-16 07:16:00 obsr265800 S22376453 Traveling P22 EBIRD 38.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310459419 2015-04-16 15:13:28 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-16 12:20:00 obsr1472872 S22893552 Traveling P22 EBIRD 40.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313068547 2015-04-26 11:43:46 337 species avibase-694C127A Mute Swan Cygnus olor 10 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-26 08:51:00 obsr2211210 S23064285 Traveling P22 EBIRD 48.0 0.322 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302839597 2021-03-24 20:33:47.533911 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Tompkins US-NY-109 13.0 CLO Office-2M15 L1313831 P 42.4800694 -76.4515024 2015-03-13 10:48:00 obsr2074043 S22327624 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303262614 2021-03-23 16:52:36.900075 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-03-15 11:10:00 obsr2528068 S22360854 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322136031 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-14 09:00:00 obsr2218212 S23589187 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320758641 2021-04-01 11:15:31.646886 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-17 06:05:00 obsr150415 S23503618 Traveling P22 EBIRD 545.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293356357 2022-01-30 05:59:21.134541 32973 species avibase-10C601D3 Bay-breasted Warbler Setophaga castanea 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Feeders Only L1037405 H 40.6580479 -73.9676857 2015-01-26 09:38:00 obsr2152799 S21550826 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314456492 2021-03-24 19:48:44.880783 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-04-30 06:03:00 obsr1410564 S23150535 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322265057 2021-04-01 11:15:31.646886 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:15:00 obsr1407710 S23596159 Traveling P22 EBIRD 420.0 8.047 20.0 1 G1285843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311153271 2022-02-17 14:32:23.002448 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-18 13:20:00 obsr1077730 S22938860 Traveling P22 EBIRD 80.0 1.609 16.0 1 G1224973 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313427045 2021-11-09 21:50:48.44865 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-27 06:40:00 obsr1482758 S23086465 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316031548 2015-05-05 09:13:06 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-05-05 08:53:00 obsr601383 S23239489 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301014103 2021-04-01 11:30:42.037277 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus N 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Cedar Hill L5197378 H 40.7770344 -73.9654146 2015-03-03 08:23:00 obsr1548221 S22180158 Traveling P22 EBIRD 6.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314503507 2021-03-26 07:56:20.588749 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 1 United States US New York US-NY Nassau US-NY-059 30.0 Clark Botanic Garden L2209806 H 40.7723702 -73.6400954 2015-04-30 14:30:00 obsr143739 S23153535 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324296314 2021-03-26 06:20:03.292591 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Franklin US-NY-033 13.0 Bombay L3688191 T 44.93895 -74.56773 2015-05-31 15:05:00 obsr408487 S23726989 Traveling P22 EBIRD 30.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306481106 2021-04-01 12:14:19.266649 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 4 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-03-30 15:00:00 obsr105122 S22608374 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311051304 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 15:26:00 obsr2519357 S22932735 Traveling P22 EBIRD 180.0 4.828 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299092099 2021-04-01 10:51:06.899622 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-02-22 14:00:00 obsr479109 S22033918 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311975421 2021-11-15 03:06:58.889978 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-21 18:29:00 obsr1548221 S22992012 Traveling P22 EBIRD 75.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314475384 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 07:00:00 obsr1312694 S23151790 Traveling P22 EBIRD 135.0 2.414 10.0 1 G1244719 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288596932 2021-11-09 18:18:59.267608 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Dutchess US-NY-027 28.0 Gardner Hollow Road, Beekman, NY L1397112 P 41.620436 -73.655507 2015-01-01 08:40:00 obsr2175245 S21150718 Traveling P22 EBIRD 110.0 8.047 3.0 1 G1091109 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323984495 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 37 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 06:35:00 obsr41879 S23707073 Traveling P22 EBIRD 279.0 2.414 4.0 1 G1296053 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322791006 2021-03-26 07:46:52.994574 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Albany International Airport--Sicker Rd. eastern side L2494355 H 42.751172 -73.801319 2015-05-25 11:15:00 obsr1201479 S23626748 Stationary P21 EBIRD 39.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314417509 2018-08-04 17:13:11 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Livingston US-NY-051 13.0 Home - Trails - Lima, NY L3408262 P 42.9316676 -77.6076794 2015-04-30 15:30:00 obsr912022 S23147791 Traveling P22 EBIRD 75.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309608139 2021-03-26 06:39:43.334073 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 30.0 103rd and Amsterdam L1302319 P 40.7985419 -73.9672136 2015-04-12 16:00:00 obsr2493447 S22833576 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309201953 2018-08-04 17:08:38 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Greene US-NY-039 13.0 Coxsackie Creek Grassland Preserve L293901 H 42.3734151 -73.8229966 2015-04-11 19:00:00 obsr1181085 S22807592 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318054770 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 25 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 07:00:00 obsr870166 S23354280 Traveling P22 EBIRD 176.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319659233 2021-03-19 16:10:30.527219 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Chemung US-NY-015 28.0 42.2246x-76.6738 - May 14, 2015, 4:48 PM L3643355 P 42.224625 -76.673782 2015-05-14 16:48:00 obsr2430746 S23444534 Traveling P22 EBIRD 69.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323119403 2021-03-23 17:26:08.495143 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-26 10:08:00 obsr873268 S23647659 Traveling P22 EBIRD 110.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319633502 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 08:30:00 obsr2448505 S23443088 Traveling P22 EBIRD 180.0 3.219 3.0 1 G1270840 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297096477 2021-04-01 12:32:15.282601 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-15 09:30:00 obsr2207991 S21857313 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309333888 2018-08-04 17:08:41 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southeast L879238 H 42.4674118 -76.4183235 2015-04-12 07:55:00 obsr887540 S22816164 Traveling P22 EBIRD 86.0 1.609 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308141493 2021-04-01 12:14:19.266649 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY Suffolk US-NY-103 US-NY_842 30.0 NY - Dune Road L1350953 P 40.7940609 -72.6463549 2015-04-06 17:15:00 obsr271871 S22729510 Traveling P22 EBIRD 45.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305713763 2018-08-04 17:04:24 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Steuben US-NY-101 13.0 12090 rt 54a L3519317 P 42.4372471 -77.1918511 2015-03-27 17:40:00 obsr2700440 S22550367 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312109063 2021-04-01 11:15:31.646886 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 3 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-04-22 06:00:00 obsr2233143 S23000644 Area P23 EBIRD 480.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290720199 2018-08-04 16:53:13 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-12 16:00:00 obsr2143830 S21322384 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292081389 2021-03-19 16:44:35.607263 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-19 09:55:00 obsr2155450 S21430461 Traveling P22 EBIRD 60.0 0.805 3.0 1 G1116014 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313171003 2021-04-01 12:32:15.282601 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-26 09:30:00 obsr2207991 S23070224 Traveling P22 EBIRD 150.0 3.219 35.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288682140 2021-03-26 08:05:20.615241 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum N 5 United States US New York US-NY Onondaga US-NY-067 13.0 Skan - 5 E. Lake St L631480 P 42.9468657 -76.4167383 2015-01-03 08:05:00 obsr2279567 S21157332 Stationary P21 EBIRD 53.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311160063 2016-01-27 15:21:38 447 species avibase-C235A4D7 Gadwall Mareca strepera X United States US New York US-NY Tompkins US-NY-109 28.0 125C Yellow Barn Rd. L1044911 P 42.4758637 -76.3421112 2015-04-18 07:00:00 obsr2001485 S22939323 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296339686 2021-03-22 09:15:15.32301 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 2 United States US New York US-NY Niagara US-NY-063 13.0 Hulbert Rd L3356765 P 43.2894675 -78.8795936 2015-02-11 14:30:00 obsr66866 S21789792 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304836543 2021-04-01 11:30:42.037277 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 19 United States US New York US-NY New York US-NY-061 East River, Brooklyn Bridge to S.I. Ferry L3339003 H 40.7039737 -74.0059423 2015-03-23 08:01:00 obsr2179748 S22481826 Traveling P22 EBIRD 56.0 3.106 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309703091 2021-03-26 06:07:45.516082 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo -- NW perimeter (Restricted Access) L3396578 P 40.8546937 -73.8800722 2015-04-13 10:45:00 obsr128156 S22840563 Traveling P22 EBIRD 15.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295927446 2021-03-24 20:33:47.533911 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Farm Pond Circle L2080608 P 42.5383387 -76.4633042 2015-02-10 08:00:00 obsr596741 S21755421 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321739235 2015-05-21 15:28:33 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 Chase Road-North Curve L3661753 P 43.3296107 -77.8449798 2015-05-21 10:10:00 obsr2504709 S23563721 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319728779 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-14 11:40:00 obsr516108 S23448599 Traveling P22 EBIRD 480.0 2.575 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290839811 2021-04-01 12:32:15.282601 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-01-13 08:07:00 obsr916033 S21331552 Traveling P22 EBIRD 38.0 3.219 4.0 1 G1108280 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304757408 2022-02-17 14:32:23.002448 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-22 13:15:00 obsr1659461 S22476255 Traveling P22 EBIRD 105.0 5.633 3.0 0 G1189250 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308926010 2021-03-24 20:53:39.352228 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Albany US-NY-001 13.0 Lions L2803969 P 42.772447 -73.80926 2015-04-10 13:26:00 obsr648176 S22789078 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302965024 2021-03-24 20:33:47.533911 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Tompkins US-NY-109 13.0 206 Tareyton Drive, Ithaca L141039 P 42.471756 -76.4603653 2015-03-08 10:30:00 obsr620377 S22337746 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295314446 2022-02-08 17:27:20.632176 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 194 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-06 16:44:00 obsr2173269 S21706965 Stationary P21 EBIRD 56.0 3.0 0 G1137102 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290840186 2021-04-01 12:32:15.282601 337 species avibase-694C127A Mute Swan Cygnus olor X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Theodore Roosevelt Nature Center L1029227 H 40.5885208 -73.546552 2015-01-13 09:42:00 obsr916033 S21331592 Traveling P22 EBIRD 36.0 0.322 4.0 1 G1108283 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309672610 2021-11-09 19:29:38.205585 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 S C2 S United States US New York US-NY Orange US-NY-071 US-NY_853 28.0 Sterling Forest SP--Sterling Lake Loop Trail L1195768 H 41.202942 -74.2522862 2015-04-12 11:30:00 obsr272939 S22838649 Traveling P22 EBIRD 150.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314919287 2021-03-26 06:29:56.44369 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-05-02 12:15:00 obsr1561508 S23178164 Stationary P21 EBIRD 30.0 2.0 1 G1247352 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311174203 2016-10-01 10:12:48 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Seneca US-NY-099 13.0 Wyers Point and Wyers Point Rd. L285461 H 42.6736408 -76.7156979 2015-04-19 09:32:00 obsr1092576 S22940200 Traveling P22 EBIRD 13.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306612008 2021-03-24 21:06:05.39641 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson River Park (private) L3498350 H 43.2032416 -76.2825651 2015-03-31 16:34:00 obsr2224244 S22618671 Stationary P21 EBIRD 208.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319390108 2021-04-01 11:30:42.037277 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-12 19:00:00 obsr1310902 S23429015 Historical P62 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316560932 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-06 06:00:00 obsr2233143 S23270200 Area P23 EBIRD 540.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296692470 2015-02-14 11:09:51 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-02-14 07:20:00 obsr646558 S21821513 Stationary P21 EBIRD 85.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314822026 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-01 06:08:00 obsr2595828 S23172801 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314592348 2021-03-30 19:07:52.958398 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 09:30:00 obsr2796494 S23159165 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314591042 2021-04-01 11:30:42.037277 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 17:35:00 obsr2796494 S23159102 Traveling P22 EBIRD 120.0 1.931 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316231048 2021-03-24 20:57:12.785944 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Chenango US-NY-017 28.0 Thornridge Ln L2607254 P 42.3340813 -75.7816368 2015-05-05 06:30:00 obsr1577090 S23251383 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311541928 2021-03-30 19:29:33.633096 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-19 08:35:00 obsr1987335 S22962756 Rusty Blackbird Spring Migration Blitz P41 EBIRD 70.0 1.609 2.0 1 G1228234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323168261 2015-11-10 16:00:02 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 1 United States US New York US-NY Monroe US-NY-055 13.0 Morton Road Fields L3675435 P 43.3278625 -77.9767084 2015-05-26 09:35:00 obsr2504709 S23650976 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292664359 2021-03-30 06:01:28.020715 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 4 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-01-22 13:48:00 obsr2224244 S21496893 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301771592 2015-03-09 12:15:02 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 1 United States US New York US-NY Suffolk US-NY-103 30.0 US-NY-Calverton-30-184 Riley Ave L3466344 P 40.931998 -72.744978 2015-03-08 15:02:00 obsr613775 S22239326 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324226203 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 Webster Park L164450 H 43.2575016 -77.4515302 2015-05-23 09:15:00 obsr2966702 S23722326 Traveling P22 EBIRD 120.0 2.253 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309706594 2021-03-30 19:07:52.958398 11536 issf avibase-139C813E Merlin Falco columbarius Merlin (Taiga) Falco columbarius columbarius N 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-12 11:00:00 obsr1289811 S22840766 Traveling P22 EBIRD 150.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313585612 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-27 09:00:00 obsr139757 S23095955 Traveling P22 EBIRD 195.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985666 2021-11-09 19:34:18.590596 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia N 7 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-01-24 14:20:00 obsr1665312 S21521957 Stationary P21 EBIRD 165.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319779345 2021-04-01 11:15:31.646886 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-15 05:13:00 obsr1189028 S23451699 Traveling P22 EBIRD 193.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311297695 2021-03-19 16:19:20.977326 303 species avibase-B59E1863 Canada Goose Branta canadensis 14 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-19 08:20:00 obsr2071643 S22947665 Traveling P22 EBIRD 245.0 2.414 3.0 1 G1226244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309517492 2021-03-26 06:59:15.841579 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 Unknown Sex, Adult (1) United States US New York US-NY Oswego US-NY-075 13.0 Oneida Lake, Constantia (Mill St. parking area) L2196011 H 43.2463281 -76.0001457 2015-04-12 08:00:00 obsr2409011 S22827614 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324242653 2021-04-01 11:15:31.646886 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-31 10:05:00 obsr2277801 S23723468 Historical P62 EBIRD 170.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311413215 2021-03-30 19:22:51.561415 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 150 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-04-19 09:50:00 obsr1982614 S22954815 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306734635 2021-11-09 19:21:07.406501 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-04-01 08:00:00 obsr671490 S22627775 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305141016 2021-11-09 18:45:26.715104 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Dutchess US-NY-027 28.0 Fishkill Cemetery L3512759 P 41.5418872 -73.9036426 2015-03-24 11:25:00 obsr979921 S22506087 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323599452 2021-04-01 11:15:31.646886 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-28 07:30:00 obsr2078092 S23679818 Traveling P22 EBIRD 360.0 6.437 14.0 1 G1294122 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317652566 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 26 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 06:00:00 obsr1760429 S23332547 Traveling P22 EBIRD 600.0 0.805 2.0 1 G1262228 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307142646 2021-04-01 10:47:08.851048 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-02 12:05:00 obsr2887137 S22658330 Traveling P22 EBIRD 120.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295442011 2021-11-09 20:12:16.773384 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 9 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-02-07 07:42:00 obsr1912104 S21717497 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298224595 2021-03-26 06:55:00.227271 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 6 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-02-17 obsr1338126 S21958308 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319586696 2021-03-26 06:21:54.883933 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 07:15:00 obsr1077730 S23440454 Traveling P22 EBIRD 285.0 4.828 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315579058 2021-11-15 03:06:58.889978 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 13:50:00 obsr516108 S23213853 Traveling P22 EBIRD 340.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291910735 2021-03-26 08:05:20.615241 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Onondaga US-NY-067 13.0 Pompey Estey Rd L2720155 P 42.905839 -75.9615326 2015-01-18 12:10:00 obsr2290617 S21416964 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307924117 2021-03-26 07:30:35.289997 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Allan Treman State Marine Park L3542613 P 42.46125 -76.5155053 2015-04-05 16:30:00 obsr2535282 S22714008 Traveling P22 EBIRD 90.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313808354 2021-03-23 16:52:36.900075 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N X United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Pine Neck Sanctuary L122956 H 40.84111 -72.56528 2015-04-28 12:45:00 obsr1693806 S23110290 Traveling P22 EBIRD 40.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315684494 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 10 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-02 10:50:00 obsr1987335 S23219768 Traveling P22 EBIRD 66.0 3.219 2.0 1 G1251016 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309238033 2021-11-09 21:50:48.44865 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-11 14:00:00 obsr1588136 S22810024 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871201 2021-03-26 07:56:20.588749 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-16 09:00:00 obsr2218212 S21672034 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311235491 2019-03-11 14:43:15 337 species avibase-694C127A Mute Swan Cygnus olor X United States US New York US-NY Seneca US-NY-099 13.0 Rt. 89 near Schuyler Creek L805638 H 42.803374 -76.7630877 2015-04-19 12:28:00 obsr1092576 S22943880 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291380693 2021-04-01 11:24:19.637193 662 species avibase-FB738385 Bufflehead Bucephala albeola N 12 United States US New York US-NY Monroe US-NY-055 Summerville Pier L275794 H 43.25659 -77.60215 2015-01-16 15:50:00 obsr528918 S21375721 Traveling P22 EBIRD 50.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300696343 2021-03-24 19:27:13.077399 11528 species avibase-F3DA111C Merlin Falco columbarius 13 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-01 08:43:00 obsr1334267 S22156296 Traveling P22 EBIRD 24.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323977053 2021-03-30 19:13:38.458673 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 3 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-05-30 12:29:00 obsr1243175 S23706644 Traveling P22 EBIRD 8.0 0.322 2.0 1 G1296008 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292940655 2021-04-01 11:15:31.646886 447 species avibase-C235A4D7 Gadwall Mareca strepera 16 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-01-24 10:16:00 obsr870166 S21518636 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291495798 2021-04-01 12:14:19.266649 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-17 08:30:00 obsr547602 S21385063 Traveling P22 EBIRD 60.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299015559 2021-03-24 21:06:05.39641 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 5 United States US New York US-NY Onondaga US-NY-067 13.0 Home L1479128 P 43.1502997 -76.3703906 2015-02-22 13:00:00 obsr2172593 S22025532 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318035310 2021-11-09 17:58:40.313796 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-10 06:15:00 obsr2175245 S23353219 Traveling P22 EBIRD 179.0 5.069 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315996287 2021-04-01 10:52:54.724403 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Columbia US-NY-021 14.0 Austerlitz L207556 P 42.3036668 -73.5189287 2015-05-04 07:30:00 obsr712039 S23237330 Traveling P22 EBIRD 150.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292512252 2018-08-04 16:54:48 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Rd., Tiana Beach L821838 H 40.8307941 -72.5177908 2015-01-21 08:15:00 obsr1160328 S21484916 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310950038 2021-03-30 19:29:33.633096 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-18 08:30:00 obsr706483 S22926378 Traveling P22 EBIRD 210.0 6.437 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288725934 2019-07-23 17:26:40 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 35 United States US New York US-NY Erie US-NY-029 13.0 Evangola SP L300496 H 42.6085236 -79.1111807 2015-01-03 08:00:00 obsr2871264 S21161144 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296680389 2015-03-03 10:02:11 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 13 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-02-14 08:30:00 obsr1792012 S21820311 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290978949 2021-11-09 17:56:58.743752 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 3 United States US New York US-NY Dutchess US-NY-027 13.0 Haight Road, Millbrook, NY L1143777 P 41.8132907 -73.6437607 2015-01-04 09:00:00 obsr1062217 S21342931 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305776052 2021-11-09 21:05:39.932967 352 spuh avibase-F9EC83D6 swan sp. Cygnus sp. 2 United States US New York US-NY Rockland US-NY-087 30.0 Memorial Park, Nyack L3520088 P 41.087594 -73.915859 2015-03-28 12:15:00 obsr1481911 S22555260 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311743563 2021-04-01 12:35:52.669792 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Onondaga US-NY-067 13.0 Oakwood Cemetery, Syracuse L804219 H 43.0320078 -76.1340523 2015-04-20 16:00:00 obsr1481464 S22976786 Traveling P22 EBIRD 57.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322035028 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-22 09:00:00 obsr2028250 S23582817 Traveling P22 EBIRD 120.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302859486 2021-03-30 19:29:33.633096 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 1 United States US New York US-NY Suffolk US-NY-103 US-NY_847 30.0 Blydenburgh Park L524406 H 40.8353508 -73.220264 2015-03-10 13:30:00 obsr2852365 S22329117 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314307076 2021-04-01 12:26:53.827486 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 P C3 P Female, Adult (1); Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-04-30 06:13:00 obsr2512689 S23141428 Traveling P22 EBIRD 127.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315963106 2021-03-24 20:58:53.646623 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-04 13:30:00 obsr72341 S23235118 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306025966 2021-03-30 12:05:58.533651 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 4 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-29 08:50:00 obsr2519357 S22573475 Traveling P22 EBIRD 260.0 4.828 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305309217 2021-11-09 20:43:00.251506 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Putnam US-NY-079 US-NY_868 28.0 Breakneck Brook L3514792 P 41.4493268 -73.9619458 2015-03-25 11:00:00 obsr1787323 S22519071 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317618181 2021-05-05 15:43:39.075206 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 50 United States US New York US-NY New York US-NY-061 Liberty Island/Statue of Liberty (NY County) L2686238 H 40.6900653 -74.0452476 2015-05-08 09:15:00 obsr1932533 S23330650 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318652045 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-11 12:15:00 obsr647628 S23386429 Traveling P22 EBIRD 150.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314179682 2021-04-01 11:47:43.260314 6167 spuh avibase-7FC8B7ED shorebird sp. Charadriiformes sp. 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-26 07:00:00 obsr1831959 S23133369 Traveling P22 EBIRD 420.0 0.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306141306 2021-03-23 17:00:13.087107 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Tompkins US-NY-109 13.0 Newman Municipal Golf Course L2158758 H 42.4561318 -76.5052153 2015-03-29 07:45:00 obsr324569 S22582061 Traveling P22 EBIRD 165.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310737367 2021-04-01 11:15:31.646886 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna N 4 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-17 16:30:00 obsr2796494 S22912681 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291571072 2021-03-19 16:44:35.607263 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-01-17 15:30:00 obsr2290061 S21390998 Traveling P22 EBIRD 45.0 3.219 2.0 1 G1112901 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS295428154 2021-03-23 16:52:36.900075 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 1 United States US New York US-NY Suffolk US-NY-103 30.0 North Fork Preserve L1421657 H 40.97294 -72.6178146 2015-02-07 14:00:00 obsr1982614 S21716172 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311821878 2021-04-01 11:30:42.037277 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-20 17:00:00 obsr1289811 S22982102 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320708929 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-11 07:15:00 obsr2235775 S23500892 Traveling P22 EBIRD 150.0 4.828 3.0 1 G1267396 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288376288 2021-03-26 06:38:32.090082 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Montgomery US-NY-057 13.0 Otsquago Club Rd L2578072 P 42.9487583 -74.6281636 2015-01-01 11:50:00 obsr1708031 S21132263 Traveling P22 EBIRD 28.0 6.437 2.0 1 G1105365 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291403377 2022-02-17 14:32:23.002448 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-17 07:25:00 obsr152435 S21377490 Traveling P22 EBIRD 70.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304736728 2015-03-22 19:56:32 26109 species avibase-BAC33609 Brown Creeper Certhia americana 4 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L2146812 P 42.09197 -76.06111 2015-03-22 16:25:00 obsr290506 S22474885 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316310678 2021-03-26 06:17:19.712573 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata X United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-02 10:30:00 obsr1379161 S23256051 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521296 2021-04-01 10:49:39.496318 11371 species avibase-75600969 Northern Flicker Colaptes auratus 40 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 11:01:00 obsr869999 S21306333 Stationary P21 EBIRD 4.0 1.0 1 G1105901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321780623 2021-03-26 06:21:54.883933 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-21 07:15:00 obsr1077730 S23566358 Traveling P22 EBIRD 270.0 3.219 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310537617 2021-03-26 06:12:17.833181 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-04-16 08:00:00 obsr479109 S22899444 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309387063 2018-08-04 17:08:44 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Suffolk US-NY-103 Shirley Marina County Park L2904736 H 40.742562 -72.8714852 2015-04-12 08:39:00 obsr1107696 S22819391 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313334686 2021-04-01 10:55:39.308231 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N X United States US New York US-NY Erie US-NY-029 13.0 Erie County L3588872 P 42.94904 -78.687961 2015-04-25 10:32:00 obsr2945658 S23080186 Incidental P20 EBIRD 3.0 1 G1236724 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369674671 2021-03-26 07:56:20.588749 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Nassau US-NY-059 Garvies Point Preserve L1770439 H 40.8600466 -73.6510118 2015-05-06 09:30:00 obsr1815722 S27204918 Traveling P22 EBIRD 120.0 1.609 12.0 1 G1254776 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291995825 2021-03-23 16:48:08.60516 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 20 United States US New York US-NY Seneca US-NY-099 13.0 Finger Lakes Regional Airport L3284263 H 42.8787599 -76.783458 2015-01-19 07:30:00 obsr2683910 S21423841 Traveling P22 EBIRD 25.0 6.437 2.0 1 G1116155 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308614933 2021-03-30 19:22:51.561415 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-04-08 10:47:00 obsr1982614 S22765799 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308081512 2021-03-23 17:00:13.087107 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 15 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--Snyder Rd. L763841 H 42.4976053 -76.4600587 2015-04-06 16:59:00 obsr2211210 S22724924 Traveling P22 EBIRD 34.0 0.322 2.0 1 G1208554 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302621738 2021-11-15 03:06:58.889978 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-12 08:45:00 obsr1555046 S22311420 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1186131 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308723691 2021-04-01 11:54:40.172593 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-09 08:00:00 obsr396989 S22774466 Traveling P22 EBIRD_NJ 375.0 6.116 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305046000 2021-03-30 12:05:58.533651 592 species avibase-3072CC16 Redhead Aythya americana N 7 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Perimeter L6344430 P 40.658164 -73.991383 2015-03-24 07:12:00 obsr839844 S22498785 Traveling P22 EBIRD 7.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296646674 2021-03-23 17:00:13.087107 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Tompkins US-NY-109 13.0 EcoVillage Backyard L3365484 P 42.441246 -76.544174 2015-02-14 08:36:00 obsr1997264 S21817092 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311835300 2021-03-26 07:17:57.136956 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Seneca US-NY-099 13.0 Rt. 89 near Schuyler Creek L805638 H 42.803374 -76.7630877 2015-04-19 13:15:00 obsr2683910 S22982983 Traveling P22 EBIRD 109.0 0.644 2.0 1 G1230139 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322595452 2021-03-26 06:29:56.44369 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-24 17:11:00 obsr1696616 S23614769 Traveling P22 EBIRD 54.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288272512 2021-03-23 17:32:20.03109 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-01 07:15:00 obsr2143830 S21123775 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309050631 2018-08-04 17:08:26 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 thacher marsh L2786248 P 42.64246 -74.01607 2015-04-11 07:45:00 obsr777630 S22797888 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318056328 2021-05-01 05:40:50.213405 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-09 04:14:00 obsr1821546 S23354375 Traveling P22 EBIRD 28.0 0.805 4.0 1 G1260338 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310964757 2021-04-01 12:32:15.282601 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-18 11:30:00 obsr547602 S22927328 Traveling P22 EBIRD 120.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324567183 2021-03-26 06:52:34.887371 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 25 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-04-27 10:00:00 obsr2141910 S23745024 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294660231 2018-08-04 16:55:34 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park--Muscota Marsh L2697698 H 40.8740092 -73.918705 2015-02-01 11:25:00 obsr1548221 S21654541 Traveling P22 EBIRD 13.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304458014 2021-03-24 20:33:47.533911 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Tompkins US-NY-109 13.0 Salt Point Natural Area L353038 H 42.5394116 -76.5496267 2015-03-21 08:55:00 obsr241086 S22454154 Stationary P21 EBIRD 33.0 10.0 1 G1187140 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354162 2021-03-26 06:11:29.8335 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr2683910 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292142544 2019-01-03 10:54:11 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 100 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-20 11:30:00 obsr706483 S21435429 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291729055 2018-08-04 16:53:57 7261 species avibase-86D45B8F Green Heron Butorides virescens 3 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Honeoye Creek Trail Behind Library L3301565 P 42.7909235 -77.5149548 2015-01-18 12:24:00 obsr39511 S21403036 Traveling P22 EBIRD 23.0 0.531 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316291542 2021-03-19 16:32:34.732091 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 07:30:00 obsr2363365 S23254906 Traveling P22 EBIRD 360.0 4.828 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288479291 2021-03-30 06:01:28.020715 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-02 12:38:00 obsr59643 S21140807 Stationary P21 EBIRD 32.0 2.0 1 G1090923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303616548 2021-11-09 20:59:08.238638 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-03-16 15:15:00 obsr1055148 S22389242 Traveling P22 EBIRD 45.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300055027 2021-03-30 19:39:10.250398 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 50 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-02-27 08:30:00 obsr2814122 S22107884 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304695527 2021-11-15 03:06:58.889978 662 species avibase-FB738385 Bufflehead Bucephala albeola 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-21 11:48:00 obsr93451 S22471788 Traveling P22 EBIRD 120.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1268099762 2021-12-29 19:49:49.81585 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Erie US-NY-029 13.0 University at Buffalo (North Campus) L6275102 H 43.0008539 -78.7889698 2015-05-14 07:40:00 obsr2155450 S96907161 Traveling P22 EBIRD 35.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319420449 2022-02-17 14:32:23.002448 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-12 11:48:00 obsr2363365 S23430791 Traveling P22 EBIRD 145.0 3.219 4.0 1 G1269781 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306576153 2021-03-26 06:09:25.361188 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Maine-2-44 Cherry Valley Hill Rd L3528746 P 42.271521 -76.055856 2015-03-31 16:33:00 obsr1764243 S22615695 Stationary P21 EBIRD 84.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320744374 2015-05-17 21:50:48 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-05-17 05:10:00 obsr1044068 S23502835 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304930539 2021-03-19 15:59:05.496822 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Allegany US-NY-003 28.0 Cuba Lake L1326387 H 42.2508599 -78.2923025 2015-03-23 12:25:00 obsr1310178 S22489484 Traveling P22 EBIRD 11.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311159742 2021-03-24 20:33:47.533911 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Tompkins US-NY-109 13.0 411 Warren Rd. L5045106 P 42.4682762 -76.4646808 2015-04-19 08:05:00 obsr1042912 S22939300 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307967639 2021-04-01 10:47:08.851048 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 3 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-06 10:35:00 obsr800690 S22717131 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317573330 2021-03-24 19:48:44.880783 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-09 07:53:00 obsr2817239 S23328310 Traveling P22 EBIRD 102.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316265724 2021-11-09 21:05:39.574432 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 6 United States US New York US-NY Rockland US-NY-087 30.0 Reed Pond, Pfizer Campus L3457488 P 41.0781219 -74.0227246 2015-04-29 08:20:00 obsr2346161 S23253456 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312801396 2019-01-03 22:08:58 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Essex US-NY-031 13.0 Mt. Defiance L2814714 H 43.8313207 -73.406589 2015-04-23 07:15:00 obsr2693145 S23048404 Traveling P22 EBIRD 59.0 0.644 2.0 1 G1235054 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312681889 2021-11-09 19:47:28.242585 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR - Winding River Trail L2367403 P 41.2883842 -74.5329666 2015-04-16 17:00:00 obsr1872991 S23040732 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317395657 2021-04-01 11:30:42.037277 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY New York US-NY-061 Randalls Island--NE fields and shoreline L1785381 H 40.7943072 -73.9138235 2015-05-06 05:45:00 obsr259298 S23317452 Traveling P22 EBIRD 45.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295826606 2021-04-01 11:24:19.637193 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 12 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-02-08 07:50:00 obsr1243175 S21747159 Incidental P20 EBIRD 2.0 1 G1141257 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116530 2021-03-23 16:39:03.255227 591 species avibase-1929E1E1 Canvasback Aythya valisineria 37 United States US New York US-NY Richmond US-NY-085 29.0 Tottenville Train Station (Ellis St.), Arthur Kill L884454 H 40.5136228 -74.2521407 2015-01-01 09:42:00 obsr1958124 S21110534 Traveling P22 EBIRD 8.0 0.016 2.0 1 G1088912 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289194480 2018-08-04 16:52:43 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 16 United States US New York US-NY Suffolk US-NY-103 30.0 Lily Pond L1317861 P 40.9376369 -72.2124481 2015-01-04 10:30:00 obsr2883401 S21200038 Stationary P21 EBIRD 15.0 2.0 1 G1096504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316858641 2018-08-06 22:29:07 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 GHS L3402141 P 42.6977028 -73.967042 2015-05-07 11:40:00 obsr2270510 S23286928 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309948302 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-14 06:34:00 obsr150415 S22858399 Traveling P22 EBIRD 175.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312870219 2018-02-01 15:11:46 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Cortland US-NY-023 28.0 AviCor1 L3513941 H 42.6076737 -75.8867458 2015-04-25 11:43:00 obsr620377 S23047109 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293340395 2021-03-23 17:00:13.087107 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus N 3 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Owen's platform boardwalk (0.03km) L301741 P 42.4810062 -76.4511417 2015-01-26 08:15:00 obsr2307843 S21549468 Traveling P22 EBIRD 5.0 0.02 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308331835 2018-08-04 17:08:02 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 6 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-2080R Lake Rd L3546997 P 42.127087 -76.804323 2015-04-07 18:26:00 obsr1828453 S22744182 Stationary P21 EBIRD 4.0 4.0 1 G1210646 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293035128 2022-01-30 05:59:21.134541 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Feeders Only L1037405 H 40.6580479 -73.9676857 2015-01-24 14:30:00 obsr2908667 S21525666 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296377985 2021-03-26 06:09:25.361188 341 species avibase-B86C504C Trumpeter Swan Cygnus buccinator 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-02-13 08:00:00 obsr879105 S21792779 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299750148 2021-04-01 12:32:15.282601 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-26 09:30:00 obsr2534001 S22084166 Traveling P22 EBIRD 180.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313261156 2015-04-26 18:36:36 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-04-26 14:10:00 obsr1410564 S23075528 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300603508 2021-04-01 12:32:15.282601 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-01 08:00:00 obsr271871 S22149549 Traveling P22 EBIRD 210.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303077405 2021-03-24 19:23:17.886063 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 4 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-03-14 15:17:00 obsr2945658 S22346687 Traveling P22 EBIRD 26.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309593772 2021-11-09 21:31:40.219848 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 10 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-12 15:30:00 obsr610423 S22832663 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301880184 2022-02-17 14:32:23.002448 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-08 16:30:00 obsr1077730 S22247471 Traveling P22 EBIRD 165.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303076198 2021-04-01 12:18:57.910168 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 4 United States US New York US-NY Tompkins US-NY-109 13.0 Milliken Station L99617 H 42.59868 -76.6335418 2015-03-14 14:44:00 obsr730231 S22346583 Traveling P22 EBIRD 28.0 1.448 2.0 1 G1179146 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303172160 2021-03-26 08:13:27.160698 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Tioga US-NY-107 28.0 Dartts Rd, Spencer L3199225 P 42.202185 -76.52114 2015-03-13 08:25:00 obsr1828453 S22354050 Traveling P22 EBIRD 15.0 0.483 2.0 1 G1179990 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293860936 2021-04-01 12:32:15.282601 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-01-29 09:45:00 obsr247620 S21591653 Traveling P22 EBIRD 225.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290307499 2021-04-28 05:26:15.958627 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park--Southwest L154031 H 40.593426 -73.92352 2015-01-10 13:44:00 obsr2404047 S21289138 Traveling P22 EBIRD 134.0 1.979 2.0 1 G1105751 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313112407 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 07:12:00 obsr2031586 S23066824 Traveling P22 EBIRD 297.0 7.242 30.0 1 G1241310 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314777733 2021-03-24 20:53:39.352228 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-01 18:10:00 obsr2512689 S23170134 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289892593 2015-01-15 10:49:08 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Steuben US-NY-101 13.0 54A Between Hammondsport and Branchport L2570785 P 42.4641785 -77.1813583 2015-01-08 14:00:00 obsr1602357 S21255307 Traveling P22 EBIRD 50.0 19.312 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321439146 2018-08-06 22:30:37 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Nassau US-NY-059 US-NY_872 30.0 Muttontown Preserve L250511 H 40.8315708 -73.5416646 2015-05-20 07:45:00 obsr1578741 S23545659 Traveling P22 EBIRD 180.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299184063 2021-03-26 07:30:35.289997 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Tompkins US-NY-109 13.0 my back yard Trumansburg L2594789 P 42.5410818 -76.6596392 2015-02-23 10:30:00 obsr2260025 S22040891 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313489168 2021-03-26 07:51:58.821109 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Chenango US-NY-017 28.0 Afton, NY L3538730 P 42.2255156 -75.5192041 2015-04-27 08:00:00 obsr1544235 S23090183 Stationary P21 EBIRD 210.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319901567 2021-03-26 07:56:20.588749 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park L693342 P 40.6618894 -73.719635 2015-05-15 14:00:00 obsr2505956 S23458170 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314588243 2018-12-30 09:59:22 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Albany US-NY-001 13.0 Mohawk-Hudson Bike-Hike Trail, Mohawk Riverside Landing Park L2584161 H 42.7739949 -73.816349 2015-05-01 10:14:00 obsr2321296 S23158919 Traveling P22 EBIRD 75.0 0.644 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305154086 2021-04-01 11:54:40.172593 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-03-23 14:03:00 obsr1032565 S22507163 Traveling P22 EBIRD 139.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317968878 2015-05-10 05:36:43 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Essex US-NY-031 13.0 Webb Royce Swamp L143226 H 44.2471742 -73.380416 2015-05-07 15:35:00 obsr822321 S23349708 Traveling P22 EBIRD 85.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307097843 2021-03-26 07:30:35.289997 33034 species avibase-6283E61E Pine Warbler Setophaga pinus X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-03 07:12:00 obsr1092576 S22654927 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312345141 2021-03-26 06:21:54.883933 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 12 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-23 11:09:00 obsr1821546 S23016627 Traveling P22 EBIRD 62.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317130135 2021-03-19 16:06:54.047432 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-05-08 06:22:00 obsr1655171 S23302367 Traveling P22 EBIRD 7.0 0.322 2.0 1 G1268053 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294695556 2021-04-01 11:30:42.037277 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 1 United States US New York US-NY New York US-NY-061 30.0 US-NY-New York-3147 Broadway L3335832 P 40.814259 -73.959564 2015-02-02 12:10:00 obsr320660 S21657015 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324145324 2018-08-06 22:31:11 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Madison US-NY-053 13.0 Nelson Swamp Unique Area L929405 H 42.8909559 -75.8255553 2015-05-26 09:23:00 obsr1167884 S23717322 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290706246 2021-03-24 20:23:39.258075 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 30 United States US New York US-NY Suffolk US-NY-103 30.0 Cove Hollow Farm L786267 P 40.9400884 -72.2210312 2015-01-11 13:00:00 obsr1460516 S21321240 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291500059 2021-03-23 17:37:19.520785 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 Unknown Sex, Immature (1) United States US New York US-NY Saratoga US-NY-091 13.0 Flight Lock Rd., Waterford boat launch L3257879 H 42.8074604 -73.7144208 2015-01-17 12:38:00 obsr2512689 S21385405 Stationary P21 EBIRD 32.0 2.0 1 G1112278 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320484674 2021-11-09 19:19:16.74786 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Dutchess US-NY-027 13.0 Tivoli Bays - Kidd Lane L902373 P 42.0455003 -73.906703 2015-05-17 09:00:00 obsr2954986 S23489044 Traveling P22 EBIRD 80.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303930084 2021-03-30 19:07:52.958398 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-01 13:30:00 obsr2182516 S22413715 Traveling P22 EBIRD 70.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306472269 2021-11-09 18:58:19.805596 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 25 United States US New York US-NY Dutchess US-NY-027 13.0 Mills-Norrie SP--Norrie Point L450314 H 41.8326889 -73.9417694 2015-03-30 17:00:00 obsr2175245 S22607750 Stationary P21 EBIRD 30.0 2.0 1 G1199248 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314704427 2021-03-26 06:39:43.334073 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Greywacke Arch L2179946 H 40.7792619 -73.9657742 2015-05-01 08:19:00 obsr1548221 S23165526 Traveling P22 EBIRD 18.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312515286 2021-03-23 17:15:00.080143 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 8 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--South Butler Unit L781099 H 43.1302738 -76.777482 2015-04-24 10:14:00 obsr1721609 S23028232 Stationary P21 EBIRD 72.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319596569 2021-03-26 07:46:52.994574 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-05-14 15:02:00 obsr2270510 S23441006 Traveling P22 EBIRD 5.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288130926 2021-03-24 20:33:47.533911 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-201-299 Lower Creek Rd L3252426 P 42.477048 -76.406091 2015-01-01 09:41:00 obsr1008519 S21111592 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288132860 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 9 United States US New York US-NY Monroe US-NY-055 13.0 4 Woodside Drive, Penfield, NY L868257 P 43.1235553 -77.4714392 2015-01-01 10:05:00 obsr2716898 S21111761 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314543822 2021-03-24 19:28:50.176616 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Columbia US-NY-021 13.0 Glenco Mills L2428181 P 42.1436143 -73.742466 2015-04-30 16:00:00 obsr481595 S23156215 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311254530 2021-11-09 19:01:40.008558 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-04-19 08:08:00 obsr2175245 S22945088 Traveling P22 EBIRD 164.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310665121 2017-05-07 22:30:53 30494 species avibase-240E3390 House Sparrow Passer domesticus 11 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-04-17 12:50:00 obsr2588479 S22907843 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298514751 2021-04-28 05:22:52.046239 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park--Southwest L154031 H 40.593426 -73.92352 2015-02-19 09:15:00 obsr2603801 S21983577 Traveling P22 EBIRD 180.0 4.828 2.0 1 G1153318 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307787765 2022-02-17 14:32:23.002448 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-05 13:20:00 obsr454647 S22703957 Traveling P22 EBIRD 140.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302112391 2015-03-09 23:42:39 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Herkimer US-NY-043 13.0 Platform Road - Town of Fairfield L622941 P 43.1581106 -74.9605751 2015-03-09 11:35:00 obsr1000124 S22265017 Traveling P22 EBIRD 8.0 6.598 3.0 1 G1173374 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313268087 2021-04-01 11:24:19.637193 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Monroe US-NY-055 13.0 Harwick Rd., Irondequoit (Varied Thrush 2015) L3592824 H 43.1740003 -77.5539672 2015-04-26 13:00:00 obsr2223307 S23075981 Traveling P22 EBIRD 120.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316072851 2015-10-17 16:11:51 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-05 10:30:00 obsr1885846 S23241804 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291343938 2021-03-30 19:07:52.958398 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-16 15:00:00 obsr1077730 S21372777 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298429181 2018-08-04 16:56:10 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY US-NY_1726 13.0 Montezuma NWR (general area) L246782 H 42.9833651 -76.7562389 2015-02-12 16:09:00 obsr138057 S21976424 Traveling P22 EBIRD_PA 45.0 16.093 3.0 1 G1146336 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305785910 2021-11-15 03:06:58.889978 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-22 11:30:00 obsr839844 S22555779 Traveling P22 EBIRD 165.0 1.609 2.0 1 G2662569 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308955238 2018-08-04 17:08:20 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Saratoga US-NY-091 13.0 Wrights Loop L691715 H 42.9902551 -73.6132237 2015-04-10 10:20:00 obsr2533499 S22791276 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292949121 2021-03-30 19:29:33.633096 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Coopers Neck Pond L1314522 H 40.8665357 -72.4021339 2015-01-24 15:45:00 obsr1864342 S21519356 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290213610 2021-03-30 13:50:38.713554 681 species avibase-407E2CA8 Common Merganser Mergus merganser 8 United States US New York US-NY Suffolk US-NY-103 30.0 Swan Lake, East Patchogue L279859 H 40.770108 -72.9932633 2015-01-10 15:30:00 obsr1107696 S21281322 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318120661 2021-03-26 06:29:56.44369 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Monroe US-NY-055 13.0 Home L389912 P 43.1355744 -77.5996113 2015-05-10 12:40:00 obsr1124114 S23357654 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1193937447 2021-07-03 00:06:56.829346 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Monroe US-NY-055 13.0 Brockport, NY - Sarah's Garden Center L1563734 P 43.2204667 -77.9191206 2015-05-24 14:30:00 obsr2344688 S91151188 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309157615 2021-03-26 06:52:34.887371 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-03-07 10:00:00 obsr2141910 S22804620 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306086886 2021-03-30 19:07:52.958398 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-29 13:30:00 obsr1407710 S22577846 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1196641 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309501130 2021-03-24 20:58:53.646623 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3558901 P 42.693501 -77.711644 2015-04-12 07:19:00 obsr682121 S22826504 Stationary P21 EBIRD 644.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315917489 2021-03-26 06:29:56.44369 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 2 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-03 07:30:00 obsr2449897 S23232509 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322890422 2021-03-19 16:44:35.607263 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-25 15:37:00 obsr2595828 S23632758 Traveling P22 EBIRD 70.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303151918 2021-11-09 20:59:08.238638 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-03-14 12:35:00 obsr2346161 S22352551 Traveling P22 EBIRD 28.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310785275 2021-03-26 07:56:20.588749 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 8 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-04-17 17:00:00 obsr676630 S22915866 Traveling P22 EBIRD 60.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313748011 2018-08-04 17:12:36 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kanyoo Trail L152120 H 43.1168988 -78.430624 2015-04-28 08:45:00 obsr2588479 S23106433 Traveling P22 EBIRD 80.0 1.77 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291727359 2018-08-04 16:53:56 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 21 United States US New York US-NY Ontario US-NY-069 13.0 Sandy Bottom Park, Honeoye L811497 H 42.7831811 -77.5149822 2015-01-18 11:08:00 obsr39511 S21402878 Traveling P22 EBIRD 37.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315365053 2015-05-03 15:27:02 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Columbia US-NY-021 13.0 US-NY-Hudson - 42.2136x-73.8292 - May 3, 2015, 3:18 PM L3610107 P 42.213609 -73.829194 2015-05-02 08:00:00 obsr2941109 S23202322 Traveling P22 EBIRD 120.0 2.414 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308617486 2015-04-09 09:24:07 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-04-09 08:30:00 obsr869999 S22765985 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320807814 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh/Marine Park L3514666 P 40.6035594 -73.9283967 2015-05-17 10:40:00 obsr827632 S23506938 Traveling P22 EBIRD 80.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310234497 2021-03-30 19:13:38.458673 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-04-13 11:44:00 obsr745890 S22878081 Stationary P21 EBIRD 105.0 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307786263 2021-11-09 21:57:39.739056 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 3 United States US New York US-NY Ulster US-NY-111 13.0 black creek preserve L3541148 P 41.8208606 -73.9587005 2015-04-05 08:50:00 obsr187701 S22703854 Traveling P22 EBIRD 60.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319899269 2021-04-01 11:15:31.646886 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Kings US-NY-047 Owls Head Park L304833 H 40.6403687 -74.0322153 2015-05-15 11:20:00 obsr2078092 S23458038 Traveling P22 EBIRD 150.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288600068 2018-08-04 16:52:31 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 250 United States US New York US-NY Montgomery US-NY-057 13.0 Mindenville - Island L862680 P 42.9944779 -74.7209358 2015-01-02 14:35:00 obsr1000124 S21150968 Traveling P22 EBIRD 30.0 1.77 4.0 1 G1091790 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323999182 2021-04-01 12:31:09.823741 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Livingston US-NY-051 US-NY_1760 13.0 Nations Rd. IBA L109153 H 42.8705649 -77.8070221 2015-05-30 07:00:00 obsr1529308 S23707946 Traveling P22 EBIRD 240.0 32.187 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317367718 2021-03-26 06:09:25.361188 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Broome US-NY-007 28.0 917 grant street L1861629 P 42.1114312 -76.0806034 2015-05-08 08:00:00 obsr1947568 S23315348 Stationary P21 EBIRD 360.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293846883 2015-01-29 12:46:47 26278 species avibase-A381417F House Wren Troglodytes aedon 4 United States US New York US-NY Ontario US-NY-069 13.0 east street L3147087 P 42.8983836 -77.2684765 2015-01-28 12:05:00 obsr2979658 S21590404 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310222537 2015-04-15 13:38:39 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 7 United States US New York US-NY Suffolk US-NY-103 30.0 Arshamomaque Pond Preserve L140131 H 41.079361 -72.4004135 2015-04-15 13:05:00 obsr2485753 S22877324 Traveling P22 EBIRD 32.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294583497 2021-03-30 19:43:32.881136 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-02-01 15:30:00 obsr2196583 S21648427 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309752889 2021-03-23 16:48:08.60516 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 5 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-13 10:09:00 obsr1655171 S22844700 Traveling P22 EBIRD 29.0 0.805 2.0 1 G1220006 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313842661 2015-04-28 16:45:39 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-28 09:56:00 obsr2817239 S23112435 Traveling P22 EBIRD 33.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291870551 2019-07-23 17:27:06 8829 species avibase-8F123A11 Short-eared Owl Asio flammeus 3 United States US New York US-NY Suffolk US-NY-103 US-NY_2800 30.0 Hither Hills SP--Campground L2927714 H 41.0086886 -72.0111517 2015-01-19 08:55:00 obsr598381 S21413948 Traveling P22 EBIRD 21.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308820037 2021-03-23 17:00:13.087107 6029 species avibase-D4A73324 Solitary Sandpiper Tringa solitaria 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-10 09:30:00 obsr1062070 S22781650 Traveling P22 EBIRD 24.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313726948 2021-03-24 05:37:45.927792 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-28 07:13:00 obsr502830 S23105103 Traveling P22 EBIRD 61.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319419458 2018-08-06 22:29:28 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Essex US-NY-031 13.0 rocky ledges trail L3641517 P 44.303272 -73.405716 2015-05-09 11:36:00 obsr2420101 S23430734 Traveling P22 EBIRD 300.0 8.047 2.0 1 G1269860 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297002387 2018-08-04 16:56:32 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 8 United States US New York US-NY Essex US-NY-031 13.0 Maple Meadows L4115608 P 44.0422008 -73.4797356 2015-02-15 08:00:00 obsr2769235 S21848566 Traveling P22 EBIRD 38.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314376978 2021-03-26 06:09:25.361188 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Broome US-NY-007 28.0 SUNY Broome Community College L3583220 H 42.1353684 -75.9091816 2015-04-23 14:00:00 obsr1294516 S23145239 Traveling P22 EBIRD 90.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317968943 2015-05-10 05:37:41 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Monroe US-NY-055 13.0 Black Creek Park L1175542 H 43.0844986 -77.8050041 2015-05-09 11:30:00 obsr2084521 S23349714 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS328604021 2017-12-09 10:32:58 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-26 17:30:00 obsr39610 S24033752 Traveling P22 EBIRD 120.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297539474 2021-04-01 12:26:53.827486 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 6 United States US New York US-NY Albany US-NY-001 13.0 Latham, NY, US L3360449 P 42.740961 -73.7635803 2015-02-16 11:40:00 obsr1637944 S21897141 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314582019 2021-03-24 20:11:57.676649 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-30 10:00:00 obsr1633923 S23158577 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293510754 2015-01-27 07:25:47 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-01-27 07:15:00 obsr255324 S21563684 Stationary P21 EBIRD 5.0 1.0 1 G1126379 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303022756 2015-03-14 12:53:23 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-03-14 10:43:00 obsr1958124 S22342298 Stationary P21 EBIRD 9.0 2.0 1 G1178966 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428242 2015-01-17 12:00:55 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 2 United States US New York US-NY Broome US-NY-007 28.0 Swift Rd. L1396474 P 42.2199772 -75.9448922 2015-01-15 00:16:00 obsr998593 S21379627 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306134660 2021-04-01 12:32:15.282601 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-29 12:45:00 obsr1160328 S22581530 Traveling P22 EBIRD 150.0 24.14 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313334674 2021-03-19 16:27:31.421791 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Genesee US-NY-037 13.0 Genesee County L3588798 P 43.029372 -77.974854 2015-04-25 10:00:00 obsr2945658 S23080185 Incidental P20 EBIRD 3.0 1 G1236722 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS549001811 2018-08-14 20:03:36 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Jefferson US-NY-045 US-NY_805 Point Peninsula Bird Conservation Area L1367385 H 43.9953255 -76.2449646 2015-05-21 15:45:00 obsr2188450 S40474110 Traveling P22 EBIRD 300.0 40.234 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311082007 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 25 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 09:05:00 obsr609516 S22934802 Traveling P22 EBIRD 210.0 4.828 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296791967 2021-03-26 06:59:15.841579 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Oswego US-NY-075 13.0 Central Square L2053322 T 43.28677 -76.14605 2015-02-14 14:45:00 obsr797977 S21830595 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292458841 2021-04-01 12:45:19.712958 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 6 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Playland Lake Overlook (Hawk Watch Site) L92440 H 40.9683291 -73.6664001 2015-01-21 10:00:00 obsr363163 S21480626 Traveling P22 EBIRD 120.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303206209 2021-03-23 17:22:05.708166 5923 species avibase-15369E8E Dunlin Calidris alpina 2 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-03-14 14:00:00 obsr1680059 S22356384 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315042605 2021-03-19 16:28:51.38749 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Greene US-NY-039 28.0 Moore Rd L1810817 P 42.3536934 -74.1764566 2015-05-02 07:15:00 obsr445187 S23184896 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309831754 2021-04-01 11:30:42.037277 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-13 16:40:00 obsr2793388 S22850086 Traveling P22 EBIRD 80.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310506778 2021-04-01 11:42:15.525388 11494 species avibase-20C2214E American Kestrel Falco sparverius 9 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Fort Niagara SP L210265 H 43.2638703 -79.0567981 2015-04-16 14:45:00 obsr2756208 S22897231 Traveling P22 EBIRD 28.0 0.322 3.0 1 G1222155 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310373435 2018-08-04 17:08:42 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 Male, Adult (1) United States US New York US-NY Onondaga US-NY-067 28.0 Fabius NY Waters Rd L901277 P 42.8470866 -75.9362125 2015-04-12 08:10:00 obsr2290617 S22887752 Stationary P21 EBIRD 365.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306021096 2019-09-29 09:48:34 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-03-29 11:00:00 obsr943683 S22573135 Stationary P21 EBIRD 114.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001086 2021-03-26 07:56:20.588749 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 120 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-19 09:00:00 obsr2218212 S23775926 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309864512 2021-03-26 06:29:14.715704 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 6 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 GSC overlook L691964 P 43.1220361 -75.804162 2015-04-13 10:51:00 obsr2716320 S22852330 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307745914 2021-03-26 07:56:20.588749 483 species avibase-85625D75 Mallard Anas platyrhynchos N 10 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-05 08:15:00 obsr1348614 S22700824 Traveling P22 EBIRD 150.0 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306174511 2020-05-16 18:11:44 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 5 United States US New York US-NY Otsego US-NY-077 28.0 Fortin Park L3354198 P 42.4537565 -75.014922 2015-03-29 16:30:00 obsr1452192 S22584585 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307101240 2018-02-01 15:11:46 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor18 L3513960 H 42.4410677 -76.0746521 2015-04-03 07:50:00 obsr1042912 S22655200 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304679429 2015-03-22 16:47:21 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 8 United States US New York US-NY Wayne US-NY-117 13.0 Newark L125087 T 43.04676 -77.0953 2015-03-22 15:15:00 obsr606693 S22470629 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302826428 2015-03-13 09:36:11 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Erie US-NY-029 13.0 WNY Land Conservancy Office L2058573 P 42.7636185 -78.5480404 2015-03-13 09:00:00 obsr2537615 S22326535 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313432307 2015-05-07 17:07:25 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-27 07:00:00 obsr455249 S23086772 Traveling P22 EBIRD 18.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314345764 2021-03-26 06:55:00.227271 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-30 12:15:00 obsr606693 S23143315 Traveling P22 EBIRD 17.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308012334 2021-03-26 07:07:10.758746 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Richmond US-NY-085 30.0 Goethals Bridge Pond--Observation Platform L884460 H 40.6281787 -74.1741575 2015-04-06 13:19:00 obsr1958124 S22719993 Stationary P21 EBIRD 12.0 2.0 1 G1208439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324437000 2021-11-09 18:33:28.376835 622 species avibase-50566E50 Lesser Scaup Aythya affinis 10 United States US New York US-NY Dutchess US-NY-027 28.0 Dover Plains L2442403 P 41.7300738 -73.5757828 2015-05-16 13:48:00 obsr2343626 S23736196 Incidental P20 EBIRD 2.0 1 G1298920 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302687605 2021-03-30 06:01:28.020715 30836 species avibase-8F268682 American Pipit Anthus rubescens 2 United States US New York US-NY Nassau US-NY-059 30.0 Florence Ave, Oyster Bay L3483063 P 40.8748272 -73.525089 2015-03-04 16:30:00 obsr93451 S22316072 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761150 2021-03-26 07:56:20.588749 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 21 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-03 09:00:00 obsr2218212 S22629510 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314484930 2021-03-30 19:07:52.958398 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 17:30:00 obsr1807494 S23152439 Traveling P22 EBIRD 105.0 1.609 2.0 1 G1244829 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313931131 2021-03-23 17:14:01.933181 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Washington US-NY-115 13.0 Towpath Rd., Kingsbury L1527296 H 43.3054212 -73.5459734 2015-04-28 17:09:00 obsr1731061 S23118129 Traveling P22 EBIRD 124.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307104690 2021-04-01 12:18:57.910168 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 4 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-01 17:35:00 obsr1183459 S22655511 Traveling P22 EBIRD 90.0 1.609 5.0 1 G1202314 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308802878 2018-01-07 20:13:45 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-04-10 07:13:00 obsr2420101 S22780387 Stationary P21 EBIRD 27.0 3.0 1 G1213063 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318574079 2021-04-01 11:24:19.637193 1796 species avibase-018B3169 Horned Grebe Podiceps auritus N 12 United States US New York US-NY Monroe US-NY-055 13.0 Monroe-Orleans County Line Rd., overlook (Monroe Co.) L617705 H 43.3657235 -77.9947185 2015-05-09 obsr2165670 S23382091 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310325762 2019-07-23 17:28:19 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip G L3559870 P 40.435667 -73.336683 2015-04-11 15:00:00 obsr782651 S22884418 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304840860 2021-03-24 20:33:47.533911 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 3 United States US New York US-NY Tompkins US-NY-109 13.0 Farm Pond Circle L2080608 P 42.5383387 -76.4633042 2015-03-21 10:30:00 obsr596741 S22482126 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310693107 2018-08-04 17:09:05 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Monroe US-NY-055 13.0 LaSalle's Landing Park L140438 H 43.1763487 -77.5259313 2015-04-13 17:45:00 obsr1962295 S22909577 Stationary P21 EBIRD 45.0 2.0 1 G1223719 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315768813 2021-11-09 17:58:40.313796 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-04 08:00:00 obsr445356 S23224327 Traveling P22 EBIRD 240.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318791933 2021-11-09 18:43:18.1621 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Arlington High School L3261645 P 41.6731042 -73.7966037 2015-05-11 14:45:00 obsr2228257 S23394556 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322595440 2021-03-26 06:29:56.44369 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-24 17:11:00 obsr1696616 S23614769 Traveling P22 EBIRD 54.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289397207 2021-03-30 19:39:10.250398 242 species avibase-D3A260BC Snow Goose Anser caerulescens 2 United States US New York US-NY Nassau US-NY-059 30.0 NY - St. John's Pond L1068846 P 40.855825 -73.4613705 2015-01-05 12:30:00 obsr271871 S21215882 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314689817 2021-03-26 06:20:10.658048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 7 United States US New York US-NY Genesee US-NY-037 13.0 9605 Francis Rd , Batavia L3360943 P 42.947728 -78.1616086 2015-05-01 13:30:00 obsr393804 S23164670 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288848953 2021-03-30 19:29:33.633096 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Cedar Beach Marina L283643 H 40.6342526 -73.3447755 2015-01-02 10:30:00 obsr1160328 S21173289 Stationary P21 EBIRD 15.0 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303146011 2015-03-14 20:33:17 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-03-14 07:44:00 obsr2426404 S22352074 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301414162 2021-11-09 21:43:57.590086 5922 species avibase-06B9BD24 Sanderling Calidris alba 2 United States US New York US-NY Ulster US-NY-111 28.0 Rt. 209 between Rt. 2 and Rt. 6 L2019437 P 41.8288339 -74.1863823 2015-03-07 11:45:00 obsr1446126 S22211490 Stationary P21 EBIRD 35.0 3.0 1 G1169025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301701273 2021-03-26 06:39:43.334073 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-08 09:45:00 obsr2313260 S22232791 Traveling P22 EBIRD 180.0 1.609 10.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312244851 2021-03-22 09:17:32.016297 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 2 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-23 06:55:00 obsr666964 S23010036 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296265102 2021-11-09 20:12:16.773384 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-02-12 12:53:00 obsr1912104 S21782205 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293510762 2015-01-27 07:25:48 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-01-27 07:15:00 obsr2812248 S21563685 Stationary P21 EBIRD 5.0 1.0 1 G1126379 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315786859 2015-05-04 15:36:58 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Columbia US-NY-021 14.0 Drowned Lands Swamp Conservation Area L2704928 H 42.0536902 -73.5669422 2015-05-02 18:15:00 obsr798742 S23225285 Traveling P22 EBIRD 45.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310940215 2022-01-20 09:38:40.245267 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-04-17 17:20:00 obsr2188170 S22925676 Traveling P22 EBIRD 55.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317349287 2021-04-01 10:45:00.916278 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 20 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.8929476 2015-05-07 17:01:00 obsr1348614 S23314356 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313305427 2021-03-26 06:12:17.833181 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-04-26 08:30:00 obsr479109 S23078357 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302492295 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-03-11 15:05:00 obsr1154 S22300882 Traveling P22 EBIRD 58.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312133461 2021-03-26 08:11:28.0353 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Saratoga US-NY-091 13.0 Water's Edge Condos L3518134 P 43.0464767 -73.7337928 2015-04-22 13:20:00 obsr907769 S23002297 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300365974 2021-03-26 06:29:56.44369 7200 species avibase-49D9148A Great Egret Ardea alba 2 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-02-27 08:20:00 obsr2449897 S22132918 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS333508809 2021-03-30 19:39:10.250398 662 species avibase-FB738385 Bufflehead Bucephala albeola 15 United States US New York US-NY Nassau US-NY-059 30.0 Cold Spring Harbor Labs L2844495 P 40.8615213 -73.4700286 2015-05-07 11:25:00 obsr2240960 S24394561 Traveling P22 EBIRD_WI 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289714492 2019-07-23 17:26:42 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southold Town Beach L142618 H 41.0892334 -72.4137115 2015-01-03 08:55:00 obsr535265 S21240598 Stationary P21 EBIRD 20.0 2.0 1 G1100214 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317635165 2021-11-09 18:47:10.142806 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 off Kansas Rd, Clinton L3617395 P 41.8924253 -73.8331997 2015-04-27 08:15:00 obsr191447 S23331563 Traveling P22 EBIRD 195.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315042604 2021-03-19 16:28:51.38749 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Greene US-NY-039 28.0 Moore Rd L1810817 P 42.3536934 -74.1764566 2015-05-02 07:15:00 obsr445187 S23184896 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309060991 2021-11-09 21:50:48.44865 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 4 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-11 08:00:00 obsr915089 S22798525 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319406333 2021-03-24 19:24:40.212356 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Laughing Duck Pond L2655492 P 42.0681455 -79.313339 2015-05-09 10:30:00 obsr1247193 S23429979 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291078303 2021-03-26 07:52:59.845315 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla N 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-14 07:30:00 obsr1000124 S21351067 Area P23 EBIRD 33.0 2.59 2.0 1 G1109823 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312201669 2021-04-01 11:49:53.573686 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge--East Pond L109144 H 40.6226854 -73.8220096 2015-04-19 16:14:00 obsr839844 S23007073 Traveling P22 EBIRD 53.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295242390 2021-03-30 19:29:33.633096 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 5 United States US New York US-NY Suffolk US-NY-103 30.0 Frank Melville Memorial Park and Mill Pond L1114075 H 40.946195 -73.1156445 2015-02-06 16:21:00 obsr1848026 S21701111 Traveling P22 EBIRD 5.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325604866 2018-08-06 22:30:31 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Essex US-NY-031 US-NY_846 14.0 Adirondak Loj L358592 H 44.1829118 -73.9642096 2015-05-18 14:30:00 obsr2376028 S23816235 Traveling P22 EBIRD 180.0 6.437 2.0 1 G1306402 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314841046 2021-03-26 06:17:19.712573 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 12 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-02 07:29:00 obsr502830 S23174028 Traveling P22 EBIRD 84.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312954266 2021-03-26 06:17:19.712573 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-04-25 obsr2096529 S23057247 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307921727 2021-04-01 12:18:57.910168 616 species avibase-25C94A8F Greater Scaup Aythya marila 15 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-05 18:00:00 obsr2535282 S22713870 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302462971 2021-03-30 06:01:28.020715 5922 species avibase-06B9BD24 Sanderling Calidris alba N 5 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-11 12:30:00 obsr1655171 S22298812 Traveling P22 EBIRD 45.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322653765 2017-12-31 19:16:14 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Alison Wells Ney Nature Trail, Bliss Rd.-Thayer Rd. L2438197 H 42.3269987 -79.5051483 2015-05-24 11:00:00 obsr479109 S23618253 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871226 2021-03-26 07:56:20.588749 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 85 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-17 09:00:00 obsr2218212 S21672036 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304220965 2021-03-26 06:17:19.712573 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 2 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Feeder Area L424961 P 42.7607926 -78.8063961 2015-03-20 13:30:00 obsr2083851 S22436469 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318676592 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:30:00 obsr454647 S23387795 Traveling P22 EBIRD 300.0 3.0 6.0 1 G1265613 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309661110 2021-03-24 20:06:25.370375 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Home L3158249 P 42.7894329 -77.5681436 2015-04-12 06:50:00 obsr39511 S22837138 Stationary P21 EBIRD 330.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313069796 2015-05-13 20:19:57 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA, Baldwinsville, NY L1462062 P 43.1963229 -76.3252222 2015-04-26 07:30:00 obsr2172593 S23064360 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299661445 2015-02-26 08:41:16 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 2 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-02-26 08:01:00 obsr2172593 S22077467 Stationary P21 EBIRD 39.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001189 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 17 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-20 16:00:00 obsr2218212 S23775929 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306243577 2021-03-23 16:48:08.60516 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 4 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-03-30 07:37:00 obsr730231 S22589736 Traveling P22 EBIRD 16.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322180410 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 06:15:00 obsr152435 S23591664 Traveling P22 EBIRD 311.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308057450 2021-11-15 03:06:58.889978 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-05 18:00:00 obsr2072398 S22723110 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1208359 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340107396 2021-03-30 18:54:05.959583 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.8768877 -73.7898123 2015-04-19 07:40:00 obsr294325 S24873716 Traveling P22 EBIRD 220.0 4.828 3.0 1 G1226792 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293558319 2021-03-26 06:29:56.44369 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 9 United States US New York US-NY Monroe US-NY-055 13.0 Rush - 390 Jeffords Rd. L3304528 P 43.0106437 -77.6220989 2015-01-27 08:35:00 obsr983655 S21567534 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316312717 2021-03-19 16:44:35.607263 3543 species avibase-8D3E8871 Chuck-will's-widow Antrostomus carolinensis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-05 10:23:00 obsr2919757 S23256195 Traveling P22 EBIRD 60.0 0.322 2.0 1 G1254139 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324041208 2021-11-09 18:41:18.802139 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Dutchess US-NY-027 28.0 Lake Weil Wingdale L3030078 P 41.67324 -73.54287 2015-05-16 06:49:00 obsr1732267 S23710511 Traveling P22 EBIRD 54.0 1.609 2.0 1 G1298884 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299007372 2021-03-26 07:17:57.136956 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 2 United States US New York US-NY Seneca US-NY-099 13.0 Wyers Point and Wyers Point Rd. L285461 H 42.6736408 -76.7156979 2015-02-22 13:15:00 obsr835300 S22024798 Traveling P22 EBIRD 60.0 6.437 5.0 1 G1156312 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320555400 2020-03-15 09:14:53 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-17 09:13:00 obsr997992 S23492654 Traveling P22 EBIRD 244.0 2.414 2.0 1 G1274998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304626317 2015-03-22 13:28:25 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY New York US-NY-061 30.0 US-NY-New York-1245 Park Ave L3253963 P 40.786442 -73.952942 2015-03-22 13:20:00 obsr1349960 S22466567 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312721686 2021-04-01 11:49:53.573686 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-04-25 07:44:00 obsr2574755 S23043335 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288286486 2021-04-01 11:15:31.646886 33474 species avibase-043F337A Indigo Bunting Passerina cyanea X United States US New York US-NY Kings US-NY-047 Floyd Bennett Field--Community Gardens L996212 H 40.5863861 -73.892777 2015-01-01 12:00:00 obsr2207991 S21125096 Traveling P22 EBIRD 180.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292879691 2021-04-01 11:54:40.172593 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 20 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-24 09:00:00 obsr1958124 S21513716 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305602168 2021-03-26 06:09:25.361188 26278 species avibase-A381417F House Wren Troglodytes aedon 41 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-03-27 09:00:00 obsr1830659 S22541878 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307206235 2021-04-01 12:32:15.282601 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-03 09:30:00 obsr2207991 S22662644 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307316822 2021-03-26 07:30:35.289997 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-04-03 09:30:00 obsr2137468 S22670716 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310683780 2021-03-19 16:10:30.527219 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Chemung US-NY-015 28.0 Sperr Memorial Park L7578475 H 42.1465676 -76.9144776 2015-04-17 06:06:00 obsr1092576 S22903322 Traveling P22 EBIRD 66.0 0.483 3.0 1 G1222619 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307308782 2015-04-04 19:34:16 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-03 18:19:00 obsr1092576 S22670097 Traveling P22 EBIRD 34.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314103913 2015-04-29 16:04:40 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-04-29 13:30:00 obsr2504709 S23128682 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317524912 2021-03-26 06:17:19.712573 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-09 06:41:00 obsr502830 S23325477 Traveling P22 EBIRD 281.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317243509 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-07 07:29:00 obsr363953 S23308410 Traveling P22 EBIRD 300.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294966662 2019-11-30 20:00:35 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: Cherry St: S/Taber St: scrap metal recycling L3338968 P 42.4379131 -76.5149005 2015-02-04 13:34:00 obsr2760150 S21679812 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319617557 2021-03-26 07:56:20.588749 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-14 08:00:00 obsr2505956 S23442148 Rusty Blackbird Spring Migration Blitz P41 EBIRD 360.0 9.656 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304351336 2018-08-04 17:02:12 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-03-21 09:44:00 obsr1154 S22446342 Stationary P21 EBIRD 10.0 3.0 1 G1186978 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314297082 2021-03-26 06:17:19.712573 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-30 06:35:00 obsr736608 S23140897 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311769166 2021-03-24 20:58:04.794277 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-04-20 08:30:00 obsr1680059 S22978463 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310232357 2021-03-24 20:20:08.05015 5942 species avibase-0A0B8431 Purple Sandpiper Calidris maritima 4 United States US New York US-NY St. Lawrence US-NY-089 13.0 Alcoa Ponds, Haverstock Rd. L2429514 H 44.9833688 -74.7583151 2015-04-14 16:45:00 obsr1820582 S22877937 Traveling P22 EBIRD 80.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294451042 2016-07-31 19:46:53 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 8 United States US New York US-NY Westchester US-NY-119 28.0 Charles Point, Peekskill L651242 H 41.2780121 -73.9418079 2015-02-01 09:10:00 obsr2206421 S21637862 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313863320 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-28 13:30:00 obsr454647 S23113800 Traveling P22 EBIRD 260.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313256093 2021-03-23 17:41:09.545385 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-04-26 11:30:00 obsr1055148 S23075245 Traveling P22 EBIRD 120.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309744614 2021-03-26 07:56:20.588749 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-04-13 10:15:00 obsr247620 S22844164 Traveling P22 EBIRD 120.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311801118 2021-03-24 20:52:47.158779 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio X United States US New York US-NY Yates US-NY-123 13.0 Seneca Lake, Dresden L822742 H 42.6848448 -76.9500983 2015-04-19 14:30:00 obsr2832110 S22980575 Traveling P22 EBIRD 60.0 8.047 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312593402 2021-03-22 09:15:15.32301 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 7 United States US New York US-NY Niagara US-NY-063 Wilson Pier L1305695 H 43.3175398 -78.8350582 2015-04-24 13:41:00 obsr2756208 S23034424 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288751242 2021-04-01 12:14:19.266649 6526 species avibase-4D2FF6F1 Common Tern Sterna hirundo 5 United States US New York US-NY Suffolk US-NY-103 30.0 Sag Harbor Area - Orient CBC L3261248 P 41.0014072 -72.3072052 2015-01-03 07:00:00 obsr717785 S21163116 Traveling P22 EBIRD 210.0 8.047 2.0 1 G1093503 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300942412 2021-03-30 19:03:54.667077 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-04 17:23:00 obsr2497657 S22174821 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315952798 2018-08-04 17:14:44 6339 species avibase-8535345B Herring Gull Larus argentatus 14 Male, Adult (5); Female, Adult (4); Unknown Sex, Adult (5) United States US New York US-NY Fulton US-NY-035 13.0 Willie Marsh L2149327 P 43.0832214 -74.4475114 2015-05-04 13:55:00 obsr1000124 S23234500 Traveling P22 EBIRD 162.0 1.77 2.0 1 G1252392 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322349722 2021-04-01 11:15:31.646886 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:20:00 obsr1152226 S23601011 Traveling P22 EBIRD 390.0 4.828 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307208031 2018-02-01 15:11:46 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom31 L3513973 H 42.4442101 -76.280451 2015-04-03 16:06:00 obsr1092576 S22662792 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315323905 2021-03-30 19:39:10.250398 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 1 United States US New York US-NY Nassau US-NY-059 30.0 Norman J. Levy Park and Preserve L284148 H 40.6471523 -73.5630634 2015-05-03 09:30:00 obsr1102914 S23200194 Traveling P22 EBIRD 150.0 4.023 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312385902 2021-03-30 19:25:27.212017 526 species avibase-56CCA717 Northern Pintail Anas acuta 3 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-23 08:55:00 obsr396989 S23019531 Traveling P22 EBIRD_NJ 315.0 7.886 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320729310 2018-08-06 22:30:06 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 John Boyd Thacher SP--Overlook L2142779 H 42.6506584 -74.0063524 2015-05-16 07:47:00 obsr2321296 S23501977 Traveling P22 EBIRD 78.0 2.414 2.0 1 G1276030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317430600 2021-03-19 16:29:59.503892 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 3 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-09 08:29:00 obsr1302604 S23319659 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294405123 2021-04-01 12:35:52.669792 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 75 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-02-01 16:00:00 obsr1633923 S21634297 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317007112 2018-08-04 17:14:58 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-06 08:00:00 obsr1253931 S23295439 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304511467 2018-08-04 17:02:17 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 13 United States US New York US-NY Richmond US-NY-085 SI-Sawmill Creek/River Road/Old Place L274655 P 40.6134278 -74.1902816 2015-03-21 12:55:00 obsr1032565 S22458203 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311941351 2021-04-01 11:15:31.646886 5770 species avibase-95E28A57 Semipalmated Plover Charadrius semipalmatus 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-21 15:15:00 obsr454647 S22989827 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288754514 2021-11-09 21:56:49.532458 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Ulster US-NY-111 28.0 JBNHS Wallkill Valley L3261313 P 41.7462135 -74.0883636 2015-01-03 08:00:00 obsr2862523 S21163349 Traveling P22 EBIRD 300.0 40.234 37.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296019507 2021-11-20 09:27:15.03549 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 5 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Creekwalk, Hiawatha Blvd. to lake L3077756 H 43.0668233 -76.1751186 2015-02-10 15:00:00 obsr2589278 S21762612 Traveling P22 EBIRD 15.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326107564 2021-03-26 06:21:54.883933 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Kings US-NY-047 30.0 Home L468661 P 40.6361565 -73.9647943 2015-02-15 08:00:00 obsr1666581 S23851725 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308361833 2021-04-01 10:55:39.308231 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 22 United States US New York US-NY Erie US-NY-029 13.0 Woodlawn Beach SP L339875 H 42.790592 -78.850687 2015-04-07 12:45:00 obsr2597186 S22746443 Traveling P22 EBIRD 85.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319284864 2021-04-01 11:30:42.037277 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 07:30:00 obsr1668936 S23420307 Traveling P22 EBIRD 188.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302877133 2015-03-13 14:39:36 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 3 United States US New York US-NY New York US-NY-061 30.0 Hudson River- Morton St L3485131 P 40.7310953 -74.0104465 2015-03-13 12:00:00 obsr139757 S22330419 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291161015 2021-03-30 19:29:33.633096 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Bayard Cutting Arboretum L937333 P 40.7392259 -73.1606197 2015-01-15 13:30:00 obsr247620 S21357771 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314442845 2021-11-15 03:06:58.889978 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 16 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-30 16:45:00 obsr1135516 S23149545 Traveling P22 EBIRD 135.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326110279 2021-03-26 06:21:54.883933 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Kings US-NY-047 30.0 Home L468661 P 40.6361565 -73.9647943 2015-04-24 08:00:00 obsr1666581 S23851942 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307742640 2021-03-26 07:30:35.289997 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 60 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-05 12:50:00 obsr1655171 S22700584 Traveling P22 EBIRD 12.0 0.805 2.0 1 G1212787 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323866702 2022-01-12 18:14:10.119384 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--South Entrance L825062 H 44.3641149 -74.1511381 2015-05-29 10:40:00 obsr769149 S23699429 Traveling P22 EBIRD 85.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310319331 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-15 11:00:00 obsr1055148 S22883942 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303025697 2019-07-23 17:27:57 431 species avibase-90E2543E Blue-winged Teal Spatula discors 26 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-14 10:17:00 obsr1092576 S22342527 Stationary P21 EBIRD 45.0 2.0 1 G1182540 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921915 2021-03-26 07:56:20.588749 32869 species avibase-D204A930 Tennessee Warbler Leiothlypis peregrina 11 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-26 16:00:00 obsr2218212 S22173341 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314241980 2021-03-24 19:48:44.880783 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-04-29 11:35:00 obsr528918 S23137270 Traveling P22 EBIRD 265.0 1.127 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309373655 2018-08-04 17:08:49 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Madison US-NY-053 28.0 Madison St. Trail L608900 H 42.8306601 -75.5429792 2015-04-12 10:30:00 obsr2843748 S22818588 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295382006 2015-02-07 15:25:26 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Saratoga US-NY-091 13.0 Personal residence L1937009 P 42.9576788 -74.0717125 2015-02-07 07:30:00 obsr1557094 S21712657 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305196053 2021-03-24 20:33:47.533911 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-03-25 07:42:00 obsr455249 S22510185 Traveling P22 EBIRD 8.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312030528 2021-03-30 19:43:08.006315 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Schuyler US-NY-097 US-NY_803 13.0 Smith Park--Boat Launch L2407023 H 42.4891109 -76.8863945 2015-04-22 07:47:00 obsr2173269 S22995780 Stationary P21 EBIRD 9.0 3.0 1 G1231212 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298545939 2018-08-04 16:57:27 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 Male, Adult (1) United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-02-20 09:20:00 obsr1062070 S21985869 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314325543 2021-03-26 06:52:34.887371 27616 species avibase-D77E4B41 American Robin Turdus migratorius 92 United States US New York US-NY Niagara US-NY-063 13.0 Dietz Rd. L1528040 H 43.2751803 -78.9874831 2015-04-30 08:54:00 obsr2756208 S23142142 Traveling P22 EBIRD 120.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304278114 2021-03-19 16:10:30.527219 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Sing Sing area L1143463 P 42.18348 -76.8716598 2015-03-18 10:29:00 obsr1334267 S22441025 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307334592 2020-01-16 17:00:55 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-03 12:10:00 obsr528918 S22672082 Traveling P22 EBIRD 85.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291410491 2021-03-26 06:29:56.44369 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-17 08:35:00 obsr934639 S21378050 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309203587 2021-03-26 06:55:00.227271 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-11 18:11:00 obsr606693 S22807714 Traveling P22 EBIRD 19.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307659171 2021-04-01 12:35:52.669792 1375 species avibase-4B9EEF56 Ring-necked Pheasant Phasianus colchicus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson River Park (private) L3498350 H 43.2032416 -76.2825651 2015-04-05 06:43:00 obsr2224244 S22694859 Stationary P21 EBIRD 62.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303260693 2021-04-01 11:24:19.637193 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 5 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-02-20 15:35:00 obsr334398 S22360701 Traveling P22 EBIRD 48.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290421328 2021-04-01 12:18:57.910168 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 8 United States US New York US-NY Tompkins US-NY-109 13.0 Nate's Patch--Bluegrass to Hanshaw to Freese L1006570 P 42.4655757 -76.4526987 2015-01-11 10:55:00 obsr1062070 S21298162 Traveling P22 EBIRD 197.0 5.794 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314563912 2015-05-01 09:40:25 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Madison US-NY-053 13.0 South Trail Caz. (N. section) L837782 P 42.8824109 -75.8706164 2015-04-30 14:53:00 obsr2716320 S23157439 Traveling P22 EBIRD 120.0 3.541 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320468487 2021-11-09 18:47:29.641541 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Dutchess US-NY-027 28.0 Dry Brook Trail L3649609 P 41.4967459 -73.9481914 2015-05-17 07:45:00 obsr2542037 S23488233 Traveling P22 EBIRD 135.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312169477 2021-03-23 17:26:08.495143 483 species avibase-85625D75 Mallard Anas platyrhynchos 9 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-04-17 08:30:00 obsr525303 S23004845 Traveling P22 EBIRD 60.0 1.609 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305292468 2021-03-24 20:33:47.533911 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 5 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Reservoir L2133605 H 42.4125738 -76.4588892 2015-03-25 16:55:00 obsr887540 S22517781 Traveling P22 EBIRD 75.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298423792 2021-09-08 04:42:53.165995 483 species avibase-85625D75 Mallard Anas platyrhynchos 171 United States US New York US-NY New York US-NY-061 30.0 Sherman Creek Park and Swindler Cove L1018912 H 40.8580281 -73.921085 2015-02-19 12:15:00 obsr1135516 S21975905 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308606038 2015-04-09 07:40:23 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Broome US-NY-007 28.0 Tri-City Airport L2347159 H 42.08439 -76.093867 2015-04-09 07:20:00 obsr1764243 S22765099 Traveling P22 EBIRD 19.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315830470 2021-04-01 11:30:42.037277 406 species avibase-27B2749A Wood Duck Aix sponsa 2 Unknown Sex, Adult (2) United States US New York US-NY New York US-NY-061 30.0 10034 New York L171669 PC 40.867027 -73.92021 2015-05-04 12:30:00 obsr1740835 S23227522 Traveling P22 EBIRD 150.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304387298 2021-03-19 15:59:05.496822 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Allegany US-NY-003 28.0 Beaver Lake—Alma Pond L3164747 H 42.0151331 -77.9956126 2015-03-21 10:15:00 obsr1310178 S22449134 Traveling P22 EBIRD 45.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311142801 2021-04-01 11:15:31.646886 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 25 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-18 07:48:00 obsr2454565 S22938214 Traveling P22 EBIRD 229.0 3.0 8.0 1 G1225342 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309010039 2018-08-04 17:08:18 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 2 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N. & W. Trail intersection L250375 P 42.4790392 -76.4547486 2015-04-10 07:46:00 obsr2307843 S22795139 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310325571 2016-10-11 17:00:32 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip D L3559811 P 40.162933 -73.250983 2015-04-11 10:00:00 obsr782651 S22884406 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221326 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316423159 2021-03-26 07:56:20.588749 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-05-06 06:30:00 obsr676630 S23262042 Traveling P22 EBIRD 120.0 2.414 5.0 1 G1254778 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306897178 2021-03-26 06:39:43.334073 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-04-02 08:27:00 obsr1175815 S22639481 Traveling P22 EBIRD 29.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310345808 2015-04-16 07:46:30 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip B L3559783 P 40.3217 -73.6129 2015-04-11 08:00:00 obsr642993 S22885790 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311780682 2015-04-21 08:47:23 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Tioga US-NY-107 28.0 Ivory Foster Park L3563186 P 42.110591 -76.217023 2015-04-21 07:22:00 obsr1318356 S22979225 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322062640 2021-03-23 17:23:45.772216 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-21 13:30:00 obsr72341 S23584473 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316133708 2021-03-26 06:17:19.712573 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Erie US-NY-029 13.0 Home L654361 P 42.81914 -78.7520599 2015-05-05 10:30:00 obsr1079517 S23245030 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290622199 2015-01-12 09:25:53 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Rensselaer US-NY-083 13.0 Papscanee Island Nature Preserve L488165 H 42.5762804 -73.7484741 2015-01-10 13:30:00 obsr489496 S21313933 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299922815 2015-02-27 17:50:11 8157 spuh avibase-E91E7830 Buteo sp. Buteo sp. X United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-02-25 14:52:00 obsr2426404 S22097245 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303012727 2021-03-30 19:03:54.667077 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-14 10:15:00 obsr1792012 S22341440 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298315984 2021-11-09 21:57:10.426083 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 7 United States US New York US-NY Ulster US-NY-111 28.0 Shawangunk grasslands L3398125 P 41.5999116 -74.1771126 2015-02-18 10:30:00 obsr634484 S21966021 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313282130 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 10:00:00 obsr2078092 S23076888 Traveling P22 EBIRD 360.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313860503 2021-04-01 11:54:40.172593 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-28 10:03:00 obsr396989 S23113600 Traveling P22 EBIRD_NJ 275.0 4.506 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300099480 2021-03-23 17:26:08.495143 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-28 10:30:00 obsr1137265 S22111987 Traveling P22 EBIRD 180.0 4.828 3.0 1 G1162300 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312640207 2020-05-16 18:13:14 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 Male, Adult (3) United States US New York US-NY Otsego US-NY-077 28.0 Ottaway Pond L3568681 P 42.7363566 -74.8490193 2015-04-24 15:45:00 obsr189015 S23037725 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309396146 2021-03-23 16:48:08.60516 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 28 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--East Rd. L99686 H 43.009646 -76.7582003 2015-04-12 13:12:00 obsr800690 S22819897 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304900600 2021-03-30 19:37:33.521815 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 10 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-03-23 12:17:00 obsr2914424 S22485543 Traveling P22 EBIRD 65.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313620489 2021-12-14 08:38:15.858862 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 30.0 Tudor City Greens (North & South) L2837736 H 40.7490963 -73.9705077 2015-04-22 06:15:00 obsr259298 S23098217 Traveling P22 EBIRD 43.0 0.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316891689 2021-04-01 10:47:08.851048 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-05-07 13:18:00 obsr800690 S23288750 Traveling P22 EBIRD 55.0 1.609 1.0 1 G1256736 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310158198 2015-04-15 07:54:41 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-04-15 07:35:00 obsr2211210 S22873111 Traveling P22 EBIRD 13.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294608077 2022-02-17 14:32:23.002448 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-01 13:30:00 obsr1152226 S21650502 Traveling P22 EBIRD 30.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313166241 2021-03-30 19:22:51.561415 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Queens US-NY-081 30.0 Ridgewood Reservoir L393007 H 40.688969 -73.8863182 2015-04-26 08:30:00 obsr2908667 S23069944 Traveling P22 EBIRD 195.0 3.219 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311185249 2021-04-01 10:57:06.520339 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 7 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-04-19 08:21:00 obsr2420101 S22940924 Traveling P22 EBIRD 119.0 1.609 2.0 1 G1225740 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308370794 2015-04-14 18:20:11 483 species avibase-85625D75 Mallard Anas platyrhynchos 18 United States US New York US-NY Oswego US-NY-075 US-NY_759 Sandy Island Beach SP L884786 H 43.6320373 -76.1957645 2015-04-07 14:17:00 obsr979921 S22747083 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296067855 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 11 Male, Adult (7); Female, Adult (4) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-10 08:26:00 obsr1548221 S21766580 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315334042 2021-04-01 11:15:31.646886 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 05:30:00 obsr2404047 S23200737 Traveling P22 EBIRD 465.0 6.437 2.0 1 G1251451 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299514388 2021-03-26 07:20:31.408164 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-02-20 06:45:00 obsr1592950 S22066057 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303467784 2021-03-26 06:39:43.334073 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Falconers Hill L787060 H 40.7739443 -73.974072 2015-03-15 10:35:00 obsr1706920 S22377833 Traveling P22 EBIRD 25.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306988587 2021-04-01 10:55:39.308231 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis X United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Towpath Park, Buffalo L2509351 H 42.9396309 -78.9083539 2015-04-02 13:02:00 obsr736608 S22646545 Traveling P22 EBIRD 21.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298115560 2015-10-19 18:53:15 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 1 United States US New York US-NY New York US-NY-061 East River, Brooklyn Bridge to S.I. Ferry L3339003 H 40.7039737 -74.0059423 2015-02-17 13:00:00 obsr1349960 S21949153 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320652803 2021-03-19 16:19:20.977326 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-17 15:00:00 obsr2537615 S23497954 Traveling P22 EBIRD 120.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291723502 2021-03-26 08:14:57.071052 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons N 8 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-01-18 15:24:00 obsr258431 S21402641 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308584228 2021-03-23 17:22:05.708166 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Herkimer US-NY-043 13.0 Eatonville Reservoir & Vicinity L2083419 P 43.0306726 -74.9159941 2015-04-08 11:38:00 obsr316199 S22763519 Traveling P22 EBIRD 30.0 0.483 3.0 1 G1211922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319026827 2018-08-06 22:29:45 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-12 08:55:00 obsr1044068 S23408070 Traveling P22 EBIRD 30.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303302611 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 9 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-03-15 14:03:00 obsr431494 S22363931 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311331117 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 12:00:00 obsr360223 S22949675 Traveling P22 EBIRD 180.0 4.828 2.0 1 G1226620 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289866554 2021-04-01 10:47:08.851048 27616 species avibase-D77E4B41 American Robin Turdus migratorius 12 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-365 Water St L2310812 P 42.106379 -75.911075 2015-01-08 12:11:00 obsr1764243 S21253033 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289915320 2021-03-23 17:26:08.495143 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 50 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-06 08:45:00 obsr1160328 S21257169 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317884700 2021-11-15 03:06:58.889978 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 07:00:00 obsr1633656 S23344810 Traveling P22 EBIRD 300.0 6.437 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308662097 2021-03-19 16:19:20.977326 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-09 10:10:00 obsr2597186 S22769205 Traveling P22 EBIRD 105.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308027176 2021-04-01 12:43:36.236969 526 species avibase-56CCA717 Northern Pintail Anas acuta 2 United States US New York US-NY Tioga US-NY-107 28.0 West Shore Road, Spencer, NY L3543657 P 42.2477637 -76.5033817 2015-04-06 12:00:00 obsr2430746 S22721065 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323610449 2021-03-26 06:19:47.07548 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla X United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-28 14:50:00 obsr2769235 S23680487 Traveling P22 EBIRD 117.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296798074 2021-03-26 06:17:19.712573 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 Male, Adult (2); Female, Adult (2) United States US New York US-NY Erie US-NY-029 13.0 Backyard L1943439 P 43.012116 -78.7236929 2015-02-13 09:00:00 obsr2538919 S21831057 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308754193 2021-03-26 07:30:35.289997 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 30 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-05 12:50:00 obsr2683910 S22776746 Traveling P22 EBIRD 12.0 0.805 2.0 1 G1212787 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307404904 2021-11-15 03:06:58.889978 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-04 11:20:00 obsr1889800 S22677330 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321834724 2021-03-19 16:08:39.161312 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 09:17:00 obsr334398 S23569482 Traveling P22 EBIRD 112.0 0.08 6.0 1 G1298714 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307302188 2021-03-26 07:46:52.994574 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-03 17:00:00 obsr30103 S22669594 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312038667 2018-08-04 17:11:44 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 5 Female, Adult (3); Male, Adult (2) United States US New York US-NY Herkimer US-NY-043 13.0 McKoons Road pond near Smith Road L2812296 P 42.9248029 -75.0358315 2015-04-22 09:15:00 obsr1680059 S22996263 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310178960 2021-03-26 07:43:12.52294 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 6 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-04-15 08:40:00 obsr1721609 S22874585 Stationary P21 EBIRD 38.0 3.0 1 G1225351 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303578830 2021-04-01 11:15:31.646886 279 species avibase-3E04020B Brant Branta bernicla 8 United States US New York US-NY Kings US-NY-047 30.0 Bush Terminal (43rd St access) Park L3254340 P 40.6517318 -74.0183258 2015-03-16 13:00:00 obsr827632 S22386243 Traveling P22 EBIRD 75.0 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294334737 2015-02-01 11:12:23 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Monroe US-NY-055 13.0 Monroe County - Lake Rd. W. Fork L787367 P 43.3309843 -77.9234505 2015-02-01 11:02:00 obsr2595828 S21628861 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301794138 2021-03-30 19:03:54.667077 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-07 14:15:00 obsr2270314 S22241013 Stationary P21 EBIRD 75.0 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320560072 2018-08-06 22:30:17 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Monroe US-NY-055 13.0 Oatka Creek Park L140441 H 43.0066986 -77.8019028 2015-05-17 06:00:00 obsr1281665 S23492910 Traveling P22 EBIRD 240.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311614872 2021-03-23 17:00:13.087107 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 Washington Street, Trumansburg, NY L1365739 P 42.547329 -76.6643316 2015-04-20 15:10:00 obsr982339 S22968184 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289326583 2021-11-09 19:42:28.094073 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Orange US-NY-071 28.0 Middletown L193348 T 41.44589 -74.4229 2015-01-05 11:00:00 obsr2219590 S21210437 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288985955 2021-03-30 19:29:33.633096 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Lotus Lake, Sayville L10183421 H 40.7450323 -73.0656674 2015-01-04 10:39:00 obsr1107696 S21183643 Traveling P22 EBIRD 27.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323915353 2021-03-19 16:02:45.308962 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-30 07:05:00 obsr1830659 S23702917 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311294383 2021-03-24 19:35:34.045988 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Erie US-NY-029 13.0 Tillman Rd. WMA L260205 H 42.9656289 -78.6090731 2015-04-19 08:57:00 obsr916033 S22947483 Traveling P22 EBIRD 218.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316829580 2021-03-30 19:13:38.458673 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-06 19:30:00 obsr334398 S23285469 Traveling P22 EBIRD 116.0 0.547 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311452503 2021-12-03 21:50:44.732892 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 30 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-04-19 10:20:00 obsr155915 S22957212 Traveling P22 EBIRD 39.0 1.609 3.0 1 G1227505 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291950919 2017-02-15 19:56:49 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-18 15:15:00 obsr2493328 S21420188 Stationary P21 EBIRD 30.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305024899 2018-08-04 17:02:43 30494 species avibase-240E3390 House Sparrow Passer domesticus 8 United States US New York US-NY Livingston US-NY-051 13.0 ColdSpring Rd Pond Caledonia L1063399 P 42.9451301 -77.8395456 2015-03-24 07:52:00 obsr1060479 S22497074 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311362422 2020-05-13 10:57:19 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Pulaski-36 Windcrest Dr L3099636 P 43.574895 -76.136795 2015-04-19 17:30:00 obsr1351949 S22951577 Stationary P21 EBIRD 60.0 3.0 0 G5326526 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319494952 2018-08-06 22:29:52 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-14 05:42:00 obsr1830659 S23435274 Traveling P22 EBIRD 160.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303094129 2021-04-01 11:15:31.646886 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Kings US-NY-047 Coney Island Beach--35th St. Overlook L1373631 H 40.5717813 -74.0006958 2015-03-14 16:01:00 obsr152435 S22347939 Traveling P22 EBIRD 53.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303390448 2021-04-01 11:24:19.637193 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 18 United States US New York US-NY Monroe US-NY-055 Ontario Beach Park L2486592 P 43.2590379 -77.6033932 2015-03-15 15:20:00 obsr2240964 S22371216 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288688901 2021-03-30 19:13:38.458673 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Hundred Acre Pond L139802 H 43.0289001 -77.5643997 2015-01-03 08:36:00 obsr2595828 S21157864 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306888743 2021-03-30 19:13:38.458673 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 Hamlin, Lake Ontario State Parkway L3531900 P 43.34096 -77.81946 2015-04-02 07:45:00 obsr2211210 S22638859 Traveling P22 EBIRD 7.0 3.219 1.0 1 G1202326 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291644557 2015-01-18 12:22:05 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-01-10 10:56:00 obsr666964 S21396853 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315476378 2021-04-01 11:24:19.637193 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 125 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-03 07:00:00 obsr334398 S23208317 Traveling P22 EBIRD 163.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294382816 2021-03-24 20:33:47.533911 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-02-01 10:54:00 obsr1655171 S21632533 Traveling P22 EBIRD 23.0 0.805 2.0 1 G1138398 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314568106 2021-03-26 06:09:25.361188 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Broome US-NY-007 28.0 Parsons Rd. L1497949 H 42.2404567 -75.8516071 2015-05-01 09:34:00 obsr800690 S23157703 Traveling P22 EBIRD 25.0 1.609 1.0 1 G1249244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309793149 2021-04-01 12:18:57.910168 279 species avibase-3E04020B Brant Branta bernicla N 6 United States US New York US-NY Tompkins US-NY-109 13.0 NY--Tompkins County road birds L964265 P 42.5411292 -76.4496303 2015-04-11 14:00:00 obsr1167884 S22847314 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321568841 2020-03-15 09:14:53 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-20 16:45:00 obsr1054748 S23553269 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303818609 2015-03-18 06:57:51 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 30 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--S entrance (maint. bldgs) L1350789 H 40.5146545 -74.2124928 2015-03-18 06:57:00 obsr1958124 S22404879 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306699647 2015-04-01 20:31:21 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Suffolk US-NY-103 30.0 Wading River Marsh Preserve L123013 H 40.96167 -72.85778 2015-04-01 09:54:00 obsr1107696 S22625317 Rusty Blackbird Spring Migration Blitz P41 EBIRD 46.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS770454227 2021-11-09 19:41:57.276368 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region--Jados Lane L1818015 H 41.302527 -74.4524271 2015-01-17 11:20:00 obsr363553 S57031637 Stationary P21 EBIRD 13.0 1.0 1 G1112190 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310437434 2021-03-30 19:07:52.958398 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-16 10:37:00 obsr2692140 S22892034 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307706005 2021-04-01 12:32:15.282601 447 species avibase-C235A4D7 Gadwall Mareca strepera X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-05 09:30:00 obsr2207991 S22697900 Traveling P22 EBIRD 150.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304043157 2021-03-26 06:17:19.712573 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Erie US-NY-029 13.0 Maple East Forest (Maple-Bassett Path) L3180767 H 42.9958205 -78.7321773 2015-03-19 12:34:00 obsr2189267 S22422587 Traveling P22 EBIRD 57.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307205603 2018-08-04 17:05:14 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 4 United States US New York US-NY Suffolk US-NY-103 30.0 Southaven County Park L2117422 H 40.8157861 -72.8972683 2015-04-03 13:20:00 obsr1489009 S22662602 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301887968 2021-03-24 21:10:11.310781 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Saratoga US-NY-091 13.0 36 Curt Blvd L2229955 P 43.0492325 -73.8315735 2015-03-07 14:15:00 obsr907769 S22248081 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314346079 2015-04-30 13:03:38 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-04-30 12:13:00 obsr2678807 S23143339 Traveling P22 EBIRD 49.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316416890 2021-03-26 06:21:54.883933 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 2 United States US New York US-NY Kings US-NY-047 30.0 Dyker Beach Park L1044216 H 40.6123885 -74.0192327 2015-05-06 07:58:00 obsr1189028 S23261700 Traveling P22 EBIRD 17.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309184053 2021-04-01 11:15:31.646886 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 07:30:00 obsr139757 S22806414 Traveling P22 EBIRD 300.0 8.047 1.0 1 G1214818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291862417 2015-05-07 17:07:24 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-01-19 07:24:00 obsr455249 S21413263 Traveling P22 EBIRD 14.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301229524 2021-03-26 07:07:10.758746 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 5 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-06 14:33:00 obsr1958124 S22196020 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306394949 2015-03-30 19:58:30 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 3 United States US New York US-NY Tompkins US-NY-109 13.0 Ciao! L3128251 P 42.487596 -76.488753 2015-03-30 19:55:00 obsr2937317 S22601379 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289162896 2018-12-15 15:57:31 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 5 United States US New York US-NY Tompkins US-NY-109 28.0 Beezamer L2957441 P 42.3907709 -76.407305 2015-01-04 10:00:00 obsr140280 S21197694 Stationary P21 EBIRD 130.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319621602 2021-04-01 11:15:31.646886 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 50 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 07:40:00 obsr454647 S23442408 Traveling P22 EBIRD 540.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312023007 2018-11-28 11:52:23 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Chenango US-NY-017 28.0 Smith Kingsman Rd. wetlands L3082117 H 42.458897 -75.855804 2015-04-22 08:43:00 obsr1696616 S22995277 Traveling P22 EBIRD 14.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311826939 2021-03-19 16:02:45.308962 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-04-21 08:00:00 obsr1830659 S22982288 Stationary P21 EBIRD 40.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312805697 2015-04-25 13:16:45 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-04-25 13:01:00 obsr1092576 S23048646 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312956410 2021-03-23 16:39:03.255227 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Richmond US-NY-085 SI-Sawmill Creek/River Road/Old Place L274655 P 40.6134278 -74.1902816 2015-04-25 09:00:00 obsr1032565 S23057397 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311033225 2021-03-26 07:46:52.994574 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-18 13:10:00 obsr2855945 S22931502 Traveling P22 EBIRD 140.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292041597 2021-03-26 06:39:43.334073 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Maintenance Meadow L719748 H 40.7778421 -73.9679231 2015-01-17 13:42:00 obsr1548221 S21427361 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314566022 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-01 08:42:00 obsr2933610 S23157575 Traveling P22 EBIRD 69.0 0.322 2.0 1 G1245623 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295856561 2021-03-26 06:29:56.44369 3441 species avibase-24E39ACD Common Nighthawk Chordeiles minor 8 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-09 15:20:00 obsr934639 S21749621 Traveling P22 EBIRD 50.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322855915 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 12 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 07:29:00 obsr1407710 S23630655 Traveling P22 EBIRD 300.0 3.219 14.0 1 G1289314 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307240331 2019-04-19 12:40:19 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Greene US-NY-039 13.0 Vosburgh Swamp WMA L293903 H 42.3093829 -73.7872795 2015-04-03 14:26:00 obsr2113222 S22665234 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307615426 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 9 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Cranberry Pond, Greece L139798 H 43.3003006 -77.6968002 2015-04-04 09:20:00 obsr408487 S22691907 Stationary P21 EBIRD 18.0 2.0 1 G1205182 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297008795 2021-11-09 19:56:29.393767 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 5 United States US New York US-NY Orange US-NY-071 28.0 My spot L3350343 P 41.2308311 -74.3717122 2015-02-10 09:15:00 obsr1603513 S21849176 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304376148 2021-03-24 19:48:44.880783 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Monroe US-NY-055 13.0 Slater Creek (Russell Station) L140439 H 43.2691002 -77.6264038 2015-03-21 11:10:00 obsr1696616 S22448277 Traveling P22 EBIRD 59.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307663260 2021-03-30 19:22:51.561415 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-05 08:43:00 obsr2574755 S22695118 Traveling P22 EBIRD 85.0 2.092 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309370815 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North Woods L3534756 P 40.7974211 -73.9554012 2015-04-12 09:30:00 obsr1223279 S22818416 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298077096 2021-04-01 11:15:31.646886 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 3 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-02-17 16:35:00 obsr1821546 S21945938 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315365042 2015-05-03 15:27:02 7200 species avibase-49D9148A Great Egret Ardea alba X United States US New York US-NY Columbia US-NY-021 13.0 US-NY-Hudson - 42.2136x-73.8292 - May 3, 2015, 3:18 PM L3610107 P 42.213609 -73.829194 2015-05-02 08:00:00 obsr2941109 S23202322 Traveling P22 EBIRD 120.0 2.414 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320963831 2021-04-01 12:31:09.823741 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 Letchworth SP--Trail No. 17 L3653210 H 42.6868725 -77.9552157 2015-05-17 06:00:00 obsr1009338 S23515687 Traveling P22 EBIRD 360.0 27.359 2.0 1 G1277797 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319347407 2022-02-17 14:32:23.002448 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-12 11:48:00 obsr1932533 S23426527 Traveling P22 EBIRD 145.0 3.219 4.0 1 G1269781 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294643017 2015-02-02 20:03:23 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-02-01 07:30:00 obsr1327990 S21653269 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308902198 2015-04-10 16:34:52 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-10 10:48:00 obsr642516 S22787324 Stationary P21 EBIRD 345.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291175917 2021-03-30 19:07:12.70155 622 species avibase-50566E50 Lesser Scaup Aythya affinis 200 United States US New York US-NY Jefferson US-NY-045 US-NY_852 Wellesley Island L3192313 P 44.3383375 -75.9474564 2015-01-14 08:00:00 obsr2730202 S21358993 Traveling P22 EBIRD_CAN 300.0 20.0 6.0 1 G1110357 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305342363 2021-04-01 12:32:15.282601 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-25 08:30:00 obsr1160328 S22521549 Area P23 EBIRD 210.0 30.3514 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309129962 2018-08-04 17:08:33 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 US-NY-Port Byron - 43.0243x-76.7178 - Apr 11, 2015, 1:34 PM L3555424 P 43.024275 -76.717789 2015-04-11 13:34:00 obsr2937317 S22802717 Traveling P22 EBIRD 122.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306386965 2021-04-01 10:47:08.851048 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 5 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-03-30 16:04:00 obsr800690 S22600757 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311973980 2021-03-26 06:39:43.334073 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas N 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Cherry Hill L1089061 H 40.7747813 -73.972173 2015-04-21 09:21:00 obsr1548221 S22991896 Traveling P22 EBIRD 19.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288097431 2021-03-24 21:13:42.099821 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 5 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-01-01 07:02:00 obsr258431 S21108914 Stationary P21 EBIRD 58.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323910829 2015-05-30 07:56:58 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Erie US-NY-029 13.0 Orchard Park, NY L487324 P 42.7663044 -78.7236285 2015-05-29 08:00:00 obsr1280112 S23702642 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321512602 2016-09-12 10:28:02 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-18 10:00:00 obsr2475075 S23549804 Stationary P21 EBIRD 630.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312511981 2015-04-24 11:21:56 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Tompkins US-NY-109 28.0 US-NY-Danby-1022–1264 Fisher Settlement Rd L3586454 P 42.298802 -76.449831 2015-04-24 06:31:00 obsr1828453 S23028050 Stationary P21 EBIRD 3.0 2.0 1 G1233735 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317133260 2021-04-01 11:15:31.646886 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 07:15:00 obsr2363365 S23302552 Traveling P22 EBIRD 420.0 4.828 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312814748 2021-03-24 20:33:47.533911 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, Wegmans parking lot on inlet shore L1630651 P 42.4347403 -76.5114061 2015-04-25 11:36:00 obsr2307843 S23049108 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315640305 2017-08-16 02:23:57 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-05-04 07:34:00 obsr1764243 S23217341 Traveling P22 EBIRD 13.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298198252 2021-03-26 07:20:31.408164 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-02-10 07:00:00 obsr1592950 S21955925 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292195760 2016-03-24 15:20:12 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Tompkins US-NY-109 28.0 Roy H. Park Preserve--south (FLLT) L305381 H 42.4259195 -76.3357544 2015-01-20 10:17:00 obsr2255296 S21439395 Traveling P22 EBIRD 60.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313594148 2021-04-01 10:58:31.765174 27616 species avibase-D77E4B41 American Robin Turdus migratorius 14 United States US New York US-NY Franklin US-NY-033 13.0 Reagan flats Rd. NY L964226 P 44.9301969 -74.6336539 2015-04-27 15:00:00 obsr1820582 S23096624 Traveling P22 EBIRD 120.0 8.047 2.0 1 G1240030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315073359 2017-12-21 12:25:41 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 4 United States US New York US-NY Columbia US-NY-021 13.0 Olana State Historic Site L357372 H 42.2183005 -73.8287207 2015-05-02 07:59:00 obsr440908 S23186633 Traveling P22 EBIRD 303.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313923022 2018-08-04 17:12:36 32955 species avibase-41062654 Northern Parula Setophaga americana X United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Martens Tract L266868 H 43.0847778 -76.7093333 2015-04-28 10:19:00 obsr2760150 S23117672 Traveling P22 EBIRD 44.0 0.917 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324150268 2021-03-23 17:20:04.546757 662 species avibase-FB738385 Bufflehead Bucephala albeola N X United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Red House Lake L246474 H 42.1033333 -78.7458333 2015-05-27 13:20:00 obsr736608 S23717670 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316251770 2021-03-24 05:37:45.927792 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-05 14:00:00 obsr319738 S23252644 Traveling P22 EBIRD 110.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307794557 2021-12-10 08:21:29.396662 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 10 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-04-05 12:20:00 obsr114791 S22704428 Traveling P22 EBIRD 160.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305166996 2015-03-24 22:29:38 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Schuyler US-NY-097 13.0 Route 79 x Black Rd L3471086 P 42.4565526 -76.7282581 2015-03-24 17:25:00 obsr2173269 S22508017 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317533863 2021-03-26 06:11:29.8335 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 8 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Harbor Marina (private) L632907 H 42.8396606 -76.6973591 2015-05-09 11:59:00 obsr887540 S23325944 Stationary P21 EBIRD 40.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS920857882 2020-05-13 10:59:24 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Oswego US-NY-075 US-NY-Pulaski-3256 County Rte 15 L3508939 P 43.631669 -76.188137 2015-03-23 10:32:00 obsr2720788 S68975299 Stationary P21 EBIRD 28.0 1.0 1 G5326544 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS449545407 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-03-19 18:06:00 obsr2270510 S22427947 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301974345 2015-03-09 16:09:34 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 100 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-09 09:15:00 obsr1201479 S22254287 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316714843 2021-03-26 06:17:19.712573 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-06 08:40:00 obsr1996460 S23279008 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302264568 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-03-10 08:30:00 obsr247620 S22280479 Traveling P22 EBIRD 270.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315826832 2021-03-19 16:19:20.977326 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-04 10:50:00 obsr736608 S23227342 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299842556 2021-03-30 19:29:33.633096 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-02-27 10:41:00 obsr1228860 S22091509 Traveling P22 EBIRD 52.0 0.724 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305871846 2021-04-01 10:57:06.520339 23242 species avibase-94A1C447 Bank Swallow Riparia riparia 5 United States US New York US-NY Essex US-NY-031 14.0 Lake Placid L3521161 P 44.2946742 -73.9989281 2015-03-25 09:00:00 obsr13140 S22562038 Traveling P22 EBIRD 120.0 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323875088 2021-04-01 11:24:19.637193 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-05-29 20:03:00 obsr934639 S23700019 Stationary P21 EBIRD 35.0 2.0 1 G1337404 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311815708 2021-03-24 20:33:47.533911 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-21 09:48:00 obsr1655171 S22981696 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310059182 2021-03-23 17:32:20.03109 303 species avibase-B59E1863 Canada Goose Branta canadensis 40 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--Liverpool Marina L837889 H 43.1007479 -76.2093687 2015-04-14 08:05:00 obsr2561576 S22866217 Stationary P21 EBIRD 60.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS315751532 2021-04-01 11:30:42.037277 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 06:30:00 obsr1146149 S23223345 Traveling P22 EBIRD 500.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306468323 2021-04-01 12:35:52.669792 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Onondaga US-NY-067 13.0 Van Buren Transportation Dept. L2775067 P 43.150699 -76.378511 2015-03-31 07:40:00 obsr2172593 S22607496 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321639505 2015-05-23 21:36:19 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard Rd. (Hwy 90 - CR 154), Cayuga Co. L335771 P 42.7035954 -76.6749601 2015-05-21 06:11:00 obsr620377 S23557809 Traveling P22 EBIRD 27.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295925132 2017-08-16 02:23:57 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 2 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-02-10 07:31:00 obsr1764243 S21755240 Traveling P22 EBIRD 22.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313594145 2021-04-01 10:58:31.765174 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Franklin US-NY-033 13.0 Reagan flats Rd. NY L964226 P 44.9301969 -74.6336539 2015-04-27 15:00:00 obsr1820582 S23096624 Traveling P22 EBIRD 120.0 8.047 2.0 1 G1240030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305620361 2021-04-01 12:32:15.282601 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Tobay Beach Park L1060282 H 40.6113752 -73.4314372 2015-03-27 14:00:00 obsr547602 S22543318 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324279021 2021-11-09 17:58:40.313796 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-31 14:03:00 obsr2512689 S23725825 Traveling P22 EBIRD 87.0 2.414 7.0 1 G1297819 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313910178 2021-11-09 21:50:48.44865 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-28 19:30:00 obsr1588136 S23116826 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297863959 2015-02-16 23:17:05 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Columbia US-NY-021 14.0 Spencertown, NY L2119613 P 42.3085459 -73.5272026 2015-02-16 12:00:00 obsr2558502 S21927635 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303408829 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-15 07:30:00 obsr676630 S22372579 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299013783 2018-08-04 16:58:04 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Seneca US-NY-099 13.0 Geneva Waterfront - Seneca Lake L1187906 P 42.8739513 -76.9593143 2015-02-22 14:45:00 obsr1633923 S22025381 Stationary P21 EBIRD 116.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308049052 2021-11-09 17:55:37.57866 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 4 United States US New York US-NY Dutchess US-NY-027 13.0 Ryder Pond L1133987 H 41.8665248 -73.6488891 2015-04-06 15:39:00 obsr1442681 S22722494 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312361896 2021-03-30 19:22:51.561415 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-23 13:43:00 obsr2906952 S23017767 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308272655 2021-04-01 12:32:15.282601 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 55 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-04-07 11:20:00 obsr2480606 S22739785 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310505271 2021-11-09 21:29:07.641878 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Ulster US-NY-111 13.0 Weston Rd. New Paltz NY L1369650 P 41.7886503 -74.0243076 2015-04-16 08:05:00 obsr1917973 S22897128 Stationary P21 EBIRD 70.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302924455 2021-03-30 19:13:38.458673 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-13 13:30:00 obsr2223307 S22334251 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311452606 2021-03-23 16:39:03.255227 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Richmond US-NY-085 US-NY_2794 30.0 Sharrotts Pond L1119975 H 40.5351905 -74.2263687 2015-04-19 08:01:00 obsr155915 S22957218 Traveling P22 EBIRD 36.0 0.805 3.0 1 G1227511 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312242218 2021-03-23 17:00:13.087107 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-23 06:52:00 obsr620377 S23009852 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309679080 2018-08-04 17:09:00 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Orleans US-NY-073 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Forrestall Flats L899770 H 43.1460255 -78.3854771 2015-04-13 09:01:00 obsr2588479 S22839073 Traveling P22 EBIRD 38.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313663915 2021-04-01 11:30:42.037277 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N X United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-27 12:40:00 obsr856524 S23101032 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322172185 2018-08-06 22:30:53 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-23 07:57:00 obsr1764243 S23591248 Traveling P22 EBIRD 182.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308318493 2022-02-04 06:14:13.892644 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-04-07 09:30:00 obsr800463 S22743144 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318810115 2021-04-01 11:30:42.037277 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-09 12:18:00 obsr2106875 S23395601 Traveling P22 EBIRD 42.0 0.4 5.0 1 G1266481 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301958961 2021-04-01 10:49:39.496318 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY Cayuga US-NY-011 13.0 Triangle Diner L368656 H 42.664724 -76.638903 2015-03-08 10:10:00 obsr1797072 S22253121 Stationary P21 EBIRD 24.0 11.0 1 G1170858 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311763568 2021-03-26 06:14:19.776945 33267 spuh avibase-62BC6EC7 warbler sp. (Parulidae sp.) Parulidae sp. 1 United States US New York US-NY Columbia US-NY-021 13.0 Mud Creek Environmental Learning Center L2793575 H 42.2806092 -73.7101454 2015-04-19 07:30:00 obsr349211 S22978048 Traveling P22 EBIRD 150.0 1.609 12.0 1 G1228299 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317299468 2022-02-17 14:32:23.002448 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 5 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-08 12:20:00 obsr2448957 S23311558 Traveling P22 EBIRD 300.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314908847 2019-07-23 17:27:25 406 species avibase-27B2749A Wood Duck Aix sponsa X United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point SP L109151 H 41.0719093 -71.8838119 2015-02-21 13:30:00 obsr601383 S23177647 Traveling P22 EBIRD 120.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288751229 2021-04-01 12:14:19.266649 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Sag Harbor Area - Orient CBC L3261248 P 41.0014072 -72.3072052 2015-01-03 07:00:00 obsr717785 S21163116 Traveling P22 EBIRD 210.0 8.047 2.0 1 G1093503 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298070399 2021-04-01 11:58:54.966271 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 3 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-Potsdam-28 Pleasant St L3346483 P 44.67341 -74.981799 2015-02-17 08:00:00 obsr2762365 S21945407 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306864010 2021-11-15 03:06:58.889978 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-31 08:54:00 obsr1548221 S22637125 Traveling P22 EBIRD 44.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311993790 2021-03-26 07:43:12.52294 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Morgan Rd. Marshes L99689 H 43.0673045 -76.7170787 2015-04-20 16:57:00 obsr528918 S22993231 Traveling P22 EBIRD 70.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303751890 2021-03-19 16:32:34.732091 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 6 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-03-17 13:00:00 obsr2448957 S22399616 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311867507 2015-04-21 15:10:56 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Stony Brook L2751160 P 40.8882764 -72.4450278 2015-04-21 15:10:00 obsr1693806 S22984847 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293109168 2018-08-04 16:55:13 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-25 11:09:00 obsr749440 S21531872 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296832253 2015-02-14 17:04:46 303 species avibase-B59E1863 Canada Goose Branta canadensis 28 United States US New York US-NY Tompkins US-NY-109 28.0 42.3690x-76.3667 - Feb 13, 2015, 7:38 AM L3357799 P 42.369034 -76.366684 2015-02-13 07:37:00 obsr2673845 S21834180 Traveling P22 EBIRD 30.0 0.016 5.0 1 G1145738 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305732578 2021-03-23 16:33:05.415158 662 species avibase-FB738385 Bufflehead Bucephala albeola 19 United States US New York US-NY Queens US-NY-081 US-NY_1727 Rockaway Beach--Edgemere (Beach 32nd-56th St.) L2466964 H 40.5905359 -73.7753534 2015-03-28 07:15:00 obsr2574755 S22551748 Traveling P22 EBIRD 29.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310817189 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 07:00:00 obsr1312694 S22917855 Traveling P22 EBIRD 120.0 2.414 9.0 1 G1223745 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316047702 2021-03-26 06:29:56.44369 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Monroe US-NY-055 13.0 Webster Park L164450 H 43.2575016 -77.4515302 2015-04-27 14:45:00 obsr2966702 S23240408 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326329409 2019-03-17 16:38:09 26890 species avibase-94A44032 European Starling Sturnus vulgaris 12 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-17 07:30:00 obsr2398987 S23868565 Traveling P22 EBIRD 329.0 1.609 5.0 1 G3954742 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308835371 2021-04-01 11:30:42.037277 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-10 09:00:00 obsr2706811 S22782733 Traveling P22 EBIRD 120.0 1.609 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312762217 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-24 16:25:00 obsr33221 S23045946 Traveling P22 EBIRD 50.0 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323904776 2021-03-26 07:46:52.994574 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 6 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-05-30 05:35:00 obsr1154 S23702255 Traveling P22 EBIRD 49.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299917217 2021-03-26 07:17:29.663409 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N 20 United States US New York US-NY Schoharie US-NY-095 28.0 1353 State Route 7 L863903 P 42.6528008 -74.5260626 2015-02-27 10:30:00 obsr119187 S22096745 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306127329 2021-03-26 07:16:36.956617 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 8 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-03-29 15:45:00 obsr1918430 S22580970 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324051321 2021-03-23 17:18:00.959502 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 1 United States US New York US-NY Albany US-NY-001 13.0 Ketcham Road (east of Cedar Lane) L3671217 P 42.6562687 -74.0343815 2015-05-30 16:15:00 obsr1635947 S23711158 Traveling P22 EBIRD 50.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322829552 2018-08-06 22:31:07 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 5 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-05-25 09:15:00 obsr1830659 S23625475 Traveling P22 EBIRD 35.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292794503 2017-11-27 07:55:42 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Suffolk US-NY-103 Lake Montauk Inlet L1036512 H 41.076981 -71.937511 2015-01-23 11:00:00 obsr369788 S21507024 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314567506 2021-11-15 03:06:58.889978 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-01 08:50:00 obsr2797341 S23157662 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288420837 2015-01-07 15:59:51 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Arshamomaque Pond Preserve L140131 H 41.079361 -72.4004135 2015-01-02 08:33:00 obsr2485753 S21135706 Traveling P22 EBIRD 38.0 1.77 1.0 1 G1100196 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288464371 2021-03-26 07:30:35.289997 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Tompkins US-NY-109 13.0 my back yard Trumansburg L2594789 P 42.5410818 -76.6596392 2015-01-02 11:50:00 obsr2260025 S21139588 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309323068 2021-03-26 07:00:33.333856 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-04-12 08:28:00 obsr2574755 S22815500 Traveling P22 EBIRD 58.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312772508 2015-04-25 11:49:38 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-04-25 11:43:00 obsr2211210 S23046571 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299100298 2018-08-04 16:57:29 30494 species avibase-240E3390 House Sparrow Passer domesticus 12 United States US New York US-NY Nassau US-NY-059 30.0 silver lake L1064439 P 40.6608477 -73.6303711 2015-02-21 07:00:00 obsr1494607 S22034504 Traveling P22 EBIRD 10.0 0.161 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288577008 2021-11-09 20:16:57.783257 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis N 25 United States US New York US-NY Orange US-NY-071 28.0 Kenridge Farm L616768 H 41.4216515 -74.0352345 2015-01-02 11:00:00 obsr1665312 S21149200 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314564819 2021-11-09 18:40:19.746769 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 11 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--West L3002249 H 41.9197784 -73.6751747 2015-05-01 07:10:00 obsr1732267 S23157487 Traveling P22 EBIRD 146.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294084682 2018-08-04 16:55:22 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-28 12:30:00 obsr1318356 S21609153 Stationary P21 EBIRD 37.0 4.0 1 G1129708 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303462210 2018-08-04 17:00:42 303 species avibase-B59E1863 Canada Goose Branta canadensis 15 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-03-14 12:30:00 obsr317968 S22376829 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306106317 2021-03-26 06:29:56.44369 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Monroe US-NY-055 13.0 Lyons and Wardell- traveling. L1567354 P 43.0028314 -77.6111956 2015-03-29 17:00:00 obsr270659 S22579377 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300439676 2021-03-30 19:28:38.115458 30494 species avibase-240E3390 House Sparrow Passer domesticus 50 United States US New York US-NY Seneca US-NY-099 13.0 Wyers Point and Wyers Point Rd. L285461 H 42.6736408 -76.7156979 2015-03-01 15:00:00 obsr2634885 S22137871 Traveling P22 EBIRD 45.0 1.609 4.0 1 G1164362 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307208645 2018-08-04 17:05:15 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Albany US-NY-001 28.0 Lawson Lake County Park L3088359 H 42.534299 -73.959918 2015-04-03 15:00:00 obsr1154 S22662825 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310041348 2021-03-19 16:19:20.977326 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-14 15:00:00 obsr783450 S22864912 Traveling P22 EBIRD 90.0 1.609 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309712375 2021-11-09 19:49:09.316529 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 2 United States US New York US-NY Orange US-NY-071 28.0 Montgomery L2680387 P 41.5263147 -74.2366791 2015-04-10 12:10:00 obsr1987335 S22841184 Traveling P22 EBIRD 70.0 0.322 2.0 1 G1218111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313059990 2021-03-24 20:16:00.852773 279 species avibase-3E04020B Brant Branta bernicla 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-26 08:20:00 obsr1958124 S23063739 Traveling P22 EBIRD 37.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316275148 2021-03-26 06:21:54.883933 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 17:30:00 obsr1407710 S23253978 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305884234 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-03-28 14:00:00 obsr2310825 S22562946 Traveling P22 EBIRD 5.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311441502 2021-04-01 12:32:15.282601 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-19 15:30:00 obsr1488063 S22956536 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306148272 2021-12-10 08:21:29.396662 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-29 14:30:00 obsr1334704 S22582568 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308719601 2015-04-09 18:19:28 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Rensselaer US-NY-083 14.0 Jones Road Extension L1051585 P 42.8123718 -73.3462286 2015-04-09 17:17:00 obsr215455 S22774176 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304067785 2021-04-01 11:54:40.172593 505 species avibase-C732CB10 American Black Duck Anas rubripes N X United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-19 16:02:00 obsr1958124 S22424519 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295384911 2021-04-28 05:26:15.958627 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-02-07 07:00:00 obsr2233143 S21712875 Area P23 EBIRD 420.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314398637 2021-03-23 16:52:36.900075 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-04-30 06:55:00 obsr1228860 S23146684 Traveling P22 EBIRD 55.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298105744 2015-02-17 19:03:58 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Niagara US-NY-063 13.0 Home L3362355 P 43.281241 -78.5073057 2015-02-17 16:22:00 obsr1839078 S21948344 Stationary P21 EBIRD 18.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306479114 2018-08-04 17:04:50 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-31 08:30:00 obsr2211210 S22608203 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306148446 2021-03-30 19:03:28.117389 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.7298675 2015-03-29 12:56:00 obsr241086 S22582584 Stationary P21 EBIRD 34.0 4.0 1 G1197069 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304178537 2021-04-01 11:24:19.637193 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 6 United States US New York US-NY Monroe US-NY-055 13.0 Greater Rochester International Airport, Greater Rochester International Airport L3500882 P 43.1289 -77.66606 2015-03-20 10:03:00 obsr2595828 S22433065 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305921869 2018-08-04 17:04:30 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kanyoo Trail L152120 H 43.1168988 -78.430624 2015-03-28 13:39:00 obsr1734835 S22565906 Traveling P22 EBIRD 50.0 1.368 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299042576 2021-03-24 21:01:50.671145 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-22 15:15:00 obsr2448785 S22028696 Traveling P22 EBIRD 105.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298189985 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-02-18 08:55:00 obsr259298 S21955179 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311595478 2021-03-22 09:15:15.32301 483 species avibase-85625D75 Mallard Anas platyrhynchos 12 United States US New York US-NY Niagara US-NY-063 13.0 Greenwood Cemetery (Niagara Co.) L787363 H 43.3115262 -78.8345487 2015-04-20 10:20:00 obsr2756208 S22966865 Traveling P22 EBIRD 47.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321176672 2022-01-12 18:14:10.119384 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--South Entrance L825062 H 44.3641149 -74.1511381 2015-05-19 07:12:00 obsr2630526 S23529535 Traveling P22 EBIRD 153.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295211796 2021-04-01 12:14:19.266649 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven National Laboratory (restricted access) L2808445 H 40.8710034 -72.880066 2015-02-06 12:20:00 obsr1228860 S21698642 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308978812 2021-11-09 19:57:48.795138 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Orange US-NY-071 28.0 River Rd., Montgomery L3555349 H 41.5441694 -74.2160477 2015-04-10 13:55:00 obsr1181085 S22792870 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302269391 2021-04-01 12:35:52.669792 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas X 1 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-10 13:32:00 obsr2224244 S22280846 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288688902 2021-03-30 19:13:38.458673 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Hundred Acre Pond L139802 H 43.0289001 -77.5643997 2015-01-03 08:36:00 obsr2595828 S21157864 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319574886 2021-11-09 17:58:40.313796 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-14 07:00:00 obsr2700041 S23439760 Traveling P22 EBIRD 240.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311276225 2021-05-10 13:35:55.973042 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Schuyler US-NY-097 13.0 Catharine Creek WMA--Rock Cabin Rd. L1359885 H 42.369661 -76.8471749 2015-04-19 10:34:00 obsr2173269 S22946462 Traveling P22 EBIRD 114.0 3.219 2.0 1 G1226340 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308947244 2021-03-26 06:39:43.334073 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-10 16:30:00 obsr1513140 S22790734 Traveling P22 EBIRD 85.0 2.591 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308772806 2021-03-30 19:13:38.458673 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Beatty Point L299148 H 43.2762602 -77.684471 2015-04-09 06:15:00 obsr991026 S22778171 Traveling P22 EBIRD 160.0 0.805 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299764986 2018-08-04 16:58:17 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Kings US-NY-047 The Narrows (Brooklyn) L1918391 H 40.6218575 -74.0503407 2015-02-26 12:10:00 obsr2363365 S22085432 Stationary P21 EBIRD 20.0 2.0 1 G1160544 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299095813 2021-03-23 17:22:05.708166 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Herkimer US-NY-043 13.0 Sheep Run Daylily Farm L655147 H 43.2036169 -74.9769688 2015-02-22 13:10:00 obsr1787323 S22034198 Stationary P21 EBIRD 50.0 2.0 1 G1156978 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320729838 2021-03-26 07:46:52.994574 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-16 14:28:00 obsr2321296 S23502007 Traveling P22 EBIRD 72.0 1.609 2.0 1 G1276038 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289096981 2021-04-01 12:18:57.910168 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-01-04 15:22:00 obsr730231 S21192562 Stationary P21 EBIRD 9.0 2.0 1 G1095567 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319099450 2021-03-26 06:12:17.833181 406 species avibase-27B2749A Wood Duck Aix sponsa 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-05-12 07:30:00 obsr479109 S23412743 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312754493 2021-11-09 19:01:40.008558 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-04-25 06:25:00 obsr1433400 S23045496 Traveling P22 EBIRD 180.0 7.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318931228 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-12 06:30:00 obsr1088395 S23402690 Traveling P22 EBIRD 240.0 4.828 3.0 1 G1267388 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314166772 2018-08-04 17:13:03 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Saratoga US-NY-091 13.0 Wrights Loop L691715 H 42.9902551 -73.6132237 2015-04-29 16:20:00 obsr634484 S23132541 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320650951 2018-08-04 17:27:41 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Chenango US-NY-017 28.0 Coventry State Forest wetland on North Rd L3568757 P 42.3337836 -75.6384015 2015-05-17 06:34:00 obsr1303581 S23497850 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322338455 2018-08-06 22:30:53 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Essex US-NY-031 14.0 Connery Pond L2881813 P 44.309525 -73.937073 2015-05-23 08:03:00 obsr265018 S23600312 Traveling P22 EBIRD 82.0 1.127 3.0 1 G1286350 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300269647 2021-11-15 03:06:58.889978 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-25 08:16:00 obsr1548221 S22125613 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS595263970 2021-03-24 20:33:47.533911 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-15 11:35:00 obsr282856 S44223338 Traveling P22 EBIRD 90.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322149561 2021-03-30 19:13:38.458673 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-23 08:12:00 obsr1696616 S23589970 Traveling P22 EBIRD 67.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292541799 2021-03-30 19:29:33.633096 6616 species avibase-7E022378 Common Loon Gavia immer 6 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-21 07:15:00 obsr777692 S21487180 Stationary P21 EBIRD 89.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289440753 2021-04-01 12:14:19.266649 447 species avibase-C235A4D7 Gadwall Mareca strepera N 1 United States US New York US-NY Suffolk US-NY-103 30.0 Swan Lake, East Patchogue L279859 H 40.770108 -72.9932633 2015-01-03 08:40:00 obsr2934754 S21219055 Traveling P22 EBIRD 140.0 1.609 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312661096 2020-07-20 09:16:51 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-24 17:42:00 obsr2224244 S23039123 Traveling P22 EBIRD 167.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296315948 2021-03-23 17:21:08.587586 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Delaware US-NY-025 28.0 Hancock NY Area (DE-14) L3356416 P 41.9667658 -75.2613258 2015-02-07 10:15:00 obsr1872991 S21787962 Traveling P22 EBIRD 165.0 78.858 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304337657 2021-03-30 19:13:38.458673 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-21 06:53:00 obsr1696616 S22445261 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319334904 2021-03-24 19:35:34.045988 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Erie US-NY-029 13.0 Alden - Crittenden Rd. L586154 P 42.9165364 -78.4935379 2015-05-13 15:30:00 obsr2871264 S23425848 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303772760 2015-03-17 20:32:54 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 5 United States US New York US-NY Oneida US-NY-065 13.0 Holland Patent L190029 T 43.24177 -75.25681 2015-03-15 09:00:00 obsr388852 S22401162 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308887997 2021-03-26 06:14:19.776945 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Columbia US-NY-021 14.0 Spencertown L2884205 P 42.3074669 -73.5266876 2015-04-10 12:00:00 obsr1901122 S22786264 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308225459 2021-03-24 19:27:13.077399 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-04-05 08:55:00 obsr142874 S22736328 Stationary P21 EBIRD 545.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322316249 2021-12-24 11:02:14.483178 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-23 16:33:00 obsr730231 S23599005 Traveling P22 EBIRD 103.0 2.414 2.0 1 G1286135 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324194592 2021-04-01 11:15:31.646886 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-31 07:51:00 obsr334398 S23720323 Traveling P22 EBIRD 286.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291571454 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-01-17 07:35:00 obsr350767 S21391023 Traveling P22 EBIRD 87.0 1.287 5.0 1 G1112903 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292874874 2021-03-26 07:30:35.289997 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1000 United States US New York US-NY Tompkins US-NY-109 13.0 Salt Point Natural Area L353038 H 42.5394116 -76.5496267 2015-01-24 07:15:00 obsr2001485 S21513307 Traveling P22 EBIRD 62.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320817252 2021-03-19 16:02:45.308962 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-05-18 06:40:00 obsr1830659 S23507752 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307125356 2015-04-03 10:31:55 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Kings US-NY-047 30.0 Garden Place L1067651 P 40.6930284 -73.9964336 2015-04-03 09:00:00 obsr263005 S22657074 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317646837 2021-11-15 03:06:58.889978 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-09 15:59:00 obsr2493447 S23332224 Traveling P22 EBIRD 30.0 0.998 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317075278 2021-03-26 06:17:19.712573 26890 species avibase-94A44032 European Starling Sturnus vulgaris 7 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-07 07:50:00 obsr736608 S23299398 Traveling P22 EBIRD 130.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303462219 2018-08-04 17:00:42 526 species avibase-56CCA717 Northern Pintail Anas acuta 7 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-03-14 12:30:00 obsr317968 S22376829 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318973871 2021-04-01 12:31:09.823741 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Livingston US-NY-051 13.0 Rosebrugh Road L1022969 P 42.7197061 -77.735728 2015-05-12 08:59:00 obsr72341 S23404975 Traveling P22 EBIRD 6.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313051483 2021-03-23 16:39:03.255227 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF--Snag Swamp L1473094 H 40.515363 -74.2213938 2015-04-26 07:46:00 obsr1958124 S23063237 Traveling P22 EBIRD 29.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309926367 2021-11-15 03:06:58.889978 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-14 06:30:00 obsr1135516 S22856777 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318892486 2021-04-01 11:15:31.646886 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-05-12 06:36:00 obsr564905 S23400665 Traveling P22 EBIRD 84.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307407230 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-04 07:21:00 obsr1407710 S22677498 Traveling P22 EBIRD 255.0 8.047 11.0 1 G1203947 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS356863560 2021-04-01 11:30:42.037277 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-21 06:20:00 obsr1387984 S26108389 Stationary P21 EBIRD 175.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309508983 2021-03-19 16:26:51.561076 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Franklin US-NY-033 13.0 Private Property - Alderon Marsh L1179127 P 44.9946705 -74.5498753 2015-04-12 09:00:00 obsr2161273 S22827045 Traveling P22 EBIRD 360.0 6.437 3.0 1 G1216733 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292951033 2018-08-04 16:54:56 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-01-23 13:50:00 obsr302343 S21519431 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296308152 2021-11-15 03:06:58.889978 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-12 16:24:00 obsr870166 S21787357 Traveling P22 EBIRD 35.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522756 2021-03-26 07:07:10.758746 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-08 11:28:00 obsr155915 S22758863 Traveling P22 EBIRD 79.0 1.609 2.0 1 G1211595 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315768783 2021-11-09 17:58:40.313796 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-04 08:00:00 obsr445356 S23224327 Traveling P22 EBIRD 240.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314854955 2021-12-24 11:02:14.483178 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-02 07:40:00 obsr991026 S23174835 Traveling P22 EBIRD 128.0 3.219 1.0 1 G1247727 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300263191 2021-03-26 08:14:57.071052 456 species avibase-D201EB72 American Wigeon Mareca americana 4 Female, Adult (2); Male, Adult (2) United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-03-01 12:30:00 obsr2924527 S22125126 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309365188 2021-03-19 16:32:34.732091 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias N X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-12 10:44:00 obsr152435 S22818084 Traveling P22 EBIRD 76.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301498610 2021-03-26 06:11:29.8335 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-03-07 16:26:00 obsr1092576 S22217245 Stationary P21 EBIRD 20.0 4.0 1 G1169194 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292643971 2015-01-22 15:57:19 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 4 United States US New York US-NY Suffolk US-NY-103 30.0 2 East Moriches Blvd L1610716 P 40.811904 -72.7469968 2015-01-22 14:30:00 obsr757440 S21495138 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308568049 2021-03-24 19:27:13.077399 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 9 United States US New York US-NY Chemung US-NY-015 28.0 Sperr Memorial Park L7578475 H 42.1465676 -76.9144776 2015-04-08 16:55:00 obsr1334267 S22762357 Traveling P22 EBIRD 16.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290431859 2016-01-27 15:21:38 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Tompkins US-NY-109 28.0 125C Yellow Barn Rd. L1044911 P 42.4758637 -76.3421112 2015-01-11 09:00:00 obsr2001485 S21298990 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314322840 2021-03-24 20:06:25.370375 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. N1, sharp bend E to CR 27 [Palmyra_SE] L977011 P 43.0085543 -77.1591604 2015-04-30 08:54:00 obsr606693 S23142032 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319499083 2021-04-01 10:57:06.520339 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-05-14 06:54:00 obsr2420101 S23435514 Traveling P22 EBIRD 102.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308415723 2021-03-31 04:00:16.012838 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Cortland US-NY-023 28.0 Currie Rd fields, Tully L2712921 P 42.748374 -76.126477 2015-04-08 08:05:00 obsr1696616 S22750456 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323923242 2021-03-26 06:29:56.44369 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-29 06:11:00 obsr2595828 S23703457 Stationary P21 EBIRD 100.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294611395 2019-10-25 16:14:22 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY St. Lawrence US-NY-089 13.0 Country Route 24, .5 miles from 29 L3334812 P 44.5382859 -75.0166869 2015-02-02 15:00:00 obsr2617327 S21650754 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306143211 2015-03-29 19:39:25 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 75 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-01 17:00:00 obsr1778524 S22582210 Stationary P21 EBIRD 20.0 2.0 1 G1197049 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318485390 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-09 10:30:00 obsr1348614 S23377475 Traveling P22 EBIRD 60.0 2.0 6.0 1 G1265611 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296797255 2021-12-03 21:50:44.732892 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 90 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-02-14 12:37:00 obsr1958124 S21830993 Traveling P22 EBIRD 48.0 1.609 2.0 1 G1145898 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320145752 2021-12-24 11:02:14.483178 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-16 11:00:00 obsr1991824 S23471485 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310958132 2021-11-15 03:06:58.889978 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-17 09:00:00 obsr423515 S22926886 Traveling P22 EBIRD 240.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314444659 2021-04-01 11:15:31.646886 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:30:00 obsr2078092 S23149665 Traveling P22 EBIRD 390.0 4.828 30.0 1 G1244636 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309157171 2021-03-26 06:52:34.887371 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-03-06 10:00:00 obsr2141910 S22804579 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307928211 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Kings US-NY-047 30.0 86th St & 14th Avenue L3311681 P 40.6126819 -74.011867 2015-04-06 08:12:00 obsr1189028 S22714274 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317637397 2021-04-01 11:30:42.037277 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 08:50:00 obsr1932533 S23331683 Traveling P22 EBIRD 250.0 4.828 15.0 1 G1261209 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302493303 2021-03-23 16:30:20.514143 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-11 09:49:00 obsr2945658 S22300957 Stationary P21 EBIRD 232.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296219609 2015-02-12 03:24:54 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-01-21 07:30:00 obsr2694889 S21778497 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312849556 2021-03-19 16:19:20.977326 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-25 13:47:00 obsr558077 S23051065 Traveling P22 EBIRD 102.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318179633 2015-05-10 14:48:10 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Fulton US-NY-035 14.0 HOME L2580910 P 43.1207486 -74.5033795 2015-05-10 14:00:00 obsr117560 S23360611 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323975739 2018-08-06 22:31:26 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor20 L3513962 H 42.7170586 -76.0855457 2015-05-30 08:23:00 obsr1042912 S23706562 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312299160 2018-08-04 17:11:55 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Muckrace Flats L690187 H 43.0734492 -76.739459 2015-04-23 12:30:00 obsr354090 S23013453 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309469064 2021-11-09 18:37:28.581198 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Farm View Road, Wappingers Falls, NY L2770006 P 41.6466849 -73.8395405 2015-04-12 15:15:00 obsr2103727 S22824187 Stationary P21 EBIRD 75.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314181261 2019-07-23 17:28:29 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-04-29 07:45:00 obsr2504709 S23128256 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310839881 2021-04-01 10:45:00.916278 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 8 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-04-18 06:00:00 obsr1135516 S22919400 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324520386 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY New York US-NY-061 Liberty Island L3690513 P 40.6888063 -74.0442038 2015-04-26 15:15:00 obsr736443 S23741660 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314068870 2015-04-29 13:54:26 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Westchester US-NY-119 30.0 Home L3194169 P 41.1740736 -73.6296415 2015-04-29 13:35:00 obsr2962893 S23126615 Traveling P22 EBIRD 18.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308980870 2021-03-30 19:07:52.958398 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-10 16:00:00 obsr2363365 S22793015 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326329419 2019-03-17 16:38:09 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-17 07:30:00 obsr2398987 S23868565 Traveling P22 EBIRD 329.0 1.609 5.0 1 G3954742 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303258319 2021-03-26 07:46:52.994574 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-15 12:21:00 obsr2893884 S22360511 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308037134 2021-03-24 20:23:39.258075 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-04-03 06:43:00 obsr564905 S22721764 Traveling P22 EBIRD 60.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298146330 2021-04-01 11:24:19.637193 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-02-17 07:30:00 obsr1782363 S21951676 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298201397 2021-03-26 08:14:57.071052 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Westchester US-NY-119 30.0 US-NY-Yonkers-13 Morsemere Pl L3353319 P 40.959799 -73.889912 2015-02-18 10:34:00 obsr482391 S21956220 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320432913 2021-11-09 17:47:17.381431 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 2 United States US New York US-NY Dutchess US-NY-027 13.0 * Ring Road, Salt Point, NY L1084767 P 41.7968319 -73.8318479 2015-05-16 05:00:00 obsr763723 S23486272 Incidental P20 EBIRD 1.0 0 G1274557 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314707923 2021-03-26 07:56:20.588749 11371 species avibase-75600969 Northern Flicker Colaptes auratus X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-01 12:05:00 obsr916370 S23165739 Traveling P22 EBIRD 50.0 2.092 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295389721 2021-03-24 20:23:39.258075 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Cedar Beach L1019111 P 40.6285456 -73.3529663 2015-02-07 08:45:00 obsr247620 S21713246 Traveling P22 EBIRD 135.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299823142 2022-02-18 10:47:29.953615 6339 species avibase-8535345B Herring Gull Larus argentatus N 8 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-02-27 08:44:00 obsr1062070 S22089894 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314163949 2021-03-24 20:33:47.533911 32220 species avibase-AF49F890 Lincoln's Sparrow Melospiza lincolnii N 10 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-04-29 18:00:00 obsr1655171 S23132360 Traveling P22 EBIRD 12.0 1.77 2.0 1 G1244179 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318530073 2021-11-09 18:47:27.744579 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L3634310 P 41.6768225 -73.8959956 2015-05-09 09:00:00 obsr418713 S23379787 Traveling P22 EBIRD 90.0 2.414 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291535808 2021-03-26 06:29:56.44369 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush Dam L1066995 H 42.9928613 -77.6449406 2015-01-17 14:00:00 obsr2223307 S21388273 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316084468 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-05 10:46:00 obsr2321296 S23242423 Traveling P22 EBIRD 76.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322935073 2021-03-26 06:17:19.712573 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-25 13:10:00 obsr2155111 S23635738 Traveling P22 EBIRD 410.0 1.609 1.0 1 G1292307 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319678740 2021-04-01 11:30:42.037277 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 17:15:00 obsr822430 S23445698 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296182442 2021-12-10 08:21:29.396662 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-08 08:35:00 obsr271871 S21775534 Traveling P22 EBIRD 90.0 4.828 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308726122 2021-04-01 11:15:31.646886 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery L2827319 P 40.6555736 -73.9938211 2015-04-09 10:05:00 obsr827632 S22774685 Traveling P22 EBIRD 150.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135197 2021-03-26 07:56:20.588749 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 8 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-24 16:00:00 obsr2218212 S23589158 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289438076 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-01 10:30:00 obsr1828047 S21218841 Traveling P22 EBIRD 90.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313650277 2021-12-10 08:21:29.396662 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-04-27 08:15:00 obsr1198912 S23100188 Traveling P22 EBIRD 225.0 4.506 25.0 1 G1239686 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302933239 2021-03-19 16:02:45.308962 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-13 17:20:00 obsr290506 S22335161 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300687853 2021-03-26 06:07:45.516082 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-03-03 08:30:00 obsr128156 S22155651 Rusty Blackbird Spring Migration Blitz P41 EBIRD 46.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303432928 2018-08-04 17:00:39 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Stewart Park Cayuga Lake L693667 P 42.464064 -76.5044653 2015-03-14 09:30:00 obsr1587816 S22374537 Incidental P20 EBIRD 12.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314560365 2015-05-03 14:59:56 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 7 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-01 07:52:00 obsr800690 S23157214 Traveling P22 EBIRD 92.0 3.219 1.0 1 G1249247 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310469788 2018-08-04 17:09:26 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 12 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-16 12:15:00 obsr1489009 S22894326 Traveling P22 EBIRD 780.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298726943 2018-08-04 16:57:56 6339 species avibase-8535345B Herring Gull Larus argentatus 30 United States US New York US-NY Yates US-NY-123 13.0 Long Point (Seneca Lake) L489177 H 42.6566869 -76.9104767 2015-02-21 10:21:00 obsr1092576 S22002088 Stationary P21 EBIRD 24.0 2.0 1 G1154798 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295446471 2022-02-17 14:32:23.002448 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-07 08:25:00 obsr2502574 S21717918 Traveling P22 EBIRD 130.0 0.805 2.0 1 G1138154 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305024900 2018-08-04 17:02:43 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Livingston US-NY-051 13.0 ColdSpring Rd Pond Caledonia L1063399 P 42.9451301 -77.8395456 2015-03-24 07:52:00 obsr1060479 S22497074 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301375234 2018-11-05 19:36:45 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Oswego US-NY-075 13.0 Gray Rd., btwn CR 25 and W 1st St. L1527040 H 43.421768 -76.493612 2015-03-07 11:54:00 obsr1092576 S22208412 Traveling P22 EBIRD 13.0 1.609 4.0 1 G1168758 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312748939 2021-04-01 11:30:42.037277 26278 species avibase-A381417F House Wren Troglodytes aedon N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 07:50:00 obsr512869 S23045123 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS341229757 2016-12-24 23:31:33 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-01-03 obsr2167884 S24951865 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308299746 2021-11-09 21:57:08.901467 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Ulster US-NY-111 13.0 Saugerties ny L3357950 P 41.9819526 -74.0643311 2015-04-07 14:00:00 obsr947483 S22741710 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304441090 2021-03-26 06:13:28.501496 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 250 United States US New York US-NY Chemung US-NY-015 28.0 Grove St. Fishing Access L1949349 H 42.08293 -76.81726 2015-03-21 09:52:00 obsr1092576 S22452865 Stationary P21 EBIRD 8.0 2.0 1 G1187061 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293189029 2016-01-27 15:21:38 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Tompkins US-NY-109 28.0 125C Yellow Barn Rd. L1044911 P 42.4758637 -76.3421112 2015-01-25 13:00:00 obsr1655171 S21535185 Stationary P21 EBIRD 49.0 2.0 1 G1122854 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310155554 2021-11-09 22:04:59.499979 337 species avibase-694C127A Mute Swan Cygnus olor N 2 United States US New York US-NY Ulster US-NY-111 13.0 Saugerties Lighthouse L490267 H 42.0722249 -73.9367873 2015-04-14 12:19:00 obsr1636520 S22872876 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307889472 2021-03-26 07:56:20.588749 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 15 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-05 09:15:00 obsr2852365 S22711439 Traveling P22 EBIRD 90.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310830155 2018-02-01 15:11:46 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor28 L3513970 H 42.4979113 -76.1702413 2015-04-18 06:36:00 obsr1092576 S22918747 Stationary P21 EBIRD 5.0 2.0 1 G1224167 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319149068 2018-08-04 17:12:13 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Jefferson US-NY-045 US-NY_778 13.0 Perch River WMA L253293 H 44.0861979 -75.9664464 2015-04-25 13:30:00 obsr585290 S23415397 Traveling P22 EBIRD 60.0 22.531 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296893271 2021-11-09 19:56:56.772281 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region- Rudinski Ln L3371748 P 41.291613 -74.4982052 2015-02-14 10:45:00 obsr2898234 S21839616 Stationary P21 EBIRD 40.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312822483 2021-04-01 11:30:42.037277 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 09:00:00 obsr369788 S23049520 Traveling P22 EBIRD 180.0 3.219 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292937180 2021-06-13 05:18:24.710376 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Kings US-NY-047 30.0 Wyckoff Street Home L903070 P 40.683806 -73.9857732 2015-01-24 11:03:00 obsr2883698 S21518364 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312009040 2021-04-01 12:30:15.438381 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-04-21 06:30:00 obsr2694889 S22994275 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314177579 2021-03-23 17:00:13.087107 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-19 07:00:00 obsr1831959 S23133238 Traveling P22 EBIRD 240.0 0.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292608673 2021-08-10 10:40:09.813022 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus X United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-01-22 12:10:00 obsr2555972 S21492571 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307099884 2016-05-02 20:54:06 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-04-03 07:28:00 obsr2377251 S22655086 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318643025 2015-05-11 14:56:12 26278 species avibase-A381417F House Wren Troglodytes aedon X United States US New York US-NY Oswego US-NY-075 13.0 Oswego River near Coleman's Pub L2995666 P 43.4596945 -76.5119246 2015-03-22 09:40:00 obsr2409011 S23385916 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310272064 2015-04-15 17:37:28 27616 species avibase-D77E4B41 American Robin Turdus migratorius 7 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-04-14 10:28:00 obsr393804 S22880586 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299686129 2019-07-23 17:27:29 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 70 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-02-26 10:33:00 obsr502830 S22079231 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321874486 2021-03-26 06:17:19.712573 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-21 11:30:00 obsr1379161 S23572574 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310056858 2021-04-01 11:24:19.637193 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Monroe US-NY-055 13.0 LaSalle's Landing Park L140438 H 43.1763487 -77.5259313 2015-04-14 17:23:00 obsr1124114 S22866065 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312128899 2015-07-17 22:23:53 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-04-22 16:45:00 obsr2270510 S23001989 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299005091 2021-04-01 12:32:15.282601 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-02-22 11:45:00 obsr247620 S22024621 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324210508 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-05-31 10:00:00 obsr87415 S23721321 Traveling P22 EBIRD 60.0 1.207 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317073718 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-07 05:23:00 obsr2595828 S23299311 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296022959 2016-01-27 10:55:43 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Saratoga US-NY-091 14.0 Town of Providence Private Home L2227285 P 43.0943112 -73.9951837 2015-02-10 07:30:00 obsr2660627 S21762947 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321851330 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-18 16:45:00 obsr2603801 S23570802 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1282662 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316449240 2018-08-06 22:29:01 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-06 06:23:00 obsr1165633 S23263653 Traveling P22 EBIRD 256.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316597002 2021-04-09 15:15:02.779794 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Albany US-NY-001 13.0 Selkirk, Marsdale Ln L3618249 P 42.58066 -73.84562 2015-05-06 17:30:00 obsr1636520 S23272331 Stationary P21 EBIRD 60.0 2.0 1 G1254957 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298830821 2021-03-26 07:53:57.664705 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-02-21 08:08:00 obsr1060479 S22010610 Stationary P21 EBIRD 622.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309991871 2021-03-26 06:20:37.302746 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Greene US-NY-039 13.0 wildwing park catskill L749524 P 42.2294707 -73.8825417 2015-04-14 07:30:00 obsr2515158 S22861357 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308131769 2017-08-16 17:00:00 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2146060 H 42.756017 -78.862009 2015-04-06 12:55:00 obsr319738 S22728812 Stationary P21 EBIRD 88.0 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS450350554 2021-03-26 07:46:52.994574 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-19 07:00:00 obsr2270510 S22940546 Traveling P22 EBIRD 51.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315269583 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 06:47:00 obsr642993 S23197558 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305710579 2021-03-26 07:43:12.52294 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Road L349902 P 43.0473407 -76.7303157 2015-03-27 13:50:00 obsr195058 S22550075 Traveling P22 EBIRD 55.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288413650 2021-04-01 12:35:52.669792 592 species avibase-3072CC16 Redhead Aythya americana 15 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-01 14:50:00 obsr1633923 S21135066 Stationary P21 EBIRD 80.0 1.0 1 G1090261 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288701112 2015-01-03 10:49:06 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 US-NY-Wading River-85 20th St L3029005 P 40.957156 -72.809895 2015-01-03 09:48:00 obsr1006926 S21159016 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322028850 2018-08-06 22:30:50 526 species avibase-56CCA717 Northern Pintail Anas acuta 3 United States US New York US-NY Essex US-NY-031 13.0 Noblewood Park L191517 H 44.3548774 -73.356574 2015-05-22 11:30:00 obsr2105231 S23582455 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320558697 2021-03-30 19:13:38.458673 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-17 07:20:00 obsr528918 S23492847 Traveling P22 EBIRD 150.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302428498 2015-03-11 10:43:06 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Emerson Park L354461 H 42.901996 -76.537299 2015-03-10 15:41:00 obsr534615 S22296359 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298490609 2021-04-01 12:32:15.282601 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-02-19 12:00:00 obsr1160328 S21981676 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290237740 2021-04-01 11:15:31.646886 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-10 13:40:00 obsr876649 S21283498 Traveling P22 EBIRD 125.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082772 2021-03-24 19:27:13.077399 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Chemung US-NY-015 28.0 Big Flats Trail L267718 H 42.1451205 -76.909635 2015-01-15 09:24:00 obsr1334267 S21430586 Traveling P22 EBIRD 16.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289231388 2021-04-01 12:14:19.266649 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Riverhead Sod Farms / 105 area L1741784 P 40.9584228 -72.6594854 2015-01-03 13:50:00 obsr2934754 S21202681 Traveling P22 EBIRD 60.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301830115 2015-03-14 21:35:21 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-08 17:00:00 obsr2255296 S22243758 Stationary P21 EBIRD 90.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309763472 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-04-13 13:45:00 obsr2475766 S22845350 Traveling P22 EBIRD 75.0 0.805 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308677081 2021-11-09 18:42:18.371962 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 ON C4 ON Female, Adult (1); Male, Adult (1) United States US New York US-NY Dutchess US-NY-027 US-NY_2790 28.0 Dennings Point L3138079 P 41.4889631 -73.9967823 2015-04-09 13:10:00 obsr2770696 S22770700 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308248651 2021-04-01 12:26:53.827486 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 16 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-04-07 11:40:00 obsr1154 S22738182 Traveling P22 EBIRD 35.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303781916 2021-04-01 12:45:19.712958 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Westchester US-NY-119 28.0 Charles Point, Peekskill L651242 H 41.2780121 -73.9418079 2015-03-17 11:00:00 obsr272939 S22401799 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308501250 2021-03-30 19:29:33.633096 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-08 12:00:00 obsr2692002 S22757234 Traveling P22 EBIRD 90.0 1.609 2.0 1 G1211459 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308021506 2015-06-16 16:58:42 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 5 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Carncross Rd. L99688 H 43.0787739 -76.7080184 2015-04-05 13:20:00 obsr1167884 S22720629 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294472581 2021-03-24 21:10:11.310781 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 4 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-01-31 08:00:00 obsr1664745 S21639519 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309974580 2021-04-07 20:48:00.643023 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-14 11:29:00 obsr354090 S22860238 Traveling P22 EBIRD 51.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289884732 2021-03-23 16:39:03.255227 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-08 15:17:00 obsr1958124 S21254622 Traveling P22 EBIRD 7.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315434303 2021-03-30 19:13:38.458673 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Durand-Eastman Park--Eastman Lake L139790 H 43.2341003 -77.5615005 2015-05-03 09:00:00 obsr2504709 S23206007 Traveling P22 EBIRD 67.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS462405487 2021-04-01 11:54:40.172593 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N X United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-01-29 11:01:00 obsr1958124 S34094445 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304666569 2021-11-09 21:43:58.1951 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L2086436 P 41.63417 -74.20833 2015-03-22 15:15:00 obsr1636520 S22469461 Stationary P21 EBIRD 30.0 2.0 1 G1188515 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310382630 2021-03-24 05:37:45.927792 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-16 07:21:00 obsr502830 S22888385 Traveling P22 EBIRD 68.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303333179 2016-03-30 17:44:19 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 8 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-03-14 15:12:00 obsr2683910 S22366678 Traveling P22 EBIRD 3.0 1.609 2.0 1 G1181040 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312275712 2021-03-26 07:20:31.408164 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-04-14 07:00:00 obsr1592950 S23011987 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319930062 2021-03-26 06:39:43.334073 6339 species avibase-8535345B Herring Gull Larus argentatus 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Triplets Br. area (btwn 77th-79th St. transv.) L4525727 H 40.779838 -73.9724077 2015-05-15 09:54:00 obsr1548221 S23459751 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308897826 2021-04-01 11:15:31.646886 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-10 14:30:00 obsr1731572 S22787011 Traveling P22 EBIRD 60.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290727791 2022-03-06 12:39:33.700954 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-01-10 09:30:00 obsr1494607 S21322994 Traveling P22 EBIRD 80.0 0.805 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306334204 2021-03-26 06:39:43.334073 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-30 07:03:00 obsr1433400 S22596606 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288539294 2021-04-01 12:32:15.282601 447 species avibase-C235A4D7 Gadwall Mareca strepera X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-01-02 12:25:00 obsr2505956 S21145980 Traveling P22 EBIRD 170.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306996819 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-02 13:45:00 obsr1659461 S22647493 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301457650 2019-07-23 17:27:43 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Cayuga US-NY-011 13.0 Ellis Rd., Levanna L1340510 H 42.7851685 -76.7161914 2015-03-07 15:49:00 obsr1092576 S22213828 Traveling P22 EBIRD 14.0 0.805 4.0 1 G1169136 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314174154 2022-02-27 09:35:49.066489 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-04-29 16:15:00 obsr2087436 S23133000 Traveling P22 EBIRD 60.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304865655 2021-03-30 19:29:33.633096 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-03-21 15:05:00 obsr1987335 S22484187 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 1.127 2.0 1 G1190130 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322927950 2021-03-19 16:27:31.421791 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 14 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-14 08:55:00 obsr408487 S23635222 Area P23 EBIRD 92.0 121.4057 2.0 1 G1290343 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322940435 2021-03-30 19:13:38.458673 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-25 07:23:00 obsr302343 S23636087 Traveling P22 EBIRD 186.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311024780 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-18 15:45:00 obsr30103 S22930987 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288770931 2021-11-09 21:56:49.555782 6616 species avibase-7E022378 Common Loon Gavia immer X United States US New York US-NY Ulster US-NY-111 28.0 JBNHS Wallkill Valley Raptors L3261415 P 41.7190555 -74.1366005 2015-01-03 08:00:00 obsr1446126 S21164690 Traveling P22 EBIRD 300.0 24.14 37.0 1 G1093120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296241433 2021-11-09 20:42:59.623079 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 12 United States US New York US-NY Putnam US-NY-079 28.0 Sprout Brook Road L3355343 P 41.3445162 -73.8977337 2015-02-08 09:10:00 obsr2120085 S21780160 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311703110 2020-05-19 16:02:48 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Otsego US-NY-077 13.0 Summit Lake L3579530 P 42.8404788 -74.8667192 2015-04-19 12:00:00 obsr2207486 S22974432 Stationary P21 EBIRD 45.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS313912137 2021-04-01 11:49:53.573686 33474 species avibase-043F337A Indigo Bunting Passerina cyanea X United States US New York US-NY Queens US-NY-081 30.0 Kissena Corridor Park L1285332 H 40.747257 -73.8202286 2015-04-22 11:19:00 obsr2233270 S23116967 Traveling P22 EBIRD 35.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315384232 2021-03-19 16:02:45.308962 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Broome US-NY-007 28.0 Monkey Run Road L2237953 P 42.2195386 -75.756496 2015-05-03 09:08:00 obsr1044068 S23203341 Traveling P22 EBIRD 30.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307652696 2015-04-05 09:16:39 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 08:31:00 obsr1956779 S22694402 Traveling P22 EBIRD 60.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320924526 2021-12-24 11:02:14.483178 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-16 08:35:00 obsr1962295 S23513565 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323266199 2018-08-06 22:31:12 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-26 13:14:00 obsr620377 S23657134 Traveling P22 EBIRD 38.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323855556 2021-03-26 07:56:20.588749 32666 species avibase-5110842F Baltimore Oriole Icterus galbula N 5 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa--Broadway and Kings L2271492 P 40.69537 -73.46431 2015-05-24 05:13:00 obsr2683910 S23698575 Stationary P21 EBIRD 12.0 3.0 1 G1295338 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323949052 2015-05-30 11:56:25 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Erie US-NY-029 13.0 reinstein woods preserve L3684277 P 42.8836229 -78.7181997 2015-05-29 11:00:00 obsr1929165 S23705049 Traveling P22 EBIRD 120.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307010272 2021-03-30 19:29:33.633096 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Suffolk US-NY-103 30.0 Avalon Gardens and East Farm Preserve L525770 H 40.9118667 -73.1454921 2015-04-02 17:13:00 obsr1228860 S22648500 Traveling P22 EBIRD 59.0 1.046 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312870506 2021-03-30 19:39:10.250398 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-25 14:14:00 obsr2844530 S23052269 Traveling P22 EBIRD 132.0 1.609 2.0 1 G1501688 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299730809 2018-08-04 16:58:10 660 spuh avibase-CB56BEF1 scoter sp. Melanitta sp. 2 United States US New York US-NY Chemung US-NY-015 28.0 Mill St. Pond Trail, Horseheads L292227 H 42.1655917 -76.8085669 2015-02-24 10:09:00 obsr1334267 S22082477 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303277523 2015-03-15 14:25:47 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 12 United States US New York US-NY Oswego US-NY-075 13.0 Texas L1035802 P 43.5119579 -76.251812 2015-03-15 14:24:00 obsr979921 S22362064 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307872615 2021-03-26 07:30:35.289997 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 11 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-04-05 09:00:00 obsr2137468 S22709860 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310376303 2021-03-24 21:12:31.336509 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-04-16 06:39:00 obsr1839967 S22887984 Traveling P22 EBIRD 66.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312979241 2021-11-15 03:06:58.889978 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 40 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-24 13:00:00 obsr1494607 S23058807 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305340756 2021-04-01 12:32:15.282601 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-22 08:30:00 obsr1160328 S22521425 Stationary P21 EBIRD 180.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294561888 2021-11-09 20:12:16.773384 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-02-02 10:46:00 obsr1912104 S21646760 Stationary P21 EBIRD 77.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302059074 2021-03-26 06:29:56.44369 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 12 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-09 15:30:00 obsr934639 S22260943 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290237752 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-10 13:40:00 obsr876649 S21283498 Traveling P22 EBIRD 125.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311925155 2021-03-26 08:13:27.160698 16284 species avibase-33808812 Alder Flycatcher Empidonax alnorum 1 United States US New York US-NY Tioga US-NY-107 28.0 Day Hollow Rd. pond, Owego L2347084 H 42.107698 -76.183497 2015-04-21 07:25:00 obsr1318356 S22988699 Traveling P22 EBIRD 9.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322941831 2017-06-21 10:51:32 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 60 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-05-25 13:40:00 obsr455725 S23636164 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288472731 2021-03-26 06:21:54.883933 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Kings US-NY-047 Floyd Bennett Field--Community Gardens L996212 H 40.5863861 -73.892777 2015-01-01 12:20:00 obsr1868191 S21140281 Traveling P22 EBIRD 85.0 0.402 2.0 1 G4460190 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304652738 2021-04-01 12:40:54.473014 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Saratoga US-NY-091 13.0 Saratoga Springs L196167 T 43.08317 -73.78457 2015-03-21 13:00:00 obsr388852 S22468431 Historical P62 EBIRD 240.0 64.374 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316949926 2020-12-11 19:56:37.475373 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata 1 United States US New York US-NY Genesee US-NY-037 13.0 Feeder Ditch, south L906683 H 43.0867199 -78.4419882 2015-05-07 09:30:00 obsr393804 S23292214 Traveling P22 EBIRD 30.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS336202976 2021-03-24 21:13:42.099821 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 2 United States US New York US-NY Westchester US-NY-119 30.0 40.9572x-73.7039 - Mar 7, 2015, 9:27 AM L3460692 P 40.957737 -73.704253 2015-03-07 09:17:00 obsr1249126 S24594042 Stationary P21 EBIRD 18.0 3.0 1 G1375177 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311212261 2021-03-23 16:30:20.514143 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-19 08:56:00 obsr2945658 S22942419 Stationary P21 EBIRD 160.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304720990 2021-04-01 11:58:54.966271 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-415-609 NY-11C L3505304 P 44.784185 -74.803031 2015-03-22 07:57:00 obsr2211750 S22473734 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319652428 2021-04-01 12:32:15.282601 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-01 08:00:00 obsr931103 S23444127 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300727111 2021-04-01 12:32:15.282601 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 600 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-03-03 08:15:00 obsr247620 S22158580 Traveling P22 EBIRD 285.0 5.633 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS323345082 2021-11-09 18:47:57.38119 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Dutchess US-NY-027 28.0 Berkshire Road, Dover Plains, NY L3677173 P 41.67904 -73.5525119 2015-05-27 07:30:00 obsr1062217 S23662507 Traveling P22 EBIRD 190.0 6.437 3.0 1 G1292783 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302444461 2021-12-10 08:21:29.396662 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-11 09:30:00 obsr473055 S22297450 Traveling P22 EBIRD 70.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315287098 2021-03-30 19:07:52.958398 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 10:00:00 obsr1135516 S23198400 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315349523 2021-04-01 11:15:31.646886 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 07:40:00 obsr454647 S23201548 Traveling P22 EBIRD 400.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288217164 2015-01-02 17:31:11 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Monroe US-NY-055 13.0 Oak Leaf Ln L1952075 P 43.0583843 -77.488085 2015-01-01 08:45:00 obsr2223307 S21119043 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304755415 2021-04-28 05:22:52.046239 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-03-22 16:45:00 obsr2448957 S22476118 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290834684 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 13 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-13 10:19:00 obsr1348614 S21331150 Traveling P22 EBIRD 115.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308217532 2021-11-09 21:31:39.331046 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 United States US New York US-NY Ulster US-NY-111 13.0 Fehr L1431569 P 42.0463601 -73.9834186 2015-04-07 09:30:00 obsr1110743 S22735727 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314330056 2021-03-26 07:20:31.408164 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-30 07:30:00 obsr247620 S23142386 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314746268 2020-03-15 09:14:53 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-01 12:10:00 obsr2096529 S23168056 Traveling P22 EBIRD 35.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317347422 2022-02-17 14:32:23.002448 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-08 14:29:00 obsr1152226 S23314250 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307197079 2018-08-04 17:05:15 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-04-03 14:05:00 obsr2769235 S22661967 Traveling P22 EBIRD 80.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316133250 2021-04-01 10:47:08.851048 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-05-05 08:55:00 obsr1044068 S23244999 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320660123 2020-03-15 09:14:53 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-17 12:00:00 obsr1229221 S23498300 Traveling P22 EBIRD 120.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309921229 2021-04-01 11:24:19.637193 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-13 17:45:00 obsr1561508 S22856421 Stationary P21 EBIRD 45.0 2.0 1 G1219235 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS331431095 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-30 06:05:00 obsr1778524 S24239484 Traveling P22 EBIRD 240.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322945689 2021-03-19 16:29:59.503892 5922 species avibase-06B9BD24 Sanderling Calidris alba 3 United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum L467369 H 44.0669903 -75.7229233 2015-05-23 07:00:00 obsr408487 S23636395 Traveling P22 EBIRD 420.0 32.187 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314405779 2021-04-01 11:30:42.037277 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 15:25:00 obsr2793388 S23147082 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303431649 2021-03-30 19:29:33.633096 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 8 United States US New York US-NY Suffolk US-NY-103 30.0 Cove Hollow Farm L786267 P 40.9400884 -72.2210312 2015-03-15 09:30:00 obsr2883401 S22374432 Stationary P21 EBIRD 60.0 2.0 1 G1181760 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033213 2021-03-19 16:06:54.047432 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 20 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.9339927 -76.7278183 2015-01-19 14:00:00 obsr1544235 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312245563 2021-03-26 06:15:05.840405 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor18 L3513960 H 42.4410677 -76.0746521 2015-04-23 07:48:00 obsr1092576 S23010084 Stationary P21 EBIRD 5.0 2.0 1 G1232704 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295672628 2021-11-09 20:59:08.238638 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-02-08 10:00:00 obsr1932005 S21735794 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300907828 2021-04-01 12:18:57.910168 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 13.0 Freese Rd., Dryden L164468 H 42.4629085 -76.4449847 2015-03-04 14:19:00 obsr1318356 S22172314 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293441542 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-26 16:45:00 obsr934639 S21558550 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305818372 2015-03-28 15:50:47 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-28 09:34:00 obsr1334267 S22558173 Traveling P22 EBIRD 21.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317866958 2021-04-01 11:15:31.646886 6201 species avibase-64F4DD81 Razorbill Alca torda N X United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-09 14:14:00 obsr150415 S23343915 Traveling P22 EBIRD 46.0 3.219 4.0 1 G1260349 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309681089 2018-08-04 17:06:17 662 species avibase-FB738385 Bufflehead Bucephala albeola 55 United States US New York US-NY Suffolk US-NY-103 US-NY_842 30.0 Cupsogue County Park/Westend L311660 P 40.7713478 -72.7333199 2015-04-06 17:18:00 obsr1289018 S22839212 Traveling P22 EBIRD 45.0 1.609 1.0 1 G1217923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322839302 2018-08-04 17:30:17 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Jefferson US-NY-045 13.0 US-NY-Dexter-17576-17704 County Rd 59 L3671832 P 43.973655 -76.170703 2015-05-25 09:05:00 obsr891847 S23629629 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311272863 2021-03-26 06:55:00.227271 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Home L3158249 P 42.7894329 -77.5681436 2015-04-19 08:40:00 obsr39511 S22946266 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319568248 2021-03-24 21:01:50.671145 32949 species avibase-15EB3000 Hooded Warbler Setophaga citrina N 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-05-14 09:10:00 obsr247620 S23439443 Traveling P22 EBIRD 70.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303730780 2021-11-09 21:57:19.948495 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Ulster US-NY-111 13.0 mountain road, home L3495151 P 41.8307683 -74.0920066 2015-03-17 13:30:00 obsr187701 S22397900 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297844596 2015-03-04 19:27:09 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Washington US-NY-115 13.0 Hinds Rd--btwn Rt 196 and Town Line Rd L1475536 P 43.30814 -73.487897 2015-02-16 10:48:00 obsr1222746 S21925865 Traveling P22 EBIRD 33.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315361289 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:00:00 obsr706483 S23202123 Traveling P22 EBIRD 285.0 2.092 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322514120 2021-03-24 19:48:44.880783 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-24 08:03:00 obsr334398 S23610309 Traveling P22 EBIRD 220.0 0.322 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308678417 2021-03-26 07:30:35.289997 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Tompkins US-NY-109 13.0 Nelson's House L3547421 P 42.4923209 -76.63849 2015-04-09 14:00:00 obsr246591 S22770815 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291770463 2021-03-30 19:13:38.458673 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 25 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-18 12:30:00 obsr745890 S21406342 Traveling P22 EBIRD 60.0 0.483 2.0 1 G1114465 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292105959 2021-04-01 10:55:39.308231 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 100 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-01-20 09:00:00 obsr762001 S21432539 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313480204 2018-08-04 17:12:31 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Oneida US-NY-065 13.0 Germany Road Marsh L910139 P 43.1560261 -75.6142462 2015-04-27 10:54:00 obsr2950436 S23089644 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318897388 2021-03-26 06:29:56.44369 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-12 08:08:00 obsr195244 S23400935 Traveling P22 EBIRD 82.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302595679 2021-12-19 10:32:19.574298 7429 species avibase-1327AC55 Osprey Pandion haliaetus 72 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-03-12 08:00:00 obsr2087436 S22309401 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871482 2021-03-26 07:56:20.588749 27616 species avibase-D77E4B41 American Robin Turdus migratorius 19 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-28 16:00:00 obsr2218212 S21672048 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317178243 2021-11-15 03:06:58.889978 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 10:00:00 obsr2797341 S23304808 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293095149 2021-11-15 03:06:58.889978 7429 species avibase-1327AC55 Osprey Pandion haliaetus 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-24 12:38:00 obsr1548221 S21530741 Traveling P22 EBIRD 111.0 0.805 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323724610 2021-03-24 20:58:53.646623 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-28 12:10:00 obsr72341 S23689922 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305683818 2021-03-26 07:30:35.289997 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-03-27 08:30:00 obsr2137468 S22548194 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297999438 2021-03-30 19:03:54.667077 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-02-17 12:08:00 obsr2497657 S21939175 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305204656 2021-03-30 19:43:32.881136 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 8 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Playland Lake - Read L813092 P 40.9685738 -73.6706901 2015-03-24 16:30:00 obsr258560 S22510852 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306683387 2021-03-23 16:52:36.900075 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Pine Neck Sanctuary L122956 H 40.84111 -72.56528 2015-04-01 08:04:00 obsr1107696 S22624075 Traveling P22 EBIRD 43.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320671617 2021-03-26 07:56:20.588749 5327 species avibase-3EF081A8 Common Gallinule Gallinula galeata 4 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-05-17 15:00:00 obsr676630 S23498927 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305890074 2021-04-01 11:49:53.573686 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Queens US-NY-081 30.0 Idlewild Park L2687800 H 40.6546016 -73.7547487 2015-03-28 16:25:00 obsr1982614 S22563477 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307755286 2021-12-27 21:06:26.931657 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 22 United States US New York US-NY St. Lawrence US-NY-089 US-NY_775 13.0 Upper & Lower Lakes WMA--Observation Tower (Hwy. 15) L270474 H 44.5796495 -75.3091865 2015-04-05 13:40:00 obsr1558090 S22701494 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306170940 2018-08-04 17:04:36 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 7 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Gee Road Fields at Pine Ridge Road L3522826 P 43.1232066 -75.8298898 2015-03-29 09:10:00 obsr660214 S22584280 Stationary P21 EBIRD 10.0 2.0 1 G1197233 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS302396880 2021-03-26 06:39:43.334073 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-03-10 14:00:00 obsr856524 S22293859 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310596290 2015-04-17 08:39:14 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Big Flats-3236-3246 NY-352 L3569442 P 42.131389 -76.952696 2015-04-17 07:38:00 obsr2871406 S22903411 Incidental P20 EBIRD 3.0 0 G1222654 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305261479 2021-11-15 03:06:58.889978 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio 24 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-25 11:30:00 obsr93451 S22515370 Traveling P22 EBIRD 120.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320569488 2021-11-09 18:47:30.003269 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 5 United States US New York US-NY Dutchess US-NY-027 13.0 MaloneRdFoxRunClintonAveSpookyHollowRuskeyRdSodomRdBrowningRd L3650430 P 41.8161288 -73.8243055 2015-05-16 17:10:00 obsr2175245 S23493433 Traveling P22 EBIRD 55.0 8.69 3.0 1 G1275190 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312214638 2022-02-21 13:41:55.027797 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 10 United States US New York US-NY New York US-NY-061 30.0 Fort Tryon Park L591127 H 40.8629374 -73.9327457 2015-04-22 08:40:00 obsr781996 S23007915 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302323357 2021-03-26 06:17:19.712573 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-03-10 obsr2096529 S22285889 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315122537 2021-04-01 12:14:19.266649 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Captree Island L3602964 P 40.6450324 -73.2699949 2015-04-30 18:00:00 obsr391865 S23189323 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296412596 2021-11-09 20:53:17.759253 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Rockland US-NY-087 30.0 Nanuet L1293607 P 41.0931306 -74.0298271 2015-02-13 11:00:00 obsr1932005 S21796279 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320287801 2021-04-01 11:15:31.646886 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 10:00:00 obsr2883698 S23478660 Traveling P22 EBIRD 220.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293694916 2021-03-26 06:29:56.44369 26278 species avibase-A381417F House Wren Troglodytes aedon 30 United States US New York US-NY Monroe US-NY-055 13.0 stakeout Yellow-headed Blackbird, Jeffords Rd., Rush (2015) L3304693 H 43.00988 -77.62134 2015-01-28 11:20:00 obsr1181085 S21578238 Stationary P21 EBIRD 33.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS314260579 2021-03-23 16:21:52.613913 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Ontario US-NY-069 28.0 porter rd L3601393 P 42.6673278 -77.4047649 2015-04-30 06:10:00 obsr466438 S23138517 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309249401 2021-11-09 19:57:48.990233 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-11 15:05:00 obsr772156 S22810822 Stationary P21 EBIRD 70.0 2.0 1 G1215266 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311169470 2021-03-26 07:30:35.289997 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-19 06:37:00 obsr1655171 S22939915 Traveling P22 EBIRD 34.0 0.322 2.0 1 G1230106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300005695 2021-03-26 07:43:12.52294 622 species avibase-50566E50 Lesser Scaup Aythya affinis 3 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-02-18 14:01:00 obsr1721609 S22103793 Stationary P21 EBIRD 18.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307115709 2021-04-01 11:30:42.037277 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 2 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-04-03 09:35:00 obsr259298 S22656379 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308492962 2021-03-24 19:27:13.077399 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-04-08 10:35:00 obsr142874 S22756583 Stationary P21 EBIRD 205.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311440691 2021-03-23 17:14:01.933181 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 6 United States US New York US-NY Washington US-NY-115 13.0 Towpath Rd., Kingsbury L1527296 H 43.3054212 -73.5459734 2015-04-15 17:33:00 obsr1731061 S22956486 Traveling P22 EBIRD 133.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306138405 2021-03-30 19:13:38.458673 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 19 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 15:55:00 obsr302343 S22581827 Stationary P21 EBIRD 50.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303278981 2021-04-26 04:57:02.963704 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 30 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-15 10:39:00 obsr1605975 S22362168 Traveling P22 EBIRD 130.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306973709 2022-03-05 22:03:50.715584 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 35 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-02 08:30:00 obsr2219590 S22645434 Traveling P22 EBIRD 300.0 10.461 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306596626 2021-04-01 11:47:43.260314 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-03-31 09:15:00 obsr979921 S22617380 Stationary P21 EBIRD 435.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308835386 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-10 09:00:00 obsr2706811 S22782733 Traveling P22 EBIRD 120.0 1.609 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323376458 2021-11-09 18:39:48.558558 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Dutchess US-NY-027 28.0 Ridge Road, Dover Plains, NY L2894192 P 41.698045 -73.6109734 2015-05-26 19:45:00 obsr1062217 S23664564 Traveling P22 EBIRD 75.0 3.219 3.0 1 G1292919 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321742462 2018-08-06 22:30:36 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.5747387 -74.1554202 2015-05-20 06:00:00 obsr777630 S23563962 Traveling P22 EBIRD 180.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305905471 2021-04-01 12:32:15.282601 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-28 12:30:00 obsr1489009 S22564764 Traveling P22 EBIRD 120.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302996163 2021-03-26 06:29:14.715704 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 6 United States US New York US-NY Madison US-NY-053 28.0 salter feeders carpenter rd sheds L3254999 P 42.795968 -75.811192 2015-03-13 09:00:00 obsr1955779 S22340044 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319334929 2021-03-24 19:35:34.045988 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Erie US-NY-029 13.0 Alden - Crittenden Rd. L586154 P 42.9165364 -78.4935379 2015-05-13 15:30:00 obsr2871264 S23425848 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312032733 2021-04-01 11:15:31.646886 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-22 07:00:00 obsr41879 S22995920 Traveling P22 EBIRD 125.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316265293 2021-04-01 12:18:57.910168 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Beebe Lake L281786 H 42.4512932 -76.4767515 2015-04-26 08:35:00 obsr1725472 S23253435 Traveling P22 EBIRD 65.0 0.161 3.0 1 G1239951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304186595 2021-04-01 11:15:31.646886 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-20 07:30:00 obsr1605975 S22433775 Traveling P22 EBIRD 170.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316242790 2015-05-05 20:15:49 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Genesee US-NY-037 13.0 mill rd e bethany L3462654 P 42.8918637 -78.1628215 2015-05-05 13:30:00 obsr393804 S23252121 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313255788 2021-04-01 10:57:06.520339 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Essex US-NY-031 14.0 Shattuck Rd L2787791 P 43.8133487 -73.5017967 2015-04-26 17:11:00 obsr2420101 S23075223 Traveling P22 EBIRD 70.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309306373 2015-04-12 07:31:38 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Cayuga US-NY-011 13.0 Hitchcock Pond L3557187 P 43.0282668 -76.6894573 2015-04-12 07:00:00 obsr2359479 S22814412 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291108764 2017-04-28 16:25:25 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-01-15 09:32:00 obsr1565981 S21353719 Traveling P22 EBIRD 40.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295247194 2022-02-08 17:27:20.632176 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-06 16:44:00 obsr1092576 S21701542 Stationary P21 EBIRD 56.0 3.0 0 G1137102 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326392115 2021-03-26 06:07:45.516082 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-05-23 10:30:00 obsr1513140 S23873745 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323062672 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-26 06:17:00 obsr152435 S23643949 Traveling P22 EBIRD 130.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301292726 2021-11-09 21:48:29.998978 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 25 United States US New York US-NY Ulster US-NY-111 13.0 Kingston 587 Pond L2708167 P 41.9345317 -74.0094781 2015-03-06 14:00:00 obsr1636520 S22200871 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317568346 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:45:00 obsr2883698 S23328048 Traveling P22 EBIRD 330.0 4.023 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312038617 2021-04-01 11:30:42.037277 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-22 06:40:00 obsr876649 S22996260 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306170775 2021-11-15 03:06:58.889978 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-29 09:45:00 obsr601383 S22584269 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294544581 2018-08-04 16:55:33 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-02-01 09:15:00 obsr241086 S21645348 Stationary P21 EBIRD 15.0 2.0 1 G1132865 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294674903 2021-03-30 19:21:52.898317 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Hastings- County Route 37 - Lake Access - L2702147 P 43.239269 -76.130372 2015-01-25 13:02:00 obsr2700277 S21655644 Stationary P21 EBIRD 24.0 2.0 1 G1133883 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304699739 2021-11-09 18:25:59.444943 26890 species avibase-94A44032 European Starling Sturnus vulgaris 125 United States US New York US-NY Dutchess US-NY-027 13.0 Wappinger Lake L1829902 H 41.6070847 -73.9159704 2015-03-22 10:10:00 obsr1732267 S22472099 Stationary P21 EBIRD 33.0 2.0 1 G1189941 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS330798480 2018-08-04 17:08:20 483 species avibase-85625D75 Mallard Anas platyrhynchos 150 United States US New York US-NY Saratoga US-NY-091 13.0 Saratoga Lake L457113 H 43.0222196 -73.7374878 2015-04-10 10:00:00 obsr1620448 S24190795 Traveling P22 EBIRD 240.0 19.312 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313065551 2021-03-26 06:09:25.361188 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-04-26 08:30:00 obsr879105 S23064082 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323085134 2021-04-01 11:47:43.260314 406 species avibase-27B2749A Wood Duck Aix sponsa 3 Male, Adult (1); Female, Adult (2) United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-04-06 06:30:00 obsr2409011 S23645503 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313761021 2018-03-17 06:19:18 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Pine Neck Sanctuary L122956 H 40.84111 -72.56528 2015-04-28 08:30:00 obsr1736113 S23107269 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310313101 2021-11-15 03:06:58.889978 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-15 16:45:00 obsr1034702 S22883480 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301632012 2021-03-24 19:28:50.176616 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Columbia US-NY-021 14.0 Larkspur Farm house (private) L3388369 P 42.1897621 -73.5989874 2015-03-08 10:00:00 obsr2842267 S22227344 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305383943 2021-04-26 04:57:02.963704 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 37 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-26 09:00:00 obsr2906952 S22525019 Traveling P22 EBIRD 48.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290156678 2022-01-12 18:14:10.119384 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--South Entrance L825062 H 44.3641149 -74.1511381 2015-01-10 10:20:00 obsr835300 S21276391 Traveling P22 EBIRD 61.0 3.219 3.0 1 G1103461 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317575644 2021-04-01 11:30:42.037277 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 09:00:00 obsr2448505 S23328440 Traveling P22 EBIRD 120.0 3.219 2.0 1 G1259271 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316133259 2021-04-01 10:47:08.851048 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-05-05 08:55:00 obsr1044068 S23244999 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304243230 2021-03-26 08:11:28.0353 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY Saratoga US-NY-091 13.0 W. River Rd., Moreau L2593135 H 43.2305411 -73.593038 2015-03-20 10:15:00 obsr1222746 S22438184 Traveling P22 EBIRD 48.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315426181 2021-11-15 03:06:58.889978 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 10:00:00 obsr2361317 S23205570 Traveling P22 EBIRD 180.0 6.437 2.0 1 G1249579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316007837 2021-11-09 18:27:18.873475 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 2 United States US New York US-NY Dutchess US-NY-027 13.0 Allen Road yard list, Salt Point L1943130 P 41.8350253 -73.8021156 2015-05-05 05:35:00 obsr2175245 S23238088 Traveling P22 EBIRD 96.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314214867 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 08:00:00 obsr1175815 S23135557 Traveling P22 EBIRD 120.0 2.0 2.0 1 G1243573 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314976231 2021-11-15 03:06:58.889978 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-26 17:00:00 obsr2729095 S23181135 Traveling P22 EBIRD 420.0 3.541 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295588017 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 64 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-08 09:26:00 obsr642993 S21728991 Traveling P22 EBIRD 159.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308940503 2015-04-10 19:24:06 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Queens US-NY-081 30.0 Astoria Park L866991 H 40.779859 -73.921659 2015-04-10 18:00:00 obsr1430256 S22784585 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299084567 2021-04-01 11:24:19.637193 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 5 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-02-21 08:12:00 obsr745890 S22033363 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312547375 2021-04-01 12:40:54.473014 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Saratoga US-NY-091 13.0 Ketchums L2786608 P 43.010586 -73.694308 2015-04-24 09:04:00 obsr648176 S23031040 Stationary P21 EBIRD 274.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078449 2021-03-19 16:00:00.303051 591 species avibase-1929E1E1 Canvasback Aythya valisineria 5 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.8768877 -73.7898123 2015-01-04 12:29:00 obsr2571303 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309248559 2021-04-01 12:18:57.910168 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-11 10:00:00 obsr2350357 S22810765 Traveling P22 EBIRD 45.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305977728 2021-03-30 19:13:38.458673 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 08:54:00 obsr2595828 S22570008 Stationary P21 EBIRD 44.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305309447 2021-03-26 08:09:29.707251 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 8 Male, Adult (6); Female, Adult (2) United States US New York US-NY Otsego US-NY-077 28.0 Otsego Lake - Lake Front on Pioneer St. Cooperstown L1311672 P 42.7036005 -74.9226594 2015-03-25 15:55:00 obsr1000124 S22519095 Stationary P21 EBIRD 26.0 3.0 1 G1192371 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309676203 2021-11-09 18:42:19.628792 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-04-12 06:01:00 obsr2343626 S22838866 Traveling P22 EBIRD 150.0 3.058 3.0 1 G1217900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318951727 2018-08-06 22:29:46 406 species avibase-27B2749A Wood Duck Aix sponsa 6 United States US New York US-NY Cayuga US-NY-011 US-NY_1726 13.0 Montezuma (NMWMA)--Howland Island--West L318895 H 43.0781 -76.69762 2015-05-12 09:15:00 obsr983655 S23403742 Traveling P22 EBIRD 15.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314244492 2021-01-22 17:57:39.822771 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY St. Lawrence US-NY-089 US-NY_775 13.0 Upper & Lower Lakes WMA--south access road L716515 H 44.5970529 -75.2325296 2015-04-29 17:20:00 obsr2056110 S23137414 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308157561 2015-04-06 22:24:03 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 Male, Adult (2) United States US New York US-NY Herkimer US-NY-043 13.0 Carlson Road L795137 P 43.1091058 -74.7949541 2015-04-05 16:15:00 obsr2694889 S22730672 Traveling P22 EBIRD 5.0 1.77 4.0 1 G1209042 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308645661 2021-11-09 18:16:49.161527 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum N 2 United States US New York US-NY Dutchess US-NY-027 13.0 Twin Island Lake L1363516 H 41.9803808 -73.6711214 2015-04-09 10:12:00 obsr1442681 S22768067 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308158792 2018-08-04 17:06:15 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Nassau US-NY-059 30.0 Clark Botanic Garden L2209806 H 40.7723702 -73.6400954 2015-04-06 14:00:00 obsr143739 S22730769 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313266646 2021-04-01 11:24:19.637193 11371 species avibase-75600969 Northern Flicker Colaptes auratus 4 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-04-26 14:24:00 obsr934639 S23075882 Traveling P22 EBIRD 217.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310939399 2021-11-09 18:36:27.898762 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-04-18 10:30:00 obsr1917973 S22925625 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291922018 2021-04-01 12:32:15.282601 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 54 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Theodore Roosevelt Nature Center L1029227 H 40.5885208 -73.546552 2015-01-19 12:00:00 obsr2423982 S21417788 Traveling P22 EBIRD 90.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314053502 2021-04-01 12:31:09.823741 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Inlet WMA--south section L674323 H 42.6874829 -77.7060413 2015-04-28 14:24:00 obsr1060479 S23125604 Traveling P22 EBIRD 24.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311806672 2021-12-19 10:32:19.574298 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-04-21 09:30:00 obsr660214 S22981018 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307966025 2017-06-26 21:11:42 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-06 09:00:00 obsr137150 S22717026 Traveling P22 EBIRD 70.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312714350 2018-08-04 17:11:20 7940 spuh avibase-CA08045E Accipiter sp. Accipiter sp. 1 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature Preserve, Rexford, NY L3587945 P 42.7923775 -73.7953484 2015-04-19 18:09:00 obsr1933201 S23042780 Traveling P22 EBIRD 157.0 3.219 9.0 1 G1234676 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313346955 2021-03-26 06:11:29.8335 591 species avibase-1929E1E1 Canvasback Aythya valisineria 6 United States US New York US-NY Cayuga US-NY-011 13.0 Harris Park, Cayuga L388115 H 42.917605 -76.7300177 2015-04-25 15:18:00 obsr2255296 S23080921 Stationary P21 EBIRD 20.0 3.0 1 G1238411 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304442683 2015-03-21 16:51:11 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Steuben US-NY-101 13.0 Wayne, 8571-8669 Birdseye Hollow Road L3503421 P 42.41928 -77.14318 2015-03-21 14:04:00 obsr1092576 S22452983 Incidental P20 EBIRD 1.0 0 G1187071 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312991189 2022-03-05 22:03:50.715584 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 6 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-25 13:00:00 obsr890053 S23059563 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325234451 2021-03-23 17:23:45.772216 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 US-NY PORTAGE-Letchworth SP-River Rd.-Dygert-ShortTrack-Williams L3699279 P 42.575554 -78.020111 2015-05-26 10:10:00 obsr731272 S23792644 Traveling P22 EBIRD 298.0 12.07 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290855446 2019-01-03 10:54:11 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 7 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-F L3288992 P 40.00252 -72.50312 2015-01-11 13:00:00 obsr1895507 S21333015 Traveling P22 EBIRD 60.0 20.6 44.0 1 G1108339 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1310969945 2022-01-04 18:27:48.649074 662 species avibase-FB738385 Bufflehead Bucephala albeola 13 United States US New York US-NY Erie US-NY-029 13.0 Amherst Bike Path L358312 H 42.9991704 -78.7678313 2015-04-14 10:20:00 obsr2155450 S100126998 Traveling P22 EBIRD 40.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309284418 2021-03-30 19:07:52.958398 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 07:15:00 obsr1807494 S22813016 Traveling P22 EBIRD 360.0 4.828 25.0 1 G1215526 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302955741 2021-04-01 11:54:40.172593 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-03-13 08:00:00 obsr666331 S22337047 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307564317 2021-05-31 11:49:18.789436 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson (General Area) L1827108 H 43.1930605 -76.2914843 2015-04-04 18:42:00 obsr2224244 S22688270 Stationary P21 EBIRD 73.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301512537 2021-03-24 20:21:40.993321 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 20 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-03-07 12:30:00 obsr1962295 S22218235 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311884934 2021-11-09 17:58:40.313796 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-04-21 14:52:00 obsr763723 S22986025 Traveling P22 EBIRD 80.0 3.524 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317103686 2021-04-01 11:15:31.646886 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-08 07:12:00 obsr1189081 S23301033 Traveling P22 EBIRD 129.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304210511 2021-03-24 20:33:47.533911 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 4 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-20 12:55:00 obsr436489 S22435695 Stationary P21 EBIRD 20.0 2.0 1 G1185958 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316806257 2018-08-04 17:15:05 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 2 United States US New York US-NY Franklin US-NY-033 14.0 Black Pond L2138023 P 44.4326154 -74.298048 2015-05-07 04:00:00 obsr568671 S23284246 Incidental P20 EBIRD 2.0 0 G1255678 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921940 2021-03-26 07:56:20.588749 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-27 09:00:00 obsr2218212 S22173342 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305240599 2015-03-25 13:47:23 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 3 United States US New York US-NY Broome US-NY-007 28.0 West Corners Marsh L1513804 H 42.1169195 -76.0743913 2015-03-25 08:39:00 obsr879105 S22513713 Stationary P21 EBIRD 5.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306894488 2021-03-23 17:37:19.520785 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Saratoga US-NY-091 13.0 Fish Creek Marina L1913554 H 43.0733865 -73.6955166 2015-04-02 07:05:00 obsr1222746 S22639270 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321640716 2021-03-24 20:11:57.676649 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-04-01 06:30:00 obsr2409011 S23557878 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290202719 2021-03-23 16:39:03.255227 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus 14 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-01-10 11:25:00 obsr1958124 S21280304 Traveling P22 EBIRD 15.0 0.483 2.0 1 G1103719 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319938891 2021-03-19 16:28:51.38749 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Greene US-NY-039 28.0 Greenville HS Entrance L2732956 P 42.4179995 -74.0265736 2015-05-15 16:15:00 obsr1188777 S23460173 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303533326 2015-03-16 15:23:07 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Kodu L3355598 P 40.9032789 -72.8895308 2015-03-15 10:00:00 obsr1954215 S22382942 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304420006 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-21 13:28:00 obsr2574755 S22451411 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310300897 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-15 18:15:00 obsr2750470 S22882623 Traveling P22 EBIRD 1.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621466 2021-03-26 07:46:52.994574 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus N 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-01-10 08:00:00 obsr405772 S21731716 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296697085 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-02-14 10:04:00 obsr646558 S21821954 Traveling P22 EBIRD 56.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320247439 2021-03-30 19:07:52.958398 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 07:30:00 obsr1152226 S23476590 Traveling P22 EBIRD 270.0 3.219 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311175113 2015-04-19 09:48:03 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Steuben US-NY-101 28.0 US-NY-Painted Post-3108 Knoll Rd L1826322 P 42.165969 -77.119302 2015-04-19 09:41:00 obsr2537623 S22940243 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324392870 2021-11-09 18:47:58.566632 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Dutchess US-NY-027 28.0 Sherman Hill Rd Dover L3689256 P 41.712775 -73.581212 2015-05-16 14:10:00 obsr1732267 S23733350 Traveling P22 EBIRD 24.0 3.219 2.0 1 G1298918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311387394 2019-04-15 16:01:05 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chemung US-NY-015 28.0 Sperr Memorial Park L7578475 H 42.1465676 -76.9144776 2015-04-19 09:00:00 obsr26728 S22953204 Stationary P21 EBIRD 90.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312610971 2021-04-01 10:58:47.067498 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Genesee US-NY-037 13.0 old creek rd L3503172 P 42.9419729 -78.2103825 2015-04-24 15:14:00 obsr393804 S23035705 Traveling P22 EBIRD 16.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294034975 2021-03-26 07:00:33.333856 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 2 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--LIE (CIP Intersection) L621112 H 40.7549945 -73.7439895 2015-01-30 09:30:00 obsr1160328 S21605292 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS354457600 2015-11-20 20:35:30 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-23 15:26:00 obsr2276013 S25925919 Traveling P22 EBIRD 44.0 0.483 2.0 1 G1472366 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298284874 2022-02-17 14:32:23.002448 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-18 13:00:00 obsr454647 S21963462 Traveling P22 EBIRD 200.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308511911 2021-04-01 11:43:48.927316 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 2 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Doran Rd x Townline Rd south side L3547949 P 42.8535151 -77.5706196 2015-04-08 11:25:00 obsr39511 S22758094 Traveling P22 EBIRD 70.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306042791 2021-12-10 08:21:29.396662 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-29 09:30:00 obsr2211514 S22574578 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314423921 2015-04-30 20:42:50 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-30 16:17:00 obsr1764243 S23148216 Traveling P22 EBIRD 95.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313621292 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-04-27 06:14:00 obsr259298 S23098263 Stationary P21 EBIRD 52.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310237669 2021-03-24 21:10:11.310781 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Saratoga US-NY-091 13.0 Betar Byway--South Trail L2704435 P 43.2882726 -73.6483794 2015-04-15 10:49:00 obsr1222746 S22878310 Traveling P22 EBIRD 44.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308114713 2018-08-04 17:06:16 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Saratoga US-NY-091 13.0 Wrights Loop L691715 H 42.9902551 -73.6132237 2015-04-06 14:40:00 obsr1119101 S22727553 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300897837 2018-08-04 16:58:43 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-04 12:09:00 obsr2224244 S22171564 Traveling P22 EBIRD 52.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312273102 2021-03-24 19:28:50.176616 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Columbia US-NY-021 13.0 Schneider Homestead L488567 P 42.3583536 -73.7352562 2015-04-23 07:25:00 obsr440908 S23011833 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303770702 2021-11-09 21:41:38.795423 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-03-17 07:30:00 obsr1588136 S22401008 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320285566 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 12:30:00 obsr2336264 S23478553 Traveling P22 EBIRD 300.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304416927 2021-03-23 17:00:13.087107 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Palmer Woods L287796 H 42.4604469 -76.4789951 2015-03-21 12:08:00 obsr2683910 S22451197 Traveling P22 EBIRD 9.0 0.483 2.0 1 G1186934 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313904639 2021-03-24 20:33:47.533911 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 2 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-04-28 17:09:00 obsr1655171 S23116449 Traveling P22 EBIRD 28.0 1.77 2.0 1 G1241682 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302819573 2021-11-02 20:32:06.137153 11431 issf avibase-ABF6C3C4 Crested Caracara Caracara plancus Crested Caracara (Northern) Caracara plancus [cheriway Group] 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-03-13 07:33:00 obsr1092576 S22325982 Traveling P22 EBIRD 34.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289538545 2021-11-09 21:36:59.310849 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Ulster US-NY-111 13.0 rosendale, ny L1465355 P 41.8499692 -74.081765 2015-01-06 10:00:00 obsr187701 S21227134 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292049723 2021-04-01 11:30:42.037277 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY New York US-NY-061 Randalls Island--NE fields and shoreline L1785381 H 40.7943072 -73.9138235 2015-01-19 08:45:00 obsr1548221 S21427993 Traveling P22 EBIRD 113.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296104880 2021-03-26 07:30:35.289997 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 200 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-11 08:40:00 obsr1655171 S21769356 Traveling P22 EBIRD 99.0 0.483 2.0 1 G1151985 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295763993 2019-07-23 17:27:16 681 species avibase-407E2CA8 Common Merganser Mergus merganser 30 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-02-07 10:00:00 obsr1460516 S21742301 Traveling P22 EBIRD 120.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292502753 2021-03-23 16:21:52.613913 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Ontario US-NY-069 13.0 US-NY-ONT Hopewell-Phelps TL--Pearl St. X Schroo Rd. (3275A) [Clifton Springs_CE] L1318239 P 42.9405974 -77.1315014 2015-01-21 13:25:00 obsr606693 S21484065 Traveling P22 EBIRD 4.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310665140 2021-12-24 11:02:14.483178 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-04-17 09:55:00 obsr2504709 S22907844 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290987478 2021-04-01 12:40:54.473014 483 species avibase-85625D75 Mallard Anas platyrhynchos N 4 United States US New York US-NY Saratoga US-NY-091 13.0 Home, Southern Clifton Park L365353 P 42.8022652 -73.7790298 2015-01-13 obsr2841967 S21343525 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316275490 2021-11-15 03:06:58.889978 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 19:03:00 obsr856524 S23253995 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312589944 2020-08-22 21:44:55 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Rd. L508804 H 43.0489452 -76.7335796 2015-04-24 14:15:00 obsr1721609 S23034142 Traveling P22 EBIRD 135.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316840441 2018-08-06 22:29:05 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 16 United States US New York US-NY Columbia US-NY-021 13.0 Olana State Historic Site L357372 H 42.2183005 -73.8287207 2015-05-07 07:30:00 obsr2842267 S23286005 Traveling P22 EBIRD 170.0 1.062 3.0 1 G1255911 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309483299 2021-11-09 17:42:54.12862 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Dutchess US-NY-027 28.0 Sylvan Lake L1034653 H 41.6086902 -73.7405241 2015-04-12 16:20:00 obsr1732267 S22825181 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302031008 2021-04-01 11:54:40.172593 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N 6 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-09 15:55:00 obsr1958124 S22258591 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317851123 2021-04-01 12:32:15.282601 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-05-09 13:30:00 obsr547602 S23343089 Traveling P22 EBIRD 60.0 1.609 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310876182 2021-11-09 18:49:29.473548 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA--Cruger Island Rd. L3840109 H 42.0303286 -73.9201355 2015-04-18 07:00:00 obsr671490 S22921815 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316488032 2021-04-01 12:32:15.282601 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-05 15:25:00 obsr647628 S23265627 Traveling P22 EBIRD 45.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309084586 2018-08-04 17:08:30 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Knox-Marsellus Marsh L1280877 H 43.0076202 -76.7529774 2015-04-11 10:50:00 obsr204036 S22799923 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319077289 2020-03-15 09:14:53 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-11 11:35:00 obsr736608 S23411480 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311196580 2021-03-23 17:00:13.087107 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP--North Point L2721599 H 42.548268 -76.601241 2015-04-19 08:26:00 obsr1092576 S22941529 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS450223277 2021-04-01 12:18:57.910168 279 species avibase-3E04020B Brant Branta bernicla 325 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-03-19 16:58:00 obsr1655171 S22426661 Traveling P22 EBIRD 92.0 0.161 3.0 1 G1185375 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304905239 2021-01-10 16:39:54.759182 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Warren US-NY-113 13.0 Pine View Cemetery, Queensbury L2128813 H 43.3335429 -73.6702341 2015-03-23 13:43:00 obsr1222746 S22487182 Traveling P22 EBIRD 17.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305667818 2021-03-30 12:05:58.533651 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-19 13:00:00 obsr2182516 S22546980 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312130842 2021-04-01 11:15:31.646886 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-22 10:44:00 obsr1601967 S23002105 Traveling P22 EBIRD 257.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307148557 2015-09-08 14:03:31 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 2 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-04-03 10:30:00 obsr2001289 S22658722 Traveling P22 EBIRD 45.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310387963 2021-11-15 03:06:58.889978 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 17 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-16 06:20:00 obsr1135516 S22888823 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310983198 2021-12-23 15:00:47.137144 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-04-18 15:40:00 obsr730231 S22928410 Stationary P21 EBIRD 52.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291245775 2015-01-16 08:49:37 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Fayetteville Erie Canal L3295254 P 43.046964 -76.008167 2015-01-15 13:33:00 obsr1149420 S21364784 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292612198 2021-11-09 18:43:47.649279 242 species avibase-D3A260BC Snow Goose Anser caerulescens X United States US New York US-NY Dutchess US-NY-027 28.0 Ten Mile River Preserve L3309910 P 41.7191442 -73.5645175 2015-01-20 14:45:00 obsr2274198 S21492878 Traveling P22 EBIRD 120.0 3.219 2.0 1 G5206809 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320963841 2021-04-01 12:31:09.823741 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 Letchworth SP--Trail No. 17 L3653210 H 42.6868725 -77.9552157 2015-05-17 06:00:00 obsr1009338 S23515687 Traveling P22 EBIRD 360.0 27.359 2.0 1 G1277797 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323957031 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 05:40:00 obsr1659461 S23705514 Traveling P22 EBIRD 285.0 3.219 2.0 1 G1295955 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295158061 2015-02-06 04:09:18 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-02-04 07:00:00 obsr2694889 S21694446 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314618058 2021-09-16 18:37:17.374067 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-29 19:00:00 obsr2919757 S23160614 Traveling P22 EBIRD 129.0 0.322 3.0 1 G1245626 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304594563 2021-03-24 20:23:39.258075 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Roosevelt Estate County Park L7273270 H 40.7386078 -73.0728777 2015-03-22 09:51:00 obsr1107696 S22464323 Rusty Blackbird Spring Migration Blitz P41 EBIRD 77.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309821961 2021-04-01 11:15:31.646886 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-13 16:00:00 obsr454647 S22849427 Traveling P22 EBIRD 130.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294770320 2015-02-03 16:41:24 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 16 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-01-25 09:10:00 obsr780726 S21663696 Traveling P22 EBIRD 40.0 1.0 2.0 1 G1134598 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324772484 2021-03-26 07:46:52.994574 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.5944991 -73.8148373 2015-05-30 07:05:00 obsr2855945 S23759603 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219902 2018-08-04 16:53:21 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 155 United States US New York US-NY Saratoga US-NY-091 13.0 Fish Creek Marina L1913554 H 43.0733865 -73.6955166 2015-01-15 13:25:00 obsr1222746 S21362808 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288477863 2021-03-01 11:20:54.007808 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 4 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-02 12:10:00 obsr2001485 S21140694 Traveling P22 EBIRD 55.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316041626 2015-05-05 09:48:38 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods - Lake Plains side L2376829 P 43.2738894 -77.6598215 2015-04-24 08:50:00 obsr2966702 S23240053 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295522484 2020-03-22 07:58:01 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 3 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-02-07 08:45:00 obsr1696616 S21723926 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292049711 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 30 United States US New York US-NY New York US-NY-061 Randalls Island--NE fields and shoreline L1785381 H 40.7943072 -73.9138235 2015-01-19 08:45:00 obsr1548221 S21427993 Traveling P22 EBIRD 113.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290452907 2019-07-23 17:26:56 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 22 United States US New York US-NY Tompkins US-NY-109 13.0 Eliana's L1376065 P 42.468118 -76.5266105 2015-01-11 14:02:00 obsr887540 S21300709 Traveling P22 EBIRD 74.0 0.322 3.0 1 G1106111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312282212 2021-04-22 20:54:52.561788 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-23 08:00:00 obsr2342280 S23012386 Traveling P22 EBIRD 90.0 0.805 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307685954 2021-04-01 12:32:15.282601 483 species avibase-85625D75 Mallard Anas platyrhynchos N 3 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-05 10:30:00 obsr1668936 S22696634 Traveling P22 EBIRD 73.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312734951 2021-04-01 12:18:57.910168 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-21 08:25:00 obsr140280 S23044184 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423204 2021-04-01 11:24:19.637193 7429 species avibase-1327AC55 Osprey Pandion haliaetus 25 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-24 12:28:00 obsr1846130 S24163340 Traveling P22 EBIRD 378.0 9.656 4.0 1 G1337409 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315213525 2021-11-15 03:06:58.889978 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-01 17:00:00 obsr2499879 S23194617 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320897542 2021-04-01 12:26:53.827486 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Albany US-NY-001 13.0 Rte 155 and Normanskill L3110282 P 42.6761668 -73.9061529 2015-05-18 10:20:00 obsr634484 S23512201 Traveling P22 EBIRD 85.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300159296 2021-04-01 11:49:53.573686 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N 6 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-02-28 10:15:00 obsr350767 S22116672 Traveling P22 EBIRD 144.0 3.219 3.0 1 G1162653 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306733968 2021-03-24 20:16:00.852773 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-01 13:55:00 obsr1958124 S22627723 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292939638 2021-03-26 07:46:10.228013 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5000 United States US New York US-NY Yates US-NY-123 US-NY_803 13.0 Perry Point L1044860 H 42.675526 -76.9384789 2015-01-24 14:06:00 obsr1828453 S21518563 Traveling P22 EBIRD 63.0 0.161 2.0 1 G1121765 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303464457 2021-03-26 07:30:35.289997 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-16 08:08:00 obsr1655171 S22377130 Traveling P22 EBIRD 39.0 0.644 2.0 1 G1187672 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319536216 2021-03-26 06:21:54.883933 32955 species avibase-41062654 Northern Parula Setophaga americana 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Vale of Cashmere L1149386 H 40.6690561 -73.9683616 2015-05-14 09:45:00 obsr2476180 S23437688 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310035968 2022-03-05 22:03:50.715584 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-14 09:30:00 obsr444155 S22860286 Traveling P22 EBIRD 150.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312162250 2021-03-26 07:00:33.333856 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 5 United States US New York US-NY Queens US-NY-081 30.0 Idlewild Park L2687800 H 40.6546016 -73.7547487 2015-04-21 09:15:00 obsr1982614 S23004291 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294661267 2021-04-01 11:30:42.037277 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Triplets Br. area (btwn 77th-79th St. transv.) L4525727 H 40.779838 -73.9724077 2015-02-01 15:03:00 obsr1548221 S21654616 Traveling P22 EBIRD 15.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296893762 2019-01-03 10:54:11 6361 issf avibase-0C55DFCC Iceland Gull Larus glaucoides Iceland Gull (kumlieni) Larus glaucoides kumlieni X United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point SP--Seal Haulout L1858339 H 41.076758 -71.879846 2015-02-14 13:20:00 obsr2902954 S21839658 Traveling P22 EBIRD 55.0 1.609 2.0 1 G1146180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318321218 2021-04-01 12:32:15.282601 23291 species avibase-58C502EA Barn Swallow Hirundo rustica X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-05-09 15:30:00 obsr2207991 S23368274 Traveling P22 EBIRD 90.0 3.219 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299812281 2021-04-01 11:47:43.260314 32220 species avibase-AF49F890 Lincoln's Sparrow Melospiza lincolnii 21 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-02-06 11:00:00 obsr2409011 S22089046 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313520772 2018-08-04 17:12:31 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake, Vitale Park L637129 H 42.8342164 -77.7035522 2015-04-27 12:00:00 obsr642516 S23091951 Traveling P22 EBIRD 45.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319336542 2021-03-26 07:56:20.588749 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park L693342 P 40.6618894 -73.719635 2015-05-13 08:00:00 obsr2505956 S23425944 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306683826 2021-03-23 17:32:20.03109 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 8 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson River Park (private) L3498350 H 43.2032416 -76.2825651 2015-04-01 07:20:00 obsr2224244 S22624113 Stationary P21 EBIRD 111.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312199343 2017-08-16 17:04:22 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-04-15 07:45:00 obsr2978565 S23006931 Traveling P22 EBIRD 160.0 0.805 19.0 1 G1232165 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301342993 2021-03-26 06:15:05.840405 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Cortland US-NY-023 28.0 Daisy Hollow Rd. wet meadows L2976557 H 42.4879855 -76.2249148 2015-03-07 08:38:00 obsr1696616 S22205763 Traveling P22 EBIRD 3.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340583813 2021-03-26 06:13:28.501496 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.1752556 -76.8558787 2015-04-14 07:00:00 obsr2736418 S24908668 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306112677 2018-08-04 17:04:37 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Bayard Cutting Arboretum SP L715580 H 40.7355391 -73.1629871 2015-03-29 10:45:00 obsr271871 S22579849 Traveling P22 EBIRD 45.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320750613 2018-08-06 22:30:24 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Broome US-NY-007 28.0 Wolfe Park, Town of Chenango L2683280 H 42.159845 -75.901316 2015-05-17 11:00:00 obsr1044068 S23503162 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310537230 2021-04-01 10:47:08.851048 406 species avibase-27B2749A Wood Duck Aix sponsa 4 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Triangle, Basset Road L2176200 P 42.40425 -75.97313 2015-04-16 18:38:00 obsr800690 S22899418 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300798699 2015-03-03 20:18:03 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi X United States US New York US-NY Chautauqua US-NY-013 13.0 Portland, NY L3454068 P 42.3836379 -79.4352722 2015-03-03 11:00:00 obsr479109 S22164338 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306058191 2021-03-30 19:13:38.458673 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-03-29 14:22:00 obsr1545618 S22575619 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308328134 2019-04-19 13:17:53 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-07 15:19:00 obsr119187 S22743892 Stationary P21 EBIRD 71.0 2.0 1 G1210365 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323950981 2018-08-06 22:31:26 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Aquaterra Park L209925 H 42.032165 -75.939463 2015-05-30 08:00:00 obsr879105 S23705148 Traveling P22 EBIRD 180.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306737625 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-01 09:46:00 obsr1711339 S22628003 Traveling P22 EBIRD 270.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296399129 2015-02-13 10:21:00 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 3 United States US New York US-NY Oswego US-NY-075 13.0 Ford Home L3358469 P 43.2452894 -76.3737814 2015-02-13 08:25:00 obsr2700541 S21795009 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317504395 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-09 08:39:00 obsr259298 S23324381 Traveling P22 EBIRD 110.0 3.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295055515 2021-03-19 16:32:34.732091 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 10 United States US New York US-NY Kings US-NY-047 Columbia St. Pier L2609188 H 40.6673427 -74.0106637 2015-02-05 15:23:00 obsr1711339 S21687996 Traveling P22 EBIRD 46.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312248812 2021-03-26 07:20:31.408164 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 50 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Captree Island L2865928 H 40.6469348 -73.2632673 2015-04-23 08:03:00 obsr1228860 S23010276 Traveling P22 EBIRD 10.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319425003 2021-04-01 10:57:06.520339 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Essex US-NY-031 13.0 US-NY-Ticonderoga-park L2835690 P 43.849661 -73.418867 2015-05-09 07:39:00 obsr2693145 S23431050 Traveling P22 EBIRD 15.0 0.322 2.0 1 G1269867 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307582158 2021-04-01 12:14:19.266649 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 1 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-04-04 09:30:00 obsr105122 S22689586 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183558 2021-03-30 19:39:10.250398 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve--Massapequa Lake L881487 H 40.6669677 -73.4683228 2015-01-10 10:00:00 obsr87415 S21278766 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306897478 2021-11-15 03:06:58.889978 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-02 06:58:00 obsr894191 S22639499 Traveling P22 EBIRD 116.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294404777 2021-04-01 12:14:19.266649 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree SP L283564 H 40.6394313 -73.2644575 2015-02-01 12:20:00 obsr2406624 S21634260 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313722349 2021-03-23 17:00:13.087107 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--office 248 L286682 P 42.4804061 -76.4510196 2015-04-27 08:30:00 obsr2001485 S23104817 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308058202 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-03-24 17:30:00 obsr2072398 S22723155 Traveling P22 EBIRD 45.0 1.609 2.0 1 G1208373 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301808908 2021-04-01 11:42:50.317679 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 5 United States US New York US-NY Oneida US-NY-065 14.0 US-NY-8700-8786 Meadows Rd L3463757 P 43.279219 -75.628428 2015-03-08 10:47:00 obsr1640315 S22242121 Traveling P22 EBIRD 5.0 0.483 1.0 1 G1170793 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319140293 2021-04-01 11:15:31.646886 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 11:00:00 obsr1659461 S23414926 Traveling P22 EBIRD 420.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306991851 2021-03-23 16:29:02.691496 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 3 United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-02 09:55:00 obsr408487 S22646792 Stationary P21 EBIRD 230.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308454128 2015-04-08 12:17:39 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Tompkins US-NY-109 28.0 Mr. C. Feeder Station L3541750 P 42.3927043 -76.3720956 2015-04-08 08:05:00 obsr581835 S22753573 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307008138 2021-03-30 18:54:05.959583 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-04-02 17:28:00 obsr1348614 S22648344 Traveling P22 EBIRD 21.0 0.5 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303925246 2021-11-15 03:06:58.889978 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus N 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-18 14:00:00 obsr93451 S22413340 Traveling P22 EBIRD 120.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309470722 2021-11-09 19:02:27.638861 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-04-12 13:30:00 obsr2103727 S22824309 Traveling P22 EBIRD 45.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312737169 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-24 13:17:00 obsr1136524 S23044334 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307228616 2021-03-26 06:15:05.840405 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 8 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Marathon-US Highway 11 L3484756 P 42.474914 -76.057935 2015-04-03 17:24:00 obsr1092576 S22664350 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319714040 2022-02-17 14:32:23.002448 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-14 15:30:00 obsr2448957 S23447689 Traveling P22 EBIRD 260.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305197742 2021-03-26 07:56:20.588749 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-24 11:00:00 obsr2739465 S22510306 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322170646 2021-03-19 16:27:31.421791 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 1 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-23 09:00:00 obsr1104059 S23591159 Area P23 EBIRD 90.0 121.4057 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322629885 2018-08-04 17:28:06 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Cattaraugus US-NY-009 13.0 Conewango Swamp WMA L246473 H 42.1794444 -78.9861111 2015-05-20 16:30:00 obsr551881 S23616815 Traveling P22 EBIRD 165.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289984898 2019-07-23 17:26:44 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Oswego US-NY-075 Oswego Harbor L247908 H 43.4658286 -76.5149873 2015-01-09 08:49:00 obsr2945658 S21262650 Traveling P22 EBIRD 79.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309833345 2021-03-23 17:00:13.087107 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-04-11 09:40:00 obsr711169 S22850187 Stationary P21 EBIRD 20.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302101069 2021-04-01 12:41:58.738824 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-02-28 11:54:00 obsr2490863 S22264162 Stationary P21 EBIRD 40.0 1.0 1 G1173116 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320309952 2021-03-26 06:12:17.833181 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N X United States US New York US-NY Chautauqua US-NY-013 13.0 Bates Rd. Grassland Area L2795195 H 42.149688 -79.5485795 2015-05-16 20:03:00 obsr1092576 S23479840 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319149301 2021-04-01 12:32:15.282601 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-12 10:00:00 obsr1494607 S23415410 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288244143 2021-04-01 12:18:57.910168 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Nate's Patch--Bluegrass to Hanshaw to Freese L1006570 P 42.4655757 -76.4526987 2015-01-01 13:03:00 obsr1062070 S21121293 Traveling P22 EBIRD 222.0 5.794 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289129299 2021-03-19 16:44:35.607263 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-04 11:53:00 obsr334398 S21195132 Traveling P22 EBIRD 118.0 2.414 3.0 1 G1096390 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303432934 2018-08-04 17:00:39 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Stewart Park Cayuga Lake L693667 P 42.464064 -76.5044653 2015-03-14 09:30:00 obsr1587816 S22374537 Incidental P20 EBIRD 12.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302594904 2021-04-01 12:41:58.738824 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 32 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-03-11 18:19:00 obsr2173269 S22309333 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317731014 2021-11-09 19:21:07.406501 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-05-09 07:25:00 obsr979921 S23336742 Traveling P22 EBIRD 70.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306624209 2021-03-30 19:29:33.633096 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-03-31 16:33:00 obsr2448785 S22619534 Traveling P22 EBIRD 20.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320558769 2021-11-15 03:06:58.889978 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 08:30:00 obsr377694 S23492851 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314889958 2021-03-30 19:13:38.458673 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Burger Park L390594 H 43.3099074 -77.7326596 2015-05-02 10:03:00 obsr934639 S23176658 Traveling P22 EBIRD 76.0 1.207 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312669602 2021-03-24 20:58:53.646623 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-24 07:30:00 obsr72341 S23039699 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320715080 2021-11-15 03:06:58.889978 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 11:30:00 obsr1706920 S23501093 Area P23 EBIRD 220.0 14.5687 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296552214 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-02-13 16:00:00 obsr2448957 S21809033 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303171974 2015-03-14 22:43:37 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 30 United States US New York US-NY Queens US-NY-081 Rockaway Beach--W of Beach 125th St. L2466980 H 40.5711426 -73.8525152 2015-03-14 08:00:00 obsr676630 S22354035 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323120413 2015-05-26 12:53:24 303 species avibase-B59E1863 Canada Goose Branta canadensis 51 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-05-26 09:45:00 obsr2364166 S23647709 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319713981 2022-02-17 14:32:23.002448 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-14 15:30:00 obsr2448957 S23447689 Traveling P22 EBIRD 260.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311826942 2021-03-19 16:02:45.308962 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-04-21 08:00:00 obsr1830659 S22982288 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302873425 2021-04-01 11:15:31.646886 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-13 11:45:00 obsr2906952 S22330131 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315486097 2021-03-26 06:29:56.44369 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-04-29 07:24:00 obsr334398 S23208870 Traveling P22 EBIRD 65.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304171027 2021-04-01 11:24:19.637193 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 400 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-20 07:50:00 obsr334398 S22432416 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301973121 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 25 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-09 10:00:00 obsr1201479 S22254207 Stationary P21 EBIRD 35.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303754103 2021-03-26 06:29:56.44369 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Rochester-irondequoit 14622 yard L3146197 P 43.22078 -77.556809 2015-03-17 10:56:00 obsr140077 S22399780 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296644272 2015-02-14 08:26:15 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Saratoga US-NY-091 13.0 Personal residence L1937009 P 42.9576788 -74.0717125 2015-02-13 10:30:00 obsr1557094 S21816840 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320102219 2021-04-01 10:58:31.765174 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Franklin US-NY-033 13.0 Dickinson L198982 T 44.74836 -74.56462 2015-05-16 06:00:00 obsr1672399 S23469348 Traveling P22 EBIRD 140.0 25.75 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319920163 2015-05-15 17:20:24 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-15 08:13:00 obsr2774009 S23459150 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315514960 2021-03-23 17:21:37.486392 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Fulton US-NY-035 13.0 Cline Rd., marsh (east) L1144401 H 43.061062 -74.6492232 2015-05-03 09:15:00 obsr2590001 S23210487 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291722718 2018-08-04 16:53:54 303 species avibase-B59E1863 Canada Goose Branta canadensis 12 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake Park L792637 H 42.7759994 -77.6113701 2015-01-18 08:15:00 obsr39511 S21402586 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303613695 2021-03-30 19:43:08.006315 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-03-16 18:50:00 obsr2173269 S22389006 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290623710 2015-01-12 09:38:37 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Columbia US-NY-021 13.0 Lewis A. Swyer Preserve L122991 H 42.41944 -73.77222 2015-01-11 15:10:00 obsr489496 S21314069 Traveling P22 EBIRD 85.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316822037 2021-04-01 11:15:31.646886 6610 species avibase-6C50988A Red-throated Loon Gavia stellata N 2 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-07 09:40:00 obsr1821546 S23285065 Traveling P22 EBIRD 69.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288671881 2021-03-23 17:39:28.36772 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-01-02 09:00:00 obsr1839967 S21156538 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316247183 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-05 16:22:00 obsr2054320 S23252362 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315131552 2021-03-26 06:17:19.712573 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-02 07:25:00 obsr736608 S23189820 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314953768 2018-01-07 20:13:45 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 2 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-05-02 06:31:00 obsr2693145 S23179914 Traveling P22 EBIRD 78.0 0.322 2.0 1 G1247223 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295407078 2021-03-22 08:58:29.008072 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-03 16:00:00 obsr2277801 S21714571 Historical P62 EBIRD 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314663800 2021-03-24 05:37:45.927792 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-01 11:15:00 obsr319738 S23163155 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322750580 2021-03-24 19:23:17.886063 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Harbor Marina (private) L632907 H 42.8396606 -76.6973591 2015-05-25 09:05:00 obsr887540 S23624278 Stationary P21 EBIRD 11.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314078035 2018-08-04 17:12:41 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 6 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Feeder Rd. Trail (Genesee Co.) L153041 H 43.1242469 -78.429129 2015-04-29 08:40:00 obsr137150 S23127127 Traveling P22 EBIRD 210.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292102987 2015-01-20 11:46:49 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Warren US-NY-113 14.0 Rogers Rock Campgound L799286 H 43.7930769 -73.4800172 2015-01-20 09:19:00 obsr2693145 S21432296 Traveling P22 EBIRD 36.0 0.322 2.0 1 G1117436 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292099946 2021-11-12 19:30:09.254756 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Artpark SP (Earl W. Brydges) L827066 H 43.1657237 -79.0422707 2015-01-19 10:55:00 obsr1092576 S21432036 Stationary P21 EBIRD 17.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304477009 2021-03-26 08:09:53.772059 23187 species avibase-ACB9D1C6 Purple Martin Progne subis 2 United States US New York US-NY Rensselaer US-NY-083 13.0 Poestenkill, Home Yard L940921 P 42.6943279 -73.5632408 2015-03-21 18:00:00 obsr1735540 S22455685 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324476807 2021-03-19 16:29:59.503892 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Jefferson US-NY-045 US-NY_838 13.0 Redlake, Town of Theresa L2180606 P 44.2692965 -75.7421494 2015-05-30 09:30:00 obsr585290 S23738627 Traveling P22 EBIRD 180.0 40.234 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320609863 2021-11-15 03:06:58.889978 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 07:55:00 obsr1154258 S23495577 Traveling P22 EBIRD 220.0 2.414 7.0 1 G1275166 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314958645 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 08:30:00 obsr369788 S23180152 Traveling P22 EBIRD 270.0 8.047 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309212925 2017-05-02 11:19:42 6408 spuh avibase-E8FAD0BB Larus sp. Larus sp. 3 United States US New York US-NY Genesee US-NY-037 13.0 9605 Francis Rd , Batavia L3360943 P 42.947728 -78.1616086 2015-04-11 15:15:00 obsr393804 S22808391 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310486102 2021-03-19 16:00:00.303051 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-04-16 15:20:00 obsr1348614 S22895754 Traveling P22 EBIRD 86.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319960194 2021-11-09 17:58:40.313796 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-15 09:00:00 obsr1917973 S23461343 Traveling P22 EBIRD 255.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305787035 2021-03-30 19:43:32.881136 542 issf avibase-115F04DD Green-winged Teal Anas crecca Green-winged Teal (Eurasian) Anas crecca crecca 2 United States US New York US-NY Westchester US-NY-119 30.0 Tarrytown Lakes Park L302456 H 41.0829631 -73.8426401 2015-03-27 16:30:00 obsr258560 S22555862 Traveling P22 EBIRD 900.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS329943055 2021-03-26 06:17:19.712573 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus X United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-29 12:00:00 obsr1379161 S24130032 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312257652 2015-04-23 09:11:37 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Ontario US-NY-069 13.0 east street L3147087 P 42.8983836 -77.2684765 2015-04-23 07:45:00 obsr2979658 S23010829 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302682903 2021-11-15 03:06:58.889978 23291 species avibase-58C502EA Barn Swallow Hirundo rustica X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-12 13:15:00 obsr215694 S22315657 Traveling P22 EBIRD 105.0 0.805 14.0 1 G1176950 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314777731 2021-03-24 20:53:39.352228 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-01 18:10:00 obsr2512689 S23170134 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315841039 2021-11-09 18:56:49.988387 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies L428335 H 41.7861111 -73.7397222 2015-05-03 07:00:00 obsr1835267 S23228131 Traveling P22 EBIRD 150.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324258505 2021-04-01 12:32:15.282601 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 8 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-31 09:40:00 obsr401901 S23724462 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321824421 2021-03-19 16:19:20.977326 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-19 09:35:00 obsr1079517 S23568911 Area P23 EBIRD 45.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309991835 2021-04-01 12:14:19.266649 505 species avibase-C732CB10 American Black Duck Anas rubripes 12 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-04-14 09:00:00 obsr706483 S22861354 Traveling P22 EBIRD 180.0 4.828 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311051221 2021-04-01 11:24:19.637193 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 15 United States US New York US-NY Monroe US-NY-055 13.0 Erie Canal, Rte. 31 L827461 H 43.0748912 -77.4637681 2015-04-18 06:30:00 obsr1545618 S22932730 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309659724 2015-05-07 17:00:47 32578 species avibase-000482C9 Orchard Oriole Icterus spurius 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Cabin L327724 P 42.34994 -76.30034 2015-04-13 07:12:00 obsr455249 S22837032 Traveling P22 EBIRD 12.0 0.579 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313389692 2021-04-01 11:24:19.637193 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-25 10:15:00 obsr1782363 S23084057 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302917598 2021-04-01 10:47:08.851048 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-03-13 17:43:00 obsr1764243 S22333680 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314488536 2021-03-26 06:39:43.334073 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Greywacke Arch L2179946 H 40.7792619 -73.9657742 2015-04-30 08:25:00 obsr1548221 S23152649 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306443353 2020-01-16 17:00:55 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-03-29 19:05:00 obsr1395007 S22605490 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS339652756 2022-01-30 05:40:13.589887 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 15:00:00 obsr189780 S24840617 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308605833 2015-04-09 08:02:50 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-04-09 07:29:00 obsr1958124 S22765081 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321553833 2022-01-12 18:14:50.403512 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail L212481 H 44.4128015 -74.121715 2015-05-19 05:20:00 obsr1222746 S23552372 Traveling P22 EBIRD 89.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305197958 2021-03-26 07:30:35.289997 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 70 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-25 07:10:00 obsr869999 S22510317 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298846892 2021-03-23 16:39:03.255227 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 8 United States US New York US-NY Richmond US-NY-085 30.0 Lemon Creek, bridge at Hylan Blvd. L916052 H 40.517649 -74.2011237 2015-02-21 14:09:00 obsr1893950 S22011842 Stationary P21 EBIRD 2.0 2.0 1 G1155350 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307382077 2021-03-23 16:39:03.255227 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-04 09:20:00 obsr1958124 S22675619 Traveling P22 EBIRD 28.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311057112 2018-08-04 17:09:38 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 6 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-18 08:00:00 obsr1044068 S22933108 Stationary P21 EBIRD 180.0 10.0 1 G1224864 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305891732 2021-04-01 11:24:19.637193 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 40 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-28 15:55:00 obsr934639 S22563601 Stationary P21 EBIRD 25.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296519130 2021-04-01 12:32:15.282601 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-13 11:15:00 obsr547602 S21805951 Traveling P22 EBIRD 120.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299346436 2021-04-01 11:49:53.573686 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Queens US-NY-081 30.0 Rosie's Place-243 Beach 135th Street L869966 P 40.5751026 -73.8535845 2015-02-23 10:00:00 obsr604941 S22053400 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303547786 2021-03-26 06:59:15.841579 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 140 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-16 09:00:00 obsr2945658 S22384059 Stationary P21 EBIRD 416.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311284513 2016-03-24 15:20:12 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Roy H. Park Preserve--south (FLLT) L305381 H 42.4259195 -76.3357544 2015-04-19 10:30:00 obsr2119225 S22946923 Traveling P22 EBIRD 100.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301903144 2018-08-04 16:59:07 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 400 United States US New York US-NY Albany US-NY-001 13.0 Falls View Park L2320054 H 42.7858769 -73.7097709 2015-03-08 16:34:00 obsr2268588 S22249209 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319587614 2021-03-24 19:20:44.053843 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Broome US-NY-007 28.0 Stair Park L3642881 P 42.0765892 -75.9575756 2015-05-13 10:02:00 obsr1222746 S23440500 Traveling P22 EBIRD 24.0 0.563 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296827049 2021-04-01 12:32:15.282601 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach West End L844092 P 40.5831269 -73.5595393 2015-02-14 11:00:00 obsr2196583 S21833698 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294175367 2018-08-04 16:55:29 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-01-31 10:25:00 obsr1711339 S21616219 Stationary P21 EBIRD 20.0 2.0 1 G1130186 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297079751 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-15 09:45:00 obsr512869 S21855753 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309259294 2021-04-01 11:30:42.037277 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-04-11 16:00:00 obsr1555046 S22811421 Stationary P21 EBIRD 60.0 2.0 1 G1223863 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308625946 2021-03-24 20:33:47.533911 26890 species avibase-94A44032 European Starling Sturnus vulgaris 18 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-09 09:30:00 obsr1655171 S22766612 Traveling P22 EBIRD 28.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303868186 2015-03-18 13:37:03 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Queens US-NY-081 30.0 40.6878x-73.8845 - Mar 18, 2015, 11:55 AM L3496860 P 40.687819 -73.884474 2015-03-18 11:55:00 obsr2691134 S22408790 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303070056 2021-11-09 18:25:59.444943 7200 species avibase-49D9148A Great Egret Ardea alba 2 United States US New York US-NY Dutchess US-NY-027 13.0 Wappinger Lake L1829902 H 41.6070847 -73.9159704 2015-03-14 14:30:00 obsr2241630 S22346088 Traveling P22 EBIRD 30.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320817656 2021-07-23 18:22:55.653138 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 Coney Island Creek Park L614792 H 40.5813224 -74.0052688 2015-05-18 06:02:00 obsr187432 S23507775 Traveling P22 EBIRD 74.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311049111 2021-03-31 04:01:10.517395 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 28 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 07:35:00 obsr41879 S22932586 Traveling P22 EBIRD 320.0 8.047 16.0 1 G1224971 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313150595 2015-04-26 13:48:54 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-25 18:09:00 obsr666964 S23069009 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310634908 2021-03-23 17:00:13.087107 431 species avibase-90E2543E Blue-winged Teal Spatula discors 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--office 248 L286682 P 42.4804061 -76.4510196 2015-04-17 09:30:00 obsr2001485 S22905994 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300907480 2018-08-04 16:58:43 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Warren US-NY-113 13.0 Shermantown Rd. Portage Trail L960269 H 43.3064521 -73.6251848 2015-03-04 12:52:00 obsr1222746 S22172282 Traveling P22 EBIRD 26.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301878183 2021-03-23 17:21:37.486392 26109 species avibase-BAC33609 Brown Creeper Certhia americana 2 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-03-07 17:05:00 obsr1708031 S22247347 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320326723 2021-03-26 06:39:43.334073 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-05-16 11:30:00 obsr2277801 S23480685 Historical P62 EBIRD 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290471048 2021-03-30 19:29:33.633096 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Camp Hero SP--bluffs (parking lot) L2451856 H 41.0698744 -71.8587416 2015-01-10 10:30:00 obsr1615708 S21302196 Stationary P21 EBIRD 30.0 8.0 1 G1105513 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323985137 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 250 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 06:35:00 obsr350767 S23707107 Traveling P22 EBIRD 279.0 2.414 4.0 1 G1296053 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296527753 2018-08-04 16:56:13 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Ontario US-NY-069 13.0 4100 co rd 16-Canandaigua Lake L3362520 P 42.8241696 -77.2837443 2015-02-13 14:30:00 obsr696564 S21806820 Historical P62 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295324086 2022-03-05 22:03:50.715584 11494 species avibase-20C2214E American Kestrel Falco sparverius 3 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-06 09:00:00 obsr2219590 S21708004 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323832971 2015-05-29 18:36:23 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-05-29 17:55:00 obsr1591201 S23697146 Traveling P22 EBIRD 30.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288606069 2021-04-01 11:49:53.573686 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 100 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-01-02 07:00:00 obsr352522 S21151408 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317593970 2021-12-24 11:02:14.483178 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-09 13:10:00 obsr991026 S23329401 Traveling P22 EBIRD 84.0 3.074 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317003351 2021-03-26 06:39:43.334073 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Shakespeare Garden L1673419 H 40.7798887 -73.9697911 2015-05-06 05:59:00 obsr1253931 S23295241 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317328034 2021-03-26 07:56:20.588749 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Nassau US-NY-059 30.0 Utterby Rd, Malverne, NY L3183302 P 40.6744633 -73.6651888 2015-05-08 18:00:00 obsr1124122 S23313133 Stationary P21 EBIRD 15.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314190347 2021-04-01 11:15:31.646886 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-29 17:15:00 obsr2499879 S23133992 Traveling P22 EBIRD 135.0 5.633 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304344945 2021-03-26 08:14:57.071052 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 4 United States US New York US-NY Westchester US-NY-119 30.0 Northwest Yonkers L3480034 P 40.9553 -73.882866 2015-03-21 07:30:00 obsr1333670 S22445837 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308081325 2021-03-30 19:07:52.958398 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-06 10:15:00 obsr2363365 S22724913 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309575425 2015-04-12 21:16:23 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 2 United States US New York US-NY Allegany US-NY-003 28.0 Cobb Road L3117891 P 42.0089588 -77.7556086 2015-04-12 09:40:00 obsr2700440 S22831520 Traveling P22 EBIRD 35.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308243195 2021-03-30 19:07:52.958398 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-07 10:25:00 obsr2906952 S22737791 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313173952 2017-09-02 16:17:27 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Delaware US-NY-025 28.0 Houck Mountain Rd. L2266924 H 42.0823523 -75.1093785 2015-04-26 04:58:00 obsr1788273 S23070405 Traveling P22 EBIRD 60.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302503995 2018-08-04 16:59:40 591 species avibase-1929E1E1 Canvasback Aythya valisineria 4 United States US New York US-NY Allegany US-NY-003 28.0 Back River Road L3481285 P 42.1984696 -78.0121732 2015-03-11 10:50:00 obsr1310178 S22301863 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320572050 2021-04-01 12:26:53.827486 16282 species avibase-7B0669CB Yellow-bellied Flycatcher Empidonax flaviventris 1 United States US New York US-NY Albany US-NY-001 28.0 Alcove Reservoir L721888 H 42.4798202 -73.9378595 2015-05-16 10:17:00 obsr2512689 S23493576 Stationary P21 EBIRD 29.0 2.0 1 G1276033 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302865439 2015-03-13 13:27:34 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Chenango US-NY-017 28.0 Chenango River off S. Oxford Bridge Rd L3459355 P 42.4011716 -75.6302932 2015-03-13 12:54:00 obsr1303581 S22329526 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304458785 2021-03-30 06:01:28.020715 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 53 United States US New York US-NY Washington US-NY-115 13.0 Bradley Beach, Ft. Edward L2477571 H 43.266989 -73.5908235 2015-03-21 15:32:00 obsr1222746 S22454202 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295434731 2015-02-07 19:12:18 32955 species avibase-41062654 Northern Parula Setophaga americana 1 United States US New York US-NY Delaware US-NY-025 28.0 Walley Road L3344938 P 42.3377215 -75.1726305 2015-02-07 11:00:00 obsr979921 S21716650 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296846361 2021-03-26 07:07:10.758746 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-02-14 16:14:00 obsr1893950 S21835484 Stationary P21 EBIRD 82.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304122745 2021-04-01 12:25:32.91759 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 40 United States US New York US-NY Wyoming US-NY-121 28.0 Hwy 19 (Wyoming Co. segment) L3500182 P 42.687903 -78.1187439 2015-03-19 11:26:00 obsr1310178 S22428664 Traveling P22 EBIRD 30.0 45.062 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979203 2021-04-01 10:45:00.916278 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 4 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr1348614 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315866088 2021-03-26 07:56:20.588749 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-04 16:30:00 obsr916370 S23229591 Traveling P22 EBIRD 75.0 2.253 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288841082 2015-01-03 18:30:37 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 Male, Adult (1) United States US New York US-NY Suffolk US-NY-103 30.0 Old Watermill, Watermill, Suffolk County L3262573 P 40.9100748 -72.361064 2015-01-03 10:30:00 obsr2159121 S21172693 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289545100 2015-01-06 18:34:13 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 12 United States US New York US-NY Orleans US-NY-073 13.0 US-NY-Medina-12537 Barber Rd L3271833 P 43.15623 -78.310551 2015-01-06 15:40:00 obsr294236 S21227653 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301642280 2021-04-01 11:49:53.573686 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-03-08 08:00:00 obsr676630 S22228041 Traveling P22 EBIRD 45.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313171452 2021-11-09 22:45:57.640721 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Sullivan US-NY-105 US-NY_2792 28.0 River Road/Callicoon L3592422 P 41.7895797 -75.0987162 2015-04-25 06:50:00 obsr1788273 S23070260 Stationary P21 EBIRD 40.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306760122 2021-03-26 07:56:20.588749 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-01 14:50:00 obsr1488063 S22629407 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296255064 2015-02-12 12:02:18 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Tompkins US-NY-109 13.0 My home, buttermilk lane L3355530 P 42.3879024 -76.4995623 2015-02-12 10:00:00 obsr1925551 S21781352 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310985318 2018-08-04 17:10:23 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-04-18 14:40:00 obsr1626739 S22928537 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303132613 2018-08-04 16:59:17 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-03-11 07:39:00 obsr998593 S22350933 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289305403 2021-03-23 16:39:03.255227 681 species avibase-407E2CA8 Common Merganser Mergus merganser 8 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-01-05 14:31:00 obsr1958124 S21208547 Traveling P22 EBIRD 7.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324152019 2021-03-22 08:58:29.008072 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park - Belvedere Castle L2364580 P 40.7793964 -73.9689396 2015-05-26 19:32:00 obsr1548221 S23717781 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303059853 2019-07-23 17:27:57 456 species avibase-D201EB72 American Wigeon Mareca americana X United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-03-14 10:09:00 obsr2760150 S22345332 Stationary P21 EBIRD 39.0 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308872862 2021-03-26 08:14:57.071052 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Westchester US-NY-119 30.0 Martling Avenue L1368836 P 41.0672048 -73.8554782 2015-04-10 12:30:00 obsr1055148 S22785187 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306130164 2021-04-01 10:47:08.851048 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-03-29 15:50:00 obsr1303581 S22581185 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304655057 2021-12-19 10:32:19.574298 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-03-22 08:30:00 obsr2087436 S22468582 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303083726 2015-03-14 16:16:07 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Tompkins US-NY-109 13.0 Lake van Leer (private) L524497 P 42.5196241 -76.6454744 2015-03-14 15:33:00 obsr1008519 S22347168 Stationary P21 EBIRD 42.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307502713 2021-03-19 16:08:39.161312 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-04-04 15:38:00 obsr2497657 S22683877 Traveling P22 EBIRD 91.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314668839 2021-04-01 12:32:15.282601 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-05-01 10:00:00 obsr2505956 S23163456 Traveling P22 EBIRD 20.0 0.483 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311125460 2022-02-17 14:32:23.002448 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-18 17:45:00 obsr2796494 S22937405 Traveling P22 EBIRD 35.0 0.805 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300038057 2022-03-05 22:03:50.715584 27616 species avibase-D77E4B41 American Robin Turdus migratorius N X United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-28 10:00:00 obsr444155 S22106511 Traveling P22 EBIRD 30.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319613807 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Triplets Br. area (btwn 77th-79th St. transv.) L4525727 H 40.779838 -73.9724077 2015-05-13 18:57:00 obsr1548221 S23441917 Traveling P22 EBIRD 13.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294368424 2015-02-01 13:42:29 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Monroe US-NY-055 13.0 Ballou Backyard L345447 P 43.1434658 -77.5598985 2015-02-01 12:05:00 obsr2678807 S21631368 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309703631 2021-03-30 19:13:38.458673 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-04-07 09:00:00 obsr109837 S22840594 Stationary P21 EBIRD 105.0 9.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311850633 2021-04-01 11:15:31.646886 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 08:15:00 obsr263005 S22983909 Traveling P22 EBIRD 315.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309444104 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-04-11 14:15:00 obsr259298 S22822633 Stationary P21 EBIRD 93.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290030383 2021-04-01 12:18:57.910168 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca-Farmers Market-Canal L3279844 P 42.4501229 -76.5104038 2015-01-01 11:25:00 obsr2377251 S21266324 Traveling P22 EBIRD 33.0 0.7 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316406484 2021-03-24 20:58:04.794277 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 6 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-05-05 08:00:00 obsr1680059 S23261084 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301410210 2021-11-09 21:48:10.105244 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera N X United States US New York US-NY Ulster US-NY-111 13.0 US-NY-Rosendale-Creek Locks Rd L2671860 P 41.863919 -74.042887 2015-03-07 08:30:00 obsr1588136 S22211206 Stationary P21 EBIRD 15.0 3.0 1 G1168945 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312116393 2021-04-01 11:30:42.037277 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-21 17:00:00 obsr609516 S23001106 Traveling P22 EBIRD 75.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298468739 2021-03-23 17:26:08.495143 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-19 14:10:00 obsr916370 S21979912 Traveling P22 EBIRD 110.0 2.092 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323482046 2021-03-26 06:17:19.712573 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-23 12:00:00 obsr1379161 S23671917 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306960283 2021-04-01 10:47:08.851048 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-02 10:16:00 obsr1472872 S22644424 Traveling P22 EBIRD 120.0 11.265 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322512282 2021-03-30 19:13:38.458673 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--East Spit L256061 H 43.3107525 -77.7073288 2015-05-24 12:29:00 obsr1696616 S23610207 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309342966 2018-08-04 17:08:41 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Albany US-NY-001 13.0 Tivoli Lake Preserve L3480691 H 42.6707536 -73.7632259 2015-04-12 07:55:00 obsr2851090 S22816743 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312738432 2021-03-26 07:07:10.758746 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-25 09:25:00 obsr1958124 S23044409 Stationary P21 EBIRD 5.0 2.0 1 G1237334 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288136812 2021-03-26 06:29:56.44369 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 16 pinewood drive L1296508 P 43.314726 -77.9428589 2015-01-01 10:45:00 obsr920912 S21112109 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309117236 2021-04-01 12:32:15.282601 505 species avibase-C732CB10 American Black Duck Anas rubripes 18 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-11 07:00:00 obsr547602 S22801931 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298332120 2015-02-18 21:47:15 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 Female, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-02-15 13:09:00 obsr1548221 S21967512 Traveling P22 EBIRD 17.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309424785 2021-04-01 12:26:53.827486 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Albany US-NY-001 28.0 Alcove Reservoir L721888 H 42.4798202 -73.9378595 2015-04-12 09:25:00 obsr119187 S22821632 Stationary P21 EBIRD 8.0 3.0 1 G1215972 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311432367 2021-11-15 03:11:49.507437 32955 species avibase-41062654 Northern Parula Setophaga americana 10 United States US New York US-NY Rockland US-NY-087 30.0 Rockland Lake SP L283611 H 41.1468757 -73.9234741 2015-04-19 07:10:00 obsr1932005 S22956005 Traveling P22 EBIRD 80.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300854268 2021-03-24 20:23:39.258075 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-03 14:45:00 obsr1137265 S22168079 Rusty Blackbird Spring Migration Blitz P41 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312649719 2022-02-17 14:32:23.002448 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-24 16:00:00 obsr2448957 S23038349 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310593236 2021-03-23 17:22:05.708166 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 10 Unknown Sex, Adult (4); Male, Adult (4); Female, Adult (2) United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-04-16 06:30:00 obsr2694889 S22903188 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309484481 2015-04-12 18:11:59 26890 species avibase-94A44032 European Starling Sturnus vulgaris 9 United States US New York US-NY Richmond US-NY-085 30.0 Goethals Bridge Pond--Observation Platform L884460 H 40.6281787 -74.1741575 2015-04-12 07:45:00 obsr41879 S22825277 Stationary P21 EBIRD 25.0 6.0 1 G1216704 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298769863 2018-08-04 16:57:58 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-02-21 13:03:00 obsr1958124 S22005626 Traveling P22 EBIRD 40.0 0.483 4.0 1 G1155353 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316891219 2021-11-02 20:32:06.137153 7318 species avibase-C6772490 Yellow-crowned Night-Heron Nyctanassa violacea 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-07 12:15:00 obsr317968 S23288722 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306604511 2021-04-01 11:49:53.573686 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-03-29 obsr2976 S22618089 Historical P62 EBIRD 1 G1199899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312814598 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 07:25:00 obsr1807494 S23049099 Traveling P22 EBIRD 349.0 5.633 18.0 1 G1235092 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1040461380 2021-03-23 05:43:07.254933 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-08 obsr206269 S78338868 Incidental P20 EBIRD_PR 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314783920 2021-11-09 21:30:09.663073 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Ulster US-NY-111 28.0 Nyquist-Harcourt Wildlife Sanctuary L1412659 H 41.7555313 -74.091749 2015-04-30 16:15:00 obsr2700041 S23170488 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314930813 2021-03-19 16:02:45.308962 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton L194817 T 42.09868 -75.91794 2015-04-24 14:25:00 obsr2360934 S23178739 Traveling P22 EBIRD 60.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001761 2021-03-26 07:56:20.588749 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 9 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-29 16:00:00 obsr2218212 S23775945 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300505611 2021-11-14 08:08:43.2446 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-03-02 07:28:00 obsr2512689 S22142119 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS317816891 2018-08-04 17:15:26 27616 species avibase-D77E4B41 American Robin Turdus migratorius 45 United States US New York US-NY Jefferson US-NY-045 US-NY_759 13.0 El Dorado Beach Preserve L122943 H 43.8077665 -76.2342086 2015-05-09 06:05:00 obsr1558090 S23341254 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323585703 2018-08-06 22:31:18 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Delaware US-NY-025 28.0 Unadilla Boat Launch L2851791 H 42.3205196 -75.3233515 2015-05-28 09:00:00 obsr646560 S23679040 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290257573 2021-03-26 07:56:20.588749 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-10 14:39:00 obsr870166 S21285155 Traveling P22 EBIRD 85.0 0.805 2.0 1 G1103898 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311945398 2021-03-30 19:29:33.633096 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Suffolk US-NY-103 30.0 Chandler Estate L1355478 H 40.9559916 -73.0192018 2015-04-19 14:00:00 obsr2338506 S22990135 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307971096 2019-04-19 13:17:53 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 62 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-06 10:15:00 obsr1918430 S22717358 Stationary P21 EBIRD 20.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306174730 2021-11-09 21:35:18.646328 33030 issf avibase-BFE4314B Palm Warbler Setophaga palmarum Palm Warbler (Western) Setophaga palmarum palmarum 1 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-03-29 17:40:00 obsr2214649 S22584599 Traveling P22 EBIRD 15.0 0.805 2.0 1 G1197257 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299713987 2016-01-27 10:56:28 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Columbia US-NY-021 13.0 Stuyvesant, 13 Scism Road L3373770 P 42.3703 -73.77465 2015-02-26 14:16:00 obsr2279823 S22081232 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304122755 2021-04-01 12:25:32.91759 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 62 United States US New York US-NY Wyoming US-NY-121 28.0 Hwy 19 (Wyoming Co. segment) L3500182 P 42.687903 -78.1187439 2015-03-19 11:26:00 obsr1310178 S22428664 Traveling P22 EBIRD 30.0 45.062 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320876451 2021-04-01 11:30:42.037277 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-17 11:00:00 obsr1760429 S23511027 Traveling P22 EBIRD 362.0 0.322 2.0 1 G1280415 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310287648 2015-04-15 18:45:38 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Rensselaer US-NY-083 13.0 Staats Island Rd., Schodack L1019754 H 42.5719192 -73.7397194 2015-04-15 12:00:00 obsr2855945 S22881722 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288320357 2021-11-09 21:41:38.795423 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-01-01 08:00:00 obsr1588136 S21128031 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322366888 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 05:35:00 obsr150415 S23602098 Traveling P22 EBIRD 330.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290255838 2021-04-01 12:32:15.282601 341 species avibase-B86C504C Trumpeter Swan Cygnus buccinator 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-10 09:20:00 obsr1982614 S21285003 Traveling P22 EBIRD 70.0 0.499 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291636499 2021-03-26 06:29:56.44369 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-17 09:45:00 obsr1782363 S21396186 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303036614 2021-03-30 19:25:27.212017 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N 4 United States US New York US-NY Richmond US-NY-085 30.0 Cameron Lake L1441085 H 40.6004365 -74.0804102 2015-03-14 07:55:00 obsr1893950 S22343525 Traveling P22 EBIRD 10.0 0.322 2.0 1 G1178976 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307552862 2018-08-04 17:05:19 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Cortland US-NY-023 28.0 Yaman Park L1887040 H 42.6093841 -76.158183 2015-04-04 07:25:00 obsr931232 S22687459 Traveling P22 EBIRD 18.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312013218 2018-02-01 15:11:46 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Tompkins US-NY-109 13.0 AviTom46 L3513988 H 42.3988256 -76.6146648 2015-04-22 07:42:00 obsr2625207 S22994593 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340107300 2021-04-01 11:49:53.573686 483 species avibase-85625D75 Mallard Anas platyrhynchos 50 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-03-29 09:30:00 obsr294325 S24873712 Traveling P22 EBIRD 220.0 6.437 2.0 1 G1395743 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319950470 2021-11-15 03:06:58.889978 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 12:40:00 obsr516108 S23460829 Traveling P22 EBIRD 200.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304994086 2021-11-09 20:19:38.948671 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 4 United States US New York US-NY Orange US-NY-071 28.0 Euclid Avenue L6537484 P 41.4347477 -74.4307208 2015-03-22 09:00:00 obsr1544235 S22494531 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302568035 2021-03-30 19:37:33.521815 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 35 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Point L929415 P 43.2714248 -76.9817591 2015-03-11 15:30:00 obsr195058 S22307206 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307157118 2021-04-01 11:30:42.037277 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Strolling thru Central Park L3534703 P 40.7804196 -73.9677608 2015-04-03 10:00:00 obsr1275157 S22659312 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305142907 2021-03-23 17:32:20.03109 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 4 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson River Park (private) L3498350 H 43.2032416 -76.2825651 2015-03-24 17:08:00 obsr2224244 S22506264 Stationary P21 EBIRD 173.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301284065 2021-03-26 06:29:56.44369 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 1 United States US New York US-NY Monroe US-NY-055 13.0 Lehigh Valley Trail L3459960 P 43.0251354 -77.6301134 2015-03-06 16:45:00 obsr2223307 S22200270 Stationary P21 EBIRD 15.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS315479135 2021-03-26 06:29:56.44369 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-01 07:06:00 obsr334398 S23208469 Traveling P22 EBIRD 11.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303996750 2021-03-24 20:23:39.258075 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Suffolk US-NY-103 30.0 21 Kew Dr. (yard) L2379429 P 40.9582898 -72.9690624 2015-03-18 11:33:00 obsr758734 S22418586 Incidental P20 EBIRD 5.0 0 G1184877 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305827204 2015-03-28 17:18:32 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-03-28 07:30:00 obsr1958124 S22558786 Stationary P21 EBIRD 10.0 2.0 1 G1195302 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313193467 2021-04-01 10:57:06.520339 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-04-26 14:00:00 obsr2769235 S23071584 Traveling P22 EBIRD 101.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315115076 2021-03-26 07:53:57.664705 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 1 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-05-02 07:43:00 obsr1060479 S23188912 Stationary P21 EBIRD 700.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS649764361 2021-03-26 06:21:54.883933 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-17 10:35:00 obsr2519357 S47954514 Traveling P22 EBIRD 93.0 1.609 4.0 1 G1112437 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306137123 2021-11-09 18:45:27.180512 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Dutchess US-NY-027 28.0 Lakeside Park L3524113 P 41.5755973 -73.6043215 2015-03-29 17:30:00 obsr1058852 S22581723 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308980261 2021-11-09 21:05:39.574432 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Rockland US-NY-087 30.0 Reed Pond, Pfizer Campus L3457488 P 41.0781219 -74.0227246 2015-04-10 12:55:00 obsr2346161 S22792968 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296875679 2021-03-30 06:01:28.020715 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-14 12:05:00 obsr1633923 S21838038 Traveling P22 EBIRD 240.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317004305 2021-04-01 11:30:42.037277 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 1 S C2 S Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 15:30:00 obsr609516 S23295286 Traveling P22 EBIRD 246.0 2.414 3.0 1 G1256574 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311769837 2021-03-26 07:30:35.289997 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-18 09:46:00 obsr2683910 S22978510 Traveling P22 EBIRD 95.0 2.736 2.0 1 G1229843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316316909 2021-03-26 06:20:10.658048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Genesee US-NY-037 US-NY_2802 13.0 Linear Park, Bergen L2403261 H 43.0916679 -77.9697454 2015-05-05 15:33:00 obsr408487 S23256432 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS371745457 2022-03-08 13:50:22.901821 7261 species avibase-86D45B8F Green Heron Butorides virescens 2 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-02-27 16:00:00 obsr798918 S27370564 Traveling P22 EBIRD 55.0 4.023 4.0 1 G1592458 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316291545 2021-03-19 16:32:34.732091 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 07:30:00 obsr2363365 S23254906 Traveling P22 EBIRD 360.0 4.828 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301281105 2021-03-24 19:24:40.212356 483 species avibase-85625D75 Mallard Anas platyrhynchos N 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-03-06 12:00:00 obsr479109 S22200004 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303000843 2021-04-01 11:54:40.172593 447 species avibase-C235A4D7 Gadwall Mareca strepera N 20 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-03-13 14:15:00 obsr1032565 S22340442 Traveling P22 EBIRD 95.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297198655 2015-02-15 16:14:29 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 30 United States US New York US-NY Ontario US-NY-069 13.0 The Swamp L1660257 P 42.8848133 -77.0413991 2015-02-15 08:50:00 obsr572658 S21866656 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298638986 2021-03-26 08:14:57.071052 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 1 United States US New York US-NY Westchester US-NY-119 30.0 Oakbrook Rd Ossining NY L2583819 P 41.1751063 -73.8416836 2015-02-20 12:30:00 obsr1327349 S21993898 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296377502 2021-11-09 21:57:08.830059 6041 issf avibase-6D372C9F Willet Tringa semipalmata Willet (Eastern) Tringa semipalmata semipalmata 2 United States US New York US-NY Ulster US-NY-111 28.0 US-NY-Wallkill-70-72 Old Fort Rd L3356660 P 41.631764 -74.229258 2015-02-12 14:50:00 obsr2449954 S21792735 Traveling P22 EBIRD 74.0 0.644 2.0 1 G1144436 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323948897 2015-06-02 17:49:59 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Sour Springs Rd. (Genesee Co.) L153399 H 43.125275 -78.37028 2015-05-30 09:23:00 obsr1092576 S23705041 Traveling P22 EBIRD 25.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310636722 2021-03-23 17:37:19.520785 20829 species avibase-B9B272F4 Common Raven Corvus corax 100 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-16 18:00:00 obsr2699288 S22906074 Traveling P22 EBIRD 140.0 3.219 12.0 1 G1222819 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310016943 2021-03-26 07:20:31.408164 20829 species avibase-B9B272F4 Common Raven Corvus corax N 6 United States US New York US-NY Suffolk US-NY-103 30.0 Backyard L2676240 P 40.6918651 -73.3055341 2015-04-14 15:00:00 obsr1489009 S22863086 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318915441 2015-05-12 10:38:22 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-12 10:10:00 obsr195244 S23401851 Traveling P22 EBIRD 27.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312804095 2018-12-13 12:10:26 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-25 08:00:00 obsr646558 S23048582 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316511090 2021-04-01 11:30:42.037277 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 06:50:00 obsr145923 S23267057 Traveling P22 EBIRD 250.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288840019 2018-08-04 16:52:35 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 7 United States US New York US-NY Suffolk US-NY-103 30.0 Laurel Ave Road End L1053205 P 41.0796746 -72.4161673 2015-01-03 08:25:00 obsr2485753 S21172610 Stationary P21 EBIRD 9.0 2.0 1 G1100212 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317367728 2021-03-26 06:09:25.361188 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Broome US-NY-007 28.0 917 grant street L1861629 P 42.1114312 -76.0806034 2015-05-08 08:00:00 obsr1947568 S23315348 Stationary P21 EBIRD 360.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314470377 2022-03-05 22:03:50.715584 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-30 09:00:00 obsr1257003 S23151468 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295537274 2021-04-01 11:15:31.646886 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-02-07 13:00:00 obsr1137265 S21725095 Stationary P21 EBIRD 120.0 2.0 1 G1138958 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317859370 2021-04-01 12:32:15.282601 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-09 15:00:00 obsr547602 S23343531 Traveling P22 EBIRD 105.0 3.219 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313453522 2021-04-01 11:15:31.646886 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 07:30:00 obsr98313 S23088040 Traveling P22 EBIRD 240.0 4.828 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300210165 2021-03-26 07:00:33.333856 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 30 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-02-28 08:42:00 obsr1077730 S22120665 Traveling P22 EBIRD 109.0 3.0 13.0 1 G1162161 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307777226 2015-04-05 17:08:42 20829 species avibase-B9B272F4 Common Raven Corvus corax 25 United States US New York US-NY Tompkins US-NY-109 28.0 Websterk Home L1084526 P 42.4154016 -76.3545191 2015-03-14 11:10:00 obsr2261732 S22703189 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318954645 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-10 08:00:00 obsr442686 S23403895 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288771885 2021-12-23 12:03:28.93033 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Syracuse Airport L585802 H 43.1123833 -76.1141395 2015-01-02 12:30:00 obsr475807 S21164770 Stationary P21 EBIRD 20.0 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293903608 2021-03-24 19:42:42.07177 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-29 15:20:00 obsr1821546 S21594916 Traveling P22 EBIRD 135.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309830652 2021-03-23 16:30:20.514143 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 223 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 10:49:00 obsr2074043 S22850019 Stationary P21 EBIRD 299.0 5.0 1 G1218628 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS320473589 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-17 08:42:00 obsr1165633 S23488453 Traveling P22 EBIRD 86.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306106091 2021-11-09 19:51:09.255083 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-03-29 09:00:00 obsr186871 S22579363 Traveling P22 EBIRD 192.0 4.426 20.0 1 G1196795 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294066446 2021-03-24 20:58:53.646623 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-01-30 07:33:00 obsr72341 S21607827 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298964882 2017-02-26 13:09:20 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Suffolk US-NY-103 US-NY_2800 30.0 Napeague SP--Napeague Meadow Rd. L1832761 H 40.9955955 -72.0642866 2015-02-22 11:00:00 obsr2796494 S22021409 Incidental P20 EBIRD 11.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313611625 2021-04-01 12:35:52.669792 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--West Shore Trail, Maple Bay L985142 H 43.1081268 -76.2464261 2015-04-27 14:50:00 obsr968185 S23097674 Traveling P22 EBIRD 120.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295131797 2021-03-26 08:14:57.071052 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-02-04 07:30:00 obsr2918150 S21692659 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309954037 2021-03-23 16:30:20.514143 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 07:45:00 obsr1633923 S22858806 Stationary P21 EBIRD 720.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316310530 2021-03-26 07:51:35.34016 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 NY-417, Salamanca L3606890 P 42.159389 -78.74579 2015-05-02 12:35:00 obsr2919757 S23256037 Stationary P21 EBIRD 56.0 2.0 1 G1254117 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311452413 2021-03-26 07:07:10.758746 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-04-19 12:00:00 obsr155915 S22957204 Traveling P22 EBIRD 31.0 0.805 3.0 1 G1227501 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS851440733 2021-03-24 19:40:03.542262 6616 species avibase-7E022378 Common Loon Gavia immer 4 United States US New York US-NY Greene US-NY-039 13.0 Rt 9W & Plank Rd L10491099 P 42.3490399 -73.8403205 2015-05-03 15:00:00 obsr478499 S63401027 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314481859 2018-12-15 15:57:31 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 2 United States US New York US-NY Tompkins US-NY-109 28.0 Beezamer L2957441 P 42.3907709 -76.407305 2015-04-30 17:50:00 obsr140280 S23152204 Traveling P22 EBIRD 60.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303461760 2018-08-04 17:00:42 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-03-14 11:30:00 obsr317968 S22376791 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321662641 2021-04-01 10:57:06.520339 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-05-21 07:45:00 obsr265018 S23559094 Traveling P22 EBIRD 95.0 1.609 2.0 1 G1281504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304514320 2018-08-04 17:02:05 591 species avibase-1929E1E1 Canvasback Aythya valisineria 7 United States US New York US-NY Queens US-NY-081 30.0 Idlewild Park L2687800 H 40.6546016 -73.7547487 2015-03-20 11:21:00 obsr1982614 S22458462 Traveling P22 EBIRD 45.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317026992 2021-06-25 16:16:05.676603 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 16:15:00 obsr2448957 S23296587 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314478359 2021-03-24 20:58:53.646623 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-28 11:00:00 obsr72341 S23151990 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292492477 2021-03-24 20:58:53.646623 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-01-21 10:15:00 obsr72341 S21483257 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS328108459 2021-04-01 11:30:42.037277 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-20 15:30:00 obsr2182516 S23996250 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305679569 2021-04-01 12:14:19.266649 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Suffolk US-NY-103 30.0 Chandler Estate L1355478 H 40.9559916 -73.0192018 2015-03-27 16:00:00 obsr2338506 S22547897 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319077569 2021-03-23 17:23:45.772216 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3639002 P 42.693501 -77.711644 2015-05-12 17:44:00 obsr682121 S23411494 Stationary P21 EBIRD 116.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320339271 2015-05-16 21:23:05 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Arthur Ross Pinetum L826628 H 40.7835168 -73.9667 2015-05-16 17:50:00 obsr2277801 S23481308 Historical P62 EBIRD 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296293872 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 61 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-11 15:15:00 obsr924076 S21784727 Traveling P22 EBIRD 122.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289828608 2015-01-08 08:30:05 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 3 United States US New York US-NY Washington US-NY-115 13.0 Home L2804337 P 43.2550909 -73.5821857 2015-01-01 07:30:00 obsr2533499 S21249787 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324016271 2021-04-01 11:12:52.834774 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 4 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-05-30 07:10:00 obsr349211 S23708968 Traveling P22 EBIRD 170.0 1.609 6.0 1 G1296011 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309085917 2021-03-24 20:33:47.533911 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Haber Ithaca Apartment L2127426 P 42.4862687 -76.4751273 2015-04-11 12:50:00 obsr869999 S22800005 Stationary P21 EBIRD 25.0 2.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311303323 2021-04-01 11:30:42.037277 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-19 08:20:00 obsr139757 S22948013 Traveling P22 EBIRD 240.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295539841 2021-04-01 11:24:19.637193 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-02-07 07:35:00 obsr1782363 S21725270 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1194524582 2021-07-03 21:17:49.723513 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Orleans US-NY-073 13.0 Posson Rd., Medina L1474052 H 43.1612053 -78.3321027 2015-01-11 16:30:00 obsr2155450 S91204598 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314266607 2015-05-07 17:07:25 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-30 07:00:00 obsr455249 S23138928 Traveling P22 EBIRD 17.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312717918 2022-02-17 14:32:23.002448 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-24 13:36:00 obsr1152226 S23043057 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS627775791 2021-04-01 11:30:42.037277 636 species avibase-B77377EE Common Eider Somateria mollissima N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-12 07:30:00 obsr251507 S46307274 Traveling P22 EBIRD 240.0 3.219 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320241935 2021-03-26 06:39:43.334073 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Oven and The Point L1480317 H 40.7756262 -73.9700541 2015-05-16 09:30:00 obsr2317325 S23476315 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297498065 2021-03-26 07:53:57.664705 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Livingston US-NY-051 13.0 Groveland, NY L2623278 P 42.7113986 -77.7185619 2015-02-14 08:45:00 obsr1743566 S21893337 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308242423 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-07 07:03:00 obsr1711339 S22737726 Traveling P22 EBIRD 278.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309065982 2021-03-23 17:00:13.087107 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 7 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-11 09:20:00 obsr2307843 S22798814 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317444967 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-09 05:42:00 obsr1189028 S23320481 Traveling P22 EBIRD 84.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332448489 2021-03-26 06:29:56.44369 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-04-18 18:53:00 obsr334398 S24315888 Traveling P22 EBIRD 38.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309326081 2017-03-30 13:04:27 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 3 F C1 F United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Woodleton boardwalk (0.17km) L250377 P 42.47638 -76.44913 2015-04-12 07:48:00 obsr2307843 S22815703 Traveling P22 EBIRD 10.0 0.1 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310227139 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 32 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-15 10:15:00 obsr454647 S22877603 Traveling P22 EBIRD 195.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313757810 2021-11-09 18:56:49.988387 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 2 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies L428335 H 41.7861111 -73.7397222 2015-04-28 09:55:00 obsr2175245 S23107090 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296154566 2021-03-26 06:29:56.44369 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-11 16:05:00 obsr934639 S21773288 Traveling P22 EBIRD 40.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300068793 2021-12-03 21:50:44.732892 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus N 5 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-02-28 10:09:00 obsr1893950 S22108973 Traveling P22 EBIRD 8.0 0.644 2.0 1 G1161951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305221427 2015-03-27 21:35:27 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 400 United States US New York US-NY Tompkins US-NY-109 13.0 Lansing High School L3513705 P 42.5436666 -76.532886 2015-03-25 07:46:00 obsr1655171 S22512174 Incidental P20 EBIRD 2.0 0 G1194529 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312988180 2021-03-19 16:43:17.120646 7011 species avibase-534FB490 Northern Gannet Morus bassanus 1 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditchbank Auto tour L1001436 P 43.1068108 -75.7973814 2015-04-25 11:42:00 obsr2716320 S23059356 Traveling P22 EBIRD 120.0 9.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300099349 2021-04-01 11:49:53.573686 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 11 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-02-28 10:41:00 obsr1348614 S22111976 Traveling P22 EBIRD 147.0 4.0 13.0 1 G1162162 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296594113 2021-11-09 21:23:47.89824 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-13 13:30:00 obsr110238 S21812668 Stationary P21 EBIRD 25.0 3.0 1 G1145351 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307282934 2021-03-26 07:56:20.588749 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-04-03 17:00:00 obsr676630 S22668225 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317106059 2021-11-09 18:41:49.178307 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Dutchess US-NY-027 14.0 Harlem Valley Rail Trail - Sharon Station Rd to Rt 1, Amenia, NY L3103688 P 41.8794728 -73.5208619 2015-05-08 06:05:00 obsr2175245 S23301156 Traveling P22 EBIRD 120.0 1.609 2.0 1 G1257284 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319302723 2021-03-23 17:20:04.546757 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-05 09:00:00 obsr2475075 S23424085 Stationary P21 EBIRD 660.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298960400 2021-03-23 16:39:03.255227 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Richmond US-NY-085 30.0 Huguenot Ave. Beach L2035653 H 40.5200028 -74.1832461 2015-02-22 12:30:00 obsr1958124 S22021054 Stationary P21 EBIRD 6.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319108135 2015-05-12 20:57:08 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-11 11:45:00 obsr1885846 S23413233 Traveling P22 EBIRD 65.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308283804 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-07 11:00:00 obsr2448505 S22740567 Traveling P22 EBIRD 240.0 4.828 2.0 1 G1209984 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309859002 2021-03-26 06:39:43.334073 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-13 08:19:00 obsr1548221 S22851933 Traveling P22 EBIRD 23.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315301100 2015-05-06 21:35:58 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 5 United States US New York US-NY Franklin US-NY-033 13.0 US-NY-Hogansburg - 44.9944x-74.6739 L2992446 P 44.994457 -74.673792 2015-05-03 13:00:00 obsr2630526 S23199073 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292770677 2018-08-04 16:54:54 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-01-23 10:10:00 obsr1079517 S21505122 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296396762 2021-03-24 20:33:47.533911 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 12 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-02-13 09:58:00 obsr1655171 S21794784 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321210113 2018-08-06 22:29:30 6408 spuh avibase-E8FAD0BB Larus sp. Larus sp. 2 United States US New York US-NY Albany US-NY-001 13.0 Backyard L2686875 P 42.7188154 -74.1154861 2015-05-09 17:30:00 obsr1800473 S23531602 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288463114 2021-03-30 19:43:32.881136 406 species avibase-27B2749A Wood Duck Aix sponsa 1 Male, Adult (1) United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-01-02 08:00:00 obsr2924527 S21139471 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305258566 2021-11-09 21:30:09.663073 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 4 United States US New York US-NY Ulster US-NY-111 28.0 Nyquist-Harcourt Wildlife Sanctuary L1412659 H 41.7555313 -74.091749 2015-03-25 13:00:00 obsr1303376 S22515169 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302360240 2021-03-26 07:30:35.289997 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Eastern Heights dog walk L2954455 P 42.425232 -76.456589 2015-03-10 12:01:00 obsr1318356 S22291162 Traveling P22 EBIRD 17.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS518212859 2021-03-26 07:56:20.588749 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--median strip L3310253 H 40.5875594 -73.5588285 2015-02-28 14:30:00 obsr1325561 S38108827 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315645194 2021-03-26 07:20:31.408164 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 4 United States US New York US-NY Suffolk US-NY-103 US-NY_766 30.0 Caumsett State Park L1289051 P 40.9301152 -73.4676361 2015-04-25 09:00:00 obsr2934754 S23217604 Traveling P22 EBIRD 240.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322959575 2015-05-25 20:30:16 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Herkimer US-NY-043 US-NY_864 14.0 ALC - Gravel Pit L2878452 P 43.6402991 -74.9533653 2015-05-24 09:30:00 obsr2255732 S23637316 Traveling P22 EBIRD 30.0 0.644 2.0 1 G1289877 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310568632 2021-11-09 18:32:20.227374 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Dutchess US-NY-027 13.0 2122 New Hackensack Road, Poughkeepsie, New York, US (41.66, -73.874) L233101 P 41.6600962 -73.8740462 2015-04-16 12:15:00 obsr842638 S22901503 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323331189 2021-03-26 06:07:26.162322 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 Unknown Sex, Adult (1) United States US New York US-NY Allegany US-NY-003 28.0 5541 Jericho Hill Rd L2230290 P 42.2385979 -77.7931671 2015-05-25 08:45:00 obsr2911979 S23661707 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305687639 2015-03-27 21:14:26 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 8 United States US New York US-NY Suffolk US-NY-103 30.0 Wading River Beach L3366140 P 40.9664999 -72.8528309 2015-03-26 12:25:00 obsr1954215 S22548469 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290465259 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 25 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-11 09:50:00 obsr1668936 S21301695 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294211933 2021-03-19 16:06:54.047432 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-01-31 12:10:00 obsr1655171 S21619012 Traveling P22 EBIRD 5.0 1.127 2.0 1 G1131439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551752 2015-02-27 12:13:53 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 12 United States US New York US-NY Kings US-NY-047 Coney Island Creek Park L614792 H 40.5813224 -74.0052688 2015-01-02 09:40:00 obsr1711339 S21147098 Traveling P22 EBIRD 76.0 2.816 2.0 1 G1091365 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295162935 2015-05-07 17:02:31 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-02-06 07:37:00 obsr455249 S21694835 Traveling P22 EBIRD 8.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296640155 2021-03-26 07:56:20.588749 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 6 United States US New York US-NY Nassau US-NY-059 30.0 Home L3365248 P 40.6889406 -73.6621338 2015-02-14 07:00:00 obsr1618103 S21816494 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294322929 2015-02-01 10:14:43 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Oswego US-NY-075 13.0 Home, 27 Regan Drive L1538052 P 43.3788468 -76.545824 2015-01-18 09:00:00 obsr1769635 S21627895 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307065135 2021-03-26 06:59:15.841579 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana N 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-02 09:44:00 obsr2756208 S22652588 Traveling P22 EBIRD 428.0 0.08 5.0 1 G1202058 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299178543 2018-08-04 16:58:07 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-02-23 10:59:00 obsr502830 S22040441 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314804819 2021-03-23 17:22:05.708166 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 4 United States US New York US-NY Herkimer US-NY-043 13.0 Saltsman Road L677810 P 43.0091035 -74.7420502 2015-05-01 11:59:00 obsr316199 S23171729 Traveling P22 EBIRD 39.0 2.414 3.0 1 G1246629 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311263786 2021-03-19 16:19:20.977326 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 5 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-19 08:20:00 obsr502830 S22945643 Traveling P22 EBIRD 245.0 2.414 3.0 1 G1226244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314165227 2021-03-26 06:55:00.227271 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-29 19:03:00 obsr606693 S23132439 Traveling P22 EBIRD 10.0 0.563 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311302474 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-19 09:45:00 obsr1731572 S22947968 Traveling P22 EBIRD 80.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298635073 2021-04-01 12:32:15.282601 11371 species avibase-75600969 Northern Flicker Colaptes auratus N 6 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-20 14:35:00 obsr2902954 S21993598 Traveling P22 EBIRD 40.0 1.609 2.0 1 G1154238 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309048467 2021-03-26 07:30:35.289997 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-04-11 10:44:00 obsr2937317 S22797763 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320077510 2021-11-09 17:58:40.313796 636 species avibase-B77377EE Common Eider Somateria mollissima 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-16 06:25:00 obsr481595 S23468094 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310136 2021-04-01 11:30:42.037277 406 species avibase-27B2749A Wood Duck Aix sponsa N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-16 14:40:00 obsr2105033 S21370333 Traveling P22 EBIRD 75.0 3.541 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587970 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-27 15:15:00 obsr2906952 S21569989 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311255615 2021-03-26 06:29:56.44369 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-04-19 09:50:00 obsr934639 S22945146 Traveling P22 EBIRD 199.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322170029 2022-01-01 15:48:16.226995 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Nassau US-NY-059 30.0 428F House Area L1065546 P 40.8524945 -73.4621347 2015-05-23 10:30:00 obsr2423982 S23591133 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310645322 2021-11-09 21:30:58.952293 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 2 United States US New York US-NY Ulster US-NY-111 13.0 Esopus Bend Nature Preserve L1422709 H 42.069482 -73.9586939 2015-04-17 10:10:00 obsr118701 S22906617 Traveling P22 EBIRD 123.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291486878 2021-03-24 19:20:44.053843 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Broome US-NY-007 28.0 Kirkwood Backyard L518236 P 42.0855596 -75.7881171 2015-01-16 08:32:00 obsr1720232 S21384373 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319881232 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-15 09:56:00 obsr2802585 S23457123 Traveling P22 EBIRD 230.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321581591 2021-03-26 06:39:43.334073 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea N 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-19 07:30:00 obsr1706920 S23554092 Traveling P22 EBIRD 70.0 0.161 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313491137 2021-03-26 06:29:56.44369 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-04-27 09:23:00 obsr934639 S23090284 Traveling P22 EBIRD 135.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309830784 2021-03-26 07:30:35.289997 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-11 08:43:00 obsr711169 S22850028 Stationary P21 EBIRD 30.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313836193 2021-04-01 11:30:42.037277 526 species avibase-56CCA717 Northern Pintail Anas acuta 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 12:45:00 obsr2883698 S23112031 Traveling P22 EBIRD 50.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315877812 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis N 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-05-04 14:57:00 obsr934639 S23230279 Traveling P22 EBIRD 124.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316899439 2021-11-15 03:06:58.889978 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-07 13:20:00 obsr1889800 S23289118 Traveling P22 EBIRD 82.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293251696 2021-03-26 06:29:56.44369 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 18 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-01-25 09:19:00 obsr2595828 S21542904 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313825260 2021-03-26 07:56:20.588749 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-28 09:40:00 obsr2505956 S23111383 Rusty Blackbird Spring Migration Blitz P41 EBIRD 180.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309030374 2018-08-04 17:08:23 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Tompkins US-NY-109 13.0 CLO--MJI office L3169590 P 42.479886 -76.451218 2015-04-10 16:30:00 obsr1318356 S22796551 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312770203 2018-08-04 17:12:06 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 3 United States US New York US-NY Clinton US-NY-019 13.0 Point Au Roche SP L488947 H 44.7750114 -73.395195 2015-04-25 08:45:00 obsr1186840 S23046439 Traveling P22 EBIRD 135.0 2.575 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322143100 2021-11-15 03:06:58.889978 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-21 05:45:00 obsr34333 S23589621 Traveling P22 EBIRD 255.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089184 2021-03-23 17:00:13.087107 279 species avibase-3E04020B Brant Branta bernicla X United States US New York US-NY Tompkins US-NY-109 13.0 845 Taughannock Blvd L3301517 P 42.4635812 -76.5241528 2015-01-18 08:45:00 obsr2255296 S21431070 Stationary P21 EBIRD 70.0 7.0 1 G1114093 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308633905 2021-03-24 20:53:39.352228 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-04-08 obsr1591201 S22767179 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310149906 2018-08-04 17:09:05 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Oswego US-NY-075 US-NY_768 13.0 Three Mile Bay WMA--Phillips Pt. L298675 H 43.2392316 -76.0503864 2015-04-14 06:05:00 obsr979921 S22872440 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS432194150 2016-09-25 19:40:06 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-04-25 obsr2326876 S31756426 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295425541 2021-11-09 18:28:50.133002 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Dutchess US-NY-027 13.0 Home, Millbrook, NY L2119013 P 41.7923452 -73.6592703 2015-02-04 06:45:00 obsr1062217 S21715968 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320500375 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-17 06:15:00 obsr1135516 S23489896 Traveling P22 EBIRD 315.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310420691 2021-11-09 19:51:09.255083 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 12 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-04-15 08:30:00 obsr2273061 S22890984 Traveling P22 EBIRD 180.0 4.828 17.0 1 G1221890 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319339874 2018-07-09 13:20:06 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Panama Rocks Scenic Park L7686395 H 42.072845 -79.488153 2015-05-13 09:45:00 obsr2816437 S23426133 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308560918 2021-12-27 21:06:26.931657 7429 species avibase-1327AC55 Osprey Pandion haliaetus 2 United States US New York US-NY St. Lawrence US-NY-089 US-NY_775 13.0 Upper & Lower Lakes WMA--Observation Tower (Hwy. 15) L270474 H 44.5796495 -75.3091865 2015-04-08 15:48:00 obsr1558090 S22761871 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304462733 2021-11-15 03:06:58.889978 30494 species avibase-240E3390 House Sparrow Passer domesticus 13 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-21 10:50:00 obsr2635084 S22454513 Traveling P22 EBIRD 60.0 0.966 3.0 1 G1187572 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306540748 2021-03-30 19:13:38.458673 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-31 11:00:00 obsr2504709 S22612859 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299817406 2021-04-01 11:54:40.172593 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-27 07:33:00 obsr1958124 S22089427 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303351170 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 30.0 Sheepshead Bay L835012 H 40.582363 -73.9434105 2015-03-15 15:15:00 obsr2448957 S22368155 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305392391 2021-03-26 07:30:35.289997 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-03-26 09:00:00 obsr71667 S22525655 Traveling P22 EBIRD 30.0 0.161 9.0 1 G1192888 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298175964 2021-03-22 09:17:32.016297 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Oneida US-NY-065 13.0 Whitestown L210157 P 43.17351 -75.4187135 2015-02-14 obsr1384380 S21953969 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289085887 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-04 13:20:00 obsr2105033 S21191707 Traveling P22 EBIRD 170.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308068088 2021-03-24 20:33:47.533911 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 Female, Adult (1); Male, Adult (9) United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-06 16:00:00 obsr1006348 S22723896 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322830911 2021-03-26 07:20:31.408164 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-21 17:06:00 obsr1319071 S23629133 Traveling P22 EBIRD 50.0 0.998 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS296387084 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Monroe US-NY-055 13.0 Buck Pond Area L3351454 P 43.2711905 -77.6775429 2015-02-13 08:00:00 obsr199444 S21793664 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302421695 2021-04-01 10:57:06.520339 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-03-11 08:53:00 obsr2420101 S22295828 Traveling P22 EBIRD 49.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291571090 2021-03-19 16:44:35.607263 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 15 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-01-17 15:30:00 obsr1561508 S21391000 Traveling P22 EBIRD 45.0 3.219 2.0 1 G1112901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310165690 2021-04-01 12:35:52.669792 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 1 United States US New York US-NY Onondaga US-NY-067 13.0 Skaneateles Lake, North Village Parks L276075 H 42.945145 -76.4294109 2015-04-15 05:55:00 obsr2279567 S22873614 Stationary P21 EBIRD 99.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307710721 2018-08-04 17:05:35 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Ontario US-NY-069 13.0 outhouse park L3540427 P 42.8926616 -77.305963 2015-04-05 10:30:00 obsr2979658 S22698247 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306833138 2021-03-23 17:23:45.772216 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Livingston US-NY-051 US-NY_1760 13.0 Geneseo Airfield L1013934 P 42.8582181 -77.8131178 2015-04-01 19:23:00 obsr72341 S22634996 Traveling P22 EBIRD 13.0 2.253 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315990545 2021-03-23 17:00:13.087107 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 8 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-30 08:25:00 obsr881968 S23236829 Traveling P22 EBIRD 81.0 0.805 4.0 1 G1252602 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294552780 2021-03-26 07:00:33.333856 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Queens US-NY-081 30.0 US-NY-59-14 Grove St L3334192 P 40.709069 -73.903718 2015-02-02 11:00:00 obsr2691134 S21646038 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313215373 2021-03-30 19:07:52.958398 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 06:28:00 obsr931103 S23072820 Traveling P22 EBIRD 30.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311409627 2021-04-01 12:32:15.282601 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-19 09:00:00 obsr916370 S22954589 Traveling P22 EBIRD 220.0 7.081 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309668216 2015-04-13 09:13:14 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Monroe US-NY-055 13.0 29 Crystal Springs Ln. L3323530 P 43.0936799 -77.4668587 2015-04-12 15:00:00 obsr2755965 S22837587 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320272049 2018-08-06 22:30:07 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-16 08:45:00 obsr979921 S23477805 Traveling P22 EBIRD 50.0 0.644 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308523738 2021-04-01 11:54:40.172593 447 species avibase-C235A4D7 Gadwall Mareca strepera 5 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-08 07:22:00 obsr396989 S22758930 Traveling P22 EBIRD_NJ 395.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291264342 2020-07-20 09:16:51 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-01-16 10:00:00 obsr660214 S21366418 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317489959 2018-08-06 22:29:23 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 John Boyd Thacher SP--Beaver Dam Road Trail L3630909 H 42.6363582 -74.0147853 2015-05-09 07:35:00 obsr777630 S23323666 Traveling P22 EBIRD 95.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297733954 2021-11-09 22:04:47.967972 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-14 07:30:00 obsr1336375 S21915350 Traveling P22 EBIRD 540.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324198133 2021-04-01 11:47:43.260314 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-04-19 06:15:00 obsr2409011 S23720565 Stationary P21 EBIRD 165.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292000484 2022-01-20 13:44:29.539827 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 60 United States US New York US-NY Seneca US-NY-099 US-NY_803 13.0 Geneva Lakefront Park, birds over water ONLY (Seneca Co.) L360643 H 42.8659781 -76.9714307 2015-01-19 15:25:00 obsr1655171 S21423742 Stationary P21 EBIRD 34.0 2.0 1 G1116492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320856668 2021-11-09 18:37:59.640362 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Dutchess US-NY-027 28.0 Cooperstown Rd L2829093 P 41.68776 -73.61404 2015-05-16 05:00:00 obsr2343626 S23509936 Traveling P22 EBIRD 30.0 1.609 2.0 1 G1277160 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317073723 2021-03-26 06:29:56.44369 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-07 05:23:00 obsr2595828 S23299311 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313456293 2015-04-27 09:41:06 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 20 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-26 09:30:00 obsr2581104 S23088232 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308929498 2021-04-01 11:30:42.037277 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-08 07:15:00 obsr756196 S22789550 Traveling P22 EBIRD 127.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291481924 2022-02-17 14:32:23.002448 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-17 11:15:00 obsr454647 S21383953 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308071820 2015-04-06 18:30:56 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Oneida US-NY-065 13.0 Schneibles, South Bay, Oneida Lake L3529803 P 43.1649505 -75.7373106 2015-04-06 15:05:00 obsr666964 S22724179 Traveling P22 EBIRD 31.0 2.414 1.0 1 G1208659 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508848 2021-04-01 12:26:53.827486 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 5 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr1154 S21386137 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290875682 2021-03-30 19:29:33.633096 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 55 United States US New York US-NY Suffolk US-NY-103 30.0 Avalon Gardens and East Farm Preserve L525770 H 40.9118667 -73.1454921 2015-01-13 15:34:00 obsr1228860 S21334839 Traveling P22 EBIRD 55.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309227191 2021-03-26 07:16:36.956617 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 8 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-10 11:00:00 obsr281585 S22793238 Traveling P22 EBIRD 135.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303560467 2015-03-16 18:51:05 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-03-16 17:20:00 obsr1764243 S22384951 Stationary P21 EBIRD 19.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321809386 2021-03-26 06:19:47.07548 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Essex US-NY-031 13.0 Lower La Chute River & Ticonderoga Marsh L4910422 H 43.8448239 -73.4016323 2015-05-21 15:44:00 obsr2420101 S23568047 Traveling P22 EBIRD 104.0 6.437 3.0 1 G1282463 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288717257 2015-01-03 14:46:19 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk L3260801 P 42.578847 -73.868167 2015-01-03 11:39:00 obsr2214649 S21160443 Traveling P22 EBIRD 14.0 6.437 2.0 1 G1093024 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302496075 2015-09-13 11:57:51 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-03-11 10:15:00 obsr1079517 S22301204 Area P23 EBIRD 35.0 32.3749 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS345663554 2018-08-27 14:06:47 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Tompkins US-NY-109 28.0 Shindagin Hollow SF--Shindagin Hollow Rd. L2233053 H 42.3338153 -76.3400674 2015-04-23 06:00:00 obsr2130551 S25265295 Traveling P22 EBIRD 145.0 2.414 4.0 1 G1239595 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313248289 2022-03-05 22:03:50.715584 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-26 09:30:00 obsr1544235 S23074754 Traveling P22 EBIRD 240.0 9.656 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313878189 2015-04-28 18:59:29 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-04-28 08:05:00 obsr2426404 S23114825 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309079874 2021-11-09 18:17:17.335499 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Dutchess US-NY-027 13.0 Strever Farm Road, Pine Plains L1363519 H 41.9457427 -73.6491438 2015-04-11 06:35:00 obsr1433400 S22799649 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307895633 2018-08-04 17:05:36 5561 species avibase-E196D6F9 Sandhill Crane Antigone canadensis 1 Male, Adult (1) United States US New York US-NY Saratoga US-NY-091 13.0 Hudson Crossing Park L1476458 H 43.1155261 -73.577908 2015-04-05 12:46:00 obsr1222746 S22712032 Rusty Blackbird Spring Migration Blitz P41 EBIRD 67.0 0.483 2.0 1 G1207228 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320657732 2021-04-01 11:15:31.646886 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-17 08:28:00 obsr1189028 S23498198 Traveling P22 EBIRD 256.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308502679 2021-11-09 22:37:59.030687 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Main Boat Launch, Bashakill L1742095 P 41.5168244 -74.5381774 2015-04-07 17:25:00 obsr1788273 S22757354 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS404631846 2016-05-18 14:42:26 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-15 10:00:00 obsr943652 S29758048 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311305679 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 11:36:00 obsr150415 S22948149 Traveling P22 EBIRD 183.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294190742 2015-01-31 17:01:50 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Monroe US-NY-055 13.0 Mill Seat Landfill L3279893 P 43.0631189 -77.9339755 2015-01-31 12:55:00 obsr2504709 S21617384 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310450532 2021-03-30 19:29:33.633096 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-16 07:45:00 obsr247620 S22892905 Traveling P22 EBIRD 105.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293994081 2018-08-04 16:55:26 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-30 10:47:00 obsr1655171 S21601836 Stationary P21 EBIRD 4.0 2.0 1 G1131420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307365650 2019-04-15 16:01:04 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Chemung US-NY-015 28.0 Sperr Memorial Park L7578475 H 42.1465676 -76.9144776 2015-04-04 08:45:00 obsr256142 S22674454 Stationary P21 EBIRD 22.0 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312318993 2021-03-26 07:20:31.408164 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Suffolk US-NY-103 US-NY_2800 Napeague Harbor L283128 H 41.0084776 -72.0499114 2015-04-23 13:00:00 obsr369788 S23014833 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS360466826 2015-12-22 10:05:03 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Broome US-NY-007 28.0 Parsons Rd. L1497949 H 42.2404567 -75.8516071 2015-05-16 15:45:00 obsr998593 S26406694 Stationary P21 EBIRD 15.0 2.0 1 G1508876 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302889804 2021-04-01 11:43:48.927316 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Huff Rd to Reed Rd L3485264 P 42.7987587 -77.5729561 2015-03-13 14:10:00 obsr39511 S22331346 Traveling P22 EBIRD 70.0 2.012 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317518270 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 10:30:00 obsr2976 S23325130 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322912376 2021-03-19 16:29:59.503892 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 2 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-25 17:40:00 obsr1302604 S23634141 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319005260 2021-04-01 10:47:08.851048 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Broome US-NY-007 28.0 Murphy's Gravel Pit L1167821 P 42.1038265 -75.9965515 2015-05-12 10:30:00 obsr1826325 S23406810 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322035973 2021-03-19 16:06:54.047432 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-05-22 obsr1395007 S23582875 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300484573 2018-08-04 16:58:34 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 12 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, Onanda Park L797628 H 42.7821102 -77.3136878 2015-03-02 09:16:00 obsr749440 S22140595 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300111235 2018-08-04 16:58:25 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven National Laboratory (restricted access) L2808445 H 40.8710034 -72.880066 2015-02-28 11:10:00 obsr1954215 S22112985 Traveling P22 EBIRD 65.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314931739 2015-05-02 13:38:30 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Columbia US-NY-021 14.0 Drowned Lands Swamp Conservation Area L2704928 H 42.0536902 -73.5669422 2015-05-02 07:05:00 obsr798742 S23178782 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316073388 2021-03-26 06:21:54.883933 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Kings US-NY-047 Shore Road Park L616218 H 40.6220738 -74.0406629 2015-05-05 09:30:00 obsr2078092 S23241842 Traveling P22 EBIRD 30.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301571142 2021-04-07 20:52:30.160645 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Mays Point Pool and road L99392 H 42.9946205 -76.7637599 2015-03-07 14:35:00 obsr184660 S22222735 Traveling P22 EBIRD 9.0 0.805 4.0 1 G1168921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296570365 2021-03-26 07:07:10.758746 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-02-12 14:17:00 obsr1893950 S21810590 Stationary P21 EBIRD 136.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306676197 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 20 United States US New York US-NY Kings US-NY-047 30.0 Dyker Beach Park L1044216 H 40.6123885 -74.0192327 2015-04-01 07:39:00 obsr1189028 S22623478 Traveling P22 EBIRD 38.0 1.046 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323949457 2019-10-05 18:11:27 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Headquarters L153039 H 43.112325 -78.4048443 2015-05-30 10:16:00 obsr1092576 S23705070 Traveling P22 EBIRD 9.0 0.193 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309712482 2015-04-13 12:15:21 649 species avibase-624078BA Surf Scoter Melanitta perspicillata X United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-04-12 18:00:00 obsr2284947 S22841192 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312058538 2022-03-05 22:03:50.715584 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-22 08:50:00 obsr2219590 S22997498 Traveling P22 EBIRD 150.0 4.361 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311784201 2021-03-26 07:30:35.289997 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Tompkins US-NY-109 13.0 Newman Municipal Golf Course L2158758 H 42.4561318 -76.5052153 2015-04-21 08:22:00 obsr1655171 S22979422 Traveling P22 EBIRD 29.0 0.805 2.0 1 G1230729 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298942862 2021-03-26 07:56:20.588749 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Nassau US-NY-059 30.0 Nassau Street, Bellmore L1925703 P 40.6639892 -73.5328567 2015-01-24 obsr902950 S22019710 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314506684 2015-04-30 23:21:00 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Monroe US-NY-055 13.0 Lake Ave. / Maplewood Dr. L2573631 P 43.2024934 -77.6275384 2015-04-30 12:40:00 obsr1545618 S23153739 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309060993 2021-11-09 21:50:48.44865 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-11 08:00:00 obsr915089 S22798525 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314491018 2021-12-03 21:50:44.732892 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-04-30 18:20:00 obsr979921 S23152781 Traveling P22 EBIRD 60.0 3.219 2.0 1 G1245131 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310427526 2021-04-01 10:47:08.851048 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Broome US-NY-007 28.0 Murphy's Gravel Pit L1167821 P 42.1038265 -75.9965515 2015-04-16 09:30:00 obsr1826325 S22891444 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320270203 2021-12-24 11:02:14.483178 649 species avibase-624078BA Surf Scoter Melanitta perspicillata X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-16 07:25:00 obsr979921 S23477712 Traveling P22 EBIRD 75.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323020939 2021-03-26 07:46:52.994574 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-05-20 10:27:00 obsr2309457 S23641189 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320119564 2015-05-16 11:38:04 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 3 United States US New York US-NY Franklin US-NY-033 14.0 Gabriels, Burt La Fountain Road L3647065 P 44.4319 -74.18408 2015-05-16 10:17:00 obsr1154 S23470164 Traveling P22 EBIRD 81.0 0.805 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307365664 2021-03-26 07:00:33.333856 32955 species avibase-41062654 Northern Parula Setophaga americana 1 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-04-04 08:23:00 obsr2574755 S22674455 Traveling P22 EBIRD 43.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307811203 2021-03-23 16:48:08.60516 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-02 12:40:00 obsr1783124 S22705526 Stationary P21 EBIRD 40.0 2.0 1 G1206132 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289715068 2015-01-07 16:03:11 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 10 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 Mashomack Preserve L122936 H 41.0562576 -72.2896713 2015-01-07 15:50:00 obsr613775 S21240650 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319944828 2021-03-26 06:20:10.658048 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 12 United States US New York US-NY Genesee US-NY-037 13.0 Francis Road, Batavia, NY L1421017 P 42.9423971 -78.1622197 2015-05-15 09:00:00 obsr393804 S23460484 Traveling P22 EBIRD 170.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603301 2021-04-01 10:45:00.916278 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr979921 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313484869 2021-03-23 17:18:00.959502 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-04-27 09:28:00 obsr2321296 S23089929 Traveling P22 EBIRD 65.0 1.77 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307159254 2015-04-03 13:06:34 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6641-6669 Hylan Blvd L3534320 P 40.508449 -74.225343 2015-04-03 09:03:00 obsr155915 S22659465 Stationary P21 EBIRD 5.0 2.0 1 G1202541 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313171514 2021-04-01 12:32:15.282601 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus X United States US New York US-NY Nassau US-NY-059 US-NY_872 30.0 Muttontown Preserve L250511 H 40.8315708 -73.5416646 2015-04-26 12:30:00 obsr2207991 S23070266 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302993336 2021-03-19 16:19:20.977326 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2146060 H 42.756017 -78.862009 2015-03-13 10:13:00 obsr916033 S22331115 Stationary P21 EBIRD 216.0 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310881592 2021-03-19 16:19:20.977326 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-04-18 10:20:00 obsr1079517 S22922150 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299084628 2021-03-24 21:10:11.310781 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-02-15 15:00:00 obsr1664745 S22033370 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314050776 2015-04-29 12:51:59 32869 species avibase-D204A930 Tennessee Warbler Leiothlypis peregrina 4 United States US New York US-NY Westchester US-NY-119 30.0 Backyard L1243032 P 41.1702553 -73.8428879 2015-04-28 15:30:00 obsr1540211 S23125473 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304961121 2021-04-01 11:30:42.037277 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-03-22 14:00:00 obsr2072398 S22491942 Traveling P22 EBIRD 15.0 0.402 2.0 1 G1190690 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307102439 2021-03-26 06:39:43.334073 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Great Lawn L593577 H 40.7814351 -73.9665967 2015-04-03 08:05:00 obsr1175815 S22655317 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307422988 2018-08-04 17:05:23 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-04-04 11:09:00 obsr1792012 S22678510 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293398041 2021-03-30 19:43:32.881136 27616 species avibase-D77E4B41 American Robin Turdus migratorius 10 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-01-23 14:48:00 obsr2196583 S21554768 Traveling P22 EBIRD 110.0 2.414 3.0 1 G1120994 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321247712 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-19 12:00:00 obsr2706811 S23533873 Traveling P22 EBIRD 120.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311226236 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 09:10:00 obsr2152799 S22943327 Traveling P22 EBIRD 193.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311775106 2021-03-23 16:30:20.514143 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 7 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-20 10:45:00 obsr979921 S22978853 Stationary P21 EBIRD 375.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291441385 2021-03-26 08:14:57.071052 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Westchester US-NY-119 30.0 Wilton L963070 P 41.0891766 -73.8526082 2015-01-03 08:30:00 obsr1538953 S21380725 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292539156 2021-03-24 20:33:47.533911 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 3 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Ecology House L550854 H 42.4584285 -76.4832383 2015-01-21 13:20:00 obsr2673845 S21486984 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323412230 2016-09-12 10:28:02 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-22 10:30:00 obsr2475075 S23667088 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312014009 2021-04-01 11:15:31.646886 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Kings US-NY-047 30.0 Brooklyn Botanic Garden L297912 H 40.6680222 -73.96367 2015-04-19 14:00:00 obsr1734972 S22994649 Traveling P22 EBIRD 120.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318259610 2021-03-26 06:29:56.44369 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 20 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 WS+MBP+DEC L3631915 P 43.3198077 -77.7154183 2015-05-10 07:50:00 obsr2504709 S23365030 Traveling P22 EBIRD 130.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312550009 2021-11-09 19:50:09.785432 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Orange US-NY-071 US-NY_853 28.0 Harriman SP--Elk Pen L2894323 H 41.2643558 -74.1534012 2015-04-24 09:00:00 obsr2346161 S23031199 Traveling P22 EBIRD 105.0 2.414 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310650006 2021-03-22 09:15:15.32301 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Niagara US-NY-063 13.0 Greenwood Cemetery (Niagara Co.) L787363 H 43.3115262 -78.8345487 2015-04-17 08:15:00 obsr2756208 S22906895 Traveling P22 EBIRD 56.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317462092 2021-03-19 16:02:45.308962 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-05-09 09:30:00 obsr646558 S23321441 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289936854 2021-03-24 20:23:39.258075 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Suffolk US-NY-103 US-NY_839 Sage Blvd., Greenport L1356338 P 41.0793915 -72.3806858 2015-01-01 09:55:00 obsr2528068 S21258773 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306612002 2021-03-24 21:06:05.39641 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson River Park (private) L3498350 H 43.2032416 -76.2825651 2015-03-31 16:34:00 obsr2224244 S22618671 Stationary P21 EBIRD 208.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310578797 2015-04-17 00:40:10 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 18 United States US New York US-NY Herkimer US-NY-043 13.0 Milky Way Farm Pond & Vicinity L681238 P 43.1062939 -74.8197913 2015-04-14 14:00:00 obsr1000124 S22902185 Incidental P20 EBIRD 0 G1222519 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307663281 2021-03-30 19:22:51.561415 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 5 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-05 08:43:00 obsr2574755 S22695118 Traveling P22 EBIRD 85.0 2.092 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307240081 2021-11-09 18:58:19.805596 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Dutchess US-NY-027 13.0 Mills-Norrie SP--Norrie Point L450314 H 41.8326889 -73.9417694 2015-03-30 17:00:00 obsr1062217 S22665209 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290369278 2021-03-30 19:43:32.881136 406 species avibase-27B2749A Wood Duck Aix sponsa 8 United States US New York US-NY Westchester US-NY-119 30.0 Deans Bridge, North Salem L2152201 H 41.3368943 -73.6588245 2015-01-09 08:00:00 obsr2078798 S21293984 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309966492 2015-10-05 23:52:16 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Madison US-NY-053 28.0 Madison St. Impoundment L461279 H 42.8382445 -75.5422497 2015-04-14 10:40:00 obsr2843748 S22859643 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317002782 2018-08-04 17:15:13 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis X United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-07 17:25:00 obsr2769235 S23295215 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322323344 2021-04-01 11:14:02.420281 5962 species avibase-4A3B2CFF Short-billed Dowitcher Limnodromus griseus 3 United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum L467369 H 44.0669903 -75.7229233 2015-05-23 07:00:00 obsr790491 S23599457 Traveling P22 EBIRD 420.0 24.14 2.0 1 G1303491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310160697 2018-08-04 17:09:12 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 4 United States US New York US-NY Albany US-NY-001 28.0 Knox Wetland L1573369 H 42.6716667 -74.1275414 2015-04-14 18:55:00 obsr1800473 S22873281 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324566030 2021-03-26 06:52:34.887371 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-04-19 10:00:00 obsr2141910 S23744937 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304392820 2021-03-23 17:18:00.959502 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 55 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-03-20 12:23:00 obsr1708031 S22449576 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302000009 2021-03-23 17:41:09.545385 26890 species avibase-94A44032 European Starling Sturnus vulgaris 14 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-03-09 08:15:00 obsr206659 S22256203 Traveling P22 EBIRD 180.0 3.219 12.0 1 G1172167 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297804477 2021-04-01 12:14:19.266649 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 17 United States US New York US-NY Suffolk US-NY-103 30.0 Cenetereach Mall L3372020 P 40.8626876 -73.0818869 2015-02-16 13:30:00 obsr2958873 S21922043 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310945024 2020-06-20 20:01:51 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 2 United States US New York US-NY Chenango US-NY-017 US-NY_2780 28.0 Long Pond SF--Rt. 41 fishing access L3074026 H 42.422518 -75.851062 2015-04-18 08:51:00 obsr2211210 S22925964 Traveling P22 EBIRD 15.0 0.322 2.0 1 G1224241 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295313590 2021-03-26 07:07:10.758746 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-07 07:10:00 obsr1958124 S21706889 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313601652 2018-08-04 17:12:33 3543 species avibase-8D3E8871 Chuck-will's-widow Antrostomus carolinensis 4 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-27 17:09:00 obsr1764243 S23097088 Traveling P22 EBIRD 63.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522852 2015-04-08 18:13:49 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-04-08 09:51:00 obsr155915 S22758869 Stationary P21 EBIRD 10.0 2.0 1 G1211600 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288102110 2022-01-09 18:48:43.534861 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N X United States US New York US-NY New York US-NY-061 30.0 Greenwich Village (14th St.-Houston St.; Broadway-Hudson River) L3238737 H 40.7342063 -74.0027145 2015-01-01 08:17:00 obsr1165633 S21109443 Traveling P22 EBIRD 31.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302124859 2021-03-23 17:22:05.708166 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-07 07:35:00 obsr316199 S22265881 Area P23 EBIRD 120.0 2.59 2.0 1 G1173377 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313002587 2021-04-01 11:30:42.037277 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 7 P C3 P Female, Adult (3); Male, Adult (4) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 06:01:00 obsr924076 S23060222 Traveling P22 EBIRD 832.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290057097 2021-03-23 16:39:03.255227 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-01-09 15:15:00 obsr1032565 S21268556 Traveling P22 EBIRD 65.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314984079 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus 15 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 07:15:00 obsr1807494 S23181575 Traveling P22 EBIRD 360.0 4.828 28.0 1 G1247342 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311924690 2021-03-30 19:39:10.250398 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-04-21 13:00:00 obsr1494607 S22988662 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300798732 2019-03-04 17:55:09 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-03-03 08:00:00 obsr1918430 S22164342 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316419087 2015-05-06 08:36:47 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Genesee US-NY-037 13.0 Munson Street Home L2169787 P 42.9715 -78.000565 2015-05-05 10:00:00 obsr2362530 S23261806 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308731874 2021-04-01 11:47:43.260314 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 29 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-09 09:30:00 obsr1633923 S22775132 Stationary P21 EBIRD 540.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS300136862 2015-02-28 20:22:49 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-02-28 07:30:00 obsr72341 S22114999 Stationary P21 EBIRD 210.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319992512 2021-03-26 06:07:45.516082 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-05-15 10:00:00 obsr2196583 S23463099 Traveling P22 EBIRD 135.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306676810 2015-04-01 08:31:47 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 6 United States US New York US-NY Queens US-NY-081 ROCKAWAY BEACH L1094857 P 40.5821492 -73.8085556 2015-04-01 08:10:00 obsr2189493 S22623529 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322086393 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-22 08:00:00 obsr2303233 S23586002 Traveling P22 EBIRD 225.0 4.828 7.0 1 G1284770 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323896121 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-29 16:15:00 obsr186539 S23701574 Traveling P22 EBIRD 195.0 0.322 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316057179 2021-03-19 16:44:35.607263 20829 species avibase-B9B272F4 Common Raven Corvus corax 12 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-05 08:00:00 obsr2240964 S23240914 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312826989 2021-04-01 11:15:31.646886 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 08:15:00 obsr454647 S23049768 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293137571 2018-08-04 16:55:15 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-01-25 13:25:00 obsr749440 S21534051 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311954063 2021-03-24 20:33:47.533911 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-21 09:16:00 obsr2211210 S22990685 Traveling P22 EBIRD 29.0 0.805 2.0 1 G1230733 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309068024 2021-04-01 12:18:57.910168 26109 species avibase-BAC33609 Brown Creeper Certhia americana 25 United States US New York US-NY Tompkins US-NY-109 28.0 Lindsay-Parsons Biodiversity Preserve (FLLT) L109055 H 42.3101677 -76.5216895 2015-04-11 09:30:00 obsr1418810 S22798949 Traveling P22 EBIRD 130.0 3.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303072649 2021-03-26 06:55:00.227271 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-03-14 obsr1338126 S22346291 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324096141 2021-12-06 10:15:42.851681 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Delaware US-NY-025 US-NY_866 28.0 steam mill road, masonville, ny L3053432 P 42.2075206 -75.3404188 2015-05-30 06:00:00 obsr159548 S23714016 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321946643 2021-03-19 16:44:35.607263 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-05-22 06:10:00 obsr302343 S23576970 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306244527 2015-05-07 17:07:24 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-03-30 07:12:00 obsr455249 S22589828 Traveling P22 EBIRD 11.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298425050 2021-03-30 06:01:28.020715 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cortland US-NY-023 28.0 Cortland Wastewater Treatment Facility L1903152 H 42.597544 -76.157798 2015-02-19 08:05:00 obsr1318356 S21976009 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321355377 2018-08-06 22:28:59 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Erie US-NY-029 13.0 Counterfeiters Ledge Preserve L123089 H 43.02444 -78.48139 2015-05-05 08:53:00 obsr2588479 S23540196 Traveling P22 EBIRD 61.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320523893 2021-11-15 03:06:58.889978 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 10:15:00 obsr585997 S23491033 Traveling P22 EBIRD 90.0 1.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302299316 2021-03-24 19:27:13.077399 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-03-10 08:45:00 obsr142874 S22284156 Stationary P21 EBIRD 375.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293395259 2021-03-26 07:30:35.289997 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Tompkins US-NY-109 13.0 Haber Ithaca Apartment L2127426 P 42.4862687 -76.4751273 2015-01-26 07:45:00 obsr869999 S21554518 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310166841 2021-03-24 20:20:25.430732 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 4 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-15 07:30:00 obsr1918430 S22873692 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290989474 2021-03-24 21:09:00.82373 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 1 United States US New York US-NY Rensselaer US-NY-083 13.0 West Sand Lake, NY 1 L1766939 P 42.6226389 -73.6175931 2015-01-14 13:30:00 obsr2186523 S21343690 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314097120 2021-11-15 03:06:58.889978 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 09:15:00 obsr263005 S23128279 Traveling P22 EBIRD 145.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311870381 2022-02-17 14:32:23.002448 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 12 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-21 13:14:00 obsr1605975 S22985058 Traveling P22 EBIRD 130.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294313080 2022-01-20 13:44:29.539827 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 100 United States US New York US-NY Seneca US-NY-099 US-NY_803 13.0 Geneva Lakefront Park, birds over water ONLY (Seneca Co.) L360643 H 42.8659781 -76.9714307 2015-01-31 15:05:00 obsr2211210 S21626973 Traveling P22 EBIRD 47.0 0.322 2.0 1 G1131202 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296668127 2021-03-26 07:53:57.664705 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Livingston US-NY-051 13.0 Home - Birdfeeders- Lima, NY L3363388 P 42.631938 -77.6664734 2015-02-14 06:50:00 obsr912022 S21819177 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288775006 2021-04-01 11:54:40.172593 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-01-02 13:00:00 obsr1535951 S21165052 Stationary P21 EBIRD 60.0 4.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295771710 2021-03-26 06:07:26.162322 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-02-09 08:15:00 obsr2700440 S21742872 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293874818 2021-04-01 12:12:56.033907 30494 species avibase-240E3390 House Sparrow Passer domesticus 20 United States US New York US-NY Steuben US-NY-101 28.0 Painted Post L3325984 P 42.1430416 -77.0869446 2015-01-29 12:05:00 obsr171394 S21592819 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307921743 2021-04-01 12:18:57.910168 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 15 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-05 18:00:00 obsr2535282 S22713870 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305622935 2021-03-26 06:39:43.334073 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-03-27 14:30:00 obsr1223279 S22543491 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290363879 2021-04-01 11:58:54.966271 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-01-10 08:31:00 obsr2211750 S21293535 Stationary P21 EBIRD 140.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288701137 2021-03-26 07:07:10.758746 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Richmond US-NY-085 30.0 Stately Richman Manor L2489256 P 40.6333994 -74.104638 2015-01-02 09:00:00 obsr2904420 S21159022 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307009697 2021-03-26 06:53:58.593564 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Oneida US-NY-065 13.0 Sylvan Beach L509883 H 43.1939135 -75.731163 2015-04-02 16:31:00 obsr1640315 S22648445 Stationary P21 EBIRD 8.0 2.0 1 G1201796 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308746932 2018-08-04 17:08:14 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Beebe Lake L281786 H 42.4512932 -76.4767515 2015-04-09 15:00:00 obsr1557364 S22776295 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000612 2021-03-26 07:56:20.588749 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-09 09:00:00 obsr2218212 S23775912 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320285561 2021-04-01 11:15:31.646886 6526 species avibase-4D2FF6F1 Common Tern Sterna hirundo 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 12:30:00 obsr2336264 S23478553 Traveling P22 EBIRD 300.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299028410 2021-03-26 07:17:57.136956 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Seneca US-NY-099 13.0 Wyers Point and Wyers Point Rd. L285461 H 42.6736408 -76.7156979 2015-02-22 13:15:00 obsr2303116 S22026650 Traveling P22 EBIRD 60.0 6.437 5.0 1 G1156312 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322747716 2018-08-06 22:31:02 16284 species avibase-33808812 Alder Flycatcher Empidonax alnorum 1 United States US New York US-NY Broome US-NY-007 28.0 Case / Town Line / Zevan Roads L2168389 P 42.1595861 -75.9939766 2015-05-24 10:56:00 obsr1626739 S23624111 Traveling P22 EBIRD 41.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316541827 2021-03-26 06:21:54.883933 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 30 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-05-06 13:46:00 obsr1711339 S23268993 Traveling P22 EBIRD 101.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302850894 2021-03-30 19:03:54.667077 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-12 11:00:00 obsr319738 S22328483 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301673334 2021-11-09 21:57:19.593757 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Ulster US-NY-111 13.0 Comeau Property L3463957 P 42.0382 -74.12556 2015-03-08 11:45:00 obsr1446126 S22230306 Stationary P21 EBIRD 30.0 2.0 1 G1170413 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313815889 2021-03-24 19:27:13.077399 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-04-28 12:10:00 obsr142874 S23110799 Stationary P21 EBIRD 110.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323419003 2021-11-09 18:56:49.988387 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies L428335 H 41.7861111 -73.7397222 2015-05-27 11:35:00 obsr2175245 S23667694 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1293109 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315134080 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 07:20:00 obsr1152226 S23189952 Traveling P22 EBIRD 360.0 3.219 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306792363 2021-03-19 16:44:35.607263 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 8 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-01 18:04:00 obsr334398 S22631931 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307928140 2021-03-26 07:00:33.333856 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-04-06 06:58:00 obsr2574755 S22714263 Traveling P22 EBIRD 79.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305782855 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 20 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-22 15:30:00 obsr271871 S22555560 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135523 2021-04-01 12:18:57.910168 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Tompkins US-NY-109 13.0 Portland Point Rd. and Overlook L270445 H 42.5285274 -76.5272433 2015-01-04 09:00:00 obsr241086 S21195634 Traveling P22 EBIRD 40.0 0.322 6.0 1 G1095924 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295826621 2021-04-01 11:24:19.637193 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe N 50 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-02-08 07:50:00 obsr1243175 S21747159 Incidental P20 EBIRD 2.0 1 G1141257 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321323052 2021-03-23 17:22:05.708166 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Herkimer US-NY-043 13.0 Lyon Road - Manheim L637794 P 43.0973479 -74.7933769 2015-05-19 08:55:00 obsr1000124 S23538302 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319215954 2018-08-06 22:29:48 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 4 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Cain Hollow Campground L3640020 P 42.03629 -78.84682 2015-05-13 07:00:00 obsr2704447 S23419232 Traveling P22 EBIRD 45.0 1.609 2.0 1 G1270646 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS357543876 2021-03-30 19:13:38.458673 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-05-06 12:30:00 obsr1034425 S26160542 Historical P62 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296787202 2021-12-28 15:50:27.785498 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 Female, Adult (2); Male, Adult (1) United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-02-14 14:10:00 obsr606693 S21827926 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300687778 2015-03-03 09:20:59 279 species avibase-3E04020B Brant Branta bernicla 6 United States US New York US-NY Tioga US-NY-107 28.0 Candor--open field just to W L3452720 P 42.236888 -76.346904 2015-03-03 07:22:00 obsr1318356 S22155643 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303460299 2018-08-04 17:01:32 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 9 United States US New York US-NY Erie US-NY-029 13.0 Delaware Park--Rumsey Woods L1348448 H 42.9307931 -78.8698229 2015-03-16 07:47:00 obsr502830 S22376671 Traveling P22 EBIRD 32.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300613898 2021-08-10 10:40:09.647824 337 species avibase-694C127A Mute Swan Cygnus olor 42 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-03-02 14:30:00 obsr2448957 S22150320 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310290835 2021-04-01 11:49:53.573686 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-04-10 07:09:00 obsr1982614 S22881927 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305039882 2021-04-01 11:49:53.573686 26109 species avibase-BAC33609 Brown Creeper Certhia americana 6 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-03-24 07:20:00 obsr676630 S22498302 Rusty Blackbird Spring Migration Blitz P41 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296066189 2021-11-09 21:57:08.566201 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 15 United States US New York US-NY Ulster US-NY-111 28.0 Old Fort Road L3352847 P 41.6319316 -74.2294532 2015-02-10 09:15:00 obsr1628992 S21766438 Traveling P22 EBIRD 480.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309628610 2021-03-22 08:58:29.008072 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Sheep Meadow L1153696 H 40.7718806 -73.9749652 2015-04-11 09:40:00 obsr1706920 S22835009 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312443864 2015-04-23 22:56:18 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 1 United States US New York US-NY Genesee US-NY-037 13.0 Cockram Rd. (Byron) L2616838 P 43.0669126 -78.0833101 2015-04-23 08:15:00 obsr408487 S23023462 Traveling P22 EBIRD 4.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294107160 2021-04-01 11:49:53.573686 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 50 United States US New York US-NY Queens US-NY-081 30.0 Flushing Meadows Corona Park--Meadow Lake L1788995 H 40.7351876 -73.8404751 2015-01-31 08:56:00 obsr2574755 S21610636 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290204497 2021-03-26 06:17:19.712573 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Erie US-NY-029 13.0 Alden - Crittenden Rd. L586154 P 42.9165364 -78.4935379 2015-01-10 13:15:00 obsr2871264 S21280473 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292494079 2021-04-01 10:58:47.067498 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Genesee US-NY-037 13.0 Genesee County Airport (GVQ) L2486434 H 43.0306505 -78.1733465 2015-01-21 15:27:00 obsr294236 S21483377 Traveling P22 EBIRD 19.0 3.219 2.0 1 G1118745 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302080441 2018-08-04 16:59:12 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Westchester US-NY-119 30.0 Deans Bridge, North Salem L2152201 H 41.3368943 -73.6588245 2015-03-09 18:00:00 obsr1628992 S22262671 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317201527 2021-03-30 19:13:38.458673 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-05-08 09:22:00 obsr334398 S23306001 Traveling P22 EBIRD 50.0 0.322 2.0 1 G1257533 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311574845 2018-08-04 17:09:06 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L526565 P 40.7469969 -73.7436676 2015-04-14 07:34:00 obsr2233270 S22965036 Traveling P22 EBIRD 70.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315875925 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 11:50:00 obsr1516787 S23230155 Traveling P22 EBIRD 185.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288702619 2021-03-30 19:07:52.958398 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-02 15:00:00 obsr2363365 S21159192 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312245905 2021-03-24 20:11:57.676649 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Oswego-33 W Albany St L2797344 P 43.451014 -76.511183 2015-04-23 07:34:00 obsr2700277 S23010104 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318946210 2021-04-01 11:30:42.037277 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-08 07:00:00 obsr442686 S23403453 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299000023 2022-03-06 12:39:33.700954 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-02-22 10:30:00 obsr547602 S22024196 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309555635 2021-03-24 19:48:44.880783 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-04-12 12:00:00 obsr2504709 S22830201 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321885980 2021-03-24 05:37:45.927792 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-25 12:37:00 obsr2155111 S23573319 Traveling P22 EBIRD 38.0 0.241 3.0 1 G1282908 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295422760 2021-11-09 18:28:50.133002 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Dutchess US-NY-027 13.0 Home, Millbrook, NY L2119013 P 41.7923452 -73.6592703 2015-02-02 06:45:00 obsr1062217 S21715788 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298846231 2021-03-23 16:33:05.415158 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 2 United States US New York US-NY Queens US-NY-081 30.0 Idlewild Park L2687800 H 40.6546016 -73.7547487 2015-02-21 13:15:00 obsr1982614 S22011795 Traveling P22 EBIRD 80.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309563730 2015-04-12 20:44:52 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_847 30.0 Arthur H. Kunz County Park L1850341 H 40.8918194 -73.2118815 2015-04-12 09:30:00 obsr2106875 S22830717 Traveling P22 EBIRD 15.0 0.4 3.0 1 G1217075 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291727888 2018-08-04 16:53:58 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-01-18 15:46:00 obsr887540 S21402933 Stationary P21 EBIRD 26.0 5.0 1 G1171063 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316304738 2021-03-26 06:17:19.712573 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-05 11:00:00 obsr1379161 S23255669 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290363778 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-10 08:30:00 obsr1077730 S21293529 Traveling P22 EBIRD 210.0 3.219 11.0 1 G1105067 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292888962 2021-03-30 19:29:01.097416 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Steuben US-NY-101 28.0 Keuka Lake, Champlin Beach L745394 H 42.4022754 -77.2142529 2015-01-24 10:14:00 obsr1092576 S21514545 Stationary P21 EBIRD 24.0 2.0 1 G1121005 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306334183 2021-03-26 06:39:43.334073 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 96 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-30 07:03:00 obsr1433400 S22596606 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319214492 2021-03-24 21:01:50.671145 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Nassau US-NY-059 30.0 Lynbrook L3091077 P 40.6511413 -73.6801529 2015-05-12 16:30:00 obsr358492 S23419134 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291922319 2018-08-04 16:54:03 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 9 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 US-NY-Whitney Point - 42.3294x-75.9646 - Jan 19, 2015, 1:37 PM L3303791 P 42.329372 -75.964571 2015-01-19 13:38:00 obsr2683805 S21417812 Stationary P21 EBIRD 5.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304677256 2021-04-01 11:15:31.646886 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 1 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-03-21 10:30:00 obsr2033754 S22470466 Stationary P21 EBIRD 75.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319896864 2021-11-09 19:01:40.008558 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-15 07:30:00 obsr2700041 S23457925 Traveling P22 EBIRD 360.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315927507 2021-04-01 11:30:42.037277 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 5 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-05-03 06:07:00 obsr259298 S23233028 Stationary P21 EBIRD 61.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323261358 2021-03-26 07:52:59.845315 6204 spuh avibase-4B2856FB large alcid sp. Uria/Alca sp. 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-21 07:25:00 obsr1000124 S23656828 Area P23 EBIRD 68.0 2.59 2.0 1 G1292238 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312482585 2018-08-04 17:11:58 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Orleans US-NY-073 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Ringneck Marsh L189800 H 43.14008 -78.38111 2015-04-24 08:26:00 obsr2588479 S23026102 Traveling P22 EBIRD 18.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288222565 2021-04-01 12:14:19.266649 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Ocean Parkway L286801 P 40.6159065 -73.402978 2015-01-01 10:45:00 obsr706483 S21119488 Traveling P22 EBIRD 120.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299812191 2021-04-01 11:47:43.260314 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 1 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-02-04 obsr2409011 S22089041 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302355256 2021-03-23 17:18:00.959502 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-03-10 18:08:00 obsr2512689 S22290766 Traveling P22 EBIRD 34.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307003833 2021-03-30 19:39:10.250398 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park /Hendr.Park L365070 P 40.6787341 -73.6936927 2015-04-02 11:00:00 obsr916370 S22648008 Traveling P22 EBIRD 105.0 5.311 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307107542 2021-03-24 20:23:39.258075 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-03 07:30:00 obsr544268 S22655743 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297096473 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-15 09:30:00 obsr2207991 S21857313 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296413488 2021-12-10 08:21:29.396662 11494 species avibase-20C2214E American Kestrel Falco sparverius 2 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-13 08:45:00 obsr1801902 S21796367 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288626901 2015-01-02 21:52:54 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 78 United States US New York US-NY Fulton US-NY-035 13.0 Rt 67 - between Rt 334 & Fulton Co. Solid Waste L3259465 P 43.0073547 -74.4421889 2015-01-02 12:43:00 obsr2694889 S21153274 Traveling P22 EBIRD 10.0 3.701 4.0 1 G1092133 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290143150 2021-03-23 17:00:13.087107 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 4 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-10 08:34:00 obsr887540 S21275234 Stationary P21 EBIRD 23.0 2.0 1 G1106090 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307662740 2021-03-26 07:52:19.474233 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 8 United States US New York US-NY Delaware US-NY-025 28.0 Bridge St., Downsville L2384566 H 42.0755272 -74.9899937 2015-04-05 08:14:00 obsr1788273 S22695085 Traveling P22 EBIRD 31.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319713714 2021-11-09 18:42:19.628792 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-14 07:13:00 obsr1732267 S23447676 Traveling P22 EBIRD 195.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318376858 2021-04-01 12:30:15.438381 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 8 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-05-09 06:00:00 obsr2694889 S23371372 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304217437 2018-08-04 17:02:01 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 6 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-03-19 16:30:00 obsr2448785 S22436211 Rusty Blackbird Spring Migration Blitz P41 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319335645 2021-04-01 11:30:42.037277 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 07:30:00 obsr369788 S23425888 Traveling P22 EBIRD 270.0 4.023 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310221211 2021-03-24 19:23:17.886063 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-04-15 08:57:00 obsr1092576 S22877229 Stationary P21 EBIRD 3.0 3.0 1 G1220766 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301948796 2022-02-18 10:47:29.953615 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-09 08:36:00 obsr1062070 S22252331 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315028240 2021-04-01 10:55:39.308231 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 3 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-02 09:45:00 obsr2571887 S23184030 Traveling P22 EBIRD 75.0 2.012 4.0 1 G1248148 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289538554 2021-11-09 21:36:59.310849 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus N 1 United States US New York US-NY Ulster US-NY-111 13.0 rosendale, ny L1465355 P 41.8499692 -74.081765 2015-01-06 10:00:00 obsr187701 S21227134 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304675289 2021-04-01 12:32:15.282601 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Plains Preserve L1575568 H 40.7240849 -73.5844534 2015-03-20 10:30:00 obsr1200152 S22470304 Traveling P22 EBIRD 22.0 0.644 10.0 1 G1185867 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306942912 2021-11-09 19:51:09.255083 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-03-29 09:05:00 obsr2228257 S22643099 Traveling P22 EBIRD 60.0 0.483 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958500 2021-04-01 11:58:54.966271 662 species avibase-FB738385 Bufflehead Bucephala albeola N 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-01-24 08:27:00 obsr2211750 S21520035 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298480850 2021-03-26 07:07:10.758746 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 48 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-02-19 10:24:00 obsr1893950 S21980822 Traveling P22 EBIRD 19.0 0.644 2.0 1 G1153098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310277265 2021-03-26 07:30:35.289997 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-15 16:13:00 obsr887540 S22880966 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291944621 2021-03-30 19:39:10.250398 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Nassau US-NY-059 30.0 Massapequa preserve- Walker Street L3175652 P 40.6969856 -73.4523153 2015-01-19 07:00:00 obsr547602 S21419638 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314399864 2021-03-23 16:30:20.514143 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 10 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3601463 P 43.429016 -75.903778 2015-04-30 07:37:00 obsr1477887 S23146754 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289127650 2021-03-24 21:06:05.39641 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Onondaga US-NY-067 13.0 Sunview Dr. L2632497 P 43.0410731 -76.4196968 2015-01-04 07:45:00 obsr2223307 S21194994 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309132429 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-11 08:10:00 obsr384772 S22802891 Traveling P22 EBIRD 320.0 8.047 2.0 1 G1214489 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305481112 2021-01-26 11:57:54.441053 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 Male, Adult (1) United States US New York US-NY Ontario US-NY-069 13.0 **US-NY-ONT Manchester--CR 19 X Freshour Rd., Shortsville [Clifton Springs_CW] L1111756 P 42.953046 -77.2107983 2015-03-26 14:51:00 obsr606693 S22531245 Traveling P22 EBIRD 14.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308816270 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-10 09:10:00 obsr334398 S22781370 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306150302 2018-08-04 17:04:35 7261 species avibase-86D45B8F Green Heron Butorides virescens 4 United States US New York US-NY Westchester US-NY-119 28.0 Between Peekskill and Cortlandt (Metro North) L3523996 P 41.2583576 -73.9312935 2015-03-29 08:41:00 obsr924076 S22582729 Traveling P22 EBIRD 5.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312561577 2021-03-23 17:26:08.495143 11371 species avibase-75600969 Northern Flicker Colaptes auratus 3 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-24 08:20:00 obsr904434 S23031942 Traveling P22 EBIRD 85.0 2.253 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320069633 2021-05-13 19:31:54.715042 11494 species avibase-20C2214E American Kestrel Falco sparverius 7 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Inlet WMA--Sliker Hill Rd. dike & wetlands L674319 H 42.7145597 -77.7100646 2015-05-16 06:20:00 obsr1962379 S23467682 Traveling P22 EBIRD 15.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288824846 2022-02-04 06:14:13.892644 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 3 Male, Unknown Age (3) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-01-03 13:10:00 obsr856524 S21171155 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS314542476 2021-11-09 22:38:55.83044 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 2 Unknown Sex, Adult (1); Unknown Sex, Immature (1) United States US New York US-NY Sullivan US-NY-105 US-NY_2792 28.0 644 River Road L2326174 P 41.782401 -75.1017773 2015-04-30 06:00:00 obsr279522 S23156115 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307231575 2018-08-04 17:04:53 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-03-31 14:00:00 obsr2206421 S22664563 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306340763 2018-08-04 17:04:45 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 Male, Adult (6) United States US New York US-NY Onondaga US-NY-067 28.0 Tully Lakes L1129390 P 42.79011 -76.1278725 2015-03-30 09:22:00 obsr1178949 S22597120 Traveling P22 EBIRD 83.0 8.1 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305312957 2021-03-26 08:14:57.071052 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-03-25 10:30:00 obsr1198912 S22519368 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288494854 2018-08-04 16:52:31 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Rensselaer US-NY-083 13.0 Tomhannock Reservoir L213216 H 42.8487622 -73.548707 2015-01-02 13:00:00 obsr777630 S21142088 Traveling P22 EBIRD 25.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319539262 2021-03-30 19:39:10.250398 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Nassau US-NY-059 30.0 Saint Johns Pond Sanctuary L123034 H 40.85417 -73.46333 2015-05-14 10:50:00 obsr1107696 S23437833 Traveling P22 EBIRD 44.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308515695 2021-04-01 12:45:19.712958 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve--Fergusons Lake Trail L2930491 H 41.1003343 -73.8233849 2015-04-08 09:30:00 obsr1742994 S22758352 Traveling P22 EBIRD 60.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313929243 2019-12-02 15:53:32 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 NY:WAY:Savannah: Carncross Rd: marsh/field L2343213 P 43.0787907 -76.7097522 2015-04-28 09:28:00 obsr2760150 S23118035 Traveling P22 EBIRD 49.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318124626 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-10 06:12:00 obsr1189028 S23357904 Traveling P22 EBIRD 118.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297950418 2021-03-30 19:07:52.958398 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-17 07:40:00 obsr454647 S21934894 Traveling P22 EBIRD 90.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314427941 2015-04-30 18:10:34 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-30 06:15:00 obsr2716320 S23148463 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289388486 2021-03-26 07:52:59.845315 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 7 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-05 08:15:00 obsr1000124 S21215231 Area P23 EBIRD 79.0 2.59 2.0 1 G1100456 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307481720 2020-01-01 09:54:18 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Westchester US-NY-119 30.0 Sheldrake Lake (Larchmont Reservoir) L714112 H 40.9527912 -73.7738478 2015-04-04 10:00:00 obsr1227089 S22682488 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303085667 2021-03-19 16:02:45.308962 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus X United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-14 15:30:00 obsr1044068 S22347332 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320298192 2015-05-19 10:24:45 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Albany US-NY-001 13.0 Tivoli Lake Preserve L3480691 H 42.6707536 -73.7632259 2015-05-15 18:00:00 obsr820113 S23479213 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322428504 2018-08-06 22:30:58 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus X United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-05-23 14:30:00 obsr777630 S23605650 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299367881 2018-08-04 16:58:11 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia X United States US New York US-NY Oneida US-NY-065 13.0 Delta Lake Dam L3436512 P 43.274143 -75.428716 2015-02-24 12:18:00 obsr2945658 S22054848 Stationary P21 EBIRD 30.0 2.0 1 G1159212 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310962101 2021-03-24 20:23:39.258075 6339 species avibase-8535345B Herring Gull Larus argentatus N 4 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-04-18 15:28:00 obsr2485753 S22927144 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294429287 2021-11-09 18:32:20.227374 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Dutchess US-NY-027 13.0 2122 New Hackensack Road, Poughkeepsie, New York, US (41.66, -73.874) L233101 P 41.6600962 -73.8740462 2015-02-01 07:00:00 obsr842638 S21636219 Stationary P21 EBIRD 150.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323399539 2018-08-06 22:31:16 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-27 16:15:00 obsr1764243 S23666113 Traveling P22 EBIRD 59.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309960820 2020-03-15 09:14:53 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-14 09:52:00 obsr2324853 S22859228 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305567860 2018-08-04 17:03:43 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 4 United States US New York US-NY Schenectady US-NY-093 13.0 Niskayuna Railroad Station at Lions Park L505923 H 42.7776374 -73.823356 2015-03-27 09:41:00 obsr2321296 S22539230 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304703123 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-03-19 10:00:00 obsr2759466 S22472349 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307924215 2021-04-01 11:15:31.646886 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 09:00:00 obsr644027 S22714015 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301406782 2019-07-23 17:27:40 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 40 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point County Park L835192 H 41.1597479 -72.2347641 2015-03-07 13:07:00 obsr598381 S22210942 Traveling P22 EBIRD 58.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321124327 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-18 09:15:00 obsr2129334 S23525729 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306076201 2021-03-30 12:05:58.533651 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-29 09:30:00 obsr420385 S22577008 Traveling P22 EBIRD 195.0 4.023 4.0 1 G1196569 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309450997 2021-03-24 19:48:44.880783 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-12 09:20:00 obsr983655 S22823057 Traveling P22 EBIRD 40.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321883616 2021-11-09 18:11:08.644452 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 1 United States US New York US-NY Dutchess US-NY-027 28.0 Great Thicket NWR (pka Nellie Hill Preserve) L123077 H 41.73139 -73.57333 2015-05-21 08:30:00 obsr1917973 S23573164 Traveling P22 EBIRD 135.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307285857 2021-03-26 06:12:17.833181 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-04-03 09:00:00 obsr479109 S22668460 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298712967 2018-08-04 16:57:54 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 15 United States US New York US-NY Schuyler US-NY-097 13.0 Seneca Lake, Salt Point Rd. L489167 H 42.3915791 -76.8810073 2015-02-21 08:20:00 obsr1092576 S22000909 Traveling P22 EBIRD 19.0 0.966 2.0 1 G1154706 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296082263 2021-04-01 11:54:40.172593 11371 species avibase-75600969 Northern Flicker Colaptes auratus 26 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-02-10 12:30:00 obsr1032565 S21767610 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309223759 2021-11-09 19:57:48.990233 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-11 12:01:00 obsr1655171 S22809098 Traveling P22 EBIRD 20.0 0.322 2.0 1 G1219970 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306706118 2021-03-24 20:23:39.258075 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-01 08:45:00 obsr1488063 S22625798 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306707949 2020-07-20 09:16:51 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 2 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-01 09:50:00 obsr660214 S22625924 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310157333 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-15 06:20:00 obsr1135516 S22873045 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320739743 2021-04-01 12:26:53.827486 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-05-16 07:50:00 obsr2855945 S23502544 Traveling P22 EBIRD 175.0 2.414 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315386515 2021-04-01 11:30:42.037277 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:20:00 obsr1047805 S23203462 Traveling P22 EBIRD 462.0 8.047 3.0 1 G1259290 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301238954 2021-04-01 11:47:43.260314 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-03-06 10:02:00 obsr2224244 S22196759 Traveling P22 EBIRD 46.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307438512 2015-04-09 13:18:17 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 8 United States US New York US-NY Kings US-NY-047 30.0 Highland Park (Brooklyn) L2894991 H 40.6855955 -73.8854742 2015-04-04 11:10:00 obsr263005 S22679599 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306539958 2020-01-16 17:01:29 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 4 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-03-31 11:00:00 obsr2700277 S22612792 Stationary P21 EBIRD 155.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322384610 2021-03-26 07:53:57.664705 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Livingston US-NY-051 13.0 PFA River Rd. Route L1180613 P 42.8731965 -77.8580475 2015-05-18 05:15:00 obsr1060479 S23603105 Traveling P22 EBIRD 85.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312767511 2018-08-04 17:12:11 6616 species avibase-7E022378 Common Loon Gavia immer 30 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-04-25 11:13:00 obsr1958124 S23046285 Traveling P22 EBIRD 17.0 0.644 3.0 1 G1237329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319033749 2018-08-06 22:29:46 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-12 09:30:00 obsr1044068 S23408710 Traveling P22 EBIRD 175.0 5.794 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317824308 2018-08-06 22:29:23 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Jefferson US-NY-045 Snowshoe Rd. L1564994 H 43.8755609 -76.2282763 2015-05-09 07:50:00 obsr1558090 S23341653 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308211703 2021-03-23 16:39:03.255227 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-07 09:10:00 obsr1958124 S22735264 Traveling P22 EBIRD 7.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311809438 2018-08-04 17:09:35 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 19 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-17 17:35:00 obsr258946 S22981216 Traveling P22 EBIRD 60.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291129628 2021-04-01 12:18:57.910168 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-01-15 12:58:00 obsr2211210 S21355243 Traveling P22 EBIRD 10.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322490964 2021-11-09 19:02:27.638861 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-05-24 09:10:00 obsr1732267 S23609051 Traveling P22 EBIRD 173.0 2.736 1.0 1 G1291337 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296112704 2021-03-23 16:52:36.900075 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Suffolk US-NY-103 30.0 Wading River, 185-193 Cliff Road West L3074765 P 40.96741 -72.83174 2015-02-11 11:35:00 obsr1228860 S21770012 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311510974 2015-04-20 07:41:21 622 species avibase-50566E50 Lesser Scaup Aythya affinis X United States US New York US-NY Monroe US-NY-055 13.0 Thousand Acre Swamp Preserve L123006 H 43.17917 -77.45194 2015-04-19 09:30:00 obsr2223307 S22960776 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313783108 2021-04-01 12:26:53.827486 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 2 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-04-28 11:55:00 obsr1154 S23108666 Traveling P22 EBIRD 35.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313315142 2017-09-07 00:30:33 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Clinton US-NY-019 13.0 Ausable Marsh WMA--Ausable Point L143224 H 44.5680008 -73.4219971 2015-04-26 18:30:00 obsr2508112 S23078966 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289676080 2021-11-09 21:16:50.449374 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Ulster US-NY-111 28.0 Lippincott Road - Wallkill river L1079694 P 41.6124905 -74.1887426 2015-01-07 11:15:00 obsr444155 S21237951 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311774060 2021-12-11 05:54:42.072179 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Sylvester Manor, Shelter Island L2694229 H 41.0770733 -72.339396 2015-04-21 07:08:00 obsr1628584 S22978780 Traveling P22 EBIRD 57.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308921073 2015-04-10 18:02:07 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 South side Owl's Head Park, Bay Ridge L2082827 P 40.6391831 -74.0330029 2015-04-10 16:45:00 obsr2651805 S22788702 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317427972 2021-03-26 06:17:19.712573 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-09 06:30:00 obsr252591 S23319504 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311377193 2021-04-01 11:15:31.646886 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 11:48:00 obsr1982614 S22952574 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322673585 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 07:10:00 obsr1348614 S23619469 Traveling P22 EBIRD 600.0 4.0 5.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303616589 2021-04-01 11:30:42.037277 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-16 16:15:00 obsr2031586 S22389244 Traveling P22 EBIRD 75.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301369612 2021-11-09 20:47:40.096315 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Putnam US-NY-079 28.0 yard list L749790 P 41.4653702 -73.6530304 2015-02-17 08:00:00 obsr159548 S22207947 Stationary P21 EBIRD 210.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301858938 2021-03-26 07:56:20.588749 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Nassau US-NY-059 30.0 N 2nd St. L2585098 P 40.738664 -73.6975363 2015-03-08 18:00:00 obsr143739 S22245975 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301113694 2015-03-14 15:47:01 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-05 14:45:00 obsr1077730 S22186726 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312650331 2022-02-13 06:32:05.759346 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-04-24 19:04:00 obsr2683910 S23038384 Traveling P22 EBIRD 10.0 1.931 2.0 1 G1234265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304625658 2021-03-30 12:05:58.533651 32955 species avibase-41062654 Northern Parula Setophaga americana 60 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-22 09:40:00 obsr384772 S22466508 Traveling P22 EBIRD 190.0 4.023 2.0 1 G1188255 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291864864 2021-03-19 16:44:35.607263 6043 species avibase-2C7A2673 Lesser Yellowlegs Tringa flavipes 5 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Rush-375 Jeffords Rd L3302221 P 43.009819 -77.621631 2015-01-18 15:04:00 obsr1894451 S21413476 Stationary P21 EBIRD 75.0 4.0 1 G1114587 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302009462 2022-03-05 22:03:50.715584 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-09 10:30:00 obsr444155 S22256924 Traveling P22 EBIRD 90.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306394638 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-30 obsr1723136 S22601343 Incidental P20 EBIRD 3.0 0 G2440872 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312297619 2015-04-23 12:26:53 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Marathon-2950 County Route 345 L3584186 P 42.426794 -76.129262 2015-04-23 08:05:00 obsr1828453 S23013346 Incidental P20 EBIRD 2.0 0 G1232703 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290876628 2021-03-30 19:29:33.633096 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-13 08:00:00 obsr916370 S21334914 Traveling P22 EBIRD 110.0 3.058 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317139610 2018-11-08 09:55:16 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Cayuga US-NY-011 US-NY_1726 13.0 Montezuma (NMWMA)--Howland Island--East L909695 H 43.0831822 -76.6663742 2015-05-08 07:50:00 obsr2172593 S23302877 Traveling P22 EBIRD 165.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311574709 2021-03-19 16:06:54.047432 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Owasco Flats Nature Reserve L3578209 P 42.7471613 -76.4643717 2015-04-18 08:45:00 obsr534615 S22965027 Traveling P22 EBIRD 180.0 1.609 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292467707 2021-03-30 19:37:33.521815 27616 species avibase-D77E4B41 American Robin Turdus migratorius 10 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-01-21 12:00:00 obsr2744341 S21481247 Stationary P21 EBIRD 112.0 2.0 1 G1119110 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310945883 2021-03-24 20:11:19.423282 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus N 1 United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-18 10:48:00 obsr2756208 S22926020 Traveling P22 EBIRD 87.0 1.448 4.0 1 G1224261 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307783768 2021-03-23 17:26:08.495143 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-02 11:00:00 obsr1494607 S22703671 Traveling P22 EBIRD 60.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309558713 2015-04-12 20:33:11 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Genesee US-NY-037 13.0 Chick Rd. (Darien) L3559484 P 42.873863 -78.360495 2015-04-12 07:40:00 obsr48167 S22830401 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300235769 2021-03-30 19:29:33.633096 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 154 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-03-01 09:51:00 obsr2485753 S22122929 Traveling P22 EBIRD 100.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306158491 2021-11-09 22:12:17.655802 7200 species avibase-49D9148A Great Egret Ardea alba X United States US New York US-NY Ulster US-NY-111 13.0 Stone Ridge Pond off Mill Dam Rd. L624963 H 41.8618905 -74.1432953 2015-03-29 17:45:00 obsr2862523 S22583339 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294154362 2015-01-31 14:15:04 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 52 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como #1291 E Lake Rd L1808836 P 42.679629 -76.301994 2015-01-31 13:27:00 obsr887540 S21614577 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1222186726 2021-08-22 08:16:58.571328 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 5 United States US New York US-NY Erie US-NY-029 13.0 University at Buffalo (North Campus) L6275102 H 43.0008539 -78.7889698 2015-04-19 10:35:00 obsr2155450 S93573460 Traveling P22 EBIRD 35.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320314172 2017-12-20 02:29:11 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Marsh Mill Road, wetlands L925329 H 43.1175018 -75.9310198 2015-05-16 09:25:00 obsr1167884 S23480047 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306417560 2021-03-23 17:00:13.087107 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-03-29 09:00:00 obsr34822 S22603151 Stationary P21 EBIRD 20.0 4.0 1 G1197078 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317978959 2021-03-19 16:02:45.308962 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Nathaniel Cole Park L2840663 H 42.1436445 -75.705164 2015-05-09 08:00:00 obsr1720232 S23350308 Traveling P22 EBIRD 210.0 1.609 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304070748 2021-11-09 19:48:28.372144 11528 species avibase-F3DA111C Merlin Falco columbarius 3 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region L2435862 P 41.3374945 -74.4715548 2015-03-19 09:30:00 obsr444155 S22424617 Traveling P22 EBIRD 270.0 8.047 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298213598 2021-05-21 00:06:20.034424 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 90 United States US New York US-NY Richmond US-NY-085 Mt. Loretto Unique Area L293510 H 40.5072899 -74.2180324 2015-02-18 10:05:00 obsr1958124 S21957359 Traveling P22 EBIRD 58.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319619892 2021-03-19 16:44:35.607263 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-14 15:06:00 obsr1008519 S23442309 Traveling P22 EBIRD 70.0 1.127 3.0 1 G1271743 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322430674 2021-03-24 19:48:44.880783 16825 spuh avibase-24E6FA5E flycatcher sp. (Tyrannidae sp.) Tyrannidae sp. 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-24 06:16:00 obsr1696616 S23605772 Traveling P22 EBIRD 101.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311141946 2017-08-02 19:50:32 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-04-18 16:11:00 obsr991026 S22938172 Stationary P21 EBIRD 12.0 2.0 1 G1225468 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314698381 2018-08-04 17:13:57 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley State Park L3604903 P 42.2156247 -75.8341196 2015-05-01 14:30:00 obsr1889889 S23165115 Traveling P22 EBIRD 120.0 3.219 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295627956 2021-04-01 12:18:57.910168 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: home to NYS-89 845 L1909225 P 42.4586977 -76.5204406 2015-02-08 15:11:00 obsr2760150 S21732279 Traveling P22 EBIRD 98.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292893225 2021-03-24 20:49:01.185993 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Washington US-NY-115 13.0 Ft. Miller Rd. L1357316 H 43.1553093 -73.5771559 2015-01-24 11:05:00 obsr2321296 S21514941 Traveling P22 EBIRD 7.0 2.414 3.0 1 G1121260 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300265081 2017-08-15 17:01:36 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cortland US-NY-023 28.0 Snyder Hill Road - Virgil L3406906 P 42.5002632 -76.090107 2015-03-01 07:50:00 obsr931232 S22125275 Stationary P21 EBIRD 55.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308754098 2021-03-26 07:30:35.289997 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 40 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-05 11:35:00 obsr2683910 S22776741 Traveling P22 EBIRD 74.0 1.127 2.0 1 G1212786 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303312798 2021-03-23 17:00:13.087107 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 10 United States US New York US-NY Tompkins US-NY-109 13.0 Burns Rd.--upper L2852650 P 42.4123678 -76.452527 2015-03-15 11:15:00 obsr2683910 S22364638 Traveling P22 EBIRD 30.0 0.322 2.0 1 G1180904 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322405054 2021-03-26 06:39:43.334073 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY New York US-NY-061 Randalls Island--saltmarsh at Little Hell Gate Inlet L1785361 H 40.7913671 -73.9265029 2015-05-23 13:25:00 obsr1548221 S23604331 Traveling P22 EBIRD 49.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316265258 2021-04-01 12:18:57.910168 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Palmer Woods L287796 H 42.4604469 -76.4789951 2015-04-26 13:00:00 obsr1725472 S23253433 Traveling P22 EBIRD 120.0 0.805 4.0 1 G1239955 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305792087 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field, Kings Co. L1341687 P 40.5925957 -73.8870594 2015-03-28 09:45:00 obsr827632 S22556219 Traveling P22 EBIRD 105.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320085837 2021-03-24 05:37:45.927792 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-16 07:08:00 obsr502830 S23468507 Traveling P22 EBIRD 156.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307554765 2015-04-04 20:11:45 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-04-04 09:30:00 obsr1327349 S22687590 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310398897 2021-03-23 17:18:00.959502 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.7628129 2015-04-16 09:34:00 obsr1201479 S22889569 Traveling P22 EBIRD 46.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544289 2019-07-23 17:26:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Tompkins US-NY-109 13.0 Eliana's L1376065 P 42.468118 -76.5266105 2015-01-11 14:02:00 obsr2255296 S21308095 Traveling P22 EBIRD 74.0 0.322 3.0 1 G1106111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320857185 2021-11-09 18:38:50.204097 31855 species avibase-5BFFE091 Grasshopper Sparrow Ammodramus savannarum 1 United States US New York US-NY Dutchess US-NY-027 28.0 Southeast Mtn Rd L2849103 P 41.67179 -73.52855 2015-05-16 11:18:00 obsr2343626 S23509967 Traveling P22 EBIRD 62.0 4.828 2.0 1 G1277162 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309236534 2022-02-17 14:32:23.002448 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-11 12:30:00 obsr2448957 S22809927 Traveling P22 EBIRD 420.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304087952 2021-03-30 19:25:27.212017 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-03-19 08:30:00 obsr396989 S22426026 Traveling P22 EBIRD_NJ 370.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296344353 2015-02-12 22:50:59 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Delaware US-NY-025 28.0 Quail Ridge Area L2327396 P 42.2085425 -74.587276 2015-02-07 15:00:00 obsr883142 S21790169 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299186183 2021-04-01 11:15:31.646886 7200 species avibase-49D9148A Great Egret Ardea alba 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-02-21 08:00:00 obsr2908667 S22041051 Traveling P22 EBIRD 130.0 3.219 4.0 1 G1157699 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299394095 2015-02-24 20:38:48 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Erie US-NY-029 13.0 Majors Park L1745589 H 42.7481082 -78.6100658 2015-02-22 10:20:00 obsr2871264 S22056688 Stationary P21 EBIRD 60.0 3.0 1 G1158818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288681984 2021-11-09 17:46:39.788935 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Dutchess US-NY-027 28.0 Greenhaven L1082264 P 41.5691019 -73.7062682 2015-01-01 15:10:00 obsr1732267 S21157315 Traveling P22 EBIRD 30.0 2.414 2.0 1 G1108985 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312214639 2022-02-21 13:41:55.027797 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY New York US-NY-061 30.0 Fort Tryon Park L591127 H 40.8629374 -73.9327457 2015-04-22 08:40:00 obsr781996 S23007915 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321508827 2021-04-01 11:30:42.037277 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-20 13:45:00 obsr2883698 S23549557 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322773593 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-25 06:00:00 obsr2883074 S23625713 Traveling P22 EBIRD 280.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311775315 2018-08-04 17:08:33 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Old Erie Canal--Bennett'sCrs Rd to Newport Rd L288524 P 43.0828263 -76.356028 2015-04-11 13:16:00 obsr2279567 S22978864 Rusty Blackbird Spring Migration Blitz P41 EBIRD 104.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314049513 2021-03-26 07:56:20.588749 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-29 09:00:00 obsr1693806 S23125401 Traveling P22 EBIRD 90.0 1.207 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308068026 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 23 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-06 08:00:00 obsr2319444 S22723892 Traveling P22 EBIRD 300.0 4.828 10.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305993419 2021-03-30 19:13:38.458673 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 40 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 10:00:00 obsr730231 S22571195 Traveling P22 EBIRD 44.0 0.161 2.0 1 G1196954 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299815930 2021-03-23 17:23:45.772216 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-02-26 07:00:00 obsr72341 S22089306 Stationary P21 EBIRD 140.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307737864 2018-08-04 17:05:36 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southeast L879238 H 42.4674118 -76.4183235 2015-04-05 12:25:00 obsr730231 S22700289 Traveling P22 EBIRD 40.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320175720 2018-08-06 22:30:06 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-16 07:50:00 obsr2817239 S23472936 Traveling P22 EBIRD 100.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761212 2021-03-26 07:56:20.588749 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-04 09:00:00 obsr2218212 S22629512 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310185591 2018-08-04 17:09:15 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-15 09:26:00 obsr1119101 S22875024 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307407337 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-04 07:21:00 obsr1807494 S22677499 Traveling P22 EBIRD 255.0 8.047 11.0 1 G1203947 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322342382 2018-08-06 22:30:49 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-22 09:30:00 obsr2357150 S23600549 Traveling P22 EBIRD 210.0 2.414 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319713731 2021-11-09 18:42:19.628792 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-14 07:13:00 obsr1732267 S23447676 Traveling P22 EBIRD 195.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306987152 2021-03-23 17:26:08.495143 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-02 08:00:00 obsr1160328 S22646425 Area P23 EBIRD 120.0 30.3514 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313636113 2022-02-18 10:47:29.953615 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 S C2 S United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-27 18:05:00 obsr1062070 S23099247 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313510076 2021-04-01 11:54:40.172593 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 20 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-27 08:00:00 obsr1620361 S23091467 Traveling P22 EBIRD 210.0 3.219 2.0 1 G1239560 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292824760 2021-03-26 06:29:56.44369 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus N 7 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-01-21 10:45:00 obsr2759466 S21509486 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311006718 2017-05-02 11:19:42 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Genesee US-NY-037 13.0 9605 Francis Rd , Batavia L3360943 P 42.947728 -78.1616086 2015-04-18 10:30:00 obsr393804 S22929895 Traveling P22 EBIRD 40.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322282520 2017-03-15 21:24:53 5664 species avibase-27903EF7 Black-bellied Plover Pluvialis squatarola 1 United States US New York US-NY Jefferson US-NY-045 13.0 Chaumont Barrens Preserve L122968 H 44.1017468 -76.0739772 2015-05-23 16:08:00 obsr1302604 S23597054 Traveling P22 EBIRD 75.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309217011 2021-11-15 03:06:58.889978 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-11 12:38:00 obsr1548221 S22808665 Traveling P22 EBIRD 197.0 1.609 2.0 1 G1215023 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300897546 2018-08-04 16:58:44 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-04 13:07:00 obsr1092576 S22171544 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293095678 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 Female, Adult (3); Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park - Winterdale L2398632 P 40.7811264 -73.9705074 2015-01-24 14:29:00 obsr1548221 S21530798 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323137993 2021-11-09 19:02:27.638861 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-05-24 09:10:00 obsr2343626 S23648860 Traveling P22 EBIRD 173.0 2.736 1.0 1 G1291337 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315447254 2021-03-24 19:48:44.880783 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Manitou Beach, Ontario Blvd. L667384 H 43.3241521 -77.7162155 2015-05-03 10:50:00 obsr1005220 S23206716 Traveling P22 EBIRD 40.0 0.644 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315026966 2021-04-01 10:45:00.916278 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.8768877 -73.7898123 2015-04-12 08:30:00 obsr98313 S23183966 Traveling P22 EBIRD 210.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311921882 2021-06-25 16:14:35.989575 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 13:30:00 obsr2448957 S22988422 Traveling P22 EBIRD 300.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307229456 2015-04-03 17:35:45 32955 species avibase-41062654 Northern Parula Setophaga americana 1 United States US New York US-NY Herkimer US-NY-043 13.0 rt 29 @ snyder rd L2739730 P 43.1324014 -74.8366356 2015-04-03 10:16:00 obsr2694889 S22664421 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302664111 2021-04-01 11:49:53.573686 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 2 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-12 07:10:00 obsr1982614 S22314256 Stationary P21 EBIRD 45.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309803500 2021-03-26 07:42:06.558742 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Washington US-NY-115 13.0 Home L2804337 P 43.2550909 -73.5821857 2015-04-12 07:20:00 obsr2533499 S22848115 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310618308 2021-11-09 21:35:18.646328 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-16 14:45:00 obsr481595 S22904966 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313422904 2021-04-01 11:15:31.646886 7261 species avibase-86D45B8F Green Heron Butorides virescens 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-26 08:30:00 obsr827632 S23086178 Traveling P22 EBIRD 245.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320251437 2015-05-16 17:37:46 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-05-16 16:45:00 obsr1591201 S23476797 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310332663 2015-04-15 22:01:21 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 350 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip B L3559783 P 40.3217 -73.6129 2015-04-11 08:00:00 obsr1760429 S22884894 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304166132 2021-04-01 12:18:57.910168 33216 species avibase-1F09CCCC Wilson's Warbler Cardellina pusilla N X United States US New York US-NY Tompkins US-NY-109 13.0 Newman Municipal Golf Course L2158758 H 42.4561318 -76.5052153 2015-03-19 18:20:00 obsr241086 S22431907 Stationary P21 EBIRD 12.0 2.0 1 G1185731 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305083885 2021-03-26 06:55:00.227271 303 species avibase-B59E1863 Canada Goose Branta canadensis 75 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, Steamboat Landing (Lakeshore Park) L760185 H 42.8741872 -77.2620392 2015-03-24 13:15:00 obsr606693 S22501670 Traveling P22 EBIRD 17.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291302823 2021-03-26 06:29:56.44369 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-16 15:35:00 obsr934639 S21369777 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314878144 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-02 07:45:00 obsr512869 S23176036 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316800647 2021-03-19 16:44:35.607263 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-07 07:11:00 obsr2678807 S23283960 Traveling P22 EBIRD 155.0 0.805 2.0 1 G1257708 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304342366 2021-11-09 18:44:18.633991 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Dutchess US-NY-027 13.0 Tivoli, 2 Madalin Court L3375751 P 42.05994 -73.91404 2015-03-21 08:12:00 obsr267319 S22445652 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309010560 2021-03-24 20:33:47.533911 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-10 18:35:00 obsr241086 S22795184 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1214077 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683759 2021-04-01 12:32:15.282601 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-12 12:45:00 obsr2394424 S21319435 Traveling P22 EBIRD 30.0 3.219 2.0 1 G1107127 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317008577 2021-03-26 06:39:43.334073 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-06 13:40:00 obsr856524 S23295518 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309960824 2020-03-15 09:14:53 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-14 09:52:00 obsr2324853 S22859228 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309010516 2017-09-09 13:29:46 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail, Sherwood Pltform base - West Trail (0.137km) L1369671 P 42.4793682 -76.4546071 2015-04-10 07:51:00 obsr2307843 S22795181 Traveling P22 EBIRD 10.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319278334 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY New York US-NY-061 30.0 Union Square Park L486424 H 40.7361632 -73.9901558 2015-05-13 13:15:00 obsr1481911 S23422677 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324254739 2018-08-06 22:31:29 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis X United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP L246469 H 42.055 -78.7661111 2015-05-30 14:00:00 obsr2537615 S23724199 Traveling P22 EBIRD 360.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293574253 2015-01-27 15:44:00 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Sky High Sod Farm L266552 H 43.1166795 -75.8664751 2015-01-27 11:13:00 obsr2376466 S21568789 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320565922 2018-08-06 22:30:06 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 John Boyd Thacher SP--Overlook L2142779 H 42.6506584 -74.0063524 2015-05-16 07:47:00 obsr2512689 S23493231 Traveling P22 EBIRD 78.0 2.414 2.0 1 G1276030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313645822 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 07:20:00 obsr2228257 S23099855 Traveling P22 EBIRD 297.0 7.242 29.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309377075 2022-03-05 22:03:50.715584 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-12 08:00:00 obsr2219590 S22818792 Traveling P22 EBIRD 210.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314306490 2022-01-20 09:38:40.245267 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-04-30 08:45:00 obsr443017 S23141393 Traveling P22 EBIRD 140.0 2.414 20.0 1 G1244118 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135209 2018-08-04 16:52:43 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-01-04 10:13:00 obsr59643 S21195616 Stationary P21 EBIRD 18.0 6.0 1 G1095942 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313046139 2021-03-24 20:16:00.852773 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 40 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-26 06:58:00 obsr1958124 S23062869 Traveling P22 EBIRD 31.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298068184 2021-04-01 12:32:15.282601 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-02-16 obsr2277801 S21945207 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305963665 2021-03-26 07:07:10.758746 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 10 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-03-29 07:40:00 obsr1958124 S22568985 Traveling P22 EBIRD 7.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289723538 2016-09-12 10:27:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-03 10:30:00 obsr2475075 S21241260 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301632005 2021-03-24 19:28:50.176616 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Columbia US-NY-021 14.0 Larkspur Farm house (private) L3388369 P 42.1897621 -73.5989874 2015-03-08 10:00:00 obsr2842267 S22227344 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310803715 2018-08-04 17:09:34 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 9 Male, Adult (9) United States US New York US-NY Fulton US-NY-035 14.0 Cline Road Marsh/Forest Loop L2499202 P 43.0665479 -74.65976 2015-04-17 16:57:00 obsr1000124 S22917037 Traveling P22 EBIRD 61.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301208982 2021-03-24 21:01:50.671145 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 27 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-27 08:20:00 obsr2497229 S22194415 Traveling P22 EBIRD 120.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302141512 2019-11-29 18:22:33 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Springport: Union Springs: Mill Pond, NYS-90 L1301373 P 42.8451859 -76.6912597 2015-03-08 11:40:00 obsr2760150 S22266984 Stationary P21 EBIRD 13.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307742839 2015-04-09 21:01:19 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 NE Ithaca--Christopher Lane L1107823 P 42.471812 -76.4676332 2015-04-05 14:06:00 obsr1655171 S22700606 Traveling P22 EBIRD 3.0 0.483 2.0 1 G1212791 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321153789 2021-04-01 12:32:15.282601 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-05-17 obsr2906952 S23528083 Historical P62 EBIRD 4.0 1 G1278908 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303532274 2021-03-23 16:21:52.613913 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Ontario US-NY-069 13.0 Johnson Rd, Wells Curtice, Middle Cheshire L3492921 P 42.8098217 -77.3119068 2015-03-16 12:45:00 obsr2486868 S22382851 Traveling P22 EBIRD 70.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316906957 2018-08-04 17:15:07 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-07 07:30:00 obsr2843748 S23289558 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290374374 2021-03-24 21:09:00.82373 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Rensselaer US-NY-083 14.0 Cranston Hill Road L1887322 P 42.5543173 -73.38282 2015-01-11 09:00:00 obsr1787323 S21293825 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288792945 2021-04-01 12:32:15.282601 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Nassau US-NY-059 30.0 Hofstra University L639147 H 40.7145119 -73.6003128 2015-01-03 08:00:00 obsr904434 S21166539 Traveling P22 EBIRD 125.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292257313 2021-04-01 11:30:42.037277 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N 15 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-01-21 08:52:00 obsr1384082 S21443799 Traveling P22 EBIRD 16.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308545049 2021-03-24 20:33:47.533911 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-08 12:20:00 obsr1008519 S22760605 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298428833 2021-03-30 19:43:32.881136 16285 species avibase-5BC4E0EF Willow Flycatcher Empidonax traillii 2 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L462664 P 41.2146028 -73.8659227 2015-02-19 07:45:00 obsr2078798 S21976368 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295547169 2017-03-30 13:04:27 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Woodleton boardwalk (0.17km) L250377 P 42.47638 -76.44913 2015-02-08 08:20:00 obsr2307843 S21725826 Traveling P22 EBIRD 10.0 0.1 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303238987 2015-03-15 11:44:28 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 US-NY-Oakfield-6322 Co Rd 9 L3482655 P 43.107845 -78.282618 2015-03-15 11:39:00 obsr2588479 S22359068 Traveling P22 EBIRD 4.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308857176 2021-03-22 08:58:29.008072 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Harlem Meer L278127 H 40.7971185 -73.9523133 2015-04-10 10:11:00 obsr2105033 S22784165 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308510426 2021-03-24 20:49:01.185993 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 5 United States US New York US-NY Washington US-NY-115 13.0 New Swamp Rd. L3805899 H 43.3275378 -73.5075903 2015-04-08 13:22:00 obsr1222746 S22758011 Traveling P22 EBIRD 40.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292256796 2021-03-26 07:30:35.289997 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 7 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-21 08:33:00 obsr1655171 S21443764 Stationary P21 EBIRD 12.0 2.0 1 G1118455 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316939025 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 15 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 07:15:00 obsr1711339 S23291577 Traveling P22 EBIRD 497.0 8.047 36.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306628641 2021-04-01 11:47:43.260314 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-03-31 10:05:00 obsr2279567 S22619877 Stationary P21 EBIRD 400.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314262744 2021-04-01 11:30:42.037277 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 07:30:00 obsr1102914 S23138654 Traveling P22 EBIRD 240.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311286271 2021-04-01 12:11:50.996293 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Seneca US-NY-099 13.0 Lott Farm (restricted access) L262295 H 42.8790775 -76.794498 2015-04-19 14:25:00 obsr887540 S22947031 Traveling P22 EBIRD 46.0 0.322 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291002484 2021-04-01 11:30:42.037277 30836 species avibase-8F268682 American Pipit Anthus rubescens 100 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-05 11:30:00 obsr2369927 S21344774 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290859571 2015-01-13 16:11:29 668 species avibase-9456DEDF Barrow's Goldeneye Bucephala islandica 1 United States US New York US-NY Wayne US-NY-117 13.0 Catchpole Rd. & Rt. 414 L2877272 P 43.1740217 -76.8888474 2015-01-13 14:15:00 obsr983655 S21333421 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291285878 2015-01-16 14:22:59 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Madison US-NY-053 28.0 Chaphe Hill Rd area L2608295 P 42.8599343 -75.7322574 2015-01-05 09:45:00 obsr2240720 S21368285 Traveling P22 EBIRD 30.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303464762 2021-04-01 11:30:42.037277 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 12 United States US New York US-NY New York US-NY-061 East River, Brooklyn Bridge to S.I. Ferry L3339003 H 40.7039737 -74.0059423 2015-03-16 08:00:00 obsr2179748 S22377156 Traveling P22 EBIRD 56.0 3.235 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289482689 2021-03-23 17:26:08.495143 616 species avibase-25C94A8F Greater Scaup Aythya marila 200 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-01-06 09:45:00 obsr247620 S21222747 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293173623 2021-04-01 11:47:43.260314 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-01-24 09:00:00 obsr1167884 S21536815 Stationary P21 EBIRD 60.0 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289292369 2015-01-05 13:34:57 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 Glen Aubrey L1421889 P 42.2673968 -76.0045008 2015-01-05 11:36:00 obsr800690 S21207497 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317767960 2018-08-06 22:29:18 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-09 05:44:00 obsr1410564 S23338595 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288249304 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field, Kings Co. L1341687 P 40.5925957 -73.8870594 2015-01-01 09:45:00 obsr827632 S21121702 Traveling P22 EBIRD 120.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311142010 2021-03-30 19:22:51.561415 5942 species avibase-0A0B8431 Purple Sandpiper Calidris maritima 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-04-18 15:15:00 obsr991026 S22938175 Stationary P21 EBIRD 45.0 2.0 1 G1225470 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305009789 2021-04-01 11:58:54.966271 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY St. Lawrence US-NY-089 13.0 Judson St. L1944435 P 44.5989093 -75.1599008 2015-03-22 09:00:00 obsr2056110 S22495767 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537132 2015-01-02 17:49:12 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-01-02 10:05:00 obsr2505956 S21145791 Stationary P21 EBIRD 30.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS320715126 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-10 07:00:00 obsr2235775 S23501207 Traveling P22 EBIRD 180.0 3.219 16.0 1 G1275937 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317469277 2021-03-30 19:13:38.458673 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-09 09:45:00 obsr934639 S23321869 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304208024 2021-03-24 20:33:47.533911 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-20 12:55:00 obsr1418810 S22435475 Stationary P21 EBIRD 20.0 2.0 1 G1185958 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298857061 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 160 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-02-21 10:25:00 obsr150415 S22012627 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310890903 2021-03-19 16:19:20.977326 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2146060 H 42.756017 -78.862009 2015-04-18 09:40:00 obsr1603345 S22922725 Traveling P22 EBIRD 138.0 0.483 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303615817 2015-03-16 22:10:28 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Suffolk US-NY-103 30.0 Cove Hollow Farm L786267 P 40.9400884 -72.2210312 2015-03-16 11:30:00 obsr2883401 S22389189 Stationary P21 EBIRD 45.0 2.0 1 G1182787 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300798414 2021-03-23 17:26:08.495143 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 12 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--West End (Field 2) L2597735 H 40.5934333 -73.5209483 2015-03-03 11:00:00 obsr2311078 S22164314 Traveling P22 EBIRD 750.0 4.828 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317744559 2021-03-19 16:29:59.503892 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-09 18:28:00 obsr1302604 S23337457 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298480689 2021-12-03 21:50:44.732892 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-02-19 14:31:00 obsr1893950 S21980807 Traveling P22 EBIRD 7.0 0.644 2.0 1 G1153085 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306962852 2021-03-26 07:07:10.758746 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-02 12:15:00 obsr666331 S22644634 Traveling P22 EBIRD 80.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294401871 2021-04-01 11:15:31.646886 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-01 09:15:00 obsr1407710 S21634021 Traveling P22 EBIRD 165.0 4.828 3.0 1 G1131708 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310227967 2018-08-04 17:09:16 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 8 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Armitage Road, fields and impoundments (Seneca Co.) L366217 H 43.0200861 -76.7794991 2015-04-15 10:50:00 obsr983655 S22877664 Traveling P22 EBIRD 15.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292136239 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 15 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-20 08:30:00 obsr369788 S21434937 Traveling P22 EBIRD 60.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294616911 2019-07-23 17:27:15 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-02-01 15:00:00 obsr2846902 S21651176 Stationary P21 EBIRD 45.0 2.0 0 G1133395 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310908131 2021-11-09 21:57:47.908463 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens X United States US New York US-NY Ulster US-NY-111 US-NY_816 13.0 Ashokan Reservoir L3572387 P 41.95032 -74.20728 2015-04-18 10:45:00 obsr1446126 S22923769 Traveling P22 EBIRD 60.0 8.047 2.0 1 G1224122 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305622737 2021-03-24 20:33:47.533911 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-03-27 15:05:00 obsr1655171 S22543472 Traveling P22 EBIRD 8.0 0.483 2.0 1 G1194213 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291005754 2021-03-26 07:00:33.333856 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay, North Channel Bridge L1396935 H 40.638525 -73.8325786 2015-01-14 10:18:00 obsr2436774 S21345041 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308013884 2015-04-06 14:30:59 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 6 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--CLW office L2388208 P 42.4799683 -76.4513107 2015-04-06 11:40:00 obsr1696616 S22720109 Stationary P21 EBIRD 10.0 3.0 1 G1208160 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291029586 2021-04-01 11:49:53.573686 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-01-13 07:00:00 obsr1982614 S21347066 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135606 2021-03-26 07:56:20.588749 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 16 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-02 09:00:00 obsr2218212 S23589171 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300039640 2021-11-09 22:29:08.190744 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Sullivan US-NY-105 28.0 Yankee Lake - my yard L1100954 P 41.5857896 -74.5484966 2015-02-28 12:30:00 obsr444155 S22106650 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307784948 2018-08-04 17:05:38 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Onondaga US-NY-067 13.0 Chestnut Ridge Road at Creek L3541160 P 43.1118467 -75.9691286 2015-04-05 15:10:00 obsr545221 S22703759 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319138235 2021-11-09 18:33:58.039151 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Dutchess US-NY-027 13.0 Cobb Ridge L2517475 P 42.0382655 -73.8797092 2015-05-12 06:30:00 obsr671490 S23414841 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314385679 2021-03-26 08:11:28.0353 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 Female, Adult (1); Unknown Sex and Age (1) United States US New York US-NY Saratoga US-NY-091 13.0 Coldbrook Preserve, Homestead Rd, Northumberland, NY L3602305 P 43.1294279 -73.6584631 2015-04-30 06:33:00 obsr1222746 S23145816 Rusty Blackbird Spring Migration Blitz P41 EBIRD 107.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311807288 2015-04-21 11:14:26 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA, Baldwinsville, NY L1421279 P 43.2105406 -76.3197934 2015-04-21 09:15:00 obsr2172593 S22981060 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318722991 2021-03-19 16:29:59.503892 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-11 18:16:00 obsr1302604 S23390446 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294241784 2021-03-26 07:17:57.136956 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Seneca US-NY-099 13.0 Cayuga Lake, as seen from CR 141 (destroyed) L1072574 H 42.6359242 -76.6912598 2015-01-31 09:10:00 obsr2211210 S21621604 Stationary P21 EBIRD 6.0 2.0 1 G1130674 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288136479 2021-04-01 12:18:57.910168 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca city golf course L938630 P 42.4550201 -76.5068192 2015-01-01 09:20:00 obsr620377 S21112076 Traveling P22 EBIRD 101.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309157937 2021-03-26 06:52:34.887371 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-03-08 10:00:00 obsr2141910 S22804641 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310474556 2021-04-01 11:15:31.646886 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-16 14:40:00 obsr1055148 S22894673 Traveling P22 EBIRD 120.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312081508 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-22 07:30:00 obsr2976 S22998871 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312761911 2021-03-26 07:46:52.994574 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 19 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-25 06:10:00 obsr1154 S23045928 Traveling P22 EBIRD 170.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522818 2015-04-08 18:13:47 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 10 United States US New York US-NY Richmond US-NY-085 Oakwood Beach L2501874 H 40.5533157 -74.1087484 2015-04-08 10:13:00 obsr155915 S22758866 Stationary P21 EBIRD 5.0 2.0 1 G1211598 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312349293 2021-03-19 16:08:39.161312 631 spuh avibase-2243C710 Aythya sp. Aythya sp. 2 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Dunkirk-5225-5347 County Rd 73 L3585053 P 42.446087 -79.401487 2015-04-23 14:29:00 obsr2588479 S23016879 Stationary P21 EBIRD 43.0 2.0 1 G1233134 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312629447 2021-11-15 03:06:58.889978 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-24 15:30:00 obsr2277801 S23037022 Historical P62 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300899809 2018-08-04 16:58:44 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 1 United States US New York US-NY Suffolk US-NY-103 30.0 Marratooka L143474 P 40.9934692 -72.5238113 2015-03-04 13:22:00 obsr2485753 S22171671 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292240448 2015-01-22 15:45:21 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-01-20 14:55:00 obsr528918 S21442454 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310400033 2021-03-24 19:30:07.33826 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Cortland US-NY-023 28.0 AviCor5 L3513947 H 42.7868405 -75.9281065 2015-04-16 07:10:00 obsr1092576 S22889634 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290842921 2021-03-23 17:32:20.03109 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--Liverpool Marina L837889 H 43.1007479 -76.2093687 2015-01-12 13:30:00 obsr2744341 S21331846 Stationary P21 EBIRD 45.0 3.0 1 G1108299 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS356610869 2021-11-09 21:23:47.89824 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 7 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-18 15:00:00 obsr1904038 S26088214 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302590186 2021-05-10 13:35:55.973042 27616 species avibase-D77E4B41 American Robin Turdus migratorius 13 United States US New York US-NY Schuyler US-NY-097 13.0 Catharine Creek WMA--Rock Cabin Rd. L1359885 H 42.369661 -76.8471749 2015-03-11 17:47:00 obsr2173269 S22308941 Traveling P22 EBIRD 29.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311223689 2022-02-13 06:32:05.759346 16285 species avibase-5BC4E0EF Willow Flycatcher Empidonax traillii 8 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-04-19 09:18:00 obsr1318356 S22943174 Traveling P22 EBIRD 69.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322136396 2021-04-01 12:32:15.282601 622 species avibase-50566E50 Lesser Scaup Aythya affinis 5 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-01 16:00:00 obsr2218212 S23589201 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320534656 2021-03-26 06:20:03.292591 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Franklin US-NY-033 13.0 Dickinson L198982 T 44.74836 -74.56462 2015-05-17 04:30:00 obsr1672399 S23491582 Traveling P22 EBIRD 120.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301295897 2021-04-01 11:15:31.646886 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N X United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-03-06 13:30:00 obsr2448957 S22201120 Traveling P22 EBIRD 270.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302049560 2021-03-26 06:39:43.334073 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-03-07 09:50:00 obsr794187 S22260105 Traveling P22 EBIRD 30.0 0.402 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317012606 2021-04-01 11:30:42.037277 294 issf avibase-CB6F1CBC Cackling Goose Branta hutchinsii Cackling Goose (Richardson's) Branta hutchinsii hutchinsii 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Oven and The Point L1480317 H 40.7756262 -73.9700541 2015-05-07 15:30:00 obsr293770 S23295743 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317038751 2018-08-04 17:15:10 11528 species avibase-F3DA111C Merlin Falco columbarius 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-07 10:23:00 obsr1826325 S23297302 Traveling P22 EBIRD 77.0 3.219 1.0 1 G1256759 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308924252 2021-03-30 19:43:32.881136 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Westchester US-NY-119 30.0 Tarrytown Lakes Park L302456 H 41.0829631 -73.8426401 2015-04-10 17:00:00 obsr1055148 S22788941 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316832201 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY New York US-NY-061 30.0 US-NY-New York-200 Central Park West L3619618 P 40.780774 -73.972515 2015-05-07 11:16:00 obsr700851 S23285591 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296206125 2021-11-09 21:23:47.89824 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 4 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-11 06:45:00 obsr440420 S21777378 Traveling P22 EBIRD 660.0 25.75 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294532760 2021-03-26 07:20:31.408164 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-01-29 07:00:00 obsr1592950 S21644359 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310621263 2015-04-17 10:33:49 26278 species avibase-A381417F House Wren Troglodytes aedon 8 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-04-17 08:45:00 obsr1334267 S22905155 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324203816 2018-08-06 22:31:33 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 42.0379x-78.8898 - May 31, 2015, 9:39 AM L3687037 P 42.037865 -78.889832 2015-05-31 09:39:00 obsr2588479 S23720913 Traveling P22 EBIRD 60.0 1.609 22.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321865050 2017-04-05 14:47:54 286 species avibase-3163ED86 Barnacle Goose Branta leucopsis 6 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-05-21 11:20:00 obsr2083114 S23571948 Traveling P22 EBIRD 60.0 1.931 2.0 1 G1282737 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293088071 2015-01-25 11:59:23 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 5 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF L1341670 H 40.51575 -74.2252678 2015-01-25 09:02:00 obsr1958124 S21530047 Traveling P22 EBIRD 17.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310390789 2021-03-26 07:30:35.289997 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-16 09:09:00 obsr2937317 S22889037 Traveling P22 EBIRD 22.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309994020 2021-11-09 20:56:29.967405 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Rockland US-NY-087 30.0 Lake Nanuet Park L1479375 P 41.0820514 -73.9994477 2015-04-13 18:00:00 obsr1932005 S22861503 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294101224 2021-03-26 06:29:56.44369 7261 species avibase-86D45B8F Green Heron Butorides virescens 2 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-01-30 07:44:00 obsr2595828 S21610055 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291096046 2021-03-24 20:33:47.533911 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Eastern Heights dog walk L2954455 P 42.425232 -76.456589 2015-01-15 07:42:00 obsr1318356 S21352531 Traveling P22 EBIRD 9.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304398135 2021-03-30 19:43:32.881136 27616 species avibase-D77E4B41 American Robin Turdus migratorius 10 United States US New York US-NY Westchester US-NY-119 30.0 Deans Bridge, North Salem L2152201 H 41.3368943 -73.6588245 2015-03-18 17:00:00 obsr2078798 S22449943 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304444906 2021-03-19 16:19:20.977326 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-03-20 10:00:00 obsr1079517 S22453203 Area P23 EBIRD 45.0 48.5623 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302037762 2015-03-09 18:52:51 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Tioga US-NY-107 28.0 US-NY-Nichols - 42.0275x-76.3850 - Mar 9, 2015, 4:12 PM L3469671 P 42.027462 -76.385006 2015-03-09 16:10:00 obsr2871406 S22259155 Traveling P22 EBIRD 3.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310360636 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-04-15 18:40:00 obsr647628 S22886839 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320636370 2021-04-01 11:30:42.037277 11528 species avibase-F3DA111C Merlin Falco columbarius X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-17 14:30:00 obsr512869 S23496988 Traveling P22 EBIRD 135.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319359530 2018-08-06 22:29:50 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Sour Springs Rd. (Genesee Co.) L153399 H 43.125275 -78.37028 2015-05-13 10:00:00 obsr393804 S23427160 Traveling P22 EBIRD 120.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300162021 2018-08-04 16:58:15 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-02-26 08:00:00 obsr1160328 S22116880 Area P23 EBIRD 90.0 30.3514 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1082039346 2021-12-10 08:21:29.396662 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-01-24 10:00:00 obsr469597 S82293856 Historical P62 EBIRD 240.0 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293568084 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-27 12:30:00 obsr2031586 S21568260 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290540985 2019-10-25 15:53:10 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 Canton: Stiles Road farm L1868968 P 44.6350359 -75.1670044 2015-01-10 15:33:00 obsr1558090 S21307837 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310884609 2018-08-04 17:09:43 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 4 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-04-18 11:05:00 obsr1958124 S22922330 Traveling P22 EBIRD 28.0 0.805 3.0 1 G1224795 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS437493257 2021-03-26 08:14:57.071052 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Westchester US-NY-119 30.0 Rye Town Park L1108049 H 40.9600672 -73.6812635 2015-02-03 09:15:00 obsr1544235 S32134758 Traveling P22 EBIRD 190.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322989774 2018-08-04 17:12:08 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Suffolk US-NY-103 30.0 US-NY-Eastport-69-79 E Moriches Blvd L3673506 P 40.820498 -72.738996 2015-04-25 10:00:00 obsr1319071 S23639216 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322012849 2021-03-26 06:21:54.883933 20829 species avibase-B9B272F4 Common Raven Corvus corax 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-22 07:50:00 obsr1516787 S23581515 Traveling P22 EBIRD 190.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319093427 2021-04-01 10:49:39.496318 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-05-09 14:12:00 obsr2683910 S23412401 Traveling P22 EBIRD 23.0 0.805 2.0 1 G1268150 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308017202 2021-03-26 08:14:57.071052 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Westchester US-NY-119 30.0 Backyard L1243032 P 41.1702553 -73.8428879 2015-04-05 15:00:00 obsr1540211 S22720319 Traveling P22 EBIRD 65.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290383189 2018-08-04 16:53:07 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-01-11 10:25:00 obsr1079517 S21295172 Area P23 EBIRD 45.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314382819 2021-04-01 11:15:31.646886 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:30:00 obsr1711339 S23145647 Traveling P22 EBIRD 462.0 6.437 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290448751 2021-11-09 18:02:59.935226 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Dutchess US-NY-027 28.0 Madam Brett Park L1171361 H 41.4886892 -73.9742571 2015-01-11 14:30:00 obsr2770696 S21300359 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311799345 2015-04-21 10:29:49 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-21 08:23:00 obsr1165633 S22980424 Traveling P22 EBIRD 126.0 5.15 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293195458 2021-03-24 19:40:03.542262 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 150 United States US New York US-NY Greene US-NY-039 13.0 Bronck Mill Rd. & Smith Rd.- Coxsackie (town) L828861 P 42.3644104 -73.8440895 2015-01-25 09:08:00 obsr119187 S21538616 Traveling P22 EBIRD 20.0 1.609 2.0 1 G1122887 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322786408 2021-03-26 06:20:10.658048 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Tonawanda WMA--Meadville Rd. and Klossen Rd. L752507 H 43.0968629 -78.4547713 2015-05-25 11:11:00 obsr2588479 S23626507 Traveling P22 EBIRD 28.0 3.058 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295448094 2022-02-08 17:27:20.632176 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 700 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-07 15:53:00 obsr1318356 S21718026 Stationary P21 EBIRD 62.0 2.0 1 G1139138 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303298255 2021-03-24 19:27:13.077399 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-03-15 10:10:00 obsr142874 S22363644 Stationary P21 EBIRD 290.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303900085 2021-03-26 07:56:20.588749 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-03-16 07:30:00 obsr676630 S22411482 Rusty Blackbird Spring Migration Blitz P41 EBIRD 35.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312079021 2018-08-04 17:11:46 23450 spuh avibase-55CCEE2D swallow sp. Hirundinidae sp. 1 United States US New York US-NY Columbia US-NY-021 13.0 Wilson M. Powell Wildlife Sanctuary L357262 H 42.4309937 -73.5655057 2015-04-22 12:00:00 obsr349211 S22998712 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318667857 2021-12-24 11:02:14.483178 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-11 07:00:00 obsr2504709 S23387325 Traveling P22 EBIRD 130.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311164323 2021-03-26 06:29:56.44369 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 2 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-04-18 06:57:00 obsr2595828 S22939593 Stationary P21 EBIRD 500.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308215981 2021-03-23 16:39:03.255227 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-07 09:30:00 obsr1958124 S22735596 Traveling P22 EBIRD 8.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297945848 2021-03-26 08:13:27.160698 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Tioga US-NY-107 28.0 Pembroke Drive, Endicott L2354698 P 42.0747816 -76.1465836 2015-02-14 11:00:00 obsr2069943 S21934571 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300164546 2021-12-10 08:21:29.396662 32973 species avibase-10C601D3 Bay-breasted Warbler Setophaga castanea 5 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-28 08:45:00 obsr114791 S22116997 Stationary P21 EBIRD 75.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312292700 2021-03-23 16:21:52.613913 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 6 United States US New York US-NY Ontario US-NY-069 13.0 **US-NY-ONT Manchester--CR 19 X Freshour Rd., Shortsville [Clifton Springs_CW] L1111756 P 42.953046 -77.2107983 2015-04-23 10:57:00 obsr606693 S23013029 Traveling P22 EBIRD 9.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311530000 2019-03-04 17:55:09 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-20 07:30:00 obsr1918430 S22962041 Traveling P22 EBIRD 45.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288164663 2021-04-01 12:32:15.282601 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-01-01 12:15:00 obsr2394424 S21114595 Traveling P22 EBIRD 25.0 0.402 2.0 1 G1088386 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321824797 2015-09-13 11:57:51 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-20 10:00:00 obsr1079517 S23568944 Area P23 EBIRD 30.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301534547 2021-03-23 17:22:05.708166 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-07 07:35:00 obsr316199 S22219956 Area P23 EBIRD 125.0 2.59 2.0 1 G1169435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305201864 2021-03-24 20:22:27.766056 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Steuben US-NY-101 13.0 My house, Prattsburgh NY L2470082 P 42.5299011 -77.2865868 2015-03-25 09:00:00 obsr1602357 S22510645 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313476111 2021-03-30 19:39:10.250398 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 21 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve--Massapequa Lake L881487 H 40.6669677 -73.4683228 2015-04-26 11:00:00 obsr391865 S23089393 Traveling P22 EBIRD 240.0 6.437 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300267288 2021-04-01 10:47:08.851048 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Caldwell Hill L1981207 H 42.3460957 -76.0689363 2015-03-01 12:20:00 obsr1828453 S22125445 Traveling P22 EBIRD 18.0 1.207 3.0 1 G1163366 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291951322 2019-07-23 17:27:06 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus X United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-01-18 16:15:00 obsr2493328 S21420233 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314691187 2018-08-04 17:13:13 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-05-01 06:29:00 obsr2588479 S23164742 Traveling P22 EBIRD 85.0 4.828 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298146326 2021-04-01 11:24:19.637193 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-02-17 07:30:00 obsr1782363 S21951676 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310536807 2021-03-30 19:39:10.250398 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 10 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-04-16 08:00:00 obsr1494607 S22899395 Traveling P22 EBIRD 145.0 1.609 17.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312443795 2021-03-23 17:15:00.080143 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Rd. L508804 H 43.0489452 -76.7335796 2015-04-22 15:24:00 obsr528918 S23023458 Traveling P22 EBIRD 45.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295399619 2021-12-10 08:21:29.396662 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 4 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-07 11:00:00 obsr258431 S21713991 Traveling P22 EBIRD 240.0 0.805 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309443361 2021-03-24 20:23:39.258075 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 12 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-12 08:00:00 obsr1489009 S22822590 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307379587 2015-04-04 10:08:39 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 10 United States US New York US-NY Madison US-NY-053 28.0 Lake Morraine NW L1783885 P 42.85696 -75.5195 2015-04-04 09:42:00 obsr589593 S22675382 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288598020 2021-11-09 18:33:57.444892 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Dutchess US-NY-027 28.0 Hillside Road, Poughquag, NY L2501868 P 41.6243291 -73.6680937 2015-01-01 11:50:00 obsr2175245 S21150791 Traveling P22 EBIRD 20.0 0.644 3.0 1 G1091102 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288283596 2021-03-26 06:21:54.883933 26278 species avibase-A381417F House Wren Troglodytes aedon 50 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-01 13:30:00 obsr544268 S21124812 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302339266 2021-04-01 11:47:43.260314 26890 species avibase-94A44032 European Starling Sturnus vulgaris 100 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-03-09 15:00:00 obsr2589278 S22289394 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306134719 2021-04-01 11:49:53.573686 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Queens US-NY-081 30.0 Kissena Corridor Park L1285332 H 40.747257 -73.8202286 2015-03-29 12:20:00 obsr1982614 S22581536 Traveling P22 EBIRD 45.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320730015 2018-08-04 17:27:37 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 10 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-16 16:05:00 obsr2321296 S23502014 Stationary P21 EBIRD 25.0 2.0 1 G1276039 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295568940 2022-01-20 13:44:29.539827 32949 species avibase-15EB3000 Hooded Warbler Setophaga citrina 1 United States US New York US-NY Seneca US-NY-099 US-NY_803 13.0 Geneva Lakefront Park, birds over water ONLY (Seneca Co.) L360643 H 42.8659781 -76.9714307 2015-02-08 10:45:00 obsr1034751 S21727506 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312061016 2021-03-23 16:21:52.613913 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Ontario US-NY-069 13.0 HemDale Farms, Leet Rd. L891890 P 42.8422409 -77.0594788 2015-04-22 11:56:00 obsr354090 S22997686 Traveling P22 EBIRD 16.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305839396 2021-03-19 15:59:05.496822 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Allegany US-NY-003 28.0 Cuba Lake L1326387 H 42.2508599 -78.2923025 2015-03-28 11:19:00 obsr955789 S22559683 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317923728 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 07:30:00 obsr2908667 S23346971 Traveling P22 EBIRD 420.0 8.047 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305623622 2021-04-01 10:47:08.851048 303 species avibase-B59E1863 Canada Goose Branta canadensis N 3 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-03-27 13:33:00 obsr2001289 S22543532 Traveling P22 EBIRD 47.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296202215 2021-03-26 06:39:43.334073 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 12 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-02-11 14:35:00 obsr150865 S21776996 Traveling P22 EBIRD 140.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318133913 2021-11-09 17:58:40.313796 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-10 08:30:00 obsr1917973 S23358348 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290994137 2021-03-26 06:59:15.841579 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Oswego US-NY-075 13.0 Fulton NY yard L810572 P 43.3027778 -76.41 2015-01-14 11:30:00 obsr438598 S21344097 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303959568 2021-04-01 11:49:53.573686 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-17 07:22:00 obsr1982614 S22415962 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318764807 2021-04-01 11:30:42.037277 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Arthur Ross Pinetum L826628 H 40.7835168 -73.9667 2015-05-11 07:20:00 obsr2277801 S23392960 Historical P62 EBIRD 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299564155 2021-04-01 12:32:15.282601 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 80 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-25 13:00:00 obsr676630 S22069833 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305140569 2021-11-09 19:21:17.284552 10654 species avibase-448D91B7 Red-headed Woodpecker Melanerpes erythrocephalus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Wappinger Creek L990982 H 41.5824512 -73.9459705 2015-03-24 10:48:00 obsr979921 S22506059 Traveling P22 EBIRD 13.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314301679 2021-04-01 12:32:15.282601 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 6 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-30 08:00:00 obsr1693806 S23141161 Traveling P22 EBIRD 120.0 2.253 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306857350 2021-04-01 12:18:57.910168 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 65 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-01 17:35:00 obsr620377 S22636687 Traveling P22 EBIRD 90.0 1.609 5.0 1 G1202314 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294922176 2019-07-23 17:27:16 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1050 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Harry's Harbor Place docks L2038088 P 42.943151 -78.9095592 2015-02-04 14:30:00 obsr2155111 S21675791 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301784039 2021-11-09 19:42:29.255347 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 10 United States US New York US-NY Orange US-NY-071 13.0 Unico Park-Torches on the Hudson, Newburgh waterfront L1965787 H 41.5045459 -74.0047914 2015-03-08 14:30:00 obsr498923 S22240235 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311053650 2015-04-18 20:28:12 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Pond House L3573738 P 42.6579532 -74.0361866 2015-04-18 08:30:00 obsr1635947 S22932893 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309375546 2021-03-22 09:17:32.016297 7011 species avibase-534FB490 Northern Gannet Morus bassanus 8 United States US New York US-NY Oneida US-NY-065 13.0 Sylvan Beach L509883 H 43.1939135 -75.731163 2015-04-12 10:10:00 obsr1640315 S22818704 Stationary P21 EBIRD 21.0 3.0 1 G1215941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302008284 2015-03-09 13:56:43 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Schoharie US-NY-095 28.0 Burnt-Rossman Hills SF L1225318 H 42.546509 -74.4647838 2015-03-09 10:05:00 obsr2846677 S22256824 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299438461 2021-04-01 10:57:06.520339 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Essex US-NY-031 13.0 Alexandria Ave bridge L2589364 P 43.8362139 -73.4292054 2015-02-24 11:46:00 obsr2693145 S22059978 Stationary P21 EBIRD 19.0 2.0 1 G1160279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313725027 2021-03-24 20:33:47.533911 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-28 06:49:00 obsr455249 S23104980 Traveling P22 EBIRD 10.0 0.37 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301616818 2021-03-26 06:09:25.361188 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-03-08 09:20:00 obsr879105 S22226179 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310910580 2018-03-28 07:13:34 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Towpath Rd. L266832 H 43.0038224 -76.7457005 2015-04-18 10:10:00 obsr204036 S22923901 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295660834 2021-03-26 07:30:35.289997 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 30 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-02-08 15:31:00 obsr2683910 S21734885 Traveling P22 EBIRD 29.0 0.483 3.0 1 G1139324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322787795 2022-02-17 14:32:23.002448 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-25 08:43:00 obsr1605975 S23626582 Traveling P22 EBIRD 137.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288824356 2021-04-01 11:24:19.637193 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 5 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-01-03 08:54:00 obsr1243175 S21171099 Incidental P20 EBIRD 2.0 1 G1093566 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318008184 2021-03-23 17:21:08.587586 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 4 United States US New York US-NY Delaware US-NY-025 US-NY_2792 28.0 Riverview Cemetery, Hancock L2757721 H 41.9527828 -75.3034222 2015-05-08 06:21:00 obsr1788273 S23351800 Traveling P22 EBIRD 56.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310219565 2021-11-02 20:32:06.137153 6503 species avibase-115AF02D Black Tern Chlidonias niger 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-04-15 12:20:00 obsr317968 S22877139 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303720169 2021-03-26 06:07:45.516082 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 12 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-03-17 08:40:00 obsr128156 S22397178 Rusty Blackbird Spring Migration Blitz P41 EBIRD 40.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308165367 2021-03-30 19:19:56.775388 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 6 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, City Pier L357819 H 42.871907 -77.2725534 2015-04-06 10:30:00 obsr528918 S22731238 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319080386 2015-09-13 07:56:32 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-26 09:47:00 obsr1987335 S23411651 Traveling P22 EBIRD 23.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323874608 2021-03-26 07:56:20.588749 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Lido Beach Passive Nature Area L723695 H 40.5923663 -73.5957384 2015-05-29 15:35:00 obsr1095727 S23699988 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305206269 2021-03-19 15:59:05.496822 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Allegany US-NY-003 28.0 Chenunda Drive L1473325 P 42.0884737 -77.9247651 2015-03-24 obsr1310178 S22510991 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312955868 2018-08-04 17:12:16 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 5 United States US New York US-NY Wyoming US-NY-121 13.0 Silver Lake (Wyoming Co.), south L811463 H 42.6814259 -78.0434418 2015-04-25 15:45:00 obsr979921 S23057356 Stationary P21 EBIRD 18.0 2.0 1 G1236018 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295058769 2021-03-26 06:07:45.516082 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio 40 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-02-05 10:30:00 obsr128156 S21688276 Traveling P22 EBIRD 20.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317851790 2021-03-19 16:10:30.527219 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Chemung US-NY-015 28.0 Corning-Waverly Trolly road off of Stanley Roberts Rd. L3628451 P 42.0233312 -76.6874778 2015-05-09 17:30:00 obsr621284 S23343121 Traveling P22 EBIRD 210.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310926620 2015-04-18 13:45:14 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Poquott L2300915 P 40.94677 -73.08682 2015-04-18 12:20:00 obsr1228860 S22924826 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321886091 2021-03-26 06:12:17.833181 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Dunkirk-Crooked Brook Pond L3589983 P 42.463015 -79.322502 2015-04-25 17:10:00 obsr2155111 S23573323 Traveling P22 EBIRD 11.0 0.241 2.0 1 G1282911 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297947747 2021-03-26 07:56:20.588749 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-02-17 07:25:00 obsr1296638 S21934656 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293749971 2021-09-19 18:52:22.654948 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 5 United States US New York US-NY New York US-NY-061 The Battery, Manhattan L288752 H 40.7035452 -74.0159751 2015-01-28 16:05:00 obsr1547078 S21582704 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294399689 2021-03-26 06:29:56.44369 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Monroe US-NY-055 13.0 Back Yard Feeder L2817566 P 43.0407653 -77.5027701 2015-02-01 15:30:00 obsr1269398 S21633869 Stationary P21 EBIRD 30.0 1.0 1 G1132374 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312430096 2021-03-30 19:43:32.881136 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 Male, Adult (2) United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-04-23 10:00:00 obsr2924527 S23022508 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317227859 2021-03-19 16:44:35.607263 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-08 07:30:00 obsr2504709 S23307473 Traveling P22 EBIRD 130.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302394021 2021-04-01 11:49:53.573686 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-03-07 11:40:00 obsr856524 S22293668 Traveling P22 EBIRD 90.0 1.931 3.0 1 G1634054 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292534772 2021-04-01 11:27:18.37144 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Montgomery US-NY-057 13.0 Otsauga Club Road & Lock 15 L834703 P 42.9388076 -74.623239 2015-01-21 13:50:00 obsr1000124 S21486629 Traveling P22 EBIRD 48.0 2.897 4.0 1 G1118967 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323429959 2021-03-24 19:24:40.212356 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-05-27 07:00:00 obsr479109 S23668505 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291712506 2021-11-09 20:19:38.948671 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Orange US-NY-071 28.0 Euclid Avenue L6537484 P 41.4347477 -74.4307208 2015-01-18 08:00:00 obsr1544235 S21401739 Stationary P21 EBIRD 465.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294309127 2015-02-01 08:21:08 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-01-31 08:00:00 obsr1349676 S21626657 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299311686 2015-02-24 00:54:01 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Cayuga US-NY-011 13.0 Rt. 90 Near Deer Trail South L3435913 P 42.6923149 -76.665194 2015-02-23 13:45:00 obsr528918 S22050861 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288210038 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-01-01 14:45:00 obsr41879 S21118408 Stationary P21 EBIRD 20.0 4.0 1 G1089461 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303611980 2022-02-13 06:32:05.759346 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1375 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-03-16 17:47:00 obsr1318356 S22388847 Stationary P21 EBIRD 108.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319232390 2021-04-01 11:30:42.037277 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 07:00:00 obsr1088395 S23420217 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288479727 2021-04-01 11:30:42.037277 6616 species avibase-7E022378 Common Loon Gavia immer X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-02 11:00:00 obsr512869 S21140852 Traveling P22 EBIRD 75.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315760656 2021-04-01 11:15:31.646886 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 5 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-04 06:50:00 obsr1605975 S23223861 Traveling P22 EBIRD 350.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304540630 2021-03-26 06:39:43.334073 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-21 13:12:00 obsr366057 S22460468 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317202220 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Kings US-NY-047 Shore Road Park L616218 H 40.6220738 -74.0406629 2015-05-08 08:15:00 obsr2078092 S23306035 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312183902 2021-03-24 20:21:02.634125 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 20 United States US New York US-NY Schoharie US-NY-095 28.0 1353 State Route 7 L863903 P 42.6528008 -74.5260626 2015-04-22 07:30:00 obsr119187 S23005828 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321440689 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 Coney Island Creek Park L614792 H 40.5813224 -74.0052688 2015-05-20 05:47:00 obsr187432 S23545753 Traveling P22 EBIRD 84.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297700047 2021-04-01 12:39:12.329364 32666 species avibase-5110842F Baltimore Oriole Icterus galbula N 3 United States US New York US-NY Otsego US-NY-077 13.0 Richfield Springs L1942761 P 42.8497925 -74.984436 2015-02-15 08:00:00 obsr1071120 S21912129 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315062423 2021-03-24 20:53:39.352228 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Albany US-NY-001 13.0 Pine Bush Discovery Center L790960 P 42.7179641 -73.861599 2015-05-02 07:30:00 obsr2365285 S23185997 Traveling P22 EBIRD 200.0 3.219 2.0 1 G1247719 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319682244 2021-04-01 11:15:31.646886 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 07:20:00 obsr2078092 S23445854 Traveling P22 EBIRD 420.0 4.828 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311060162 2021-03-26 07:30:35.289997 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca - 42.4373x-76.4722 - Apr 18, 2015, 9:17 AM L3573830 P 42.437253 -76.472323 2015-04-18 09:18:00 obsr2535282 S22933332 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290910533 2021-04-01 11:42:15.525388 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Niagara--Lewiston (NY) L356887 H 43.174301 -79.04921 2015-01-13 12:05:00 obsr1895272 S21337494 Stationary P21 EBIRD 21.0 3.0 1 G1108701 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296997498 2020-05-02 15:38:26 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 7 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-02-15 07:53:00 obsr943683 S21848129 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292914102 2018-08-04 16:55:07 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 50 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-24 10:40:00 obsr436489 S21516678 Traveling P22 EBIRD 80.0 0.75 2.0 1 G1121006 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311426641 2021-11-09 20:55:57.449413 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 5 United States US New York US-NY Rockland US-NY-087 30.0 St. Agatha's L1294038 P 41.0875836 -74.0277886 2015-04-14 17:00:00 obsr1932005 S22955614 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306115588 2017-08-16 16:56:10 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Gilgo Beach--bay side (parking lot) L2026478 H 40.6194672 -73.3941026 2015-03-29 12:30:00 obsr271871 S22580049 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310161528 2021-03-26 07:46:52.994574 6526 species avibase-4D2FF6F1 Common Tern Sterna hirundo 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-04-15 07:00:00 obsr2798912 S22873342 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321926310 2021-04-01 12:28:44.297881 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 8 United States US New York US-NY Chenango US-NY-017 28.0 Stiles Rd thicket L3662259 P 42.3341303 -75.6602481 2015-05-22 06:48:00 obsr1303581 S23575712 Traveling P22 EBIRD 147.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295437528 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 5 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-02-07 14:00:00 obsr1807494 S21717026 Traveling P22 EBIRD 105.0 1.609 3.0 1 G1138080 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291160108 2021-11-09 21:05:38.512979 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Rockland US-NY-087 28.0 US-NY-GE Crotonville L3291925 P 41.199082 -73.959177 2015-01-15 08:30:00 obsr385096 S21357713 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300044227 2021-12-10 08:21:29.396662 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-27 13:30:00 obsr1917973 S22107017 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306789828 2021-11-09 20:58:37.907104 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Rockland US-NY-087 28.0 Stony Point SP L2550812 H 41.2416315 -73.9734417 2015-04-01 13:40:00 obsr1121454 S22631768 Traveling P22 EBIRD 100.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320912296 2021-11-15 03:06:58.889978 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 06:57:00 obsr350767 S23512918 Traveling P22 EBIRD 340.0 0.805 2.0 1 G1277440 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299525552 2015-02-25 12:05:55 592 species avibase-3072CC16 Redhead Aythya americana 8 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-02-25 11:28:00 obsr2574755 S22066894 Traveling P22 EBIRD 36.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305220002 2021-03-26 07:56:20.588749 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 12 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-03-25 09:00:00 obsr247620 S22512068 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317736585 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 07:30:00 obsr360223 S23337035 Traveling P22 EBIRD 240.0 6.437 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290465394 2021-04-01 12:32:15.282601 1796 species avibase-018B3169 Horned Grebe Podiceps auritus N 30 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-11 11:00:00 obsr1544235 S21301701 Traveling P22 EBIRD 90.0 3.219 1.0 1 G1105467 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315761766 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola N X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-04 10:00:00 obsr263005 S23223925 Traveling P22 EBIRD 165.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314582023 2021-03-24 20:11:57.676649 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-30 10:00:00 obsr1633923 S23158577 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321624981 2021-04-01 11:15:31.646886 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia N 30 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-05-19 11:25:00 obsr2259263 S23556923 Traveling P22 EBIRD 45.0 1.609 2.0 1 G1281359 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321889497 2018-08-06 22:30:46 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Hamilton US-NY-041 14.0 Sacandaga River Pathway L947005 P 43.5000676 -74.3573141 2015-05-22 05:30:00 obsr1735540 S23573548 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319205340 2021-03-26 06:21:54.883933 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-13 07:00:00 obsr1407710 S23418573 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315955813 2021-04-01 11:30:42.037277 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Triplets Br. area (btwn 77th-79th St. transv.) L4525727 H 40.779838 -73.9724077 2015-05-02 14:57:00 obsr1548221 S23234695 Traveling P22 EBIRD 12.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294121766 2021-03-30 19:29:33.633096 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 15 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Narrow River Rd L168826 P 41.132015 -72.29454 2015-01-31 10:45:00 obsr2485753 S21612009 Traveling P22 EBIRD 25.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313860491 2021-04-01 11:54:40.172593 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-28 10:03:00 obsr396989 S23113600 Traveling P22 EBIRD_NJ 275.0 4.506 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316907213 2021-04-01 12:32:15.282601 616 species avibase-25C94A8F Greater Scaup Aythya marila 3 United States US New York US-NY Nassau US-NY-059 30.0 East Shore Rd, Great Neck L1414428 P 40.7977755 -73.7126586 2015-05-06 18:00:00 obsr676630 S23289570 International Shorebird Survey (ISS) P74 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303019384 2021-04-01 12:18:57.910168 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 275 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-03-14 11:17:00 obsr1696616 S22342004 Traveling P22 EBIRD 7.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294406083 2021-03-26 06:58:34.561206 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N 26 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-02-01 07:23:00 obsr2588479 S21634375 Traveling P22 EBIRD 177.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318332523 2021-03-26 07:53:57.664705 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-10 06:30:00 obsr72341 S23368937 Stationary P21 EBIRD 780.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309207805 2015-04-11 19:43:26 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-04-11 16:58:00 obsr2426404 S22808036 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313068300 2020-04-10 18:36:08 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-04-25 11:00:00 obsr2172593 S23064268 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309514631 2021-05-21 00:06:20.034424 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Richmond US-NY-085 Mt. Loretto Unique Area L293510 H 40.5072899 -74.2180324 2015-04-12 09:05:00 obsr1807494 S22827412 Traveling P22 EBIRD 141.0 3.219 6.0 1 G1216707 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322673420 2021-03-24 19:35:34.045988 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Erie US-NY-029 13.0 Home L654361 P 42.81914 -78.7520599 2015-05-24 17:15:00 obsr1079517 S23619457 Stationary P21 EBIRD 135.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321321171 2021-03-23 17:20:04.546757 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Cattaraugus US-NY-009 13.0 Zoar v cabin L715757 P 42.4576132 -78.8084507 2015-05-19 12:00:00 obsr1079517 S23538183 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309280349 2021-04-01 12:32:15.282601 6616 species avibase-7E022378 Common Loon Gavia immer 25 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-11 07:15:00 obsr1160328 S22812762 Traveling P22 EBIRD 120.0 24.14 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312444323 2021-04-01 11:30:42.037277 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-23 16:30:00 obsr1135516 S23023487 Traveling P22 EBIRD 120.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304940039 2021-03-26 08:14:57.071052 32869 species avibase-D204A930 Tennessee Warbler Leiothlypis peregrina 1 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-03-23 07:45:00 obsr2918150 S22490224 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310450536 2021-03-30 19:29:33.633096 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-16 07:45:00 obsr247620 S22892905 Traveling P22 EBIRD 105.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321325352 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-05-19 15:30:00 obsr934639 S23538436 Traveling P22 EBIRD 102.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306530352 2021-03-19 16:08:39.161312 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-03-31 12:15:00 obsr1224512 S22612025 Traveling P22 EBIRD 45.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292595502 2015-01-22 10:37:41 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Warren US-NY-113 14.0 Rock Cove L2389714 P 43.5775307 -73.6478806 2015-01-20 10:00:00 obsr2019190 S21491517 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312494204 2021-04-01 12:43:36.236969 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tioga US-NY-107 28.0 US-NY-Spencer-403-407 Fisher Settlement Rd L3093497 P 42.254096 -76.479353 2015-04-24 06:52:00 obsr1092576 S23026833 Stationary P21 EBIRD 4.0 2.0 1 G1233733 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318091704 2021-03-19 16:08:39.161312 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-05-10 11:32:00 obsr2497657 S23356188 Traveling P22 EBIRD 20.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001267 2021-03-26 07:56:20.588749 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-21 16:00:00 obsr2218212 S23775931 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS635682433 2021-11-09 20:16:49.015193 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region--Skinners Lane L616593 H 41.3304039 -74.4442391 2015-01-15 obsr2654361 S46828467 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292993976 2021-03-30 19:37:33.521815 26890 species avibase-94A44032 European Starling Sturnus vulgaris 12 United States US New York US-NY Wayne US-NY-117 Sodus Bay L867215 H 43.2572057 -76.9688416 2015-01-24 15:10:00 obsr545221 S21522658 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291700366 2019-07-23 17:27:04 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point SP L109151 H 41.0719093 -71.8838119 2015-01-18 07:48:00 obsr186539 S21400721 Traveling P22 EBIRD 210.0 4.828 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308410899 2021-03-24 20:58:04.794277 20829 species avibase-B9B272F4 Common Raven Corvus corax 3 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-04-07 14:15:00 obsr1680059 S22750053 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290290199 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-10 13:53:00 obsr924076 S21287709 Traveling P22 EBIRD 238.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311580181 2018-08-04 17:09:27 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-16 13:45:00 obsr2233270 S22965395 Traveling P22 EBIRD 70.0 1.609 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290577247 2022-02-04 06:14:13.892644 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 25 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-01-03 05:09:00 obsr1990642 S21310622 Traveling P22 EBIRD 103.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302507151 2021-04-01 12:32:15.282601 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-11 14:00:00 obsr916370 S22302137 Traveling P22 EBIRD 120.0 3.38 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309123366 2021-11-09 21:50:48.44865 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 4 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-11 08:00:00 obsr2862523 S22802282 Traveling P22 EBIRD 80.0 2.414 30.0 1 G1214172 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314442704 2015-04-30 19:11:26 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 18:30:00 obsr1349960 S23149537 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289852530 2018-08-04 16:52:55 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 8 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-01-08 11:27:00 obsr2914424 S21251889 Traveling P22 EBIRD 27.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297730193 2021-11-09 21:23:47.89824 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-14 17:00:00 obsr1336375 S21915002 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303925492 2022-02-04 06:14:13.892644 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-03-18 13:00:00 obsr568671 S22413355 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1184432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309258663 2021-03-26 07:30:35.289997 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-04-11 08:00:00 obsr2137468 S22811368 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309928635 2021-03-30 19:07:52.958398 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-13 14:15:00 obsr1821546 S22856931 Traveling P22 EBIRD 189.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317352178 2021-12-08 07:58:41.562209 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-07 12:15:00 obsr1706920 S23314534 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294757155 2021-03-26 06:29:56.44369 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-03 15:12:00 obsr934639 S21662395 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308386070 2021-04-01 10:52:24.630268 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Clinton US-NY-019 13.0 Montgomery St., Rouses Point L2211104 H 44.9962893 -73.3600473 2015-04-02 17:30:00 obsr2188170 S22748249 Traveling P22 EBIRD 40.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289052504 2021-04-01 12:14:19.266649 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Suffolk US-NY-103 30.0 Avon Lake, Amityville L3265581 H 40.6748285 -73.4134072 2015-01-04 14:00:00 obsr544268 S21188900 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300702778 2015-03-03 11:25:10 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Saratoga US-NY-091 13.0 Personal residence L1937009 P 42.9576788 -74.0717125 2015-03-03 07:30:00 obsr1557094 S22156809 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290840190 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Theodore Roosevelt Nature Center L1029227 H 40.5885208 -73.546552 2015-01-13 09:42:00 obsr916033 S21331592 Traveling P22 EBIRD 36.0 0.322 4.0 1 G1108283 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305216457 2015-12-23 19:54:35 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Roger Tory Peterson Institute L297845 H 42.1186592 -79.2247821 2015-03-24 17:25:00 obsr2816437 S22511771 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310869101 2018-08-04 17:09:40 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Jefferson US-NY-045 US-NY_759 13.0 Lakeview WMA--South Sandy Creek Fishing Access L1579936 H 43.7140924 -76.1849821 2015-04-18 09:24:00 obsr2945658 S22921365 Traveling P22 EBIRD 74.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311275030 2021-03-24 21:12:00.789723 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 5 United States US New York US-NY Schuyler US-NY-097 13.0 Williamee Rd. x Updyke Rd. fields (NE of intersection) L2687064 H 42.4857069 -76.7084312 2015-04-19 06:19:00 obsr2173269 S22946386 Traveling P22 EBIRD 18.0 0.644 2.0 1 G1226352 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288164895 2021-03-26 07:42:06.558742 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Washington US-NY-115 13.0 Spring St, Hudson Falls L737977 P 43.3054905 -73.5874128 2015-01-01 10:47:00 obsr1222746 S21114611 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311287203 2018-08-04 17:11:14 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft NP L1078447 P 42.8492576 -78.8532543 2015-04-19 11:10:00 obsr1079517 S22947092 Traveling P22 EBIRD 170.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308814597 2021-04-01 12:32:15.282601 6339 species avibase-8535345B Herring Gull Larus argentatus 14 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-10 08:12:00 obsr2574755 S22781256 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294406930 2021-03-30 19:03:28.117389 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-02-01 12:40:00 obsr887540 S21634438 Stationary P21 EBIRD 29.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313199747 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 11:40:00 obsr2934428 S23071911 Traveling P22 EBIRD_VINS 170.0 3.219 2.0 1 G1239566 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319270967 2015-05-13 13:08:54 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-05-06 14:45:00 obsr1817738 S23422275 Traveling P22 EBIRD 45.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296267610 2021-04-01 12:14:19.266649 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree SP 2 L2190050 P 40.6382075 -73.2574368 2015-02-12 13:15:00 obsr1228860 S21782429 Traveling P22 EBIRD 22.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322816521 2021-03-26 06:29:56.44369 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-25 08:34:00 obsr745890 S23628254 Traveling P22 EBIRD 45.0 0.644 1.0 1 G1289062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313041180 2018-08-04 17:12:18 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Tompkins US-NY-109 28.0 Thomas Rd., south (Six Mile Creek ponds & marsh) L388439 H 42.4020377 -76.3778114 2015-04-26 05:55:00 obsr620377 S23062579 Traveling P22 EBIRD 30.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316468967 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-06 07:31:00 obsr41879 S23264694 Traveling P22 EBIRD 105.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313801893 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-25 09:15:00 obsr2984875 S23109867 Traveling P22 EBIRD 150.0 3.219 35.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308301385 2021-03-30 19:13:38.458673 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 17 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-04 10:40:00 obsr1481464 S22741833 Stationary P21 EBIRD 30.0 3.0 1 G2810132 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301370572 2018-08-04 16:58:53 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-07 09:30:00 obsr2724574 S22208021 Stationary P21 EBIRD 75.0 5.0 1 G1168730 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309540890 2021-03-24 20:57:48.241391 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-04-12 17:00:00 obsr1708031 S22829194 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297807720 2021-11-09 22:45:30.412639 6339 species avibase-8535345B Herring Gull Larus argentatus 16 United States US New York US-NY Sullivan US-NY-105 28.0 Wayne county, Pennsylvania, US L3384108 P 41.8143142 -74.74823 2015-02-16 07:30:00 obsr2845684 S21922366 Stationary P21 EBIRD 300.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302896474 2021-04-01 10:55:39.308231 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 80 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-03-13 15:36:00 obsr502830 S22331937 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307491669 2021-03-30 19:13:38.458673 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--South Marina L458871 H 43.3060838 -77.7083373 2015-04-02 13:42:00 obsr2211210 S22683224 Stationary P21 EBIRD 26.0 3.0 1 G1204284 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309237346 2021-03-23 17:00:13.087107 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 28.0 Mount Pleasant L99402 H 42.4581378 -76.3845436 2015-04-11 14:04:00 obsr730231 S22809971 Stationary P21 EBIRD 60.0 2.0 1 G1215129 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304569900 2021-12-23 15:00:47.137144 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-03-21 08:32:00 obsr730231 S22462558 Stationary P21 EBIRD 56.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309229783 2022-02-27 09:35:49.066489 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-04-09 16:00:00 obsr2087436 S22809494 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295019873 2021-03-23 16:52:36.900075 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Captree State Park, Ocean Parkway, NY L2481146 P 40.6452196 -73.297348 2015-02-05 10:30:00 obsr2534001 S21684936 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295340482 2021-03-24 20:33:47.533911 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-02-07 10:00:00 obsr887540 S21709391 Traveling P22 EBIRD 61.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314358678 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 12:00:00 obsr2706811 S23144028 Traveling P22 EBIRD 90.0 1.609 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314300998 2020-03-15 18:48:35 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Ontario US-NY-069 13.0 Ontario Pathways--NY 96, Phelps L348453 H 42.9580206 -77.0920904 2015-04-30 09:12:00 obsr1569772 S23141124 Traveling P22 EBIRD 96.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320963888 2021-04-01 12:31:09.823741 242 species avibase-D3A260BC Snow Goose Anser caerulescens 2 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 Letchworth SP--Trail No. 17 L3653210 H 42.6868725 -77.9552157 2015-05-17 06:00:00 obsr1009338 S23515687 Traveling P22 EBIRD 360.0 27.359 2.0 1 G1277797 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290383185 2018-08-04 16:53:07 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-01-11 10:25:00 obsr1079517 S21295172 Area P23 EBIRD 45.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316138606 2021-04-01 11:15:31.646886 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 3 Male, Adult (1); Female, Adult (2) United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 08:20:00 obsr599682 S23245254 Traveling P22 EBIRD 140.0 2.414 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313721472 2021-04-01 12:11:16.886124 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 6 United States US New York US-NY Schoharie US-NY-095 28.0 1353 State Route 7 L863903 P 42.6528008 -74.5260626 2015-04-28 06:30:00 obsr119187 S23104750 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300082034 2021-03-26 07:00:33.333856 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 6 United States US New York US-NY Queens US-NY-081 30.0 Maspeth Avenue Plank Road L3445793 P 40.720084 -73.923575 2015-02-28 16:20:00 obsr1481911 S22109941 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290096711 2021-03-24 20:33:47.533911 33049 species avibase-136451CF Yellow-throated Warbler Setophaga dominica 20 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-01-09 10:00:00 obsr2137468 S21271552 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309532535 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Kings US-NY-047 Brooklyn (Fort Hamilton/VN Bridge Viewing area) L1474699 P 40.6103648 -74.0365308 2015-03-22 10:25:00 obsr598381 S22828630 Traveling P22 EBIRD 23.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305342399 2021-04-01 12:32:15.282601 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-25 08:30:00 obsr1160328 S22521549 Area P23 EBIRD 210.0 30.3514 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314476429 2021-11-09 20:40:19.719779 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Putnam US-NY-079 28.0 Mahopac Yard L2129075 P 41.3747476 -73.7182617 2015-04-30 08:00:00 obsr1430256 S23151854 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318030417 2018-08-04 17:15:45 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-10 06:40:00 obsr2843748 S23352991 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300971869 2021-03-26 07:56:20.588749 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 6 United States US New York US-NY Nassau US-NY-059 30.0 001home, bethpage, ny L1333196 P 40.719284 -73.4770712 2015-03-04 16:00:00 obsr547602 S22177062 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319146242 2015-09-17 17:22:25 23242 species avibase-94A1C447 Bank Swallow Riparia riparia 3 United States US New York US-NY Jefferson US-NY-045 13.0 Kelsey Creek, Watertown L273304 H 43.9906455 -75.9170911 2015-04-15 09:00:00 obsr585290 S23415216 Traveling P22 EBIRD 480.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314216180 2018-01-12 08:54:36 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Ontario US-NY-069 US-NY_835 13.0 Hemlock Lake, north boat launch and trail L4902044 H 42.7627067 -77.6112749 2015-04-29 10:45:00 obsr39511 S23135634 Traveling P22 EBIRD 80.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295377787 2015-02-13 10:37:22 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Onondaga US-NY-067 13.0 Oswego River at Phoenix Dam L3344137 P 43.2293773 -76.3057705 2015-02-07 09:15:00 obsr545221 S21712277 Stationary P21 EBIRD 15.0 2.0 1 G1137718 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322384949 2021-11-15 03:06:58.889978 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-23 14:30:00 obsr1348614 S23603129 Traveling P22 EBIRD 180.0 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311175399 2021-03-26 06:11:29.8335 6339 species avibase-8535345B Herring Gull Larus argentatus 20 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-04-19 08:46:00 obsr1655171 S22940267 Stationary P21 EBIRD 13.0 2.0 1 G1230116 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310572401 2021-03-23 17:22:05.708166 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 5 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-16 09:15:00 obsr1000124 S22901749 Area P23 EBIRD 90.0 2.59 2.0 1 G1222484 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299576643 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-25 14:15:00 obsr327318 S22070851 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311589090 2021-03-26 07:30:35.289997 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-16 07:27:00 obsr1696616 S22966438 Stationary P21 EBIRD 58.0 4.0 1 G1227832 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294748079 2021-04-01 11:30:42.037277 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-03 12:00:00 obsr2706811 S21661564 Traveling P22 EBIRD 120.0 1.609 20.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311971610 2015-04-27 21:09:57 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-20 08:00:00 obsr1000124 S22991746 Area P23 EBIRD 38.0 2.59 2.0 1 G1230839 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314308154 2016-01-28 21:34:37 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Chenango US-NY-017 28.0 Home woods L3452888 P 42.3471065 -75.6650519 2015-04-30 07:25:00 obsr1303581 S23141492 Traveling P22 EBIRD 170.0 2.736 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315968677 2021-04-01 11:15:31.646886 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 12:00:00 obsr2729716 S23235442 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289944377 2021-03-26 06:29:56.44369 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-01-08 07:40:00 obsr2449897 S21259382 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294331211 2021-11-09 21:43:58.300436 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 1 United States US New York US-NY Ulster US-NY-111 13.0 Black Creek Preserve L2086582 H 41.8236532 -73.9574718 2015-01-31 07:38:00 obsr1136997 S21628501 Traveling P22 EBIRD 67.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300146615 2021-11-09 21:57:18.991937 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 132 United States US New York US-NY Ulster US-NY-111 28.0 Walkill River-- Gardiner L3446732 P 41.682894 -74.162051 2015-02-28 12:42:00 obsr2184966 S22115799 Traveling P22 EBIRD 90.0 0.161 2.0 1 G1163060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319196128 2021-03-19 16:08:39.161312 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-05-12 12:17:00 obsr2497657 S23418018 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303564969 2021-03-30 19:13:38.458673 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 9 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-03-16 13:01:00 obsr745890 S22385260 Stationary P21 EBIRD 180.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309511857 2021-04-01 12:45:19.712958 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve--Fergusons Lake Trail L2930491 H 41.1003343 -73.8233849 2015-04-12 14:30:00 obsr547602 S22827246 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315330467 2021-04-01 11:30:42.037277 681 species avibase-407E2CA8 Common Merganser Mergus merganser N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 08:30:00 obsr369788 S23200535 Traveling P22 EBIRD 210.0 4.828 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293259757 2015-01-25 21:52:10 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 20 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 West Side Rowing Club L1822426 P 42.90086 -78.90172 2015-01-25 10:20:00 obsr2871264 S21543478 Stationary P21 EBIRD 80.0 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307104652 2021-04-01 12:18:57.910168 6408 spuh avibase-E8FAD0BB Larus sp. Larus sp. 1 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-01 17:35:00 obsr1183459 S22655511 Traveling P22 EBIRD 90.0 1.609 5.0 1 G1202314 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292650679 2021-04-01 11:15:31.646886 431 species avibase-90E2543E Blue-winged Teal Spatula discors 200 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-01-22 09:00:00 obsr800463 S21495639 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302591479 2021-11-02 20:32:06.137153 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-03-12 08:50:00 obsr2871406 S22309043 Traveling P22 EBIRD 16.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310952630 2021-03-26 06:58:34.561206 6339 species avibase-8535345B Herring Gull Larus argentatus 17 United States US New York US-NY Orleans US-NY-073 13.0 Wilson Rd. Overpass L2130026 H 43.3631953 -78.2149261 2015-04-18 10:00:00 obsr408487 S22926534 Stationary P21 EBIRD 46.0 4.0 1 G1224262 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324735757 2015-06-03 07:39:33 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 S C2 S United States US New York US-NY Hamilton US-NY-041 US-NY_864 14.0 Helldiver Pond L3693153 P 43.67329 -74.69263 2015-05-31 10:29:00 obsr1062070 S23757063 Traveling P22 EBIRD 39.0 0.966 3.0 1 G1301419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305758235 2021-03-19 16:19:20.977326 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 11 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-03-27 10:15:00 obsr1079517 S22553953 Area P23 EBIRD 35.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321996518 2021-03-24 19:27:13.077399 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-05-22 12:25:00 obsr142874 S23580491 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320248085 2022-01-20 09:38:40.245267 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-16 17:16:00 obsr2950436 S23476622 Stationary P21 EBIRD 12.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300562103 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 35 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-01 11:00:00 obsr609516 S22146475 Traveling P22 EBIRD 90.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323048104 2021-03-26 06:17:19.712573 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Erie US-NY-029 13.0 Green Acres L500059 P 43.013183 -78.8305092 2015-05-25 17:30:00 obsr1831158 S23642902 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322499496 2018-08-04 17:30:10 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 8 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-24 10:42:00 obsr991026 S23609556 Traveling P22 EBIRD 115.0 10.3 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312960858 2021-11-09 21:50:48.44865 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-25 08:10:00 obsr2862523 S23057673 Traveling P22 EBIRD 87.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309170789 2021-11-09 20:58:37.907104 662 species avibase-FB738385 Bufflehead Bucephala albeola 7 United States US New York US-NY Rockland US-NY-087 28.0 Stony Point SP L2550812 H 41.2416315 -73.9734417 2015-04-11 15:00:00 obsr1121454 S22805518 Traveling P22 EBIRD 120.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310831195 2021-03-24 20:16:00.852773 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-18 06:46:00 obsr1958124 S22918813 Traveling P22 EBIRD 7.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321978249 2021-03-19 16:27:31.421791 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-22 11:15:00 obsr2155111 S23579054 Traveling P22 EBIRD 150.0 3.219 2.0 1 G1284995 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321482874 2021-03-19 16:02:45.308962 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-05-20 10:45:00 obsr879105 S23548046 Stationary P21 EBIRD 25.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306926480 2021-03-26 06:39:43.334073 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-02 09:00:00 obsr800463 S22641831 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320924541 2021-12-24 11:02:14.483178 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-16 08:35:00 obsr1962295 S23513565 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321727510 2018-08-06 22:30:42 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-21 07:20:00 obsr1830659 S23559805 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302000763 2021-04-01 12:26:53.827486 27616 species avibase-D77E4B41 American Robin Turdus migratorius 8 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-09 09:54:00 obsr2512689 S22256273 Stationary P21 EBIRD 32.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317790611 2015-05-09 20:02:51 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Hilton-801-827 Walker Lake Ontario Rd L2489389 P 43.322968 -77.860973 2015-05-09 18:43:00 obsr2276013 S23339813 Incidental P20 EBIRD 3.0 0 G1259952 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297910765 2021-03-26 06:52:34.887371 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 12 United States US New York US-NY Niagara US-NY-063 13.0 Home L292333 P 43.3264327 -78.7740913 2015-02-16 07:10:00 obsr2756208 S21931487 Stationary P21 EBIRD 580.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318713349 2021-11-09 18:49:39.300433 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 2 United States US New York US-NY Dutchess US-NY-027 US-NY_2790 28.0 Dennings Point SP L393533 H 41.4888644 -73.9865263 2015-04-28 08:30:00 obsr2786327 S23389881 Traveling P22 EBIRD 60.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313677672 2016-09-12 10:40:04 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Cattaraugus US-NY-009 28.0 Allegany, Southern Tier Expressway L3538197 P 42.09507 -78.53557 2015-04-25 11:57:00 obsr2937317 S23101918 Incidental P20 EBIRD 3.0 0 G1240625 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299216861 2021-11-09 20:12:16.773384 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-02-23 10:58:00 obsr1912104 S22043371 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316553203 2021-12-09 18:39:29.406793 7229 species avibase-AA7901D8 Snowy Egret Egretta thula X United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-06 12:45:00 obsr317968 S23269698 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309794044 2021-03-30 19:29:33.633096 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Terrell River County Park L523654 H 40.7921091 -72.7785873 2015-04-13 16:00:00 obsr2381457 S22847395 Traveling P22 EBIRD 60.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297748392 2015-10-19 18:53:15 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY New York US-NY-061 East River, Brooklyn Bridge to S.I. Ferry L3339003 H 40.7039737 -74.0059423 2015-02-16 13:00:00 obsr1349960 S21916764 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320652471 2022-01-12 18:15:23.330035 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--CR 55 to Bigelow Rd. L1432948 H 44.4167104 -74.1195601 2015-05-17 07:52:00 obsr1222746 S23497940 Traveling P22 EBIRD 59.0 0.917 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305969547 2021-03-23 17:32:20.03109 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Onondaga US-NY-067 13.0 Conners Road at Dead Creek L2751604 P 43.126342 -76.377239 2015-03-29 08:30:00 obsr2172593 S22569430 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361806247 2016-04-22 12:05:44 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-05-01 obsr1645360 S26514354 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288250365 2021-04-01 10:45:00.916278 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr41879 S21121776 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305738997 2021-04-01 11:49:53.573686 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay, Big Egg Marsh L722804 H 40.5963256 -73.8252819 2015-03-28 08:45:00 obsr2574755 S22552360 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300555320 2015-03-10 16:55:19 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 9 United States US New York US-NY Queens US-NY-081 30.0 Jacob Riis Park L247676 H 40.5688131 -73.8710548 2015-03-01 07:50:00 obsr1982614 S22145919 Traveling P22 EBIRD 120.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295443730 2021-03-30 19:39:10.250398 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-02-07 11:00:00 obsr1659461 S21717658 Traveling P22 EBIRD 300.0 14.484 2.0 1 G1138270 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316226663 2021-04-01 12:32:15.282601 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 1 United States US New York US-NY Nassau US-NY-059 30.0 Hofstra University L639147 H 40.7145119 -73.6003128 2015-05-05 17:10:00 obsr904434 S23251120 Traveling P22 EBIRD 44.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307551870 2021-03-24 20:04:09.481678 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-04-04 08:30:00 obsr2812831 S22687389 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295894955 2021-04-01 12:45:19.712958 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 30 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-08 12:45:00 obsr114791 S21752906 Traveling P22 EBIRD 105.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300015553 2021-03-26 07:46:52.994574 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 3 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-02-28 09:15:00 obsr1154 S22104773 Traveling P22 EBIRD 65.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293926958 2021-11-09 20:12:16.773384 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 3 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-01-29 14:04:00 obsr1912104 S21596646 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297272891 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 18 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-15 08:00:00 obsr547602 S21873615 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306775045 2015-04-01 16:59:22 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata X United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP Rice Hill trail L2617704 P 42.5449906 -76.6149965 2015-04-01 15:54:00 obsr2260025 S22630652 Traveling P22 EBIRD 22.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315646806 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 06:00:00 obsr1135516 S23217699 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309054962 2021-05-10 13:35:55.973042 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 15 United States US New York US-NY Schuyler US-NY-097 13.0 Catharine Creek WMA--Rock Cabin Rd. L1359885 H 42.369661 -76.8471749 2015-04-10 18:47:00 obsr2173269 S22798166 Traveling P22 EBIRD 42.0 1.851 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS924138742 2020-05-16 16:25:56 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Times Beach Nature Preserve L811486 H 42.8742747 -78.8825647 2015-05-17 07:40:00 obsr318741 S69165857 Traveling P22 EBIRD 105.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306961491 2015-04-02 14:39:03 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Suffolk US-NY-103 30.0 East Farm Preserve L123033 H 40.90472 -73.14889 2015-04-02 13:27:00 obsr2633969 S22644528 Traveling P22 EBIRD 18.0 1.0 4.0 1 G1201593 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316212205 2021-03-30 19:39:10.250398 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Nassau US-NY-059 30.0 Saint Johns Pond Sanctuary L123034 H 40.85417 -73.46333 2015-05-05 12:17:00 obsr1107696 S23250224 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292232537 2015-01-20 23:39:38 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Columbia US-NY-021 13.0 Lake Taghkanic SP L697297 H 42.092236 -73.708649 2015-01-20 16:00:00 obsr1901122 S21441871 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317409119 2021-12-23 15:00:47.137144 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-05-09 06:45:00 obsr1598543 S23318371 Stationary P21 EBIRD 39.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307669124 2021-03-23 16:45:39.358281 33216 species avibase-1F09CCCC Wilson's Warbler Cardellina pusilla 2 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-Potsdam-2112-2116 Co Rd 35 L3522365 P 44.695116 -75.085367 2015-04-05 10:29:00 obsr1152936 S22695492 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS436434768 2021-04-01 10:51:06.899622 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-02-22 09:02:00 obsr318741 S32056670 Stationary P21 EBIRD 132.0 7.0 1 G1158017 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296900742 2020-05-25 20:37:02 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 25 United States US New York US-NY Ontario US-NY-069 13.0 Geneva Lakefront Park, birds over land ONLY (Ontario Co.) L3156934 H 42.869379 -76.9779798 2015-02-13 13:54:00 obsr1243175 S21840239 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300026121 2015-02-28 11:52:37 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 5 United States US New York US-NY Westchester US-NY-119 30.0 Rye Nature Center L3297793 P 40.9759486 -73.6895514 2015-02-27 13:30:00 obsr1093884 S22105624 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306000496 2021-03-19 16:02:45.308962 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-29 11:10:00 obsr1764243 S22571718 Traveling P22 EBIRD 17.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310900877 2021-03-19 16:02:45.308962 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 12 United States US New York US-NY Broome US-NY-007 28.0 West Corners Marsh L1513804 H 42.1169195 -76.0743913 2015-04-18 12:18:00 obsr1764243 S22923337 Stationary P21 EBIRD 8.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312276613 2021-03-26 06:21:54.883933 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 07:18:00 obsr2692140 S23012045 Traveling P22 EBIRD 215.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS331317134 2022-02-17 14:32:23.002448 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 6 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-03 08:35:00 obsr117100 S24231684 Traveling P22 EBIRD 120.0 1.931 6.0 1 G1095047 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1085669677 2021-03-01 21:02:53.73171 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Erie US-NY-029 13.0 Buckhorn Island SP L164983 H 43.0606218 -78.9882132 2015-05-17 09:45:00 obsr2155450 S82605282 Traveling P22 EBIRD 120.0 4.828 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302493319 2021-03-23 16:30:20.514143 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-11 09:49:00 obsr2945658 S22300957 Stationary P21 EBIRD 232.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316681625 2021-04-01 11:30:42.037277 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 11:50:00 obsr717785 S23277151 Traveling P22 EBIRD 240.0 4.828 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318514959 2021-03-26 06:29:56.44369 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Monroe US-NY-055 13.0 Grandma's house L893383 P 43.1896935 -77.7725896 2015-05-10 11:12:00 obsr1991824 S23379070 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316712168 2015-05-07 06:45:33 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-06 16:00:00 obsr2363365 S23278879 Traveling P22 EBIRD 180.0 0.322 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307658789 2021-04-01 11:47:43.260314 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 70 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-04-05 07:56:00 obsr2224244 S22694823 Traveling P22 EBIRD 53.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302363150 2021-04-01 10:44:41.995232 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Allegany US-NY-003 28.0 Island Park, Wellsville L3479880 H 42.116922 -77.9449514 2015-03-10 16:41:00 obsr1310178 S22291398 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319225911 2021-11-15 03:06:58.889978 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-13 07:25:00 obsr2105033 S23419834 Stationary P21 EBIRD 155.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303591940 2021-04-01 11:15:31.646886 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-16 16:15:00 obsr2448957 S22387301 Traveling P22 EBIRD 165.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319932648 2021-11-09 18:47:29.006727 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Dutchess US-NY-027 28.0 Crown Maple farm L3645570 P 41.70082 -73.61783 2015-05-15 06:06:00 obsr444273 S23459894 Traveling P22 EBIRD 315.0 5.311 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316934893 2021-03-24 21:01:50.671145 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-07 13:30:00 obsr247620 S23291302 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297006454 2021-11-09 19:56:30.323604 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 22 United States US New York US-NY Orange US-NY-071 28.0 watkins Ave Middletown L3369285 P 41.4661241 -74.4098318 2015-02-15 08:05:00 obsr365116 S21848950 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313501666 2021-04-01 12:11:50.996293 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Mays Point Pool and road L99392 H 42.9946205 -76.7637599 2015-04-26 11:32:00 obsr2937317 S23090984 Stationary P21 EBIRD 35.0 2.0 1 G1239483 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304281603 2021-03-26 08:14:57.071052 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-03-20 07:20:00 obsr2918150 S22441293 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317143421 2021-04-01 12:32:15.282601 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-05-02 11:00:00 obsr2555972 S23303045 Traveling P22 EBIRD 60.0 4.828 2.0 1 G1257272 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS306135764 2021-03-30 19:13:38.458673 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Buck Pond L139795 H 43.2809982 -77.6672974 2015-03-28 11:10:00 obsr855356 S22581625 Traveling P22 EBIRD 21.0 0.322 4.0 1 G1196945 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318895447 2021-04-01 11:24:19.637193 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica N 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-12 06:58:00 obsr745890 S23400824 Traveling P22 EBIRD 15.0 0.016 2.0 1 G1267219 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307449876 2018-08-04 17:05:25 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Oak Orchard WMA--Goose Pond overlook L294791 H 43.1245968 -78.2729208 2015-04-04 14:00:00 obsr1195275 S22680324 Stationary P21 EBIRD 22.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314177578 2021-03-23 17:00:13.087107 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-19 07:00:00 obsr1831959 S23133238 Traveling P22 EBIRD 240.0 0.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290959475 2021-11-09 19:14:40.086456 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Dutchess US-NY-027 28.0 Whaley Lake L7687502 H 41.5598196 -73.6628399 2015-01-01 08:30:00 obsr2343626 S21341475 Traveling P22 EBIRD 20.0 0.805 2.0 1 G1108978 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315217063 2021-11-09 18:29:40.19003 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Dutchess US-NY-027 13.0 Barrytown Rd, Red Hook L2139298 P 42.0010507 -73.9219809 2015-05-01 07:55:00 obsr2228949 S23194814 Traveling P22 EBIRD 115.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308859425 2015-04-10 13:25:04 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 1 United States US New York US-NY Suffolk US-NY-103 30.0 Marratooka L143474 P 40.9934692 -72.5238113 2015-04-10 13:18:00 obsr2485753 S22784309 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289488845 2021-03-23 16:33:05.415158 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-01-02 07:45:00 obsr676630 S21223243 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300058920 2017-01-19 11:38:46 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons 2 United States US New York US-NY Oswego US-NY-075 14.0 Pulaski 2873-3051 NY 13 L3445506 P 43.533136 -76.048608 2015-02-28 14:42:00 obsr979921 S22108177 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292733040 2021-03-19 16:43:17.120646 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Madison US-NY-053 28.0 Home to Coulter walkabout L790370 P 42.8733852 -75.8207703 2015-01-22 14:51:00 obsr2716320 S21502071 Traveling P22 EBIRD 82.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317300701 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 06:26:00 obsr870166 S23311617 Traveling P22 EBIRD 235.0 5.954 3.0 1 G1735846 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319513813 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 13 T C3 T United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-14 08:47:00 obsr128156 S23436387 Rusty Blackbird Spring Migration Blitz P41 EBIRD 32.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317655190 2021-03-30 19:13:38.458673 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-09 09:44:00 obsr745890 S23332676 Traveling P22 EBIRD 135.0 0.805 2.0 1 G1259261 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297240253 2021-11-09 22:04:47.967972 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-14 12:04:00 obsr717528 S21869818 Stationary P21 EBIRD 246.0 2.0 1 G1147578 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308043580 2021-03-23 17:32:20.03109 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-06 14:00:00 obsr660214 S22722186 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317119445 2015-10-05 23:47:34 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Madison US-NY-053 28.0 Mason Hill, Hamilton, NY L2591505 P 42.8259191 -75.5196977 2015-05-08 06:30:00 obsr2843748 S23301825 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305610487 2021-04-01 12:18:57.910168 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-03-27 13:26:00 obsr288410 S22542550 Traveling P22 EBIRD 5.0 0.08 2.0 1 G1194165 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310408297 2015-04-16 10:57:39 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-16 09:55:00 obsr1842004 S22890152 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298363954 2015-02-19 07:51:41 431 species avibase-90E2543E Blue-winged Teal Spatula discors 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-02-19 07:10:00 obsr455249 S21970200 Traveling P22 EBIRD 30.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302699370 2018-08-04 16:59:47 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 9 Male, Adult (3); Unknown Sex, Adult (6) United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-03-12 16:07:00 obsr1348614 S22317043 Rusty Blackbird Spring Migration Blitz P41 EBIRD 109.0 3.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS313009518 2021-03-30 19:07:52.958398 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-24 10:45:00 obsr2363365 S23060576 Traveling P22 EBIRD 300.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305466265 2021-03-26 07:43:12.52294 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps X United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-03-26 08:45:00 obsr1721609 S22531357 Stationary P21 EBIRD 214.0 3.0 1 G1193972 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309546584 2021-03-26 06:55:00.227271 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 3 United States US New York US-NY Ontario US-NY-069 13.0 Risser Rd. Swamp, Canandaigua L771877 H 42.9382814 -77.29738 2015-04-12 18:00:00 obsr171901 S22829605 Traveling P22 EBIRD 60.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302377914 2021-04-01 11:24:19.637193 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 2 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-10 17:45:00 obsr1962295 S22292506 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310937173 2021-03-23 17:26:08.495143 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-18 11:45:00 obsr916370 S22925493 Traveling P22 EBIRD 75.0 3.541 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313485375 2021-03-23 17:00:13.087107 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia N 17 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-04-26 15:20:00 obsr2200680 S23089958 Stationary P21 EBIRD 25.0 4.0 1 G1239384 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306195847 2018-08-04 17:04:25 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Chemung US-NY-015 28.0 Chemung R Grove St Fish Access L344480 P 42.0822508 -76.818129 2015-03-28 07:43:00 obsr1587816 S22586266 Stationary P21 EBIRD 54.0 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295588906 2018-08-04 16:55:55 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 120 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-08 12:05:00 obsr2663400 S21729045 Traveling P22 EBIRD 75.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325601127 2018-08-06 22:30:31 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Essex US-NY-031 US-NY_846 14.0 Adirondak Loj L358592 H 44.1829118 -73.9642096 2015-05-18 14:30:00 obsr1190754 S23816023 Traveling P22 EBIRD 180.0 6.437 2.0 1 G1306402 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304529044 2021-03-26 06:29:56.44369 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-03-21 08:00:00 obsr2449897 S22459477 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316781702 2021-03-19 16:54:27.713469 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Montgomery US-NY-057 13.0 Touareuna Rd, west L3555994 P 42.9209407 -74.0884018 2015-05-07 06:20:00 obsr1918430 S23282955 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298635760 2021-03-23 17:22:05.708166 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-02-20 07:45:00 obsr2694889 S21993651 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319548457 2021-03-26 06:17:19.712573 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 4 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-05-14 11:00:00 obsr2096529 S23438362 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314372885 2021-03-23 17:37:19.520785 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo X United States US New York US-NY Saratoga US-NY-091 13.0 Stillwater Riverfront Park L3602195 H 42.9947499 -73.6108142 2015-04-30 13:50:00 obsr634484 S23144949 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293732349 2021-03-26 06:29:56.44369 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-28 15:15:00 obsr934639 S21581006 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291414722 2021-11-09 21:17:58.494129 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 9 United States US New York US-NY Ulster US-NY-111 28.0 Lippincott Rd., Wallkill L1097498 H 41.6194441 -74.1931401 2015-01-15 12:15:00 obsr272939 S21378420 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312744459 2021-03-26 07:30:35.289997 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-25 09:38:00 obsr59643 S23044814 Traveling P22 EBIRD 18.0 0.483 2.0 1 G1235118 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298859095 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-21 12:15:00 obsr150415 S22012797 Traveling P22 EBIRD 75.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309386112 2015-04-12 13:03:18 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Erie US-NY-029 13.0 White Chapel Memorial Park L3557849 P 43.04782 -78.82887 2015-04-12 12:06:00 obsr488746 S22819336 Traveling P22 EBIRD 57.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320465129 2021-04-01 10:47:08.851048 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-17 06:00:00 obsr800690 S23488051 Traveling P22 EBIRD 180.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319679579 2022-02-04 06:14:13.892644 454 species avibase-15EE0D36 Eurasian Wigeon Mareca penelope 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-05-14 12:30:00 obsr2277801 S23445753 Historical P62 EBIRD 40.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319604737 2021-04-01 11:14:02.420281 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Jefferson US-NY-045 US-NY_759 13.0 Robert G. Wehle SP L453148 H 43.8733029 -76.2704372 2015-05-14 07:45:00 obsr490751 S23441440 Traveling P22 EBIRD 180.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298921441 2021-03-24 20:16:00.852773 27616 species avibase-D77E4B41 American Robin Turdus migratorius 40 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-02-22 08:50:00 obsr1958124 S22018002 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290495990 2021-04-01 11:24:19.637193 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 150 United States US New York US-NY Monroe US-NY-055 13.0 Gloria Dr L797990 H 43.1456811 -77.3930168 2015-01-10 14:30:00 obsr1962295 S21304332 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298598862 2021-03-30 19:39:10.250398 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-02-20 12:00:00 obsr1102914 S21990856 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311176085 2018-08-04 17:09:35 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Scriba- Parkhurst Rd- L3570930 P 43.51182 -76.379461 2015-04-17 18:44:00 obsr2700277 S22940314 Traveling P22 EBIRD 10.0 1.609 3.0 1 G1225674 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423516 2018-08-04 17:04:56 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 15 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Yanty Creek Marsh L139805 H 43.3576374 -77.9375696 2015-04-01 11:05:00 obsr1846130 S24163355 Traveling P22 EBIRD 5.0 0.161 3.0 1 G1337415 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302875215 2021-03-23 17:32:20.03109 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-03-11 17:00:00 obsr2589278 S22330260 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293039834 2021-03-30 19:07:52.958398 592 species avibase-3072CC16 Redhead Aythya americana 325 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-24 12:45:00 obsr2908667 S21525949 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310929921 2021-03-26 07:56:20.588749 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-17 14:40:00 obsr916370 S22925008 Traveling P22 EBIRD 65.0 2.092 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322923178 2021-04-01 10:45:00.916278 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-05-25 12:00:00 obsr2797341 S23634916 Traveling P22 EBIRD 360.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319334917 2021-03-24 19:35:34.045988 6324 species avibase-342F6965 Short-billed Gull Larus brachyrhynchus 1 United States US New York US-NY Erie US-NY-029 13.0 Alden - Crittenden Rd. L586154 P 42.9165364 -78.4935379 2015-05-13 15:30:00 obsr2871264 S23425848 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310271397 2021-03-30 19:43:32.881136 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Westchester US-NY-119 30.0 Twin Lakes Park, Eastchester L1298009 H 40.9494471 -73.8027434 2015-04-15 11:00:00 obsr2266808 S22880541 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314571620 2021-04-01 10:47:08.851048 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris N 4 United States US New York US-NY Broome US-NY-007 28.0 Knapp Hill Road L2141512 P 42.24132 -75.85944 2015-05-01 09:56:00 obsr800690 S23157939 Traveling P22 EBIRD 22.0 3.219 1.0 1 G1249228 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313487572 2020-02-27 09:31:34 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Tompkins US-NY-109 13.0 411 Warren Rd. L5045106 P 42.4682762 -76.4646808 2015-04-27 11:20:00 obsr1042912 S23090085 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293520891 2019-07-23 17:27:12 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Suffolk US-NY-103 30.0 Napeague L1082529 T 41.0095 -72.06812 2015-01-25 14:30:00 obsr564905 S21564562 Traveling P22 EBIRD 85.0 3.219 2.0 1 G1128212 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308803938 2021-03-19 16:44:35.607263 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Monroe US-NY-055 13.0 Spencerport L290664 T 43.18646 -77.80393 2015-04-09 17:00:00 obsr595980 S22780374 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309600621 2021-03-26 06:17:19.712573 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 5 United States US New York US-NY Erie US-NY-029 13.0 US-NY-Derby-7290-7292 Beechwood Rd L3559891 P 42.687712 -79.0458 2015-04-12 08:59:00 obsr916033 S22833124 Traveling P22 EBIRD 29.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322302287 2021-03-19 16:44:35.607263 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-23 15:26:00 obsr334398 S23598213 Traveling P22 EBIRD 44.0 0.483 2.0 1 G1472366 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311177965 2021-03-24 20:33:47.533911 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-19 09:51:00 obsr455249 S22940442 Traveling P22 EBIRD 7.0 0.225 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321459736 2016-09-12 10:28:02 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-15 09:30:00 obsr2475075 S23546788 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314940590 2021-03-26 07:30:35.289997 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-29 08:39:00 obsr2683910 S23179268 Traveling P22 EBIRD 25.0 0.322 2.0 1 G1247178 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306760733 2022-03-07 20:38:22.363139 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup West L1244607 P 41.9128946 -73.6813465 2015-04-01 08:00:00 obsr1339050 S22629464 Traveling P22 EBIRD 180.0 3.219 23.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289348728 2021-04-01 11:15:31.646886 6616 species avibase-7E022378 Common Loon Gavia immer 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-05 13:30:00 obsr1807494 S21212144 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311903992 2021-03-30 19:25:27.212017 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-21 09:45:00 obsr396989 S22987247 Traveling P22 EBIRD_NJ 335.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303566218 2021-03-24 20:33:47.533911 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-03-16 17:30:00 obsr455249 S22385353 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306355348 2021-11-20 09:30:27.481745 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake, end of Creekwalk L1331492 H 43.0680178 -76.1778662 2015-03-16 15:18:00 obsr1481464 S22598251 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308580426 2021-04-01 11:49:53.573686 7732 species avibase-A091D50A Northern Harrier Circus hudsonius N 27 United States US New York US-NY Queens US-NY-081 30.0 the house L3549616 P 40.7915852 -73.819668 2015-04-01 06:30:00 obsr202030 S22763223 Stationary P21 EBIRD 660.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305771297 2021-03-24 20:33:47.533911 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-03-28 07:10:00 obsr2377251 S22551839 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303858121 2021-03-23 16:52:36.900075 662 species avibase-FB738385 Bufflehead Bucephala albeola 10 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Captree Island L2865928 H 40.6469348 -73.2632673 2015-03-15 09:13:00 obsr1987335 S22408024 Traveling P22 EBIRD 14.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323170037 2021-04-01 12:26:53.827486 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-05-25 19:30:00 obsr119187 S23651110 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522901 2021-04-01 11:54:40.172593 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Richmond US-NY-085 Arden Ave. Beach L635901 H 40.5276639 -74.1605043 2015-04-08 09:30:00 obsr155915 S22758871 Stationary P21 EBIRD 5.0 2.0 1 G1211602 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299869109 2018-08-04 16:58:21 26890 species avibase-94A44032 European Starling Sturnus vulgaris 95 United States US New York US-NY Kings US-NY-047 The Narrows (Brooklyn) L1918391 H 40.6218575 -74.0503407 2015-02-27 13:30:00 obsr454647 S22093584 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309927537 2015-04-14 18:05:20 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Mexico-3160-64 Main St L3560951 P 43.458881 -76.220304 2015-04-13 10:38:00 obsr1696616 S22856856 Incidental P20 EBIRD 5.0 0 G1218647 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS319654716 2021-03-26 07:52:59.845315 5561 species avibase-E196D6F9 Sandhill Crane Antigone canadensis 2 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-05-14 08:30:00 obsr1680059 S23444255 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294353975 2021-03-26 07:17:57.136956 6616 species avibase-7E022378 Common Loon Gavia immer N 2 United States US New York US-NY Seneca US-NY-099 13.0 Canoga Bait Ponds (Seybolt Rd.) L99394 H 42.8546893 -76.76586 2015-01-30 08:27:00 obsr2683910 S21630287 Traveling P22 EBIRD 10.0 1.609 2.0 1 G1131412 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315358379 2021-04-01 11:15:31.646886 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 06:27:00 obsr41879 S23202004 Traveling P22 EBIRD 320.0 8.047 4.0 1 G1249270 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304055980 2021-04-01 11:54:40.172593 505 species avibase-C732CB10 American Black Duck Anas rubripes 10 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-19 14:50:00 obsr1958124 S22423622 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316304759 2021-03-26 06:17:19.712573 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-05 11:00:00 obsr1379161 S23255669 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297677901 2021-03-30 19:07:52.958398 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-16 14:30:00 obsr454647 S21909836 Traveling P22 EBIRD 110.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300209680 2015-03-01 09:13:50 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Tioga US-NY-107 28.0 US-NY-Owego-271 Front St L3447559 P 42.104094 -76.257765 2015-03-01 09:10:00 obsr1092576 S22120619 Incidental P20 EBIRD 3.0 0 G1163159 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294168453 2021-03-23 16:48:08.60516 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 205 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-01-31 14:59:00 obsr1062070 S21615786 Traveling P22 EBIRD 29.0 1.127 2.0 1 G1131540 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292986340 2015-01-25 10:32:43 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, airport area, Snyder Rd airport Gate O pullout L2231878 P 42.4983231 -76.4650047 2015-01-24 17:06:00 obsr2307843 S21522017 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309491385 2015-04-19 09:58:30 7200 species avibase-49D9148A Great Egret Ardea alba 3 United States US New York US-NY Erie US-NY-029 13.0 Great Baehre Swamp Edge L3558778 P 43.0117473 -78.7304091 2015-04-12 obsr128146 S22825795 Historical P62 EBIRD 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293674977 2021-04-01 11:30:42.037277 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca N 15 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-01-28 08:48:00 obsr1384082 S21576696 Traveling P22 EBIRD 9.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS359629694 2019-07-23 17:28:28 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-25 17:28:00 obsr2022298 S26344765 Traveling P22 EBIRD 84.0 3.219 2.0 1 G1501690 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314508370 2021-03-24 20:33:47.533911 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 NY:TOM:Ithaca: home to Renwick Sanc, Newman Golf, Jetty Wds, Stewart Pk L2136757 P 42.4588006 -76.5057528 2015-04-30 10:03:00 obsr2760150 S23153827 Traveling P22 EBIRD 131.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294466916 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-02-01 11:35:00 obsr1706920 S21639110 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098633 2021-12-23 15:00:47.137144 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 30 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-01-03 11:50:00 obsr2468772 S21192678 Stationary P21 EBIRD 8.0 4.0 1 G1095580 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311778221 2022-02-18 10:47:29.953615 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 S C2 S United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-21 06:58:00 obsr1062070 S22979070 Stationary P21 EBIRD 93.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309170100 2015-04-11 21:02:23 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-04-09 10:24:00 obsr1885846 S22805468 Traveling P22 EBIRD 109.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296067841 2021-11-15 03:06:58.889978 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-10 08:26:00 obsr1548221 S21766580 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309245234 2021-04-01 11:54:40.172593 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-04-11 12:22:00 obsr1032565 S22810540 Traveling P22 EBIRD 83.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290252144 2021-03-23 16:52:36.900075 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 30.0 Chandler Estate L1355478 H 40.9559916 -73.0192018 2015-01-10 11:30:00 obsr1488063 S21284665 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309459195 2021-03-26 07:20:31.408164 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-12 12:30:00 obsr2406624 S22823553 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1216742 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312176024 2021-03-30 19:43:32.881136 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-04-19 15:00:00 obsr2196583 S23005273 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318283491 2021-11-15 03:06:58.889978 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 09:32:00 obsr1548221 S23366244 Traveling P22 EBIRD 153.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294230486 2021-03-30 19:37:33.521815 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-01-31 13:11:00 obsr1092576 S21620690 Stationary P21 EBIRD 65.0 2.0 1 G1130497 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294916512 2021-03-26 06:55:00.227271 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 50 United States US New York US-NY Ontario US-NY-069 13.0 The Swamp L1660257 P 42.8848133 -77.0413991 2015-02-04 09:25:00 obsr572658 S21675335 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295923838 2021-11-09 21:56:50.016506 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 2 United States US New York US-NY Ulster US-NY-111 13.0 Yard Patch L3271028 P 41.953151 -74.110662 2015-02-09 14:00:00 obsr915089 S21755126 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322228695 2021-03-19 16:06:54.047432 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt, Hoag and Dresser Rd. area L573479 H 42.6674167 -76.3267422 2015-05-23 10:39:00 obsr59643 S23594176 Traveling P22 EBIRD 80.0 4.023 9.0 1 G1290855 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306913184 2021-03-23 17:00:13.087107 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Tompkins US-NY-109 13.0 Newman Golf Course L3521201 P 42.4558993 -76.507566 2015-04-01 17:30:00 obsr1183459 S22640813 Traveling P22 EBIRD 120.0 3.219 5.0 1 G1201359 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310411516 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-15 16:15:00 obsr2599832 S22890374 Traveling P22 EBIRD 120.0 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321405087 2021-03-23 17:22:05.708166 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Tricot Trail L2853643 P 43.0934052 -74.7768438 2015-05-17 07:00:00 obsr2694889 S23543391 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301512469 2021-11-09 21:05:38.223485 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Rockland US-NY-087 US-NY_2790 28.0 Bowline Point Park L3284864 H 41.2025824 -73.9587596 2015-03-07 13:45:00 obsr2346161 S22218229 Traveling P22 EBIRD 30.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318065583 2021-03-19 16:27:31.421791 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Sour Springs Rd. (Genesee Co.) L153399 H 43.125275 -78.37028 2015-05-10 09:14:00 obsr1097423 S23354875 Traveling P22 EBIRD 15.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309500761 2021-11-09 19:39:28.581169 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Orange US-NY-071 28.0 Winding Hills County Park L1527914 H 41.534878 -74.2736825 2015-04-12 08:54:00 obsr870166 S22826475 Traveling P22 EBIRD 28.0 3.219 2.0 1 G1216697 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303058766 2021-04-01 12:18:57.910168 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 13 United States US New York US-NY Tompkins US-NY-109 13.0 Portland Point Rd. and Overlook L270445 H 42.5285274 -76.5272433 2015-03-14 13:18:00 obsr1696616 S22345258 Traveling P22 EBIRD 19.0 1.609 2.0 1 G1179148 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321414917 2021-03-24 20:58:04.794277 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Herkimer US-NY-043 13.0 Soncody Road (between Albany and Foster) L2875073 P 42.9502624 -75.1736069 2015-05-19 15:00:00 obsr1680059 S23543987 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306789810 2021-11-09 20:58:37.907104 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Rockland US-NY-087 28.0 Stony Point SP L2550812 H 41.2416315 -73.9734417 2015-04-01 13:40:00 obsr1121454 S22631768 Traveling P22 EBIRD 100.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312563403 2021-03-23 17:26:08.495143 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-24 08:20:00 obsr904434 S23031942 Traveling P22 EBIRD 85.0 2.253 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313799580 2020-07-27 15:41:41 447 species avibase-C235A4D7 Gadwall Mareca strepera 3 United States US New York US-NY Columbia US-NY-021 14.0 Harlem Valley Rail Trail--Copake Falls to Under Mountain Rd. L5803911 H 42.0757413 -73.5303798 2015-04-26 09:10:00 obsr798742 S23109697 Traveling P22 EBIRD 95.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312977908 2021-12-27 20:39:04.096623 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-04-25 13:05:00 obsr642516 S23058733 Traveling P22 EBIRD 15.0 1.287 2.0 0 G1236019 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323992313 2021-11-15 03:06:58.889978 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-25 08:14:00 obsr1384082 S23707549 Traveling P22 EBIRD 233.0 6.437 2.0 1 G1347621 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310251137 2021-03-24 20:49:55.752669 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-04-15 14:42:00 obsr2914424 S22879248 Traveling P22 EBIRD 74.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309921201 2015-04-14 07:03:54 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-04-14 06:57:00 obsr2074043 S22856420 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291033743 2021-04-01 11:42:50.317679 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 50 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-01-14 12:30:00 obsr2812831 S21347468 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871161 2021-03-30 19:39:10.250398 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-15 09:00:00 obsr2218212 S21672032 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298256238 2021-03-26 06:21:54.883933 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 20 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Bird Feeders L3227973 P 40.6595455 -73.9661327 2015-02-18 14:00:00 obsr2585137 S21961044 Stationary P21 EBIRD 60.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318310114 2021-04-01 10:55:39.308231 6291 species avibase-F89FD6E3 Little Gull Hydrocoloeus minutus 2 United States US New York US-NY Erie US-NY-029 13.0 Hunts Corners-Akron Rd. L2083241 P 43.030861 -78.5421569 2015-05-10 16:30:00 obsr2871264 S23367681 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314741045 2015-05-01 20:14:41 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Chenango US-NY-017 28.0 Marshall Andrews Wildlife Park L787595 H 42.2859767 -75.4756665 2015-04-30 07:00:00 obsr1626739 S23167772 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320509765 2021-11-09 19:12:46.823329 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY Dutchess US-NY-027 13.0 Deep Hollow Rd. (Dutchess Co.) L7414423 H 41.8171319 -73.5959005 2015-05-17 10:30:00 obsr1917973 S23490393 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309477499 2021-03-26 06:07:45.516082 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.8978678 -73.9124419 2015-04-12 09:30:00 obsr126810 S22824803 Traveling P22 EBIRD 130.0 1.207 30.0 1 G1216714 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306822124 2021-09-19 18:52:22.654948 616 species avibase-25C94A8F Greater Scaup Aythya marila N X United States US New York US-NY New York US-NY-061 The Battery, Manhattan L288752 H 40.7035452 -74.0159751 2015-04-01 obsr1723136 S22634090 Incidental P20 EBIRD 4.0 0 G2440870 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313788846 2020-06-20 20:01:51 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Chenango US-NY-017 US-NY_2780 28.0 Long Pond SF--Rt. 41 fishing access L3074026 H 42.422518 -75.851062 2015-04-28 08:00:00 obsr1303581 S23109022 Stationary P21 EBIRD 43.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310305802 2015-04-15 20:00:22 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 11 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2737378 P 42.7558333 -78.8616667 2015-04-14 09:15:00 obsr436899 S22882995 Stationary P21 EBIRD 225.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308219728 2018-08-26 20:15:15 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Thomas Rd., south (Six Mile Creek ponds & marsh) L388439 H 42.4020377 -76.3778114 2015-04-07 09:45:00 obsr1655171 S22735928 Traveling P22 EBIRD 11.0 3.54 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291450502 2021-03-26 06:17:19.712573 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Erie US-NY-029 13.0 Sawusch Backyard L819844 P 43.0177877 -78.7195301 2015-01-17 09:30:00 obsr303203 S21381414 Stationary P21 EBIRD 60.0 2.0 1 G1111989 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301843434 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-03-08 12:45:00 obsr1659461 S22244733 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315124474 2021-03-19 16:19:20.977326 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-02 07:30:00 obsr1043007 S23189418 Traveling P22 EBIRD 120.0 1.609 4.0 1 G1248106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS965724840 2020-08-08 18:28:11 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Columbia US-NY-021 13.0 Lake Taghkanic SP L11960155 P 42.0788533 -73.7143798 2015-05-14 obsr712650 S72227845 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302732139 2015-03-12 21:40:05 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 10 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-03-12 18:14:00 obsr1893950 S22319598 Stationary P21 EBIRD 6.0 2.0 1 G1177151 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311905667 2021-03-23 17:26:08.495143 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-21 11:20:00 obsr916370 S22987367 Traveling P22 EBIRD 115.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307920594 2021-03-23 16:39:03.255227 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 15 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-06 07:14:00 obsr1958124 S22713776 Traveling P22 EBIRD 9.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323283618 2021-03-23 17:18:00.959502 5956 species avibase-F35821AA Semipalmated Sandpiper Calidris pusilla 1 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-05-25 06:22:00 obsr119187 S23658364 Traveling P22 EBIRD 153.0 1.77 3.0 1 G1288936 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288844569 2021-03-30 19:39:10.250398 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-01-02 08:00:00 obsr1160328 S21172985 Area P23 EBIRD 105.0 30.3514 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313492123 2021-03-23 16:52:36.900075 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-04-27 08:56:00 obsr1228860 S23090353 Traveling P22 EBIRD 79.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291690922 2021-03-30 19:13:38.458673 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-18 13:45:00 obsr749440 S21400018 Stationary P21 EBIRD 33.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314332678 2021-04-01 11:30:42.037277 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY New York US-NY-061 30.0 Trinity Church, Wall St. L3137653 H 40.7081797 -74.0120803 2015-04-30 12:10:00 obsr2179748 S23142562 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289523875 2021-03-26 07:00:33.333856 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-01-06 16:25:00 obsr1982614 S21226015 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315377116 2021-03-26 07:56:20.588749 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park L693342 P 40.6618894 -73.719635 2015-05-03 14:30:00 obsr2505956 S23202993 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307165318 2015-04-03 13:31:01 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Westchester US-NY-119 30.0 Tarrytown Lakes-Large Lake L1768711 P 41.0827417 -73.8344288 2015-04-02 12:15:00 obsr1932005 S22659879 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314284675 2021-03-23 16:29:02.691496 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 4 United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-30 08:00:00 obsr137150 S23140102 Traveling P22 EBIRD 50.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308636561 2018-08-04 17:08:11 406 species avibase-27B2749A Wood Duck Aix sponsa 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Saratoga US-NY-091 13.0 Fenimore Bridge, Hudson Falls, NY L1476893 P 43.2979263 -73.5901746 2015-04-09 10:02:00 obsr1222746 S22767399 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295166039 2021-03-23 17:41:09.545385 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 1 United States US New York US-NY Westchester US-NY-119 30.0 Valhalla L1293558 P 41.0825132 -73.8110018 2015-02-06 07:40:00 obsr1932005 S21695105 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300697271 2015-03-03 10:37:58 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Monroe US-NY-055 13.0 Oatka Creek Park L140441 H 43.0066986 -77.8019028 2015-02-28 15:15:00 obsr1534851 S22156362 Traveling P22 EBIRD 45.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS798334486 2022-01-09 18:48:43.534861 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY New York US-NY-061 30.0 Greenwich Village (14th St.-Houston St.; Broadway-Hudson River) L3238737 H 40.7342063 -74.0027145 2015-01-01 08:23:00 obsr2686964 S59266105 Traveling P22 EBIRD 133.0 1.609 3.0 1 G4460192 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298240210 2021-03-26 06:29:56.44369 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush Oak Openings Preserve L122970 H 42.9625 -77.67278 2015-02-18 11:00:00 obsr934639 S21959609 Traveling P22 EBIRD 80.0 2.414 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314618067 2021-09-16 18:37:17.374067 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 11 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-29 19:00:00 obsr2919757 S23160614 Traveling P22 EBIRD 129.0 0.322 3.0 1 G1245626 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295936439 2015-02-10 09:19:48 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - boardwalk to white barn pond (0.04km) L1287548 P 42.480817 -76.4502794 2015-02-10 08:30:00 obsr2307843 S21756192 Traveling P22 EBIRD 5.0 0.04 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294786013 2015-02-03 18:13:43 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-02-03 17:25:00 obsr1958124 S21664969 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317212368 2021-11-09 17:58:40.313796 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-08 07:00:00 obsr671490 S23306606 Traveling P22 EBIRD 210.0 4.828 3.0 1 G1258381 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320818238 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-16 05:30:00 obsr2233143 S23507807 Area P23 EBIRD 480.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308690573 2021-12-28 15:50:27.785498 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-09 10:22:00 obsr606693 S22771834 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300290986 2021-03-26 07:20:31.408164 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Suffolk US-NY-103 30.0 45 griffing ave, amityville ny 11701 L3448874 P 40.6822418 -73.3763123 2015-02-13 12:00:00 obsr2442436 S22127313 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320373476 2021-03-30 19:07:52.958398 7429 species avibase-1327AC55 Osprey Pandion haliaetus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 09:17:00 obsr150415 S23483050 Traveling P22 EBIRD 170.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317162169 2019-01-07 15:36:23 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 Unknown Sex, Immature (1) United States US New York US-NY Chautauqua US-NY-013 13.0 College Lodge SUNY L2220962 H 42.3440743 -79.4279337 2015-05-08 10:01:00 obsr2497657 S23304057 Traveling P22 EBIRD 151.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316966395 2021-03-26 07:56:20.588749 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 4 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-07 16:57:00 obsr870166 S23293091 Traveling P22 EBIRD 94.0 2.253 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321420572 2021-03-26 06:12:17.833181 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot--Lighthouse L404931 H 42.4929459 -79.3538404 2015-04-25 14:49:00 obsr334398 S23544366 Traveling P22 EBIRD 33.0 0.483 3.0 1 G1282909 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311272250 2021-03-26 07:16:36.956617 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake Neighborhood Yard L2649561 P 42.83175 -73.95388 2015-04-19 13:15:00 obsr2371917 S22946232 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315191319 2021-12-24 11:02:14.483178 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-02 07:40:00 obsr1894451 S23193330 Traveling P22 EBIRD 128.0 3.219 1.0 1 G1247727 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288756299 2021-03-26 07:56:20.588749 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Nassau US-NY-059 30.0 Grant Park, Hewlett L3155768 H 40.6445543 -73.6884264 2015-01-03 12:06:00 obsr2906952 S21163497 Stationary P21 EBIRD 45.0 4.0 1 G1094313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319264924 2021-03-24 20:58:53.646623 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Livingston US-NY-051 13.0 Groveland, NY L2623278 P 42.7113986 -77.7185619 2015-05-09 07:15:00 obsr1743566 S23421948 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322080603 2021-03-26 06:29:56.44369 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-05-22 15:45:00 obsr934639 S23585614 Stationary P21 EBIRD 87.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300253547 2022-02-18 10:47:29.953615 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-01 12:57:00 obsr1062070 S22124357 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317635137 2021-11-09 18:45:57.777266 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Dutchess US-NY-027 13.0 Abel's Pond L3534603 P 41.7126081 -73.6901951 2015-04-24 obsr191447 S23331559 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308279257 2021-04-01 11:30:42.037277 11528 species avibase-F3DA111C Merlin Falco columbarius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-04-07 08:35:00 obsr1706920 S22740238 Traveling P22 EBIRD 25.0 0.161 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305916528 2018-08-04 17:04:29 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 22 United States US New York US-NY Allegany US-NY-003 28.0 Lagoon Fields, Genesee River, Wellsville L3497799 P 42.113553 -77.9432774 2015-03-28 11:40:00 obsr2700440 S22565539 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314385245 2021-03-26 07:56:20.588749 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-30 08:00:00 obsr1102914 S23145785 Traveling P22 EBIRD 120.0 1.609 23.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291219011 2015-01-15 22:36:25 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-12 09:00:00 obsr1380963 S21362721 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292619391 2021-08-02 08:52:34.789758 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 50 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-01-21 15:14:00 obsr564905 S21493469 Stationary P21 EBIRD 38.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306155881 2021-03-30 19:13:38.458673 242 species avibase-D3A260BC Snow Goose Anser caerulescens 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 15:17:00 obsr334398 S22582411 Stationary P21 EBIRD 45.0 3.0 1 G1197122 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314321631 2021-03-30 19:07:52.958398 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:15:00 obsr2152799 S23141976 Traveling P22 EBIRD 240.0 6.437 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313211738 2021-11-09 21:23:47.89824 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 5 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-04-15 11:00:00 obsr1562881 S23072589 Stationary P21 EBIRD 60.0 3.0 1 G1237350 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290682720 2018-08-04 16:53:05 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-01-11 09:13:00 obsr67057 S21319350 Stationary P21 EBIRD 12.0 12.0 1 G1105488 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291475294 2015-01-17 19:35:33 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-45 N Mohawk St L3298386 P 42.7793 -73.701932 2015-01-17 15:32:00 obsr1165633 S21383433 Stationary P21 EBIRD 17.0 15.0 1 G1112531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323955329 2021-03-26 06:29:56.44369 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Monroe US-NY-055 13.0 near pond at Mill Landing L2103068 P 43.235551 -77.702571 2015-05-13 07:30:00 obsr1721347 S23705393 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297108054 2021-04-01 10:47:08.851048 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 15 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-02-15 12:45:00 obsr800690 S21858356 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294466910 2021-04-01 11:30:42.037277 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris N 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-02-01 11:35:00 obsr1706920 S21639110 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294861801 2021-03-26 07:30:35.289997 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Tompkins US-NY-109 13.0 my back yard Trumansburg L2594789 P 42.5410818 -76.6596392 2015-02-04 10:25:00 obsr2260025 S21671287 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323523187 2018-08-06 22:31:17 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Great Dune L1279825 H 42.7096964 -73.8888052 2015-05-28 08:08:00 obsr1119101 S23674837 Traveling P22 EBIRD 110.0 1.609 101.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306731211 2021-04-01 11:15:31.646886 505 species avibase-C732CB10 American Black Duck Anas rubripes 11 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-01 09:00:00 obsr827632 S22627564 Traveling P22 EBIRD 240.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313041309 2021-01-13 14:57:05.695968 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Chautauqua US-NY-013 13.0 Little Big Inlet Wetland Preserve L4094063 H 42.2607785 -79.4870431 2015-04-26 06:22:00 obsr1092576 S23062586 Traveling P22 EBIRD 5.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320121394 2018-08-06 22:30:11 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Chemung US-NY-015 28.0 Sullivanville Dam L312295 H 42.1930881 -76.7819872 2015-05-16 11:22:00 obsr1318356 S23470269 Traveling P22 EBIRD 21.0 0.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317288618 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-08 16:00:00 obsr1731572 S23310949 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310856954 2021-03-30 19:29:33.633096 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Captree Island L2865928 H 40.6469348 -73.2632673 2015-04-18 09:13:00 obsr613775 S22920522 Traveling P22 EBIRD 32.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308906538 2015-04-10 16:54:36 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Tompkins US-NY-109 13.0 CLO Office-2M15 L1313831 P 42.4800694 -76.4515024 2015-04-10 obsr2074043 S22787619 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332422943 2021-04-01 11:24:19.637193 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-10 17:10:00 obsr334398 S24314141 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323299964 2021-03-19 16:27:31.421791 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-05-27 07:31:00 obsr2588479 S23659460 Traveling P22 EBIRD 65.0 3.219 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310948972 2021-03-24 20:11:19.423282 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 1 United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-18 10:48:00 obsr2588479 S22926305 Traveling P22 EBIRD 87.0 1.448 4.0 1 G1224261 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306055282 2015-05-09 11:58:16 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-03-29 11:45:00 obsr1043007 S22575407 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302539954 2021-12-10 08:21:29.396662 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-11 18:30:00 obsr258431 S22304889 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305610287 2015-03-27 14:23:23 6339 species avibase-8535345B Herring Gull Larus argentatus 34 United States US New York US-NY Niagara US-NY-063 13.0 US-NY-Middleport-3784-3874 Carmen Rd L3518121 P 43.223973 -78.4898 2015-03-27 14:21:00 obsr2588479 S22542538 Stationary P21 EBIRD 1.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322445917 2018-08-06 22:31:00 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-24 07:47:00 obsr1097423 S23606598 Traveling P22 EBIRD 104.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309667662 2021-04-01 11:42:50.317679 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-13 06:59:00 obsr1640315 S22837554 Stationary P21 EBIRD 80.0 1.0 1 G1217869 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309941548 2021-03-26 07:30:35.289997 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 20 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-14 08:23:00 obsr1655171 S22857952 Traveling P22 EBIRD 32.0 0.483 2.0 1 G1220019 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310708983 2015-05-13 20:19:57 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-04-17 15:00:00 obsr2172593 S22910692 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135374 2021-03-26 07:56:20.588749 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 8 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-28 16:00:00 obsr2218212 S23589164 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325151120 2019-07-23 17:28:19 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 17 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip G L3559870 P 40.435667 -73.336683 2015-04-11 15:00:00 obsr109265 S23786941 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314383939 2022-03-05 22:03:50.715584 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-30 08:30:00 obsr2219590 S23145698 Traveling P22 EBIRD 210.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316982984 2021-03-24 19:48:44.880783 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-07 07:00:00 obsr1410564 S23294044 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310705174 2021-03-24 20:11:19.423282 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe X United States US New York US-NY Orleans US-NY-073 13.0 Gaines-Waterport Rd L2408367 P 43.2855406 -78.2156423 2015-04-17 12:00:00 obsr137150 S22910455 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298847341 2021-03-23 16:39:03.255227 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-02-21 07:38:00 obsr1893950 S22011871 Traveling P22 EBIRD 3.0 0.322 2.0 1 G1155373 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306340756 2018-08-04 17:04:45 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 11 Female, Adult (2); Male, Adult (9) United States US New York US-NY Onondaga US-NY-067 28.0 Tully Lakes L1129390 P 42.79011 -76.1278725 2015-03-30 09:22:00 obsr1178949 S22597120 Traveling P22 EBIRD 83.0 8.1 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296122290 2021-03-26 06:07:45.516082 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-02-11 09:40:00 obsr128156 S21770731 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303056470 2021-04-01 11:24:19.637193 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 24 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-14 07:35:00 obsr302343 S22345094 Traveling P22 EBIRD 85.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309827829 2021-04-01 12:18:57.910168 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis N 9 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-13 08:18:00 obsr1076139 S22849831 Stationary P21 EBIRD 55.0 5.0 1 G1218226 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299194335 2021-03-30 19:43:32.881136 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 12 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-23 10:45:00 obsr2133003 S22041617 Stationary P21 EBIRD 10.0 9.0 1 G1157697 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306315980 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 20 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-30 11:20:00 obsr934639 S22595253 Traveling P22 EBIRD 94.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290178102 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 11 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-10 07:30:00 obsr259298 S21278332 Stationary P21 EBIRD 75.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310450551 2021-03-30 19:29:33.633096 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 8 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-16 07:45:00 obsr247620 S22892905 Traveling P22 EBIRD 105.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313630421 2021-03-30 19:22:51.561415 7429 species avibase-1327AC55 Osprey Pandion haliaetus 8 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr1481512 S23098881 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305165689 2021-03-24 20:33:47.533911 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-24 09:15:00 obsr881968 S22507924 Traveling P22 EBIRD 40.0 0.161 10.0 1 G1191770 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306465212 2021-11-09 21:50:48.44865 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-31 06:30:00 obsr1482758 S22607237 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313098451 2015-04-30 10:50:19 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 10 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-26 09:40:00 obsr1092576 S23066023 Stationary P21 EBIRD 26.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312537775 2018-08-04 17:11:59 23291 species avibase-58C502EA Barn Swallow Hirundo rustica X United States US New York US-NY Bronx US-NY-005 US-NY_869 30.0 South Brother Island L3586782 P 40.7963886 -73.8979107 2015-04-24 10:00:00 obsr2436774 S23030068 Incidental P20 EBIRD 6.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312984998 2015-04-25 21:51:24 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo X United States US New York US-NY Broome US-NY-007 28.0 Jones Park L716848 P 42.0111915 -75.9924424 2015-04-25 12:10:00 obsr1626739 S23059180 Traveling P22 EBIRD 23.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315900534 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 17:25:00 obsr2796494 S23231566 Traveling P22 EBIRD 125.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290289363 2021-04-01 12:14:19.266649 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Suffolk US-NY-103 30.0 Patchogue Lake L852362 H 40.7684842 -73.0212522 2015-01-10 10:00:00 obsr2846902 S21287634 Stationary P21 EBIRD 60.0 5.0 1 G1104112 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317523284 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 05:40:00 obsr2512689 S23325396 Traveling P22 EBIRD 290.0 4.828 1.0 1 G1258875 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310162017 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-04-14 07:05:00 obsr1245041 S22873386 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316312480 2021-03-19 16:19:20.977326 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-05 14:00:00 obsr1379161 S23256180 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317990959 2021-04-01 11:24:19.637193 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-09 08:43:00 obsr745890 S23350930 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304096356 2021-04-01 11:15:31.646886 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Kings US-NY-047 30.0 Bush Terminal (43rd St access) Park L3254340 P 40.6517318 -74.0183258 2015-03-19 13:45:00 obsr827632 S22426672 Traveling P22 EBIRD 60.0 1.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS306134350 2021-12-23 15:00:47.137144 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 40 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-03-29 11:50:00 obsr730231 S22581514 Traveling P22 EBIRD 296.0 0.08 3.0 1 G1196949 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313732028 2015-04-28 08:52:57 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-04-28 08:45:00 obsr1349676 S23105462 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304462734 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-21 10:50:00 obsr2635084 S22454513 Traveling P22 EBIRD 60.0 0.966 3.0 1 G1187572 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305370062 2021-04-01 11:54:40.172593 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus N 6 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-03-24 08:00:00 obsr666331 S22523820 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320715124 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-10 07:00:00 obsr2235775 S23501207 Traveling P22 EBIRD 180.0 3.219 16.0 1 G1275937 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295037366 2021-03-26 07:20:31.408164 6189 species avibase-39F29B55 Common Murre Uria aalge 1 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven, Old Stump Road L1796581 P 40.774188 -72.89986 2015-02-03 07:10:00 obsr613775 S21686380 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300910234 2021-03-23 16:52:36.900075 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 6 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Road L552975 P 40.8179665 -72.5592041 2015-03-04 12:30:00 obsr717785 S22172468 Traveling P22 EBIRD 80.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321729812 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 S7 C3 S7 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-21 14:03:00 obsr128156 S23563115 Traveling P22 EBIRD 40.0 0.75 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313801909 2021-04-01 12:45:19.712958 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Westchester US-NY-119 30.0 Sarah Lawrence College, Yonkers L2374154 H 40.9361988 -73.843399 2015-04-28 13:30:00 obsr1348614 S23109868 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314172599 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 15:25:00 obsr2051630 S23132893 Traveling P22 EBIRD 130.0 1.931 1.0 1 G1243225 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323232700 2021-03-23 17:23:45.772216 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-26 16:50:00 obsr72341 S23655062 Stationary P21 EBIRD 130.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288568595 2021-03-30 19:29:33.633096 681 species avibase-407E2CA8 Common Merganser Mergus merganser 25 United States US New York US-NY Suffolk US-NY-103 30.0 Hook Pond L283133 H 40.9461611 -72.1907833 2015-01-02 12:00:00 obsr152435 S21148509 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303917693 2018-08-04 17:01:54 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-03-18 17:15:00 obsr2908667 S22412779 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS357543866 2021-03-30 19:13:38.458673 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-05-06 12:30:00 obsr1034425 S26160542 Historical P62 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314155919 2021-03-30 19:39:10.250398 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Nassau US-NY-059 30.0 massapequa preserve L1064441 P 40.672306 -73.4298706 2015-04-29 14:15:00 obsr1494607 S23131823 Traveling P22 EBIRD 35.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296230915 2018-08-04 16:56:02 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 20 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Zachs Bay L610793 H 40.6014415 -73.4918618 2015-02-10 15:30:00 obsr2846533 S21779298 Traveling P22 EBIRD 60.0 24.14 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323940192 2018-08-04 17:30:40 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kanyoo Trail L152120 H 43.1168988 -78.430624 2015-05-30 10:33:00 obsr1092576 S23704472 Traveling P22 EBIRD 43.0 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305594292 2015-03-27 12:39:26 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 4 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-03-27 12:37:00 obsr1349676 S22541315 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313485439 2021-03-01 11:20:54.007808 447 species avibase-C235A4D7 Gadwall Mareca strepera 3 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-26 16:00:00 obsr2724574 S23089959 Stationary P21 EBIRD 5.0 4.0 1 G1239385 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305801261 2021-03-26 07:30:35.289997 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-03-28 07:30:00 obsr800690 S22556908 Stationary P21 EBIRD 30.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS391280450 2019-03-12 12:18:05 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Pomfret-5224 Van Buren Rd - 42.4471x-79.4015 L4488044 P 42.447109 -79.401491 2015-04-24 02:00:00 obsr1616864 S28948339 Stationary P21 EBIRD 50.0 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS340588641 2021-03-26 06:13:28.501496 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 2 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.1752556 -76.8558787 2015-05-12 06:50:00 obsr2736418 S24908996 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316762056 2021-03-22 09:17:32.016297 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 2 United States US New York US-NY Oneida US-NY-065 13.0 Whitestown L210157 P 43.17351 -75.4187135 2015-04-29 obsr1384380 S23281728 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317074592 2021-03-26 07:46:52.994574 32858 slash avibase-B03EC52E Golden-winged/Blue-winged Warbler Vermivora chrysoptera/cyanoptera 5 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-05-08 05:25:00 obsr1154 S23299359 Traveling P22 EBIRD 40.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306955007 2021-04-01 10:45:00.916278 526 species avibase-56CCA717 Northern Pintail Anas acuta 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-02 11:10:00 obsr128156 S22644029 Rusty Blackbird Spring Migration Blitz P41 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304865680 2015-11-20 10:54:09 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 27 United States US New York US-NY Suffolk US-NY-103 30.0 Santapogue Creek, Babylon L4005096 H 40.6772893 -73.3495235 2015-03-21 12:18:00 obsr1987335 S22484189 Traveling P22 EBIRD 7.0 0.483 2.0 0 G1190131 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303996994 2018-08-04 17:01:55 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Trumansburg-1679 Taughannock Blvd L3498255 P 42.540727 -76.592098 2015-03-19 07:14:00 obsr1562696 S22418609 Stationary P21 EBIRD 23.0 1.0 0 G1190197 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312311148 2021-03-30 13:50:38.713554 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 18 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-23 11:25:00 obsr647628 S23014251 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290013641 2015-01-09 13:52:54 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA, Baldwinsville, NY L1503507 P 43.201116 -76.3066806 2015-01-09 13:00:00 obsr2172593 S21264986 Traveling P22 EBIRD 45.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322432521 2021-03-19 16:28:51.38749 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Greene US-NY-039 13.0 New Baltimore Yard L7304489 P 42.4429607 -73.7862812 2015-05-24 07:45:00 obsr1181085 S23605875 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS626888381 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 10:30:00 obsr251507 S46244575 Traveling P22 EBIRD 90.0 1.609 2.0 1 G3252559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310674911 2021-04-01 11:54:40.172593 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-17 14:15:00 obsr1958124 S22908442 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293332747 2017-11-27 07:55:42 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Suffolk US-NY-103 Lake Montauk Inlet, west side L1091365 H 41.0764396 -71.9386482 2015-01-25 08:15:00 obsr2406624 S21548822 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302319290 2021-04-01 12:41:58.738824 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 45 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-03-10 10:05:00 obsr1334267 S22285580 Stationary P21 EBIRD 47.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303116216 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-14 13:30:00 obsr334398 S22349645 Stationary P21 EBIRD 25.0 2.0 1 G1179459 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298647526 2021-03-26 07:07:10.758746 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 2 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-02-20 17:20:00 obsr1958124 S21994693 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305838962 2021-03-26 06:12:17.833181 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-28 15:52:00 obsr2497657 S22559647 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308008793 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-06 09:21:00 obsr119187 S22719746 Traveling P22 EBIRD 124.0 1.931 2.0 1 G1208105 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303911663 2021-11-09 18:32:19.957904 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Dutchess US-NY-027 13.0 Vanderbilt Mansion, Hyde Park, NY L2301051 P 41.8029545 -73.9391524 2015-03-18 09:15:00 obsr1339050 S22412316 Traveling P22 EBIRD 135.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304356385 2021-03-19 16:44:35.607263 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 9 United States US New York US-NY Monroe US-NY-055 Webster Park--Mill Creek Outlet L1043589 H 43.2608858 -77.4510384 2015-03-21 08:40:00 obsr302343 S22446743 Traveling P22 EBIRD 35.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303016749 2021-04-01 12:18:57.910168 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-03-14 10:31:00 obsr1042912 S22341775 Traveling P22 EBIRD 34.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299770551 2021-03-23 16:52:36.900075 303 species avibase-B59E1863 Canada Goose Branta canadensis 80 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point, lighthouse overlook L2451456 H 41.0709727 -71.8565091 2015-02-26 13:00:00 obsr647628 S22085870 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318286314 2018-08-06 22:29:34 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-10 09:05:00 obsr983655 S23366393 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323123900 2021-04-01 11:47:43.260314 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 9 Female, Adult (1); Male, Unknown Age (8) United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-04-17 obsr2409011 S23647961 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298477358 2021-09-29 04:58:21.533581 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY New York US-NY-061 Governors Island (open year-round) L555894 H 40.6885372 -74.0189759 2015-02-18 10:07:00 obsr259298 S21980560 Traveling P22 EBIRD 127.0 2.494 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312857689 2021-03-26 08:14:57.071052 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Westchester US-NY-119 30.0 US-NY-Hawthorne - 41.0903x-73.7925 - Apr 25, 2015, 3:48 PM L3589614 P 41.090258 -73.792503 2015-04-25 15:00:00 obsr258431 S23051506 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317500034 2021-03-30 19:13:38.458673 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-09 06:03:00 obsr1545618 S23324158 Traveling P22 EBIRD 146.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304693290 2021-04-01 11:24:19.637193 7429 species avibase-1327AC55 Osprey Pandion haliaetus N 4 United States US New York US-NY Monroe US-NY-055 13.0 N Hamlin Rd. creek crossing L3503615 H 43.3391176 -77.9152362 2015-03-21 14:50:00 obsr730231 S22471622 Traveling P22 EBIRD 28.0 0.161 4.0 1 G1188672 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294311730 2015-03-08 18:08:22 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy--parking lot area L92439 H 40.9560877 -73.7037898 2015-02-01 08:03:00 obsr1982614 S21626858 Stationary P21 EBIRD 40.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303468226 2021-03-26 06:39:43.334073 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-03-15 11:05:00 obsr1706920 S22377876 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311198428 2018-08-04 17:11:13 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-04-19 09:38:00 obsr2588479 S22941621 Traveling P22 EBIRD 53.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324225280 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-05-31 08:20:00 obsr601383 S23722256 Traveling P22 EBIRD 300.0 4.828 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318476949 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 US-NY-Whitney Point-2608-2692 US-11 L3633948 P 42.320934 -75.955824 2015-05-10 12:36:00 obsr1885372 S23376967 Traveling P22 EBIRD 300.0 24.14 4.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325494243 2015-06-07 06:40:41 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Jefferson US-NY-045 13.0 17481 US Rt. 11 Lot 16-O L2592297 P 43.9166658 -75.9468019 2015-05-04 07:00:00 obsr188863 S23809266 Stationary P21 EBIRD 480.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871091 2021-03-26 07:56:20.588749 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 46 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-13 16:00:00 obsr2218212 S21672029 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305064120 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-24 10:48:00 obsr1668936 S22500248 Traveling P22 EBIRD 126.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308210515 2017-03-01 21:48:28 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-07 08:00:00 obsr544268 S22735148 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309473693 2018-08-04 17:08:43 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-12 08:20:00 obsr1047534 S22824528 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311587755 2021-03-24 20:23:39.258075 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-04-20 13:18:00 obsr2485753 S22965846 Stationary P21 EBIRD 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291023992 2019-01-03 10:54:11 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 4 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-G L3289012 P 40.06773 -73.02048 2015-01-11 14:00:00 obsr613775 S21346576 Traveling P22 EBIRD 60.0 26.554 44.0 1 G1108340 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322608474 2018-08-06 22:30:59 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 4 United States US New York US-NY Delaware US-NY-025 28.0 Emmons Pond Bog Preserve L123020 H 42.4237205 -75.0141896 2015-05-24 06:22:00 obsr1885846 S23615493 Traveling P22 EBIRD 85.0 2.414 2.0 1 G1287857 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312297045 2015-04-30 12:07:46 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Dryden-974 Owego Hill Rd L3584157 P 42.455631 -76.214596 2015-04-23 06:47:00 obsr1092576 S23013303 Traveling P22 EBIRD 9.0 0.322 1.0 1 G1232696 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315913409 2017-01-08 08:50:20 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College L1485004 H 44.4375537 -74.2530447 2015-05-04 10:00:00 obsr1786066 S23232275 Stationary P21 EBIRD 420.0 4.0 1 G1252097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291140173 2021-03-30 19:07:52.958398 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek L845821 H 40.5811388 -73.9927912 2015-01-15 12:57:00 obsr1711339 S21356068 Traveling P22 EBIRD 81.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290810471 2021-09-19 18:57:52.903665 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY New York US-NY-061 30.0 Morningside Park, Manhattan L1799559 H 40.8067376 -73.9580993 2015-01-13 09:40:00 obsr2184966 S21329051 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306606653 2019-01-07 15:31:58 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-03-31 18:54:00 obsr2497657 S22618247 Traveling P22 EBIRD 78.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301512549 2021-03-24 20:21:40.993321 31855 species avibase-5BFFE091 Grasshopper Sparrow Ammodramus savannarum 6 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-03-07 12:30:00 obsr1962295 S22218235 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309964144 2020-04-25 20:25:02 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 2 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--Comstock Knoll L290965 H 42.4498398 -76.4723566 2015-04-14 10:33:00 obsr2871406 S22859463 Traveling P22 EBIRD 10.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304369217 2021-03-30 19:37:33.521815 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-03-21 09:21:00 obsr1721609 S22447779 Traveling P22 EBIRD 125.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317901918 2021-03-19 15:59:05.496822 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Allegany US-NY-003 28.0 Behind Whitesville Central School L2870332 P 42.0407112 -77.7804136 2015-05-09 19:30:00 obsr2700440 S23345706 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309164954 2015-04-11 17:32:18 34699 spuh avibase-CFD25837 passerine sp. Passeriformes sp. 2 United States US New York US-NY Suffolk US-NY-103 30.0 Town Creek L1402872 P 41.0626646 -72.4238587 2015-04-11 13:00:00 obsr2528068 S22805099 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288843472 2021-04-01 12:32:15.282601 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 10 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-03 10:10:00 obsr964539 S21172896 Traveling P22 EBIRD 89.0 1.609 3.0 1 G1093766 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313780345 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 08:30:00 obsr145923 S23108484 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305633561 2021-03-30 19:07:52.958398 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-27 13:31:00 obsr1711339 S22544237 Traveling P22 EBIRD 173.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289321052 2021-03-30 19:29:33.633096 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 43 United States US New York US-NY Suffolk US-NY-103 30.0 Patchogue Lake L852362 H 40.7684842 -73.0212522 2015-01-05 14:30:00 obsr247620 S21209970 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300189763 2021-03-23 17:15:00.080143 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-02-23 08:00:00 obsr211814 S22118859 Stationary P21 EBIRD 197.0 2.0 1 G1162962 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300972780 2021-03-23 17:32:20.03109 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Carpenters Brook Fish Hatchery L982090 H 43.0161953 -76.3897419 2015-03-04 13:28:00 obsr2279567 S22177128 Traveling P22 EBIRD 33.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297604721 2021-03-26 06:52:34.887371 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 5 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-02-11 10:00:00 obsr2141910 S21903041 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322986950 2018-08-06 22:30:20 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 6 United States US New York US-NY Herkimer US-NY-043 14.0 Lake Rondaxe, Burgers Camp L992096 P 43.761071 -74.9080167 2015-05-17 08:15:00 obsr2535282 S23639044 Traveling P22 EBIRD 180.0 4.828 4.0 1 G1289899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293994670 2021-03-24 20:33:47.533911 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 6 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-01-30 12:45:00 obsr71667 S21601969 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305942229 2021-04-01 10:44:41.995232 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-03-28 15:48:00 obsr955789 S22567435 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316917147 2018-08-04 17:15:10 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-07 12:10:00 obsr646558 S23290223 Traveling P22 EBIRD 30.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307407333 2021-04-01 11:15:31.646886 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 20 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-04 07:21:00 obsr1807494 S22677499 Traveling P22 EBIRD 255.0 8.047 11.0 1 G1203947 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304361545 2021-12-08 07:58:41.562209 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-03-21 09:50:00 obsr2206421 S22447121 Traveling P22 EBIRD 35.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308199538 2021-11-09 22:29:08.190744 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Sullivan US-NY-105 28.0 Yankee Lake - my yard L1100954 P 41.5857896 -74.5484966 2015-04-07 07:15:00 obsr444155 S22734333 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320334084 2021-03-22 08:58:29.008072 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia N 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Great Lawn L593577 H 40.7814351 -73.9665967 2015-05-16 14:30:00 obsr2277801 S23481054 Historical P62 EBIRD 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS350970006 2021-04-01 10:57:06.520339 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Essex US-NY-031 14.0 Corner of Bull Rock and Shattuck L3026671 P 43.815311 -73.498596 2015-04-21 09:52:00 obsr2420101 S25653016 Traveling P22 EBIRD 15.0 0.161 2.0 1 G1453156 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304978566 2021-05-31 11:49:18.789436 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 1 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson (General Area) L1827108 H 43.1930605 -76.2914843 2015-03-23 17:58:00 obsr2224244 S22493262 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS798334106 2021-02-04 13:11:09.63048 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-E L3288970 P 39.52687 -72.39041 2015-01-11 12:00:00 obsr2686964 S59266074 Traveling P22 EBIRD 60.0 19.795 44.0 1 G1108338 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315461387 2015-05-03 19:03:57 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-05-03 16:24:00 obsr1472872 S23207450 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294346425 2021-04-01 12:18:57.910168 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Tompkins US-NY-109 13.0 Nate's Patch--Bluegrass to Hanshaw to Freese L1006570 P 42.4655757 -76.4526987 2015-02-01 10:12:00 obsr1062070 S21629768 Traveling P22 EBIRD 110.0 4.345 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316127014 2021-04-01 11:30:42.037277 6201 species avibase-64F4DD81 Razorbill Alca torda 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 09:30:00 obsr2387618 S23244680 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291338315 2021-03-24 20:21:40.993321 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Seneca US-NY-099 13.0 Cove L678244 P 42.6487254 -76.8698493 2015-01-16 obsr2731440 S21372375 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305615785 2021-03-23 17:00:13.087107 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - boardwalk to white barn pond (0.04km) L1287548 P 42.480817 -76.4502794 2015-03-27 14:03:00 obsr2307843 S22542971 Traveling P22 EBIRD 5.0 0.04 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318759708 2021-04-01 11:15:31.646886 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris X United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-11 16:30:00 obsr2448957 S23392661 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288721338 2021-04-01 11:54:40.172593 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 1 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-01-02 12:05:00 obsr1032565 S21160763 Traveling P22 EBIRD 145.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299602787 2021-03-30 19:07:52.958398 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 9 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-25 08:15:00 obsr454647 S22071160 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318008220 2022-02-17 14:32:23.002448 592 species avibase-3072CC16 Redhead Aythya americana 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-09 08:30:00 obsr2502574 S23351802 Traveling P22 EBIRD 90.0 1.609 3.0 1 G1260060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316681541 2021-03-30 19:13:38.458673 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-06 18:43:00 obsr334398 S23277147 Traveling P22 EBIRD 40.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309761621 2015-04-13 15:11:41 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Montgomery US-NY-057 13.0 629 State Highway 161 L3554520 P 42.8835997 -74.2643339 2015-04-13 09:30:00 obsr286403 S22845214 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312415318 2021-04-01 11:24:19.637193 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 3 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-23 10:50:00 obsr1782363 S23021490 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310343752 2020-03-15 09:14:53 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-15 09:45:00 obsr319738 S22885660 Traveling P22 EBIRD 85.0 2.012 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS359630265 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-12 11:30:00 obsr2022298 S26344798 Incidental P20 EBIRD 2.0 1 G1501711 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318077585 2021-03-19 16:08:39.161312 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.4220913 -79.4281205 2015-05-10 07:40:00 obsr2497657 S23355473 Traveling P22 EBIRD 158.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290611342 2015-01-12 08:05:23 31480 species avibase-80C297E6 White-winged Crossbill Loxia leucoptera 1 United States US New York US-NY Richmond US-NY-085 SI-Sawmill Creek/River Road/Old Place L274655 P 40.6134278 -74.1902816 2015-01-11 09:05:00 obsr1032565 S21312907 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298215629 2021-03-26 06:07:45.516082 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 11 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo -- NW perimeter (Restricted Access) L3396578 P 40.8546937 -73.8800722 2015-02-18 11:00:00 obsr128156 S21957504 Traveling P22 EBIRD 15.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305322043 2021-03-26 06:07:45.516082 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 24 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-03-25 10:15:00 obsr128156 S22520022 Traveling P22 EBIRD 14.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299335311 2021-11-09 22:04:47.967972 7732 species avibase-A091D50A Northern Harrier Circus hudsonius N X United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-23 10:30:00 obsr513576 S22052561 Traveling P22 EBIRD 300.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311916420 2021-11-09 21:50:48.44865 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-20 06:46:00 obsr2862523 S22988110 Traveling P22 EBIRD 25.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294432710 2017-11-27 07:55:42 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Rd., Tiana Beach L821838 H 40.8307941 -72.5177908 2015-02-01 08:00:00 obsr2011512 S21636488 Traveling P22 EBIRD 60.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319489459 2021-03-19 16:10:30.527219 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 1 United States US New York US-NY Chemung US-NY-015 28.0 Bottchers Landing L143559 H 42.1246158 -76.951613 2015-05-14 07:29:00 obsr1092576 S23434950 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288711924 2021-04-01 12:32:15.282601 30494 species avibase-240E3390 House Sparrow Passer domesticus N 1 United States US New York US-NY Nassau US-NY-059 Bay Park L1854772 P 40.623034 -73.665583 2015-01-03 09:44:00 obsr2906952 S21160016 Traveling P22 EBIRD 116.0 3.219 4.0 1 G1094311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315757011 2021-08-17 17:04:46.097221 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 12 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-04 05:24:00 obsr1410564 S23223676 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312053922 2021-03-19 16:27:31.421791 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Feeder Rd. Trail (Genesee Co.) L153041 H 43.1242469 -78.429129 2015-04-22 08:40:00 obsr137150 S22997222 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319001003 2018-08-04 17:26:48 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-12 09:04:00 obsr1472872 S23406585 Traveling P22 EBIRD 56.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288333897 2021-04-01 11:24:19.637193 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Monroe US-NY-055 13.0 Rochester, NY L2485818 P 43.1309545 -77.5603437 2015-01-01 09:56:00 obsr446276 S21129103 Incidental P20 EBIRD 1.0 1 G1090808 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322890419 2021-03-19 16:44:35.607263 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-25 15:37:00 obsr2595828 S23632758 Traveling P22 EBIRD 70.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296378622 2021-11-09 21:57:08.830059 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 1 United States US New York US-NY Ulster US-NY-111 28.0 US-NY-Wallkill-70-72 Old Fort Rd L3356660 P 41.631764 -74.229258 2015-02-12 11:22:00 obsr2449954 S21792842 Traveling P22 EBIRD 28.0 7.564 2.0 1 G1144451 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299846346 2015-02-27 12:05:30 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-02-27 12:01:00 obsr2871406 S22091790 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308369161 2021-04-01 11:49:53.573686 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens X United States US New York US-NY Queens US-NY-081 30.0 Kissena Park L491873 H 40.7462409 -73.8080852 2015-04-07 14:22:00 obsr2233270 S22746972 Traveling P22 EBIRD 195.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311322181 2018-08-04 17:11:14 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--South L99397 H 42.4645343 -76.4241559 2015-04-19 10:05:00 obsr1008519 S22947635 Traveling P22 EBIRD 45.0 2.414 6.0 1 G1226588 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304097130 2019-07-23 17:28:02 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 40 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Rich Marine L1366985 H 42.9392357 -78.9087525 2015-03-19 18:20:00 obsr2189267 S22426718 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS649764417 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Kings US-NY-047 Brooklyn Army Terminal Pier 4 L2598864 H 40.646519 -74.026074 2015-01-17 09:45:00 obsr2519357 S47954518 Traveling P22 EBIRD 47.0 0.805 4.0 1 G1112435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307407364 2021-04-01 11:15:31.646886 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-04 07:21:00 obsr1807494 S22677499 Traveling P22 EBIRD 255.0 8.047 11.0 1 G1203947 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306629507 2015-03-31 21:52:14 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus X United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake - Inlet L723215 P 42.7139754 -77.7105045 2015-03-31 18:35:00 obsr72341 S22619944 Traveling P22 EBIRD 53.0 7.242 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303998609 2021-03-24 20:33:47.533911 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-03-19 07:37:00 obsr2377251 S22418750 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311077395 2015-04-22 00:07:57 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 15:30:00 obsr2363365 S22934554 Traveling P22 EBIRD 150.0 3.219 9.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313388871 2021-03-26 07:56:20.588749 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-25 08:15:00 obsr2852365 S23084007 Traveling P22 EBIRD 120.0 2.414 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322243332 2021-03-26 06:21:54.883933 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 08:20:00 obsr986025 S23594957 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292200346 2019-07-23 17:27:08 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 174 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Niagara St Overlook L3307017 P 42.9522788 -78.9091006 2015-01-20 11:20:00 obsr2155111 S21439727 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312007174 2015-04-22 06:38:53 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 1 United States US New York US-NY Westchester US-NY-119 30.0 Irvington Woods L2438720 H 41.0373426 -73.8464534 2015-04-21 14:55:00 obsr1832377 S22994143 Traveling P22 EBIRD 95.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304831163 2015-05-07 17:07:25 31268 issf avibase-95F9C840 Purple Finch Haemorhous purpureus Purple Finch (Eastern) Haemorhous purpureus purpureus 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-03-22 09:35:00 obsr455249 S22481371 Traveling P22 EBIRD 12.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306985086 2021-04-01 12:32:15.282601 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-02 10:40:00 obsr647628 S22646259 Traveling P22 EBIRD 270.0 8.047 5.0 1 G1201687 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314330277 2018-08-04 17:13:07 6339 species avibase-8535345B Herring Gull Larus argentatus 8 United States US New York US-NY Onondaga US-NY-067 US-NY_2803 13.0 Cicero Swamp WMA L270911 H 43.1333977 -75.9873074 2015-04-30 08:30:00 obsr660214 S23142398 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305792103 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field, Kings Co. L1341687 P 40.5925957 -73.8870594 2015-03-28 09:45:00 obsr827632 S22556219 Traveling P22 EBIRD 105.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309497453 2021-03-26 08:05:20.615241 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Skan - 5 E. Lake St L631480 P 42.9468657 -76.4167383 2015-04-07 10:56:00 obsr2279567 S22826232 Stationary P21 EBIRD 69.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299437869 2021-03-30 19:43:32.881136 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-24 17:10:00 obsr114791 S22059927 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS335956729 2021-03-23 16:52:36.900075 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 18 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven National Laboratory (restricted access) L2808445 H 40.8710034 -72.880066 2015-04-27 06:07:00 obsr2137822 S24576712 Traveling P22 EBIRD 97.0 4.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS321576655 2021-03-19 16:08:39.161312 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Farel Road, Fredonia, NY L3512207 P 42.4296945 -79.3755904 2015-05-17 09:15:00 obsr479109 S23553786 Traveling P22 EBIRD 10.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311891623 2018-12-15 15:57:31 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Tompkins US-NY-109 28.0 Beezamer L2957441 P 42.3907709 -76.407305 2015-04-19 08:30:00 obsr844466 S22986434 Traveling P22 EBIRD 180.0 0.805 2.0 1 G1230347 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298836141 2021-11-09 18:26:50.162401 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Dutchess US-NY-027 13.0 Separate Road, Amenia, NY L1893810 P 41.8622316 -73.6034884 2015-02-19 13:30:00 obsr1062217 S22011040 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290716670 2016-04-11 20:33:59 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--West End (Field 2) L2597735 H 40.5934333 -73.5209483 2015-01-11 14:30:00 obsr2175245 S21322081 Stationary P21 EBIRD 15.0 6.0 1 G1107398 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311943246 2021-03-19 16:44:35.607263 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 63 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-04-21 09:55:00 obsr2504709 S22989984 Traveling P22 EBIRD 50.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296409091 2022-03-05 22:03:50.715584 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-13 08:00:00 obsr2219590 S21795959 Stationary P21 EBIRD 155.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301891250 2021-03-30 19:03:54.667077 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-08 15:35:00 obsr916033 S22248350 Stationary P21 EBIRD 62.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293991198 2021-03-26 08:14:57.071052 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Westchester US-NY-119 30.0 Wilton L963070 P 41.0891766 -73.8526082 2015-01-11 09:00:00 obsr1538953 S21601667 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311177388 2021-04-01 10:53:25.818871 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Homer-6134-6370 US-11 L3574842 P 42.707889 -76.142146 2015-04-19 09:54:00 obsr2683805 S22940399 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298953490 2021-04-01 12:32:15.282601 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--median strip L3310253 H 40.5875594 -73.5588285 2015-02-21 10:10:00 obsr2505956 S22020518 Traveling P22 EBIRD 220.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290873569 2019-07-23 17:26:48 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 10 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-B L3288880 P 40.21933 -73.19694 2015-01-11 09:00:00 obsr1220115 S21334654 Traveling P22 EBIRD 60.0 15.289 44.0 1 G1108334 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304077980 2021-03-24 05:37:45.927792 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo--Mirror Lake L2809120 H 42.9268351 -78.8632295 2015-03-19 16:40:00 obsr2189267 S22425238 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317107447 2019-07-13 14:23:17 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 1 United States US New York US-NY Allegany US-NY-003 28.0 Peterson woods L2864017 P 42.2116561 -77.7448368 2015-05-08 06:45:00 obsr1868960 S23301238 Traveling P22 EBIRD 90.0 1.062 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290859027 2021-03-30 19:39:10.250398 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 300 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 17:00:00 obsr896979 S21333374 Traveling P22 EBIRD 30.0 4.828 44.0 1 G1108343 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306841058 2021-04-01 11:30:42.037277 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-03-27 15:30:00 obsr1548221 S22635526 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315243022 2015-05-03 10:47:12 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-03 09:36:00 obsr1334267 S23196184 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301959537 2015-03-09 09:57:55 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-03-09 09:56:00 obsr1165633 S22253179 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310926467 2015-04-18 14:38:24 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 Triangle, 445 Hemlock Hill Road L3572279 P 42.39749 -75.91788 2015-04-18 11:13:00 obsr1092576 S22924815 Incidental P20 EBIRD 2.0 0 G1224195 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303283130 2021-11-09 21:57:19.688323 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Ulster US-NY-111 28.0 Shawangunk Kill, Gardiner L3469750 H 41.6860213 -74.163487 2015-03-15 12:00:00 obsr1136997 S22362469 Incidental P20 EBIRD 2.0 1 G1180648 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290855466 2016-09-20 11:51:12 622 species avibase-50566E50 Lesser Scaup Aythya affinis 5 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-C L3288894 P 40.16935 -73.1073 2015-01-11 10:00:00 obsr1895507 S21333018 Traveling P22 EBIRD 60.0 16.254 44.0 1 G1108335 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290710458 2019-07-23 17:26:46 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 200 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point, lighthouse overlook L2451456 H 41.0709727 -71.8565091 2015-01-10 12:15:00 obsr128156 S21321544 Traveling P22 EBIRD 80.0 2.0 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306087371 2021-03-26 06:29:56.44369 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Monroe US-NY-055 13.0 Thousand Acre Swamp Preserve L123006 H 43.17917 -77.45194 2015-03-29 15:51:00 obsr1545618 S22577894 Traveling P22 EBIRD 52.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299414358 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola N X United States US New York US-NY Kings US-NY-047 30.0 Washington Cemetery L3352964 H 40.620573 -73.9754021 2015-02-24 07:30:00 obsr2448957 S22058259 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320339054 2021-04-01 11:24:19.637193 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 3 Female, Adult (2); Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 LaSalle Landing Park L2188519 P 43.176311 -77.5273418 2015-05-16 10:00:00 obsr2449897 S23481299 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308026389 2018-08-04 17:05:45 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 7 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-04-06 11:00:00 obsr1565981 S22721011 Traveling P22 EBIRD 58.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313158932 2021-03-26 06:29:56.44369 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Monroe US-NY-055 13.0 Varied Thrush stakeout L3592299 P 43.174181 -77.554024 2015-04-26 12:28:00 obsr2955569 S23069477 Traveling P22 EBIRD 94.0 0.161 1.0 1 G1237067 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310168014 2022-02-18 10:47:29.953615 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 22 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-15 08:36:00 obsr1062070 S22873790 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295524089 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-07 10:45:00 obsr1536880 S21724068 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307406972 2021-03-30 19:22:51.561415 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 10 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-03 13:00:00 obsr470489 S22677481 Traveling P22 EBIRD 180.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320759403 2020-01-16 17:01:29 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 2 United States US New York US-NY Albany US-NY-001 28.0 Cole Hill SF L725320 H 42.5959968 -74.11098 2015-05-16 13:35:00 obsr2855945 S23503648 Traveling P22 EBIRD 100.0 4.023 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307397222 2018-08-04 17:05:20 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Columbia US-NY-021 14.0 Center Hill Pond L3537324 H 42.1473923 -73.5590029 2015-04-04 08:27:00 obsr2842267 S22676741 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310021616 2021-11-15 03:06:58.889978 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-14 13:00:00 obsr1223279 S22863393 Historical P62 EBIRD_CAN 120.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311003924 2018-08-04 17:10:24 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--F.R. Newman Arboretum L799199 H 42.4520722 -76.4572692 2015-04-18 16:54:00 obsr1655171 S22929729 Traveling P22 EBIRD 24.0 1.207 2.0 1 G1230104 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324386695 2021-11-02 20:32:06.137153 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-29 12:30:00 obsr317968 S23732996 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308009729 2021-03-23 17:00:13.087107 303 species avibase-B59E1863 Canada Goose Branta canadensis 36 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-06 11:42:00 obsr613775 S22719808 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308095341 2015-04-06 18:43:27 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 8 United States US New York US-NY Oneida US-NY-065 13.0 Schneibles Inn L2783195 P 43.1647274 -75.7374541 2015-04-06 15:05:00 obsr1640315 S22726112 Traveling P22 EBIRD 31.0 2.414 1.0 1 G1208659 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322866498 2021-04-01 11:15:31.646886 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 07:29:00 obsr1077730 S23631311 Traveling P22 EBIRD 300.0 3.219 14.0 1 G1289314 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314268660 2021-11-09 17:44:00.03737 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Dutchess US-NY-027 13.0 Ludlow Woods Rd, Stanfordville NY L1062774 P 41.8618905 -73.6757755 2015-04-29 17:00:00 obsr1917973 S23139054 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313059088 2021-04-01 10:51:06.899622 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-25 13:50:00 obsr1655171 S23063684 Traveling P22 EBIRD 74.0 3.219 4.0 1 G1240629 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288555540 2017-08-16 16:10:39 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Ontario US-NY-069 13.0 US-NY-Bloomfield-3004-3034 Sand Rd L3257926 P 42.880289 -77.498884 2015-01-02 14:54:00 obsr354090 S21147413 Stationary P21 EBIRD 13.0 2.0 1 G1091407 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307819232 2021-03-23 16:52:36.900075 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 7 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-04-03 10:15:00 obsr150865 S22706120 Traveling P22 EBIRD 105.0 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306017249 2015-03-29 12:38:34 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 200 United States US New York US-NY Jefferson US-NY-045 13.0 US-NY-Watertown-18319 Old Rome Rd L3480542 P 43.933525 -75.977814 2015-03-29 09:30:00 obsr891847 S22572851 Traveling P22 EBIRD 90.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308441862 2021-03-23 17:41:09.545385 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-04-08 09:00:00 obsr473055 S22752686 Traveling P22 EBIRD 80.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310208325 2018-08-04 17:09:17 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Essex US-NY-031 13.0 Westport Boat Launch L479943 H 44.1887912 -73.4342089 2015-04-15 12:35:00 obsr2769235 S22876470 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS615872582 2018-05-11 18:03:50 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Monroe US-NY-055 13.0 Greece L193084 T 43.20976 -77.69303 2015-04-19 obsr2796835 S45564163 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304403041 2021-03-26 07:07:10.758746 592 species avibase-3072CC16 Redhead Aythya americana N 1 United States US New York US-NY Richmond US-NY-085 Mill Creek L1302294 H 40.5198919 -74.2406809 2015-03-21 08:53:00 obsr1893950 S22450273 Stationary P21 EBIRD 12.0 2.0 1 G1186872 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304384906 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-21 12:33:00 obsr2937317 S22448944 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317110198 2021-11-15 03:06:58.889978 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 08:00:00 obsr2797341 S23301375 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314994385 2021-04-01 11:15:31.646886 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 22 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 06:25:00 obsr2514491 S23182158 Traveling P22 EBIRD 413.0 8.047 4.0 1 G1247369 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317011700 2021-04-01 11:30:42.037277 11528 species avibase-F3DA111C Merlin Falco columbarius 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-05-06 12:00:00 obsr1253931 S23295693 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308202700 2021-04-01 12:31:09.823741 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Livingston US-NY-051 13.0 Nations Rd. IBA--Huston Rd. L810213 H 42.8525297 -77.7958202 2015-04-07 08:08:00 obsr1060479 S22734564 Traveling P22 EBIRD 11.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305443566 2021-03-19 16:12:42.877422 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Columbia US-NY-021 14.0 Spencertown, NY L2119613 P 42.3085459 -73.5272026 2015-03-22 09:30:00 obsr2558502 S22529694 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291024223 2021-11-09 18:43:18.978402 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Dutchess US-NY-027 14.0 Reagan Road Millerton L3292286 P 41.9044809 -73.5126543 2015-01-14 09:45:00 obsr1732267 S21346587 Traveling P22 EBIRD 105.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302926263 2019-07-23 17:27:56 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 PI--Route 10 L1006164 P 41.1853076 -72.1941662 2015-03-13 13:31:00 obsr2485753 S22334419 Traveling P22 EBIRD 24.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323375390 2018-08-06 22:31:15 11528 species avibase-F3DA111C Merlin Falco columbarius 3 United States US New York US-NY Erie US-NY-029 13.0 Hunters Creek Park L811491 H 42.7498485 -78.5484695 2015-05-27 09:20:00 obsr2871264 S23664496 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296182421 2021-12-10 08:21:29.396662 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 100 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-08 08:35:00 obsr271871 S21775534 Traveling P22 EBIRD 90.0 4.828 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300735248 2015-03-03 14:56:45 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Suffolk US-NY-103 30.0 Home L2432870 P 40.9586439 -73.0169821 2015-03-03 02:00:00 obsr2338506 S22159237 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311826317 2021-03-26 07:17:57.136956 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 3 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Towpath Rd. L266832 H 43.0038224 -76.7457005 2015-04-19 10:50:00 obsr2683910 S22982417 Traveling P22 EBIRD 74.0 3.219 2.0 1 G1230121 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294401881 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-01 09:15:00 obsr1407710 S21634021 Traveling P22 EBIRD 165.0 4.828 3.0 1 G1131708 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323353727 2021-09-29 04:58:21.533581 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY New York US-NY-061 Governors Island (open year-round) L555894 H 40.6885372 -74.0189759 2015-05-27 11:51:00 obsr2179748 S23663073 Traveling P22 EBIRD 107.0 4.377 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS376882212 2016-02-25 01:33:27 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-01-01 12:16:00 obsr1214394 S27808232 Traveling P22 EBIRD 56.0 1.127 1.0 1 G1100193 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311304724 2015-04-19 15:59:50 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 7 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-19 11:30:00 obsr2964544 S22948088 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317201849 2021-03-26 06:17:19.712573 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-08 13:15:00 obsr252591 S23306015 Traveling P22 EBIRD 69.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302365254 2021-04-01 12:32:15.282601 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-10 11:15:00 obsr2505956 S22291564 Traveling P22 EBIRD 135.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311492698 2021-11-15 03:06:58.889978 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-19 13:20:00 obsr1706920 S22959674 Traveling P22 EBIRD 80.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312179698 2020-05-16 18:12:51 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Otsego US-NY-077 28.0 Quarry House L3364190 P 42.7359074 -74.8563686 2015-04-22 19:00:00 obsr189015 S23005533 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319164905 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 06:58:00 obsr1821546 S23416257 Traveling P22 EBIRD 392.0 4.184 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS315123439 2015-05-02 22:03:49 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-05-02 13:00:00 obsr534615 S23189362 Traveling P22 EBIRD 150.0 4.828 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311036398 2021-03-30 19:37:33.521815 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 3 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-18 09:27:00 obsr1721609 S22931678 Traveling P22 EBIRD 191.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS371745409 2021-11-09 21:05:39.43131 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 2 United States US New York US-NY Rockland US-NY-087 30.0 Aileen's House L3401930 P 41.045029 -73.935797 2015-02-20 08:45:00 obsr798918 S27370558 Stationary P21 EBIRD 100.0 2.0 1 G1592453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302827835 2021-03-23 16:52:36.900075 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 7 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-03-13 08:00:00 obsr544268 S22326656 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313665091 2021-03-26 07:52:59.845315 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 12 Male, Adult (8); Female, Adult (4) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-27 06:40:00 obsr1000124 S23101130 Area P23 EBIRD 60.0 2.59 2.0 1 G1240531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305584755 2021-03-24 20:33:47.533911 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-27 09:47:00 obsr2871406 S22540529 Traveling P22 EBIRD 41.0 0.161 2.0 1 G1194817 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305711940 2021-04-01 12:12:56.033907 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 65 United States US New York US-NY Steuben US-NY-101 28.0 Keuka Lake, Champlin Beach L745394 H 42.4022754 -77.2142529 2015-03-27 15:25:00 obsr2700440 S22550192 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322972656 2021-11-15 03:06:58.889978 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-25 07:30:00 obsr856524 S23638192 Traveling P22 EBIRD 290.0 2.414 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313241299 2015-04-26 17:47:55 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-04-26 15:17:00 obsr916033 S23074329 Stationary P21 EBIRD 24.0 2.0 1 G1237513 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322633730 2021-03-26 06:29:56.44369 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 12 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-24 12:15:00 obsr1561508 S23617028 Stationary P21 EBIRD 60.0 2.0 1 G1287996 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314560944 2018-08-04 17:13:15 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-01 07:50:00 obsr1830659 S23157249 Traveling P22 EBIRD 92.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312378208 2021-03-30 19:07:52.958398 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 07:15:00 obsr2363365 S23018991 Traveling P22 EBIRD 420.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320522822 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis N 2 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester--Pinetum L2834347 H 43.1330899 -77.6024169 2015-05-17 12:03:00 obsr1097423 S23490982 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310652648 2021-03-19 16:44:35.607263 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Monroe US-NY-055 13.0 Whiting Rd. Nature Preserve L524399 H 43.251267 -77.4698353 2015-04-17 07:35:00 obsr302343 S22907069 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293088075 2015-01-25 11:59:23 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF L1341670 H 40.51575 -74.2252678 2015-01-25 09:02:00 obsr1958124 S21530047 Traveling P22 EBIRD 17.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304594931 2015-04-30 20:06:07 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 1 United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum: West and Pleasant Creeks (restricted access) L1878498 P 44.0338243 -75.8343879 2015-03-03 12:45:00 obsr1558090 S22464353 Traveling P22 EBIRD 30.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319760934 2021-04-01 11:30:42.037277 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 06:15:00 obsr2605333 S23450731 Traveling P22 EBIRD 180.0 4.828 3.0 1 G1271579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303996096 2021-03-23 16:52:36.900075 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Miller Place-Yaphank Rd. Sod Farm L3490767 H 40.9265121 -72.9790027 2015-03-18 09:35:00 obsr2712298 S22418515 Traveling P22 EBIRD 35.0 0.4 5.0 1 G1184873 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309863035 2022-01-20 09:38:40.245267 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-04-13 17:30:00 obsr2188170 S22852240 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295159856 2021-03-23 17:22:05.708166 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 60 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-01-27 07:00:00 obsr2694889 S21694603 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311951879 2021-03-23 17:00:13.087107 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 20 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-04-20 08:24:00 obsr2683910 S22990548 Stationary P21 EBIRD 10.0 2.0 1 G1230720 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315700813 2021-11-15 03:06:58.889978 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 07:40:00 obsr2797341 S23220603 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307110225 2021-03-26 07:07:10.758746 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 1 United States US New York US-NY Richmond US-NY-085 30.0 132 Blackford Avenue, SI, NY L800199 P 40.632401 -74.1401839 2015-04-03 09:08:00 obsr1231731 S22655944 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306434599 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-30 16:30:00 obsr1659461 S22604605 Traveling P22 EBIRD 60.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307926632 2021-03-22 09:17:32.016297 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-06 07:20:00 obsr666964 S22714154 Stationary P21 EBIRD 45.0 1.0 1 G1208657 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302868932 2021-04-01 12:43:36.236969 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Tioga US-NY-107 28.0 AA Dairy, Candor L2319937 P 42.237717 -76.362534 2015-03-13 07:44:00 obsr1318356 S22329798 Traveling P22 EBIRD 23.0 0.161 2.0 1 G1179993 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306929578 2021-03-26 06:29:56.44369 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 2 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-02 11:49:00 obsr334398 S22642091 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322817712 2021-04-01 11:24:19.637193 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-05-25 09:54:00 obsr1243175 S23628326 Traveling P22 EBIRD 90.0 1.609 2.0 1 G1289060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298232277 2020-02-09 20:52:31 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Ontario US-NY-069 13.0 Port Gibson L863798 T 43.03446 -77.1575 2015-02-18 11:27:00 obsr606693 S21958965 Traveling P22 EBIRD 6.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303480133 2021-03-24 19:28:50.176616 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 Male, Adult (1); Female, Adult (3) United States US New York US-NY Columbia US-NY-021 14.0 Larkspur Farm house (private) L3388369 P 42.1897621 -73.5989874 2015-03-16 09:30:00 obsr2842267 S22378823 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303148799 2021-03-30 19:43:32.881136 11371 species avibase-75600969 Northern Flicker Colaptes auratus 3 United States US New York US-NY Westchester US-NY-119 30.0 Deans Bridge, North Salem L2152201 H 41.3368943 -73.6588245 2015-03-14 11:25:00 obsr2346161 S22352323 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309492827 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-12 09:00:00 obsr2883698 S22825898 Traveling P22 EBIRD 190.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297735049 2015-02-16 18:28:25 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Oneida US-NY-065 13.0 Feeder in Kirkland L2643301 P 43.022124 -75.3866997 2015-02-16 08:20:00 obsr801283 S21915449 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298876077 2022-02-17 14:32:23.002448 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-21 11:30:00 obsr1152226 S22014141 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289886517 2021-11-09 22:49:38.932688 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Sullivan US-NY-105 28.0 Neversink Reservoir L622976 H 41.8231415 -74.6408558 2015-01-08 10:45:00 obsr444155 S21254773 Traveling P22 EBIRD 20.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313497675 2021-03-24 20:33:47.533911 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Tompkins US-NY-109 28.0 Mr. C. Feeder Station L3541750 P 42.3927043 -76.3720956 2015-04-27 08:00:00 obsr581835 S23090744 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294018588 2021-04-01 12:32:15.282601 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-01-29 08:00:00 obsr2505956 S21603891 Traveling P22 EBIRD 120.0 1.609 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319586270 2018-08-06 22:29:50 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 2 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-05-13 09:09:00 obsr1222746 S23440434 Traveling P22 EBIRD 35.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292272307 2015-01-21 10:40:21 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 10 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-01-18 11:30:00 obsr1167884 S21445072 Traveling P22 EBIRD 30.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317435575 2015-05-09 09:12:41 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Livingston US-NY-051 13.0 US-NY-PORTAGE, 625 NY-436 L3579171 P 42.574927 -78.013591 2015-05-05 10:13:00 obsr731272 S23319937 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316068850 2018-08-04 17:14:48 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-05 07:00:00 obsr2843748 S23241578 Traveling P22 EBIRD 210.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314923071 2017-03-21 22:11:35 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Administration Building L813773 H 42.1003559 -78.7494099 2015-05-02 11:15:00 obsr2933610 S23178352 Stationary P21 EBIRD 75.0 2.0 1 G1254120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317295843 2015-05-08 19:32:51 16788 species avibase-0A76713F Couch's Kingbird Tyrannus couchii X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-05-08 19:00:00 obsr290506 S23311361 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290289103 2015-01-10 20:17:20 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Suffolk US-NY-103 30.0 Orchard neck ct L3282946 P 40.7929457 -72.788136 2015-01-10 16:00:00 obsr2846902 S21287616 Stationary P21 EBIRD 30.0 2.0 1 G1104109 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310322608 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Kings US-NY-047 Coney Island Pier L518788 H 40.5696241 -73.9833203 2015-04-15 14:45:00 obsr2363365 S22884207 Stationary P21 EBIRD 165.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313492097 2021-03-23 16:52:36.900075 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 F C1 F United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-04-27 08:56:00 obsr1228860 S23090353 Traveling P22 EBIRD 79.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297931132 2021-04-01 12:45:19.712958 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 3 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-16 12:00:00 obsr2343626 S21933265 Stationary P21 EBIRD 23.0 2.0 1 G1150452 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295018773 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95502 2015-02-05 10:35:00 obsr1830659 S21684820 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306325116 2021-03-30 19:39:10.250398 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 4 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake State Park L3459462 P 40.688367 -73.6390454 2015-03-20 08:30:00 obsr2201786 S22595936 Historical P62 EBIRD 120.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306528495 2021-03-26 07:43:12.52294 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 8 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-03-31 12:10:00 obsr2914424 S22611866 Traveling P22 EBIRD 101.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301982395 2021-03-26 06:07:45.516082 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-03-09 09:30:00 obsr128156 S22254907 Rusty Blackbird Spring Migration Blitz P41 EBIRD 35.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322266233 2021-04-01 11:15:31.646886 7200 species avibase-49D9148A Great Egret Ardea alba 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:15:00 obsr1711339 S23596212 Traveling P22 EBIRD 420.0 8.047 20.0 1 G1285843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307842971 2016-12-17 21:47:45 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 8 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-04-05 13:40:00 obsr2071643 S22707832 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311870398 2022-02-17 14:32:23.002448 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-21 13:14:00 obsr1605975 S22985058 Traveling P22 EBIRD 130.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309070774 2020-05-21 16:07:53 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 Harwood Lake L3554905 P 42.384954 -78.379588 2015-04-11 11:33:00 obsr955789 S22799111 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303061973 2021-04-01 10:44:41.995232 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 8 United States US New York US-NY Allegany US-NY-003 28.0 Jack Bridge fishing access L3487384 P 42.0755354 -77.9248488 2015-03-14 10:00:00 obsr1310178 S22345506 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315830455 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 7 Unknown Sex, Adult (7) United States US New York US-NY New York US-NY-061 30.0 10034 New York L171669 PC 40.867027 -73.92021 2015-05-04 12:30:00 obsr1740835 S23227522 Traveling P22 EBIRD 150.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308339764 2021-03-23 17:23:45.772216 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-07 09:30:00 obsr72341 S22744777 Stationary P21 EBIRD 280.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305878128 2021-04-01 11:15:31.646886 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 18 United States US New York US-NY Kings US-NY-047 Canarsie Pier L247765 H 40.6287773 -73.8836704 2015-03-28 08:05:00 obsr1601967 S22562496 Traveling P22 EBIRD 40.0 0.322 11.0 1 G1195440 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322764310 2018-12-30 10:02:16 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-24 14:52:00 obsr119187 S23625120 Stationary P21 EBIRD 76.0 7.0 1 G1288771 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314189393 2021-03-26 07:52:59.845315 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-28 07:30:00 obsr1000124 S23133940 Area P23 EBIRD 75.0 2.59 2.0 1 G1243713 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312846517 2021-03-19 16:14:11.035882 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 23 United States US New York US-NY Cortland US-NY-023 28.0 AviCor10 L3513952 H 42.5109495 -76.0097765 2015-04-25 08:46:00 obsr1042912 S23050865 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310216670 2021-03-26 06:11:29.8335 11371 species avibase-75600969 Northern Flicker Colaptes auratus 10 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-04-15 08:06:00 obsr2871406 S22876969 Stationary P21 EBIRD 15.0 3.0 1 G1220763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313042347 2021-04-01 12:18:57.910168 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-886-892 Stewart Ave L3591315 P 42.452069 -76.489901 2015-04-26 06:18:00 obsr2952480 S23062651 Stationary P21 EBIRD 30.0 3.0 1 G1243555 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309489229 2018-02-01 15:11:46 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 1 United States US New York US-NY Tompkins US-NY-109 US-NY_791 28.0 AviTom47 L3513989 H 42.3187024 -76.6195786 2015-04-12 15:20:00 obsr71667 S22825628 Stationary P21 EBIRD 15.0 6.0 1 G1216622 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296335549 2021-04-01 11:42:50.317679 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-02-12 10:00:00 obsr2892286 S21789518 Stationary P21 EBIRD 135.0 2.0 1 G1144226 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304633757 2021-11-09 22:38:26.937409 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Sullivan US-NY-105 28.0 Rio Reservoir and Plank Rd. L1921926 H 41.5101199 -74.7559547 2015-03-22 10:30:00 obsr444155 S22467093 Traveling P22 EBIRD 45.0 6.437 2.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291055614 2022-01-09 18:48:43.534861 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 1 United States US New York US-NY New York US-NY-061 30.0 Greenwich Village (14th St.-Houston St.; Broadway-Hudson River) L3238737 H 40.7342063 -74.0027145 2015-01-01 13:30:00 obsr369788 S21349261 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322241343 2018-08-04 17:28:33 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-23 10:45:00 obsr2855945 S23594860 Stationary P21 EBIRD 30.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316137907 2021-03-26 06:17:19.712573 30494 species avibase-240E3390 House Sparrow Passer domesticus 14 United States US New York US-NY Erie US-NY-029 13.0 Knox Farm SP L160588 H 42.7715237 -78.636327 2015-05-05 13:05:00 obsr916033 S23245225 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290858734 2018-08-04 16:53:17 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay - Old Lighthouse L1864778 P 43.2739151 -76.9871304 2015-01-13 12:50:00 obsr983655 S21333339 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000521 2021-03-26 07:56:20.588749 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 5 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-07 16:00:00 obsr2218212 S23775909 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291496646 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-17 17:01:00 obsr934639 S21385138 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304683236 2021-03-26 06:29:56.44369 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-03-22 14:41:00 obsr1598543 S22470867 Traveling P22 EBIRD 58.0 1.368 5.0 1 G1188621 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319927673 2021-04-01 11:15:31.646886 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-15 09:40:00 obsr827632 S23459604 Traveling P22 EBIRD 230.0 7.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000444 2021-03-26 07:56:20.588749 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 7 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-06 16:00:00 obsr2218212 S23775907 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288129400 2021-04-01 11:24:19.637193 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-01 08:41:00 obsr749440 S21111453 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1087915 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304988056 2021-11-09 21:50:48.44865 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-23 17:30:00 obsr1588136 S22493975 Traveling P22 EBIRD 40.0 0.402 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958076 2018-02-23 08:53:50 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-20 14:47:00 obsr955789 S21520002 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293968345 2021-03-24 21:09:00.82373 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Rensselaer US-NY-083 13.0 West Sand Lake, NY 1 L1766939 P 42.6226389 -73.6175931 2015-01-30 09:30:00 obsr2186523 S21600037 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307117233 2021-03-24 19:48:44.880783 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-02 14:15:00 obsr2173269 S22656497 Traveling P22 EBIRD 44.0 0.805 1.0 1 G1202325 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293051289 2018-08-04 16:55:10 27616 species avibase-D77E4B41 American Robin Turdus migratorius 8 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr869999 S21526856 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308717667 2018-08-04 17:08:15 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 21 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-09 16:35:00 obsr2683910 S22774035 Stationary P21 EBIRD 4.0 2.0 1 G1212554 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314698773 2018-08-04 17:13:58 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-01 15:53:00 obsr1764243 S23165148 Traveling P22 EBIRD 104.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317293661 2022-02-17 14:32:23.002448 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-08 15:30:00 obsr1801902 S23311235 Traveling P22 EBIRD 80.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320683905 2021-11-15 03:06:58.889978 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 09:20:00 obsr1706920 S23499537 Traveling P22 EBIRD 260.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319394130 2021-11-15 03:06:58.889978 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-13 09:14:00 obsr870166 S23429229 Traveling P22 EBIRD 65.0 0.805 2.0 1 G1735848 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302587346 2018-08-04 16:59:42 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Onondaga US-NY-067 13.0 Creekwalk, Inner Harbor, Syr L3482212 P 43.0603116 -76.1662182 2015-03-11 17:58:00 obsr2716320 S22308673 Traveling P22 EBIRD 24.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318764092 2021-03-24 19:48:44.880783 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-05-11 11:55:00 obsr745890 S23392920 Traveling P22 EBIRD 35.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322667037 2021-03-24 20:58:53.646623 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-24 07:20:00 obsr72341 S23619058 Stationary P21 EBIRD 640.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309026160 2021-04-01 11:30:42.037277 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-09 13:00:00 obsr2182516 S22796285 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291517428 2021-03-30 19:29:33.633096 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-17 08:15:00 obsr717785 S21386794 Stationary P21 EBIRD 30.0 2.0 1 G1113385 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310219607 2018-08-04 17:09:17 456 species avibase-D201EB72 American Wigeon Mareca americana 8 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-04-15 13:19:00 obsr1958124 S22877141 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309929606 2018-08-04 17:09:07 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach--West L519918 H 40.5830444 -73.93058 2015-04-14 08:02:00 obsr1821546 S22857009 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311231507 2021-03-26 07:56:20.588749 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 3 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa preserve- Walker Street L3175652 P 40.6969856 -73.4523153 2015-04-19 06:30:00 obsr547602 S22943634 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310655326 2021-03-26 06:39:43.334073 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-17 08:08:00 obsr1969671 S22907252 Traveling P22 EBIRD 115.0 1.127 2.0 1 G1222883 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309237371 2021-03-23 17:00:13.087107 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Mount Pleasant L99402 H 42.4581378 -76.3845436 2015-04-11 14:04:00 obsr730231 S22809971 Stationary P21 EBIRD 60.0 2.0 1 G1215129 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305795686 2021-04-01 12:32:15.282601 7011 species avibase-534FB490 Northern Gannet Morus bassanus 1 United States US New York US-NY Nassau US-NY-059 30.0 Sagamore Hill NHS L910919 H 40.8859145 -73.4983377 2015-03-28 09:00:00 obsr676630 S22556489 Rusty Blackbird Spring Migration Blitz P41 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302863084 2018-12-20 14:40:52 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Bayard Cutting Arboretum SP L715580 H 40.7355391 -73.1629871 2015-03-11 12:30:00 obsr2852365 S22329365 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289396275 2021-04-01 11:24:19.637193 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-01-05 12:42:00 obsr745890 S21215811 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310121575 2018-08-04 17:08:59 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Jefferson US-NY-045 US-NY_762 13.0 Fort Drum: Matoon Marsh (restricted access) L1656712 P 44.2150552 -75.5837569 2015-04-13 08:23:00 obsr1558090 S22870617 Traveling P22 EBIRD 55.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317309274 2018-06-14 16:40:11 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 1 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95502 2015-05-08 19:00:00 obsr1830659 S23311835 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314746512 2021-11-09 18:13:28.979518 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Ogden Mills & Ruth Livingston Mills SP--Hopeland Area L1305175 H 41.8648765 -73.9203686 2015-05-01 09:45:00 obsr2573652 S23168074 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324041204 2021-11-09 18:41:18.802139 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 2 United States US New York US-NY Dutchess US-NY-027 28.0 Lake Weil Wingdale L3030078 P 41.67324 -73.54287 2015-05-16 06:49:00 obsr1732267 S23710511 Traveling P22 EBIRD 54.0 1.609 2.0 1 G1298884 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292731249 2021-03-26 07:20:31.408164 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis N 15 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-01-11 07:30:00 obsr1592950 S21501935 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297701308 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-16 17:19:00 obsr934639 S21912246 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290177073 2015-01-10 13:03:11 616 species avibase-25C94A8F Greater Scaup Aythya marila 15 United States US New York US-NY Suffolk US-NY-103 30.0 Arshamomaque Preserve L273407 H 41.0956498 -72.3911698 2015-01-10 12:25:00 obsr2485753 S21278244 Traveling P22 EBIRD 36.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315771967 2021-03-30 19:13:38.458673 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 7 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-04 08:29:00 obsr745890 S23224509 Traveling P22 EBIRD 180.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306395099 2021-03-23 16:45:39.358281 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 Remington Recreation Trail L270558 H 44.6127667 -75.1665791 2015-03-30 16:55:00 obsr1558090 S22601386 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292898164 2018-08-04 16:55:07 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 53 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-24 10:58:00 obsr1062070 S21515398 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306717554 2021-04-01 11:24:19.637193 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-01 11:30:00 obsr934639 S22626614 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS452458569 2021-05-05 15:43:39.075206 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 10 United States US New York US-NY New York US-NY-061 Liberty Island/Statue of Liberty (NY County) L2686238 H 40.6900653 -74.0452476 2015-05-21 11:55:00 obsr2270510 S23580811 Traveling P22 EBIRD 50.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320187213 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-14 15:30:00 obsr2207991 S23473594 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306412774 2018-08-04 17:04:46 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Road L3492876 P 42.4352574 -79.3776771 2015-03-30 10:30:00 obsr479109 S22602764 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288790198 2021-11-09 20:42:29.914366 27616 species avibase-D77E4B41 American Robin Turdus migratorius 8 United States US New York US-NY Putnam US-NY-079 28.0 Lake Mahopac L3261861 H 41.3804796 -73.738389 2015-01-03 07:15:00 obsr258431 S21166343 Traveling P22 EBIRD 90.0 2.414 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307008999 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-02 11:30:00 obsr2078092 S22648398 Traveling P22 EBIRD 300.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295212117 2021-04-01 10:55:39.308231 505 species avibase-C732CB10 American Black Duck Anas rubripes 6 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-02-06 13:14:00 obsr502830 S21698669 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301052196 2022-03-05 22:03:50.715584 5155 species avibase-4880DC55 Virginia Rail Rallus limicola 75 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-05 08:30:00 obsr2219590 S22182766 Stationary P21 EBIRD 210.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309125975 2021-11-09 21:50:48.44865 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-11 08:00:00 obsr2862523 S22802282 Traveling P22 EBIRD 80.0 2.414 30.0 1 G1214172 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1044135423 2021-03-26 06:39:43.334073 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-03-07 14:30:00 obsr1609486 S78651239 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299047034 2021-03-26 06:15:05.840405 23242 species avibase-94A1C447 Bank Swallow Riparia riparia 2 United States US New York US-NY Cortland US-NY-023 28.0 Municipal Waterworks, Cortland L3400006 H 42.595291 -76.194842 2015-02-20 17:01:00 obsr2683805 S22030058 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311338606 2021-03-26 07:17:57.136956 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Towpath Rd. L266832 H 43.0038224 -76.7457005 2015-04-19 10:50:00 obsr1655171 S22950134 Traveling P22 EBIRD 74.0 3.219 2.0 1 G1230121 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309436620 2021-03-24 19:47:16.07498 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-12 06:10:00 obsr2716320 S22822143 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294357473 2021-11-09 20:59:08.238638 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 30 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-02-01 08:15:00 obsr2586816 S21630584 Traveling P22 EBIRD 60.0 4.828 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296718688 2015-02-14 19:34:23 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Kings US-NY-047 30.0 Knapp St, 11235 L3367144 P 40.5921871 -73.9330101 2015-02-13 15:05:00 obsr2018068 S21824019 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307038333 2021-03-23 16:45:39.358281 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 11 United States US New York US-NY St. Lawrence US-NY-089 13.0 Remington Recreation Trail L270558 H 44.6127667 -75.1665791 2015-04-02 17:08:00 obsr1558090 S22650486 Traveling P22 EBIRD 33.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302380496 2015-03-10 22:03:33 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 8 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-10 08:08:00 obsr1334267 S22292710 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313439921 2021-04-01 10:57:06.520339 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 17 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-04-14 07:54:00 obsr2693145 S23087304 Traveling P22 EBIRD 106.0 1.287 2.0 1 G1239076 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309229778 2022-02-27 09:35:49.066489 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 72 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-04-09 16:00:00 obsr2087436 S22809494 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315812977 2021-03-26 06:29:56.44369 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Monroe US-NY-055 13.0 Westgate Park L3613184 P 43.13284 -77.69414 2015-05-04 15:06:00 obsr745890 S23226627 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296117266 2021-04-01 11:42:50.317679 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 Female, Unknown Age (1); Male, Unknown Age (1) United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-02-10 09:30:00 obsr1195517 S21770373 Stationary P21 EBIRD 165.0 2.0 1 G1143065 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304331936 2021-03-24 20:33:47.533911 30494 species avibase-240E3390 House Sparrow Passer domesticus N 2 United States US New York US-NY Tompkins US-NY-109 13.0 Freese Rd., Dryden L164468 H 42.4629085 -76.4449847 2015-03-19 08:04:00 obsr1696616 S22444819 Traveling P22 EBIRD 3.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315317532 2021-04-01 11:30:42.037277 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 06:50:00 obsr1146149 S23199870 Traveling P22 EBIRD 240.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289360812 2018-08-04 16:52:42 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-01-04 09:45:00 obsr1569772 S21213035 Traveling P22 EBIRD 20.0 0.805 2.0 1 G1097874 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135068 2021-03-26 07:56:20.588749 6361 issf avibase-0C55DFCC Iceland Gull Larus glaucoides Iceland Gull (kumlieni) Larus glaucoides kumlieni 16 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-22 16:00:00 obsr2218212 S23589154 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS603589889 2021-04-01 11:30:42.037277 505 species avibase-C732CB10 American Black Duck Anas rubripes N X United States US New York US-NY New York US-NY-061 30.0 Tompkins Square Park L1799567 H 40.7264498 -73.981777 2015-04-06 15:00:00 obsr1594860 S44822172 Historical P62 EBIRD 15.0 4.0469 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291204725 2021-04-01 11:24:19.637193 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-15 08:20:00 obsr1782363 S21361418 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309087041 2018-08-04 17:08:29 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-11 10:43:00 obsr613775 S22800075 Traveling P22 EBIRD 153.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302880730 2018-08-04 16:59:45 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Oswego US-NY-075 13.0 W. Utica St. bridge L3461305 H 43.4532324 -76.507507 2015-03-12 12:15:00 obsr1303581 S22330710 Traveling P22 EBIRD 225.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301440857 2021-03-24 19:27:13.077399 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 8 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-07 10:19:00 obsr1334267 S22213043 Traveling P22 EBIRD 31.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317220798 2021-11-09 18:33:00.286511 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Dutchess US-NY-027 13.0 Mills Norrie State Park L2422468 P 41.8447849 -73.9312345 2015-05-08 11:00:00 obsr671490 S23307071 Traveling P22 EBIRD 45.0 1.207 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292036659 2021-11-15 03:06:58.889978 662 species avibase-FB738385 Bufflehead Bucephala albeola N 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-05 09:10:00 obsr189780 S21427013 Area P23 EBIRD 15.0 1.2141 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302221267 2018-08-04 16:59:14 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 150 United States US New York US-NY Clinton US-NY-019 13.0 Cumberland Head L547815 P 44.7233202 -73.3996582 2015-03-10 10:10:00 obsr884584 S22275136 Stationary P21 EBIRD 25.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317992506 2021-04-01 11:30:42.037277 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 08:50:00 obsr1601967 S23351012 Traveling P22 EBIRD 250.0 4.828 15.0 1 G1261209 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306616907 2021-04-01 12:31:09.823741 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Livingston US-NY-051 13.0 Home--Geneseo L2865813 P 42.8460168 -77.8164196 2015-03-31 10:30:00 obsr1513934 S22619023 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277948 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.5944991 -73.8148373 2015-01-01 12:40:00 obsr2855945 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316724056 2021-04-01 10:52:54.724403 6616 species avibase-7E022378 Common Loon Gavia immer 4 United States US New York US-NY Columbia US-NY-021 13.0 Germantown L284394 T 42.13449 -73.89178 2015-05-06 18:00:00 obsr712039 S23279528 Traveling P22 EBIRD 60.0 20.921 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297297828 2021-03-26 06:29:56.44369 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-02-14 15:15:00 obsr2759466 S21875777 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS576806289 2018-02-12 13:16:12 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 1 United States US New York US-NY Suffolk US-NY-103 30.0 Private House Miller Place (not exact location) L6863324 P 40.9580579 -73.0069399 2015-01-10 14:00:00 obsr782651 S42690570 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305674210 2018-08-04 17:04:24 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-03-27 19:00:00 obsr2011512 S22547482 Traveling P22 EBIRD 25.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320581895 2018-08-06 22:30:19 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-17 07:30:00 obsr1472872 S23494129 Traveling P22 EBIRD 98.0 7.065 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309921225 2021-04-01 11:24:19.637193 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-13 17:45:00 obsr1561508 S22856421 Stationary P21 EBIRD 45.0 2.0 1 G1219235 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302168216 2021-03-30 19:39:10.250398 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Nassau US-NY-059 30.0 Saint Johns Pond Sanctuary L123034 H 40.85417 -73.46333 2015-03-10 11:12:00 obsr1107696 S22268912 Rusty Blackbird Spring Migration Blitz P41 EBIRD 40.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306329413 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N X United States US New York US-NY Kings US-NY-047 Coney Island Beach--35th St. Overlook L1373631 H 40.5717813 -74.0006958 2015-03-30 12:15:00 obsr1189028 S22596239 Traveling P22 EBIRD 22.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354041 2015-02-01 12:38:49 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Montezuma NWR--Lock 25 L2352540 H 42.9990281 -76.764101 2015-01-30 09:05:00 obsr2683910 S21630294 Incidental P20 EBIRD 2.0 0 G1131415 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296149975 2021-03-26 06:55:00.227271 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Ontario US-NY-069 13.0 The Swamp L1660257 P 42.8848133 -77.0413991 2015-02-11 10:55:00 obsr572658 S21772917 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313128624 2021-03-30 19:37:33.521815 30494 species avibase-240E3390 House Sparrow Passer domesticus 9 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-26 09:29:00 obsr1721609 S23067716 Traveling P22 EBIRD 187.0 3.219 3.0 1 G1238591 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316252091 2021-03-26 06:29:56.44369 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-05 06:00:00 obsr2449897 S23252667 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322807552 2015-05-25 12:40:33 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 United States US New York US-NY Essex US-NY-031 14.0 US-NY-Keene Valley - 44.1517x-73.7793 - May 26, 2014, 7:53 AM L2879311 P 44.151675 -73.77926 2015-05-24 08:00:00 obsr896341 S23627709 Traveling P22 EBIRD 180.0 0.805 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289245407 2018-08-04 16:52:47 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail, Sherwood Pltform base - West Trail (0.137km) L1369671 P 42.4793682 -76.4546071 2015-01-05 08:00:00 obsr2307843 S21203728 Traveling P22 EBIRD 10.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000262 2021-03-26 07:56:20.588749 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-02 09:00:00 obsr2218212 S23775900 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291246296 2021-04-01 10:57:06.520339 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-01-16 07:36:00 obsr2420101 S21364839 Traveling P22 EBIRD 78.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321965808 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-22 09:00:00 obsr454647 S23578269 Traveling P22 EBIRD 270.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304637351 2021-03-26 07:07:10.758746 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 2 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-03-22 12:03:00 obsr1958124 S22467363 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306604332 2021-04-01 11:54:40.172593 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 2 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-03-31 08:00:00 obsr666331 S22618075 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297924339 2021-03-26 06:09:25.361188 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-02-17 08:15:00 obsr879105 S21932674 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288366085 2021-03-24 21:13:42.099821 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Westchester US-NY-119 30.0 81 Lake Street, Peach Lake, North Salem L141329 P 41.3594812 -73.5793018 2015-01-01 09:45:00 obsr1736921 S21131644 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310738987 2021-03-26 08:14:04.726922 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 7 United States US New York US-NY Warren US-NY-113 13.0 Shermantown Rd. Portage Trail L960269 H 43.3064521 -73.6251848 2015-04-17 09:13:00 obsr1222746 S22912820 Traveling P22 EBIRD 31.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293045813 2021-03-01 11:20:54.007808 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-24 12:44:00 obsr2683910 S21526401 Traveling P22 EBIRD 29.0 0.483 2.0 1 G1121998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319944861 2021-03-26 06:20:10.658048 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 5 United States US New York US-NY Genesee US-NY-037 13.0 Francis Road, Batavia, NY L1421017 P 42.9423971 -78.1622197 2015-05-15 09:00:00 obsr393804 S23460484 Traveling P22 EBIRD 170.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291415858 2015-01-17 10:46:56 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Veterans Memorial Park L1375721 P 40.9779318 -72.5306837 2015-01-17 10:43:00 obsr2485753 S21378515 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310753691 2021-03-19 16:44:35.607263 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 19 United States US New York US-NY Monroe US-NY-055 13.0 Thousand Acre Swamp Preserve L123006 H 43.17917 -77.45194 2015-04-17 18:51:00 obsr1545618 S22913806 Traveling P22 EBIRD 57.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291495792 2021-04-01 12:14:19.266649 406 species avibase-27B2749A Wood Duck Aix sponsa X United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-17 08:30:00 obsr547602 S21385063 Traveling P22 EBIRD 60.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310459858 2021-04-01 11:42:15.525388 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 9 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Fort Niagara SP L210265 H 43.2638703 -79.0567981 2015-04-16 14:45:00 obsr2588479 S22893572 Traveling P22 EBIRD 28.0 0.322 3.0 1 G1222155 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292946878 2021-04-01 12:41:58.738824 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 4 United States US New York US-NY Schuyler US-NY-097 13.0 Hector Road L3314219 P 42.4876174 -76.8287015 2015-01-24 10:25:00 obsr1042912 S21519156 Traveling P22 EBIRD 17.0 4.184 2.0 1 G1121215 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309785557 2021-03-30 19:13:38.458673 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Beatty Point L299148 H 43.2762602 -77.684471 2015-04-12 09:29:00 obsr1534851 S22846800 Traveling P22 EBIRD 35.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305785171 2021-03-19 16:14:11.035882 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Cortland US-NY-023 28.0 West River Road - Virgil (Tioughnioga River) L2065122 P 42.5383466 -76.0960293 2015-03-28 09:45:00 obsr931232 S22555717 Traveling P22 EBIRD 40.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306448378 2018-08-04 17:02:48 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Tioga US-NY-107 28.0 Confluence Park, Owego L2011248 H 42.0957386 -76.2724543 2015-03-25 06:39:00 obsr1318356 S22605845 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324138127 2021-03-26 06:29:56.44369 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-MON Chili--Cedars of Chili, Blue Spruce Dr. (Ian's) L2906855 P 43.0988659 -77.7530336 2015-05-27 10:03:00 obsr606693 S23716843 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295619647 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.8768877 -73.7898123 2015-02-08 08:00:00 obsr2207991 S21731581 Traveling P22 EBIRD 270.0 3.219 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299564481 2015-02-25 19:33:27 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Kings US-NY-047 Floyd Bennett Field--End of Archery Rd. L1410427 H 40.5853 -73.8771935 2015-02-25 15:15:00 obsr454647 S22069855 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311455184 2022-02-18 10:47:29.953615 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-19 15:05:00 obsr1062070 S22957391 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297615957 2021-11-09 22:04:47.967972 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-16 11:30:00 obsr1585090 S21904045 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314151956 2017-08-16 17:09:40 303 species avibase-B59E1863 Canada Goose Branta canadensis 9 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Carncross Rd. L99688 H 43.0787739 -76.7080184 2015-04-28 10:23:00 obsr534615 S23131540 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305432341 2021-04-01 11:54:40.172593 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 12 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-26 14:10:00 obsr1958124 S22528782 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305963446 2021-04-01 12:39:12.329364 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 1 United States US New York US-NY Otsego US-NY-077 28.0 ninja HQ L2949037 P 42.474204 -75.053505 2015-03-29 07:24:00 obsr1536762 S22568968 Traveling P22 EBIRD 21.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319273134 2018-08-06 22:29:49 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 3 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-05-13 07:30:00 obsr2766625 S23422389 Traveling P22 EBIRD 270.0 1.609 10.0 1 G1269120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303063304 2018-08-04 17:00:42 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Allegany US-NY-003 28.0 Back River Road L3481285 P 42.1984696 -78.0121732 2015-03-14 11:15:00 obsr1310178 S22345589 Traveling P22 EBIRD 20.0 6.437 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318712302 2021-11-15 03:06:58.889978 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-11 07:30:00 obsr259298 S23389821 Traveling P22 EBIRD 116.0 4.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321682194 2021-11-15 03:06:58.889978 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-19 09:15:00 obsr1706920 S23560274 Traveling P22 EBIRD 165.0 0.322 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297539468 2021-04-01 12:26:53.827486 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Albany US-NY-001 13.0 Latham, NY, US L3360449 P 42.740961 -73.7635803 2015-02-16 11:40:00 obsr1637944 S21897141 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313788448 2021-03-22 09:15:15.32301 30494 species avibase-240E3390 House Sparrow Passer domesticus 57 United States US New York US-NY Niagara US-NY-063 13.0 Wilson-Tuscarora SP L210266 H 43.3072398 -78.8548868 2015-04-28 07:50:00 obsr2756208 S23108997 Traveling P22 EBIRD 71.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310911416 2018-08-04 17:09:44 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-18 11:44:00 obsr800690 S22923945 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298481010 2021-03-23 16:39:03.255227 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-02-19 07:34:00 obsr1893950 S21980838 Traveling P22 EBIRD 4.0 0.483 2.0 1 G1153111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313864160 2021-03-24 21:10:11.310781 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Saratoga US-NY-091 13.0 36 Curt Blvd L2229955 P 43.0492325 -73.8315735 2015-04-28 11:00:00 obsr907769 S23113843 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314875041 2018-08-04 17:14:02 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 10 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Onondaga Trail L157279 H 43.12222 -78.36889 2015-05-02 07:45:00 obsr558077 S23175869 Traveling P22 EBIRD 175.0 3.219 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310450533 2021-03-30 19:29:33.633096 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-16 07:45:00 obsr247620 S22892905 Traveling P22 EBIRD 105.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311342121 2021-03-19 16:19:20.977326 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-19 08:20:00 obsr2071643 S22947665 Traveling P22 EBIRD 245.0 2.414 3.0 1 G1226244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295668631 2015-02-08 20:26:11 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 3 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-02-08 07:00:00 obsr2694889 S21735472 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304696772 2021-11-09 18:45:10.579736 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Dutchess US-NY-027 13.0 Hudson River at Main Street, Wappingers Falls, NY L3506951 P 41.5879092 -73.9505603 2015-03-22 11:45:00 obsr2175245 S22471871 Stationary P21 EBIRD 31.0 3.0 1 G1188695 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299356399 2021-03-26 06:52:34.887371 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-02-19 10:00:00 obsr2141910 S22054183 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304518783 2021-03-24 19:27:13.077399 30494 species avibase-240E3390 House Sparrow Passer domesticus 10 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-21 09:58:00 obsr1334267 S22458781 Traveling P22 EBIRD 32.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289451147 2021-03-23 16:52:36.900075 456 species avibase-D201EB72 American Wigeon Mareca americana 3 Male, Unknown Age (2); Female, Unknown Age (1) United States US New York US-NY Suffolk US-NY-103 30.0 53 Highview Lane L296117 P 40.9075594 -72.8885669 2015-01-06 08:35:00 obsr395994 S21220021 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301510634 2021-03-30 19:07:52.958398 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-22 14:00:00 obsr2277801 S22218112 Historical P62 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291791012 2021-04-01 11:24:19.637193 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-01-17 08:53:00 obsr34861 S21407957 Traveling P22 EBIRD 90.0 0.483 6.0 1 G1114601 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317533228 2021-11-09 18:17:17.335499 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Dutchess US-NY-027 13.0 Strever Farm Road, Pine Plains L1363519 H 41.9457427 -73.6491438 2015-05-09 05:55:00 obsr1433400 S23325904 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314606398 2021-04-01 12:26:53.827486 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-05-01 11:40:00 obsr1154 S23159952 Traveling P22 EBIRD 35.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305851956 2021-03-23 17:15:00.080143 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-03-28 16:01:00 obsr1721609 S22560538 Traveling P22 EBIRD 92.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312511860 2022-02-13 06:32:05.759346 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-04-24 07:36:00 obsr1828453 S23028039 Traveling P22 EBIRD 20.0 1.609 2.0 1 G1233728 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314277468 2021-03-24 20:33:47.533911 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 8 United States US New York US-NY Tompkins US-NY-109 28.0 Thomas Rd., south (Six Mile Creek ponds & marsh) L388439 H 42.4020377 -76.3778114 2015-04-30 08:24:00 obsr1655171 S23139646 Traveling P22 EBIRD 10.0 3.54 2.0 1 G1244182 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294719286 2021-03-26 08:14:57.071052 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 8 United States US New York US-NY Westchester US-NY-119 30.0 Wilton L963070 P 41.0891766 -73.8526082 2015-01-31 09:30:00 obsr1538953 S21659108 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293340322 2021-03-23 17:00:13.087107 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 40 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-01-26 08:52:00 obsr1655171 S21549463 Traveling P22 EBIRD 24.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308432442 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-08 07:30:00 obsr1229227 S22751988 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290213822 2021-03-26 07:20:31.408164 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 10 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-01-09 07:00:00 obsr1592950 S21281336 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310836540 2021-03-24 20:58:04.794277 303 species avibase-B59E1863 Canada Goose Branta canadensis N 7 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-04-17 08:30:00 obsr1680059 S22919157 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303243464 2018-08-04 17:01:28 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 50 United States US New York US-NY Greene US-NY-039 13.0 Coxsackie Flats, Industrial Parkway L962235 H 42.3463348 -73.8154116 2015-03-15 12:00:00 obsr1181085 S22359453 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297775864 2015-02-16 19:51:20 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Oswego US-NY-075 13.0 Central Square L2053322 T 43.28677 -76.14605 2015-02-16 13:50:00 obsr797977 S21919358 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311225562 2021-04-01 11:30:42.037277 7662 species avibase-5F8E7CA8 Golden Eagle Aquila chrysaetos N 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Oven and The Point L1480317 H 40.7756262 -73.9700541 2015-04-18 09:50:00 obsr1258494 S22943286 Traveling P22 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298900209 2015-02-22 01:56:09 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP northeast L476033 P 40.6923532 -73.6348343 2015-02-21 10:25:00 obsr1160328 S22016499 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301100496 2021-11-09 18:34:57.804398 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-03-05 16:00:00 obsr1264675 S22185948 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305682118 2021-11-09 20:51:06.773494 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Rockland US-NY-087 28.0 Kakiat County Park L1023278 H 41.1461171 -74.11466 2015-03-27 18:00:00 obsr2346161 S22548081 Traveling P22 EBIRD 100.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290634938 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-01-10 07:35:00 obsr2449897 S21314957 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321851322 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-18 16:45:00 obsr2603801 S23570802 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1282662 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323258651 2015-05-26 23:03:14 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-20 16:30:00 obsr316199 S23656650 Area P23 EBIRD 90.0 2.59 2.0 1 G1292225 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298881757 2021-03-24 20:21:40.993321 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Seneca US-NY-099 13.0 Cove L678244 P 42.6487254 -76.8698493 2015-02-21 obsr2731440 S22014671 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311155511 2021-03-31 04:01:10.517395 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 07:35:00 obsr1077730 S22939046 Traveling P22 EBIRD 320.0 8.047 16.0 1 G1224971 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319284733 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-13 09:16:00 obsr152435 S23423055 Traveling P22 EBIRD 282.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294562621 2021-03-26 06:59:15.841579 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 3 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-01-10 08:10:00 obsr2409011 S21646796 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313147114 2018-02-01 15:11:46 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor20 L3513962 H 42.7170586 -76.0855457 2015-04-26 08:10:00 obsr851448 S23068807 Stationary P21 EBIRD 14.0 3.0 1 G1236962 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316057691 2021-12-08 07:58:41.562209 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-05 07:09:00 obsr119481 S23240945 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307514957 2018-08-04 17:05:24 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-04 12:00:00 obsr544268 S22684722 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1204418 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319555904 2022-01-30 05:51:35.389484 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 11:00:00 obsr2313216 S23438809 Historical P62 EBIRD 300.0 4.0469 30.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301119964 2021-03-19 16:10:30.527219 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 6 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Holiday Inn L160744 H 42.08827 -76.79419 2015-03-05 14:28:00 obsr1334267 S22187188 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323358683 2022-02-17 14:32:23.002448 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-27 09:15:00 obsr2078092 S23663365 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1138403137 2021-05-01 16:46:42.286989 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-11 05:45:00 obsr1372480 S86837568 Traveling P22 EBIRD 420.0 8.047 5.0 1 G1266741 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314883007 2021-03-26 07:52:40.224846 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Fulton US-NY-035 13.0 johnstown cemetery L1202581 P 43.0097625 -74.3680859 2015-05-02 10:00:00 obsr2590001 S23176282 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289345092 2021-04-01 12:35:52.669792 20829 species avibase-B9B272F4 Common Raven Corvus corax 100 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--West Shore Trail, Maple Bay L985142 H 43.1081268 -76.2464261 2015-01-05 15:00:00 obsr660214 S21211788 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308576250 2021-11-09 21:35:18.646328 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 1 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-08 07:50:00 obsr1636520 S22750419 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297844598 2015-03-04 19:27:09 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Washington US-NY-115 13.0 Hinds Rd--btwn Rt 196 and Town Line Rd L1475536 P 43.30814 -73.487897 2015-02-16 10:48:00 obsr1222746 S21925865 Traveling P22 EBIRD 33.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320342847 2021-03-26 07:52:59.845315 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-15 06:40:00 obsr1000124 S23481502 Area P23 EBIRD 170.0 2.59 2.0 1 G1273999 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308145759 2018-08-04 17:06:13 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 15 United States US New York US-NY Chenango US-NY-017 28.0 Rt. 39 Susquehanna Floodplain L3544896 P 42.2976069 -75.4552174 2015-04-06 12:10:00 obsr2211210 S22729827 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312301087 2021-03-23 16:30:20.514143 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Oswego US-NY-075 US-NY_759 13.0 Bear's Sleepy Hollow Campground L3584589 P 43.5438822 -76.1935329 2015-04-21 10:30:00 obsr1671931 S23013602 Traveling P22 EBIRD 180.0 0.25 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304847405 2019-07-23 17:28:04 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-03-21 10:10:00 obsr241086 S22482686 Stationary P21 EBIRD 30.0 10.0 1 G1190039 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298269583 2021-03-19 16:32:34.732091 30494 species avibase-240E3390 House Sparrow Passer domesticus 10 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek--Leon S. Kaiser Park L1312993 H 40.5806115 -73.9979002 2015-02-18 12:30:00 obsr369788 S21962174 Traveling P22 EBIRD 45.0 0.483 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310663946 2021-03-24 20:49:55.752669 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-04-17 12:28:00 obsr1721609 S22907778 Stationary P21 EBIRD 62.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309316995 2021-03-19 16:27:31.421791 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-04-12 07:42:00 obsr1603345 S22815108 Stationary P21 EBIRD 53.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306989716 2019-09-29 09:48:34 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-02 16:14:00 obsr2914424 S22646624 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312766001 2021-03-24 20:23:39.258075 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Farm L137715 P 41.0795555 -72.4394913 2015-04-25 10:36:00 obsr2485753 S23046188 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291075552 2018-11-19 00:15:03 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-01-14 14:00:00 obsr1417967 S21350839 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294239621 2018-08-04 16:55:31 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 6 United States US New York US-NY Essex US-NY-031 13.0 Whallon Bay L504733 H 44.2732298 -73.3454132 2015-01-31 14:00:00 obsr877361 S21621447 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315757874 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-05-04 09:30:00 obsr247620 S23223719 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307794354 2018-12-30 09:52:57 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 16 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-05 15:00:00 obsr2321296 S22704412 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324201384 2021-04-01 11:47:43.260314 303 species avibase-B59E1863 Canada Goose Branta canadensis N 3 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-04-20 obsr2409011 S23720766 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309367235 2021-03-26 06:09:25.361188 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton - 42.1363x-75.9101 - Apr 12, 2015, 9:44 AM L3557721 P 42.136311 -75.910147 2015-04-12 09:45:00 obsr1764243 S22818208 Traveling P22 EBIRD 141.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305167458 2018-08-04 17:02:48 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 400 United States US New York US-NY Schuyler US-NY-097 13.0 Seneca Lake, Salt Point Rd. L489167 H 42.3915791 -76.8810073 2015-03-24 18:52:00 obsr2173269 S22508045 Traveling P22 EBIRD 11.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302554575 2021-03-30 19:13:38.458673 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 4 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-11 17:15:00 obsr302343 S22306090 Traveling P22 EBIRD 60.0 0.402 2.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313331992 2021-04-01 11:30:42.037277 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 09:00:00 obsr1489009 S23080029 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319621601 2021-04-01 11:15:31.646886 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 07:40:00 obsr454647 S23442408 Traveling P22 EBIRD 540.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297806549 2021-11-09 22:04:47.967972 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-16 14:10:00 obsr272939 S21922249 Stationary P21 EBIRD 120.0 2.0 1 G1149818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319720234 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 8 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-14 15:00:00 obsr1731572 S23448072 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312563503 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-24 10:30:00 obsr2883698 S23032041 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313789149 2022-03-05 22:03:50.715584 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 129 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-28 08:30:00 obsr444155 S23109044 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289440273 2018-08-04 16:52:29 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 130 United States US New York US-NY Onondaga US-NY-067 13.0 Oneida Lakeshore Rd Yacht Club L1321673 P 43.2002332 -76.0528135 2015-01-02 10:35:00 obsr2290617 S21218996 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295816955 2021-03-26 06:07:45.516082 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo -- Bison Range L3349637 P 40.85374 -73.87683 2015-02-09 15:01:00 obsr128156 S21746355 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296003756 2021-11-09 22:04:47.967972 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-10 13:30:00 obsr2097983 S21761371 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292704283 2021-04-01 12:18:57.910168 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 30 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-01-21 14:00:00 obsr71667 S21500020 Stationary P21 EBIRD 20.0 3.0 1 G1118986 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307464860 2021-03-30 19:29:33.633096 337 species avibase-694C127A Mute Swan Cygnus olor 10 United States US New York US-NY Suffolk US-NY-103 30.0 Wading River Marsh Preserve L123013 H 40.96167 -72.85778 2015-04-04 08:55:00 obsr1954215 S22681336 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291446267 2021-03-30 19:07:52.958398 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-17 09:00:00 obsr1711339 S21381088 Traveling P22 EBIRD 195.0 3.219 3.0 1 G1111978 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311051214 2021-04-01 11:24:19.637193 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Erie Canal, Rte. 31 L827461 H 43.0748912 -77.4637681 2015-04-18 06:30:00 obsr1545618 S22932730 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312299620 2021-03-23 16:21:52.613913 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Ontario US-NY-069 13.0 **US-NY-ONT Manchester Town Hall, 1272 CR 7 at NY 96 (3175B) [Clifton Springs_NE] L1310921 P 42.9711749 -77.1814066 2015-04-23 11:10:00 obsr606693 S23013491 Traveling P22 EBIRD 5.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299021804 2021-12-10 08:21:29.396662 447 species avibase-C235A4D7 Gadwall Mareca strepera X United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-22 12:15:00 obsr2206421 S22025996 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304775867 2021-03-19 15:59:05.496822 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-03-22 07:50:00 obsr2700440 S22477725 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323596244 2021-04-01 12:32:15.282601 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-28 06:45:00 obsr547602 S23679631 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309783888 2018-08-04 17:09:00 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 5 United States US New York US-NY Washington US-NY-115 13.0 Towpath Rd--off Crowley Rd L2588719 P 43.3212043 -73.5277605 2015-04-13 09:10:00 obsr1222746 S22846688 Traveling P22 EBIRD 52.0 3.862 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288635208 2015-01-02 22:38:13 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 Male, Adult (1) United States US New York US-NY Fulton US-NY-035 13.0 Mud Road L3259567 P 43.016028 -74.496103 2015-01-02 12:53:00 obsr1000124 S21153936 Traveling P22 EBIRD 12.0 5.955 4.0 1 G1092207 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294243045 2021-03-26 07:17:57.136956 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 3 United States US New York US-NY Seneca US-NY-099 13.0 US-NY-Romulus-5435-5439 McDuffietown Rd L3215497 P 42.756572 -76.792359 2015-01-31 10:48:00 obsr2211210 S21621711 Traveling P22 EBIRD 9.0 0.805 2.0 1 G1130691 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318677487 2018-08-06 22:29:36 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-10 12:00:00 obsr2505956 S23387836 Rusty Blackbird Spring Migration Blitz P41 EBIRD 105.0 2.414 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301854937 2021-03-30 19:03:54.667077 33034 species avibase-6283E61E Pine Warbler Setophaga pinus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-08 15:15:00 obsr479109 S22245636 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001036 2021-03-26 07:56:20.588749 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata N 5 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-16 16:00:00 obsr2218212 S23775924 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310705185 2021-03-24 20:11:19.423282 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Orleans US-NY-073 13.0 Gaines-Waterport Rd L2408367 P 43.2855406 -78.2156423 2015-04-17 12:00:00 obsr137150 S22910455 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313637492 2018-08-04 17:12:33 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-04-27 18:30:00 obsr2796494 S23099339 Traveling P22 EBIRD 30.0 0.402 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291194369 2015-04-23 12:48:54 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Hamilton US-NY-041 14.0 Kunjamuk River/Bay / Rt 8/30 - between Informational Parking Area (North side) & Old Rt 8b L3132073 P 43.506708 -74.3272499 2015-01-14 12:55:00 obsr2694889 S21360456 Incidental P20 EBIRD 4.0 0 G1110451 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298956677 2021-03-26 07:30:35.289997 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 3 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-02-21 10:30:00 obsr2137468 S22020766 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321889474 2018-08-06 22:30:46 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 1 United States US New York US-NY Hamilton US-NY-041 14.0 Sacandaga River Pathway L947005 P 43.5000676 -74.3573141 2015-05-22 05:30:00 obsr1735540 S23573548 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295987118 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-10 12:00:00 obsr2706811 S21760014 Traveling P22 EBIRD 90.0 3.219 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303496300 2021-03-26 08:09:53.772059 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Rensselaer US-NY-083 13.0 Lansingburgh Boat Launch L1438863 H 42.7846064 -73.6742257 2015-03-16 09:30:00 obsr481595 S22380099 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314420479 2018-08-04 17:13:11 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Columbia US-NY-021 13.0 Toyota Dealership Grounds L3602639 P 42.3321821 -73.7037134 2015-04-30 15:00:00 obsr349211 S23147970 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290885426 2021-11-09 21:23:47.89824 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N 3 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-01-13 16:13:00 obsr1136997 S21335657 Stationary P21 EBIRD 67.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310093882 2020-03-20 08:09:03 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Tompkins US-NY-109 28.0 Mount Pleasant L99402 H 42.4581378 -76.3845436 2015-04-12 11:15:00 obsr2683910 S22868684 Stationary P21 EBIRD 65.0 2.0 1 G1219985 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324324875 2021-03-26 06:39:43.334073 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-30 09:20:00 obsr1706920 S23728839 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319105980 2018-08-04 17:26:51 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-12 15:30:00 obsr41879 S23413118 Traveling P22 EBIRD 90.0 4.828 2.0 1 G1270545 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304105721 2015-03-19 19:35:26 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 4 United States US New York US-NY Schuyler US-NY-097 US-NY_845 13.0 Finger Lakes NF--Ballard Pond L782293 H 42.5279345 -76.7877173 2015-03-19 14:30:00 obsr2260025 S22427368 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300048845 2021-04-01 11:49:53.573686 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 8 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-02-28 11:35:00 obsr1481911 S22107378 Traveling P22 EBIRD 134.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293247176 2021-11-09 18:56:49.988387 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies L428335 H 41.7861111 -73.7397222 2015-01-21 07:15:00 obsr1062217 S21542537 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305608878 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-27 13:15:00 obsr2906952 S22542424 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294972684 2021-03-23 17:23:45.772216 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-02-04 07:30:00 obsr72341 S21680276 Stationary P21 EBIRD 405.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309293529 2021-09-12 21:03:10.253835 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 12 H C2 H United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR (Seneca County) L6199904 P 42.9801 -76.7408323 2015-04-08 17:26:00 obsr924076 S22813561 Traveling P22 EBIRD 146.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS360465269 2018-08-06 22:30:12 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Basset Rd. L2419301 P 42.4060744 -75.9718645 2015-05-16 12:15:00 obsr246469 S26406571 Stationary P21 EBIRD 30.0 2.0 1 G1508798 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313565513 2021-03-23 17:23:45.772216 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake Park L748592 P 42.7747394 -77.6132584 2015-04-27 12:50:00 obsr1060479 S23094711 Traveling P22 EBIRD 52.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309320705 2021-11-09 18:42:19.628792 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 15 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-04-12 06:01:00 obsr1732267 S22815349 Traveling P22 EBIRD 150.0 3.058 3.0 1 G1217900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305143582 2021-03-26 07:52:59.845315 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 51 Male, Immature (2); Male, Adult (48); Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-24 07:17:00 obsr1000124 S22506326 Area P23 EBIRD 90.0 2.59 2.0 1 G1192376 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311174315 2021-04-01 10:49:39.496318 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.7320406 -76.7083025 2015-04-19 08:28:00 obsr1655171 S22940205 Stationary P21 EBIRD 5.0 2.0 1 G1230112 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295533974 2021-03-26 07:30:35.289997 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 15 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-08 07:50:00 obsr1828453 S21724825 Traveling P22 EBIRD 15.0 0.161 3.0 1 G1138946 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321273944 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-19 09:00:00 obsr706483 S23535389 Traveling P22 EBIRD 120.0 1.609 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303291593 2017-12-13 23:02:30 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Greene US-NY-039 13.0 Dutchman's Landing L299259 H 42.2128621 -73.8558839 2015-03-15 11:20:00 obsr2842267 S22363078 Stationary P21 EBIRD 20.0 3.0 1 G1180646 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315739707 2021-12-08 07:58:41.562209 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-04 07:11:00 obsr2054320 S23222759 Traveling P22 EBIRD 349.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319845342 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-15 09:00:00 obsr2706811 S23455282 Traveling P22 EBIRD 120.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305036093 2021-03-23 17:23:45.772216 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 4 United States US New York US-NY Livingston US-NY-051 US-NY_1760 13.0 Erie Attica / Greenway Trails L2829216 P 42.9203549 -77.7532268 2015-03-23 09:10:00 obsr983655 S22498024 Traveling P22 EBIRD 180.0 5.633 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305608846 2021-04-01 11:15:31.646886 616 species avibase-25C94A8F Greater Scaup Aythya marila 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-27 13:15:00 obsr2906952 S22542424 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304979174 2021-05-31 11:49:18.789436 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 4 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson (General Area) L1827108 H 43.1930605 -76.2914843 2015-03-23 17:58:00 obsr2224244 S22493262 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323605379 2015-05-28 20:57:18 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Vestal-499 Gardner Rd L2889327 P 42.046493 -75.9814 2015-05-28 16:19:00 obsr1764243 S23680158 Traveling P22 EBIRD 63.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291007540 2021-03-30 19:43:32.881136 242 species avibase-D3A260BC Snow Goose Anser caerulescens 7 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-01-14 11:30:00 obsr1327349 S21345195 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309923848 2021-03-23 17:39:28.36772 6029 species avibase-D4A73324 Solitary Sandpiper Tringa solitaria 12 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-04-14 05:55:00 obsr1839967 S22856621 Stationary P21 EBIRD 103.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305993593 2018-01-07 20:13:45 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-03-29 08:15:00 obsr2420101 S22571207 Stationary P21 EBIRD 160.0 2.0 1 G1196189 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304503335 2021-04-01 12:35:52.669792 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 12 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson River Park (private) L3498350 H 43.2032416 -76.2825651 2015-03-21 17:24:00 obsr2224244 S22457571 Stationary P21 EBIRD 156.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296704176 2021-03-24 20:33:47.533911 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 80 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-02-14 11:09:00 obsr887540 S21822611 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308826348 2021-03-24 19:27:13.077399 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-04-09 11:10:00 obsr142874 S22782132 Stationary P21 EBIRD 170.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309333892 2018-08-04 17:08:41 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southeast L879238 H 42.4674118 -76.4183235 2015-04-12 07:55:00 obsr887540 S22816164 Traveling P22 EBIRD 86.0 1.609 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296642977 2015-02-14 08:18:50 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 13 United States US New York US-NY Saratoga US-NY-091 13.0 Personal residence L1937009 P 42.9576788 -74.0717125 2015-02-14 06:50:00 obsr1557094 S21816729 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312879769 2021-09-12 21:03:10.253835 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-25 13:30:00 obsr2487430 S23052867 Traveling P22 EBIRD 125.0 4.828 81.0 1 G1235358 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304633178 2022-03-05 22:03:50.715584 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-22 09:00:00 obsr444155 S22467056 Traveling P22 EBIRD 45.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316464978 2018-08-04 17:14:58 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 7 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-06 07:25:00 obsr1830659 S23264512 Traveling P22 EBIRD 225.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314353308 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park /Hendr.Park L365070 P 40.6787341 -73.6936927 2015-04-30 08:15:00 obsr916370 S23143740 Traveling P22 EBIRD 210.0 6.759 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310729307 2021-04-01 11:30:42.037277 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 10:15:00 obsr1353449 S22912023 Traveling P22 EBIRD 120.0 2.414 2.0 1 G1223267 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292125756 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 75 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek--23rd St. overlook L1847440 H 40.5793572 -73.9907261 2015-01-20 13:00:00 obsr454647 S21434113 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302908413 2021-04-01 11:15:31.646886 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 20 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-03-13 10:30:00 obsr827632 S22332926 Traveling P22 EBIRD 150.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308752844 2021-03-26 07:30:35.289997 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 14 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-05 11:01:00 obsr2683910 S22776707 Traveling P22 EBIRD 34.0 0.966 2.0 1 G1212774 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314484099 2021-03-24 20:58:53.646623 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-30 12:10:00 obsr72341 S23152388 Stationary P21 EBIRD 410.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292930372 2021-03-30 19:13:38.458673 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 6 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-24 13:53:00 obsr2678807 S21517797 Traveling P22 EBIRD 32.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319074202 2021-03-19 16:44:35.607263 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-12 05:44:00 obsr1410564 S23411292 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305490590 2021-03-23 17:00:13.087107 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 300 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-03-26 17:40:00 obsr1655171 S22533209 Traveling P22 EBIRD 25.0 0.483 2.0 1 G1194516 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303205642 2021-03-19 16:32:34.732091 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Kings US-NY-047 30.0 Dyker Golf Course East L3489146 P 40.613083 -74.01483 2015-03-15 07:38:00 obsr1821546 S22356338 Traveling P22 EBIRD 34.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307298451 2018-08-04 17:05:02 6616 species avibase-7E022378 Common Loon Gavia immer 9 Male, Adult (8); Female, Adult (1) United States US New York US-NY Saratoga US-NY-091 13.0 Nolan Rd Boat Launch area L2850346 P 43.2708588 -73.6607444 2015-04-02 08:30:00 obsr2943723 S22669332 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310530781 2021-12-19 10:32:19.574298 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-04-16 06:45:00 obsr2087436 S22898986 Traveling P22 EBIRD 240.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315599234 2021-03-19 16:29:59.503892 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Jefferson US-NY-045 Morrison's Loop Cottage L3611726 P 44.0585252 -76.3082242 2015-05-03 14:00:00 obsr2561613 S23215020 Area P23 EBIRD 240.0 0.4047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294325868 2015-02-01 10:34:00 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 F C1 F United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Severinghaus & West trails westmost intersect (boardwalk) L301739 P 42.4767262 -76.4552146 2015-02-01 09:20:00 obsr2307843 S21628124 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293940252 2018-08-04 16:55:23 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 8 United States US New York US-NY Seneca US-NY-099 13.0 Poplar Beach Rd. L375246 H 42.7252813 -76.7602735 2015-01-28 15:00:00 obsr528918 S21597512 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307511001 2021-03-30 19:13:38.458673 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-04 10:33:00 obsr745890 S22684431 Stationary P21 EBIRD 30.0 6.0 1 G1204408 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304889025 2021-04-01 11:54:40.172593 27616 species avibase-D77E4B41 American Robin Turdus migratorius 10 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-23 13:40:00 obsr1958124 S22485894 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315484987 2021-03-19 16:44:35.607263 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 6 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-30 19:28:00 obsr334398 S23208806 Traveling P22 EBIRD 20.0 0.064 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310633556 2015-04-17 11:26:32 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 46 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-04-17 08:20:00 obsr2497229 S22905909 Traveling P22 EBIRD 60.0 1.609 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318266517 2021-04-01 11:30:42.037277 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-10 10:22:00 obsr2436774 S23365372 Traveling P22 EBIRD 188.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314431237 2021-04-01 12:24:14.132004 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Washington US-NY-115 13.0 S of Schuy L2821266 P 43.064347 -73.574698 2015-04-30 16:49:00 obsr648176 S23148692 Traveling P22 EBIRD 95.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303420291 2017-08-16 16:51:17 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Suffolk US-NY-103 30.0 Edwards Ave. Sod Fields L3100005 H 40.9378638 -72.7490187 2015-03-15 12:30:00 obsr1460516 S22373454 Stationary P21 EBIRD 30.0 2.0 0 G1181761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301351288 2021-09-03 19:22:31.034431 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-03-07 08:45:00 obsr2497657 S22206428 Stationary P21 EBIRD 67.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301437545 2021-04-01 10:49:39.496318 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 12 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-03-07 15:30:00 obsr2871406 S22212786 Stationary P21 EBIRD 8.0 4.0 1 G1169100 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292492851 2021-04-01 11:47:43.260314 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea X 2 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-01-21 15:45:00 obsr2224244 S21483289 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313081689 2022-02-18 10:47:29.953615 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-26 08:45:00 obsr1062070 S23065074 Stationary P21 EBIRD 109.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296395956 2021-11-09 21:57:08.59724 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 5 United States US New York US-NY Ulster US-NY-111 28.0 Lippincott Rd, Wallkill, NY L3353603 P 41.612671 -74.188651 2015-02-11 12:14:00 obsr1595836 S21794704 Incidental P20 EBIRD 3.0 0 G1144504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302859471 2021-03-30 19:29:33.633096 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Suffolk US-NY-103 US-NY_847 30.0 Blydenburgh Park L524406 H 40.8353508 -73.220264 2015-03-10 13:30:00 obsr2852365 S22329117 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294043097 2021-03-19 16:32:34.732091 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-30 14:45:00 obsr454647 S21606044 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308108348 2021-04-01 11:30:42.037277 337 species avibase-694C127A Mute Swan Cygnus olor N 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-06 14:30:00 obsr2859800 S22727068 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290318828 2021-12-10 08:21:29.396662 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 12 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-01-10 09:50:00 obsr114791 S21290006 Traveling P22 EBIRD 105.0 3.219 28.0 1 G1103906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312838084 2021-04-01 12:32:15.282601 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 10 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-25 10:30:00 obsr544268 S23050386 Traveling P22 EBIRD 90.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310641356 2021-03-24 21:06:05.39641 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 10 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--Liverpool Marina L837889 H 43.1007479 -76.2093687 2015-04-17 08:45:00 obsr660214 S22906359 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317735292 2021-03-26 07:46:52.994574 32955 species avibase-41062654 Northern Parula Setophaga americana 7 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 05:40:00 obsr119187 S23336978 Traveling P22 EBIRD 290.0 4.828 1.0 1 G1258875 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310724051 2021-03-24 20:11:57.676649 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 3 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Mexico-20 Marsden Dr L3493422 P 43.523378 -76.250303 2015-04-17 17:24:00 obsr1321679 S22911666 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303653594 2021-03-19 16:44:35.607263 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla N 100 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-03-16 11:30:00 obsr1534851 S22392043 Traveling P22 EBIRD 100.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310333205 2019-07-23 17:28:19 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 2 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip G L3559870 P 40.435667 -73.336683 2015-04-11 15:00:00 obsr1760429 S22884931 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313581217 2021-04-01 11:15:31.646886 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-27 06:30:00 obsr2908667 S23095677 Traveling P22 EBIRD 300.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308238351 2021-04-01 10:47:08.851048 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-07 09:35:00 obsr1044068 S22737444 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1277413455 2021-11-14 20:33:59.728759 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 9 United States US New York US-NY Erie US-NY-029 13.0 Amherst Bike Path L358312 H 42.9991704 -78.7678313 2015-03-16 10:30:00 obsr2155450 S97599647 Traveling P22 EBIRD 40.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319932546 2018-08-06 22:29:27 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor3 L3513944 H 42.6877445 -75.901219 2015-05-09 10:17:00 obsr2535282 S23459886 Stationary P21 EBIRD 27.0 2.0 1 G1272246 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291990099 2021-11-09 18:17:28.944709 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 26 United States US New York US-NY Dutchess US-NY-027 13.0 Stissing Pond L1363612 H 41.9692413 -73.670132 2015-01-18 09:30:00 obsr1062217 S21423340 Traveling P22 EBIRD 30.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310326730 2019-07-23 17:28:19 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip G L3559870 P 40.435667 -73.336683 2015-04-11 15:00:00 obsr717528 S22884505 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314364698 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 09:00:00 obsr2369927 S23144349 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323198839 2021-03-19 16:44:35.607263 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-24 08:15:00 obsr1534851 S23652868 Traveling P22 EBIRD 105.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308350935 2022-02-27 09:35:49.066489 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-04-07 16:00:00 obsr2087436 S22745641 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313144452 2021-04-01 11:15:31.646886 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-26 06:40:00 obsr2404047 S23068624 Traveling P22 EBIRD 410.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306113000 2021-11-09 19:51:09.255083 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 100 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-03-29 09:00:00 obsr2273061 S22579876 Traveling P22 EBIRD 192.0 4.426 20.0 1 G1196795 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296767741 2021-03-26 06:55:00.227271 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N 1 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Home L3158249 P 42.7894329 -77.5681436 2015-02-13 08:10:00 obsr39511 S21828565 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307339347 2022-03-05 22:03:50.715584 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-30 14:35:00 obsr1706920 S22672453 Traveling P22 EBIRD 60.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303736371 2021-11-09 21:05:39.574432 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Rockland US-NY-087 30.0 Reed Pond, Pfizer Campus L3457488 P 41.0781219 -74.0227246 2015-03-17 10:45:00 obsr2346161 S22398348 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306069351 2021-03-26 06:17:19.712573 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 30 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-03-29 11:30:00 obsr2071643 S22576515 Traveling P22 EBIRD 70.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314075897 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 10:19:00 obsr1668936 S23127006 Traveling P22 EBIRD 205.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290388620 2021-04-26 05:03:09.627903 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-10 12:30:00 obsr1659461 S21295630 Traveling P22 EBIRD 210.0 8.047 2.0 1 G1105023 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309424109 2015-04-12 14:47:05 11604 spuh avibase-A28F0D10 falcon sp. Falco sp. 2 United States US New York US-NY Richmond US-NY-085 Butler Manor Woods L2480238 H 40.5040106 -74.2260022 2015-04-12 11:53:00 obsr155915 S22821604 Traveling P22 EBIRD 25.0 0.322 3.0 1 G1216218 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304644411 2021-04-01 12:32:15.282601 32870 species avibase-FFF61080 Orange-crowned Warbler Leiothlypis celata 8 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-21 09:52:00 obsr870166 S22467833 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295511227 2021-12-10 08:21:29.396662 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-07 09:29:00 obsr1348614 S21722999 Traveling P22 EBIRD 192.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293054977 2015-01-24 23:00:14 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Fulton US-NY-035 13.0 Ephratah (Rt 67) L3315475 P 43.0033133 -74.5063376 2015-01-24 16:00:00 obsr1708031 S21527150 Traveling P22 EBIRD 5.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315292225 2021-03-19 16:44:35.607263 7429 species avibase-1327AC55 Osprey Pandion haliaetus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-03 09:00:00 obsr1962295 S23198674 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309830649 2021-03-23 16:30:20.514143 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 14 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 10:49:00 obsr2074043 S22850019 Stationary P21 EBIRD 299.0 5.0 1 G1218628 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300099051 2021-04-01 12:11:50.996293 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Seneca US-NY-099 13.0 US-NY-Seneca Falls-3435 Seybolt Rd L3446075 P 42.857798 -76.766047 2015-02-28 13:49:00 obsr2588479 S22111948 Traveling P22 EBIRD 229.0 8.047 2.0 1 G1162107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293098858 2021-04-01 12:11:50.996293 26890 species avibase-94A44032 European Starling Sturnus vulgaris 600 United States US New York US-NY Seneca US-NY-099 13.0 Geneva Waterfront - Seneca Lake L1187906 P 42.8739513 -76.9593143 2015-01-23 15:00:00 obsr2744341 S21531089 Traveling P22 EBIRD 90.0 3.219 1.0 1 G1122413 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301784177 2015-03-08 22:24:24 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-08 13:48:00 obsr440908 S22240249 Stationary P21 EBIRD 31.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309392265 2018-08-04 17:08:37 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Columbia US-NY-021 13.0 Neiber Swamp L2451445 P 42.1474963 -73.7463284 2015-04-11 17:15:00 obsr481595 S22819677 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313255054 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 07:49:00 obsr2403198 S23075186 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303886390 2021-03-23 17:15:00.080143 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 100 United States US New York US-NY Wayne US-NY-117 13.0 Williamson, 3699 Lake Road L3497065 P 43.28055 -77.20636 2015-03-18 15:30:00 obsr1721609 S22410399 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312109185 2020-04-10 18:36:08 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 14 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-04-22 14:50:00 obsr2172593 S23000652 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299477168 2021-04-01 11:23:42.170869 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Madison US-NY-053 28.0 US-NY-DeRuyter-1385 E Lake Rd L3437709 P 42.793398 -75.877508 2015-02-24 15:20:00 obsr1509427 S22063100 Stationary P21 EBIRD 20.0 2.0 1 G1159215 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318254546 2021-11-15 03:06:58.889978 11371 species avibase-75600969 Northern Flicker Colaptes auratus 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-10 08:40:00 obsr2033754 S23364763 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293372523 2015-01-26 12:45:14 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Onondaga US-NY-067 13.0 7474 James Street, Fayetteville, NY L269868 P 43.0374547 -76.0071565 2015-01-25 08:00:00 obsr1167884 S21552103 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313088964 2021-03-19 16:19:20.977326 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-04-26 08:30:00 obsr736608 S23065480 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309792451 2018-08-04 17:09:04 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Dam Pond L137721 P 41.1336632 -72.3326111 2015-04-13 16:42:00 obsr2485753 S22847248 Traveling P22 EBIRD 34.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309962239 2015-04-14 12:46:48 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Chenango US-NY-017 28.0 Home woods L3452888 P 42.3471065 -75.6650519 2015-04-14 08:00:00 obsr1303581 S22859330 Traveling P22 EBIRD 150.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313464225 2021-04-01 12:11:50.996293 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 B C3 B United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Mays Point Pool and road L99392 H 42.9946205 -76.7637599 2015-04-26 11:32:00 obsr870166 S23088654 Stationary P21 EBIRD 35.0 2.0 1 G1239483 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314127687 2021-03-24 20:11:57.676649 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-29 09:00:00 obsr1633923 S23130146 Traveling P22 EBIRD 480.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310079158 2021-03-19 16:19:20.977326 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Erie US-NY-029 Buffalo Outer Harbor, Bell Slip L1124601 H 42.8601115 -78.8754845 2015-04-14 12:13:00 obsr916033 S22867649 Traveling P22 EBIRD 92.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293143821 2021-03-26 07:20:31.408164 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Suffolk US-NY-103 30.0 Roosevelt Estate County Park L7273270 H 40.7386078 -73.0728777 2015-01-25 13:31:00 obsr1107696 S21534529 Traveling P22 EBIRD 14.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303172154 2021-03-26 08:13:27.160698 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Tioga US-NY-107 28.0 Spencer Professional Offices L3231593 P 42.218124 -76.493625 2015-03-13 08:43:00 obsr1828453 S22354049 Traveling P22 EBIRD 11.0 0.322 2.0 1 G1179989 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292913544 2021-03-01 11:20:54.007808 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-24 12:44:00 obsr1655171 S21516631 Traveling P22 EBIRD 29.0 0.483 2.0 1 G1121998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303505628 2015-03-16 12:49:31 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Franklin US-NY-033 14.0 Lake Colby Railroad Tracks L1509081 H 44.3364468 -74.1524597 2015-03-16 11:55:00 obsr2630526 S22380817 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310222456 2021-04-01 11:54:40.172593 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-23 Berwin Ln SI Zoo L3092015 P 40.625588 -74.116053 2015-04-15 10:39:00 obsr1231731 S22877317 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307593041 2021-11-15 03:06:58.889978 16284 species avibase-33808812 Alder Flycatcher Empidonax alnorum 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-04 08:20:00 obsr599682 S22690308 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324296304 2021-03-26 06:20:03.292591 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Franklin US-NY-033 13.0 Bombay L3688191 T 44.93895 -74.56773 2015-05-31 15:05:00 obsr408487 S23726989 Traveling P22 EBIRD 30.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313155077 2021-04-01 12:18:57.910168 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Tompkins US-NY-109 13.0 Nate's Patch--Bluegrass to Hanshaw to Freese L1006570 P 42.4655757 -76.4526987 2015-04-26 10:47:00 obsr1062070 S23069265 Traveling P22 EBIRD 194.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313815572 2015-04-28 14:57:03 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 9 United States US New York US-NY Allegany US-NY-003 28.0 Alfred Area L898157 P 42.2107194 -77.7494717 2015-04-28 14:00:00 obsr1868960 S23110771 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310325600 2020-01-16 17:01:29 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Hamilton US-NY-041 14.0 Piseco Lake Outlet - Rt 8 L882738 P 43.3878345 -74.5764828 2015-04-15 14:24:00 obsr1000124 S22884408 Stationary P21 EBIRD 9.0 3.0 1 G1221502 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308082115 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Nassau US-NY-059 Mill Pond, Port Washington L1813608 H 40.8367848 -73.6986976 2015-04-06 17:00:00 obsr2480606 S22724974 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312029262 2021-03-26 08:05:20.615241 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) X United States US New York US-NY Onondaga US-NY-067 13.0 Mom's House L1065767 P 43.0389872 -76.2593865 2015-04-22 obsr968185 S22995207 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309233947 2021-11-09 21:50:48.44865 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-11 08:00:00 obsr1588136 S22809750 Traveling P22 EBIRD 80.0 2.414 30.0 1 G1214172 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288185838 2018-08-04 16:52:24 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 6 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-01-01 13:28:00 obsr1958124 S21116281 Traveling P22 EBIRD 13.0 0.048 2.0 1 G1088898 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288895389 2021-04-01 12:32:15.282601 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa (general) L2488723 P 40.6803777 -73.4734726 2015-01-03 07:34:00 obsr1615708 S21176768 Incidental P20 EBIRD 3.0 1 G1094197 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316051641 2021-11-09 18:30:49.111703 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Dutchess US-NY-027 13.0 18 Platt Ave L2227389 P 41.931249 -73.910858 2015-05-04 09:45:00 obsr1469078 S23240617 Traveling P22 EBIRD 120.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303591907 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-16 16:15:00 obsr2448957 S22387301 Traveling P22 EBIRD 165.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308141494 2021-04-01 12:14:19.266649 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Suffolk US-NY-103 US-NY_842 30.0 NY - Dune Road L1350953 P 40.7940609 -72.6463549 2015-04-06 17:15:00 obsr271871 S22729510 Traveling P22 EBIRD 45.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313439902 2021-04-01 10:57:06.520339 662 species avibase-FB738385 Bufflehead Bucephala albeola 10 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-04-14 07:54:00 obsr2693145 S23087304 Traveling P22 EBIRD 106.0 1.287 2.0 1 G1239076 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310219644 2021-03-19 16:32:34.732091 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-15 07:30:00 obsr2474263 S22877142 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313009204 2021-03-26 07:43:12.52294 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 8 United States US New York US-NY Wayne US-NY-117 13.0 East Palmyra L1156478 P 43.0839344 -77.1562529 2015-04-25 12:00:00 obsr2561613 S23060561 Area P23 EBIRD 300.0 0.607 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305232909 2021-03-24 20:33:47.533911 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Mt. Sapsucker L1772923 H 42.4817726 -76.449865 2015-03-25 11:59:00 obsr1655171 S22513072 Stationary P21 EBIRD 53.0 2.0 1 G1194525 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306670708 2021-03-23 17:23:45.772216 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-03-31 06:55:00 obsr72341 S22622985 Stationary P21 EBIRD 155.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314000797 2021-04-01 11:30:42.037277 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 06:10:00 obsr1433400 S23122580 Traveling P22 EBIRD 180.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312806637 2021-03-26 07:07:10.758746 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Richmond US-NY-085 30.0 Goethals Bridge Pond--Observation Platform L884460 H 40.6281787 -74.1741575 2015-04-25 13:07:00 obsr1958124 S23048691 Stationary P21 EBIRD 9.0 3.0 1 G1237325 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316203855 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis N 2 United States US New York US-NY Monroe US-NY-055 13.0 Erie Station Village L2334326 P 43.04309 -77.66408 2015-05-05 17:30:00 obsr1097423 S23249021 Traveling P22 EBIRD 10.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304575146 2021-04-01 10:57:06.520339 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-03-22 08:43:00 obsr2420101 S22462911 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324274192 2021-03-26 06:13:28.501496 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.1752556 -76.8558787 2015-03-09 07:00:00 obsr2736418 S23725465 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314741653 2018-08-04 17:13:16 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Clinton US-NY-019 13.0 Point Au Roche SP L488947 H 44.7750114 -73.395195 2015-05-01 08:45:00 obsr1186840 S23167803 Traveling P22 EBIRD 200.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303701760 2021-03-26 07:30:35.289997 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 24 United States US New York US-NY Tompkins US-NY-109 13.0 Plantations Restaurant L592633 H 42.4667747 -76.4113913 2015-03-16 17:48:00 obsr1006348 S22395678 Stationary P21 EBIRD 55.0 3.0 1 G1183317 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294243043 2021-03-26 07:17:57.136956 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Seneca US-NY-099 13.0 US-NY-Romulus-5435-5439 McDuffietown Rd L3215497 P 42.756572 -76.792359 2015-01-31 10:48:00 obsr2211210 S21621711 Traveling P22 EBIRD 9.0 0.805 2.0 1 G1130691 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310526879 2021-03-26 06:29:56.44369 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-04-16 12:30:00 obsr1962295 S22898702 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1222825 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312820204 2021-03-26 06:39:43.334073 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Sheep Meadow L1153696 H 40.7718806 -73.9749652 2015-04-25 08:13:00 obsr1175815 S23049391 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306504163 2021-12-28 15:50:27.785498 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 S C2 S United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-03-31 11:37:00 obsr606693 S22610091 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319216797 2021-04-01 11:30:42.037277 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L3369812 P 40.8729288 -73.923912 2015-05-13 07:45:00 obsr1406422 S23419286 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309976030 2021-03-30 19:29:33.633096 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-14 11:00:00 obsr247620 S22860353 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320992 2021-03-26 06:12:17.833181 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-12 Orchard St L3283632 P 42.438359 -79.323639 2015-02-01 09:30:00 obsr2343764 S21627713 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308426035 2018-08-04 17:08:05 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Albany US-NY-001 13.0 Ann Lee Pond L213238 H 42.7376342 -73.813757 2015-04-08 09:26:00 obsr777630 S22751465 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312517153 2021-03-24 20:33:47.533911 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Haber Ithaca Apartment L2127426 P 42.4862687 -76.4751273 2015-04-23 07:50:00 obsr869999 S23028347 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301958346 2021-04-01 12:18:57.910168 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-03-09 09:11:00 obsr2871406 S22253067 Stationary P21 EBIRD 28.0 2.0 1 G1171935 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321866155 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 P C3 P United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-21 16:41:00 obsr924076 S23572019 Traveling P22 EBIRD 165.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324843776 2021-03-23 17:20:04.546757 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-27 11:00:00 obsr2475075 S23764652 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311041563 2021-03-30 19:07:52.958398 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-04-18 09:30:00 obsr800463 S22932052 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298873378 2015-02-21 21:50:19 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-02-21 14:00:00 obsr1708031 S22013948 Stationary P21 EBIRD 132.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305258529 2018-08-04 17:02:52 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-25 15:15:00 obsr1958124 S22515167 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318307538 2021-04-01 10:55:39.308231 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-10 07:30:00 obsr2871264 S23367536 Traveling P22 EBIRD 330.0 2.414 15.0 1 G1282906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304856943 2021-03-24 19:35:34.045988 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Feeder Area L424961 P 42.7607926 -78.8063961 2015-03-23 10:55:00 obsr2083851 S22483526 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290500898 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 Unknown Sex, Juvenile (1); Unknown Sex, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-11 07:24:00 obsr924076 S21304695 Traveling P22 EBIRD 432.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313423832 2021-11-09 19:01:40.008558 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-04-26 08:13:00 obsr1433400 S23086248 Traveling P22 EBIRD 75.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289018545 2018-08-04 16:52:44 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake, Vitale Park L637129 H 42.8342164 -77.7035522 2015-01-04 12:29:00 obsr991026 S21186400 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314875778 2021-03-24 19:20:44.053843 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Kirkwood Backyard L518236 P 42.0855596 -75.7881171 2015-05-02 09:00:00 obsr1720232 S23175916 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293175158 2018-08-04 16:55:07 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 Male, Adult (1) United States US New York US-NY Oswego US-NY-075 13.0 Indian Point L811112 H 43.3357446 -76.4155984 2015-01-24 10:30:00 obsr1167884 S21536952 Stationary P21 EBIRD 20.0 10.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS319617371 2018-08-04 17:27:07 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft NP L1078447 P 42.8492576 -78.8532543 2015-05-14 07:30:00 obsr1079517 S23442137 Traveling P22 EBIRD 180.0 2.414 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289556529 2017-08-16 16:14:09 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 9 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-06 15:11:00 obsr1107696 S21228625 Traveling P22 EBIRD 48.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306147014 2021-03-30 19:13:38.458673 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-22 17:03:00 obsr334398 S22582483 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309831753 2021-04-01 11:30:42.037277 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-13 16:40:00 obsr2793388 S22850086 Traveling P22 EBIRD 80.0 0.161 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS319510477 2018-08-06 22:29:55 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Chemung US-NY-015 28.0 Sullivanville Dam L312295 H 42.1930881 -76.7819872 2015-05-14 09:28:00 obsr1092576 S23436222 Traveling P22 EBIRD 14.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305391009 2021-03-23 17:00:13.087107 6361 issf avibase-0C55DFCC Iceland Gull Larus glaucoides Iceland Gull (kumlieni) Larus glaucoides kumlieni 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-03-26 08:30:00 obsr881968 S22525545 Traveling P22 EBIRD 30.0 0.161 9.0 1 G1192880 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294870814 2021-03-26 07:56:20.588749 5155 species avibase-4880DC55 Virginia Rail Rallus limicola 50 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-02 16:00:00 obsr2218212 S21672016 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304140849 2021-03-19 16:43:17.120646 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 Male, Adult (1) United States US New York US-NY Madison US-NY-053 28.0 2275 Alexis Avenue, Hamilton, NY 13346 L2618579 P 42.8287667 -75.5174392 2015-03-18 09:00:00 obsr2843748 S22430096 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318356386 2021-04-01 11:30:42.037277 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus N 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park, Bow Bridge L3632730 P 40.77685 -73.97052 2015-05-10 09:15:00 obsr662550 S23370262 Traveling P22 EBIRD 140.0 3.058 7.0 1 G1263599 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417516 2021-03-23 16:52:36.900075 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 34 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--East End of Field 2 L993711 H 40.622813 -73.2734871 2015-01-17 10:13:00 obsr800690 S21378663 Stationary P21 EBIRD 46.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979195 2021-04-01 10:45:00.916278 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 20 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr1348614 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300810015 2021-04-01 12:40:54.473014 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 22 United States US New York US-NY Saratoga US-NY-091 13.0 Route 67 (Saratoga county) L3339084 P 42.9749822 -74.0430021 2015-03-02 15:05:00 obsr1708031 S22165145 Traveling P22 EBIRD 18.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311217252 2021-03-26 07:43:12.52294 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Wayne US-NY-117 13.0 2155 Evergreen Circle, Ontario, NY L1847173 P 43.2480127 -77.2772876 2015-04-19 08:30:00 obsr2914424 S22942761 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318591305 2021-03-24 20:53:39.352228 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus N 4 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Karner Barrens East L553196 H 42.7184131 -73.8640168 2015-05-11 09:33:00 obsr2321296 S23383014 Traveling P22 EBIRD 145.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294349295 2015-02-02 17:55:06 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-16 15:30:00 obsr454647 S21629991 Stationary P21 EBIRD 15.0 3.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS300240300 2016-01-27 15:21:38 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Tompkins US-NY-109 28.0 125C Yellow Barn Rd. L1044911 P 42.4758637 -76.3421112 2015-03-01 07:00:00 obsr2001485 S22123273 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299008542 2021-03-26 07:17:57.136956 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Seneca US-NY-099 13.0 Wyers Point and Wyers Point Rd. L285461 H 42.6736408 -76.7156979 2015-02-22 13:15:00 obsr1227417 S22024917 Traveling P22 EBIRD 60.0 6.437 5.0 1 G1156312 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309675014 2021-04-01 12:14:19.266649 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-13 06:50:00 obsr544268 S22838794 Rusty Blackbird Spring Migration Blitz P41 EBIRD 130.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320652483 2022-01-12 18:15:23.330035 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--CR 55 to Bigelow Rd. L1432948 H 44.4167104 -74.1195601 2015-05-17 07:52:00 obsr1222746 S23497940 Traveling P22 EBIRD 59.0 0.917 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291194473 2021-03-23 16:52:36.900075 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N X United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-15 16:15:00 obsr2654038 S21360466 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324082969 2021-03-24 19:48:44.880783 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Manitou Beach Road - Owl Woods L1010800 P 43.3198701 -77.7262115 2015-05-07 09:10:00 obsr2966702 S23713175 Traveling P22 EBIRD 65.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS398702683 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-13 09:14:00 obsr1552744 S29427800 Traveling P22 EBIRD 65.0 0.805 2.0 1 G1735848 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323542713 2018-08-06 22:31:18 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 11 United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L692296 H 42.8874107 -78.7166119 2015-05-28 09:58:00 obsr2939916 S23676108 Traveling P22 EBIRD 102.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS697496364 2021-04-01 10:51:06.899622 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-25 11:30:00 obsr979921 S23057283 Traveling P22 EBIRD 45.0 3.219 2.0 0 G1236016 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316057733 2021-12-08 07:58:41.562209 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-05 07:09:00 obsr119481 S23240945 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310477220 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-16 11:45:00 obsr547602 S22894868 Traveling P22 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308011455 2021-04-01 11:15:31.646886 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia N 8 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-04-06 11:49:00 obsr454647 S22719924 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310253010 2015-11-14 13:12:28 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Essex US-NY-031 13.0 Monitor Rd Marina L3248574 P 43.9481708 -73.4139061 2015-04-06 11:15:00 obsr2019190 S22879382 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305849096 2021-04-01 11:54:40.172593 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 2 United States US New York US-NY Richmond US-NY-085 30.0 Neck Creek Preserve L958581 H 40.5964133 -74.1930269 2015-03-28 11:09:00 obsr1893950 S22560340 Stationary P21 EBIRD 14.0 3.0 1 G1195285 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316821655 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-07 09:10:00 obsr1201479 S23285046 Traveling P22 EBIRD 102.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299158059 2021-03-24 20:20:25.430732 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-02-23 09:00:00 obsr1918430 S22038875 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297011930 2021-04-01 11:49:53.573686 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-02-15 09:14:00 obsr2574755 S21849469 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304176716 2021-03-23 17:00:13.087107 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--Snyder Rd. L763841 H 42.4976053 -76.4600587 2015-03-20 07:15:00 obsr1092576 S22432892 Traveling P22 EBIRD 25.0 3.058 2.0 1 G1185809 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303852138 2021-11-09 18:19:47.736975 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 Female, Adult (1) United States US New York US-NY Dutchess US-NY-027 13.0 The Fly, pond on Rte 82, Pine Plains L1407827 H 41.9927609 -73.6318195 2015-03-17 15:30:00 obsr1917973 S22407579 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309354475 2015-04-12 11:24:07 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 8 United States US New York US-NY Saratoga US-NY-091 13.0 1 NY, Home, Luther Rd L596378 P 42.9901931 -73.7209976 2015-04-06 14:30:00 obsr1119101 S22817448 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298198225 2021-03-26 07:20:31.408164 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-02-09 06:45:00 obsr1592950 S21955924 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304202858 2021-03-26 06:55:00.227271 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-03-17 obsr1338126 S22435086 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304401076 2021-12-19 10:32:19.574298 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-03-21 08:00:00 obsr2087436 S22450144 Traveling P22 EBIRD 165.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323735760 2021-11-09 18:09:06.55827 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Dutchess US-NY-027 28.0 Pawling Nature Reserve L122964 H 41.61833 -73.55833 2015-05-29 05:35:00 obsr1732267 S23690639 Traveling P22 EBIRD 135.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306940291 2021-03-23 17:00:13.087107 27616 species avibase-D77E4B41 American Robin Turdus migratorius 12 United States US New York US-NY Tompkins US-NY-109 28.0 Mount Pleasant L99402 H 42.4581378 -76.3845436 2015-04-02 11:11:00 obsr887540 S22642916 Stationary P21 EBIRD 66.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291140621 2015-01-15 22:39:28 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Franklin US-NY-033 14.0 US-NY-Saranac Lake-35 James St L2839009 P 44.331237 -74.139357 2015-01-15 14:10:00 obsr2630526 S21356108 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319334527 2021-04-01 11:30:42.037277 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 07:45:00 obsr2976 S23425834 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306756142 2021-11-09 18:40:19.746769 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--West L3002249 H 41.9197784 -73.6751747 2015-04-01 08:42:00 obsr1732267 S22629142 Traveling P22 EBIRD 132.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312482901 2019-01-07 15:34:57 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 12 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-24 07:50:00 obsr2497657 S23026123 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299339152 2021-11-09 21:57:09.388066 30494 species avibase-240E3390 House Sparrow Passer domesticus 10 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farm Area & S NWR L3372609 P 41.6309169 -74.2260146 2015-02-20 15:15:00 obsr435832 S22052796 Traveling P22 EBIRD 90.0 24.14 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312407440 2021-04-01 11:30:42.037277 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Arthur Ross Pinetum L826628 H 40.7835168 -73.9667 2015-04-23 07:20:00 obsr2277801 S23020947 Historical P62 EBIRD 35.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309708775 2021-04-01 10:58:31.765174 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Franklin US-NY-033 14.0 SL Home L1959847 P 44.3193539 -74.1282213 2015-04-12 obsr2188170 S22840922 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292493109 2016-09-12 10:27:59 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-17 10:30:00 obsr2475075 S21483309 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317209145 2018-08-06 22:29:13 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 8 United States US New York US-NY Genesee US-NY-037 13.0 9605 Francis Rd , Batavia L3360943 P 42.947728 -78.1616086 2015-05-08 08:30:00 obsr393804 S23306406 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294720560 2021-03-26 08:11:28.0353 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Saratoga US-NY-091 13.0 97 tallow wood drive L3329231 P 42.8674721 -73.7852955 2015-02-03 10:00:00 obsr2773083 S21659190 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323955946 2021-04-01 10:55:39.308231 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 12 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Buffalo Hyatt Recency L3684361 P 42.88842 -78.87422 2015-05-30 12:00:00 obsr2211210 S23705437 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308323425 2021-03-23 17:00:13.087107 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 18 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-07 17:29:00 obsr1655171 S22743526 Traveling P22 EBIRD 28.0 0.644 2.0 1 G1212814 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308369419 2021-03-30 19:13:38.458673 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-07 16:20:00 obsr2504709 S22746985 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311782236 2016-06-22 11:42:53 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 3 United States US New York US-NY Tompkins US-NY-109 13.0 East Ithaca Recreation Way L99400 H 42.4416113 -76.4630339 2015-04-21 08:39:00 obsr241086 S22979309 Traveling P22 EBIRD 16.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309658064 2021-04-01 12:18:57.910168 7429 species avibase-1327AC55 Osprey Pandion haliaetus 8 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Beebe Lake L281786 H 42.4512932 -76.4767515 2015-04-13 07:15:00 obsr2361816 S22836947 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299386995 2015-02-24 14:49:21 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Seneca US-NY-099 13.0 field across from barn W. Wyckoff Rd, Ovid L3436688 P 42.6428642 -76.8153334 2015-02-17 15:30:00 obsr1750510 S22056310 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288707090 2021-03-26 07:20:31.408164 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Huntington, NY (McGullam yard) L1155847 P 40.8826634 -73.417114 2015-01-03 10:45:00 obsr2635084 S21159609 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311243201 2021-03-24 20:33:47.533911 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 2 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-04-19 12:36:00 obsr2211210 S22944363 Traveling P22 EBIRD 38.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305785099 2021-03-19 16:10:30.527219 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-03-28 12:34:00 obsr967916 S22555714 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299342416 2021-04-01 10:55:39.308231 6339 species avibase-8535345B Herring Gull Larus argentatus 700 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-02-24 09:13:00 obsr502830 S22053070 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294514215 2021-04-01 10:52:54.724403 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Columbia US-NY-021 13.0 Town of Stuyvesant L1153717 P 42.3903113 -73.7820339 2015-02-01 15:10:00 obsr712039 S21642875 Traveling P22 EBIRD 100.0 30.578 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317201569 2021-03-30 19:13:38.458673 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-05-08 09:22:00 obsr334398 S23306001 Traveling P22 EBIRD 50.0 0.322 2.0 1 G1257533 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318887287 2021-03-26 06:29:56.44369 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Monroe US-NY-055 13.0 10 Parkview Drive yard birds L690404 P 43.1565179 -77.5146952 2015-05-12 07:40:00 obsr2817239 S23400385 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305636201 2021-03-24 21:13:04.335774 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Warren US-NY-113 13.0 Shermantown Rd. Portage Trail L960269 H 43.3064521 -73.6251848 2015-03-27 10:02:00 obsr1222746 S22544443 Traveling P22 EBIRD 45.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319136712 2021-11-09 18:41:48.211953 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Dutchess US-NY-027 13.0 Guski L3059009 P 42.0428909 -73.8789207 2015-05-10 06:30:00 obsr671490 S23414755 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309793862 2021-03-23 17:00:13.087107 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--office 248 L286682 P 42.4804061 -76.4510196 2015-04-13 09:00:00 obsr2001485 S22847376 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298255603 2015-02-18 15:24:37 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Westchester US-NY-119 28.0 Georges Island Park L374054 H 41.2407495 -73.943342 2015-02-18 08:30:00 obsr238853 S21960978 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303202148 2021-03-31 04:03:12.559076 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 30 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Edgemere Landfill (restricted access) L946628 H 40.6061334 -73.7788582 2015-03-15 07:07:00 obsr2574755 S22356100 Traveling P22 EBIRD 13.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307053431 2021-04-01 11:24:19.637193 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 21 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-04-02 11:29:00 obsr1545618 S22651665 Stationary P21 EBIRD 52.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312728343 2021-03-24 20:33:47.533911 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-25 07:45:00 obsr455249 S23043776 Traveling P22 EBIRD 11.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312438635 2021-03-26 07:43:12.52294 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Deep Muck and Mitigation Marsh L1280474 H 43.0737585 -76.7234516 2015-04-22 14:38:00 obsr528918 S23023088 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309238737 2015-04-11 21:18:14 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-10 10:00:00 obsr479109 S22810090 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307568287 2021-04-01 12:40:54.473014 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Saratoga US-NY-091 13.0 West River rd L3532861 P 43.1970421 -73.5860181 2015-04-04 16:15:00 obsr634484 S22688572 Traveling P22 EBIRD 45.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293139283 2021-03-30 19:29:33.633096 27616 species avibase-D77E4B41 American Robin Turdus migratorius 44 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach State Park L230716 P 41.1295147 -72.2665183 2015-01-25 12:24:00 obsr2485753 S21534166 Traveling P22 EBIRD 87.0 3.38 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295312548 2015-02-07 07:00:34 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-02-06 12:31:00 obsr1472872 S21706814 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319033292 2021-04-01 11:15:31.646886 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field, Kings Co. L1341687 P 40.5925957 -73.8870594 2015-05-12 09:35:00 obsr827632 S23408683 Traveling P22 EBIRD 70.0 1.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289277193 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-05 08:54:00 obsr2184966 S21206307 Traveling P22 EBIRD 170.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307097460 2021-03-23 16:39:03.255227 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-03 07:07:00 obsr1958124 S22654882 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314069733 2019-02-24 14:50:36 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-04-29 11:52:00 obsr916033 S23126651 Traveling P22 EBIRD 93.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294971276 2021-11-15 03:06:58.889978 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-04 16:10:00 obsr870166 S21680154 Traveling P22 EBIRD 47.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324485900 2015-10-26 19:54:56 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Cedar Lane & Thompsons Lake L3627808 P 42.6541461 -74.0383136 2015-05-31 18:00:00 obsr1635947 S23739331 Traveling P22 EBIRD 30.0 0.322 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304105755 2015-03-19 19:35:28 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-03-19 17:17:00 obsr2426404 S22427381 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304750949 2021-03-26 06:21:54.883933 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Kings US-NY-047 Manhattan Beach Park L852391 H 40.5762169 -73.9441681 2015-03-22 15:45:00 obsr2448957 S22475803 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313484867 2021-03-23 17:18:00.959502 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-04-27 09:28:00 obsr2321296 S23089929 Traveling P22 EBIRD 65.0 1.77 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304627895 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 350 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-22 09:00:00 obsr547602 S22466684 Traveling P22 EBIRD 120.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS449728942 2021-03-30 19:13:38.458673 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-08 12:23:00 obsr2270510 S22759666 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290001220 2021-03-26 06:17:19.712573 11494 species avibase-20C2214E American Kestrel Falco sparverius 4 United States US New York US-NY Erie US-NY-029 13.0 The Granger Place L2163008 P 42.9271349 -78.8754523 2015-01-09 12:00:00 obsr294236 S21263983 Traveling P22 EBIRD 5.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297487174 2021-03-26 08:05:20.615241 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Onondaga US-NY-067 13.0 7474 James Street, Fayetteville, NY L269868 P 43.0374547 -76.0071565 2015-02-15 08:00:00 obsr1167884 S21892313 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307260854 2018-08-04 17:05:18 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 US-NY-Whitney Point - 42.3993x-75.9721 - Oct 25, 2014, 11:16 AM L3134832 P 42.399262 -75.972132 2015-04-03 19:00:00 obsr1092576 S22666546 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309409093 2021-04-01 12:18:57.910168 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-12 13:20:00 obsr1655171 S22820751 Traveling P22 EBIRD 23.0 0.483 2.0 1 G1219988 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291042999 2021-03-26 08:14:57.071052 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 6 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-01-14 07:50:00 obsr258431 S21348265 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317553487 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-09 09:00:00 obsr90751 S23327241 Traveling P22 EBIRD 120.0 3.219 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315288020 2021-03-19 16:26:51.561076 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Franklin US-NY-033 13.0 US-NY-Bombay-926 NY-95b L2992829 P 44.968479 -74.640135 2015-05-03 12:15:00 obsr2630526 S23198450 Traveling P22 EBIRD 17.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303205458 2021-03-19 16:44:35.607263 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 4 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-01-31 13:53:00 obsr334398 S22356319 Traveling P22 EBIRD 86.0 0.966 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324061814 2022-02-17 14:32:23.002448 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-30 13:53:00 obsr856524 S23711767 Traveling P22 EBIRD 150.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315536684 2021-11-15 03:06:58.889978 483 species avibase-85625D75 Mallard Anas platyrhynchos N 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 07:20:00 obsr352522 S23211658 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310304609 2021-11-09 18:43:18.378649 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana X United States US New York US-NY Dutchess US-NY-027 13.0 Upton Lake Christian School L3271185 P 41.833243 -73.7613273 2015-04-15 07:30:00 obsr2862523 S22882903 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314056691 2020-11-02 07:20:56 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Onondaga US-NY-067 13.0 * Casa Weber L3258842 P 43.01599 -76.12866 2015-04-13 13:04:00 obsr2561576 S23125810 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320194585 2018-08-06 22:30:06 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-16 08:00:00 obsr1472872 S23473971 Traveling P22 EBIRD 190.0 4.023 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309602272 2018-08-04 17:08:52 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Saratoga US-NY-091 13.0 Wrights Loop L691715 H 42.9902551 -73.6132237 2015-04-12 12:05:00 obsr2855945 S22833228 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295223903 2021-03-26 06:14:19.776945 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 4 United States US New York US-NY Columbia US-NY-021 13.0 Backyard L2167572 P 42.3895823 -73.7835789 2015-02-06 14:25:00 obsr1229977 S21699573 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322502887 2022-02-03 14:50:58.270664 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road/Townline Road Woods L3668627 P 43.0088367 -77.6778889 2015-05-24 09:07:00 obsr934639 S23609723 Traveling P22 EBIRD 75.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291236037 2015-01-16 04:18:33 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Oneida US-NY-065 13.0 Whitestown L210157 P 43.17351 -75.4187135 2015-01-14 obsr1384380 S21363907 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316819190 2021-04-01 11:15:31.646886 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 06:30:00 obsr2908667 S23284921 Traveling P22 EBIRD 205.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315287386 2021-03-19 16:02:45.308962 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-03 06:00:00 obsr1303581 S23198416 Traveling P22 EBIRD 295.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311823654 2021-03-23 17:00:13.087107 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 93 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-18 10:44:00 obsr258946 S22982235 Traveling P22 EBIRD 35.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307053437 2021-04-01 11:24:19.637193 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-04-02 11:29:00 obsr1545618 S22651665 Stationary P21 EBIRD 52.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313620432 2021-04-01 11:30:42.037277 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 37 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-04-26 13:35:00 obsr259298 S23098211 Stationary P21 EBIRD 89.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306111118 2015-03-29 18:01:04 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-29 09:30:00 obsr271871 S22579729 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288685572 2021-03-24 21:09:00.82373 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Rensselaer US-NY-083 14.0 Cranston Hill Road L1887322 P 42.5543173 -73.38282 2015-01-03 09:00:00 obsr1787323 S21157592 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289096982 2021-04-01 12:18:57.910168 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-01-04 15:22:00 obsr730231 S21192562 Stationary P21 EBIRD 9.0 2.0 1 G1095567 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311297693 2021-03-19 16:19:20.977326 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-19 08:20:00 obsr2071643 S22947665 Traveling P22 EBIRD 245.0 2.414 3.0 1 G1226244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315148697 2018-07-15 22:55:44 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Greene US-NY-039 13.0 River Road L7715121 P 42.2855575 -73.7940744 2015-05-02 18:55:00 obsr1181085 S23190773 Traveling P22 EBIRD 60.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310960852 2021-04-01 11:54:40.172593 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 20 United States US New York US-NY Richmond US-NY-085 US-NY_818 30.0 Goethals Bridge Pond--Goethals Homes L884458 H 40.6283428 -74.1779176 2015-04-18 15:11:00 obsr1958124 S22927055 Stationary P21 EBIRD 23.0 3.0 1 G1224788 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295396723 2021-04-01 12:35:52.669792 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N X United States US New York US-NY Onondaga US-NY-067 13.0 Marble St. Island L1506468 H 43.15653 -76.3305652 2015-02-07 15:34:00 obsr2945658 S21713767 Traveling P22 EBIRD 55.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306890779 2021-04-01 11:58:54.966271 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca X United States US New York US-NY St. Lawrence US-NY-089 US-NY_838 13.0 Black Lake L3531905 P 44.5203125 -75.5902612 2015-03-31 16:15:00 obsr490751 S22638987 Traveling P22 EBIRD 60.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294131048 2021-03-24 21:09:00.82373 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Rensselaer US-NY-083 13.0 West Sand Lake, NY 1 L1766939 P 42.6226389 -73.6175931 2015-01-31 08:50:00 obsr2186523 S21612605 Stationary P21 EBIRD 190.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309649075 2021-11-09 22:38:55.83044 303 species avibase-B59E1863 Canada Goose Branta canadensis 12 United States US New York US-NY Sullivan US-NY-105 US-NY_2792 28.0 644 River Road L2326174 P 41.782401 -75.1017773 2015-04-09 06:00:00 obsr279522 S22836365 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293201542 2015-01-28 11:43:56 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-25 13:50:00 obsr876649 S21539125 Traveling P22 EBIRD 90.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319930714 2021-04-01 10:53:25.818871 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor18 L3513960 H 42.4410677 -76.0746521 2015-05-09 17:03:00 obsr2535282 S23459794 Stationary P21 EBIRD 13.0 2.0 1 G1272223 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299764953 2021-03-30 19:07:52.958398 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Kings US-NY-047 BJs Wholesale Club Waterfront (Brooklyn) L3311662 H 40.5917716 -73.9990756 2015-02-26 12:45:00 obsr2363365 S22085430 Stationary P21 EBIRD 30.0 2.0 1 G1160543 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314833558 2021-03-24 19:35:34.045988 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-02 06:41:00 obsr1603345 S23173567 Traveling P22 EBIRD 81.0 2.092 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304114217 2021-03-30 19:39:10.250398 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 1 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-03-18 09:30:00 obsr1494607 S22427998 Traveling P22 EBIRD 150.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310129422 2022-01-20 09:38:40.245267 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-04-14 18:05:00 obsr2188170 S22871164 Traveling P22 EBIRD 50.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323286006 2021-03-30 06:01:28.020715 505 species avibase-C732CB10 American Black Duck Anas rubripes N 9 United States US New York US-NY Broome US-NY-007 28.0 Tri-City Airport L2347159 H 42.08439 -76.093867 2015-05-27 06:19:00 obsr1764243 S23658562 Traveling P22 EBIRD 62.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316803165 2021-03-19 16:44:35.607263 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-07 09:04:00 obsr1958774 S23284097 Traveling P22 EBIRD 46.0 0.402 2.0 1 G1291694 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310940457 2021-11-09 21:36:59.310849 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata N 2 United States US New York US-NY Ulster US-NY-111 13.0 rosendale, ny L1465355 P 41.8499692 -74.081765 2015-04-18 10:00:00 obsr187701 S22925688 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318045755 2015-05-10 10:22:32 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 8 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-10 07:40:00 obsr2290061 S23353839 Traveling P22 EBIRD 150.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290184084 2021-12-10 08:21:29.396662 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula N 16 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-01-10 09:50:00 obsr258431 S21278803 Traveling P22 EBIRD 105.0 3.219 28.0 1 G1103906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292798057 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos N 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-23 16:00:00 obsr1668936 S21507319 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302850418 2015-03-13 12:04:46 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Schoharie US-NY-095 28.0 Huntersland Road L3368192 P 42.5829164 -74.2971039 2015-03-12 11:30:00 obsr2161435 S22328441 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310281074 2018-08-04 17:08:49 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-12 10:50:00 obsr756196 S22881244 Stationary P21 EBIRD 10.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324760243 2015-06-03 07:41:31 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 S C2 S United States US New York US-NY Hamilton US-NY-041 US-NY_864 14.0 Helldiver Pond L3693153 P 43.67329 -74.69263 2015-05-31 10:29:00 obsr1461370 S23758766 Traveling P22 EBIRD 39.0 0.966 3.0 1 G1301419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322361795 2021-03-26 06:17:19.712573 5923 species avibase-15369E8E Dunlin Calidris alpina 6 United States US New York US-NY Erie US-NY-029 13.0 personal location ('rents' house) L2955833 P 42.59394 -79.120359 2015-05-22 16:00:00 obsr2912088 S23601672 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321822692 2018-08-04 17:27:45 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-17 09:00:00 obsr1079517 S23568791 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313209521 2021-03-24 20:16:00.852773 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Richmond US-NY-085 Oakwood Beach--tidal marshes, NW to Mill Rd. L2167041 H 40.5494903 -74.1131688 2015-04-25 10:54:00 obsr155915 S23072449 Traveling P22 EBIRD 6.0 0.322 3.0 1 G1237331 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312032732 2021-04-01 11:15:31.646886 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-22 07:00:00 obsr41879 S22995920 Traveling P22 EBIRD 125.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296535242 2021-03-26 07:30:35.289997 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 14 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-02-13 08:30:00 obsr2137468 S21807550 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308506475 2021-01-12 19:50:23.677101 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 3 United States US New York US-NY Warren US-NY-113 14.0 Warren County Bikeway--Ash Dr, Queensbury, NY L2588444 P 43.356634 -73.6842245 2015-04-08 11:45:00 obsr1222746 S22757718 Traveling P22 EBIRD 56.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306703781 2022-03-05 22:03:50.715584 242 species avibase-D3A260BC Snow Goose Anser caerulescens 12 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-01 08:30:00 obsr2219590 S22625630 Traveling P22 EBIRD 135.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310845963 2019-04-19 13:17:53 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-18 08:42:00 obsr2937317 S22919832 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310393272 2021-03-24 20:33:47.533911 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 2 United States US New York US-NY Tompkins US-NY-109 28.0 Webster estate, Hollister Rd., Dryden L1653802 P 42.41531 -76.35452 2015-04-16 07:12:00 obsr2683910 S22889217 Traveling P22 EBIRD 44.0 0.805 4.0 1 G1221723 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297913075 2021-03-23 16:52:36.900075 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point L857357 P 41.0714088 -71.8586969 2015-02-14 07:00:00 obsr2934754 S21931680 Traveling P22 EBIRD 150.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305146427 2021-03-26 07:56:20.588749 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Nassau US-NY-059 oceanside preserve L1472478 P 40.6230202 -73.6179777 2015-03-24 10:30:00 obsr1494607 S22506548 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303341475 2015-03-15 17:54:20 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Columbia US-NY-021 13.0 Home, Spencertown L2667042 P 42.3317289 -73.5557671 2015-03-15 12:00:00 obsr1901122 S22367342 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317757004 2021-03-26 06:17:19.712573 657 species avibase-B7B1A5DD Black Scoter Melanitta americana N 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 waterfront village/Irish Famine memorial L3546288 P 42.8828428 -78.8807631 2015-05-09 16:30:00 obsr2071643 S23338093 Traveling P22 EBIRD 48.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294349934 2021-03-23 16:39:03.255227 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-02-01 10:58:00 obsr1958124 S21630048 Traveling P22 EBIRD 27.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318791930 2021-11-09 18:43:18.1621 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Arlington High School L3261645 P 41.6731042 -73.7966037 2015-05-11 14:45:00 obsr2228257 S23394556 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309437614 2021-05-10 13:35:55.973042 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 United States US New York US-NY Schuyler US-NY-097 13.0 Catharine Creek WMA--Rock Cabin Rd. L1359885 H 42.369661 -76.8471749 2015-04-12 12:27:00 obsr2937317 S22822219 Traveling P22 EBIRD 70.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290365354 2021-03-26 06:59:15.841579 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-01-03 13:00:00 obsr2409011 S21293660 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323822954 2019-08-07 16:05:22 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-MON Perinton--Pannell Rd. X Wilkinson Rd. [Fairport_CE] L1476175 P 43.0456409 -77.3814923 2015-05-27 11:30:00 obsr606693 S23696470 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307183877 2022-03-05 22:03:50.715584 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-03 09:30:00 obsr2219590 S22661105 Traveling P22 EBIRD 120.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290366483 2021-03-26 06:59:15.841579 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-01-04 07:45:00 obsr2409011 S21293756 Stationary P21 EBIRD 540.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315500689 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-04-29 16:00:00 obsr119187 S23209705 Stationary P21 EBIRD 192.0 2.0 1 G1250009 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307416896 2021-04-01 12:14:19.266649 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 8 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-04 10:00:00 obsr547602 S22678186 Traveling P22 EBIRD 75.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288286940 2017-02-17 11:45:59 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Richmond US-NY-085 Miller Field--Beach L2480167 H 40.564872 -74.0928776 2015-01-01 15:43:00 obsr1893950 S21125134 Traveling P22 EBIRD 6.0 0.016 2.0 1 G1088889 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315828664 2015-05-04 16:31:24 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Essex US-NY-031 14.0 home L1914193 P 44.2164782 -73.7556839 2015-05-02 07:30:00 obsr2105231 S23227436 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307383729 2021-11-15 03:06:58.889978 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-04 07:30:00 obsr1175815 S22675734 Traveling P22 EBIRD 170.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296847380 2017-04-18 11:27:41 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 66 United States US New York US-NY Kings US-NY-047 Brooklyn Army Terminal Pier 4 L2598864 H 40.646519 -74.026074 2015-02-14 16:28:00 obsr1189028 S21835584 Traveling P22 EBIRD 7.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318737976 2021-03-26 06:29:56.44369 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Monroe US-NY-055 13.0 Grandma's house L893383 P 43.1896935 -77.7725896 2015-05-11 09:00:00 obsr1991824 S23391371 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294544532 2021-03-26 06:11:29.8335 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 150 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-King Ferry-1356-1398 County Rte 45A L3331631 P 42.700521 -76.643082 2015-02-01 10:00:00 obsr241086 S21645344 Stationary P21 EBIRD 25.0 2.0 1 G1132863 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314296424 2021-03-23 17:41:09.545385 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Westchester US-NY-119 30.0 Tarrytown Lakes Park L302456 H 41.0829631 -73.8426401 2015-04-30 08:10:00 obsr1832377 S23140851 Traveling P22 EBIRD 100.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307643781 2018-08-04 17:05:31 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Onondaga US-NY-067 13.0 Home, Thatchwood Dr., Manlius L1789277 P 43.008956 -76.0102533 2015-04-05 07:10:00 obsr724731 S22693711 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315588865 2021-12-24 11:02:14.483178 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 9 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-03 14:45:00 obsr1782363 S23214414 Traveling P22 EBIRD 75.0 1.609 2.0 1 G1250682 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305914974 2021-04-28 05:22:52.046239 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-03-28 14:32:00 obsr2519357 S22565420 Traveling P22 EBIRD 130.0 4.828 2.0 1 G1195672 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317059875 2021-03-26 06:17:19.712573 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 4 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-07 14:15:00 obsr1379161 S23298495 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291644233 2021-03-22 09:17:32.016297 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-01-08 obsr666964 S21396824 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301958920 2019-09-10 13:56:02 11371 species avibase-75600969 Northern Flicker Colaptes auratus X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-03-08 12:39:00 obsr1797072 S22253114 Stationary P21 EBIRD 16.0 11.0 1 G1170856 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298444057 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-19 09:25:00 obsr2902954 S21977901 Traveling P22 EBIRD 120.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS359631471 2021-03-24 21:13:42.099821 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] X United States US New York US-NY Westchester US-NY-119 30.0 27 Lower Trinity Pass Road L2848325 P 41.1858142 -73.5501737 2015-02-02 11:27:00 obsr2022298 S26344876 Stationary P21 EBIRD 300.0 2.0 1 G1501725 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311369020 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 30 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.8929476 2015-04-19 12:50:00 obsr1348614 S22952039 Traveling P22 EBIRD 167.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306417573 2021-03-23 17:00:13.087107 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus X United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-03-29 09:00:00 obsr34822 S22603151 Stationary P21 EBIRD 20.0 4.0 1 G1197078 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314746519 2021-11-09 18:13:28.979518 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Dutchess US-NY-027 13.0 Ogden Mills & Ruth Livingston Mills SP--Hopeland Area L1305175 H 41.8648765 -73.9203686 2015-05-01 09:45:00 obsr2573652 S23168074 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320726379 2022-02-17 14:32:23.002448 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-16 11:00:00 obsr1152226 S23501815 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298271005 2022-02-17 14:32:23.002448 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-18 13:30:00 obsr369788 S21962308 Traveling P22 EBIRD 60.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288763780 2021-03-30 19:25:27.212017 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 50 United States US New York US-NY Richmond US-NY-085 30.0 Arbutus Lake L1096289 H 40.5227091 -74.1783006 2015-01-03 13:25:00 obsr1893950 S21164066 Stationary P21 EBIRD 6.0 2.0 1 G1093017 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314164498 2021-12-28 15:50:27.785498 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-29 18:57:00 obsr606693 S23132395 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303352230 2021-03-30 19:29:33.633096 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 14 United States US New York US-NY Suffolk US-NY-103 30.0 Hawleys Lake L621862 H 40.6979497 -73.3163059 2015-03-15 18:00:00 obsr1137265 S22368268 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS850684953 2022-02-04 06:14:13.892644 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-01-02 09:00:00 obsr876326 S63339482 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316688357 2021-03-19 16:08:39.161312 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas X United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-05-06 19:22:00 obsr2497657 S23277533 Traveling P22 EBIRD 84.0 4.426 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319289906 2021-03-26 07:56:20.588749 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 1 Male, Adult (1) United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-13 09:30:00 obsr647628 S23423366 Traveling P22 EBIRD 205.0 4.023 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320557727 2021-11-09 18:09:06.55827 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 12 United States US New York US-NY Dutchess US-NY-027 28.0 Pawling Nature Reserve L122964 H 41.61833 -73.55833 2015-05-17 12:08:00 obsr1732267 S23492796 Traveling P22 EBIRD 45.0 1.931 2.0 1 G1277165 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291835267 2019-10-24 20:10:38 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Suffolk US-NY-103 US-NY_2800 Napeague Harbor L283128 H 41.0084776 -72.0499114 2015-01-18 14:46:00 obsr186539 S21400764 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308114589 2021-04-01 10:58:47.067498 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 4 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-04-06 13:32:00 obsr2588479 S22727547 Traveling P22 EBIRD 76.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316489142 2021-03-31 04:08:01.38714 592 species avibase-3072CC16 Redhead Aythya americana N 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Livingston US-NY-051 13.0 Harter Road L994427 P 42.5953532 -77.7058214 2015-05-06 09:10:00 obsr72341 S23265688 Traveling P22 EBIRD 8.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306295874 2022-02-17 14:32:23.002448 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-30 10:00:00 obsr1284279 S22593817 Traveling P22 EBIRD 40.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306072582 2022-01-10 15:02:01.421713 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 Verrazano Bridge Scenic View (N of bridge) L12657524 H 40.6117722 -74.0370814 2015-03-29 14:02:00 obsr1189028 S22576742 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309256515 2018-08-04 17:08:28 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southaven County Park L2117422 H 40.8157861 -72.8972683 2015-04-11 09:00:00 obsr1489009 S22811233 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314907116 2018-04-27 16:39:45 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Shinnecock Inlet, west L3087424 H 40.8421473 -72.4781388 2015-02-21 10:00:00 obsr601383 S23177546 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315028253 2021-04-01 10:55:39.308231 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-02 09:45:00 obsr2571887 S23184030 Traveling P22 EBIRD 75.0 2.012 4.0 1 G1248148 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309033726 2018-04-27 05:03:51 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 2 United States US New York US-NY Suffolk US-NY-103 30.0 Roosevelt Estate County Park L7273270 H 40.7386078 -73.0728777 2015-04-11 09:34:00 obsr1107696 S22796779 Rusty Blackbird Spring Migration Blitz P41 EBIRD 30.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322763324 2018-08-06 22:31:05 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-25 07:33:00 obsr334398 S23625063 Traveling P22 EBIRD 8.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310222288 2021-03-26 08:14:57.071052 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Westchester US-NY-119 30.0 Stone Barns Center for Food and Agriculture L596032 H 41.1000516 -73.8308716 2015-04-15 08:15:00 obsr473055 S22877299 Traveling P22 EBIRD 120.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315716210 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 07:15:00 obsr2105033 S23221351 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296131062 2021-04-01 12:40:54.473014 592 species avibase-3072CC16 Redhead Aythya americana N 5 United States US New York US-NY Saratoga US-NY-091 13.0 Goff Rd., Saratoga (town) L1882033 H 43.1136484 -73.6094726 2015-02-11 12:17:00 obsr1222746 S21771458 Traveling P22 EBIRD 21.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289050391 2018-10-06 16:50:39 30494 species avibase-240E3390 House Sparrow Passer domesticus 30 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--East Rd. L99686 H 43.009646 -76.7582003 2015-01-04 13:40:00 obsr887540 S21188729 Stationary P21 EBIRD 48.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316893272 2022-03-09 02:50:29.805088 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 30 ON C4 ON United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-07 07:50:00 obsr128156 S23288825 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305196058 2021-03-24 20:33:47.533911 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-03-25 07:02:00 obsr455249 S22510186 Traveling P22 EBIRD 8.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309436610 2021-03-24 19:47:16.07498 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-12 06:10:00 obsr2716320 S22822143 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300515499 2021-03-26 06:21:54.883933 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 3 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-03-02 11:30:00 obsr1731572 S22142910 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291454640 2018-08-04 16:53:31 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-01-17 13:49:00 obsr502830 S21381772 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305156341 2021-04-01 12:18:57.910168 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 25 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-03-24 16:54:00 obsr1655171 S22507292 Traveling P22 EBIRD 37.0 1.931 2.0 1 G1191723 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307369439 2015-04-04 09:25:32 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-04 08:50:00 obsr290506 S22674669 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294556630 2021-03-23 16:30:20.514143 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-01-09 07:15:00 obsr2409011 S21646380 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS768675981 2021-04-01 12:45:19.712958 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 3 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-03-02 08:30:00 obsr363553 S56910140 Traveling P22 EBIRD 90.0 1.609 2.0 1 G4236487 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288334031 2021-11-09 22:04:47.967972 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-01-01 12:00:00 obsr2214649 S21129118 Traveling P22 EBIRD 30.0 1.609 2.0 1 G1089466 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314836914 2021-03-26 06:21:54.883933 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-01 07:20:00 obsr2152799 S23173781 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319310866 2021-03-19 16:44:35.607263 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-13 09:15:00 obsr2504709 S23424518 Traveling P22 EBIRD 105.0 0.644 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290889525 2019-07-23 17:26:56 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 24 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-13 12:00:00 obsr2534001 S21336004 Stationary P21 EBIRD 45.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293122655 2021-11-09 20:12:16.773384 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-01-25 11:52:00 obsr1912104 S21532989 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291485058 2015-01-17 18:18:58 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 Unknown Sex, Immature (1) United States US New York US-NY Seneca US-NY-099 13.0 North Hoster Rd., Fayette L2713867 H 42.85279 -76.77943 2015-01-17 16:28:00 obsr1092576 S21384205 Incidental P20 EBIRD 3.0 0 G1112295 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312071455 2022-01-12 18:14:10.119384 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--South Entrance L825062 H 44.3641149 -74.1511381 2015-04-22 11:45:00 obsr2630526 S22998281 Traveling P22 EBIRD 70.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309791804 2021-03-30 19:22:51.561415 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N X United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-13 11:30:00 obsr2078092 S22847195 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305563786 2018-08-04 17:03:41 6339 species avibase-8535345B Herring Gull Larus argentatus 30 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Red Creek Unit L1528347 H 43.3006399 -76.7825379 2015-03-26 17:16:00 obsr211814 S22538881 Stationary P21 EBIRD 15.0 3.0 1 G1193968 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS855604620 2020-01-27 07:56:46 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Suffolk US-NY-103 Lake Montauk, Coast Guard Station L283127 H 41.07305 -71.9339556 2015-01-23 obsr1588924 S63747927 Historical P62 EBIRD 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS296798258 2018-12-20 18:36:07 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-02-14 10:30:00 obsr214789 S21831075 Stationary P21 EBIRD 30.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310423285 2020-07-27 15:41:41 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Columbia US-NY-021 14.0 Harlem Valley Rail Trail--Copake Falls to Under Mountain Rd. L5803911 H 42.0757413 -73.5303798 2015-04-13 10:15:00 obsr798742 S22841012 Traveling P22 EBIRD 75.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300097718 2021-03-23 17:32:20.03109 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-22 11:15:00 obsr2409011 S22111835 Stationary P21 EBIRD 95.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301624779 2015-03-08 10:52:27 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Oswego US-NY-075 13.0 Home L3458698 P 43.4467127 -76.4194007 2015-03-08 10:40:00 obsr2282452 S22226865 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311188307 2015-04-19 10:33:52 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Tompkins US-NY-109 28.0 US-NY-Brooktondale-96-100 Taft Rd L1547100 P 42.353256 -76.296114 2015-04-19 08:54:00 obsr455249 S22941082 Traveling P22 EBIRD 18.0 0.853 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307918320 2017-04-15 20:22:11 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Oak Beach L267998 H 40.63923 -73.28832 2015-04-05 15:01:00 obsr1987335 S22713615 Traveling P22 EBIRD 15.0 2.414 2.0 0 G1207237 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS313045223 2021-03-23 17:00:13.087107 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom33 L3513975 H 42.3289943 -76.28706 2015-04-26 06:54:00 obsr620377 S23062806 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308519798 2021-03-23 16:48:08.60516 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-08 17:00:00 obsr204036 S22758638 Traveling P22 EBIRD 40.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310168797 2017-09-09 13:29:46 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 4 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail, Sherwood Pltform base - West Trail (0.137km) L1369671 P 42.4793682 -76.4546071 2015-04-15 08:50:00 obsr2307843 S22873845 Traveling P22 EBIRD 10.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298570401 2022-03-05 22:03:50.715584 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-20 11:15:00 obsr444155 S21988319 Traveling P22 EBIRD 20.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319973742 2021-03-26 07:46:52.994574 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-05-15 15:06:00 obsr2270510 S23462078 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303332035 2018-01-14 21:21:32 456 species avibase-D201EB72 American Wigeon Mareca americana 12 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-03-14 12:58:00 obsr2683910 S22366582 Stationary P21 EBIRD 3.0 2.0 1 G1181028 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323815627 2015-05-29 22:31:22 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Nickerson Beach L366514 P 40.5847565 -73.6166382 2015-05-29 11:15:00 obsr916370 S23696054 Traveling P22 EBIRD 60.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292893216 2021-03-26 06:21:54.883933 32170 issf avibase-710D51E9 Savannah Sparrow Passerculus sandwichensis Savannah Sparrow (Ipswich) Passerculus sandwichensis princeps 1 United States US New York US-NY Kings US-NY-047 30.0 Home L468661 P 40.6361565 -73.9647943 2015-01-24 10:40:00 obsr187432 S21514940 Stationary P21 EBIRD 35.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961237 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.5944991 -73.8148373 2015-01-19 10:20:00 obsr2855945 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312931533 2021-11-09 21:23:47.89824 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-04-25 08:00:00 obsr1257003 S23055833 Traveling P22 EBIRD 30.0 4.828 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313334608 2021-03-26 06:29:56.44369 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 22 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-26 11:15:00 obsr2504709 S23080182 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319002528 2015-06-02 17:49:59 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Sour Springs Rd. (Genesee Co.) L153399 H 43.125275 -78.37028 2015-05-12 09:45:00 obsr393804 S23406672 Traveling P22 EBIRD 62.0 1.77 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311231436 2021-11-15 03:06:58.889978 33216 species avibase-1F09CCCC Wilson's Warbler Cardellina pusilla 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-19 09:00:00 obsr1175815 S22943629 Traveling P22 EBIRD 100.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS306969722 2021-03-30 19:13:38.458673 483 species avibase-85625D75 Mallard Anas platyrhynchos 60 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-02 15:03:00 obsr2173269 S22645140 Stationary P21 EBIRD 11.0 3.0 1 G1202289 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288155459 2021-03-24 21:10:11.310781 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Saratoga US-NY-091 13.0 36 Curt Blvd L2229955 P 43.0492325 -73.8315735 2015-01-01 09:45:00 obsr907769 S21113852 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323418758 2021-11-09 18:47:57.38119 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Dutchess US-NY-027 28.0 Berkshire Road, Dover Plains, NY L3677173 P 41.67904 -73.5525119 2015-05-26 18:30:00 obsr2175245 S23667679 Traveling P22 EBIRD 60.0 3.219 3.0 1 G1293108 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303028190 2015-05-07 17:03:00 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-03-14 11:08:00 obsr455249 S22342727 Traveling P22 EBIRD 9.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319289936 2021-03-26 07:56:20.588749 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 13 T C3 T United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-13 09:30:00 obsr647628 S23423366 Traveling P22 EBIRD 205.0 4.023 6.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS318191427 2021-04-01 11:15:31.646886 32757 species avibase-EF47E15D Boat-tailed Grackle Quiscalus major 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-10 07:30:00 obsr827632 S23361276 Traveling P22 EBIRD 220.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298449700 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-02-19 15:10:00 obsr697841 S21978348 Traveling P22 EBIRD 20.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS341668821 2015-09-11 15:26:19 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Essex US-NY-031 13.0 125 Pine Springs Drive L3174221 P 43.8320347 -73.4437966 2015-04-12 obsr822321 S24983415 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308080304 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach Parkway Driving L1482618 P 40.5927999 -73.538762 2015-04-06 15:00:00 obsr547602 S22724821 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290612429 2021-11-09 19:44:39.495739 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 1 United States US New York US-NY Orange US-NY-071 28.0 Lynch Ave. L2045800 P 41.3565821 -74.4491959 2015-01-11 10:40:00 obsr1665312 S21313014 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289729659 2021-12-28 15:50:27.785498 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 Male, Adult (1) United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-01-05 obsr606693 S21241803 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324683732 2015-06-02 18:08:36 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 S C2 S United States US New York US-NY Hamilton US-NY-041 US-NY_864 14.0 Inlet, Moose River Road L3690938 P 43.71709 -74.75607 2015-05-30 20:40:00 obsr2937317 S23753400 Traveling P22 EBIRD 20.0 7.564 3.0 1 G1300400 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321654518 2018-08-06 22:30:40 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-21 06:08:00 obsr1165633 S23558628 Traveling P22 EBIRD 152.0 5.472 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307116659 2021-03-23 17:00:13.087107 341 species avibase-B86C504C Trumpeter Swan Cygnus buccinator 2 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom39 L3513981 H 42.5385919 -76.3764558 2015-04-03 09:32:00 obsr620377 S22656454 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340805573 2021-04-01 11:15:31.646886 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-24 06:40:00 obsr2538893 S24923910 Traveling P22 EBIRD 160.0 6.437 2.0 1 G1399438 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313060001 2021-03-24 20:16:00.852773 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-26 08:20:00 obsr1958124 S23063739 Traveling P22 EBIRD 37.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297392185 2020-06-29 22:16:16 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-14 10:40:00 obsr1327349 S21884041 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308619167 2021-03-30 19:13:38.458673 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Beatty Point L299148 H 43.2762602 -77.684471 2015-04-09 07:00:00 obsr2504709 S22766085 Traveling P22 EBIRD 120.0 1.207 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302058622 2015-03-09 18:17:15 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 Randalls Island--Southeast section L1785370 H 40.7814282 -73.9287881 2015-03-08 14:51:00 obsr1548221 S22260903 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299834430 2021-04-01 11:15:31.646886 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Kings US-NY-047 30.0 86th St & 14th Avenue L3311681 P 40.6126819 -74.011867 2015-02-26 07:34:00 obsr1189028 S22090825 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320769725 2021-04-01 11:15:31.646886 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 05:55:00 obsr876649 S23504233 Traveling P22 EBIRD 390.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309065984 2021-03-23 17:00:13.087107 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-11 09:20:00 obsr2307843 S22798814 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315728955 2021-11-15 03:06:58.889978 406 species avibase-27B2749A Wood Duck Aix sponsa 25 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 09:00:00 obsr470489 S23222242 Traveling P22 EBIRD 180.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314288090 2021-03-19 16:25:42.617988 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Essex US-NY-031 13.0 Ticonderoga Ferry and Boat Launch L2384243 H 43.853925 -73.3852333 2015-04-30 07:09:00 obsr2420101 S23140337 Traveling P22 EBIRD 47.0 0.322 2.0 1 G1247224 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309408392 2021-03-23 16:39:03.255227 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-12 13:55:00 obsr1958124 S22820706 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293188708 2021-03-30 12:05:58.533651 23291 species avibase-58C502EA Barn Swallow Hirundo rustica X United States US New York US-NY Queens US-NY-081 Charles Memorial Park L3317485 P 40.6509536 -73.8381779 2015-01-25 11:45:00 obsr547602 S21538026 Stationary P21 EBIRD 15.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301508575 2021-03-26 06:21:54.883933 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-22 12:00:00 obsr2277801 S22217993 Historical P62 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299446902 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-24 16:00:00 obsr1659461 S22060617 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293405840 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-01-26 14:11:00 obsr870166 S21555510 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288699016 2018-08-04 16:52:29 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Essex US-NY-031 13.0 Port Henry Overlook L3148760 P 44.02905 -73.4601688 2015-01-02 10:35:00 obsr822321 S21158765 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321639120 2018-08-06 22:30:41 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-21 06:35:00 obsr334398 S23557777 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318150565 2019-06-03 10:51:45 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Allegany US-NY-003 28.0 Webb House in Houghton L3631107 P 42.4335772 -78.1638408 2015-05-10 13:00:00 obsr90282 S23359154 Historical P62 EBIRD 30.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292534035 2021-11-09 19:34:18.590596 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-01-21 15:55:00 obsr1665312 S21486564 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307348994 2015-04-04 05:37:17 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Herkimer US-NY-043 13.0 Peckville Road - East L621219 P 43.1067482 -74.812603 2015-04-01 14:20:00 obsr2694889 S22673156 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306747644 2016-03-08 21:31:55 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-01 08:30:00 obsr369788 S22628684 Traveling P22 EBIRD 60.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305137778 2015-03-25 12:44:45 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Suffolk US-NY-103 30.0 Napeague, 640 Lazy Point Road L3512718 P 41.00486 -72.06625 2015-03-22 10:57:00 obsr2891998 S22505822 Traveling P22 EBIRD 20.0 0.161 2.0 1 G1192067 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311851074 2018-08-04 17:11:28 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-21 11:10:00 obsr982339 S22983933 Traveling P22 EBIRD 70.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317784551 2021-03-26 06:29:56.44369 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 La Casa Mocha L2517907 P 43.1025966 -77.429511 2015-05-09 07:30:00 obsr1638920 S23339460 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309927570 2021-03-23 16:30:20.514143 505 species avibase-C732CB10 American Black Duck Anas rubripes 10 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 10:49:00 obsr1696616 S22856860 Stationary P21 EBIRD 299.0 5.0 1 G1218628 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293893887 2021-04-01 11:30:42.037277 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius N 14 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Cedar Hill L5197378 H 40.7770344 -73.9654146 2015-01-29 08:24:00 obsr1548221 S21594251 Traveling P22 EBIRD 7.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317652577 2021-04-01 11:30:42.037277 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 06:00:00 obsr1760429 S23332547 Traveling P22 EBIRD 600.0 0.805 2.0 1 G1262228 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313106978 2020-05-16 18:08:44 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Otsego US-NY-077 28.0 Milford L194243 T 42.59068 -74.9452 2015-04-26 11:30:00 obsr1157831 S23066535 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308704527 2021-04-01 10:57:06.520339 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Essex US-NY-031 13.0 Delano Rd power line L3551181 P 43.891396 -73.420471 2015-04-09 15:12:00 obsr2693145 S22772951 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291343835 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 La Casa Mocha L2517907 P 43.1025966 -77.429511 2015-01-16 11:00:00 obsr1638920 S21372769 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288237427 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-01 09:50:00 obsr1417967 S21120676 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300288821 2017-02-26 14:41:26 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP L99696 H 42.5460112 -76.600422 2015-03-01 14:50:00 obsr817830 S22127148 Traveling P22 EBIRD 54.0 0.499 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298480663 2018-08-04 16:57:26 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-19 15:19:00 obsr1893950 S21980805 Traveling P22 EBIRD 23.0 0.483 2.0 1 G1153083 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310402914 2021-03-23 17:00:13.087107 30836 species avibase-8F268682 American Pipit Anthus rubescens 1 United States US New York US-NY Tompkins US-NY-109 28.0 US-NY-Freeville-298 Midline Rd L3566565 P 42.414564 -76.353111 2015-04-16 09:26:00 obsr2871406 S22889795 Traveling P22 EBIRD 16.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316715848 2021-03-26 06:29:56.44369 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Monroe US-NY-055 13.0 Backyard Webster Village L2521930 P 43.203862 -77.427156 2015-05-06 18:15:00 obsr302343 S23279068 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310943404 2021-03-30 19:07:52.958398 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 50 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 07:15:00 obsr1807494 S22925872 Traveling P22 EBIRD 360.0 4.828 22.0 1 G1224248 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316406462 2021-03-24 20:58:04.794277 27616 species avibase-D77E4B41 American Robin Turdus migratorius 11 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-05-05 08:00:00 obsr1680059 S23261084 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295920670 2021-03-24 20:58:53.646623 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 Male, Adult (1) United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-02-09 07:10:00 obsr72341 S21754909 Stationary P21 EBIRD 543.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292610653 2015-01-22 12:42:20 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Suffolk US-NY-103 US-NY_847 30.0 West Meadow Beach L1919611 P 40.941754 -73.1449986 2015-01-22 11:28:00 obsr1228860 S21492732 Traveling P22 EBIRD 12.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299114423 2021-04-01 11:54:40.172593 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Richmond US-NY-085 SI-Miller Field L291643 P 40.5674475 -74.0939199 2015-02-21 10:15:00 obsr1032565 S22035587 Traveling P22 EBIRD 28.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311567431 2021-03-19 16:19:20.977326 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N 11 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-20 10:20:00 obsr2939916 S22964519 Traveling P22 EBIRD 123.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300540169 2022-01-30 05:40:13.589887 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana P 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-21 10:00:00 obsr552059 S22144737 Stationary P21 EBIRD 120.0 1.0 1 0 1 1 Species-Introduced/Exotic +URN:CornellLabOfOrnithology:EBIRD:OBS305308586 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 20 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-13 15:00:00 obsr30103 S22519017 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291940196 2021-01-02 20:17:06.602961 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 75 United States US New York US-NY Tompkins US-NY-109 13.0 Allan H. Treman State Marine Park--marina (not lakeshore or woods) L159024 H 42.4571425 -76.5143238 2015-01-19 13:11:00 obsr1764243 S21419253 Stationary P21 EBIRD 113.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316957062 2021-04-01 11:30:42.037277 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 08:30:00 obsr1353449 S23292599 Traveling P22 EBIRD 300.0 4.828 2.0 1 G1256415 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295074482 2015-02-05 18:36:54 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Orleans US-NY-073 13.0 Home L3340835 P 43.3241786 -78.2223988 2015-02-05 11:00:00 obsr1684233 S21689565 Traveling P22 EBIRD 205.0 4.506 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308302457 2017-01-19 11:41:41 30494 species avibase-240E3390 House Sparrow Passer domesticus 23 United States US New York US-NY Oswego US-NY-075 13.0 Central Square 50 Bradbury Rd L3546711 P 43.242987 -76.125116 2015-04-07 16:13:00 obsr979921 S22741923 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304721075 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-03-22 14:15:00 obsr1555046 S22473740 Traveling P22 EBIRD 45.0 0.402 2.0 1 G1190691 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316114955 2021-03-26 06:17:19.712573 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca N 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-05 07:22:00 obsr736608 S23244020 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309500424 2021-11-09 19:57:48.795138 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Orange US-NY-071 28.0 River Rd., Montgomery L3555349 H 41.5441694 -74.2160477 2015-04-12 07:58:00 obsr870166 S22826447 Traveling P22 EBIRD 20.0 3.219 2.0 1 G1216682 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308580416 2021-04-01 11:49:53.573686 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Queens US-NY-081 30.0 the house L3549616 P 40.7915852 -73.819668 2015-04-01 06:30:00 obsr202030 S22763223 Stationary P21 EBIRD 660.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319547991 2021-04-01 10:52:54.724403 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 5 United States US New York US-NY Columbia US-NY-021 13.0 Gale Hill Rd and Hand Hollow East Chatham NY L3625199 P 42.479352 -73.495573 2015-05-14 07:15:00 obsr570335 S23438338 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313998576 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 60 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-28 07:39:00 obsr870166 S23122442 Traveling P22 EBIRD 94.0 3.058 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303898074 2021-03-30 19:29:33.633096 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 14 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-03-18 13:17:00 obsr1228860 S22411309 Rusty Blackbird Spring Migration Blitz P41 EBIRD 107.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312606108 2021-11-15 03:06:58.889978 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-24 17:23:00 obsr1889800 S23035356 Traveling P22 EBIRD 13.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307748550 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-04-05 13:15:00 obsr1885846 S22701002 Traveling P22 EBIRD 136.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320344222 2021-03-26 07:52:59.845315 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-15 06:40:00 obsr316199 S23481575 Area P23 EBIRD 170.0 2.59 2.0 1 G1273999 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323446952 2021-11-09 18:47:57.38119 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Dutchess US-NY-027 28.0 Berkshire Road, Dover Plains, NY L3677173 P 41.67904 -73.5525119 2015-05-27 07:30:00 obsr1442681 S23669621 Traveling P22 EBIRD 190.0 6.437 3.0 1 G1292783 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289032488 2021-04-01 11:54:40.172593 31530 species avibase-B48335B1 Pine Siskin Spinus pinus N 20 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-04 13:50:00 obsr1958124 S21187528 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311805779 2017-01-08 08:50:20 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 7 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College L1485004 H 44.4375537 -74.2530447 2015-04-21 10:08:00 obsr2376028 S22980940 Traveling P22 EBIRD 25.0 1.609 2.0 1 G1231661 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309741327 2021-03-30 19:29:33.633096 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-04-13 09:32:00 obsr1228860 S22839868 Traveling P22 EBIRD 76.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320601455 2021-04-01 11:15:31.646886 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-17 06:30:00 obsr2363365 S23495133 Traveling P22 EBIRD 300.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358638505 2015-12-12 19:10:45 7662 species avibase-5F8E7CA8 Golden Eagle Aquila chrysaetos 2 United States US New York US-NY Broome US-NY-007 28.0 Hyde St. L4063510 P 42.2829215 -75.9520268 2015-04-19 15:15:00 obsr998593 S26258163 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309184039 2021-04-01 11:15:31.646886 32757 species avibase-EF47E15D Boat-tailed Grackle Quiscalus major 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 07:30:00 obsr139757 S22806414 Traveling P22 EBIRD 300.0 8.047 1.0 1 G1214818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316030404 2021-03-19 16:19:20.977326 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-05 06:51:00 obsr502830 S23239415 Traveling P22 EBIRD 136.0 1.207 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313139914 2021-03-19 16:27:31.421791 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 8 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kanyoo Trail L152120 H 43.1168988 -78.430624 2015-04-26 11:38:00 obsr1092576 S23068383 Traveling P22 EBIRD 104.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314534591 2021-11-15 03:06:58.889978 6526 species avibase-4D2FF6F1 Common Tern Sterna hirundo 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-30 06:25:00 obsr870166 S23155578 Traveling P22 EBIRD 115.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291110996 2021-04-01 11:42:15.525388 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 US-NY-Lewiston-700 Mohawk St L3290757 P 43.177302 -79.038317 2015-01-13 12:32:00 obsr294236 S21336859 Incidental P20 EBIRD 3.0 1 G1108702 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305450319 2015-03-27 18:13:54 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Richmond US-NY-085 Lemon Creek Park L508340 H 40.5121298 -74.198581 2015-03-26 15:00:00 obsr1535951 S22530222 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303866998 2021-03-26 07:30:35.289997 6186 species avibase-B0932D89 Dovekie Alle alle N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-03-18 13:17:00 obsr2211210 S22408710 Traveling P22 EBIRD 12.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304233555 2021-03-26 06:12:17.833181 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 11 United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-03-20 12:00:00 obsr1224512 S22437470 Traveling P22 EBIRD 40.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309367402 2018-08-04 17:08:49 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Carncross Rd. L99688 H 43.0787739 -76.7080184 2015-04-12 10:48:00 obsr2914424 S22818219 Traveling P22 EBIRD 73.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294733433 2021-03-23 17:32:20.03109 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Fabius Palmer Rd L1189889 P 42.8773793 -76.0816956 2015-01-24 11:00:00 obsr2290617 S21660288 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316829573 2021-03-30 19:13:38.458673 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-06 19:30:00 obsr334398 S23285469 Traveling P22 EBIRD 116.0 0.547 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314455434 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-04-30 13:15:00 obsr2475766 S23150463 Traveling P22 EBIRD 35.0 1.127 14.0 1 G1244402 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340805492 2021-04-01 11:15:31.646886 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Kings US-NY-047 Four Sparrow Marsh L510138 H 40.6000729 -73.9085591 2015-05-24 07:09:00 obsr2538893 S24923905 Traveling P22 EBIRD 153.0 4.023 2.0 1 G1399437 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308059183 2021-04-01 12:24:14.132004 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Washington US-NY-115 13.0 Ft. Edward Yacht Basin L13170600 H 43.2682951 -73.5881413 2015-04-06 12:03:00 obsr1222746 S22723217 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298936887 2021-04-01 10:51:06.899622 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-02-22 09:02:00 obsr2497657 S22019253 Stationary P21 EBIRD 132.0 7.0 1 G1158017 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305230953 2019-07-23 17:28:05 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Camp Hero SP--bluffs (parking lot) L3512708 P 41.06987 -71.85874 2015-03-22 09:19:00 obsr1927254 S22512949 Traveling P22 EBIRD 44.0 4.828 2.0 1 G1192069 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323262396 2021-11-15 03:06:58.889978 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 ON C4 ON United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-26 09:00:00 obsr1706920 S23656904 Traveling P22 EBIRD 210.0 0.483 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292061810 2018-08-04 16:54:01 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Saint Johns Pond Sanctuary L123034 H 40.85417 -73.46333 2015-01-19 12:05:00 obsr2635084 S21428959 Stationary P21 EBIRD 10.0 3.0 1 G1117216 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309209734 2019-07-23 17:28:19 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-04-11 13:00:00 obsr2096529 S22808173 Traveling P22 EBIRD 30.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317874730 2021-03-24 19:48:44.880783 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 Male, Adult (2) United States US New York US-NY Monroe US-NY-055 13.0 Sandy Creek Park L1454159 H 43.3152133 -77.9447992 2015-05-09 09:45:00 obsr920912 S23344302 Traveling P22 EBIRD 15.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300919450 2018-08-04 16:58:44 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-04 14:00:00 obsr1830659 S22173080 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1248941173 2021-10-02 19:07:41.505783 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Erie US-NY-029 13.0 Tillman Rd. WMA L260205 H 42.9656289 -78.6090731 2015-05-25 09:10:00 obsr2155450 S95505538 Traveling P22 EBIRD 105.0 3.621 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317546044 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N X United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-05-09 12:39:00 obsr2404047 S23326579 Traveling P22 EBIRD 26.0 0.483 4.0 1 G1260346 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309072957 2018-08-04 17:08:28 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake, north woods L986083 H 42.4650573 -76.2791008 2015-04-11 09:26:00 obsr59643 S22799232 Traveling P22 EBIRD 16.0 0.161 2.0 1 G1214329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315712466 2021-03-24 19:27:13.077399 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Chemung US-NY-015 28.0 Tanglewood Nature Center--Personius Woods L826647 H 42.1149378 -76.8878603 2015-05-04 07:30:00 obsr8848 S23221172 Traveling P22 EBIRD 105.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302659152 2015-03-12 15:19:32 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-03-12 10:25:00 obsr1167884 S22313909 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314300985 2020-03-15 18:48:35 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Ontario US-NY-069 13.0 Ontario Pathways--NY 96, Phelps L348453 H 42.9580206 -77.0920904 2015-04-30 09:12:00 obsr1569772 S23141124 Traveling P22 EBIRD 96.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309520776 2021-03-26 06:29:56.44369 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Hamlin-305-373 Jacobs Rd L3557641 P 43.342824 -77.947158 2015-04-12 11:18:00 obsr983655 S22827845 Traveling P22 EBIRD 22.0 1.609 2.0 1 G1216801 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294829337 2015-02-03 23:56:53 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--207-215 Fall Creek Dr L2332401 P 42.452603 -76.487026 2015-02-03 01:45:00 obsr1895507 S21668496 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294026911 2019-01-27 11:09:05 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-07 15:45:00 obsr2902954 S21604588 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314725564 2021-03-26 07:56:20.588749 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 2 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-05-01 06:30:00 obsr676630 S23166701 Traveling P22 EBIRD 45.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294424488 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Nassau US-NY-059 30.0 Smith Pond, Rockville Center L444839 H 40.6608056 -73.6545278 2015-02-01 13:10:00 obsr916370 S21635871 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291037128 2021-03-30 19:29:33.633096 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 8 United States US New York US-NY Suffolk US-NY-103 30.0 Emma rose Ellison park L3275078 P 40.9223981 -72.4212313 2015-01-14 12:00:00 obsr649205 S21347747 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307072016 2018-08-04 17:05:07 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 132 United States US New York US-NY Herkimer US-NY-043 13.0 Milky Way Farm Pond & Vicinity L681238 P 43.1062939 -74.8197913 2015-04-02 15:40:00 obsr1000124 S22653108 Traveling P22 EBIRD 8.0 0.161 3.0 1 G1202222 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316265252 2021-04-01 12:18:57.910168 303 species avibase-B59E1863 Canada Goose Branta canadensis 8 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Palmer Woods L287796 H 42.4604469 -76.4789951 2015-04-26 13:00:00 obsr1725472 S23253433 Traveling P22 EBIRD 120.0 0.805 4.0 1 G1239955 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307647826 2021-03-24 19:35:34.045988 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 18 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-04-05 08:21:00 obsr502830 S22694003 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312673986 2018-08-04 17:12:01 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 Lake van Leer (private) L524497 P 42.5196241 -76.6454744 2015-04-24 15:30:00 obsr1008519 S23040032 Stationary P21 EBIRD 220.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314476090 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 14:00:00 obsr2363365 S23151829 Traveling P22 EBIRD 270.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293412669 2021-03-26 08:05:20.615241 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata N 1 United States US New York US-NY Onondaga US-NY-067 13.0 Home L1373257 P 42.9473012 -76.4350486 2015-01-26 16:00:00 obsr2406179 S21556158 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290208934 2021-04-01 12:14:19.266649 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-10 08:30:00 obsr2207991 S21280870 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310190134 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-15 08:40:00 obsr599682 S22875320 Traveling P22 EBIRD 60.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316708226 2018-08-06 22:29:02 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Delaware US-NY-025 28.0 Denver-Vega Valley L2040482 P 42.258131 -74.53147 2015-05-06 09:00:00 obsr2124788 S23278660 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043001 2021-04-01 10:45:00.916278 6472 species avibase-BE78E765 Least Tern Sternula antillarum 500 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80947 2015-01-17 08:30:00 obsr1673515 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS320746317 2021-04-01 11:30:42.037277 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 25 P C3 P United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-17 15:23:00 obsr924076 S23502930 Traveling P22 EBIRD 293.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313220306 2021-11-15 03:06:58.889978 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-26 12:30:00 obsr90751 S23073080 Traveling P22 EBIRD 210.0 4.828 2.0 1 G1237565 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303122213 2018-12-25 13:19:26 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Tioga US-NY-107 28.0 Spencer Lake, north end L3488062 P 42.2528781 -76.5036339 2015-03-14 14:10:00 obsr979921 S22350091 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313084854 2021-03-26 06:59:15.841579 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Volney - Maple Ave- Wetland - L2101041 P 43.308844 -76.367327 2015-04-26 09:16:00 obsr2945658 S23065258 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323618963 2018-08-06 22:31:19 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 7 United States US New York US-NY Chemung US-NY-015 28.0 Sullivanville Dam L312295 H 42.1930881 -76.7819872 2015-05-28 18:08:00 obsr1092576 S23681108 Traveling P22 EBIRD 22.0 0.1 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316157970 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 09:15:00 obsr609516 S23246244 Traveling P22 EBIRD 270.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309777830 2021-03-23 16:30:20.514143 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 09:00:00 obsr948687 S22846292 Stationary P21 EBIRD_CAN 240.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305982270 2018-08-04 17:04:36 1375 species avibase-4B9EEF56 Ring-necked Pheasant Phasianus colchicus 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-03-29 09:15:00 obsr1830659 S22570282 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301391289 2015-03-07 13:25:39 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Tompkins US-NY-109 28.0 ***Fitzpatrick home L124872 P 42.42879 -76.395065 2015-03-07 06:50:00 obsr2124298 S22209683 Traveling P22 EBIRD 110.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315119332 2021-04-01 11:30:42.037277 592 species avibase-3072CC16 Redhead Aythya americana 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-02 08:00:00 obsr2369927 S23189156 Traveling P22 EBIRD 360.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289416800 2021-04-01 11:24:19.637193 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-05 08:25:00 obsr1782363 S21217432 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320715117 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-10 07:00:00 obsr2235775 S23501207 Traveling P22 EBIRD 180.0 3.219 16.0 1 G1275937 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310958063 2018-08-04 17:09:38 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-18 08:00:00 obsr1044068 S22926880 Traveling P22 EBIRD 180.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321528062 2021-03-19 16:02:45.308962 26278 species avibase-A381417F House Wren Troglodytes aedon X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-05-20 15:10:00 obsr290506 S23550847 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314212513 2015-04-29 22:03:17 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Ontario US-NY-069 13.0 Fawn Ridge, Bristol L1020468 P 42.7886141 -77.4285507 2015-04-29 06:00:00 obsr1752243 S23135418 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308803633 2018-08-04 17:08:16 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-09 17:30:00 obsr1174140 S22780440 Traveling P22 EBIRD 87.0 2.414 4.0 1 G1213014 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289367503 2021-11-09 20:43:08.681969 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Putnam US-NY-079 28.0 Tilly Foster Farm Conservation Area L366986 H 41.4206016 -73.636692 2015-01-03 09:27:00 obsr1666581 S21213563 Traveling P22 EBIRD 49.0 1.609 2.0 1 G1097917 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314024561 2015-04-29 11:03:30 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Oneida US-NY-065 13.0 * Elwood Rd., Camden L1181747 P 43.2884522 -75.8246326 2015-04-29 07:06:00 obsr1640315 S23121852 Stationary P21 EBIRD 3.0 2.0 1 G1242271 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306087530 2018-08-04 17:04:35 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-03-29 09:00:00 obsr1848026 S22577910 Traveling P22 EBIRD 121.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304431335 2021-03-23 17:18:00.959502 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-03-21 10:25:00 obsr119187 S22452185 Stationary P21 EBIRD 30.0 4.0 1 G1186977 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320491919 2021-03-19 16:44:35.607263 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-17 09:50:00 obsr1097423 S23489430 Traveling P22 EBIRD 65.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299925811 2021-11-09 20:12:16.773384 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis N 4 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-02-27 08:21:00 obsr1912104 S22097462 Stationary P21 EBIRD 43.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294786074 2018-08-04 16:55:37 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-02 13:45:00 obsr1628992 S21664973 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300194475 2019-07-23 17:27:33 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 12 United States US New York US-NY Suffolk US-NY-103 30.0 Napeague State Park/Napeague Harbor L1079957 P 40.998557 -72.0895386 2015-02-28 11:00:00 obsr247620 S22119185 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305583834 2021-03-26 07:30:35.289997 483 species avibase-85625D75 Mallard Anas platyrhynchos 20 United States US New York US-NY Tompkins US-NY-109 13.0 east hill recreation trail south L2816554 P 42.433197 -76.468891 2015-03-27 11:24:00 obsr241086 S22540457 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310675016 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 10:15:00 obsr2448505 S22908448 Traveling P22 EBIRD 120.0 2.414 2.0 1 G1223267 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299093109 2021-04-01 10:53:25.818871 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Cortland US-NY-023 28.0 Daisy Hollow Rd. wet meadows L2976557 H 42.4879855 -76.2249148 2015-02-22 15:47:00 obsr1318356 S22034006 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310108267 2021-11-09 19:59:19.937618 23187 species avibase-ACB9D1C6 Purple Martin Progne subis 1 United States US New York US-NY Orange US-NY-071 28.0 Scott's Corner Golf. L3564642 P 41.530167 -74.201847 2015-04-12 09:34:00 obsr1982614 S22869672 Stationary P21 EBIRD 80.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294896772 2021-03-23 17:26:08.495143 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 JFK Memorial Wildlife Sanctuary L194386 H 40.6105495 -73.4519033 2015-02-04 12:00:00 obsr247620 S21674088 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314412128 2021-03-26 06:39:43.334073 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-04-30 09:50:00 obsr1706920 S23147461 Traveling P22 EBIRD 60.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300768721 2021-03-26 08:05:20.615241 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 54 United States US New York US-NY Onondaga US-NY-067 13.0 Skan - 5 E. Lake St L631480 P 42.9468657 -76.4167383 2015-02-05 07:30:00 obsr2279567 S22161758 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288206574 2018-08-04 16:52:25 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-01-01 14:37:00 obsr1958124 S21118099 Traveling P22 EBIRD 15.0 0.048 2.0 1 G1088893 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302008638 2020-04-25 20:25:02 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--Comstock Knoll L290965 H 42.4498398 -76.4723566 2015-03-09 13:39:00 obsr2724574 S22256857 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291474645 2021-11-09 21:56:59.12055 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Ulster US-NY-111 13.0 Winter Waterfowl Count, Sector F L3298078 P 41.9068176 -74.0655327 2015-01-17 08:00:00 obsr1482758 S21383387 Traveling P22 EBIRD 315.0 48.28 2.0 1 G1112072 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296526609 2021-11-09 22:04:47.967972 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-10 09:15:00 obsr2175245 S21806684 Stationary P21 EBIRD 311.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317480027 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.8929476 2015-05-09 08:00:00 obsr2054320 S23322497 Traveling P22 EBIRD 150.0 1.609 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295572022 2021-04-01 10:55:39.308231 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-02-08 12:43:00 obsr502830 S21727762 Stationary P21 EBIRD 99.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303018270 2021-11-09 18:45:10.001867 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Dutchess US-NY-027 13.0 Walkway Over the Hudson L3486805 P 41.7107118 -73.9297507 2015-03-11 13:20:00 obsr2343626 S22341900 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320669363 2015-05-17 19:01:30 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 5 United States US New York US-NY Chenango US-NY-017 28.0 Coventry State Forest - east of North Rd L3590078 P 42.3430147 -75.6308913 2015-05-17 10:30:00 obsr1303581 S23498809 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322502893 2022-02-03 14:50:58.270664 27380 species avibase-E53FC25C Swainson's Thrush Catharus ustulatus 3 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road/Townline Road Woods L3668627 P 43.0088367 -77.6778889 2015-05-24 09:07:00 obsr934639 S23609723 Traveling P22 EBIRD 75.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310597146 2021-03-19 16:10:30.527219 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 4 United States US New York US-NY Chemung US-NY-015 28.0 Bottchers Landing L143559 H 42.1246158 -76.951613 2015-04-17 07:29:00 obsr2871406 S22903470 Traveling P22 EBIRD 7.0 0.322 3.0 1 G1222628 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296879546 2021-03-26 06:39:43.334073 32869 species avibase-D204A930 Tennessee Warbler Leiothlypis peregrina 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-02-14 11:45:00 obsr2796494 S21838383 Traveling P22 EBIRD 40.0 0.161 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301111825 2021-03-26 06:29:56.44369 7940 spuh avibase-CA08045E Accipiter sp. Accipiter sp. 8 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-05 11:50:00 obsr334398 S22186568 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS314114799 2021-03-19 16:02:45.308962 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Broome US-NY-007 28.0 Finch Hollow Nature Center L1006547 H 42.1610683 -75.9833262 2015-04-29 14:30:00 obsr826254 S23129357 Traveling P22 EBIRD 80.0 0.805 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289141690 2021-04-01 12:40:54.473014 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Saratoga US-NY-091 13.0 Mohawk-Hudson confluence - Waterford L3266636 P 42.785714 -73.6777201 2015-01-03 11:30:00 obsr2855945 S21196133 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315364114 2021-11-09 18:42:19.628792 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-03 07:00:00 obsr2175245 S23202267 Traveling P22 EBIRD 200.0 2.414 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291743040 2021-03-24 20:33:47.533911 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Tompkins US-NY-109 28.0 ***Fitzpatrick home L124872 P 42.42879 -76.395065 2015-01-18 07:45:00 obsr2124298 S21404179 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308614560 2021-04-01 11:30:42.037277 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 2 United States US New York US-NY New York US-NY-061 30.0 J. Hood Wright Park L3511956 H 40.8464415 -73.9414896 2015-04-09 08:30:00 obsr200707 S22765779 Traveling P22 EBIRD 15.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297652418 2021-03-24 20:58:53.646623 303 species avibase-B59E1863 Canada Goose Branta canadensis N 2 United States US New York US-NY Livingston US-NY-051 13.0 Nations Rd. IBA--Huston Rd. L810213 H 42.8525297 -77.7958202 2015-02-14 09:00:00 obsr2619130 S21907426 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS327575609 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola N 40 United States US New York US-NY Kings US-NY-047 30.0 McGolrick Park L2987624 H 40.7245046 -73.9433616 2015-05-16 08:05:00 obsr1644519 S23959301 Traveling P22 EBIRD 15.0 0.644 1.0 1 G1319494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303757344 2021-12-10 08:21:29.396662 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-16 18:00:00 obsr2161273 S22400028 Traveling P22 EBIRD 60.0 0.805 3.0 1 G1183562 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288160445 2021-03-23 16:21:52.613913 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Ontario US-NY-069 13.0 Baptist Hill Rd & Stetson Rd. L1887955 P 42.8457853 -77.4652433 2015-01-01 10:50:00 obsr983655 S21114308 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318167546 2021-04-01 11:30:42.037277 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-10 07:00:00 obsr2605333 S23359955 Traveling P22 EBIRD 180.0 3.219 16.0 1 G1275937 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299327306 2015-02-24 19:52:11 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Suffolk US-NY-103 30.0 418 Jamaica Avenue L653849 P 40.8152383 -72.9672861 2015-02-22 11:20:00 obsr2934754 S22051915 Incidental P20 EBIRD 2.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311845480 2021-04-01 12:14:19.266649 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Heckscher SP, East Islip L547888 H 40.7129149 -73.1650615 2015-04-21 09:15:00 obsr1489009 S22983572 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310855504 2018-08-04 17:09:36 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia X United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA, Baldwinsville, NY L1421279 P 43.2105406 -76.3197934 2015-04-18 07:00:00 obsr2172593 S22920443 Traveling P22 EBIRD 105.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294727288 2021-03-26 08:14:57.071052 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-02-03 10:00:00 obsr2924527 S21659758 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291673220 2021-03-26 06:21:54.883933 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-01-17 11:00:00 obsr2603801 S21398869 Stationary P21 EBIRD 20.0 3.0 1 G1112862 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305156649 2021-03-26 07:07:10.758746 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 Male, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-24 16:40:00 obsr1032565 S22507312 Traveling P22 EBIRD 110.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306394641 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-30 obsr1723136 S22601343 Incidental P20 EBIRD 3.0 0 G2440872 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294148615 2021-03-26 06:29:56.44369 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Monroe US-NY-055 13.0 Waterfowl Count - Captein L3329101 P 43.2404022 -77.5158244 2015-01-18 08:15:00 obsr2966702 S21614137 Stationary P21 EBIRD 11.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313233724 2021-03-23 17:23:45.772216 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake Park L792637 H 42.7759994 -77.6113701 2015-04-26 10:32:00 obsr393804 S23073870 Traveling P22 EBIRD 74.0 0.404 1.0 1 G1237474 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305734973 2021-03-30 19:13:38.458673 6616 species avibase-7E022378 Common Loon Gavia immer 200 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-23 11:38:00 obsr745890 S22551953 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291634530 2015-01-18 20:11:29 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-01-18 10:38:00 obsr1097423 S21395993 Traveling P22 EBIRD 52.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298581080 2021-11-09 18:34:57.804398 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 Female, Adult (1) United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-02-20 12:30:00 obsr1264675 S21989213 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322765061 2021-03-24 19:48:44.880783 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-25 09:24:00 obsr1696616 S23625168 Traveling P22 EBIRD 60.0 1.207 2.0 1 G1288857 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316785247 2021-03-19 16:08:39.161312 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-05-06 07:45:00 obsr1380963 S23283157 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313805068 2018-08-04 17:12:36 454 species avibase-15EE0D36 Eurasian Wigeon Mareca penelope 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-28 09:23:00 obsr1472872 S23110087 Traveling P22 EBIRD 45.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322047488 2021-12-23 15:00:47.137144 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 40 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-05-22 18:42:00 obsr1696616 S23583556 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310945027 2020-06-20 20:01:51 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Chenango US-NY-017 US-NY_2780 28.0 Long Pond SF--Rt. 41 fishing access L3074026 H 42.422518 -75.851062 2015-04-18 08:51:00 obsr2211210 S22925964 Traveling P22 EBIRD 15.0 0.322 2.0 1 G1224241 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322443774 2021-03-19 16:44:35.607263 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-24 08:00:00 obsr991026 S23606490 Traveling P22 EBIRD 81.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320319328 2021-11-09 18:44:30.376878 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Dutchess US-NY-027 28.0 Berkshire Rd., Dover L3408350 H 41.6906482 -73.5582539 2015-05-16 07:43:00 obsr1732267 S23480303 Traveling P22 EBIRD 137.0 4.828 2.0 1 G1277161 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312090823 2018-08-04 17:11:46 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Warren US-NY-113 13.0 Round Pond, Queensbury L2439306 P 43.3507412 -73.6789459 2015-04-22 11:48:00 obsr1222746 S22999495 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311075934 2022-01-20 09:38:40.245267 26890 species avibase-94A44032 European Starling Sturnus vulgaris 7 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-04-17 12:30:00 obsr896341 S22934452 Traveling P22 EBIRD 210.0 3.219 4.0 1 G1225020 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309253995 2021-03-23 17:32:20.03109 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Onondaga US-NY-067 13.0 ISR 90 - between Exits 38 & 39. L1519758 P 43.1159838 -76.2443965 2015-04-11 07:15:00 obsr1000124 S22811088 Incidental P20 EBIRD 0 G1215535 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317744571 2021-03-19 16:29:59.503892 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 4 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-09 18:28:00 obsr1302604 S23337457 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302960883 2018-08-04 16:59:01 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 20 United States US New York US-NY Monroe US-NY-055 13.0 Slater Creek (Russell Station) L140439 H 43.2691002 -77.6264038 2015-03-08 09:40:00 obsr991026 S22337453 Stationary P21 EBIRD 45.0 12.0 1 G1183515 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314931731 2015-05-02 13:38:30 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Columbia US-NY-021 14.0 Drowned Lands Swamp Conservation Area L2704928 H 42.0536902 -73.5669422 2015-05-02 07:05:00 obsr798742 S23178782 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS454838426 2021-04-01 12:12:56.033907 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Steuben US-NY-101 28.0 Robie Street, Bath L1985415 P 42.3437961 -77.3205543 2015-04-02 08:12:00 obsr677629 S33478876 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304803317 2022-02-17 14:32:23.002448 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-22 15:00:00 obsr2180607 S22479654 Traveling P22 EBIRD 120.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307858916 2019-07-23 17:28:14 27616 species avibase-D77E4B41 American Robin Turdus migratorius 40 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Dr. N of E. Shore Park L890223 P 42.4776362 -76.5069437 2015-04-05 17:01:00 obsr1655171 S22708922 Stationary P21 EBIRD 14.0 2.0 1 G1212796 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322532016 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 07:00:00 obsr2514491 S23611291 Traveling P22 EBIRD 330.0 8.047 3.0 1 G1287465 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307841514 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-05 07:00:00 obsr2404047 S22707735 Traveling P22 EBIRD 300.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318281678 2021-11-15 03:06:58.889978 8773 species avibase-7AA076EF Barred Owl Strix varia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-10 10:30:00 obsr1089184 S23366139 Traveling P22 EBIRD 90.0 0.998 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291424780 2015-01-17 11:41:08 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Monroe US-NY-055 13.0 Jacobs Road L826270 P 43.3429703 -77.9496288 2015-01-17 11:34:00 obsr334398 S21379308 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299858596 2021-12-10 08:21:29.396662 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-27 08:30:00 obsr258431 S22092666 Traveling P22 EBIRD 120.0 2.012 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289395879 2021-03-30 19:43:32.881136 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 150 United States US New York US-NY Westchester US-NY-119 30.0 Tarrytown Lakes Park L302456 H 41.0829631 -73.8426401 2015-01-05 14:30:00 obsr1055148 S21215778 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301990467 2021-04-01 11:54:40.172593 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 5 United States US New York US-NY Richmond US-NY-085 30.0 Tottenville High School L884731 P 40.5282185 -74.1924763 2015-03-09 12:25:00 obsr1958124 S22255514 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312857700 2021-03-26 08:14:57.071052 622 species avibase-50566E50 Lesser Scaup Aythya affinis 4 United States US New York US-NY Westchester US-NY-119 30.0 US-NY-Hawthorne - 41.0903x-73.7925 - Apr 25, 2015, 3:48 PM L3589614 P 41.090258 -73.792503 2015-04-25 15:00:00 obsr258431 S23051506 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303529702 2018-08-04 17:01:28 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Chautauqua US-NY-013 13.0 Hall Road, Dunkirk L3492897 P 42.4547532 -79.3839964 2015-03-15 12:00:00 obsr479109 S22382643 Traveling P22 EBIRD 15.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312781913 2021-04-01 11:24:19.637193 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-24 09:15:00 obsr1782363 S23047088 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320915838 2018-08-06 22:30:30 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-05-18 11:30:00 obsr1962295 S23513073 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312198179 2021-04-01 11:49:53.573686 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-19 14:08:00 obsr839844 S23006848 Traveling P22 EBIRD 81.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304241825 2021-11-02 20:32:06.137153 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-03-20 13:45:00 obsr317968 S22438089 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308108735 2022-02-17 14:32:23.002448 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-06 18:16:00 obsr152435 S22727107 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299355819 2021-03-26 06:52:34.887371 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-02-16 10:00:00 obsr2141910 S22054136 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314092675 2015-04-29 15:24:24 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Monroe US-NY-055 13.0 Corner of Thornell and Mendon Rd L2673836 P 43.053367 -77.518791 2015-04-29 06:55:00 obsr2223307 S23128052 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321685278 2021-03-26 06:39:43.334073 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-05-20 12:35:00 obsr1706920 S23560534 Traveling P22 EBIRD 65.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299615223 2021-04-01 12:32:15.282601 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach -- Boardwalk L3440009 P 40.5933684 -73.5179383 2015-02-25 14:20:00 obsr87415 S22074027 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301367138 2021-04-01 11:47:43.260314 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N 15 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-03-07 10:45:00 obsr2871406 S22207737 Traveling P22 EBIRD 34.0 0.161 4.0 1 G1168715 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289501879 2022-01-09 18:48:43.534861 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 30.0 Greenwich Village (14th St.-Houston St.; Broadway-Hudson River) L3238737 H 40.7342063 -74.0027145 2015-01-06 14:48:00 obsr2574755 S21224328 Traveling P22 EBIRD 22.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314714888 2018-08-04 17:13:57 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-01 15:10:00 obsr646558 S23166158 Traveling P22 EBIRD 75.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295508468 2021-03-26 07:07:10.758746 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 7 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-02-08 08:27:00 obsr1958124 S21722783 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311172953 2021-03-26 07:00:33.333856 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 5 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-04-19 08:51:00 obsr2574755 S22940134 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309511528 2021-03-26 07:20:31.408164 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-12 12:30:00 obsr2448785 S22827226 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1216742 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302822001 2021-03-26 06:15:05.840405 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Cortland US-NY-023 28.0 Municipal Waterworks, Cortland L3400006 H 42.595291 -76.194842 2015-03-13 08:32:00 obsr1092576 S22326187 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298786618 2021-04-01 12:32:15.282601 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 14 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-02-21 11:45:00 obsr247620 S22006984 Traveling P22 EBIRD 135.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304838505 2021-04-01 12:14:19.266649 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 22 United States US New York US-NY Suffolk US-NY-103 30.0 Copiague L3508617 P 40.6703335 -73.3884144 2015-03-21 12:07:00 obsr564905 S22481982 Traveling P22 EBIRD 7.0 0.483 2.0 1 G1190132 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311889885 2015-04-21 16:54:28 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Tompkins US-NY-109 28.0 Banks Rd. trail to WNW L2128515 P 42.393755 -76.430807 2015-04-19 12:00:00 obsr844466 S22986337 Traveling P22 EBIRD 80.0 2.414 2.0 1 G1230341 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312912624 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-25 09:15:00 obsr1258494 S23054690 Traveling P22 EBIRD 120.0 1.609 50.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320097474 2021-03-19 16:02:45.308962 6167 spuh avibase-7FC8B7ED shorebird sp. Charadriiformes sp. 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-16 06:05:00 obsr800690 S23469117 Traveling P22 EBIRD 254.0 3.219 2.0 1 G1273111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307690081 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-05 09:09:00 obsr1649154 S22696899 Traveling P22 EBIRD 173.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289312213 2021-04-01 12:45:19.712958 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-01-05 08:00:00 obsr2078798 S21209080 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317434948 2021-03-19 16:25:42.617988 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 4 United States US New York US-NY Essex US-NY-031 13.0 Mt. Defiance L2814714 H 43.8313207 -73.406589 2015-05-09 06:10:00 obsr822321 S23319899 Traveling P22 EBIRD 176.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314749581 2021-11-09 19:26:46.111034 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 6 United States US New York US-NY Orange US-NY-071 28.0 Stewart SF L1136870 H 41.4968697 -74.1592259 2015-04-30 10:00:00 obsr662396 S23168271 Traveling P22 EBIRD 90.0 6.437 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323174539 2021-11-09 18:47:20.196792 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm, Poughkeepsie, NY L3628244 P 41.6775787 -73.8973314 2015-05-04 06:30:00 obsr2786327 S23651412 Traveling P22 EBIRD 180.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299963512 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 12 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach West End L844092 P 40.5831269 -73.5595393 2015-02-27 10:45:00 obsr2196583 S22100321 Traveling P22 EBIRD 185.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308213253 2021-03-19 16:02:45.308962 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-04-07 08:55:00 obsr800690 S22735398 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288524440 2015-01-02 15:52:42 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Schenectady US-NY-093 13.0 Hutchinson Woods L1385563 P 42.8581549 -73.9937934 2015-01-01 12:30:00 obsr739254 S21144575 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307377157 2021-03-30 19:13:38.458673 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--South Marina L458871 H 43.3060838 -77.7083373 2015-04-04 09:45:00 obsr1958774 S22675187 Traveling P22 EBIRD 6.0 0.483 2.0 1 G1205183 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318620265 2015-05-11 14:01:56 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.859067 2015-05-11 13:45:00 obsr385090 S23384776 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299018015 2021-03-30 19:28:38.115458 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-02-22 14:06:00 obsr1655171 S22025713 Stationary P21 EBIRD 23.0 3.0 1 G1156983 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293154648 2021-03-30 19:19:56.775388 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Ontario US-NY-069 13.0 Sandy Bottom Park, Honeoye L811497 H 42.7831811 -77.5149822 2015-01-25 14:04:00 obsr991026 S21535394 Traveling P22 EBIRD 54.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298707006 2021-04-01 12:41:58.738824 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-02-21 07:35:00 obsr2871406 S22000341 Stationary P21 EBIRD 30.0 2.0 1 G1154707 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306097288 2021-03-30 19:29:33.633096 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow State Park, Suffolk, NY L2601819 P 40.9085423 -73.2595342 2015-03-29 13:30:00 obsr2534001 S22578648 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311191907 2021-11-15 03:06:58.889978 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-17 13:30:00 obsr516108 S22941259 Traveling P22 EBIRD 240.0 1.127 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS359330517 2021-03-19 16:02:45.308962 30494 species avibase-240E3390 House Sparrow Passer domesticus N 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689 2015-05-03 08:12:00 obsr998593 S26322100 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307366939 2021-03-23 16:39:03.255227 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-04 09:01:00 obsr1958124 S22674523 Traveling P22 EBIRD 9.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304632023 2021-04-01 12:26:53.827486 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-22 12:53:00 obsr2319580 S22466967 Traveling P22 EBIRD 56.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298847067 2021-03-26 07:07:10.758746 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 15 United States US New York US-NY Richmond US-NY-085 30.0 Alice Austen Park L2501813 H 40.6152891 -74.0630348 2015-02-21 11:34:00 obsr1893950 S22011854 Traveling P22 EBIRD 10.0 0.322 2.0 1 G1155359 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312048093 2018-08-04 17:11:39 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-22 08:00:00 obsr1830659 S22996800 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311862148 2021-03-26 07:17:29.663409 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Schoharie US-NY-095 28.0 42.6487x-74.3963 - Apr 21, 2015, 7:22 AM L3580877 P 42.648651 -74.396324 2015-04-21 07:22:00 obsr2268588 S22984537 Stationary P21 EBIRD 27.0 1.0 1 G1230544 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288379020 2021-04-01 12:30:15.438381 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N 5 United States US New York US-NY Herkimer US-NY-043 13.0 Dillenbeck Rd L3255941 P 42.9952783 -74.7785282 2015-01-01 13:00:00 obsr1708031 S21132443 Traveling P22 EBIRD 40.0 12.875 2.0 1 G1105367 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312350342 2019-10-25 16:17:48 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 picketville rd L3585057 P 44.6189872 -74.818723 2015-04-23 15:55:00 obsr2834886 S23016951 Incidental P20 EBIRD 2.0 0 G1232949 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315404989 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L2020281 P 40.783661 -73.963995 2015-05-03 08:00:00 obsr2436774 S23204430 Traveling P22 EBIRD 480.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290657685 2015-01-12 12:29:00 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Livingston US-NY-051 13.0 Sliker Hill Road L865467 P 42.714545 -77.6780793 2015-01-12 11:22:00 obsr72341 S21317430 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291516644 2015-01-17 18:32:42 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-01-17 13:00:00 obsr2814495 S21386725 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302829218 2015-03-13 09:53:33 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 47 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-03-13 09:39:00 obsr2588479 S22326789 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308351899 2021-03-26 07:53:57.664705 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-04-07 18:15:00 obsr1060479 S22745713 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309643977 2021-11-09 21:50:48.44865 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-12 08:00:00 obsr1588136 S22836085 Traveling P22 EBIRD 180.0 2.414 12.0 1 G1217686 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324010694 2021-04-01 11:15:31.646886 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 09:45:00 obsr1408339 S23708638 Traveling P22 EBIRD 60.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290248789 2021-12-03 21:50:44.732892 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-01-10 10:46:00 obsr1893950 S21284402 Traveling P22 EBIRD 35.0 0.805 2.0 1 G1103720 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301621714 2022-02-18 10:47:29.953615 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-08 10:20:00 obsr1062070 S22226584 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320335373 2018-08-06 22:30:13 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Rochester, 463 Lowden Point Road L3648593 P 43.29055 -77.70975 2015-05-16 12:54:00 obsr745890 S23481124 Traveling P22 EBIRD 50.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313347776 2018-08-04 17:12:09 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Tompkins US-NY-109 28.0 Lindsay-Parsons Biodiversity Preserve (FLLT) L109055 H 42.3101677 -76.5216895 2015-04-25 10:54:00 obsr2255296 S23080959 Traveling P22 EBIRD 128.0 2.414 3.0 1 G1238410 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296722096 2015-02-14 12:27:14 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-02-14 11:45:00 obsr2290061 S21824338 Incidental P20 EBIRD 2.0 0 G1145577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312746143 2021-04-01 10:52:54.724403 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 4 United States US New York US-NY Columbia US-NY-021 13.0 Town of Stuyvesant L1153717 P 42.3903113 -73.7820339 2015-04-24 16:30:00 obsr712039 S23044930 Traveling P22 EBIRD 60.0 22.531 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303905252 2021-04-01 11:54:40.172593 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 85 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-03-18 08:22:00 obsr396989 S22411851 Traveling P22 EBIRD_NJ 370.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307955326 2018-08-04 17:05:41 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-06 07:30:00 obsr544268 S22716275 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325079218 2021-11-09 19:57:48.990233 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-16 11:29:00 obsr334398 S23781641 Traveling P22 EBIRD 166.0 0.402 4.0 1 G1395530 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303503541 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-03-16 12:22:00 obsr869873 S22380656 Traveling P22 EBIRD 13.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321063185 2022-02-17 14:32:23.002448 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-18 13:30:00 obsr2448957 S23522188 Traveling P22 EBIRD 300.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316055107 2021-04-01 11:30:42.037277 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-04 08:13:00 obsr363953 S23240797 Traveling P22 EBIRD 300.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304269418 2021-03-26 06:17:19.712573 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 2 PE C4 PE United States US New York US-NY Erie US-NY-029 13.0 US-NY-Tonawanda-791 Niagara St L3501923 P 43.009936 -78.907519 2015-03-20 18:43:00 obsr2189267 S22440365 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311251608 2021-11-09 21:43:58.300436 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 3 United States US New York US-NY Ulster US-NY-111 13.0 Black Creek Preserve L2086582 H 41.8236532 -73.9574718 2015-04-19 11:00:00 obsr2700041 S22944880 Traveling P22 EBIRD 150.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315013995 2021-04-01 11:30:42.037277 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-02 08:00:00 obsr1220115 S23183230 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311984845 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 15:45:00 obsr2404047 S22992643 Traveling P22 EBIRD 180.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321897776 2018-10-19 22:35:32 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY Erie US-NY-029 13.0 Ridge Lea Retention Pond L2867135 H 43.0005671 -78.8142121 2015-05-22 08:25:00 obsr2597186 S23574062 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS470283223 2021-12-08 07:58:41.562209 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-01 07:30:00 obsr1843598 S34783332 Traveling P22 EBIRD 120.0 3.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302164641 2018-08-04 16:59:13 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Suffolk US-NY-103 30.0 Philips Creek/Alcott Pond L1056612 P 40.8362815 -72.5884724 2015-03-10 08:50:00 obsr717785 S22268646 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319716732 2021-04-01 12:29:11.66536 6194 species avibase-B70B5840 Thick-billed Murre Uria lomvia 1 United States US New York US-NY Delaware US-NY-025 US-NY_2792 28.0 Lordville Bridge L3643812 P 41.8680802 -75.2137998 2015-05-12 09:30:00 obsr1828873 S23447842 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290449746 2021-04-01 12:35:52.669792 634 species avibase-F3D74914 King Eider Somateria spectabilis X United States US New York US-NY Onondaga US-NY-067 13.0 Baldwinsville Towns: VanBuren+Lysander L1862452 P 43.1391142 -76.3621294 2015-01-10 09:00:00 obsr1947877 S21300439 Traveling P22 EBIRD 75.0 48.28 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312130852 2021-04-01 11:15:31.646886 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 15 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-22 10:44:00 obsr1601967 S23002105 Traveling P22 EBIRD 257.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297170800 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-15 obsr2277801 S21864196 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309528145 2019-09-10 13:56:02 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-04-11 15:28:00 obsr2154746 S22828332 Stationary P21 EBIRD 25.0 72.0 1 G1216852 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317015338 2021-03-26 07:56:20.588749 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-07 15:30:00 obsr2823378 S23295890 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309173131 2021-04-01 11:30:42.037277 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L2020281 P 40.783661 -73.963995 2015-04-11 12:15:00 obsr2436774 S22805670 Traveling P22 EBIRD 255.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302050993 2015-03-09 17:37:18 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Powerline Cut L1477502 H 42.4801543 -76.4473029 2015-03-09 17:35:00 obsr1696616 S22260235 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310324542 2021-03-19 16:08:39.161312 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-04-15 17:43:00 obsr916033 S22884333 Traveling P22 EBIRD 161.0 5.633 2.0 1 G1221320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306603696 2021-04-01 11:54:40.172593 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-03-30 09:00:00 obsr666331 S22618034 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317040521 2015-05-07 22:44:50 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-05-07 obsr1395007 S23297401 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313743188 2021-03-23 17:00:13.087107 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 6 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-28 08:20:00 obsr140280 S23106153 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319759465 2018-08-04 17:27:16 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Dryden-307 Willow Crossing L3644284 P 42.447023 -76.253896 2015-05-15 06:39:00 obsr1042912 S23450614 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314120694 2015-12-22 16:52:26 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Warren US-NY-113 14.0 Up Yonda Farm EEC L3469115 H 43.5761802 -73.6543977 2015-04-18 07:00:00 obsr2019190 S23129705 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289277190 2021-04-01 11:30:42.037277 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-05 08:54:00 obsr2184966 S21206307 Traveling P22 EBIRD 170.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314539945 2015-05-01 07:27:43 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 14 United States US New York US-NY Tompkins US-NY-109 28.0 ***Fitzpatrick home L124872 P 42.42879 -76.395065 2015-04-30 06:40:00 obsr2124298 S23155944 Traveling P22 EBIRD 50.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301826085 2021-12-10 08:21:29.396662 447 species avibase-C235A4D7 Gadwall Mareca strepera 4 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-08 14:15:00 obsr2635084 S22243485 Traveling P22 EBIRD 105.0 4.828 2.0 1 G1170993 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295395737 2021-03-19 16:12:42.877422 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 5 United States US New York US-NY Columbia US-NY-021 13.0 Hollow Road L3344383 P 42.4188166 -73.7507486 2015-02-07 11:00:00 obsr349211 S21713691 Traveling P22 EBIRD 30.0 6.437 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306157573 2018-12-23 11:47:48 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-03-29 15:45:00 obsr302343 S22583275 Traveling P22 EBIRD 40.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318848559 2021-03-30 19:13:38.458673 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-11 09:32:00 obsr528918 S23397858 Traveling P22 EBIRD 323.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308199026 2017-08-16 16:59:58 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-04-06 11:15:00 obsr2597186 S22734294 Stationary P21 EBIRD 40.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322866098 2021-04-01 11:15:31.646886 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach, Brooklyn L3638546 P 40.5830455 -73.9175284 2015-05-25 10:50:00 obsr827632 S23631286 Traveling P22 EBIRD 140.0 3.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294349918 2021-03-23 16:39:03.255227 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 350 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-02-01 10:58:00 obsr1958124 S21630048 Traveling P22 EBIRD 27.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319667248 2021-03-26 06:39:43.334073 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-14 08:50:00 obsr1706920 S23445038 Traveling P22 EBIRD 75.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301439661 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Monroe US-NY-055 13.0 Lehigh Valley Trail at E Henrietta Rd. L3461801 H 43.0258149 -77.630397 2015-03-07 14:50:00 obsr934639 S22212939 Traveling P22 EBIRD 30.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290357713 2021-03-23 16:39:03.255227 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-01-11 08:29:00 obsr1958124 S21293021 Traveling P22 EBIRD 18.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313758160 2015-04-28 11:03:58 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Livingston US-NY-051 13.0 Cleary Rd L1537836 P 42.7915945 -77.6302077 2015-04-28 09:05:00 obsr72341 S23107125 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312947401 2021-11-09 21:19:57.847424 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Ulster US-NY-111 28.0 Tricor Ave L1153679 P 41.7441655 -74.0853979 2015-04-22 10:15:00 obsr2434888 S23056833 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295384912 2021-04-28 05:26:15.958627 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-02-07 07:00:00 obsr2233143 S21712875 Area P23 EBIRD 420.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309884585 2021-11-09 22:37:59.221772 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY Sullivan US-NY-105 28.0 Deli Fields, Westbrookville L1743884 P 41.5040421 -74.5554535 2015-04-13 09:03:00 obsr1788273 S22853836 Traveling P22 EBIRD 36.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS398702717 2021-11-15 03:06:58.889978 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 06:39:00 obsr1552744 S29427802 Traveling P22 EBIRD 294.0 5.15 3.0 1 G1735849 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316252710 2021-04-01 10:51:06.899622 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-05-02 08:00:00 obsr1616994 S23252700 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291080501 2021-03-26 07:52:59.845315 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-09 08:03:00 obsr316199 S21351257 Area P23 EBIRD 80.0 2.59 2.0 1 G1109829 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1191020595 2021-06-27 19:33:22.949458 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-04-25 09:15:00 obsr2155450 S90897075 Traveling P22 EBIRD 45.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311333242 2019-10-21 19:06:00 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-19 14:00:00 obsr631292 S22949804 Incidental P20 EBIRD 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309729083 2021-11-09 19:55:29.587179 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Orange US-NY-071 28.0 Six and a Half Station Rd. Sanctuary L306143 H 41.4025242 -74.3499176 2015-04-13 09:32:00 obsr1568163 S22842414 Traveling P22 EBIRD 157.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308096708 2021-04-01 11:15:31.646886 7200 species avibase-49D9148A Great Egret Ardea alba 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-06 11:45:00 obsr263005 S22726228 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322763776 2021-03-19 16:19:20.977326 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 3 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L143485 P 42.8484688 -78.8569107 2015-05-24 08:50:00 obsr2155111 S23625086 Traveling P22 EBIRD 3.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319755337 2018-08-06 22:29:33 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Delaware US-NY-025 28.0 Treadwell L676581 P 42.3407827 -75.0592804 2015-05-10 08:00:00 obsr2200827 S23450295 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290554012 2021-03-19 16:29:59.503892 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 6 United States US New York US-NY Jefferson US-NY-045 13.0 Kelsey Creek, Watertown L273304 H 43.9906455 -75.9170911 2015-01-10 10:00:00 obsr585290 S21308756 Traveling P22 EBIRD 300.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296911341 2015-02-14 20:34:33 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 18 United States US New York US-NY Oswego US-NY-075 13.0 Baum Road yard L266171 P 43.3412537 -76.1184204 2015-02-14 09:00:00 obsr979921 S21841101 Stationary P21 EBIRD 450.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301498116 2021-12-10 08:21:29.396662 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-07 15:30:00 obsr2211514 S22217209 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306730175 2021-11-09 18:42:18.371962 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Dutchess US-NY-027 US-NY_2790 28.0 Dennings Point L3138079 P 41.4889631 -73.9967823 2015-04-01 11:35:00 obsr2770696 S22627489 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307672816 2015-04-05 11:30:33 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-05 08:09:00 obsr1476346 S22695734 Traveling P22 EBIRD 120.0 1.609 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313399933 2021-04-01 10:58:47.067498 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Genesee US-NY-037 13.0 BOS section 10b L1304590 P 43.0252315 -78.3232498 2015-04-12 08:30:00 obsr1296884 S23084681 Area P23 EBIRD 420.0 3500.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292013339 2018-08-04 16:53:57 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 35 United States US New York US-NY Suffolk US-NY-103 30.0 Deep Hole Creek L1116987 P 40.9916415 -72.5143361 2015-01-18 12:30:00 obsr2528068 S21425228 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291305877 2019-01-21 12:23:38 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 40 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-01-16 09:35:00 obsr2914424 S21370022 Traveling P22 EBIRD 95.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294171222 2021-04-01 12:32:15.282601 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 11 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--median strip L3310253 H 40.5875594 -73.5588285 2015-01-31 10:28:00 obsr1982614 S21615924 Traveling P22 EBIRD 240.0 2.993 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305130121 2021-03-26 07:30:35.289997 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-03-24 09:00:00 obsr2137468 S22505216 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313173508 2021-04-01 11:24:19.637193 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Monroe US-NY-055 13.0 Lucien Morin Park L1745769 H 43.1666318 -77.5274502 2015-04-26 13:54:00 obsr1958774 S23070385 Traveling P22 EBIRD 40.0 0.805 2.0 1 G1238810 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311834431 2021-03-30 19:29:33.633096 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-04-21 09:00:00 obsr706483 S22982946 Traveling P22 EBIRD 120.0 2.414 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315849262 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-05-04 17:05:00 obsr431494 S23228617 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307172368 2021-03-30 19:07:52.958398 483 species avibase-85625D75 Mallard Anas platyrhynchos 80 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-03 11:27:00 obsr2152799 S22660363 Traveling P22 EBIRD 152.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312299881 2021-04-01 11:54:40.172593 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) N X United States US New York US-NY Richmond US-NY-085 30.0 Willowbrook Park L519640 H 40.6014415 -74.1580582 2015-04-23 11:40:00 obsr1620361 S23013509 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294998898 2015-02-05 07:57:48 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-02-05 07:41:00 obsr2211210 S21682496 Traveling P22 EBIRD 16.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321442613 2021-04-01 10:45:00.916278 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-20 08:31:00 obsr128156 S23545886 Rusty Blackbird Spring Migration Blitz P41 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289126066 2019-07-23 17:26:42 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Suffolk US-NY-103 New London to Orient Point Ferry (NY water) L1373227 P 41.2342763 -72.171365 2015-01-03 08:43:00 obsr2499465 S21194891 Traveling P22 EBIRD 123.0 22.531 9.0 1 G1095674 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307159252 2015-04-03 13:06:34 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6641-6669 Hylan Blvd L3534320 P 40.508449 -74.225343 2015-04-03 09:03:00 obsr155915 S22659465 Stationary P21 EBIRD 5.0 2.0 1 G1202541 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319420301 2021-04-01 11:15:31.646886 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L3640607 P 40.6155949 -73.8359737 2015-05-12 07:51:00 obsr2363365 S23430781 Traveling P22 EBIRD 190.0 4.023 4.0 1 G1269800 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315358341 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus 12 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 06:27:00 obsr41879 S23202004 Traveling P22 EBIRD 320.0 8.047 4.0 1 G1249270 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116133 2021-04-01 10:49:39.496318 337 species avibase-694C127A Mute Swan Cygnus olor 390 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.4926529 2015-01-04 10:05:00 obsr1167884 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305854343 2021-03-26 06:39:43.334073 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-03-28 15:00:00 obsr93451 S22560719 Traveling P22 EBIRD 120.0 5.633 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316198520 2021-04-01 12:32:15.282601 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Lido Beach Passive Nature Area L723695 H 40.5923663 -73.5957384 2015-05-05 14:00:00 obsr547602 S23248700 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314225836 2021-03-30 19:29:33.633096 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 1 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-24 16:18:00 obsr2939887 S23136246 Traveling P22 EBIRD 76.0 1.8 3.0 1 G1243634 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307228304 2021-03-31 04:06:57.023771 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-03 15:03:00 obsr1721609 S22664327 Traveling P22 EBIRD 23.0 0.805 3.0 1 G1203141 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309339601 2022-02-18 10:47:29.953615 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 2 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-12 07:55:00 obsr1062070 S22816511 Stationary P21 EBIRD 159.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307286090 2021-03-23 16:30:20.514143 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-03 07:30:00 obsr2744341 S22668475 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299514414 2021-03-26 07:20:31.408164 6339 species avibase-8535345B Herring Gull Larus argentatus N 7 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-02-21 06:30:00 obsr1592950 S22066058 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314148850 2017-02-03 16:58:56 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-04-27 10:30:00 obsr2475075 S23131362 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313611452 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-27 15:30:00 obsr2793388 S23097658 Traveling P22 EBIRD 180.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS331317071 2022-02-17 14:32:23.002448 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-09 08:30:00 obsr117100 S24231682 Traveling P22 EBIRD 90.0 1.609 3.0 1 G1260060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319929729 2021-11-15 03:06:58.889978 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 15:00:00 obsr1135516 S23459736 Traveling P22 EBIRD 165.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309428991 2021-03-26 06:29:56.44369 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Monroe US-NY-055 13.0 Private property L3358535 P 43.2067086 -77.8944933 2015-04-12 10:14:00 obsr1713903 S22821793 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291322413 2021-11-09 20:12:16.773384 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 3 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-01-16 15:19:00 obsr1912104 S21371265 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309238056 2021-11-09 21:50:48.44865 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-11 14:00:00 obsr1588136 S22810024 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324289619 2021-05-11 06:09:42.824668 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-29 09:30:00 obsr2883698 S23726555 Traveling P22 EBIRD 55.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309484752 2021-03-23 16:39:03.255227 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-12 08:20:00 obsr41879 S22825296 Stationary P21 EBIRD 20.0 6.0 1 G1216705 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308821034 2021-03-26 07:30:35.289997 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-10 09:09:00 obsr1655171 S22781725 Traveling P22 EBIRD 22.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306481119 2021-04-01 12:14:19.266649 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 8 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-03-30 15:00:00 obsr105122 S22608374 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308083449 2019-04-19 13:17:53 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-02 13:00:00 obsr2371917 S22643501 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303208290 2021-04-01 12:26:53.827486 32901 species avibase-1A0096F2 Mourning Warbler Geothlypis philadelphia N 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-03-15 07:39:00 obsr2321296 S22356556 Stationary P21 EBIRD 62.0 2.0 1 G1180937 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315323606 2021-03-30 19:13:38.458673 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-05-03 13:00:00 obsr2130551 S23200175 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316924256 2021-03-23 17:26:08.495143 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-05 09:00:00 obsr1494607 S23290657 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314455568 2021-11-09 22:20:08.595421 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 3 United States US New York US-NY Ulster US-NY-111 13.0 Home L764019 P 41.8520297 -74.0052366 2015-04-30 17:00:00 obsr610423 S23150475 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293813369 2021-03-24 21:09:00.82373 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 7 United States US New York US-NY Rensselaer US-NY-083 13.0 West Sand Lake, NY 1 L1766939 P 42.6226389 -73.6175931 2015-01-28 09:30:00 obsr2186523 S21587604 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313344788 2021-04-01 11:30:42.037277 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-26 09:15:00 obsr1220115 S23080771 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296066194 2021-11-09 21:57:08.566201 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 Unknown Sex, Adult (1) United States US New York US-NY Ulster US-NY-111 28.0 Old Fort Road L3352847 P 41.6319316 -74.2294532 2015-02-10 09:15:00 obsr1628992 S21766438 Traveling P22 EBIRD 480.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316546281 2021-11-15 03:06:58.889978 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-06 10:25:00 obsr2310825 S23269279 Traveling P22 EBIRD 210.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313634871 2021-04-01 11:30:42.037277 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-27 17:20:00 obsr1135516 S23099160 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298453678 2018-08-04 16:57:24 7200 species avibase-49D9148A Great Egret Ardea alba 5 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-02-19 06:40:00 obsr2716320 S21978668 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308013981 2015-04-06 13:40:29 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Essex US-NY-031 13.0 102 Racetrack Rd, Ticonderoga, NY L2849942 P 43.8534847 -73.441565 2015-04-06 11:55:00 obsr2693145 S22720116 Stationary P21 EBIRD 104.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292162798 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-20 15:25:00 obsr934639 S21437009 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305224731 2021-03-24 20:03:01.953443 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 10 United States US New York US-NY Niagara US-NY-063 13.0 Wilson-Tuscarora SP L210266 H 43.3072398 -78.8548868 2015-03-25 09:34:00 obsr2588479 S22512464 Traveling P22 EBIRD 126.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305594904 2021-03-31 04:03:32.881251 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 34 United States US New York US-NY Richmond US-NY-085 30.0 Freshkills Park L910281 H 40.5775746 -74.1861379 2015-03-27 10:28:00 obsr155915 S22541356 Traveling P22 EBIRD 140.0 8.047 2.0 1 G2151601 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307283454 2021-03-26 07:07:10.758746 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-03 16:55:00 obsr1958124 S22668266 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314275368 2018-08-04 17:13:06 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Iroquois NWR--Swallow Hollow Trail L771567 H 43.1254425 -78.3256102 2015-04-30 07:47:00 obsr2588479 S23139501 Traveling P22 EBIRD 52.0 2.092 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320180588 2021-05-22 06:13:34.379614 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 07:15:00 obsr1407710 S23473221 Traveling P22 EBIRD 360.0 4.828 8.0 1 G1273230 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295811981 2021-11-09 21:57:08.435863 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 Unknown Sex, Adult (1) United States US New York US-NY Ulster US-NY-111 28.0 Wallkill--NY300 and NY208 Intersection L3349567 P 41.6044685 -74.1653538 2015-02-09 14:39:00 obsr1895272 S21745955 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309130587 2021-11-09 21:57:40.409598 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla X United States US New York US-NY Ulster US-NY-111 13.0 The Vly L3554956 P 42.13442 -73.94398 2015-04-11 11:00:00 obsr2862523 S22802288 Traveling P22 EBIRD 90.0 3.219 10.0 1 G1214308 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316910097 2015-10-05 23:48:06 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Madison US-NY-053 28.0 Link Trail Beaver Pond L2841337 P 42.8516467 -75.8089256 2015-05-07 10:00:00 obsr2843748 S23289746 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311522648 2021-03-30 19:29:33.633096 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 10 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-19 08:35:00 obsr564905 S22961548 Traveling P22 EBIRD 70.0 1.609 2.0 1 G1228234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311904065 2021-03-24 20:33:47.533911 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Lake van Leer (private) L524497 P 42.5196241 -76.6454744 2015-04-21 15:45:00 obsr1008519 S22987250 Stationary P21 EBIRD 126.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301843447 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus N X United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-03-08 12:45:00 obsr1659461 S22244733 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294367980 2021-11-09 18:43:48.476546 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Farmhouse Fields L3331925 P 42.0480817 -73.8909745 2015-02-01 12:30:00 obsr2228949 S21631339 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309655377 2018-08-04 17:08:28 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Road - Triton Lane Vicinity L750230 P 40.824064 -72.5496233 2015-04-11 09:30:00 obsr2934754 S22836765 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321405099 2021-03-23 17:22:05.708166 5948 species avibase-A47B0BD4 Least Sandpiper Calidris minutilla 1 United States US New York US-NY Herkimer US-NY-043 13.0 Tricot Trail L2853643 P 43.0934052 -74.7768438 2015-05-17 07:00:00 obsr2694889 S23543391 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302016973 2021-04-01 11:47:43.260314 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-03-09 13:58:00 obsr2945658 S22257487 Traveling P22 EBIRD 46.0 0.483 2.0 1 G1177756 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316496361 2018-08-04 17:14:56 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College L1485004 H 44.4375537 -74.2530447 2015-05-06 05:45:00 obsr1786066 S23266119 Stationary P21 EBIRD 270.0 5.0 1 G1254570 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312693836 2021-03-26 07:30:35.289997 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-04-24 08:30:00 obsr2137468 S23041471 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308792473 2018-08-04 17:08:10 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-09 08:00:00 obsr1160328 S22779578 Area P23 EBIRD 120.0 30.3514 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295755490 2022-02-18 10:47:29.953615 6339 species avibase-8535345B Herring Gull Larus argentatus 5 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-02-09 07:14:00 obsr1062070 S21741719 Stationary P21 EBIRD 115.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312507164 2021-12-08 07:58:41.562209 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-23 15:00:00 obsr1652207 S23027719 Traveling P22 EBIRD 120.0 4.828 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307148964 2021-03-30 19:03:54.667077 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-04-03 11:58:00 obsr2497657 S22658752 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305740381 2021-03-26 07:30:35.289997 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom36 L3513978 H 42.4167743 -76.3513288 2015-03-28 08:26:00 obsr1318356 S22552494 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292885843 2015-05-07 17:06:12 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm creek trail transect L2272449 P 42.3462003 -76.3006094 2015-01-24 09:24:00 obsr455249 S21514234 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302014706 2015-03-09 14:36:06 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-03-02 13:00:00 obsr2233270 S22257296 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305475661 2021-03-24 05:37:45.927792 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-03-26 16:15:00 obsr319738 S22532121 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298041521 2021-12-10 08:21:29.396662 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 5 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-16 08:30:00 obsr1198912 S21942803 Traveling P22 EBIRD 120.0 3.621 12.0 1 G1149054 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295405719 2021-03-23 17:00:13.087107 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-02-07 14:05:00 obsr2211210 S21714476 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315217046 2021-11-09 18:29:40.19003 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 1 United States US New York US-NY Dutchess US-NY-027 13.0 Barrytown Rd, Red Hook L2139298 P 42.0010507 -73.9219809 2015-05-01 07:55:00 obsr2228949 S23194814 Traveling P22 EBIRD 115.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313913148 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-28 07:44:00 obsr1152226 S23117041 Rusty Blackbird Spring Migration Blitz P41 EBIRD 240.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312292850 2021-03-23 17:40:24.452972 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 H C2 H Unknown Sex and Age (1) United States US New York US-NY Warren US-NY-113 14.0 6 Vanare Lane lake luzerne ny L1615171 P 43.3733902 -73.7825699 2015-04-21 08:45:00 obsr2685359 S23013042 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317137072 2021-11-09 18:24:59.618229 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Dutchess US-NY-027 13.0 Clinton Nature Trail L1639228 H 41.8844174 -73.8038808 2015-04-18 10:00:00 obsr1339050 S23302760 Traveling P22 EBIRD 120.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322471545 2021-03-19 16:44:35.607263 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Monroe US-NY-055 13.0 Cook Rd & Redman Rd L630568 H 43.3592028 -77.965765 2015-05-24 10:49:00 obsr1696616 S23607994 Traveling P22 EBIRD 11.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314150343 2015-04-29 18:46:42 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 6 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Deep Muck and Mitigation Marsh L1280474 H 43.0737585 -76.7234516 2015-04-28 09:15:00 obsr534615 S23131449 Stationary P21 EBIRD 23.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291190070 2021-03-26 07:52:40.224846 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 12 United States US New York US-NY Fulton US-NY-035 13.0 Youker's Bush Road L660482 P 43.0341674 -74.6843089 2015-01-15 15:30:00 obsr1000124 S21360072 Traveling P22 EBIRD 25.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308017446 2015-04-06 13:50:40 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Suffolk US-NY-103 30.0 Bridgehampton L287750 T 40.9379 -72.30093 2015-04-04 14:06:00 obsr1987335 S22720339 Traveling P22 EBIRD 70.0 1.127 4.0 1 G1208142 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310416023 2018-08-04 17:09:23 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L635183 H 40.8348529 -72.6153374 2015-04-16 06:45:00 obsr1864342 S22890666 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297776629 2018-08-04 16:56:40 242 species avibase-D3A260BC Snow Goose Anser caerulescens 1 United States US New York US-NY Suffolk US-NY-103 30.0 Riverhead Sod Farms--Doctors Path L588228 H 40.9613311 -72.6676512 2015-02-16 12:45:00 obsr271871 S21919435 Traveling P22 EBIRD 120.0 16.093 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312378444 2021-03-30 19:07:52.958398 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 16:30:00 obsr2750470 S23019019 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309952314 2021-03-26 06:07:45.516082 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 4 S7 C3 S7 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-14 08:30:00 obsr128156 S22858692 Rusty Blackbird Spring Migration Blitz P41 EBIRD 40.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300159314 2021-04-01 11:49:53.573686 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 15 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-02-28 10:15:00 obsr350767 S22116672 Traveling P22 EBIRD 144.0 3.219 3.0 1 G1162653 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306997235 2021-03-30 19:07:52.958398 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-02 08:00:00 obsr2363365 S22647527 Traveling P22 EBIRD 250.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294746642 2021-11-09 22:37:20.108383 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Sullivan US-NY-105 28.0 Bashakill L1566572 P 41.5241759 -74.5163684 2015-02-03 10:30:00 obsr2219590 S21661439 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302510427 2021-04-01 11:15:31.646886 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-11 16:00:00 obsr644027 S22302394 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305782317 2021-04-01 12:18:57.910168 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Nate's Patch--Bluegrass to Hanshaw to Freese L1006570 P 42.4655757 -76.4526987 2015-03-28 09:44:00 obsr1062070 S22555530 Traveling P22 EBIRD 187.0 6.276 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301677137 2015-03-08 14:36:03 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-03-08 11:15:00 obsr1044068 S22230604 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306690588 2021-03-30 19:19:45.072558 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Oneida US-NY-065 13.0 Lakeport L1552187 P 43.1500425 -75.8644765 2015-04-01 08:00:00 obsr545221 S22624586 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295481057 2021-03-23 16:52:36.900075 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 7 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Camp Hero SP L786133 H 41.0617075 -71.877864 2015-02-07 16:00:00 obsr2818161 S21720611 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312032007 2018-08-04 17:11:30 10654 species avibase-448D91B7 Red-headed Woodpecker Melanerpes erythrocephalus 30 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-04-21 15:30:00 obsr783450 S22995868 Traveling P22 EBIRD 60.0 0.805 21.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321889777 2018-08-06 22:30:47 11494 species avibase-20C2214E American Kestrel Falco sparverius 3 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-22 06:20:00 obsr1830659 S23573560 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304737502 2021-03-19 15:59:05.496822 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Allegany US-NY-003 28.0 Chenunda Drive L1473325 P 42.0884737 -77.9247651 2015-03-22 obsr1310178 S22474949 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317349630 2021-08-17 17:04:49.632547 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-08 20:00:00 obsr1243175 S23314372 Traveling P22 EBIRD 60.0 0.644 2.0 1 G1258210 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315865180 2017-09-06 22:07:02 622 species avibase-50566E50 Lesser Scaup Aythya affinis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Little Sodus Bay, south L1338234 H 43.3147982 -76.7143965 2015-05-04 07:40:00 obsr2197275 S23229545 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312765644 2015-04-25 11:25:46 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 4 United States US New York US-NY Wayne US-NY-117 13.0 Brown Rd., Wolcott L1232934 H 43.2927135 -76.8063466 2015-04-25 09:23:00 obsr1721609 S23046163 Traveling P22 EBIRD 121.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314560936 2018-08-04 17:13:15 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-01 07:50:00 obsr1830659 S23157249 Traveling P22 EBIRD 92.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296737401 2018-08-04 16:56:29 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 BJs Wholesale Club Waterfront (Brooklyn) L3311662 H 40.5917716 -73.9990756 2015-02-14 12:01:00 obsr1189028 S21825788 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306134547 2021-04-01 11:49:53.573686 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-29 16:25:00 obsr1982614 S22581523 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324410152 2018-08-06 22:31:25 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP L246469 H 42.055 -78.7661111 2015-05-30 07:30:00 obsr1463039 S23734485 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308517840 2015-04-08 17:47:22 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Perry Road L3549028 P 41.0908747 -73.8233078 2015-04-08 14:20:00 obsr1742994 S22758497 Traveling P22 EBIRD 30.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290136876 2021-03-26 07:07:10.758746 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Richmond US-NY-085 30.0 Stately Richman Manor L2489256 P 40.6333994 -74.104638 2015-01-09 08:30:00 obsr2904420 S21274641 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298970046 2021-03-23 16:39:03.255227 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-02-22 13:02:00 obsr1958124 S22021842 Stationary P21 EBIRD 20.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308702454 2021-04-01 12:31:09.823741 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Inlet WMA--south section L674323 H 42.6874829 -77.7060413 2015-04-09 16:25:00 obsr1060479 S22772790 Traveling P22 EBIRD 17.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291537952 2015-03-10 04:48:56 8829 species avibase-8F123A11 Short-eared Owl Asio flammeus 1 United States US New York US-NY Saratoga US-NY-091 13.0 Flight Lock Rd., Waterford boat launch L3257879 H 42.8074604 -73.7144208 2015-01-17 14:20:00 obsr777630 S21388452 Stationary P21 EBIRD 15.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308238805 2021-03-19 16:02:45.308962 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-04-07 10:32:00 obsr800690 S22737474 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294599821 2022-02-17 14:32:23.002448 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 40 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-21 10:30:00 obsr1152226 S21649809 Traveling P22 EBIRD 120.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289182152 2021-03-26 07:56:20.588749 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 4 United States US New York US-NY Nassau US-NY-059 30.0 Tanglewood Preserve L2804738 H 40.6657397 -73.6591401 2015-01-03 12:30:00 obsr599682 S21199089 Traveling P22 EBIRD 30.0 0.805 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306827865 2021-03-26 08:14:57.071052 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Westchester US-NY-119 30.0 Backyard L1243032 P 41.1702553 -73.8428879 2015-04-01 07:15:00 obsr1540211 S22634555 Traveling P22 EBIRD 5.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290415742 2021-03-23 16:52:36.900075 28886 species avibase-AEF821EC Bohemian Waxwing Bombycilla garrulus 2 United States US New York US-NY Suffolk US-NY-103 30.0 East Lake Drive, Montauk, NY L3284927 P 41.0582677 -71.9055176 2015-01-10 11:25:00 obsr1848026 S21297712 Traveling P22 EBIRD 22.0 3.219 8.0 1 G1105258 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323253498 2021-03-26 07:52:59.845315 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-19 07:27:00 obsr1000124 S23656330 Area P23 EBIRD 85.0 2.59 2.0 1 G1292177 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321624009 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 130 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-19 12:27:00 obsr2259263 S23556862 Traveling P22 EBIRD 72.0 0.805 2.0 1 G1281356 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308149782 2021-03-26 07:56:20.588749 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Nassau US-NY-059 30.0 N 2nd St. L2585098 P 40.738664 -73.6975363 2015-04-06 09:00:00 obsr143739 S22730110 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310388307 2021-03-23 17:00:13.087107 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 2 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--F.R. Newman Arboretum L799199 H 42.4520722 -76.4572692 2015-04-15 17:35:00 obsr241086 S22888848 Traveling P22 EBIRD 30.0 0.402 2.0 1 G1221703 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295529347 2021-03-31 03:59:50.422612 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-02-08 09:39:00 obsr2871406 S21724507 Traveling P22 EBIRD 3.0 1.609 3.0 1 G1138936 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294322504 2021-03-30 19:13:38.458673 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 25 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-02-01 09:50:00 obsr2595828 S21627854 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294671692 2021-03-26 08:14:57.071052 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-02-02 08:00:00 obsr258431 S21655360 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289564262 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa (general) L2488723 P 40.6803777 -73.4734726 2015-01-03 07:34:00 obsr1000553 S21229171 Incidental P20 EBIRD 3.0 1 G1094197 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298328223 2021-03-22 08:58:29.008072 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 5 United States US New York US-NY New York US-NY-061 Randalls Island--Urban Farm and Scylla Playground L2370275 H 40.7840903 -73.9259435 2015-02-14 12:30:00 obsr1548221 S21967194 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314444612 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:30:00 obsr2078092 S23149665 Traveling P22 EBIRD 390.0 4.828 30.0 1 G1244636 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307723843 2021-03-26 06:17:19.712573 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 3 United States US New York US-NY Erie US-NY-029 13.0 Allentown L1280687 P 42.8951414 -78.8788801 2015-04-03 09:10:00 obsr2597186 S22699072 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312443792 2021-03-23 17:15:00.080143 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Rd. L508804 H 43.0489452 -76.7335796 2015-04-22 15:24:00 obsr528918 S23023458 Traveling P22 EBIRD 45.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320906707 2021-04-01 11:15:31.646886 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Kings US-NY-047 Owls Head Park L304833 H 40.6403687 -74.0322153 2015-05-18 10:00:00 obsr2078092 S23512659 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305867147 2021-04-01 11:30:42.037277 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-03-28 13:00:00 obsr2310825 S22561678 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288980702 2022-02-17 14:32:23.002448 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-04 07:41:00 obsr2404047 S21183354 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314268304 2015-04-30 08:10:32 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Tompkins US-NY-109 28.0 Caroline Elementary L3565901 P 42.3930529 -76.3717067 2015-04-29 08:05:00 obsr1550810 S23139034 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307807879 2018-08-04 17:05:29 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 6 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-04-04 17:30:00 obsr114791 S22705281 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305499881 2018-08-04 17:03:40 7429 species avibase-1327AC55 Osprey Pandion haliaetus 3 United States US New York US-NY Westchester US-NY-119 28.0 Annsville Creek L450455 H 41.2966388 -73.9341903 2015-03-26 16:45:00 obsr237150 S22533960 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324168714 2018-08-06 22:31:32 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-31 08:27:00 obsr1472872 S23718805 Traveling P22 EBIRD 73.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312900933 2021-04-01 11:15:31.646886 406 species avibase-27B2749A Wood Duck Aix sponsa X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-25 15:15:00 obsr1659461 S23054001 Traveling P22 EBIRD 45.0 1.609 2.0 1 G2865415 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299618114 2018-08-04 16:58:15 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 10 United States US New York US-NY Herkimer US-NY-043 13.0 Dyke Road - Mohawk River and Erie Canal L866248 P 43.0921224 -75.1569235 2015-02-25 15:00:00 obsr1000124 S22074187 Stationary P21 EBIRD 24.0 4.0 1 G1159887 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308818080 2021-03-26 07:07:10.758746 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-04-10 08:58:00 obsr1958124 S22781501 Traveling P22 EBIRD 38.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288793706 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 17 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-01-03 07:36:00 obsr2595828 S21166586 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320622926 2022-01-20 09:38:40.245267 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-17 06:15:00 obsr2950436 S23496263 Traveling P22 EBIRD 373.0 4.023 20.0 1 G1275330 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294864843 2022-02-17 14:32:23.002448 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas N 11 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-04 09:15:00 obsr1605975 S21671542 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315471889 2021-03-19 16:44:35.607263 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Monroe US-NY-055 13.0 43.3429x-77.9587 - Mar 31, 2015, 8:34 AM L3527596 P 43.342885 -77.9587 2015-04-02 19:27:00 obsr334398 S23208077 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS328111776 2018-08-06 22:30:14 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 14:45:00 obsr2182516 S23996462 Traveling P22 EBIRD 150.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319557281 2021-04-01 12:32:15.282601 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 3 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-14 08:00:00 obsr1693806 S23438898 Traveling P22 EBIRD 75.0 3.219 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308416001 2021-03-26 07:07:10.758746 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Richmond US-NY-085 Lemon Creek Park L508340 H 40.5121298 -74.198581 2015-04-08 08:01:00 obsr1958124 S22750487 Traveling P22 EBIRD 5.0 0.483 2.0 1 G1211606 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305625915 2021-03-19 16:02:45.308962 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 10 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-03-27 15:23:00 obsr800690 S22543657 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288141461 2018-08-04 16:52:19 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Richmond US-NY-085 Joline Ave. Beach L1340805 H 40.5011224 -74.2331594 2015-01-01 11:13:00 obsr1958124 S21112597 Stationary P21 EBIRD 7.0 2.0 1 G1088907 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293093820 2021-11-15 03:06:58.889978 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-23 08:26:00 obsr1548221 S21530598 Traveling P22 EBIRD 54.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320217711 2019-04-02 20:15:47 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-16 08:00:00 obsr879105 S23475088 Traveling P22 EBIRD 60.0 0.402 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871040 2021-03-26 07:56:20.588749 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-10 09:00:00 obsr2218212 S21672026 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303060451 2021-03-30 19:03:28.117389 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 200 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-03-14 13:53:00 obsr256142 S22345389 Stationary P21 EBIRD 30.0 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306937246 2021-03-24 20:11:57.676649 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-02 10:00:00 obsr2172593 S22642677 Stationary P21 EBIRD 166.0 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318022622 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-10 07:50:00 obsr195244 S23352586 Traveling P22 EBIRD 104.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292970159 2022-02-08 17:27:20.632176 483 species avibase-85625D75 Mallard Anas platyrhynchos 200 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-18 17:11:00 obsr1318356 S21520940 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290529917 2021-04-01 12:31:09.823741 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 Letchworth SP--Parade Grounds L810183 H 42.5848755 -78.0338287 2015-01-11 12:00:00 obsr2149313 S21306985 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314259465 2021-11-09 18:31:39.191483 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Dutchess US-NY-027 28.0 Depot Hill L224581 H 41.5702552 -73.6727579 2015-04-30 06:10:00 obsr1732267 S23138444 Traveling P22 EBIRD 32.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305989057 2021-03-23 16:21:52.613913 242 species avibase-D3A260BC Snow Goose Anser caerulescens 2 United States US New York US-NY Ontario US-NY-069 13.0 US-NY-ONT Phelps--CR 25, Outlet Rd. E of Smith Rd. (3276C) [Phelps_NW] L736431 P 42.9841265 -77.1159017 2015-03-29 07:40:00 obsr606693 S22570621 Traveling P22 EBIRD 25.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304192477 2021-03-26 07:56:20.588749 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-03-20 07:00:00 obsr676630 S22434279 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305119463 2021-04-01 12:18:57.910168 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-03-24 16:19:00 obsr288410 S22504351 Stationary P21 EBIRD 6.0 2.0 1 G1191543 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307925242 2021-03-24 20:33:47.533911 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-06 06:58:00 obsr455249 S22714069 Traveling P22 EBIRD 7.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300177410 2021-03-30 19:43:32.881136 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-28 15:30:00 obsr1055148 S22117950 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320701647 2021-04-01 10:44:41.995232 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Allegany US-NY-003 28.0 Hanging Bog WMA L2218335 H 42.3107156 -78.2319904 2015-05-17 14:30:00 obsr2366185 S23500540 Traveling P22 EBIRD 300.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308203739 2021-04-01 10:49:39.496318 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.7340502 -76.7060602 2015-04-05 16:54:00 obsr2760150 S22734628 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306247757 2018-08-04 17:04:45 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 2 United States US New York US-NY Onondaga US-NY-067 13.0 Conners Road at Dead Creek L2751604 P 43.126342 -76.377239 2015-03-30 08:15:00 obsr2172593 S22590071 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304831069 2015-05-07 17:00:47 592 species avibase-3072CC16 Redhead Aythya americana 3 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Cabin L327724 P 42.34994 -76.30034 2015-03-21 14:11:00 obsr455249 S22481362 Stationary P21 EBIRD 142.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304929014 2019-07-24 10:09:19 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 4 Male, Adult (2); Female, Adult (2) United States US New York US-NY Ontario US-NY-069 13.0 US-NY-ONT Canandaigua--Seager Marine (3074B) [new BBA line] L3515726 P 42.8749345 -77.2724193 2015-03-23 11:41:00 obsr606693 S22489300 Stationary P21 EBIRD 9.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307560661 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Harlem Meer L278127 H 40.7971185 -73.9523133 2015-04-04 12:18:00 obsr856524 S22688027 Traveling P22 EBIRD 16.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313768443 2021-04-01 11:24:19.637193 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N X United States US New York US-NY Monroe US-NY-055 13.0 Harwick Rd., Irondequoit (Varied Thrush 2015) L3592824 H 43.1740003 -77.5539672 2015-04-28 07:30:00 obsr2223307 S23107765 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300047387 2021-03-23 16:39:03.255227 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 4 United States US New York US-NY Richmond US-NY-085 30.0 Lemon Creek, bridge at Hylan Blvd. L916052 H 40.517649 -74.2011237 2015-02-28 09:17:00 obsr1958124 S22107257 Stationary P21 EBIRD 5.0 2.0 1 G1161953 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309338232 2021-03-26 07:16:36.956617 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-12 07:45:00 obsr1918430 S22816420 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320969993 2018-08-06 22:30:29 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-05-18 09:00:00 obsr2766625 S23516000 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300553067 2021-04-01 12:26:53.827486 616 species avibase-25C94A8F Greater Scaup Aythya marila 10 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-02 09:50:00 obsr2512689 S22145716 Stationary P21 EBIRD 48.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295643193 2016-12-28 04:22:22 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-New Haven- Kibby Rd - Home (Private) L5185742 P 43.449899 -76.30402 2015-02-08 10:20:00 obsr2945658 S21733561 Stationary P21 EBIRD 122.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298198177 2021-03-26 07:20:31.408164 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-02-05 07:15:00 obsr1592950 S21955920 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288883146 2021-11-09 00:38:34.069905 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-01-03 08:30:00 obsr1544235 S21175888 Traveling P22 EBIRD 660.0 1.609 2.0 1 G1095215 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303798157 2019-11-09 16:37:16 11494 species avibase-20C2214E American Kestrel Falco sparverius 3 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-03-17 14:00:00 obsr114791 S22403375 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306136551 2021-03-26 06:29:56.44369 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Manitou Beach, Ontario Blvd. L667384 H 43.3241521 -77.7162155 2015-03-29 10:55:00 obsr1598543 S22581684 Stationary P21 EBIRD 7.0 2.0 1 G1196953 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291442424 2021-11-09 21:36:59.310849 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY Ulster US-NY-111 13.0 rosendale, ny L1465355 P 41.8499692 -74.081765 2015-01-17 07:30:00 obsr187701 S21380801 Stationary P21 EBIRD 120.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302922294 2021-04-01 11:24:19.637193 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-13 08:15:00 obsr2223307 S22334066 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303000849 2021-04-01 11:54:40.172593 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 10 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-03-13 14:15:00 obsr1032565 S22340442 Traveling P22 EBIRD 95.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296797555 2021-11-09 22:39:47.565044 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Sullivan US-NY-105 28.0 Rondout Reservoir (Sullivan Co.) L2693079 H 41.8604243 -74.5100577 2015-02-14 09:45:00 obsr444155 S21831021 Traveling P22 EBIRD 45.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322578243 2021-03-26 06:21:54.883933 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 10:00:00 obsr1077730 S23613836 Traveling P22 EBIRD 270.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317573326 2021-03-24 19:48:44.880783 303 species avibase-B59E1863 Canada Goose Branta canadensis N 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-09 07:53:00 obsr2817239 S23328310 Traveling P22 EBIRD 102.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290907368 2017-04-17 09:29:13 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 29 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-H L3289015 P 40.16753 -73.15285 2015-01-11 15:00:00 obsr2574755 S21337240 Traveling P22 EBIRD 60.0 33.523 44.0 1 G1108341 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295482270 2015-02-07 23:35:29 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain State Park Birding Trail West Woods L2372339 P 42.212181 -76.84361 2015-02-07 10:55:00 obsr1587816 S21720710 Traveling P22 EBIRD 22.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307098091 2018-08-04 17:05:08 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 1 United States US New York US-NY Essex US-NY-031 13.0 Maple Meadows L4115608 P 44.0422008 -73.4797356 2015-04-03 06:40:00 obsr2769235 S22654942 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320225431 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-16 07:15:00 obsr827632 S23475490 Traveling P22 EBIRD 300.0 7.9 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613148 2021-03-26 07:30:35.289997 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 30 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-17 14:48:00 obsr2683910 S21394121 Stationary P21 EBIRD 51.0 2.0 1 G1113287 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309400299 2021-03-26 06:52:34.887371 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis N 2 United States US New York US-NY Niagara US-NY-063 13.0 North Tonawanda Botanical Gardens L3557988 P 43.03781 -78.82775 2015-04-12 13:10:00 obsr488746 S22820141 Traveling P22 EBIRD 33.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304664022 2021-11-09 21:57:19.605717 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N X United States US New York US-NY Ulster US-NY-111 13.0 Rondout-Kingston L3465160 P 41.91695 -73.98631 2015-03-22 14:30:00 obsr1482758 S22469248 Stationary P21 EBIRD 45.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312775621 2018-12-30 09:57:30 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Saratoga US-NY-091 13.0 Ballston Creek Preserve L2837609 H 42.9666232 -73.8342962 2015-04-25 10:28:00 obsr2321296 S23046736 Traveling P22 EBIRD 72.0 0.805 2.0 1 G1235198 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313485443 2021-03-01 11:20:54.007808 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 3 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-26 16:00:00 obsr2724574 S23089959 Stationary P21 EBIRD 5.0 4.0 1 G1239385 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302434708 2021-03-26 07:30:35.289997 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 14 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-03-11 09:47:00 obsr2871406 S22296821 Traveling P22 EBIRD 80.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311801126 2021-03-24 20:52:47.158779 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Yates US-NY-123 13.0 Seneca Lake, Dresden L822742 H 42.6848448 -76.9500983 2015-04-19 14:30:00 obsr2832110 S22980575 Traveling P22 EBIRD 60.0 8.047 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318537993 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-11 09:10:00 obsr1201479 S23380158 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304638408 2021-04-01 11:24:19.637193 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 13.0 N Hamlin Rd--Lake Rd W Fork to Hamlin Parma Twp Rd L622830 P 43.3371961 -77.8663516 2015-03-21 13:16:00 obsr730231 S22467432 Traveling P22 EBIRD 10.0 1.77 2.0 1 G1188327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301839572 2021-03-30 19:13:38.458673 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 15 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Goodwin Park (Long Pond outlet) L3467148 P 43.29125 -77.6745519 2015-03-08 18:12:00 obsr934639 S22244445 Stationary P21 EBIRD 10.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309777860 2021-03-23 16:30:20.514143 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 09:00:00 obsr948687 S22846292 Stationary P21 EBIRD_CAN 240.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321669364 2021-04-01 12:26:53.827486 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-21 05:47:00 obsr2512689 S23559512 Traveling P22 EBIRD 178.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232534 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 4 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 07:30:00 obsr352522 S21120279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322130204 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Monroe US-NY-055 13.0 Slater Creek (Russell Station) L140439 H 43.2691002 -77.6264038 2015-05-23 06:12:00 obsr1696616 S23588856 Traveling P22 EBIRD 27.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319461025 2021-11-15 03:06:58.889978 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-13 18:30:00 obsr601383 S23433052 Traveling P22 EBIRD 90.0 3.219 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310424801 2015-04-16 12:27:59 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Chemung US-NY-015 28.0 Minier Field Boat Launch L2833813 H 42.1211771 -76.9324064 2015-04-14 18:02:00 obsr1334267 S22891243 Traveling P22 EBIRD 75.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291999027 2021-04-01 12:18:57.910168 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Black Diamond Trail, Ithaca (southern end) L3300863 H 42.4524707 -76.517061 2015-01-18 12:23:00 obsr2683910 S21424088 Traveling P22 EBIRD 31.0 0.966 2.0 1 G1116208 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310861006 2021-11-09 21:53:19.888662 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Ulster US-NY-111 13.0 Onteora Lake L3094034 P 41.98385 -74.08198 2015-04-18 08:30:00 obsr1482758 S22920801 Traveling P22 EBIRD 80.0 1.609 2.0 1 G1224121 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294528966 2015-02-02 17:26:29 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Ponquogue Bridge L593299 H 40.8400478 -72.4976635 2015-02-01 15:30:00 obsr757440 S21644015 Stationary P21 EBIRD 30.0 2.0 0 G1133393 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319152577 2018-11-05 18:39:52 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Chemung US-NY-015 28.0 Big Flats Trail L267718 H 42.1451205 -76.909635 2015-05-12 08:02:00 obsr1334267 S23415595 Traveling P22 EBIRD 53.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290807460 2021-03-24 05:37:45.927792 456 species avibase-D201EB72 American Wigeon Mareca americana 85 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-01-13 07:39:00 obsr2497657 S21328771 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306084570 2015-03-29 16:35:05 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-03-29 08:50:00 obsr1954215 S22577686 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369674637 2021-03-26 07:56:20.588749 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 50 United States US New York US-NY Nassau US-NY-059 Garvies Point Preserve L1770439 H 40.8600466 -73.6510118 2015-05-06 09:30:00 obsr1815722 S27204918 Traveling P22 EBIRD 120.0 1.609 12.0 1 G1254776 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314045798 2021-03-26 06:55:00.227271 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-04-28 obsr1338126 S23125155 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294817983 2021-04-01 11:30:42.037277 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY New York US-NY-061 30.0 Riverside Park at 76th st L3337330 P 40.7831248 -73.9852488 2015-02-03 10:10:00 obsr2072398 S21667592 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294402387 2021-03-26 07:16:36.956617 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake Neighborhood Yard L2649561 P 42.83175 -73.95388 2015-02-01 14:50:00 obsr2371917 S21634063 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295469477 2022-02-17 14:32:23.002448 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-07 13:15:00 obsr1152226 S21719701 Traveling P22 EBIRD 105.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308538507 2015-04-08 19:36:56 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 GSC overlook L691964 P 43.1220361 -75.804162 2015-04-08 12:48:00 obsr2716320 S22760137 Stationary P21 EBIRD 48.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323975259 2021-03-26 06:39:43.334073 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-27 08:45:00 obsr2303233 S23706539 Traveling P22 EBIRD 180.0 4.828 4.0 1 G1295992 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS333506975 2015-07-26 22:19:39 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Nassau US-NY-059 30.0 Cold Spring Harbor Labs L2844495 P 40.8615213 -73.4700286 2015-05-06 11:35:00 obsr2240960 S24394424 Traveling P22 EBIRD_WI 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302329623 2021-03-24 21:13:42.099821 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Westchester US-NY-119 30.0 Hunt-Parker Sanctuary--Bylane Farm L786456 H 41.2827085 -73.6707115 2015-03-10 16:45:00 obsr385524 S22286333 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290611017 2021-04-01 11:54:40.172593 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 13 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-01-10 11:00:00 obsr1032565 S21312879 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288155734 2021-03-24 20:23:39.258075 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Suffolk US-NY-103 30.0 53 Highview Lane L296117 P 40.9075594 -72.8885669 2015-01-01 11:17:00 obsr395994 S21113875 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314334989 2018-08-04 17:13:05 681 species avibase-407E2CA8 Common Merganser Mergus merganser 6 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-30 07:00:00 obsr1830659 S23142582 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308501715 2021-03-26 06:20:37.302746 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 3 United States US New York US-NY Greene US-NY-039 13.0 Catskill - Embought Road L2730966 P 42.1821072 -73.8858819 2015-04-08 16:07:00 obsr1636520 S22757274 Traveling P22 EBIRD 18.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309248564 2021-04-01 12:18:57.910168 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-11 10:00:00 obsr2350357 S22810765 Traveling P22 EBIRD 45.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304370949 2021-11-09 21:43:58.300436 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 7 United States US New York US-NY Ulster US-NY-111 13.0 Black Creek Preserve L2086582 H 41.8236532 -73.9574718 2015-03-21 09:40:00 obsr1136997 S22447923 Traveling P22 EBIRD 115.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310486646 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-16 14:00:00 obsr1488063 S22895798 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311525805 2021-03-24 20:23:39.258075 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-04-18 08:40:00 obsr564905 S22961774 Traveling P22 EBIRD 25.0 3.219 2.0 0 G1228238 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288741187 2021-03-24 20:23:39.258075 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Suffolk US-NY-103 30.0 Staller Drive L2618497 P 40.8661125 -72.6181121 2015-01-03 13:00:00 obsr1736113 S21162324 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307511484 2021-11-09 22:12:17.655802 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY Ulster US-NY-111 13.0 Stone Ridge Pond off Mill Dam Rd. L624963 H 41.8618905 -74.1432953 2015-04-04 17:10:00 obsr2214649 S22684459 Stationary P21 EBIRD 10.0 3.0 1 G1204391 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319531580 2015-05-14 11:11:58 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 2 United States US New York US-NY Albany US-NY-001 US-NY_863 13.0 Voorheesville, 54-98 Meadowdale Road L3534490 P 42.66238 -73.98421 2015-05-14 07:00:00 obsr777630 S23437394 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315676229 2021-11-09 18:46:59.428056 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup East L3609979 P 41.911736 -73.660179 2015-05-03 08:14:00 obsr1442681 S23219315 Traveling P22 EBIRD 125.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306126126 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-29 09:25:00 obsr2206421 S22580870 Traveling P22 EBIRD 135.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320406071 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-16 11:30:00 obsr1706920 S23484736 Traveling P22 EBIRD 210.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302825926 2021-03-24 20:33:47.533911 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N Sherwood Pltform base - small brdg (0.15km) L1370979 P 42.4801875 -76.4541519 2015-03-12 18:01:00 obsr2307843 S22326493 Traveling P22 EBIRD 5.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309128112 2021-03-23 17:00:13.087107 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-11 14:15:00 obsr71667 S22802592 Traveling P22 EBIRD 60.0 1.287 5.0 1 G1214478 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307109471 2015-04-03 09:07:18 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 3 United States US New York US-NY Oneida US-NY-065 13.0 Blackmans Corners Road at Creek L3534231 P 43.181072 -75.5657673 2015-04-03 09:02:00 obsr545221 S22655889 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316441185 2021-03-26 06:29:56.44369 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 15 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-05-06 09:37:00 obsr1958774 S23263159 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321454330 2021-03-23 17:20:04.546757 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-13 11:00:00 obsr2475075 S23546511 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309394254 2015-04-12 13:27:55 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Columbia US-NY-021 13.0 Lake Taghkanic SP L697297 H 42.092236 -73.708649 2015-04-12 08:55:00 obsr481595 S22819798 Traveling P22 EBIRD 95.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313911705 2020-05-16 18:12:51 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Otsego US-NY-077 28.0 Quarry House L3364190 P 42.7359074 -74.8563686 2015-04-28 18:00:00 obsr189015 S23116936 Stationary P21 EBIRD 120.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317035043 2021-03-19 16:08:39.161312 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Long Point SP, Chautauqua Lake L2138384 H 42.1732349 -79.4142671 2015-05-06 19:15:00 obsr2418 S23297082 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307456127 2021-03-30 19:29:33.633096 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Husing Pond Preserve L123066 H 40.975 -72.5375 2015-04-04 14:22:00 obsr2485753 S22680747 Traveling P22 EBIRD 21.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300369952 2021-03-26 07:43:12.52294 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 12 United States US New York US-NY Wayne US-NY-117 13.0 Powell's Yard L783199 P 43.0918854 -77.3488167 2015-03-01 11:20:00 obsr749440 S22133225 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296534466 2017-08-16 16:36:05 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 PI--Route 7 L992018 P 41.1680746 -72.1966338 2015-02-13 08:28:00 obsr2485753 S21807470 Traveling P22 EBIRD 37.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325426340 2018-08-06 22:31:34 32433 spuh avibase-E6552A7D sparrow sp. Passerellidae sp. (sparrow sp.) 4 United States US New York US-NY Broome US-NY-007 28.0 Round Top L300892 P 42.0901971 -76.0712763 2015-05-31 10:14:00 obsr1626739 S23804743 Traveling P22 EBIRD 13.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292661140 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-01-22 10:30:00 obsr827632 S21496638 Traveling P22 EBIRD 150.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309862129 2021-11-09 18:45:58.530767 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 7 United States US New York US-NY Dutchess US-NY-027 13.0 Rhinecliff train station L3562397 P 41.9201936 -73.9527726 2015-04-13 19:30:00 obsr2862523 S22852162 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303706629 2021-11-09 18:35:59.461359 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Dutchess US-NY-027 13.0 Salt Point (Wapp Creek dam) L2728525 P 41.8071811 -73.7945867 2015-03-17 13:21:00 obsr1917973 S22396058 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292235263 2021-03-26 07:52:59.845315 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-19 07:05:00 obsr1000124 S21442105 Area P23 EBIRD 74.0 2.59 2.0 1 G1119004 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313609405 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-27 10:50:00 obsr827632 S23097537 Traveling P22 EBIRD 130.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319208624 2022-02-17 14:32:23.002448 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-13 08:25:00 obsr1605975 S23418778 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313482382 2021-11-15 03:06:58.889978 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-27 06:19:00 obsr33221 S23089788 Traveling P22 EBIRD 120.0 1.996 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296065147 2021-04-01 11:43:48.927316 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 16 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, City Pier L357819 H 42.871907 -77.2725534 2015-02-10 17:02:00 obsr528918 S21766361 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308949144 2021-03-30 19:07:52.958398 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-10 16:00:00 obsr2448957 S22790866 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300599100 2021-11-09 20:16:49.015193 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region--Skinners Lane L616593 H 41.3304039 -74.4442391 2015-02-21 09:45:00 obsr271871 S22149249 Traveling P22 EBIRD 5.0 1.609 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323618234 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 6 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-28 11:00:00 obsr444155 S23681041 Traveling P22 EBIRD 120.0 1.609 2.0 1 G1294229 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308523849 2021-11-09 18:17:26.599907 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Drake Lake L1363523 H 41.7871594 -73.8462642 2015-04-08 09:36:00 obsr2175245 S22758933 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295717568 2022-02-17 14:32:23.002448 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-08 07:49:00 obsr924076 S21738982 Traveling P22 EBIRD 622.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301215931 2021-03-24 20:23:39.258075 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Suffolk US-NY-103 30.0 My Backyard L1767606 P 40.9186002 -72.3766669 2015-03-06 06:30:00 obsr1864342 S22195031 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307116855 2020-12-14 15:56:49.243642 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 3 United States US New York US-NY Lewis US-NY-049 13.0 Location H L4611970 P 43.940282 -75.401446 2015-04-03 08:46:00 obsr417887 S22656465 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300038056 2022-03-05 22:03:50.715584 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 15 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-28 10:00:00 obsr444155 S22106511 Traveling P22 EBIRD 30.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306936241 2015-04-05 19:04:27 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Mud Lock L849114 P 42.9433552 -76.7422485 2015-04-02 12:33:00 obsr354090 S22642587 Stationary P21 EBIRD 6.0 2.0 1 G1206130 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307658779 2021-04-01 11:47:43.260314 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 7 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-04-05 07:56:00 obsr2224244 S22694823 Traveling P22 EBIRD 53.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315067304 2021-03-24 20:58:53.646623 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-02 06:20:00 obsr72341 S23186272 Stationary P21 EBIRD 700.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292486595 2015-01-21 15:53:28 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-19 16:25:00 obsr1987335 S21482824 Stationary P21 EBIRD 13.0 2.0 1 G1118672 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS323831169 2018-08-06 22:30:58 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 Thacher Park South L3622056 P 42.6332757 -74.0112662 2015-05-23 15:25:00 obsr1800473 S23697037 Traveling P22 EBIRD 75.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312988631 2021-04-01 12:18:57.910168 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca - Boatyard Grill L2015918 P 42.44605 -76.51265 2015-04-25 13:00:00 obsr2211210 S23059379 Stationary P21 EBIRD 90.0 2.0 1 G1238540 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309255579 2021-03-26 06:29:56.44369 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay L629399 H 43.2183125 -77.536869 2015-03-27 08:30:00 obsr1561508 S22811176 Stationary P21 EBIRD 25.0 2.0 1 G1218434 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299925254 2021-04-01 11:54:40.172593 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-02-27 10:01:00 obsr1032565 S22097423 Traveling P22 EBIRD 186.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298927993 2021-04-28 05:22:52.046239 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park--Southwest L154031 H 40.593426 -73.92352 2015-02-21 14:00:00 obsr2319444 S22018503 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322192008 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-23 09:05:00 obsr2898192 S23592257 Traveling P22 EBIRD 172.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308734563 2015-04-09 19:29:36 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Erie US-NY-029 13.0 Alden - Crittenden Rd. L586154 P 42.9165364 -78.4935379 2015-04-09 18:15:00 obsr2871264 S22775329 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296174142 2021-03-26 07:52:59.845315 27616 species avibase-D77E4B41 American Robin Turdus migratorius 12 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-08 08:20:00 obsr316199 S21774881 Area P23 EBIRD 95.0 2.59 2.0 1 G1143349 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295566743 2021-04-01 11:47:43.260314 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Oswego US-NY-075 13.0 20 Marsden Dr L3008209 P 43.523378 -76.250303 2015-02-08 11:30:00 obsr1321679 S21727327 Stationary P21 EBIRD 150.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317501893 2015-05-18 15:51:58 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Monroe US-NY-055 13.0 Tinker Nature Park L946685 H 43.0670694 -77.57339 2015-05-09 10:57:00 obsr1097423 S23324251 Stationary P21 EBIRD 8.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310173568 2021-11-09 20:40:08.274848 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Putnam US-NY-079 28.0 Yard List (Personal Location) L1765727 P 41.3533799 -73.952949 2015-04-15 09:21:00 obsr2188716 S22874173 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304153908 2022-02-18 10:47:29.953615 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N 2 S C2 S United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-19 09:36:00 obsr1062070 S22431079 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316835491 2015-05-07 11:34:59 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-06 08:05:00 obsr1561508 S23285750 Traveling P22 EBIRD 65.0 0.805 2.0 1 G1255843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293332337 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-25 09:15:00 obsr1711339 S21548788 Traveling P22 EBIRD 90.0 0.805 4.0 1 G1124331 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434520 2018-08-04 16:53:07 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:00:00 obsr324569 S21299184 Stationary P21 EBIRD 20.0 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315287298 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 08:30:00 obsr262885 S23198412 Traveling P22 EBIRD 210.0 3.219 3.0 1 G1250033 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314342087 2015-04-30 14:39:59 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 7 United States US New York US-NY Broome US-NY-007 28.0 Jones Park L1598748 H 42.0156115 -75.983731 2015-04-30 09:55:00 obsr1830659 S23143038 Traveling P22 EBIRD 95.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309358406 2021-03-24 19:39:45.790741 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 22 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 US-NY-Basom-6072-6304 Sour Springs Rd L3557629 P 43.110183 -78.369609 2015-04-12 08:09:00 obsr2588479 S22817688 Traveling P22 EBIRD 115.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318761830 2021-03-19 16:44:35.607263 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-11 10:29:00 obsr745890 S23392797 Traveling P22 EBIRD 40.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS837139019 2021-03-19 16:27:31.421791 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kanyoo Trail L152120 H 43.1168988 -78.430624 2015-05-15 14:30:00 obsr2405299 S62231666 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310546169 2021-03-23 16:33:05.415158 6041 issf avibase-6D372C9F Willet Tringa semipalmata Willet (Eastern) Tringa semipalmata semipalmata X United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-04-16 09:45:00 obsr186539 S22900046 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308844846 2015-04-10 12:13:46 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Rensselaer US-NY-083 14.0 Pond out back L894952 P 42.8285199 -73.3548546 2015-04-10 11:32:00 obsr215455 S22783388 Traveling P22 EBIRD 38.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323523204 2018-08-06 22:31:17 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Great Dune L1279825 H 42.7096964 -73.8888052 2015-05-28 08:08:00 obsr1119101 S23674837 Traveling P22 EBIRD 110.0 1.609 101.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314804733 2021-03-23 17:22:05.708166 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 1 United States US New York US-NY Herkimer US-NY-043 14.0 Brown & Heller Road & Vicinity L691744 P 43.1380732 -74.7701812 2015-05-01 13:19:00 obsr316199 S23171726 Traveling P22 EBIRD 11.0 1.287 3.0 1 G1246627 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294363002 2021-03-24 20:23:39.258075 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 5 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach State Park L230716 P 41.1295147 -72.2665183 2015-02-01 11:52:00 obsr2485753 S21630972 Traveling P22 EBIRD 72.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309318026 2021-03-26 06:17:19.712573 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Erie US-NY-029 13.0 Sturgeon Point L300493 H 42.6911725 -79.047849 2015-04-12 07:24:00 obsr916033 S22815186 Traveling P22 EBIRD 92.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295428614 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek L845821 H 40.5811388 -73.9927912 2015-02-07 09:45:00 obsr1077730 S21716194 Traveling P22 EBIRD 145.0 2.575 5.0 1 G1137824 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307780317 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-05 14:03:00 obsr564905 S22703419 Traveling P22 EBIRD 32.0 3.219 2.0 1 G1207236 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300350902 2015-03-03 15:16:28 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Bartow-Pell Mansion L3449603 P 40.87241 -73.80553 2015-03-01 09:12:00 obsr1348614 S22132047 Traveling P22 EBIRD 27.0 0.5 4.0 1 G1165795 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312436278 2021-03-24 20:33:47.533911 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Tompkins US-NY-109 13.0 206 Tareyton Drive, Ithaca L141039 P 42.471756 -76.4603653 2015-04-23 11:15:00 obsr620377 S23022926 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295132472 2018-08-04 16:55:43 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 20 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-02-05 15:33:00 obsr2186523 S21692737 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304921939 2021-04-01 10:47:08.851048 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-03-23 15:58:00 obsr1764243 S22488636 Traveling P22 EBIRD 37.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291839262 2015-01-19 00:22:21 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-01-18 11:35:00 obsr528918 S21411426 Traveling P22 EBIRD 90.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309312798 2021-03-26 07:30:35.289997 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-04-12 08:11:00 obsr2211210 S22814862 Stationary P21 EBIRD 18.0 1.0 1 G1215802 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308026393 2018-08-04 17:05:45 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-04-06 11:00:00 obsr1565981 S22721011 Traveling P22 EBIRD 58.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319110695 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park, ramble L3639243 P 40.77772 -73.9687 2015-05-12 14:35:00 obsr363953 S23413366 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317300591 2021-04-01 11:30:42.037277 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 08:15:00 obsr1353449 S23311613 Traveling P22 EBIRD 300.0 6.437 3.0 1 G1257992 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309832739 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-11 09:30:00 obsr753684 S22850152 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294192346 2021-11-15 03:06:58.889978 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-31 16:35:00 obsr2105033 S21617502 Stationary P21 EBIRD 10.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319853350 2015-05-15 13:33:15 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 1 United States US New York US-NY Monroe US-NY-055 13.0 Lehigh Swamp L491875 H 43.1081894 -77.6410675 2015-05-15 12:08:00 obsr2678807 S23455664 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309308240 2021-07-17 13:13:12.794892 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay WR L1292713 P 40.620038 -73.8270522 2015-04-11 11:15:00 obsr827632 S22814555 Traveling P22 EBIRD 165.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315243028 2015-05-03 10:47:12 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-03 09:36:00 obsr1334267 S23196184 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316198524 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Lido Beach Passive Nature Area L723695 H 40.5923663 -73.5957384 2015-05-05 14:00:00 obsr547602 S23248700 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293137735 2021-04-01 11:49:53.573686 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 1 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-01-24 06:50:00 obsr1982614 S21534065 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316964241 2021-04-01 11:15:31.646886 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 07:30:00 obsr2078092 S23293007 Traveling P22 EBIRD 480.0 4.828 30.0 1 G1256569 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310881970 2018-08-04 17:09:36 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-18 07:00:00 obsr2843748 S22922174 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320364627 2021-11-15 03:06:58.889978 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 07:48:00 obsr856524 S23482589 Traveling P22 EBIRD 42.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295132305 2021-03-26 08:14:57.071052 6526 species avibase-4D2FF6F1 Common Tern Sterna hirundo 25 United States US New York US-NY Westchester US-NY-119 28.0 Verplanck Riverview Park L2600181 P 41.2495478 -73.9649391 2015-02-04 11:30:00 obsr1188671 S21692720 Stationary P21 EBIRD 35.0 7.0 1 G1136373 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304490920 2021-11-09 21:50:48.44865 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 Unknown Sex, Adult (1); Unknown Sex, Immature (1) United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-21 14:30:00 obsr1636520 S22456696 Traveling P22 EBIRD 75.0 0.805 4.0 1 G1188107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS519895018 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Nassau US-NY-059 30.0 Manhasset - Private: No Access L2913708 P 40.7762193 -73.6884141 2015-05-11 07:00:00 obsr696226 S38228444 Traveling P22 EBIRD 300.0 8.047 3.0 1 G1645520 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306546350 2021-03-26 06:58:34.561206 526 species avibase-56CCA717 Northern Pintail Anas acuta N 35 United States US New York US-NY Orleans US-NY-073 Albion WTP L760320 H 43.3707569 -78.2149315 2015-03-31 12:50:00 obsr137150 S22613291 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315003866 2021-11-09 18:02:59.935226 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 4 United States US New York US-NY Dutchess US-NY-027 28.0 Madam Brett Park L1171361 H 41.4886892 -73.9742571 2015-05-02 15:00:00 obsr2241630 S23182672 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321160441 2021-03-19 16:44:35.607263 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-18 08:35:00 obsr745890 S23528534 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317601667 2015-05-09 14:48:10 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis X United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-09 08:10:00 obsr319738 S23329803 Traveling P22 EBIRD 110.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293187999 2021-03-26 06:29:56.44369 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Monroe US-NY-055 13.0 stakeout Yellow-headed Blackbird, Jeffords Rd., Rush (2015) L3304693 H 43.00988 -77.62134 2015-01-25 15:48:00 obsr991026 S21537974 Stationary P21 EBIRD 76.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313256116 2021-03-23 17:41:09.545385 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-04-26 11:30:00 obsr1055148 S23075245 Traveling P22 EBIRD 120.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289250889 2018-08-04 16:52:40 662 species avibase-FB738385 Bufflehead Bucephala albeola 8 United States US New York US-NY Nassau US-NY-059 30.0 Baldwin L193543 T 40.6565 -73.60927 2015-01-03 14:40:00 obsr1987335 S21204181 Traveling P22 EBIRD 5.0 0.322 4.0 1 G1096950 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307955697 2018-08-04 17:05:43 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 56 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-06 09:54:00 obsr613775 S22716298 Traveling P22 EBIRD 29.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312528325 2021-03-26 06:55:00.227271 662 species avibase-FB738385 Bufflehead Bucephala albeola 6 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--CR 7 X Outlet Creek (3176D) [Clifton Springs_NE] L3182262 P 42.9807748 -77.1791267 2015-04-24 11:38:00 obsr606693 S23029125 Traveling P22 EBIRD 12.0 1.529 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306893083 2021-11-09 20:43:00.159221 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 3 United States US New York US-NY Putnam US-NY-079 30.0 Ives Farm L3484437 P 41.3796906 -73.5533702 2015-04-02 08:08:00 obsr1028245 S22639151 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295766597 2018-08-04 16:55:59 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 CLO Office-2M15 L1313831 P 42.4800694 -76.4515024 2015-02-09 10:15:00 obsr2074043 S21742541 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295211706 2021-03-26 07:30:35.289997 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-06 09:13:00 obsr1655171 S21698634 Traveling P22 EBIRD 21.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315451031 2021-03-30 19:13:38.458673 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-05-03 12:15:00 obsr1005220 S23206916 Traveling P22 EBIRD 65.0 0.644 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316947548 2021-03-26 06:17:19.712573 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-07 15:00:00 obsr1381746 S23292092 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1256390 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294674800 2021-04-01 11:47:43.260314 592 species avibase-3072CC16 Redhead Aythya americana 5 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Oswego County-Winter Raptor Survey Route - L3220240 P 43.449913 -76.3036421 2015-01-19 12:34:00 obsr2700277 S21655638 Traveling P22 EBIRD 215.0 64.855 2.0 1 G1133879 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298713389 2021-03-24 20:33:47.533911 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Tompkins US-NY-109 13.0 634 Comfort Rd. L132217 P 42.3609886 -76.5085983 2015-02-14 07:30:00 obsr301852 S22000941 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315479802 2021-11-09 18:43:49.061486 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Dutchess US-NY-027 28.0 Purgatory Hill L3345412 P 41.5670731 -73.566159 2015-05-03 13:00:00 obsr1058852 S23208507 Stationary P21 EBIRD 80.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313485469 2021-03-24 20:33:47.533911 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-26 16:15:00 obsr2724574 S23089963 Traveling P22 EBIRD 60.0 2.092 4.0 1 G1239386 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309043009 2022-03-05 22:03:50.715584 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 6 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-11 07:30:00 obsr890053 S22797387 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291893077 2021-03-24 21:06:05.39641 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 2 United States US New York US-NY Onondaga US-NY-067 13.0 YARD, River Road L499476 P 43.1456185 -76.2632275 2015-01-19 10:51:00 obsr642516 S21415593 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316077749 2015-05-05 11:44:29 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Creek, Lang Road L3601996 P 42.8886134 -74.2762685 2015-05-05 11:00:00 obsr286403 S23242064 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321763153 2021-11-09 18:47:56.68381 7429 species avibase-1327AC55 Osprey Pandion haliaetus 2 United States US New York US-NY Dutchess US-NY-027 14.0 HVRT between SHaron Station Rd. & Coleman Station Rd. L3663072 P 41.8887964 -73.5196924 2015-05-21 16:09:00 obsr1442681 S23565288 Traveling P22 EBIRD 51.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317744560 2021-03-19 16:29:59.503892 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 7 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-09 18:28:00 obsr1302604 S23337457 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288991836 2017-08-16 16:12:41 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Orleans US-NY-073 13.0 US-NY-Medina-4995-5203 Townline Rd L2082957 P 43.164228 -78.310099 2015-01-04 11:32:00 obsr2588479 S21184260 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303269211 2022-03-05 22:03:50.715584 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-15 09:15:00 obsr444155 S22361406 Traveling P22 EBIRD 45.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308067438 2021-04-01 11:54:40.172593 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Richmond US-NY-085 Arden Ave. Beach L635901 H 40.5276639 -74.1605043 2015-04-06 09:44:00 obsr155915 S22723839 Stationary P21 EBIRD 5.0 2.0 1 G1208447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319214635 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-13 06:16:00 obsr2512689 S23419143 Traveling P22 EBIRD 94.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316681540 2021-03-30 19:13:38.458673 242 species avibase-D3A260BC Snow Goose Anser caerulescens 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-06 18:43:00 obsr334398 S23277147 Traveling P22 EBIRD 40.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318383015 2018-08-04 17:15:52 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Fulton US-NY-035 13.0 Mayfield town beach, Burr Rd L3102935 P 43.1380562 -74.2343187 2015-05-10 15:00:00 obsr1708031 S23371671 Traveling P22 EBIRD 131.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302101067 2021-04-01 12:41:58.738824 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe X United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-02-28 11:54:00 obsr2490863 S22264162 Stationary P21 EBIRD 40.0 1.0 1 G1173116 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303305246 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-15 09:30:00 obsr609516 S22364132 Traveling P22 EBIRD 300.0 8.739 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317503378 2021-09-08 04:42:53.165995 6040 species avibase-E7A14E91 Willet Tringa semipalmata 19 United States US New York US-NY New York US-NY-061 30.0 Sherman Creek Park and Swindler Cove L1018912 H 40.8580281 -73.921085 2015-05-09 10:33:00 obsr259298 S23324322 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310578265 2021-04-01 12:18:57.910168 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 2 United States US New York US-NY Tompkins US-NY-109 13.0 206 Tareyton Drive, Ithaca L141039 P 42.471756 -76.4603653 2015-04-13 15:45:00 obsr620377 S22902142 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308500519 2021-03-24 19:19:28.646223 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-04-06 18:07:00 obsr955789 S22757172 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292742996 2021-04-01 11:46:19.761029 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Orleans US-NY-073 13.0 US-NY-Medina-Waterworks Rd L2584900 P 43.1949873 -78.3701372 2015-01-23 10:18:00 obsr2588479 S21502965 Traveling P22 EBIRD 2.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321205630 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-19 05:45:00 obsr1433400 S23531310 Traveling P22 EBIRD 180.0 5.777 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309816347 2021-11-09 20:37:49.117197 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Putnam US-NY-079 28.0 Manitou Point Preserve L1070091 H 41.3373022 -73.96174 2015-04-13 16:54:00 obsr2188716 S22849015 Traveling P22 EBIRD 100.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306051846 2021-11-09 19:38:27.588139 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 21 United States US New York US-NY Orange US-NY-071 28.0 Circle Drive, Tuxedo, NY L1457834 P 41.188319 -74.1869493 2015-03-29 07:00:00 obsr2346161 S22575182 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288280785 2021-04-01 12:14:19.266649 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-01-01 07:15:00 obsr105122 S21124552 Stationary P21 EBIRD 76.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295391127 2021-03-23 16:39:03.255227 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 5 United States US New York US-NY Richmond US-NY-085 Miller Field--Beach L2480167 H 40.564872 -74.0928776 2015-02-07 11:48:00 obsr1958124 S21713351 Traveling P22 EBIRD 14.0 0.483 2.0 1 G1137889 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288953756 2021-03-24 21:01:50.671145 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Nassau US-NY-059 US-NY-Lido Beach-164 Eva Dr L3264151 P 40.58538 -73.631025 2015-01-03 13:38:00 obsr1982614 S21181119 Stationary P21 EBIRD 60.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305270514 2018-08-04 17:02:51 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 Male, Adult (1) United States US New York US-NY Chenango US-NY-017 28.0 Chenango River near Blueox L3490507 P 42.4449026 -75.5940646 2015-03-25 12:24:00 obsr1303581 S22516082 Stationary P21 EBIRD 4.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312987244 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 15:00:00 obsr2369927 S23059302 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301631448 2022-02-21 13:41:55.027797 11371 species avibase-75600969 Northern Flicker Colaptes auratus 5 United States US New York US-NY New York US-NY-061 30.0 Fort Tryon Park L591127 H 40.8629374 -73.9327457 2015-03-08 09:30:00 obsr781996 S22227313 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309309804 2021-03-30 19:22:51.561415 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 2 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-12 06:50:00 obsr2574755 S22814686 Traveling P22 EBIRD 78.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS331317078 2022-02-17 14:32:23.002448 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-09 08:30:00 obsr117100 S24231682 Traveling P22 EBIRD 90.0 1.609 3.0 1 G1260060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305307511 2021-03-23 17:18:00.959502 6339 species avibase-8535345B Herring Gull Larus argentatus 44 United States US New York US-NY Albany US-NY-001 13.0 Guilderland, NY L1819771 P 42.6970288 -73.8770027 2015-03-21 14:00:00 obsr30103 S22518930 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316109701 2021-11-15 03:06:58.889978 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 06:28:00 obsr870166 S23243716 Traveling P22 EBIRD 253.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291063776 2021-03-30 19:29:33.633096 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 1 United States US New York US-NY Suffolk US-NY-103 30.0 Pepperide Lake L2518068 P 40.8202724 -72.7395558 2015-01-13 14:00:00 obsr2846902 S21349924 Traveling P22 EBIRD 20.0 3.219 2.0 1 G1109677 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296410703 2021-03-26 06:29:56.44369 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 3 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-02-12 07:30:00 obsr2449897 S21796118 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306905830 2021-03-19 16:14:11.035882 26109 species avibase-BAC33609 Brown Creeper Certhia americana 107 United States US New York US-NY Cortland US-NY-023 28.0 Daisy Hollow Rd. wet meadows L2976557 H 42.4879855 -76.2249148 2015-04-02 09:36:00 obsr1696616 S22640200 Traveling P22 EBIRD 7.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308321300 2021-03-26 06:29:56.44369 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-04-07 16:10:00 obsr934639 S22743368 Traveling P22 EBIRD 47.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298923946 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-21 11:00:00 obsr2319444 S22018213 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314457232 2018-08-04 17:13:10 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 16 United States US New York US-NY Oswego US-NY-075 13.0 Peter Scott Swamp L248391 H 43.2444498 -76.2705344 2015-04-30 12:35:00 obsr2787912 S23150589 Stationary P21 EBIRD 12.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308673155 2022-03-05 22:03:50.715584 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-09 09:00:00 obsr662396 S22770309 Traveling P22 EBIRD 120.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320345902 2021-08-17 17:05:08.647553 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Essex US-NY-031 14.0 Corner of Bull Rock and Shattuck L3026671 P 43.815311 -73.498596 2015-05-16 20:05:00 obsr2693145 S23481655 Traveling P22 EBIRD 70.0 0.966 4.0 1 G1274035 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288105517 2021-04-01 11:49:53.573686 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-01-01 08:58:00 obsr2574755 S21109798 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307490719 2015-04-04 16:38:57 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon X United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Road, Dunkirk, NY L3492908 P 42.4462708 -79.38508 2015-04-04 10:35:00 obsr479109 S22683149 Traveling P22 EBIRD 10.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302170716 2021-04-01 11:30:42.037277 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-09 16:15:00 obsr2031586 S22269142 Traveling P22 EBIRD 90.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291497833 2021-04-01 11:24:19.637193 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-01-17 08:41:00 obsr2595828 S21385242 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314664304 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-01 08:30:00 obsr139757 S23163177 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316496357 2018-08-04 17:14:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College L1485004 H 44.4375537 -74.2530447 2015-05-06 05:45:00 obsr1786066 S23266119 Stationary P21 EBIRD 270.0 5.0 1 G1254570 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298379584 2018-08-04 16:57:22 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-02-18 10:45:00 obsr1224512 S21971560 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321872830 2021-03-26 06:17:19.712573 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-21 14:20:00 obsr1379161 S23572447 Traveling P22 EBIRD 180.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304430661 2021-03-26 06:29:56.44369 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Manitou Beach, Ontario Blvd. L667384 H 43.3241521 -77.7162155 2015-03-21 15:53:00 obsr1696616 S22452131 Stationary P21 EBIRD 8.0 2.0 1 G1188313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296797550 2021-03-23 16:39:03.255227 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 150 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-02-14 14:12:00 obsr1958124 S21831020 Traveling P22 EBIRD 16.0 0.483 2.0 1 G1145895 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332421526 2021-12-24 11:02:14.483178 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-16 14:26:00 obsr334398 S24314064 Traveling P22 EBIRD 131.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300598249 2015-03-02 20:13:37 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 6 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-02 08:30:00 obsr316199 S22149208 Area P23 EBIRD 60.0 2.59 2.0 1 G1165183 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324016244 2021-04-01 11:12:52.834774 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 4 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-05-30 07:10:00 obsr349211 S23708968 Traveling P22 EBIRD 170.0 1.609 6.0 1 G1296011 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322372132 2015-08-02 20:59:37 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Livingston US-NY-051 US-NY_1760 13.0 US20 between 5 and Greenway L961048 P 42.9179036 -77.7740192 2015-05-14 06:44:00 obsr1060479 S23602430 Traveling P22 EBIRD 19.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309734309 2021-03-26 07:46:52.994574 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-13 06:25:00 obsr1154 S22842737 Traveling P22 EBIRD 165.0 2.414 2.0 1 G1218383 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310747648 2021-03-24 20:33:47.533911 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 F C1 F United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southeast L879238 H 42.4674118 -76.4183235 2015-04-17 18:45:00 obsr1696616 S22913437 Traveling P22 EBIRD 35.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315466507 2021-03-26 06:29:04.082451 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 5 United States US New York US-NY Lewis US-NY-049 13.0 Locust Grove L660404 P 43.5326204 -75.3140259 2015-05-03 18:00:00 obsr1783124 S23207740 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1267967652 2021-10-30 16:48:24.118116 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 1 United States US New York US-NY Erie US-NY-029 13.0 Home (Woodridge Avenue) L11248322 P 42.9424101 -78.777294 2015-04-05 07:20:00 obsr2155450 S96897296 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311188203 2021-03-19 16:44:35.607263 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 7 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-04-19 07:55:00 obsr1534851 S22941077 Traveling P22 EBIRD 100.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296799252 2021-04-01 12:32:15.282601 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 6 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-14 08:30:00 obsr876649 S21831158 Traveling P22 EBIRD 145.0 6.437 6.0 1 G1145831 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314293069 2021-03-23 17:00:13.087107 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-30 08:25:00 obsr71667 S23140637 Traveling P22 EBIRD 81.0 0.805 4.0 1 G1252602 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323087741 2021-06-10 13:58:54.983373 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Badgerow Park L140440 H 43.2569008 -77.6433029 2015-05-26 10:10:00 obsr991026 S23645655 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318557364 2022-01-14 23:09:46.504479 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Kings US-NY-047 Marsha P. Johnson SP (East River SP) L2987636 H 40.7214782 -73.9620551 2015-05-10 18:39:00 obsr1932533 S23381215 Traveling P22 EBIRD 27.0 0.483 2.0 1 G1270314 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313282113 2021-04-01 11:30:42.037277 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 10:00:00 obsr2078092 S23076888 Traveling P22 EBIRD 360.0 6.437 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS321948498 2018-08-06 22:30:49 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Broome US-NY-007 28.0 Aquaterra Park L209925 H 42.032165 -75.939463 2015-05-22 09:25:00 obsr2024068 S23576918 Traveling P22 EBIRD 180.0 2.414 2.0 1 G1284732 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297260103 2015-02-15 18:09:27 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-02-15 11:00:00 obsr1708031 S21872378 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303842133 2018-08-04 17:01:44 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-18 09:38:00 obsr1655171 S22406847 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307365681 2021-03-26 07:00:33.333856 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 40 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-04-04 08:23:00 obsr2574755 S22674455 Traveling P22 EBIRD 43.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306248589 2021-04-01 10:53:25.818871 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 7 United States US New York US-NY Cortland US-NY-023 28.0 Cortland Wastewater Treatment Facility L1903152 H 42.597544 -76.157798 2015-03-28 11:20:00 obsr2937317 S22590160 Stationary P21 EBIRD 16.0 3.0 1 G1197849 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321381168 2021-04-01 11:30:42.037277 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pool L318103 H 40.7947416 -73.9606707 2015-05-19 17:30:00 obsr2796494 S23541743 Traveling P22 EBIRD 110.0 1.207 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306155889 2021-03-30 19:13:38.458673 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 15:17:00 obsr334398 S22582411 Stationary P21 EBIRD 45.0 3.0 1 G1197122 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295414113 2021-03-26 07:07:10.758746 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Richmond US-NY-085 30.0 Faber Park L2489777 H 40.6410931 -74.135889 2015-02-07 09:59:00 obsr1893950 S21715141 Traveling P22 EBIRD 14.0 0.322 2.0 1 G1137899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290907272 2016-10-10 10:35:41 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 06:45:00 obsr2574755 S21337232 Traveling P22 EBIRD 75.0 18.99 44.0 1 G1108327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306197513 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-03-29 10:00:00 obsr1782363 S22586381 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313457811 2021-03-30 19:29:33.633096 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 8 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 USFWS_636 Elizabeth A. Morton NWR L208927 H 40.9909126 -72.3699903 2015-04-26 08:00:00 obsr2846902 S23088321 Traveling P22 EBIRD 180.0 1.609 10.0 1 G1252981 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309160379 2018-08-04 17:08:34 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-11 14:05:00 obsr2086576 S22804799 Traveling P22 EBIRD 75.0 0.966 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316858770 2018-08-06 22:29:05 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Columbia US-NY-021 13.0 Olana State Historic Site L357372 H 42.2183005 -73.8287207 2015-05-07 07:30:00 obsr2766625 S23286935 Traveling P22 EBIRD 170.0 1.062 3.0 1 G1255911 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295584091 2021-03-24 20:23:39.258075 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Suffolk US-NY-103 30.0 Montauk - my backyard L1847964 P 41.023338 -71.9836562 2015-02-08 14:30:00 obsr2818161 S21728694 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316470899 2021-03-30 19:07:52.958398 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-06 08:25:00 obsr1516787 S23264774 Traveling P22 EBIRD 140.0 3.058 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522875 2021-12-03 21:50:44.732892 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-04-08 09:41:00 obsr155915 S22758870 Traveling P22 EBIRD 10.0 0.805 2.0 1 G1211601 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316546147 2021-03-31 03:59:50.422612 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-05-06 14:58:00 obsr887540 S23269272 Traveling P22 EBIRD 42.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306888657 2018-08-04 17:05:01 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-02 07:32:00 obsr1764243 S22638852 Traveling P22 EBIRD 19.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315233338 2018-08-04 17:14:12 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-03 07:00:00 obsr1165633 S23195691 Traveling P22 EBIRD 201.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311429565 2018-08-04 17:11:13 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Ontario US-NY-069 13.0 muar pond L981244 P 42.8811688 -77.2650433 2015-04-19 09:30:00 obsr2979658 S22955814 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293674702 2022-02-18 10:47:29.953615 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-01-28 08:46:00 obsr1062070 S21576675 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312769837 2018-08-04 17:12:06 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-25 09:00:00 obsr1830659 S23046295 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315011335 2021-03-26 06:17:19.712573 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi X United States US New York US-NY Erie US-NY-029 13.0 Peanut Line path - Amherst L3607448 P 43.0197054 -78.7178779 2015-04-30 09:00:00 obsr303203 S23183083 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320661136 2015-05-17 21:16:51 11494 species avibase-20C2214E American Kestrel Falco sparverius 2 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-05-17 18:00:00 obsr1349676 S23498364 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311170232 2021-03-26 07:46:52.994574 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-19 06:55:00 obsr2113222 S22939962 Traveling P22 EBIRD 120.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320360014 2021-11-15 03:06:58.889978 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-14 13:35:00 obsr856524 S23482340 Traveling P22 EBIRD 45.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317841442 2018-08-06 22:29:26 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Broome US-NY-007 28.0 IBM CC / Lower glen L1060822 P 42.1262381 -75.9905434 2015-05-09 09:13:00 obsr1626739 S23342604 Traveling P22 EBIRD 102.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302716381 2021-03-30 19:29:33.633096 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 30.0 Chandler Estate L1355478 H 40.9559916 -73.0192018 2015-03-12 16:00:00 obsr2338506 S22318422 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306385031 2018-08-04 17:04:44 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-03-30 obsr2841967 S22600588 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300031708 2021-04-01 10:58:47.067498 11371 species avibase-75600969 Northern Flicker Colaptes auratus 3 United States US New York US-NY Genesee US-NY-037 13.0 wood farm L3445113 P 43.0152187 -78.1331402 2015-02-28 10:35:00 obsr393804 S22106045 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318617672 2021-04-01 10:47:08.851048 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 3 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-05-11 11:00:00 obsr800690 S23384659 Traveling P22 EBIRD 30.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295030747 2021-12-10 08:21:29.396662 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis N 12 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-04 14:45:00 obsr272939 S21685827 Traveling P22 EBIRD 90.0 1.609 6.0 1 G1136379 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308003246 2015-04-06 13:51:51 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Chenango US-NY-017 28.0 535 Moran Rd, Oxford L2650908 P 42.3464446 -75.6593978 2015-04-06 07:30:00 obsr1303581 S22719384 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295159170 2019-03-03 20:04:01 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 Plum Rd., Ft. Edward L2442258 H 43.2555882 -73.5463616 2015-02-05 11:35:00 obsr2855945 S21694546 Stationary P21 EBIRD 5.0 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289922110 2021-03-23 17:15:00.080143 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 3 United States US New York US-NY Wayne US-NY-117 13.0 Powell's Yard L783199 P 43.0918854 -77.3488167 2015-01-08 16:00:00 obsr749440 S21257672 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311339940 2021-03-26 07:43:12.52294 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Rd. L508804 H 43.0489452 -76.7335796 2015-04-19 12:32:00 obsr1655171 S22950205 Traveling P22 EBIRD 15.0 0.805 2.0 1 G1230123 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309502573 2015-04-13 20:06:34 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Warren US-NY-113 14.0 Private Residence, Carriage Hill Rd L2484059 P 43.4847576 -73.6872286 2015-04-12 16:09:00 obsr366785 S22826612 Stationary P21 EBIRD 119.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307954689 2021-12-03 21:50:44.732892 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 2 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-04-06 09:57:00 obsr1958124 S22716237 Traveling P22 EBIRD 21.0 0.805 2.0 1 G1208446 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303820610 2018-08-04 17:01:43 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 10 United States US New York US-NY Essex US-NY-031 13.0 Boat Launch on Lake George outlet. L2702253 P 43.822134 -73.427088 2015-03-18 07:33:00 obsr2693145 S22405037 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317736621 2021-03-26 06:29:56.44369 7429 species avibase-1327AC55 Osprey Pandion haliaetus 8 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-09 06:27:00 obsr2595828 S23337036 Stationary P21 EBIRD 100.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299094936 2021-04-01 12:35:52.669792 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-22 08:56:00 obsr2001485 S22034142 Traveling P22 EBIRD 58.0 0.483 3.0 1 G1156954 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303769489 2021-04-22 12:55:05.75868 592 species avibase-3072CC16 Redhead Aythya americana 7 United States US New York US-NY Oneida US-NY-065 13.0 Waterville Home Grounds L1257983 P 42.9688865 -75.3351134 2015-03-17 08:30:00 obsr2139704 S22400923 Stationary P21 EBIRD 195.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290556621 2018-08-04 16:53:10 660 spuh avibase-CB56BEF1 scoter sp. Melanitta sp. 1 United States US New York US-NY Nassau US-NY-059 30.0 Sands Point Preserve L293460 H 40.8591053 -73.6970283 2015-01-11 14:20:00 obsr1488063 S21308936 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317518267 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 10:30:00 obsr2976 S23325130 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313920404 2021-11-15 03:06:58.889978 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-02 12:30:00 obsr1652207 S23117527 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312932052 2021-03-19 16:02:45.308962 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-04-25 16:30:00 obsr290506 S23055868 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319284311 2018-08-04 17:15:31 11371 species avibase-75600969 Northern Flicker Colaptes auratus 5 United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L692296 H 42.8874107 -78.7166119 2015-05-09 08:05:00 obsr1172988 S23423027 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301413953 2021-03-26 07:07:10.758746 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Richmond US-NY-085 30.0 Lemon Creek, bridge at Hylan Blvd. L916052 H 40.517649 -74.2011237 2015-03-07 09:40:00 obsr1893950 S22211474 Traveling P22 EBIRD 20.0 0.483 2.0 1 G1169014 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318360930 2021-03-26 06:39:43.334073 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 12 United States US New York US-NY New York US-NY-061 30.0 Riverside Park L715173 H 40.7964515 -73.9761783 2015-05-10 19:30:00 obsr2277801 S23370520 Historical P62 EBIRD 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319959933 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-15 08:30:00 obsr2448505 S23461333 Traveling P22 EBIRD 360.0 6.437 3.0 1 G1273003 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322538654 2021-04-01 12:32:15.282601 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-24 08:00:00 obsr2207991 S23611652 Traveling P22 EBIRD 150.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288408685 2021-04-01 12:26:53.827486 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 10 United States US New York US-NY Albany US-NY-001 13.0 Shaker Rd and I-87 L3256388 P 42.727848 -73.7950373 2015-01-01 08:30:00 obsr1778524 S21134609 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313209274 2021-03-26 07:07:10.758746 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Richmond US-NY-085 Lemon Creek Park L508340 H 40.5121298 -74.198581 2015-04-25 14:13:00 obsr155915 S23072431 Traveling P22 EBIRD 2.0 0.322 3.0 1 G1237317 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301364912 2021-03-26 07:20:31.408164 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N 4 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-03-07 10:14:00 obsr2485753 S22207531 Traveling P22 EBIRD 59.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299764070 2021-03-26 06:52:34.887371 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 3 United States US New York US-NY Niagara US-NY-063 13.0 Home L3362355 P 43.281241 -78.5073057 2015-02-26 07:20:00 obsr1839078 S22085348 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317693982 2021-03-26 06:17:19.712573 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-09 07:45:00 obsr66866 S23334762 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314983229 2021-04-01 11:15:31.646886 616 species avibase-25C94A8F Greater Scaup Aythya marila 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 07:15:00 obsr1407710 S23181527 Traveling P22 EBIRD 360.0 4.828 28.0 1 G1247342 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294424492 2021-04-01 12:32:15.282601 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis X United States US New York US-NY Nassau US-NY-059 30.0 Smith Pond, Rockville Center L444839 H 40.6608056 -73.6545278 2015-02-01 13:10:00 obsr916370 S21635871 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321794847 2021-03-19 16:19:20.977326 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-17 17:30:00 obsr2597186 S23567217 Traveling P22 EBIRD 70.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294632770 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-02 16:26:00 obsr934639 S21652425 Traveling P22 EBIRD 45.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300159424 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-02-28 13:25:00 obsr2514491 S22116678 Traveling P22 EBIRD 75.0 2.414 3.0 1 G1162655 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313507388 2021-03-26 07:20:31.408164 7200 species avibase-49D9148A Great Egret Ardea alba 10 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-04-27 08:40:00 obsr2011512 S23091328 Traveling P22 EBIRD 90.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319354880 2018-08-04 17:27:04 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-13 16:15:00 obsr1764243 S23426923 Traveling P22 EBIRD 112.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300865840 2021-03-23 16:52:36.900075 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 Male, Adult (1) United States US New York US-NY Suffolk US-NY-103 30.0 Kodu L3355598 P 40.9032789 -72.8895308 2015-03-04 08:05:00 obsr1954215 S22169162 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318529429 2021-03-19 16:19:20.977326 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-08 08:20:00 obsr1079517 S23379757 Area P23 EBIRD 45.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320442302 2021-11-09 18:17:26.599907 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Dutchess US-NY-027 13.0 Drake Lake L1363523 H 41.7871594 -73.8462642 2015-05-16 18:22:00 obsr2175245 S23486838 Stationary P21 EBIRD 40.0 3.0 1 G1274556 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311065654 2021-04-01 11:15:31.646886 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 07:30:00 obsr2078092 S22933716 Traveling P22 EBIRD 360.0 4.828 22.0 1 G1226459 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305877042 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 61 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-03-28 12:25:00 obsr1077730 S22562406 Traveling P22 EBIRD 110.0 2.012 11.0 1 G1195436 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303856239 2022-02-17 14:32:23.002448 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-18 10:13:00 obsr1605975 S22407884 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295418428 2015-02-07 18:06:24 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-02-07 09:45:00 obsr1102914 S21715470 Traveling P22 EBIRD 75.0 0.805 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297584754 2015-02-16 13:31:26 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Tioga US-NY-107 28.0 Parents house L1191707 P 42.0089992 -76.3041687 2015-02-16 13:00:00 obsr317968 S21901220 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309528839 2018-08-04 17:08:44 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-04-12 08:30:00 obsr2033754 S22828385 Traveling P22 EBIRD 20.0 0.402 2.0 1 G1218260 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304126247 2018-08-04 17:02:00 662 species avibase-FB738385 Bufflehead Bucephala albeola 18 United States US New York US-NY Suffolk US-NY-103 30.0 Wading River Marsh Preserve L123013 H 40.96167 -72.85778 2015-03-19 14:38:00 obsr2712298 S22428965 Traveling P22 EBIRD 29.0 0.4 3.0 1 G1185511 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311049119 2021-03-31 04:01:10.517395 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 07:35:00 obsr41879 S22932586 Traveling P22 EBIRD 320.0 8.047 16.0 1 G1224971 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305839400 2021-03-19 15:59:05.496822 483 species avibase-85625D75 Mallard Anas platyrhynchos N 42 United States US New York US-NY Allegany US-NY-003 28.0 Cuba Lake L1326387 H 42.2508599 -78.2923025 2015-03-28 11:19:00 obsr955789 S22559683 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323112735 2018-08-04 17:28:34 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-23 11:00:00 obsr1079517 S23647226 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295839733 2021-03-24 20:33:47.533911 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-02-09 16:00:00 obsr2001485 S21748258 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308254470 2021-04-01 11:30:42.037277 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY New York US-NY-061 30.0 The Gardens at St. Luke in the Fields (Barrow to Christopher St.) L3544992 H 40.7319766 -74.0069111 2015-04-07 12:26:00 obsr2179748 S22738600 Traveling P22 EBIRD 25.0 0.708 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307587525 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 8 United States US New York US-NY New York US-NY-061 30.0 Highbridge Park--N of Alexander Hamilton Bridge L2741557 H 40.8528936 -73.926117 2015-04-04 16:37:00 obsr1513140 S22689950 Traveling P22 EBIRD 35.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301994126 2021-03-30 19:03:54.667077 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-09 12:17:00 obsr2497657 S22255785 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294961605 2021-03-22 08:58:29.008072 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-03 obsr2277801 S21679449 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310007836 2021-03-30 19:37:33.521815 6616 species avibase-7E022378 Common Loon Gavia immer N 3 United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP--Maxwell Creek, Sodus L457203 H 43.2678938 -77.0241702 2015-04-14 13:52:00 obsr2914424 S22862453 Traveling P22 EBIRD 74.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317976057 2021-03-23 17:21:37.486392 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Fulton US-NY-035 13.0 Tillboro rd st johnsville L2255286 P 43.0266198 -74.5724702 2015-05-09 16:52:00 obsr1683226 S23350150 Traveling P22 EBIRD 159.0 4.828 2.0 1 G1261081 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307842593 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-05 09:00:00 obsr609516 S22707806 Rusty Blackbird Spring Migration Blitz P41 EBIRD 210.0 7.242 15.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS307724859 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-05 08:30:00 obsr822430 S22699143 Rusty Blackbird Spring Migration Blitz P41 EBIRD 190.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332447293 2016-12-07 20:24:52 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 8 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Area No. 5 L1314638 H 43.3661085 -77.9727495 2015-04-26 09:50:00 obsr334398 S24315804 Traveling P22 EBIRD 55.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129867 2018-09-13 17:40:51 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Steuben US-NY-101 28.0 Keuka Lake, Depot Park L499834 H 42.4103162 -77.2183648 2015-01-25 10:15:00 obsr1602357 S21533486 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303859095 2021-03-19 16:19:20.977326 591 species avibase-1929E1E1 Canvasback Aythya valisineria N X United States US New York US-NY Erie US-NY-029 13.0 Green Lake L3484890 P 42.7577 -78.75024 2015-03-18 11:51:00 obsr488746 S22408098 Traveling P22 EBIRD 53.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307808849 2017-04-17 22:24:10 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sunset Park, Ithaca L1528786 H 42.45875 -76.49325 2015-04-05 16:16:00 obsr1655171 S22705354 Stationary P21 EBIRD 3.0 2.0 1 G1212793 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312848053 2021-03-26 07:17:57.136956 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 12 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-25 13:23:00 obsr140280 S23050974 Traveling P22 EBIRD 99.0 8.047 1.0 1 G1241270 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312585961 2021-11-09 19:51:09.255083 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 35 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-03-29 08:30:00 obsr921269 S23033839 Traveling P22 EBIRD 270.0 6.437 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303996579 2015-03-20 20:38:22 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-03-18 11:00:00 obsr2633969 S22418571 Incidental P20 EBIRD 5.0 0 G1184875 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292943340 2021-11-09 18:43:18.378649 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Upton Lake Christian School L3271185 P 41.833243 -73.7613273 2015-01-22 07:30:00 obsr2862523 S21518853 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309385123 2021-03-23 17:26:08.495143 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-04-11 18:00:00 obsr676630 S22819281 Traveling P22 EBIRD 50.0 0.966 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312763512 2015-09-13 11:57:51 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-04-25 10:00:00 obsr1079517 S23046029 Area P23 EBIRD 35.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311825672 2021-03-23 17:00:13.087107 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Owen's platform boardwalk (0.03km) L301741 P 42.4810062 -76.4511417 2015-04-21 08:15:00 obsr2307843 S22982377 Traveling P22 EBIRD 5.0 0.02 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300709409 2021-11-09 18:44:40.267564 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Dutchess US-NY-027 13.0 1419 Salt Point Tpke, PV L3452967 P 41.7786673 -73.8233769 2015-02-28 10:30:00 obsr763723 S22157215 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295652390 2019-07-23 17:27:19 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 16 United States US New York US-NY Suffolk US-NY-103 US-NY_820 Old Field Point, Setauket, NY L3347914 P 40.9772532 -73.1184554 2015-02-08 16:00:00 obsr1585511 S21734314 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323977845 2021-03-24 20:53:39.352228 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.5747387 -74.1554202 2015-05-30 07:43:00 obsr1165633 S23706678 Traveling P22 EBIRD 250.0 3.219 8.0 1 G1296007 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304904824 2021-01-12 19:50:23.677101 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Warren US-NY-113 14.0 Warren County Bikeway--Ash Dr, Queensbury, NY L2588444 P 43.356634 -73.6842245 2015-03-23 13:17:00 obsr1222746 S22487148 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309114902 2021-12-08 07:58:41.562209 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-11 13:05:00 obsr1349960 S22801793 Traveling P22 EBIRD 109.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313525363 2018-08-04 17:12:30 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 28 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-27 08:20:00 obsr1830659 S23092200 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303348187 2021-03-26 06:29:56.44369 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-03-15 16:54:00 obsr334398 S22367893 Traveling P22 EBIRD 11.0 0.08 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293871643 2021-03-24 20:23:39.258075 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 3 United States US New York US-NY Suffolk US-NY-103 30.0 Saxon Ave L2324505 P 40.7237388 -73.2270741 2015-01-29 13:05:00 obsr2902954 S21592612 Stationary P21 EBIRD 95.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303658488 2018-08-04 17:01:31 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Westchester US-NY-119 28.0 Georges Island Park L374054 H 41.2407495 -73.943342 2015-03-15 16:30:00 obsr1540211 S22392433 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312241876 2021-03-26 07:07:10.758746 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Richmond US-NY-085 30.0 132 Blackford Avenue, SI, NY L800199 P 40.632401 -74.1401839 2015-04-23 06:57:00 obsr1231731 S23009819 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288773679 2021-04-01 12:14:19.266649 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-01-03 09:00:00 obsr547602 S21164938 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314116278 2021-11-09 20:58:37.907104 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Rockland US-NY-087 28.0 Stony Point SP L2550812 H 41.2416315 -73.9734417 2015-04-29 13:00:00 obsr1121454 S23129446 Traveling P22 EBIRD 150.0 3.54 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309515150 2021-01-10 16:39:54.759182 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 Male, Juvenile (4) United States US New York US-NY Warren US-NY-113 13.0 Pine View Cemetery, Queensbury L2128813 H 43.3335429 -73.6702341 2015-04-12 14:11:00 obsr1222746 S22827449 Traveling P22 EBIRD 22.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323260965 2021-11-15 03:06:58.889978 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-25 10:10:00 obsr1706920 S23656808 Traveling P22 EBIRD 200.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306214684 2021-03-26 06:07:45.516082 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-03-29 14:04:00 obsr1513140 S22587698 Traveling P22 EBIRD 184.0 3.492 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293224935 2018-08-04 16:55:16 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens X United States US New York US-NY Niagara US-NY-063 US-NY_1724 13.0 Niagara Falls SP--Goat Island L207766 H 43.080477 -79.0683617 2015-01-25 14:16:00 obsr916033 S21540873 Traveling P22 EBIRD 58.0 0.161 14.0 1 G1123049 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761321 2021-03-26 07:56:20.588749 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-07 16:00:00 obsr2218212 S22629517 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321290475 2021-03-26 07:56:20.588749 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-19 14:00:00 obsr916370 S23536336 Traveling P22 EBIRD 130.0 1.77 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320658443 2021-12-24 11:02:14.483178 27616 species avibase-D77E4B41 American Robin Turdus migratorius 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-17 17:29:00 obsr991026 S23498228 Traveling P22 EBIRD 65.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313791755 2018-08-04 17:12:36 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-04-28 09:31:00 obsr1303581 S23109203 Traveling P22 EBIRD 35.0 0.161 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312283761 2018-08-04 17:11:45 431 species avibase-90E2543E Blue-winged Teal Spatula discors 2 Unknown Sex, Adult (1); Female, Adult (1) United States US New York US-NY Fulton US-NY-035 13.0 Great Sacandaga Lake - Vicinity of Mayfield Town Beach. L1307270 P 43.1386605 -74.2288658 2015-04-22 10:09:00 obsr316199 S23012492 Stationary P21 EBIRD 63.0 4.0 1 G1232598 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309963308 2021-03-24 20:33:47.533911 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Tompkins US-NY-109 28.0 Ellis Hollow Rd. marsh L305355 H 42.4256205 -76.3860617 2015-04-14 09:54:00 obsr2871406 S22859412 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295511230 2021-12-10 08:21:29.396662 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 7 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-07 09:29:00 obsr1348614 S21722999 Traveling P22 EBIRD 192.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309667640 2021-04-01 11:42:50.317679 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-13 06:59:00 obsr1640315 S22837554 Stationary P21 EBIRD 80.0 1.0 1 G1217869 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308752480 2021-03-19 16:02:45.308962 7429 species avibase-1327AC55 Osprey Pandion haliaetus X United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-09 09:10:00 obsr1044068 S22776686 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299686697 2018-01-07 20:13:45 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 9 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-02-26 11:09:00 obsr2693145 S22079256 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307045223 2021-03-24 20:11:57.676649 622 species avibase-50566E50 Lesser Scaup Aythya affinis 3 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-02 08:10:00 obsr2914424 S22650997 Stationary P21 EBIRD 413.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291797283 2019-10-25 16:31:18 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 38 United States US New York US-NY St. Lawrence US-NY-089 US-NY_802 13.0 Robert Moses SP, Massena--Hawkins Point L5478679 H 45.000116 -74.7969121 2015-01-17 14:00:00 obsr1558090 S21408457 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310537960 2021-04-01 10:47:08.851048 32101 issf avibase-873DDCD2 White-crowned Sparrow Zonotrichia leucophrys White-crowned Sparrow (leucophrys) Zonotrichia leucophrys leucophrys 1 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-04-16 obsr800690 S22899473 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309732255 2021-03-26 06:29:56.44369 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 University of Rochester--River Front and Pedestrian Bridge L899443 H 43.1310098 -77.6327848 2015-04-13 12:09:00 obsr2678807 S22842606 Traveling P22 EBIRD 50.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296106883 2021-03-26 08:14:04.726922 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 12 United States US New York US-NY Warren US-NY-113 13.0 Gentry Lane L3353460 P 43.3414566 -73.658545 2015-02-07 obsr1471245 S21769518 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS345264482 2021-03-26 07:53:57.664705 6189 species avibase-39F29B55 Common Murre Uria aalge 1 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Inlet WMA Marshbird survey L2831974 P 42.7026229 -77.7038956 2015-05-29 05:00:00 obsr1060479 S25235543 Traveling P22 EBIRD 158.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312693485 2021-03-19 16:08:39.161312 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-24 17:31:00 obsr991026 S23041453 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309694457 2015-04-13 11:02:27 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_858 Accabonac Harbor L140939 H 41.0359237 -72.1389771 2015-04-11 11:45:00 obsr2226147 S22840070 Traveling P22 EBIRD 45.0 1.609 3.0 1 G1217995 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299918758 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 Male, Adult (1) United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-02-27 10:45:00 obsr827632 S22096910 Traveling P22 EBIRD 150.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308204663 2015-04-07 08:29:57 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 35 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-N Hamlin Rd L3545719 P 43.336932 -77.859669 2015-04-07 08:23:00 obsr334398 S22734697 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314193361 2022-03-05 22:03:50.715584 337 species avibase-694C127A Mute Swan Cygnus olor 4 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-29 17:45:00 obsr1544235 S23134219 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304714381 2018-08-04 17:02:29 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-03-22 14:45:00 obsr2071643 S22473212 Traveling P22 EBIRD 65.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306940456 2021-03-23 17:00:13.087107 662 species avibase-FB738385 Bufflehead Bucephala albeola 1250 United States US New York US-NY Tompkins US-NY-109 28.0 Mount Pleasant L99402 H 42.4581378 -76.3845436 2015-04-02 08:59:00 obsr887540 S22642928 Stationary P21 EBIRD 63.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296843113 2021-03-30 19:07:52.958398 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 25 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-14 15:22:00 obsr1189028 S21835193 Traveling P22 EBIRD 37.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290287740 2021-03-24 05:37:45.927792 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X 1 United States US New York US-NY Suffolk US-NY-103 30.0 West Lake L1433619 H 40.7640213 -73.0273589 2015-01-10 15:00:00 obsr757440 S21285854 Stationary P21 EBIRD 30.0 4.0 0 G1110535 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306122696 2021-03-24 20:33:47.533911 592 species avibase-3072CC16 Redhead Aythya americana 4 United States US New York US-NY Tompkins US-NY-109 13.0 Washington Park, Ithaca L3132474 H 42.44175 -76.50626 2015-03-29 18:32:00 obsr1318356 S22580635 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319136547 2021-04-01 12:32:15.282601 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-05-12 17:25:00 obsr1488063 S23414743 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309671688 2021-04-01 11:24:19.637193 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-04-13 07:57:00 obsr1124114 S22838589 Traveling P22 EBIRD 81.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308750713 2021-03-24 20:58:53.646623 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-08 07:35:00 obsr72341 S22776570 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309432331 2021-04-01 10:55:39.308231 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-12 09:30:00 obsr684505 S22821930 Traveling P22 EBIRD 280.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294215105 2021-03-30 19:13:38.458673 32797 spuh avibase-9BEE9467 grackle sp. Quiscalus sp. 4 United States US New York US-NY Monroe US-NY-055 Summerville Pier L275794 H 43.25659 -77.60215 2015-01-31 13:30:00 obsr2979658 S21619221 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312807944 2021-04-01 10:51:06.899622 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-04-25 11:53:00 obsr2497657 S23048753 Traveling P22 EBIRD 88.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310718951 2015-05-13 20:19:57 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Onondaga US-NY-067 US-NY_811 13.0 ONONDAGA LAKE L499477 P 43.095029 -76.2166214 2015-04-17 17:05:00 obsr642516 S22911355 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322372123 2015-08-02 20:59:37 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Livingston US-NY-051 US-NY_1760 13.0 US20 between 5 and Greenway L961048 P 42.9179036 -77.7740192 2015-05-14 06:44:00 obsr1060479 S23602430 Traveling P22 EBIRD 19.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296550557 2021-11-09 21:57:09.109628 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata X United States US New York US-NY Ulster US-NY-111 28.0 Old Fort Road- Gyrfalcon hotspot L3363101 P 41.6330074 -74.2334604 2015-02-13 08:55:00 obsr769149 S21808878 Traveling P22 EBIRD 335.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310619546 2020-07-20 09:16:51 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-17 07:38:00 obsr2224244 S22904938 Traveling P22 EBIRD 147.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1097181731 2021-03-17 21:07:25.717205 352 spuh avibase-F9EC83D6 swan sp. Cygnus sp. 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kanyoo Trail L152120 H 43.1168988 -78.430624 2015-05-20 10:00:00 obsr2155450 S83594695 Traveling P22 EBIRD 30.0 2.012 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291130492 2015-01-15 13:13:31 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Great Pond L137722 P 41.0666122 -72.4558716 2015-01-15 13:05:00 obsr2485753 S21355311 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310833008 2021-11-15 03:06:58.889978 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-11 12:40:00 obsr2072398 S22918928 Traveling P22 EBIRD 180.0 1.609 2.0 1 G1223862 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297264973 2021-03-26 07:07:10.758746 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 1 United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-02-15 14:06:00 obsr1893950 S21872879 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304713035 2021-04-26 04:57:02.963704 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 20 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-22 14:30:00 obsr152435 S22473107 Traveling P22 EBIRD 242.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313206271 2021-08-05 15:12:08.31456 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Heckscher SP, East Islip L547888 H 40.7129149 -73.1650615 2015-04-26 08:45:00 obsr706483 S23072261 Traveling P22 EBIRD 130.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322217806 2021-03-19 16:44:35.607263 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-23 11:22:00 obsr730231 S23593574 Traveling P22 EBIRD 42.0 1.127 2.0 1 G1285656 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309563702 2021-03-30 19:29:33.633096 11371 species avibase-75600969 Northern Flicker Colaptes auratus 12 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-12 09:55:00 obsr2106875 S22830716 Traveling P22 EBIRD 95.0 2.0 3.0 1 G1217074 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293816985 2021-03-26 07:07:10.758746 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-01-29 09:08:00 obsr1958124 S21587968 Traveling P22 EBIRD 9.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296761676 2021-03-23 16:51:24.016808 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 3 United States US New York US-NY Steuben US-NY-101 28.0 Caton L193214 T 42.05617 -77.02779 2015-02-14 09:12:00 obsr1624819 S21828020 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312037214 2021-04-01 12:41:58.738824 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 14 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-04-22 07:21:00 obsr1318356 S22996036 Stationary P21 EBIRD 12.0 3.0 1 G1231214 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291722738 2021-03-30 19:37:33.521815 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-01-18 14:45:00 obsr2945658 S21402587 Traveling P22 EBIRD 102.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308411069 2018-08-04 17:08:02 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Chemung US-NY-015 28.0 Corning-Elmira Airport Pond L3171065 P 42.153515 -76.894501 2015-04-07 19:20:00 obsr1318356 S22750065 Stationary P21 EBIRD 4.0 4.0 1 G1211185 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312853718 2021-03-19 16:19:20.977326 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 5 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-25 08:30:00 obsr2406623 S23051306 Traveling P22 EBIRD 240.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296155260 2018-08-04 16:56:05 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 50 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-11 11:24:00 obsr2224244 S21773348 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304963966 2018-08-04 17:02:21 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-21 15:45:00 obsr1882034 S22492152 Stationary P21 EBIRD 90.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308042096 2021-04-01 12:45:19.712958 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Westchester US-NY-119 30.0 Sheldrake Lake (Larchmont Reservoir) L714112 H 40.9527912 -73.7738478 2015-04-06 14:30:00 obsr363163 S22722088 Traveling P22 EBIRD 55.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316655940 2021-03-26 06:39:43.334073 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY New York US-NY-061 30.0 10012 L38925 P 40.72546 -73.99708 2015-05-06 18:00:00 obsr1923873 S23275483 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293233973 2021-11-09 17:50:20.071794 662 species avibase-FB738385 Bufflehead Bucephala albeola N 34 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook School Road, Millbrook, NY L1098111 P 41.8453963 -73.6169815 2015-01-25 08:00:00 obsr1062217 S21541592 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296162753 2015-02-11 17:40:26 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-02-11 07:07:00 obsr2716320 S21773911 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306798518 2015-04-01 18:47:44 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Suffolk US-NY-103 30.0 East Hampton High School L3130918 P 40.9700644 -72.2000664 2015-04-01 16:00:00 obsr931072 S22632348 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303243682 2021-03-30 19:07:52.958398 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-15 10:00:00 obsr644027 S22359471 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324243726 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 Unknown Sex, Immature (3); Unknown Sex, Adult (1) United States US New York US-NY New York US-NY-061 30.0 General Theological Seminary L1774930 H 40.745787 -74.0041152 2015-05-31 13:52:00 obsr2105033 S23723541 Stationary P21 EBIRD 10.0 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316787740 2021-12-24 11:02:14.483178 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-07 07:25:00 obsr1958774 S23283287 Traveling P22 EBIRD 95.0 2.092 2.0 1 G1291693 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315648884 2015-05-04 08:29:30 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Helderberg Hudson Rail Trail--Slingerlands to Voorheesville L2584243 H 42.6414841 -73.897974 2015-05-04 07:51:00 obsr2321296 S23217844 Traveling P22 EBIRD 37.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300095118 2022-03-08 13:50:22.901821 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 18 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-02-28 13:30:00 obsr1544235 S22111583 Traveling P22 EBIRD 100.0 1.609 2.0 1 G1162068 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311194005 2021-07-07 10:10:23.226504 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 28.0 von Engeln Preserve (TNC) L123087 H 42.5350144 -76.3148224 2015-04-19 10:17:00 obsr1696616 S22941392 Traveling P22 EBIRD 29.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314165268 2021-03-24 19:35:34.045988 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Erie US-NY-029 13.0 Birdsong Parklands L1352334 H 42.7530261 -78.7214375 2015-04-29 15:45:00 obsr916033 S23132446 Traveling P22 EBIRD 99.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318280589 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-09 17:00:00 obsr1282392 S23366073 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307009805 2018-08-04 17:05:08 27616 species avibase-D77E4B41 American Robin Turdus migratorius 500 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-02 17:53:00 obsr2211210 S22648457 Traveling P22 EBIRD 21.0 1.609 3.0 1 G1202323 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309331327 2021-04-01 12:18:57.910168 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 Female, Adult (2); Male, Adult (3) United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca City Cemetery L99398 H 42.4447668 -76.4912709 2015-04-12 08:42:00 obsr1066109 S22816005 Traveling P22 EBIRD 74.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312522505 2015-04-24 12:01:09 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-24 08:30:00 obsr646558 S23028669 Traveling P22 EBIRD 7.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313882344 2018-08-04 17:12:39 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Chautauqua US-NY-013 13.0 College Lodge SUNY L2220962 H 42.3440743 -79.4279337 2015-04-28 17:45:00 obsr2343764 S23115075 Traveling P22 EBIRD 90.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318395467 2018-08-06 22:29:34 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Broome US-NY-007 28.0 Triangle SF L2913510 H 42.3886616 -75.8853455 2015-05-10 08:55:00 obsr1044068 S23372398 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288514212 2021-03-26 06:29:56.44369 636 species avibase-B77377EE Common Eider Somateria mollissima 2 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-01-01 07:40:00 obsr1243175 S21143672 Incidental P20 EBIRD 2.0 1 G1091056 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291710298 2021-03-30 19:29:33.633096 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 6 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-18 06:50:00 obsr2574755 S21401577 Traveling P22 EBIRD 61.0 0.483 2.0 1 G1114112 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313040121 2021-04-01 11:30:42.037277 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-04-25 08:00:00 obsr856524 S23062498 Stationary P21 EBIRD 32.0 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS329151150 2021-03-26 06:21:54.883933 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 7 Female, Adult (5); Male, Adult (2) United States US New York US-NY Kings US-NY-047 30.0 Home L468661 P 40.6361565 -73.9647943 2015-04-12 08:00:00 obsr1666581 S24073417 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301632150 2018-08-04 16:59:02 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 10 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-03-08 11:16:00 obsr155915 S22227358 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313920399 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-02 12:30:00 obsr1652207 S23117527 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319115445 2021-03-30 19:07:52.958398 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 12:40:00 obsr150415 S23413633 Traveling P22 EBIRD 315.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316997935 2021-03-24 05:37:45.927792 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-07 10:09:00 obsr2071643 S23294914 Traveling P22 EBIRD 247.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307657398 2015-04-05 09:43:06 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-03-08 19:19:00 obsr2155111 S22694714 Traveling P22 EBIRD 7.0 3.54 2.0 1 G1205439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316052228 2021-11-09 19:01:40.008558 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 4 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-05 08:00:00 obsr671490 S23240641 Traveling P22 EBIRD 60.0 2.414 3.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS317706305 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:40:00 obsr2514491 S23335356 Traveling P22 EBIRD 560.0 15.771 6.0 1 G1259504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293415429 2015-01-26 16:49:40 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 1 United States US New York US-NY Montgomery US-NY-057 13.0 US-NY-Amsterdam - 42.9072x-74.1353 - Jan 24, 2015, 9:57 AM L3320393 P 42.907211 -74.135316 2015-01-24 09:57:00 obsr2268588 S21556362 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289259998 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 3 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-01-04 07:45:00 obsr2449897 S21204840 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297872794 2015-03-12 13:59:19 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 Unknown Sex, Adult (1) United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-02-16 10:45:00 obsr1488063 S21928441 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS296321629 2021-04-01 10:49:39.496318 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Emerson Park L354461 H 42.901996 -76.537299 2015-02-12 13:31:00 obsr2279567 S21788431 Traveling P22 EBIRD 74.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303911664 2021-11-09 18:32:19.957904 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 1 United States US New York US-NY Dutchess US-NY-027 13.0 Vanderbilt Mansion, Hyde Park, NY L2301051 P 41.8029545 -73.9391524 2015-03-18 09:15:00 obsr1339050 S22412316 Traveling P22 EBIRD 135.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311684247 2021-03-26 07:07:10.758746 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-20 16:55:00 obsr1958124 S22973202 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312035054 2021-05-10 13:35:55.973042 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Schuyler US-NY-097 13.0 Catharine Creek WMA--Rock Cabin Rd. L1359885 H 42.369661 -76.8471749 2015-04-22 06:28:00 obsr1318356 S22996035 Traveling P22 EBIRD 51.0 2.414 3.0 1 G1231215 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320503758 2018-08-06 22:30:21 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 S C2 S United States US New York US-NY Columbia US-NY-021 14.0 Drowned Lands Swamp Conservation Area L2704928 H 42.0536902 -73.5669422 2015-05-17 08:40:00 obsr798742 S23490084 Traveling P22 EBIRD 75.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314469962 2021-11-09 21:35:18.646328 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-30 09:30:00 obsr1636520 S23151433 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306040069 2017-07-20 20:46:20 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 10 United States US New York US-NY Wayne US-NY-117 13.0 Magog Rd. swamp, Macedon L907982 H 43.0401621 -77.2958343 2015-03-29 13:44:00 obsr749440 S22574380 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS333564980 2015-07-27 10:55:12 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Rochester-54 Nunda Blvd L3451802 P 43.140064 -77.562295 2015-05-17 10:00:00 obsr731272 S24398654 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320561771 2021-04-01 11:30:42.037277 662 species avibase-FB738385 Bufflehead Bucephala albeola 25 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-16 11:00:00 obsr609516 S23493006 Traveling P22 EBIRD 240.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311142737 2015-04-19 05:45:48 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Oswego US-NY-075 13.0 Helinger Road L592054 P 43.2938875 -76.0900211 2015-04-19 05:43:00 obsr979921 S22938211 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299124164 2022-02-17 14:32:23.002448 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-22 11:30:00 obsr876649 S22036259 Traveling P22 EBIRD 130.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309002539 2021-04-01 11:47:43.260314 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 13 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-10 08:04:00 obsr2945658 S22794581 Traveling P22 EBIRD 594.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317635167 2021-11-09 18:47:10.142806 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 off Kansas Rd, Clinton L3617395 P 41.8924253 -73.8331997 2015-04-27 08:15:00 obsr191447 S23331563 Traveling P22 EBIRD 195.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307672828 2020-03-22 07:58:01 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-05 09:37:00 obsr1696616 S22695735 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290557456 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-11 13:45:00 obsr2793388 S21309003 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294472175 2021-03-24 21:10:11.310781 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-01-30 08:00:00 obsr1664745 S21639485 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317079992 2021-03-26 06:39:43.334073 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-08 06:38:00 obsr2360922 S23299682 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311096210 2021-03-26 07:43:12.52294 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Wayne US-NY-117 13.0 East Palmyra L1156478 P 43.0839344 -77.1562529 2015-04-18 11:00:00 obsr2561613 S22935699 Area P23 EBIRD 240.0 0.607 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295159701 2021-03-23 17:22:05.708166 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-01-28 07:00:00 obsr2694889 S21694591 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296353290 2021-04-01 11:43:48.927316 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 44 United States US New York US-NY Ontario US-NY-069 13.0 Depew Rd./Charlton Rd. L3356972 P 42.838362 -77.1399021 2015-02-11 11:45:00 obsr528918 S21790828 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291339131 2021-03-24 20:58:53.646623 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 1 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-01-16 11:45:00 obsr72341 S21372435 Stationary P21 EBIRD 315.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298703839 2021-03-24 19:28:50.176616 406 species avibase-27B2749A Wood Duck Aix sponsa 3 United States US New York US-NY Columbia US-NY-021 13.0 Katherine's House L3183925 P 42.3590203 -73.7343174 2015-02-21 07:32:00 obsr2588479 S21999934 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306391982 2021-04-01 11:54:40.172593 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 10 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-03-30 17:45:00 obsr1958124 S22601130 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308017191 2021-03-26 08:14:57.071052 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Westchester US-NY-119 30.0 Backyard L1243032 P 41.1702553 -73.8428879 2015-04-05 15:00:00 obsr1540211 S22720319 Traveling P22 EBIRD 65.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291426550 2021-03-24 20:16:00.852773 27380 species avibase-E53FC25C Swainson's Thrush Catharus ustulatus 14 United States US New York US-NY Richmond US-NY-085 Conference House Park L302089 H 40.4995098 -74.2516756 2015-01-17 11:15:00 obsr155915 S21379484 Traveling P22 EBIRD 100.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312280199 2021-11-09 18:58:19.805596 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Dutchess US-NY-027 13.0 Mills-Norrie SP--Norrie Point L450314 H 41.8326889 -73.9417694 2015-04-22 10:00:00 obsr2175245 S23012282 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322332914 2015-05-23 20:11:07 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 1 United States US New York US-NY Jefferson US-NY-045 13.0 Watertown: Wiley Middle School woods L3667128 P 43.9536064 -75.9085 2015-05-21 12:30:00 obsr1558090 S23600006 Traveling P22 EBIRD 20.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300875721 2018-08-04 16:58:42 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 26 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-03-04 09:30:00 obsr736608 S22169914 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314852203 2018-02-01 15:11:46 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor7 L3513949 H 42.7456225 -75.9943152 2015-05-02 08:25:00 obsr620377 S23174670 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317448632 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-09 07:17:00 obsr1189028 S23320700 Traveling P22 EBIRD 108.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291564956 2021-04-01 11:15:31.646886 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-17 13:00:00 obsr2404047 S21390540 Traveling P22 EBIRD 129.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313940746 2021-03-30 19:29:33.633096 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-28 16:45:00 obsr1325561 S23118674 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322361302 2018-08-04 17:30:06 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 8 United States US New York US-NY Fulton US-NY-035 13.0 Cline Rd., marsh (east) L1144401 H 43.061062 -74.6492232 2015-05-23 19:22:00 obsr1708031 S23601638 Traveling P22 EBIRD 20.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314306104 2021-03-19 16:29:59.503892 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 15 United States US New York US-NY Jefferson US-NY-045 Kring Point SP L787951 H 44.378098 -75.8550806 2015-04-29 11:25:00 obsr2834886 S23141375 Traveling P22 EBIRD 30.0 4.828 2.0 1 G1244064 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308755501 2021-03-23 17:00:13.087107 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-07 17:29:00 obsr2683910 S22776860 Traveling P22 EBIRD 28.0 0.644 2.0 1 G1212814 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320367162 2021-04-01 11:30:42.037277 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-16 16:00:00 obsr1560381 S23482717 Traveling P22 EBIRD 120.0 1.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306676206 2021-04-01 11:15:31.646886 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Kings US-NY-047 30.0 Dyker Beach Park L1044216 H 40.6123885 -74.0192327 2015-04-01 07:39:00 obsr1189028 S22623478 Traveling P22 EBIRD 38.0 1.046 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304601063 2015-06-03 10:12:43 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-03-22 10:43:00 obsr1765131 S22464783 Traveling P22 EBIRD 50.0 0.805 2.0 1 G1191064 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318433227 2015-05-10 23:28:48 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-07 17:10:00 obsr1334267 S23374455 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303033354 2021-03-23 17:23:45.772216 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Livingston US-NY-051 13.0 river rd cuylerville L3487010 P 42.790173 -77.8707504 2015-03-14 10:09:00 obsr393804 S22343278 Traveling P22 EBIRD 22.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309280386 2021-04-01 12:32:15.282601 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-11 07:15:00 obsr1160328 S22812762 Traveling P22 EBIRD 120.0 24.14 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306897492 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-02 06:58:00 obsr894191 S22639499 Traveling P22 EBIRD 116.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305849232 2021-03-26 07:07:10.758746 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Richmond US-NY-085 30.0 Goethals Bridge Pond--Observation Platform L884460 H 40.6281787 -74.1741575 2015-03-28 09:30:00 obsr1893950 S22560352 Traveling P22 EBIRD 8.0 0.322 2.0 1 G1195294 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298847182 2021-03-23 16:39:03.255227 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 13 United States US New York US-NY Richmond US-NY-085 29.0 Tottenville Train Station (Ellis St.), Arthur Kill L884454 H 40.5136228 -74.2521407 2015-02-21 08:50:00 obsr1893950 S22011861 Stationary P21 EBIRD 17.0 2.0 1 G1155365 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314168834 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Great Hill L559908 H 40.7969094 -73.9588827 2015-04-29 14:50:00 obsr1706920 S23132678 Traveling P22 EBIRD 35.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319657368 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 05:50:00 obsr150865 S23444413 Traveling P22 EBIRD 360.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300208684 2021-03-24 21:10:11.310781 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 20 United States US New York US-NY Saratoga US-NY-091 13.0 Blockhouse Park L495270 H 42.937331 -73.6567533 2015-03-01 08:40:00 obsr1154 S22120528 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319961902 2021-03-26 06:29:56.44369 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-14 10:35:00 obsr1534851 S23461441 Traveling P22 EBIRD 55.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311332719 2021-03-24 21:09:00.82373 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Rensselaer US-NY-083 14.0 Webster Road, Petersburgh L2995274 P 42.8125725 -73.3311197 2015-04-19 14:30:00 obsr362655 S22949770 Traveling P22 EBIRD 155.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308417482 2018-08-04 17:08:03 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 17 United States US New York US-NY Suffolk US-NY-103 US-NY_808 30.0 US-NY-Southampton - 40.9362x-72.4240 - 8 Apr 2015 07:55 L3547915 P 40.936205 -72.424003 2015-04-08 07:55:00 obsr565436 S22750639 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312101751 2021-03-26 06:29:56.44369 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Monroe US-NY-055 13.0 Thomas Creek Wetlands L301584 H 43.0992 -77.4354163 2015-04-21 18:30:00 obsr749440 S23000215 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303043520 2021-12-28 15:50:27.785498 6339 species avibase-8535345B Herring Gull Larus argentatus 5 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-03-14 13:00:00 obsr606693 S22344068 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294183685 2021-04-01 11:15:31.646886 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 8 United States US New York US-NY Kings US-NY-047 Coney Island Beach--35th St. Overlook L1373631 H 40.5717813 -74.0006958 2015-01-31 14:25:00 obsr1711339 S21616835 Stationary P21 EBIRD 15.0 2.0 1 G1130239 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293618192 2021-04-01 11:54:40.172593 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 5 Male, Adult (3); Female, Adult (2) United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-01-27 09:00:00 obsr666331 S21572304 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319131577 2021-03-19 16:25:42.617988 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-12 07:31:00 obsr2693145 S23414450 Traveling P22 EBIRD 510.0 1.609 2.0 1 G1268391 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288908207 2021-03-30 12:05:58.533651 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 6 United States US New York US-NY Nassau US-NY-059 30.0 North Woodmere Park L1855788 P 40.644958 -73.736834 2015-01-03 14:20:00 obsr1220115 S21177831 Traveling P22 EBIRD 55.0 0.402 4.0 1 G1094303 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290369285 2021-03-30 19:43:32.881136 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 2 United States US New York US-NY Westchester US-NY-119 30.0 Deans Bridge, North Salem L2152201 H 41.3368943 -73.6588245 2015-01-09 08:00:00 obsr2078798 S21293984 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317862014 2021-03-30 19:39:10.250398 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-05-09 16:30:00 obsr547602 S23343660 Traveling P22 EBIRD 30.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290960851 2015-01-14 12:41:50 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-14 11:02:00 obsr1201479 S21341599 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293869057 2021-03-26 07:46:52.994574 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-01-29 14:52:00 obsr1154 S21592428 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314184489 2021-11-09 18:45:59.829413 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Dutchess US-NY-027 13.0 Kraus Residence L3566761 P 41.8664609 -73.6636305 2015-04-29 09:00:00 obsr1468815 S23133661 Traveling P22 EBIRD_NJ 345.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297189408 2021-04-01 11:30:42.037277 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-15 12:15:00 obsr876649 S21865822 Traveling P22 EBIRD 155.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307447233 2018-08-04 17:05:25 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Suffolk US-NY-103 30.0 Marratooka L143474 P 40.9934692 -72.5238113 2015-04-04 14:00:00 obsr2485753 S22680180 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323896364 2021-04-01 10:51:50.668112 6339 species avibase-8535345B Herring Gull Larus argentatus N 2 H C2 H United States US New York US-NY Chemung US-NY-015 28.0 Elmira Dam L160699 H 42.0864692 -76.8096739 2015-04-18 18:43:00 obsr1587816 S23701589 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312360495 2021-04-01 11:15:31.646886 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 8 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-23 13:20:00 obsr41879 S23017668 Traveling P22 EBIRD 140.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314058623 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 06:40:00 obsr145923 S23125937 Traveling P22 EBIRD 280.0 6.437 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298099170 2018-08-04 16:56:44 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 1 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-17 12:20:00 obsr2855945 S21947838 Stationary P21 EBIRD 60.0 2.0 1 G1151106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300014368 2019-07-23 17:27:33 6616 species avibase-7E022378 Common Loon Gavia immer 6 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-28 10:01:00 obsr1062070 S22104669 Traveling P22 EBIRD 34.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311454769 2021-07-29 22:34:36.897894 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-18 obsr1220115 S22957359 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304529048 2021-03-26 06:29:56.44369 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 30 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-03-21 08:00:00 obsr2449897 S22459477 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318677048 2021-03-19 16:32:34.732091 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 18:30:00 obsr1077730 S23387814 Traveling P22 EBIRD 60.0 1.0 6.0 1 G1265606 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303022588 2021-03-23 16:39:03.255227 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Richmond US-NY-085 30.0 Lemon Creek, bridge at Hylan Blvd. L916052 H 40.517649 -74.2011237 2015-03-14 10:10:00 obsr1958124 S22342281 Traveling P22 EBIRD 3.0 0.322 2.0 1 G1178969 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310239948 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Badgerow Park L140440 H 43.2569008 -77.6433029 2015-04-15 14:05:00 obsr2933610 S22878462 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305091957 2021-03-30 12:05:58.533651 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Nassau US-NY-059 30.0 North Woodmere Park L3514361 H 40.641285 -73.7363824 2015-03-24 11:30:00 obsr916370 S22502291 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306207119 2021-03-26 07:30:35.289997 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-29 08:25:00 obsr1655171 S22587124 Traveling P22 EBIRD 63.0 0.966 2.0 1 G1198724 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323357816 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 5 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-27 07:00:00 obsr2078092 S23663314 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301188677 2021-03-19 16:29:59.503892 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 21 United States US New York US-NY Jefferson US-NY-045 13.0 Kelsey Creek, Watertown L273304 H 43.9906455 -75.9170911 2015-03-05 11:00:00 obsr585290 S22192595 Traveling P22 EBIRD 360.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314197204 2021-03-26 06:39:43.334073 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-29 17:10:00 obsr1175815 S23134470 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303076280 2021-04-01 12:18:57.910168 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Tompkins US-NY-109 13.0 Portland Point Rd. and Overlook L270445 H 42.5285274 -76.5272433 2015-03-14 13:18:00 obsr730231 S22346586 Traveling P22 EBIRD 19.0 1.609 2.0 1 G1179148 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323676504 2018-08-06 22:31:12 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Essex US-NY-031 14.0 Schroon river L3680867 P 43.897911 -73.744598 2015-05-26 14:59:00 obsr2420101 S23685033 Traveling P22 EBIRD 120.0 6.437 2.0 1 G1294405 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313947160 2021-04-01 11:54:40.172593 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Richmond US-NY-085 30.0 Willowbrook Park L519640 H 40.6014415 -74.1580582 2015-04-28 15:45:00 obsr1533477 S23119034 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305558125 2021-11-09 22:37:57.097935 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 83 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Haven Road, Bashakill WMA L1674963 P 41.5361176 -74.5174734 2015-03-26 17:31:00 obsr1788273 S22538400 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296184760 2015-02-11 20:04:49 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-02-11 13:00:00 obsr479109 S21775728 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308415170 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 30.0 Dyker Beach Park L1044216 H 40.6123885 -74.0192327 2015-04-08 06:25:00 obsr1189028 S22750377 Traveling P22 EBIRD 73.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312028878 2021-03-24 20:33:47.533911 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 15 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-22 09:10:00 obsr2211210 S22995660 Traveling P22 EBIRD 30.0 0.805 2.0 1 G1231192 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313881335 2015-04-28 19:12:10 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Erie US-NY-029 13.0 Alden - Crittenden Rd. L586154 P 42.9165364 -78.4935379 2015-04-28 16:15:00 obsr2871264 S23115014 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305797833 2017-08-16 16:55:45 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 34 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Gilgo Beach L499715 H 40.6172753 -73.3947659 2015-03-28 10:45:00 obsr247620 S22556660 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306905827 2021-03-19 16:14:11.035882 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 1 United States US New York US-NY Cortland US-NY-023 28.0 Daisy Hollow Rd. wet meadows L2976557 H 42.4879855 -76.2249148 2015-04-02 09:36:00 obsr1696616 S22640200 Traveling P22 EBIRD 7.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312954581 2021-04-01 11:54:40.172593 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 3 United States US New York US-NY Richmond US-NY-085 30.0 SI-Goethals Bridge P/Bridge Creek L272491 P 40.6305777 -74.1856123 2015-04-25 08:11:00 obsr1032565 S23057267 Traveling P22 EBIRD 44.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302422561 2021-04-01 11:49:53.573686 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-04 07:55:00 obsr1982614 S22295910 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313074708 2021-11-09 19:21:07.406501 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-04-26 07:15:00 obsr671490 S23064646 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309356472 2018-08-04 17:08:50 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 13 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-12 11:16:00 obsr749440 S22817574 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314237520 2021-03-26 07:52:59.845315 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 4 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-29 07:45:00 obsr316199 S23137011 Area P23 EBIRD 95.0 2.59 2.0 1 G1243714 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313874422 2021-04-01 11:15:31.646886 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-28 07:30:00 obsr2078092 S23114598 Traveling P22 EBIRD 330.0 6.437 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311196618 2021-03-30 19:29:33.633096 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2798 30.0 Sagg Mains [ACW] L445952 P 40.90794 -72.28952 2015-04-18 16:18:00 obsr598381 S22941532 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309920891 2021-03-19 16:19:20.977326 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Erie US-NY-029 13.0 Ga and Papa's L2034730 P 42.6543513 -78.721118 2015-04-13 18:52:00 obsr2852739 S22856398 Traveling P22 EBIRD 16.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307713360 2021-04-01 11:30:42.037277 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-05 07:30:00 obsr2598985 S22698402 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313257043 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-26 12:30:00 obsr492329 S23075296 Traveling P22 EBIRD 210.0 4.828 2.0 1 G1237565 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298401507 2021-03-30 19:29:33.633096 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Cedar Beach Marina L283643 H 40.6342526 -73.3447755 2015-02-19 11:36:00 obsr1228860 S21973379 Traveling P22 EBIRD 23.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS355224200 2021-11-09 20:40:19.719779 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 6 United States US New York US-NY Putnam US-NY-079 28.0 Mahopac Yard L2129075 P 41.3747476 -73.7182617 2015-03-19 08:00:00 obsr1430256 S22428369 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297559666 2021-04-01 12:45:19.712958 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 37 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-16 12:00:00 obsr1732267 S21898919 Stationary P21 EBIRD 23.0 2.0 1 G1150452 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296135021 2021-03-26 07:07:10.758746 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 3 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-02-11 14:25:00 obsr1958124 S21771768 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315140821 2021-04-01 11:24:19.637193 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-05-02 06:45:00 obsr1782363 S23190360 Stationary P21 EBIRD 60.0 2.0 1 G1248879 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300111272 2018-03-11 13:42:44 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 Unknown Sex, Adult (1) United States US New York US-NY Saratoga US-NY-091 13.0 Crescent Park L502438 H 42.822394 -73.7358221 2015-02-28 14:00:00 obsr2774749 S22112988 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298847060 2021-03-26 07:07:10.758746 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus N 25 United States US New York US-NY Richmond US-NY-085 30.0 Alice Austen Park L2501813 H 40.6152891 -74.0630348 2015-02-21 11:34:00 obsr1893950 S22011854 Traveling P22 EBIRD 10.0 0.322 2.0 1 G1155359 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307255203 2021-11-09 20:59:08.000875 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 1 United States US New York US-NY Rockland US-NY-087 28.0 Home Base L2740178 P 41.1565566 -74.0795445 2015-04-03 18:48:00 obsr2820047 S22666115 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299653994 2021-03-23 16:30:20.514143 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 Female, Adult (2); Male, Adult (1) United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-01-26 07:45:00 obsr2409011 S22076869 Stationary P21 EBIRD 195.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316722323 2021-11-09 19:19:19.10935 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Dutchess US-NY-027 13.0 Ferncliff Forest L912597 H 41.9581817 -73.9246845 2015-05-06 07:40:00 obsr2175245 S23279417 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304854459 2021-03-26 06:29:56.44369 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 3 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-03-22 07:15:00 obsr2449897 S22483358 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316106616 2021-03-19 16:19:20.977326 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Erie US-NY-029 13.0 Home L2093742 P 42.7338768 -78.7242615 2015-05-05 10:12:00 obsr916033 S23243549 Stationary P21 EBIRD 183.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312720427 2021-03-26 06:55:00.227271 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-04-25 06:53:00 obsr606693 S23043240 Traveling P22 EBIRD 17.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313510096 2021-04-01 11:54:40.172593 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-27 08:00:00 obsr1620361 S23091467 Traveling P22 EBIRD 210.0 3.219 2.0 1 G1239560 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332423828 2021-03-30 19:13:38.458673 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 24 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-10 09:40:00 obsr334398 S24314196 Stationary P21 EBIRD 49.0 3.0 1 G1472326 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320681938 2021-03-26 06:39:43.334073 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-05-15 08:45:00 obsr1706920 S23499464 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324165943 2021-11-09 18:20:58.864231 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA--Kidd Ln. Gravel Rd. L1457415 H 42.041573 -73.9101222 2015-05-27 07:35:00 obsr2228949 S23718629 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321655108 2021-04-01 11:15:31.646886 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-21 05:54:00 obsr152435 S23558671 Traveling P22 EBIRD 175.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303022298 2021-03-24 20:13:27.613389 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 15 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-03-11 10:00:00 obsr1982614 S22342249 Traveling P22 EBIRD 65.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297910731 2021-03-24 20:23:39.258075 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 15 United States US New York US-NY Suffolk US-NY-103 30.0 My Backyard L1767606 P 40.9186002 -72.3766669 2015-02-16 07:00:00 obsr1864342 S21931485 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311175907 2021-04-01 11:42:50.317679 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Oneida US-NY-065 13.0 Oneida County L3558932 P 43.111899 -75.20445 2015-04-12 17:48:00 obsr2700277 S22940305 Incidental P20 EBIRD 1.0 1 G1225669 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323242107 2021-03-26 07:52:59.845315 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-26 07:57:00 obsr316199 S23655650 Area P23 EBIRD 102.0 2.59 2.0 1 G1292077 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309516927 2021-11-15 03:06:58.889978 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-12 12:12:00 obsr2243270 S22827573 Traveling P22 EBIRD 25.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310100496 2018-08-04 17:09:10 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 4 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-14 15:15:00 obsr2406624 S22869139 Traveling P22 EBIRD 50.0 0.805 2.0 1 G1220064 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322773930 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 160 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 06:11:00 obsr1189028 S23625732 Traveling P22 EBIRD 136.0 2.414 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305376917 2021-04-01 11:43:48.927316 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 100 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, City Pier L357819 H 42.871907 -77.2725534 2015-03-26 07:39:00 obsr1243175 S22524408 Traveling P22 EBIRD 13.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311110925 2021-03-26 07:46:52.994574 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-04-12 08:30:00 obsr405772 S22936573 Stationary P21 EBIRD 210.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311076984 2021-04-24 09:25:32.068828 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 H C2 H United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 15:36:00 obsr924076 S22934530 Traveling P22 EBIRD 231.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319555417 2021-04-01 12:31:09.823741 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Livingston US-NY-051 13.0 PFA South Caledonia route L1168673 P 42.9306621 -77.8268051 2015-05-14 05:25:00 obsr1060479 S23438769 Traveling P22 EBIRD 84.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311791859 2021-04-01 11:47:43.260314 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 4 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-04-21 08:28:00 obsr2224244 S22979908 Traveling P22 EBIRD 22.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316803061 2015-07-12 16:51:07 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 2 United States US New York US-NY Erie US-NY-029 13.0 Knox Farm SP L160588 H 42.7715237 -78.636327 2015-05-07 07:15:00 obsr2825336 S23284088 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313444520 2021-03-19 16:29:59.503892 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Jefferson US-NY-045 13.0 Route 3; Sackets Harbor L3582142 P 43.9391364 -76.0975045 2015-04-25 10:00:00 obsr490751 S23087568 Traveling P22 EBIRD 60.0 32.187 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302709393 2015-03-12 19:39:37 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Saratoga US-NY-091 13.0 Hudson River @ Bunce Lane, Stillwater L2738236 P 42.9363913 -73.6592692 2015-03-12 08:40:00 obsr2855945 S22317859 Stationary P21 EBIRD 20.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302537923 2021-03-19 16:08:39.161312 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-03-11 14:30:00 obsr479109 S22304734 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302641560 2018-08-04 16:59:45 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-03-12 12:30:00 obsr1472872 S22312896 Traveling P22 EBIRD 63.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307009802 2018-08-04 17:05:08 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 75 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-02 17:53:00 obsr2211210 S22648457 Traveling P22 EBIRD 21.0 1.609 3.0 1 G1202323 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300993102 2021-04-01 11:43:48.927316 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Ontario US-NY-069 13.0 Muar Lake west, Canandaigua L786557 H 42.8801468 -77.2634339 2015-03-04 09:55:00 obsr528918 S22178588 Traveling P22 EBIRD 5.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309258679 2021-03-26 07:30:35.289997 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-04-11 08:00:00 obsr2137468 S22811368 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304407218 2022-02-17 14:32:23.002448 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-21 11:40:00 obsr152435 S22450555 Traveling P22 EBIRD 166.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314445247 2018-08-04 17:13:12 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-30 19:08:00 obsr749440 S23149715 Stationary P21 EBIRD 13.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311259321 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 08:00:00 obsr454647 S22945364 Traveling P22 EBIRD 270.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290448712 2021-03-26 07:00:33.333856 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Queens US-NY-081 30.0 Home L2599534 P 40.6692463 -73.7323165 2015-01-11 07:45:00 obsr2505956 S21300356 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288754500 2021-11-09 21:56:49.532458 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Ulster US-NY-111 28.0 JBNHS Wallkill Valley L3261313 P 41.7462135 -74.0883636 2015-01-03 08:00:00 obsr2862523 S21163349 Traveling P22 EBIRD 300.0 40.234 37.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290888855 2021-04-01 12:14:19.266649 255 species avibase-466E9077 Greater White-fronted Goose Anser albifrons 2 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune. road, West Hampton NY L2643549 P 40.827766 -72.5300539 2015-01-13 14:30:00 obsr2534001 S21335950 Traveling P22 EBIRD 60.0 9.656 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340584642 2021-03-26 06:13:28.501496 32949 species avibase-15EB3000 Hooded Warbler Setophaga citrina 2 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.1752556 -76.8558787 2015-05-06 18:30:00 obsr2736418 S24908737 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305739279 2019-01-03 10:50:02 7429 species avibase-1327AC55 Osprey Pandion haliaetus 36 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Oak Beach L267998 H 40.63923 -73.28832 2015-03-27 13:15:00 obsr564905 S22552383 Traveling P22 EBIRD 85.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309746124 2022-03-05 22:03:50.715584 6254 species avibase-FB4D08F0 Black-legged Kittiwake Rissa tridactyla 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-13 11:30:00 obsr2219590 S22844249 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293586791 2021-04-01 12:18:57.910168 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 21 United States US New York US-NY Tompkins US-NY-109 28.0 Mount Pleasant, east hill L693939 H 42.4591964 -76.3726723 2015-01-27 15:20:00 obsr2724574 S21569898 Traveling P22 EBIRD 20.0 3.219 2.0 1 G1126895 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295547766 2018-08-04 16:55:55 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 33 United States US New York US-NY Richmond US-NY-085 30.0 Cameron Lake L1441085 H 40.6004365 -74.0804102 2015-02-08 12:17:00 obsr155915 S21725865 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313832343 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-28 10:00:00 obsr1731572 S23111801 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288443702 2019-01-27 11:09:05 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-01 07:15:00 obsr1121454 S21137670 Traveling P22 EBIRD 75.0 4.023 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305421605 2018-08-04 17:02:55 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 6 United States US New York US-NY Suffolk US-NY-103 30.0 Town Docks L160638 P 41.062866 -72.42465 2015-03-26 13:04:00 obsr2485753 S22527881 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302506865 2022-02-04 06:14:13.892644 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-03-10 14:05:00 obsr658542 S22302107 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317195344 2021-03-30 19:13:38.458673 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--South Marina L458871 H 43.3060838 -77.7083373 2015-05-08 08:32:00 obsr2774009 S23305709 Traveling P22 EBIRD 45.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS379411310 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-14 13:20:00 obsr1477666 S28009497 Traveling P22 EBIRD 40.0 0.805 3.0 1 G1634067 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS317743784 2021-03-26 06:38:32.090082 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 2 United States US New York US-NY Montgomery US-NY-057 13.0 Fort Johnson (village) L474793 P 42.9614477 -74.240799 2015-05-09 10:45:00 obsr1187325 S23337416 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311006445 2021-07-17 13:13:12.794892 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay WR L1292713 P 40.620038 -73.8270522 2015-04-18 07:30:00 obsr827632 S22929882 Traveling P22 EBIRD 180.0 1.5 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319802846 2021-03-19 16:44:35.607263 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-14 13:35:00 obsr2001485 S23452966 Traveling P22 EBIRD 68.0 1.609 2.0 1 G1271744 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311405545 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 10:15:00 obsr609516 S22954345 Traveling P22 EBIRD 150.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316185020 2021-04-01 12:32:15.282601 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-05 06:30:00 obsr916370 S23247849 Traveling P22 EBIRD 140.0 4.989 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293851359 2021-03-30 19:37:33.521815 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla X United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-01-29 12:41:00 obsr2914424 S21590779 Traveling P22 EBIRD 67.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317643705 2021-04-01 10:45:00.916278 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-09 07:00:00 obsr1135516 S23332052 Traveling P22 EBIRD 420.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307296696 2022-02-27 09:35:49.066489 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 125 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-04-03 12:15:00 obsr2087436 S22669211 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288244138 2021-04-01 12:18:57.910168 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Tompkins US-NY-109 13.0 Nate's Patch--Bluegrass to Hanshaw to Freese L1006570 P 42.4655757 -76.4526987 2015-01-01 13:03:00 obsr1062070 S21121293 Traveling P22 EBIRD 222.0 5.794 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319958063 2021-11-15 03:06:58.889978 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 08:15:00 obsr139757 S23461248 Traveling P22 EBIRD 240.0 3.219 4.0 1 G1272364 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309660175 2016-01-16 20:09:17 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 12 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-04-13 08:14:00 obsr2683910 S22837070 Stationary P21 EBIRD 4.0 2.0 1 G1218239 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316037481 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 06:13:00 obsr150415 S23239811 Traveling P22 EBIRD 146.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313998908 2021-11-15 03:06:58.889978 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 07:39:00 obsr870166 S23122462 Traveling P22 EBIRD 90.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS359810290 2021-03-26 06:09:25.361188 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 1 United States US New York US-NY Broome US-NY-007 28.0 Tracy Creek Rd. L3578052 P 42.0187322 -76.080392 2015-05-06 08:00:00 obsr998593 S26358877 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318178405 2021-03-24 19:48:44.880783 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 8 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Durand-Eastman Park--Zoo Rd. L139792 H 43.2279443 -77.557404 2015-05-10 06:55:00 obsr302343 S23360541 Traveling P22 EBIRD 170.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307846667 2021-03-26 06:39:43.334073 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-05 10:54:00 obsr1548221 S22708118 Traveling P22 EBIRD 54.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316132667 2015-05-05 14:41:50 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Fulton US-NY-035 14.0 HOME L2580910 P 43.1207486 -74.5033795 2015-05-05 14:00:00 obsr117560 S23244959 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308674159 2021-04-01 12:18:57.910168 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: home to Stewart Pk via CWT L1060287 P 42.451328 -76.5070724 2015-04-07 16:38:00 obsr2760150 S22770380 Traveling P22 EBIRD 106.0 5.601 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304348878 2021-03-24 20:33:47.533911 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Salt Point Natural Area L353038 H 42.5394116 -76.5496267 2015-03-21 08:55:00 obsr59643 S22446164 Stationary P21 EBIRD 33.0 10.0 1 G1187140 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317789905 2021-04-01 11:30:42.037277 33049 species avibase-136451CF Yellow-throated Warbler Setophaga dominica 1 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-09 16:15:00 obsr1135516 S23339764 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322472359 2018-08-04 17:30:07 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-24 06:45:00 obsr2843748 S23608031 Traveling P22 EBIRD 165.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323810147 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-29 12:30:00 obsr511959 S23695668 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324184872 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park--Southwest L154031 H 40.593426 -73.92352 2015-05-31 08:15:00 obsr2404047 S23719718 Traveling P22 EBIRD 134.0 1.979 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305985721 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 1 United States US New York US-NY Broome US-NY-007 28.0 Tri-City Airport L2347159 H 42.08439 -76.093867 2015-03-29 10:03:00 obsr1764243 S22570596 Traveling P22 EBIRD 13.0 0.483 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313137472 2021-03-19 16:44:35.607263 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-04-26 12:35:00 obsr2933610 S23068250 Traveling P22 EBIRD 42.0 0.322 2.0 1 G1239042 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300762853 2015-04-07 11:16:01 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Chenango US-NY-017 28.0 535 Moran Rd, Oxford L2650908 P 42.3464446 -75.6593978 2015-03-03 06:30:00 obsr1303581 S22161127 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308224705 2021-03-26 06:14:19.776945 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Columbia US-NY-021 13.0 Columbia-Greene Community College L2429955 P 42.2165679 -73.8188553 2015-04-07 08:20:00 obsr481595 S22736278 Traveling P22 EBIRD 115.0 0.322 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295398738 2020-05-16 18:08:13 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Otsego US-NY-077 28.0 Spring St. L1941350 P 42.4535841 -75.0682148 2015-02-07 10:00:00 obsr1452192 S21713928 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304673459 2015-03-23 10:48:41 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Road L2843782 P 42.43659 -76.39238 2015-03-22 11:01:00 obsr1655171 S22470140 Traveling P22 EBIRD 13.0 0.483 2.0 1 G1190060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302682905 2021-11-15 03:06:58.889978 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-12 13:15:00 obsr215694 S22315657 Traveling P22 EBIRD 105.0 0.805 14.0 1 G1176950 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304379447 2018-08-04 17:02:15 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3503151 P 42.778811 -73.701099 2015-03-21 12:08:00 obsr2937317 S22448517 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312013780 2021-04-01 11:49:53.573686 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Queens US-NY-081 30.0 Flushing Meadows Corona Park--Willow Lake L1788997 H 40.7238052 -73.8330507 2015-04-17 12:00:00 obsr1734972 S22994632 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308078941 2021-04-01 12:32:15.282601 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-06 14:00:00 obsr547602 S22724709 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313139663 2018-02-01 15:11:46 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor20 L3513962 H 42.7170586 -76.0855457 2015-04-26 08:10:00 obsr887558 S23068370 Stationary P21 EBIRD 14.0 3.0 1 G1236962 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300685522 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 East River, Brooklyn Bridge to S.I. Ferry L3339003 H 40.7039737 -74.0059423 2015-03-03 07:58:00 obsr2179748 S22155432 Traveling P22 EBIRD 58.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291063798 2021-03-30 19:43:32.881136 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 50 United States US New York US-NY Westchester US-NY-119 30.0 Van Cortlandt Manor L2884804 H 41.1919985 -73.8764551 2015-01-14 14:30:00 obsr114791 S21349928 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313730528 2018-08-04 17:12:30 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Schoharie US-NY-095 28.0 Franklinton Vlaie L876603 H 42.5407577 -74.2995715 2015-04-27 09:00:00 obsr2161435 S23105368 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305694411 2021-03-30 19:29:33.633096 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 4 United States US New York US-NY Suffolk US-NY-103 30.0 Wading River Marsh Preserve inlet L3519081 P 40.9648544 -72.8635082 2015-03-26 11:45:00 obsr1954215 S22549006 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319539219 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 07:11:00 obsr2313260 S23437832 Traveling P22 EBIRD 261.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289729391 2021-04-01 10:47:08.851048 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 205 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-01-07 08:05:00 obsr646558 S21241769 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296719774 2015-02-14 12:21:25 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Herkimer US-NY-043 14.0 307 S Shore Acres Rd, Old Forge, NY L2651116 P 43.708235 -74.92468 2015-02-14 09:20:00 obsr2477799 S21824129 Stationary P21 EBIRD 178.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303856887 2021-03-24 20:06:25.370375 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 Male, Adult (1); Female, Adult (4) United States US New York US-NY Ontario US-NY-069 13.0 307 gibson street L2985189 P 42.8953301 -77.2708261 2015-03-18 11:40:00 obsr2979658 S22407928 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306530353 2021-03-19 16:08:39.161312 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-03-31 12:15:00 obsr1224512 S22612025 Traveling P22 EBIRD 45.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308414669 2021-11-09 22:39:58.423847 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Sullivan US-NY-105 US-NY_2792 28.0 Rt. 97-Roebling Bridge L275797 P 41.4846304 -74.9833494 2015-04-06 11:18:00 obsr1032565 S22750331 Traveling P22 EBIRD 34.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294531556 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 22 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-02-02 07:30:00 obsr2321296 S21644240 Stationary P21 EBIRD 85.0 2.0 1 G1132946 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292687903 2015-01-22 20:17:00 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 1 United States US New York US-NY Rensselaer US-NY-083 13.0 Troy Federal Lock and Dam (Rensselaer Co.) L548084 H 42.750047 -73.6860516 2015-01-22 16:30:00 obsr1735540 S21498805 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304484964 2021-03-23 16:30:20.514143 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 4 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-21 17:02:00 obsr2945658 S22456309 Stationary P21 EBIRD 148.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310339890 2021-11-09 21:41:38.795423 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-04-15 06:00:00 obsr1588136 S22885384 Stationary P21 EBIRD 660.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311297635 2021-04-01 12:14:19.266649 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 20 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-19 14:28:00 obsr1228860 S22947664 Traveling P22 EBIRD 43.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312715838 2021-03-26 07:07:10.758746 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 10 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--S entrance (maint. bldgs) L1350789 H 40.5146545 -74.2124928 2015-04-25 06:22:00 obsr1958124 S23042890 Traveling P22 EBIRD 4.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310625081 2015-04-17 20:08:19 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 12 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-04-16 11:00:00 obsr717785 S22905418 Traveling P22 EBIRD 60.0 0.805 3.0 1 G1223382 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290159370 2021-03-30 19:37:33.521815 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 8 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-01-10 10:35:00 obsr2914424 S21276741 Traveling P22 EBIRD 39.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307715620 2021-03-26 06:55:00.227271 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-04-05 obsr1338126 S22698539 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299081791 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-22 09:40:00 obsr822430 S22033190 Traveling P22 EBIRD 280.0 4.828 5.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS295486765 2015-02-08 00:37:10 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Rt 5 - between Little Falls & East Herkimer L828039 P 43.0229922 -74.9191618 2015-02-04 15:05:00 obsr2253673 S21721037 Incidental P20 EBIRD 0 G1138557 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317607057 2018-08-04 17:15:28 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 07:00:00 obsr376929 S23330088 Traveling P22 EBIRD 210.0 4.828 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310945727 2021-03-26 07:07:10.758746 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 15 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-18 13:22:00 obsr1958124 S22926012 Traveling P22 EBIRD 85.0 2.414 3.0 1 G1224790 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307102497 2015-04-03 08:16:11 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Greene US-NY-039 28.0 Mountain Top Arboretum L2570388 H 42.2232738 -74.1335106 2015-04-02 13:30:00 obsr2905659 S22655321 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298881858 2021-03-24 19:27:13.077399 27616 species avibase-D77E4B41 American Robin Turdus migratorius 8 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-02-21 08:12:00 obsr1334267 S22014677 Stationary P21 EBIRD 44.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319131591 2021-03-19 16:25:42.617988 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 20 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-12 07:31:00 obsr2693145 S23414450 Traveling P22 EBIRD 510.0 1.609 2.0 1 G1268391 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306011372 2021-03-30 19:13:38.458673 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 11:40:00 obsr934639 S22572430 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300920601 2016-09-12 10:28:00 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-02-28 10:30:00 obsr2475075 S22173266 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299531712 2021-04-01 12:29:50.209479 33216 species avibase-1F09CCCC Wilson's Warbler Cardellina pusilla 1 United States US New York US-NY Fulton US-NY-035 13.0 mom's place L1207546 P 42.9963298 -74.371047 2015-02-25 09:00:00 obsr2590001 S22067334 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305207893 2019-07-23 17:28:07 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 22 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-03-25 08:51:00 obsr1092576 S22511091 Stationary P21 EBIRD 17.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313737988 2021-04-01 11:30:42.037277 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 07:00:00 obsr1668936 S23105864 Traveling P22 EBIRD 144.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323676694 2018-08-06 22:31:12 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Essex US-NY-031 14.0 Schroon river L3680867 P 43.897911 -73.744598 2015-05-26 14:59:00 obsr2693145 S23685051 Traveling P22 EBIRD 120.0 6.437 2.0 1 G1294405 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294771362 2021-03-26 06:58:34.561206 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Orleans US-NY-073 13.0 US-NY-Medina-12534 Hemlock Ridge Rd L2518220 P 43.170197 -78.313263 2015-02-03 15:21:00 obsr916033 S21663785 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312494769 2022-02-13 06:32:05.759346 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-04-24 07:36:00 obsr1092576 S23026877 Traveling P22 EBIRD 20.0 1.609 2.0 1 G1233728 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311082276 2021-03-19 16:12:42.877422 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Columbia US-NY-021 14.0 Larkspur Farm woods (private) L3150691 P 42.1917199 -73.6003561 2015-04-18 07:25:00 obsr2842267 S22934818 Traveling P22 EBIRD 95.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380136 2021-04-01 12:11:50.996293 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Seneca US-NY-099 13.0 Rock River Rd., Ovid L1103973 H 42.647565 -76.7664528 2015-01-31 16:34:00 obsr2683910 S21632311 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1131552 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288423814 2021-03-23 16:21:52.613913 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Ontario US-NY-069 13.0 Hopewell, County Road 4 L1875396 P 42.90059 -77.23498 2015-01-02 08:10:00 obsr1243175 S21136011 Traveling P22 EBIRD 2.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315208113 2021-12-24 11:02:14.483178 526 species avibase-56CCA717 Northern Pintail Anas acuta 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-03 07:38:00 obsr2595828 S23194329 Traveling P22 EBIRD 83.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314002090 2018-11-23 12:30:13 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Dayhoff Boardwalk (0.087 km) L835705 P 42.4764691 -76.4547345 2015-04-29 07:41:00 obsr2307843 S23122656 Traveling P22 EBIRD 5.0 0.05 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS920853691 2021-03-23 16:30:20.514143 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Pulaski-36 Windcrest Dr L3099636 P 43.574895 -76.136795 2015-04-29 07:00:00 obsr2720788 S68975050 Traveling P22 EBIRD 30.0 3.219 1.0 1 G5326509 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305415439 2021-03-26 07:20:31.408164 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 5 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-03-09 07:00:00 obsr1592950 S22527379 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305882372 2021-11-15 03:06:58.889978 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-28 13:30:00 obsr2310825 S22562788 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313069197 2021-03-24 20:23:39.258075 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Suffolk US-NY-103 30.0 Birdfeeder L3591429 P 40.9038312 -73.3244598 2015-04-26 08:00:00 obsr1571236 S23064328 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302476585 2021-03-26 07:30:35.289997 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Tompkins US-NY-109 13.0 Enfield Center Rd. W of Sheffield Rd., Enfield L3481028 P 42.43758 -76.57167 2015-03-11 07:48:00 obsr1655171 S22299812 Traveling P22 EBIRD 37.0 0.322 2.0 1 G1175087 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308576253 2021-11-09 21:35:18.646328 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 3 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-08 07:50:00 obsr1636520 S22750419 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322195603 2021-03-19 16:44:35.607263 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 5 United States US New York US-NY Monroe US-NY-055 13.0 Whiting Rd. Nature Preserve L524399 H 43.251267 -77.4698353 2015-05-23 07:10:00 obsr302343 S23592442 Traveling P22 EBIRD 155.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321541586 2021-11-09 18:11:08.644452 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Dutchess US-NY-027 28.0 Great Thicket NWR (pka Nellie Hill Preserve) L123077 H 41.73139 -73.57333 2015-05-20 15:13:00 obsr1732267 S23551598 Traveling P22 EBIRD 90.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320303439 2015-05-16 20:02:42 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-16 08:30:00 obsr1463039 S23479511 Traveling P22 EBIRD 150.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312622954 2021-04-01 12:24:14.132004 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 DeGroot L2789244 P 43.213961 -73.574582 2015-04-24 13:39:00 obsr648176 S23036592 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317201437 2021-03-24 19:48:44.880783 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 15 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-08 10:54:00 obsr334398 S23305996 Traveling P22 EBIRD 32.0 0.322 2.0 1 G1257531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314919297 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-05-02 12:15:00 obsr1561508 S23178164 Stationary P21 EBIRD 30.0 2.0 1 G1247352 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311166552 2015-04-19 09:13:24 11494 species avibase-20C2214E American Kestrel Falco sparverius 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-04-19 08:30:00 obsr879105 S22939740 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309476443 2021-03-01 11:20:54.007808 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-12 15:34:00 obsr887540 S22824738 Traveling P22 EBIRD 35.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301139426 2019-09-02 08:13:38 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Rensselaer US-NY-083 14.0 Lewis Hollow, Lewis Hollow Rd, Petersburg L2975904 P 42.7672603 -73.3371735 2015-03-05 15:15:00 obsr2855945 S22189034 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297371133 2021-03-24 20:58:04.794277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Herkimer US-NY-043 13.0 Jordanville L2656015 P 42.9615683 -74.9959715 2015-02-14 07:45:00 obsr629408 S21882175 Historical P62 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082749 2021-03-24 19:27:13.077399 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-17 15:28:00 obsr1334267 S21430583 Traveling P22 EBIRD 18.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320256535 2021-11-09 19:19:16.74786 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Dutchess US-NY-027 13.0 Tivoli Bays - Kidd Lane L902373 P 42.0455003 -73.906703 2015-05-14 08:45:00 obsr2954986 S23477056 Traveling P22 EBIRD 95.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322390762 2021-04-01 12:31:09.823741 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 10 United States US New York US-NY Livingston US-NY-051 13.0 PFA N_York L1174402 P 42.9077829 -77.9018211 2015-05-22 05:12:00 obsr1060479 S23603474 Traveling P22 EBIRD 84.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311869763 2021-12-08 07:58:41.562209 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-21 12:15:00 obsr1025848 S22985019 Traveling P22 EBIRD 120.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295038761 2021-03-26 07:07:10.758746 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-05 13:45:00 obsr1958124 S21686495 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299511043 2015-02-25 10:17:53 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-02-25 08:23:00 obsr666964 S22065708 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303383929 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 12 United States US New York US-NY Kings US-NY-047 Coney Island Creek Park L614792 H 40.5813224 -74.0052688 2015-03-15 10:46:00 obsr41879 S22370677 Traveling P22 EBIRD 30.0 1.609 2.0 1 G1181613 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315635230 2021-03-26 06:15:05.840405 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 4 United States US New York US-NY Cortland US-NY-023 28.0 AviCor30 L3513972 H 42.745 -76.2441865 2015-05-04 06:58:00 obsr620377 S23217018 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313169263 2021-04-01 12:32:15.282601 242 species avibase-D3A260BC Snow Goose Anser caerulescens X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-26 08:00:00 obsr2207991 S23070112 Traveling P22 EBIRD 60.0 0.322 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308278419 2018-08-04 17:07:59 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-07 13:30:00 obsr290506 S22740158 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304416900 2018-08-04 17:02:17 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Tioga US-NY-107 28.0 Cannon Hole (Barton Landing) L3319362 H 42.0246104 -76.4646721 2015-03-21 13:00:00 obsr317968 S22451196 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311704719 2021-04-01 11:30:42.037277 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-20 17:20:00 obsr2277801 S22974538 Historical P62 EBIRD 90.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317227351 2021-03-19 16:29:59.503892 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 7 United States US New York US-NY Jefferson US-NY-045 13.0 Eastern Parcel - Private L3615491 P 43.9955931 -76.0055208 2015-05-07 05:30:00 obsr544268 S23307439 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291975925 2021-03-24 21:01:50.671145 447 species avibase-C235A4D7 Gadwall Mareca strepera X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park /Hendr.Park L365070 P 40.6787341 -73.6936927 2015-01-19 09:45:00 obsr916370 S21422267 Traveling P22 EBIRD 120.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304579472 2021-03-30 19:13:38.458673 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Buck Pond L139795 H 43.2809982 -77.6672974 2015-03-22 09:17:00 obsr1696616 S22463223 Traveling P22 EBIRD 39.0 0.644 2.0 1 G1188290 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313899411 2021-03-26 08:14:57.071052 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-04-28 08:20:00 obsr2918150 S23116098 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305563399 2022-02-18 10:47:29.953615 7732 species avibase-A091D50A Northern Harrier Circus hudsonius N 5 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-27 08:32:00 obsr1062070 S22538844 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307533243 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-22 15:15:00 obsr2277801 S22685958 Historical P62 EBIRD 105.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313940745 2021-03-30 19:29:33.633096 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-28 16:45:00 obsr1325561 S23118674 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299745004 2021-04-01 12:32:15.282601 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 16 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-26 12:30:00 obsr547602 S22083737 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307030015 2021-03-26 06:55:00.227271 11371 species avibase-75600969 Northern Flicker Colaptes auratus N 6 United States US New York US-NY Ontario US-NY-069 13.0 **US-NY-ONT Gypsum--CR 25, Outlet Rd. X CR 27 [Clifton Springs_NE] L3499111 P 42.9820633 -77.1324965 2015-04-02 15:45:00 obsr606693 S22649854 Traveling P22 EBIRD 7.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295434828 2021-04-01 11:15:31.646886 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis N X United States US New York US-NY Kings US-NY-047 Coney Island L1022251 P 40.5717588 -73.9911825 2015-02-07 08:00:00 obsr1077730 S21716661 Traveling P22 EBIRD 80.0 2.253 5.0 1 G1137983 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312473634 2016-10-11 17:02:02 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip C L3559792 P 40.186003 -73.417567 2015-04-11 09:00:00 obsr2404047 S23025481 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221331 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310982633 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 08:15:00 obsr822430 S22928374 Traveling P22 EBIRD 230.0 4.828 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303861224 2021-03-30 19:29:33.633096 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons 3 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Peconic river, Riverhead L2770276 P 40.9156692 -72.695117 2015-03-18 09:40:00 obsr2011512 S22408289 Traveling P22 EBIRD 900.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299499316 2021-04-01 11:54:40.172593 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-02-24 12:15:00 obsr1032565 S22064761 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289367357 2021-11-09 20:38:40.141528 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 16 United States US New York US-NY Putnam US-NY-079 28.0 Croton Falls Reservoir, Stoneleigh Ave. overlook L1354697 H 41.3716305 -73.6618434 2015-01-03 16:09:00 obsr1666581 S21213553 Stationary P21 EBIRD 51.0 2.0 1 G1097914 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312282224 2021-04-22 20:54:52.561788 5942 species avibase-0A0B8431 Purple Sandpiper Calidris maritima 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-23 08:00:00 obsr2342280 S23012386 Traveling P22 EBIRD 90.0 0.805 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317509937 2018-08-06 22:29:20 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-09 06:40:00 obsr916033 S23324681 Traveling P22 EBIRD 275.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295390840 2021-04-01 11:54:40.172593 303 species avibase-B59E1863 Canada Goose Branta canadensis N 1 United States US New York US-NY Richmond US-NY-085 30.0 Bradys Pond L1429652 H 40.6052246 -74.0787156 2015-02-07 10:38:00 obsr1958124 S21713329 Stationary P21 EBIRD 2.0 2.0 1 G1137897 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320315010 2021-11-09 18:47:29.496793 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Dutchess US-NY-027 28.0 Mt. Beacon access road L3648412 P 41.4971206 -73.945756 2015-05-16 08:30:00 obsr2542037 S23480085 Traveling P22 EBIRD 150.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298787899 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-21 15:25:00 obsr934639 S22007089 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS967520520 2020-08-13 14:28:12 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Wayne US-NY-117 13.0 6520 Fairville Station Road, Newark, New York, US (43.109, -77.072) L12060658 P 43.108536 -77.0718669 2015-03-22 14:27:00 obsr1589353 S72375233 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309861855 2021-04-01 11:54:40.172593 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 21 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-13 10:08:00 obsr1032565 S22852140 Rusty Blackbird Spring Migration Blitz P41 EBIRD 197.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301512533 2021-03-24 20:21:40.993321 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-03-07 12:30:00 obsr1962295 S22218235 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479939 2021-03-24 20:33:47.533911 7169 issf avibase-6A9DD06F Great Blue Heron Ardea herodias Great Blue Heron (Great Blue) Ardea herodias [herodias Group] N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Eastern Heights dog walk L2954455 P 42.425232 -76.456589 2015-01-16 07:41:00 obsr1318356 S21383801 Traveling P22 EBIRD 11.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307276234 2018-08-04 17:05:18 30836 species avibase-8F268682 American Pipit Anthus rubescens 10 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 US-NY-Whitney Point-170 Basset Rd AMWO L3535793 P 42.410166 -75.964111 2015-04-03 19:40:00 obsr1092576 S22667710 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305896739 2021-04-01 10:47:08.851048 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-03-28 08:30:00 obsr1830659 S22558285 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296279918 2021-03-26 07:07:10.758746 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 5 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-12 15:15:00 obsr1958124 S21783486 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314335611 2021-03-26 06:11:29.8335 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Owasco Lake inlet area L302042 H 42.7542393 -76.4637132 2015-04-30 06:03:00 obsr1092576 S23142719 Traveling P22 EBIRD 62.0 0.805 2.0 1 G1244189 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304516390 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-21 11:43:00 obsr1982614 S22458597 Traveling P22 EBIRD 50.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309882622 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 2 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-13 14:47:00 obsr856524 S22853708 Stationary P21 EBIRD 18.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318182141 2021-04-01 11:15:31.646886 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 80 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-10 07:10:00 obsr41879 S23360750 Traveling P22 EBIRD 106.0 3.219 4.0 1 G1262445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318048950 2021-04-01 10:51:06.899622 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Watts Flats WMA L490893 H 42.0350422 -79.4263016 2015-05-10 07:30:00 obsr2910282 S23353977 Traveling P22 EBIRD 130.0 3.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305589415 2021-03-19 16:02:45.308962 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-27 11:10:00 obsr2024068 S22540903 Traveling P22 EBIRD 15.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324845186 2016-09-12 10:28:02 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-28 10:30:00 obsr2475075 S23764743 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297659091 2021-03-30 19:43:32.881136 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 4 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-16 15:00:00 obsr1732267 S21908072 Stationary P21 EBIRD 15.0 2.0 1 G1150446 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS470864631 2021-03-30 19:29:33.633096 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Suffolk US-NY-103 30.0 Peconic River, Peconic Ave. L852310 H 40.9156868 -72.660892 2015-02-24 obsr2549342 S34829143 Historical P62 EBIRD 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308974970 2021-11-09 19:57:48.721324 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus X United States US New York US-NY Orange US-NY-071 28.0 River rd L3553863 P 41.5475162 -74.2123783 2015-04-10 15:40:00 obsr2862523 S22792614 Traveling P22 EBIRD 240.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305317212 2021-04-01 12:35:52.669792 7127 species avibase-13E9F9B4 American Bittern Botaurus lentiginosus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson River Park (private) L3498350 H 43.2032416 -76.2825651 2015-03-25 17:12:00 obsr2224244 S22519700 Stationary P21 EBIRD 156.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301346198 2021-04-01 10:55:39.308231 6339 species avibase-8535345B Herring Gull Larus argentatus 53 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-03-07 08:38:00 obsr502830 S22206032 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290841016 2018-08-04 16:53:13 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria 2 United States US New York US-NY Onondaga US-NY-067 13.0 Old Erie Canal SHP (Onondaga Co.) L269872 H 43.0534657 -76.000677 2015-01-12 10:35:00 obsr1167884 S21331681 Traveling P22 EBIRD 105.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305154394 2021-04-01 11:15:31.646886 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-03-24 14:00:00 obsr2078092 S22507178 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322722130 2015-05-25 06:13:07 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Greece-Lake Shore Country Club L3670748 P 43.265172 -77.626095 2015-05-25 06:11:00 obsr1696616 S23622568 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300123543 2021-03-24 19:46:49.147482 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 3 Female, Adult (2); Male, Adult (1) United States US New York US-NY Lewis US-NY-049 14.0 Lowville Village L1791251 P 43.7883908 -75.4987824 2015-02-24 07:00:00 obsr1882034 S22113985 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312554502 2015-06-16 16:58:42 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Carncross Rd. L99688 H 43.0787739 -76.7080184 2015-04-24 13:00:00 obsr1721609 S23031489 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313366902 2021-03-30 19:22:51.561415 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 20 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge--East Pond L109144 H 40.6226854 -73.8220096 2015-04-26 18:40:00 obsr1982614 S23082072 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296027684 2021-03-30 19:07:52.958398 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-10 obsr2908667 S21763317 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313726036 2020-05-02 15:38:26 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-04-28 07:30:00 obsr943683 S23105038 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307047396 2021-03-24 20:33:47.533911 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Tompkins US-NY-109 13.0 206 Tareyton Drive, Ithaca L141039 P 42.471756 -76.4603653 2015-04-02 13:00:00 obsr620377 S22651182 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291426558 2021-03-24 20:16:00.852773 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 50 United States US New York US-NY Richmond US-NY-085 Conference House Park L302089 H 40.4995098 -74.2516756 2015-01-17 11:15:00 obsr155915 S21379484 Traveling P22 EBIRD 100.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303244353 2021-04-01 12:32:15.282601 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-03-15 08:30:00 obsr2207991 S22359522 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316049040 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 06:44:00 obsr41879 S23240477 Traveling P22 EBIRD 138.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301871457 2021-03-23 16:52:36.900075 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 8 United States US New York US-NY Suffolk US-NY-103 30.0 Culloden Point L296203 H 41.0712633 -71.9589043 2015-03-08 12:27:00 obsr598381 S22246921 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319960203 2021-11-09 17:58:40.313796 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-15 09:00:00 obsr1917973 S23461343 Traveling P22 EBIRD 255.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317975993 2018-08-04 17:11:28 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 7 United States US New York US-NY Fulton US-NY-035 13.0 Cline Rd., marsh (east) L1144401 H 43.061062 -74.6492232 2015-04-21 10:10:00 obsr1683226 S23350144 Stationary P21 EBIRD 5.0 3.0 1 G1261078 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314385708 2021-03-26 08:14:57.071052 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve--Buttermilk Hill area L2724302 H 41.1067994 -73.8138199 2015-04-30 10:00:00 obsr1742994 S23145817 Traveling P22 EBIRD 160.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323242463 2021-03-19 16:44:35.607263 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-26 14:27:00 obsr528918 S23655674 Traveling P22 EBIRD 65.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322763629 2015-05-25 10:25:26 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Blueberry Hill East and West L782514 H 42.7004751 -73.8682283 2015-05-25 09:15:00 obsr119187 S23625079 Traveling P22 EBIRD 35.0 0.322 2.0 1 G1288768 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303067978 2015-03-14 15:14:38 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Broome US-NY-007 28.0 3712 Frazier Road, Endwell, NY L2280195 P 42.121067 -76.0136139 2015-03-14 14:00:00 obsr1047534 S22345942 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315784833 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 10 United States US New York US-NY Kings US-NY-047 Shore Road Park L616218 H 40.6220738 -74.0406629 2015-05-04 07:30:00 obsr2078092 S23225188 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309510847 2018-08-04 17:08:50 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 4 United States US New York US-NY Warren US-NY-113 14.0 Rush Pond L3558967 P 43.3486833 -73.7031711 2015-04-12 11:02:00 obsr1222746 S22827179 Traveling P22 EBIRD 125.0 2.173 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322503667 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-24 08:00:00 obsr1175815 S23609761 Traveling P22 EBIRD 180.0 3.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296448526 2015-02-13 13:35:55 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Onondaga US-NY-067 13.0 Skaneateles L194251 T 42.94697 -76.42906 2015-02-01 14:45:00 obsr2279567 S21799507 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309943914 2021-04-01 12:10:56.762826 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-14 08:30:00 obsr1918430 S22858131 Traveling P22 EBIRD 45.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310696741 2017-02-03 18:54:43 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 4 United States US New York US-NY Erie US-NY-029 13.0 Stiglmeier Park L965034 H 42.8821636 -78.7297356 2015-04-17 14:00:00 obsr2149313 S22909864 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298216349 2021-03-24 19:28:50.176616 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Columbia US-NY-021 14.0 Larkspur Farm house (private) L3388369 P 42.1897621 -73.5989874 2015-02-14 09:30:00 obsr2842267 S21957577 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298850317 2021-04-01 11:15:31.646886 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo X United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-21 11:30:00 obsr1408339 S22012133 Traveling P22 EBIRD 95.0 0.966 3.0 1 G1157707 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288526051 2021-03-26 07:56:20.588749 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-01-02 15:37:00 obsr2394424 S21144714 Traveling P22 EBIRD 10.0 0.322 2.0 1 G1094192 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308587743 2021-03-26 07:52:59.845315 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-08 07:10:00 obsr1000124 S22763768 Area P23 EBIRD 60.0 2.59 2.0 1 G1213045 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321994292 2021-03-26 07:56:20.588749 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-22 09:00:00 obsr1102914 S23580334 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871318 2021-03-30 19:39:10.250398 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-21 09:00:00 obsr2218212 S21672040 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298448055 2015-02-19 16:25:26 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 6 United States US New York US-NY Wayne US-NY-117 13.0 Quaker Rd., farm and pond L872851 H 43.0867239 -77.3692203 2015-02-19 12:30:00 obsr749440 S21978195 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302424266 2018-08-04 16:59:18 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Taxi Dispatch L3480565 P 42.42709 -76.52329 2015-03-11 08:40:00 obsr1655171 S22296047 Stationary P21 EBIRD 5.0 2.0 1 G1175088 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307447818 2021-03-30 19:07:52.958398 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-04 10:00:00 obsr2908667 S22680218 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323657809 2018-08-06 22:31:18 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor3 L3513944 H 42.6877445 -75.901219 2015-05-28 12:04:00 obsr2279567 S23683764 Stationary P21 EBIRD 43.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311337172 2021-04-01 11:15:31.646886 32847 species avibase-295C4CD6 Worm-eating Warbler Helmitheros vermivorum 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-19 07:30:00 obsr827632 S22950048 Traveling P22 EBIRD 270.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296066173 2021-11-09 21:57:08.566201 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 8 United States US New York US-NY Ulster US-NY-111 28.0 Old Fort Road L3352847 P 41.6319316 -74.2294532 2015-02-10 09:15:00 obsr1628992 S21766438 Traveling P22 EBIRD 480.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313423831 2021-11-09 19:01:40.008558 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-04-26 08:13:00 obsr1433400 S23086248 Traveling P22 EBIRD 75.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319567325 2021-03-30 19:39:10.250398 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-14 10:00:00 obsr647628 S23439379 Traveling P22 EBIRD 180.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306362785 2021-03-30 06:01:28.020715 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Inlet WMA--Inlet Boat Launch L201327 H 42.7225398 -77.7148231 2015-03-30 11:15:00 obsr1962379 S22598792 Stationary P21 EBIRD 25.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297145443 2015-02-15 14:26:59 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-02-15 08:30:00 obsr2074043 S21861857 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317247868 2020-12-11 19:56:37.475373 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Genesee US-NY-037 13.0 Feeder Ditch, south L906683 H 43.0867199 -78.4419882 2015-05-05 13:15:00 obsr1054748 S23308671 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310468678 2021-03-22 09:17:32.016297 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Oneida US-NY-065 14.0 * Hillsboro Rd. Area Patch L2206379 P 43.3131919 -75.7865901 2015-04-16 13:34:00 obsr1842004 S22894260 Traveling P22 EBIRD 113.0 8.047 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300281625 2022-02-17 14:32:23.002448 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-01 05:35:00 obsr1189028 S22126571 Traveling P22 EBIRD 165.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307429632 2021-03-19 16:19:20.977326 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 2 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-04-03 09:40:00 obsr1079517 S22679003 Area P23 EBIRD 30.0 12.1406 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288136487 2021-04-01 12:18:57.910168 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca city golf course L938630 P 42.4550201 -76.5068192 2015-01-01 09:20:00 obsr620377 S21112076 Traveling P22 EBIRD 101.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323632010 2021-03-22 08:58:29.008072 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 F C1 F United States US New York US-NY New York US-NY-061 30.0 W Village Backyards and Airspace L974907 P 40.7366845 -74.0071853 2015-05-28 19:35:00 obsr128156 S23681986 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315453188 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-01 12:15:00 obsr87415 S23207015 Traveling P22 EBIRD 20.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293612855 2021-03-26 07:20:31.408164 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven, Old Stump Road L1796581 P 40.774188 -72.89986 2015-01-27 08:00:00 obsr613775 S21571911 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303933507 2016-03-06 22:55:23 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 12 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-03-18 19:10:00 obsr1154 S22413967 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312476342 2018-08-04 17:11:57 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Suttons Marsh L1464647 H 43.1289789 -78.4251542 2015-04-24 07:34:00 obsr2588479 S23025650 Stationary P21 EBIRD 6.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300210179 2021-03-26 07:00:33.333856 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-02-28 08:42:00 obsr1077730 S22120665 Traveling P22 EBIRD 109.0 3.0 13.0 1 G1162161 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310828977 2015-04-18 13:37:16 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Cortland US-NY-023 28.0 Dryden, 300-360 New York 392 L3571729 P 42.48674 -76.25348 2015-04-18 06:13:00 obsr2211210 S22918662 Stationary P21 EBIRD 3.0 1.0 1 G1224175 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312064349 2018-08-04 17:10:28 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Marcellus creek path L312684 P 42.9529076 -76.3408209 2015-04-19 07:45:00 obsr2290617 S22997898 Traveling P22 EBIRD 45.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303009922 2021-11-09 20:59:08.238638 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 3 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-03-12 10:45:00 obsr473055 S22341205 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315221084 2021-11-15 03:06:58.889978 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 07:30:00 obsr431494 S23195017 Traveling P22 EBIRD 164.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317029633 2021-03-26 06:21:54.883933 279 species avibase-3E04020B Brant Branta bernicla N X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-07 15:30:00 obsr2750470 S23296745 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314441096 2022-01-20 09:38:40.245267 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-04-30 09:00:00 obsr877361 S23149414 Traveling P22 EBIRD 60.0 1.609 22.0 1 G1244887 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312635675 2015-04-24 19:38:05 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Montgomery US-NY-057 13.0 Carlisle Rd just W of Full Tan Rd L3587701 P 42.8289782 -74.4883762 2015-04-24 11:15:00 obsr2855945 S23037406 Stationary P21 EBIRD 5.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288701146 2021-03-26 07:07:10.758746 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Richmond US-NY-085 30.0 Stately Richman Manor L2489256 P 40.6333994 -74.104638 2015-01-02 09:00:00 obsr2904420 S21159022 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314650919 2021-04-01 12:32:15.282601 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-01 08:20:00 obsr904434 S23162385 Traveling P22 EBIRD 130.0 2.253 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297741148 2021-11-09 21:57:09.742833 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Ulster US-NY-111 28.0 Old Fort Road L3388544 P 41.6320599 -74.2318296 2015-02-13 09:30:00 obsr699769 S21916029 Stationary P21 EBIRD 390.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS879182293 2021-03-26 07:51:35.34016 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N X United States US New York US-NY Cattaraugus US-NY-009 28.0 USA - Ellicottville - Sugartown Rd. L10970863 P 42.2419492 -78.6246166 2015-03-16 16:30:00 obsr1728854 S65850188 Stationary P21 EBIRD_CAN 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311006951 2021-03-23 16:48:08.60516 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-18 09:51:00 obsr59643 S22929910 Traveling P22 EBIRD 50.0 0.322 1.0 1 G1224764 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303130963 2021-03-24 20:33:47.533911 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail L1498729 H 42.4795201 -76.4551642 2015-03-14 13:10:00 obsr2154746 S22350810 Traveling P22 EBIRD 55.0 0.805 78.0 1 G1179586 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290230374 2021-11-09 22:37:20.108383 32578 species avibase-000482C9 Orchard Oriole Icterus spurius 3 United States US New York US-NY Sullivan US-NY-105 28.0 Bashakill L1566572 P 41.5241759 -74.5163684 2015-01-10 09:00:00 obsr2219590 S21282760 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308644986 2021-04-01 10:55:39.308231 6339 species avibase-8535345B Herring Gull Larus argentatus 30 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-09 10:01:00 obsr502830 S22768035 Traveling P22 EBIRD 128.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318299335 2021-03-19 16:27:31.421791 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 3 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Onondaga Trail L157279 H 43.12222 -78.36889 2015-05-10 11:25:00 obsr916033 S23367067 Traveling P22 EBIRD 219.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314293101 2021-03-23 17:00:13.087107 6616 species avibase-7E022378 Common Loon Gavia immer 6 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-30 08:25:00 obsr71667 S23140637 Traveling P22 EBIRD 81.0 0.805 4.0 1 G1252602 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307009678 2021-03-26 06:53:58.593564 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Oneida US-NY-065 13.0 Sylvan Beach L509883 H 43.1939135 -75.731163 2015-04-02 16:31:00 obsr666964 S22648443 Stationary P21 EBIRD 8.0 2.0 1 G1201796 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311112323 2015-04-18 23:44:09 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 30 United States US New York US-NY Essex US-NY-031 13.0 Coot Hill L2186719 H 44.0025771 -73.4684045 2015-04-18 09:19:00 obsr2693145 S22936659 Traveling P22 EBIRD 199.0 2.012 6.0 1 G1225309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315553445 2021-03-30 19:07:52.958398 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 07:30:00 obsr2363365 S23212535 Traveling P22 EBIRD 480.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318574070 2021-04-01 11:24:19.637193 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Monroe US-NY-055 13.0 Monroe-Orleans County Line Rd., overlook (Monroe Co.) L617705 H 43.3657235 -77.9947185 2015-05-09 obsr2165670 S23382091 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305438351 2021-04-01 11:30:42.037277 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-03-26 14:00:00 obsr1223279 S22529281 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294790983 2021-08-10 10:40:09.947142 447 species avibase-C235A4D7 Gadwall Mareca strepera N 13 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-02-03 15:00:00 obsr2448957 S21665488 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298450782 2021-11-09 20:12:16.773384 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 Male, Adult (2) United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-02-19 16:18:00 obsr1912104 S21978426 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317625998 2021-11-09 17:42:28.618392 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera X United States US New York US-NY Dutchess US-NY-027 28.0 Slocum-Mostachetti Preserve L1022232 H 41.6475828 -73.5758257 2015-04-25 08:00:00 obsr1339050 S23331052 Traveling P22 EBIRD 180.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294424481 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Nassau US-NY-059 30.0 Smith Pond, Rockville Center L444839 H 40.6608056 -73.6545278 2015-02-01 13:10:00 obsr916370 S21635871 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319871239 2021-11-09 18:43:49.061486 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Dutchess US-NY-027 28.0 Purgatory Hill L3345412 P 41.5670731 -73.566159 2015-05-15 12:30:00 obsr1058852 S23456593 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292551370 2021-11-09 19:30:40.312662 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 36 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR (NY) L1238320 H 41.2865783 -74.5264006 2015-01-19 07:00:00 obsr2800626 S21488031 Traveling P22 EBIRD 180.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307375492 2021-04-01 12:18:57.910168 622 species avibase-50566E50 Lesser Scaup Aythya affinis N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-04-04 09:32:00 obsr1696616 S22675081 Traveling P22 EBIRD 17.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311390651 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-19 14:30:00 obsr787848 S22953412 Traveling P22 EBIRD_NJ 90.0 1.609 2.0 1 G1227020 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303036498 2021-03-23 16:39:03.255227 11403 spuh avibase-EF4617E8 woodpecker sp. Picidae sp. 5 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-03-14 09:41:00 obsr1893950 S22343516 Traveling P22 EBIRD 19.0 0.805 2.0 1 G1178971 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311934505 2021-03-19 16:32:34.732091 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 17:30:00 obsr1407710 S22989319 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1230611 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299775251 2018-08-04 16:58:18 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 Unknown Sex, Immature (2) United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-02-26 14:03:00 obsr2186523 S22086308 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301882626 2021-04-01 11:42:15.525388 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Niagara US-NY-063 13.0 US-NY-Ransomville-3136-3310 Dickersonville Rd L3346210 P 43.25804 -78.938333 2015-03-08 16:10:00 obsr2597186 S22247759 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309457734 2021-04-01 11:49:53.573686 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-12 10:00:00 obsr2152799 S22823462 Traveling P22 EBIRD 100.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309881825 2015-04-13 22:54:20 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-13 14:00:00 obsr1152226 S22853662 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288795066 2021-11-09 20:42:30.296235 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Putnam US-NY-079 28.0 US-NY-Carmel-99 W Shore Dr L3261959 P 41.369769 -73.681728 2015-01-03 11:29:00 obsr187432 S21166703 Traveling P22 EBIRD 87.0 6.437 2.0 1 G1097916 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304539516 2021-03-26 07:30:35.289997 636 species avibase-B77377EE Common Eider Somateria mollissima 12 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-21 18:27:00 obsr1318356 S22460386 Traveling P22 EBIRD 68.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290438001 2021-11-09 21:43:58.300436 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY Ulster US-NY-111 13.0 Black Creek Preserve L2086582 H 41.8236532 -73.9574718 2015-01-11 13:00:00 obsr1136997 S21299473 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297232499 2021-11-09 22:04:47.967972 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-14 12:04:00 obsr717528 S21869818 Stationary P21 EBIRD 246.0 2.0 1 G1147578 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304955792 2018-08-04 17:02:41 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 Male, Adult (3) United States US New York US-NY Onondaga US-NY-067 28.0 Tully Lakes L1129390 P 42.79011 -76.1278725 2015-03-23 16:11:00 obsr1178949 S22491511 Traveling P22 EBIRD 75.0 8.1 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311456582 2022-03-05 22:03:50.715584 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-19 17:15:00 obsr1544235 S22957482 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293991337 2021-03-24 20:33:47.533911 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-01-30 12:30:00 obsr2074043 S21601680 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305478481 2019-10-25 16:10:57 303 species avibase-B59E1863 Canada Goose Branta canadensis 30 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-Potsdam-915 Bagdad Rd L2836281 P 44.660832 -75.005218 2015-03-26 16:40:00 obsr2211750 S22532373 Traveling P22 EBIRD 20.0 20.921 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308755027 2019-10-01 15:53:27 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Tompkins US-NY-109 28.0 Jim Schug Trail--Weber to Keith including Dryden Pond L520931 H 42.4769082 -76.2953818 2015-04-07 08:11:00 obsr2683910 S22776819 Stationary P21 EBIRD 2.0 2.0 1 G1212809 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306792360 2021-03-19 16:44:35.607263 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 2 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-01 18:04:00 obsr334398 S22631931 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312482123 2015-04-24 08:43:57 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 20 United States US New York US-NY Suffolk US-NY-103 US-NY_839 Cedar Beach County Park L464706 H 41.0349525 -72.387886 2015-04-22 15:00:00 obsr2586816 S23026066 Traveling P22 EBIRD 60.0 0.805 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307226265 2021-04-01 11:23:42.170869 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 3 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-03-28 09:30:00 obsr589593 S22664173 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295064658 2021-03-24 20:33:47.533911 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-02-05 12:45:00 obsr1655171 S21688766 Traveling P22 EBIRD 8.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300228281 2021-03-30 19:43:32.881136 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 9 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-03-01 08:06:00 obsr1502560 S22122295 Traveling P22 EBIRD 35.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306885466 2021-12-23 15:00:47.137144 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-04-02 07:17:00 obsr1598543 S22638631 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303570932 2021-03-26 07:20:31.408164 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Avon Lake, Amityville L3265581 H 40.6748285 -73.4134072 2015-03-16 18:15:00 obsr544268 S22385689 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303103644 2021-04-01 10:47:08.851048 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-03-14 13:00:00 obsr1626739 S22348657 Traveling P22 EBIRD 66.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319756004 2015-05-15 05:42:26 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Monroe US-NY-055 13.0 Oatka Creek Park L140441 H 43.0066986 -77.8019028 2015-05-14 17:30:00 obsr2084521 S23450362 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294465753 2017-02-26 13:09:20 431 species avibase-90E2543E Blue-winged Teal Spatula discors 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2800 30.0 Napeague SP--Napeague Meadow Rd. L1832761 H 40.9955955 -72.0642866 2015-02-01 15:54:00 obsr598381 S21639025 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311338619 2021-03-26 07:17:57.136956 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Towpath Rd. L266832 H 43.0038224 -76.7457005 2015-04-19 10:50:00 obsr1655171 S22950134 Traveling P22 EBIRD 74.0 3.219 2.0 1 G1230121 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315490543 2021-03-24 20:57:48.241391 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-05-03 18:15:00 obsr1708031 S23209146 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315197320 2021-03-23 17:23:45.772216 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus-Back Woods L698393 P 42.6703198 -77.6733398 2015-05-03 06:47:00 obsr72341 S23193700 Traveling P22 EBIRD 63.0 2.655 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293108191 2021-03-26 07:56:20.588749 616 species avibase-25C94A8F Greater Scaup Aythya marila 4 United States US New York US-NY Nassau US-NY-059 30.0 Sands Point Preserve L293460 H 40.8591053 -73.6970283 2015-01-25 09:00:00 obsr676630 S21531271 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310420329 2018-08-04 17:09:16 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Fulton US-NY-035 14.0 West Lake L1149912 P 43.1733897 -74.5384866 2015-04-15 11:50:00 obsr316199 S22890958 Traveling P22 EBIRD 57.0 0.644 3.0 1 G1221855 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295325184 2018-08-04 16:55:46 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 8 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-07 09:40:00 obsr155915 S21708091 Stationary P21 EBIRD 20.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318366665 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 3 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-09 08:30:00 obsr2449897 S23370828 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300414026 2021-03-26 08:09:53.772059 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 7 United States US New York US-NY Rensselaer US-NY-083 13.0 Yard & Feeders - South Schodack L3313941 P 42.5086853 -73.7018251 2015-03-01 15:30:00 obsr37875 S22136003 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314260566 2021-03-24 21:06:05.39641 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Onondaga US-NY-067 13.0 Jamesville Beach County Park L1166604 H 42.9689218 -76.0697651 2015-04-30 06:26:00 obsr2561576 S23138514 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308292599 2021-03-23 17:41:09.545385 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve--Buttermilk Hill area L2724302 H 41.1067994 -73.8138199 2015-04-07 09:30:00 obsr1742994 S22741187 Traveling P22 EBIRD 210.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289036256 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY New York US-NY-061 30.0 Abingdon Square Park L3238740 H 40.7372688 -74.0054794 2015-01-02 11:45:00 obsr350767 S21187822 Stationary P21 EBIRD 15.0 1.0 1 G1095173 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296822683 2022-02-17 14:32:23.002448 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-14 14:15:00 obsr1605975 S21833291 Traveling P22 EBIRD 60.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290857805 2021-02-04 13:11:09.665624 279 species avibase-3E04020B Brant Branta bernicla 5 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-E L3288970 P 39.52687 -72.39041 2015-01-11 12:00:00 obsr1417967 S21333241 Traveling P22 EBIRD 60.0 19.795 44.0 1 G1108338 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304252374 2021-04-01 11:15:31.646886 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Kings US-NY-047 30.0 Brooklyn L1813672 P 40.6915997 -73.9892884 2015-03-16 11:10:00 obsr1682724 S22438861 Traveling P22 EBIRD 160.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302714187 2021-04-01 12:24:14.132004 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 31 United States US New York US-NY Washington US-NY-115 13.0 Hudson River just W of Rte 197 X Rte 4 L3483421 P 43.2667766 -73.5860664 2015-03-12 11:50:00 obsr2855945 S22318250 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323815938 2021-04-01 11:15:31.646886 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-29 10:15:00 obsr827632 S23696075 Traveling P22 EBIRD 145.0 5.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312858238 2018-08-04 17:12:10 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Times Beach Nature Preserve L811486 H 42.8742747 -78.8825647 2015-04-25 11:00:00 obsr2537615 S23051540 Traveling P22 EBIRD 15.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308423599 2021-03-24 20:53:39.352228 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 14 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-04-07 obsr1591201 S22751264 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311011651 2021-03-24 20:23:39.258075 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-04-18 17:00:00 obsr2485753 S22930207 Stationary P21 EBIRD 77.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309667099 2022-02-18 10:47:29.953615 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-13 08:43:00 obsr1062070 S22837515 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288234491 2021-04-01 12:35:52.669792 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--West Shore Trail, Visitor's Center to Lakeview Point L2975271 H 43.0804886 -76.2126732 2015-01-01 16:06:00 obsr2561576 S21120458 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311397030 2021-04-01 10:47:08.851048 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 3 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-19 06:00:00 obsr1303581 S22953806 Traveling P22 EBIRD 70.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305873230 2018-08-04 17:04:31 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 2 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Environmental Center L1476823 H 40.7621022 -73.7535993 2015-03-28 15:00:00 obsr1801902 S22562134 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297023773 2021-03-26 06:55:00.227271 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Ontario US-NY-069 13.0 home L3366009 P 42.9712657 -77.3787689 2015-02-15 09:19:00 obsr2212625 S21850651 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116141 2021-04-01 10:49:39.496318 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.4926529 2015-01-04 10:05:00 obsr1167884 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323265083 2015-05-29 12:49:04 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 C C3 C Male, Adult (1); Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-23 07:30:00 obsr316199 S23657068 Area P23 EBIRD 35.0 2.59 2.0 1 G1292256 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304560740 2021-03-30 19:22:51.561415 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 45 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-03-22 06:27:00 obsr2574755 S22461873 Traveling P22 EBIRD 54.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302554558 2021-03-30 19:13:38.458673 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis N 14 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-11 17:15:00 obsr302343 S22306090 Traveling P22 EBIRD 60.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314297682 2015-04-30 10:37:09 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 13.0 Office-Pittsford L715211 P 43.0457463 -77.4656296 2015-04-30 10:15:00 obsr1191840 S23140937 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317253345 2018-08-06 22:29:12 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY Greene US-NY-039 13.0 Hannacroix Creek Preserve L340471 H 42.4622196 -73.7930478 2015-05-08 07:52:00 obsr440908 S23309008 Traveling P22 EBIRD 420.0 5.375 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302847579 2021-03-30 19:29:33.633096 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Bayard Cutting Arboretum SP L715580 H 40.7355391 -73.1629871 2015-03-13 10:48:00 obsr613775 S22328225 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318888534 2021-03-19 16:29:59.503892 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-12 08:30:00 obsr1302604 S23400451 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317174665 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-05-08 12:00:00 obsr2498716 S23304609 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320296344 2021-11-09 17:55:37.57866 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Dutchess US-NY-027 13.0 Ryder Pond L1133987 H 41.8665248 -73.6488891 2015-05-16 17:43:00 obsr1917973 S23479122 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289042090 2021-04-01 12:32:15.282601 23242 species avibase-94A1C447 Bank Swallow Riparia riparia X United States US New York US-NY Nassau US-NY-059 30.0 Saint Johns Pond Sanctuary L123034 H 40.85417 -73.46333 2015-01-04 11:30:00 obsr2207991 S21188134 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307676769 2021-03-19 16:32:34.732091 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 08:16:00 obsr2692140 S22696014 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313563627 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-04-27 15:03:00 obsr1154 S23094605 Traveling P22 EBIRD 60.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298426390 2021-03-30 19:22:51.561415 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-02-19 11:45:00 obsr1668936 S21976134 Stationary P21 EBIRD 58.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290300158 2021-11-09 21:30:58.952293 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 30 United States US New York US-NY Ulster US-NY-111 13.0 Esopus Bend Nature Preserve L1422709 H 42.069482 -73.9586939 2015-01-10 07:15:00 obsr1588136 S21288542 Traveling P22 EBIRD 300.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303707893 2021-03-23 16:39:03.255227 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-03-17 14:24:00 obsr1958124 S22396143 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319871251 2021-11-09 18:43:49.061486 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Dutchess US-NY-027 28.0 Purgatory Hill L3345412 P 41.5670731 -73.566159 2015-05-15 12:30:00 obsr1058852 S23456593 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314282776 2015-04-30 09:27:07 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-30 09:19:00 obsr334398 S23139967 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295545248 2015-02-08 12:07:50 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Greene US-NY-039 13.0 Coxsackie - Smith Road L1354231 P 42.3606744 -73.8406441 2015-02-08 11:59:00 obsr1181085 S21725659 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311293764 2021-11-15 03:06:58.889978 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-15 14:20:00 obsr585997 S22947452 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291306375 2021-03-26 06:39:43.334073 7200 species avibase-49D9148A Great Egret Ardea alba N 311 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-16 12:45:00 obsr150865 S21370053 Traveling P22 EBIRD 195.0 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306481258 2020-07-20 09:16:51 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-03-31 08:50:00 obsr2172593 S22608381 Traveling P22 EBIRD 38.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306110236 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-29 09:00:00 obsr2319444 S22579676 Traveling P22 EBIRD 420.0 4.023 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313142130 2021-03-19 16:32:34.732091 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-26 11:42:00 obsr1801902 S23068490 Traveling P22 EBIRD 104.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312961631 2018-08-04 17:12:04 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-25 07:26:00 obsr1222746 S23057719 Rusty Blackbird Spring Migration Blitz P41 EBIRD 315.0 2.253 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289339330 2021-03-26 06:29:56.44369 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-05 16:00:00 obsr934639 S21211352 Traveling P22 EBIRD 20.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308321936 2015-04-07 17:53:31 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Saratoga US-NY-091 13.0 Nolan Rd Boat Launch area L2850346 P 43.2708588 -73.6607444 2015-04-07 10:15:00 obsr2943723 S22743430 Traveling P22 EBIRD 75.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313335106 2019-10-25 16:28:13 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY St. Lawrence US-NY-089 13.0 Morrisette Park L488611 H 44.7009958 -75.4949355 2015-04-26 06:23:00 obsr1558090 S23080207 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315979584 2018-08-04 17:14:10 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY New York US-NY-061 East River, 34th St. to Pier 11 L3393610 H 40.7222827 -73.9686298 2015-05-03 obsr96326 S23236081 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332422930 2021-04-01 11:24:19.637193 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-10 17:10:00 obsr334398 S24314141 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303009735 2021-04-01 10:57:06.520339 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-03-14 08:54:00 obsr2420101 S22341195 Traveling P22 EBIRD 64.0 1.609 2.0 1 G1178700 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308415167 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Kings US-NY-047 30.0 Dyker Beach Park L1044216 H 40.6123885 -74.0192327 2015-04-08 06:25:00 obsr1189028 S22750377 Traveling P22 EBIRD 73.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305882667 2021-11-09 20:16:49.015193 662 species avibase-FB738385 Bufflehead Bucephala albeola 42 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region--Skinners Lane L616593 H 41.3304039 -74.4442391 2015-03-28 14:35:00 obsr2346161 S22562811 Traveling P22 EBIRD 54.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316462635 2021-03-26 06:17:19.712573 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 10 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Feeder Area L424961 P 42.7607926 -78.8063961 2015-05-06 07:30:00 obsr2083851 S23264406 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306346448 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-29 15:45:00 obsr609516 S22597568 Traveling P22 EBIRD 135.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287359 2021-03-26 07:07:10.758746 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-01-01 09:17:00 obsr1893950 S21125167 Stationary P21 EBIRD 9.0 2.0 1 G1088914 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298241969 2021-11-02 20:32:06.137153 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-02-18 12:30:00 obsr317968 S21959775 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314263835 2021-03-24 20:33:47.533911 33216 species avibase-1F09CCCC Wilson's Warbler Cardellina pusilla 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southwest L879237 H 42.4634388 -76.4367664 2015-04-30 06:29:00 obsr1696616 S23138737 Traveling P22 EBIRD 42.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311295146 2021-03-24 21:12:00.789723 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Schuyler US-NY-097 13.0 Peach Orchard Pt. L3479837 P 42.500657 -76.886695 2015-04-19 09:10:00 obsr2436517 S22947532 Stationary P21 EBIRD 9.0 2.0 1 G1226343 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303702249 2021-03-26 06:13:28.501496 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 1 United States US New York US-NY Chemung US-NY-015 28.0 Grove St. Fishing Access L1949349 H 42.08293 -76.81726 2015-03-17 09:03:00 obsr1092576 S22395716 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316483624 2021-11-15 03:06:58.889978 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla N 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-06 07:40:00 obsr599682 S23265416 Area P23 EBIRD 180.0 7.689 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311780043 2015-04-21 08:43:22 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-04-21 08:32:00 obsr1349676 S22979192 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291022061 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-11 11:30:00 obsr585997 S21346413 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295933695 2018-08-04 16:55:59 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Broome US-NY-007 28.0 Confluence Park L2473323 H 42.092993 -75.9161154 2015-02-09 16:28:00 obsr1764243 S21755896 Traveling P22 EBIRD 60.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304096345 2021-04-01 11:15:31.646886 6189 species avibase-39F29B55 Common Murre Uria aalge N 20 United States US New York US-NY Kings US-NY-047 30.0 Bush Terminal (43rd St access) Park L3254340 P 40.6517318 -74.0183258 2015-03-19 13:45:00 obsr827632 S22426672 Traveling P22 EBIRD 60.0 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324306510 2021-03-19 16:19:20.977326 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-28 13:30:00 obsr834382 S23727690 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292180420 2021-04-01 12:31:09.823741 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Livingston US-NY-051 US-NY_1760 13.0 Nations Road L799182 P 42.8579487 -77.8129005 2015-01-20 09:37:00 obsr72341 S21438344 Traveling P22 EBIRD 90.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297748390 2015-10-19 18:53:15 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 2 United States US New York US-NY New York US-NY-061 East River, Brooklyn Bridge to S.I. Ferry L3339003 H 40.7039737 -74.0059423 2015-02-16 13:00:00 obsr1349960 S21916764 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309141140 2021-03-26 06:29:56.44369 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Monroe US-NY-055 13.0 Webster Arboretum L502161 H 43.2419281 -77.3925555 2015-04-11 11:10:00 obsr302343 S22803479 Traveling P22 EBIRD 50.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291635932 2021-04-01 11:24:19.637193 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-16 08:30:00 obsr1782363 S21396131 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303093743 2015-03-14 16:53:26 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Oswego US-NY-075 13.0 West Lake road L2063877 P 43.4294866 -76.5925598 2015-03-07 16:30:00 obsr1043007 S22347910 Stationary P21 EBIRD 45.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321579972 2021-04-01 11:30:42.037277 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-20 09:30:00 obsr2319444 S23554009 Traveling P22 EBIRD 180.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288677787 2021-03-26 07:07:10.758746 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 40 United States US New York US-NY Richmond US-NY-085 30.0 St. George Ferry Terminal L923106 H 40.6441046 -74.0724775 2015-01-03 07:20:00 obsr1958124 S21156991 Traveling P22 EBIRD 30.0 0.08 2.0 1 G1093022 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292951946 2022-02-21 16:56:20.41462 27616 species avibase-D77E4B41 American Robin Turdus migratorius 38 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-24 14:43:00 obsr1821546 S21519509 Traveling P22 EBIRD 78.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317990917 2021-04-01 11:24:19.637193 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-10 07:09:00 obsr745890 S23350928 Traveling P22 EBIRD 25.0 0.032 2.0 1 G1262273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312827010 2021-04-01 11:15:31.646886 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 08:15:00 obsr454647 S23049768 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292880458 2021-03-30 19:03:14.123633 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-01-20 09:40:00 obsr998593 S21513772 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315692827 2021-11-15 03:06:58.889978 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 09:25:00 obsr585997 S23220195 Traveling P22 EBIRD 45.0 0.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322159548 2021-03-26 06:29:56.44369 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-22 06:40:00 obsr334398 S23590584 Traveling P22 EBIRD 9.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316947125 2021-11-09 18:46:58.708812 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Dutchess US-NY-027 14.0 Reagan Road, Millerton, NY L3605237 P 41.9080001 -73.5072362 2015-04-19 11:45:00 obsr2786327 S23292066 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320098005 2021-03-19 16:44:35.607263 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-16 09:11:00 obsr749440 S23469137 Stationary P21 EBIRD 81.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298727274 2021-09-06 19:15:12.940204 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Tompkins US-NY-109 13.0 Flat Rock & Fall Creek Valley N Natural Area L1325705 H 42.4553786 -76.4557912 2015-02-21 10:44:00 obsr1062070 S22002118 Traveling P22 EBIRD 11.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289815275 2021-09-08 04:42:53.165995 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY New York US-NY-061 30.0 Sherman Creek Park and Swindler Cove L1018912 H 40.8580281 -73.921085 2015-01-07 15:10:00 obsr1706920 S21248774 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294896149 2021-04-01 11:54:40.172593 30494 species avibase-240E3390 House Sparrow Passer domesticus N 15 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-04 14:35:00 obsr1958124 S21673998 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322225546 2021-04-01 11:30:42.037277 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-23 12:00:00 obsr2369927 S23593990 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322868214 2017-03-09 12:18:08 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 3 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-05-25 12:25:00 obsr934639 S23631415 Traveling P22 EBIRD 38.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308058131 2021-03-26 06:39:43.334073 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-03-24 18:15:00 obsr2072398 S22723150 Traveling P22 EBIRD 45.0 0.402 2.0 1 G1208371 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302422960 2021-04-01 11:49:53.573686 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-05 07:00:00 obsr1982614 S22295932 Stationary P21 EBIRD 35.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291175664 2016-03-08 21:31:55 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-01-14 08:45:00 obsr916370 S21358964 Traveling P22 EBIRD 60.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317128387 2018-08-06 22:29:10 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Chenango US-NY-017 28.0 Home woods L3452888 P 42.3471065 -75.6650519 2015-05-08 06:50:00 obsr1303581 S23302291 Traveling P22 EBIRD 140.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319334533 2021-04-01 11:30:42.037277 33061 species avibase-E36325FA Prairie Warbler Setophaga discolor X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 07:45:00 obsr2976 S23425834 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297131096 2021-03-23 17:22:05.708166 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-02-15 07:45:00 obsr2694889 S21860500 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292531595 2021-11-09 21:36:59.310849 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Ulster US-NY-111 13.0 rosendale, ny L1465355 P 41.8499692 -74.081765 2015-01-21 10:30:00 obsr187701 S21486240 Traveling P22 EBIRD 240.0 41.843 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289218494 2019-07-23 17:26:42 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Suffolk US-NY-103 New London to Orient Point Ferry (NY water) L1373227 P 41.2342763 -72.171365 2015-01-03 08:43:00 obsr535265 S21201867 Traveling P22 EBIRD 123.0 22.531 9.0 1 G1095674 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS470290156 2021-11-15 03:06:58.889978 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-06 07:30:00 obsr1843598 S34783869 Traveling P22 EBIRD 120.0 3.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321525367 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Kings US-NY-047 30.0 Brooklyn College L476967 H 40.6305324 -73.9542532 2015-05-20 13:00:00 obsr2448957 S23550661 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309158570 2021-11-09 21:11:17.996623 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Rockland US-NY-087 US-NY_765 30.0 Hook Mountain L461000 H 41.1208833 -73.9180667 2015-04-11 09:15:00 obsr322870 S22804687 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319931649 2018-02-01 15:11:46 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Cortland US-NY-023 28.0 AviCor15 L3513957 H 42.6073973 -76.0575746 2015-05-09 14:00:00 obsr2535282 S23459846 Stationary P21 EBIRD 6.0 2.0 1 G1272237 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301119916 2021-03-24 19:27:13.077399 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-05 09:23:00 obsr1334267 S22187179 Traveling P22 EBIRD 24.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290357044 2018-08-04 16:53:05 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 United States US New York US-NY Seneca US-NY-099 13.0 South of Sheldrake Point to CR 141 L1031120 H 42.652205 -76.6959858 2015-01-11 08:35:00 obsr2211210 S21292972 Traveling P22 EBIRD 10.0 2.414 1.0 1 G1105906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290400580 2021-03-26 07:53:57.664705 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake, West Lake Rd. (S of Long Point) L819806 H 42.7548275 -77.7282715 2015-01-11 12:10:00 obsr749440 S21296532 Traveling P22 EBIRD 31.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311141674 2021-04-01 12:45:19.712958 5561 species avibase-E196D6F9 Sandhill Crane Antigone canadensis 1 United States US New York US-NY Westchester US-NY-119 28.0 Riverfront Green Park L2849158 H 41.2858173 -73.9312046 2015-04-18 09:42:00 obsr991026 S22938152 Traveling P22 EBIRD 39.0 19.312 2.0 1 G1225460 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324410481 2018-08-06 22:31:30 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP L246469 H 42.055 -78.7661111 2015-05-31 07:30:00 obsr1463039 S23734511 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305477778 2021-12-14 08:38:15.858862 486 domestic avibase-07FFC1E5 Mallard (Domestic type) Anas platyrhynchos (Domestic type) 1 United States US New York US-NY New York US-NY-061 30.0 Tudor City Greens (North & South) L2837736 H 40.7490963 -73.9705077 2015-03-26 18:00:00 obsr259298 S22532327 Traveling P22 EBIRD 34.0 0.354 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291888204 2021-03-23 17:32:20.03109 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes State Park - Rolling Hills Trail L1413818 P 43.0535868 -75.9762668 2015-01-18 13:30:00 obsr2159464 S21415196 Traveling P22 EBIRD 270.0 9.656 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295039966 2021-03-24 20:33:47.533911 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 5 United States US New York US-NY Tompkins US-NY-109 13.0 Haber Ithaca Apartment L2127426 P 42.4862687 -76.4751273 2015-02-05 12:30:00 obsr869999 S21686576 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309945285 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Monroe US-NY-055 13.0 Thousand Acre Swamp Preserve L123006 H 43.17917 -77.45194 2015-04-14 08:00:00 obsr2240964 S22858216 Traveling P22 EBIRD 120.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301077772 2015-08-29 15:19:57 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Ontario US-NY-069 13.0 US-NY-Geneva-370-372 Exchange St L3457260 P 42.869277 -76.981156 2015-03-05 14:44:00 obsr354090 S22184309 Stationary P21 EBIRD 5.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS313884773 2018-08-04 17:12:39 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-04-28 18:31:00 obsr749440 S23115230 Traveling P22 EBIRD 53.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309052679 2021-03-23 17:38:38.809066 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Schuyler US-NY-097 13.0 Seneca Harbor Park L150677 H 42.383846 -76.873375 2015-04-10 18:18:00 obsr2173269 S22798028 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316693385 2021-03-26 06:39:43.334073 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 16:00:00 obsr1135516 S23277821 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281722 2021-03-26 07:30:35.289997 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-21 08:33:00 obsr2683910 S21445901 Stationary P21 EBIRD 12.0 2.0 1 G1118455 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309486966 2021-03-23 16:52:36.900075 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Road L1297365 P 40.8364114 -72.5046158 2015-04-12 08:30:00 obsr2692002 S22825456 Traveling P22 EBIRD 120.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311046216 2018-08-04 17:10:23 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-18 14:05:00 obsr2154746 S22932385 Traveling P22 EBIRD 87.0 4.828 81.0 1 G1224925 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308693770 2018-08-04 17:08:00 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Westchester US-NY-119 28.0 Brinton Brook Sanctuary L893096 H 41.2268584 -73.8992411 2015-04-07 15:00:00 obsr1832377 S22772079 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290088870 2021-11-09 18:33:58.039151 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Dutchess US-NY-027 13.0 Cobb Ridge L2517475 P 42.0382655 -73.8797092 2015-01-09 08:30:00 obsr671490 S21270970 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316079482 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 92 United States US New York US-NY New York US-NY-061 30.0 Sutton Place Area L1058530 P 40.7536129 -73.9636892 2015-05-05 05:49:00 obsr259298 S23242157 Traveling P22 EBIRD 186.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296176266 2021-03-26 06:39:43.334073 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-02-11 09:00:00 obsr324709 S21775077 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309309568 2021-04-01 11:30:42.037277 681 species avibase-407E2CA8 Common Merganser Mergus merganser 12 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-04-12 07:00:00 obsr1223279 S22814663 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308603779 2018-08-04 17:08:08 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Broome US-NY-007 28.0 Embankment L3549956 P 42.1147266 -75.9824109 2015-04-08 17:00:00 obsr237150 S22764923 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324373350 2021-03-26 06:39:43.334073 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis X United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-05-31 09:30:00 obsr1102914 S23732117 Traveling P22 EBIRD 180.0 2.414 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312792202 2015-04-26 16:22:42 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 3 United States US New York US-NY Richmond US-NY-085 30.0 Blue Heron Park--Butterfly Pond L2020749 H 40.5326241 -74.1732539 2015-04-25 12:19:00 obsr1958124 S23047654 Traveling P22 EBIRD 20.0 0.644 3.0 1 G1237326 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307157109 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 14 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Strolling thru Central Park L3534703 P 40.7804196 -73.9677608 2015-04-03 10:00:00 obsr1275157 S22659312 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301005253 2021-03-26 07:07:10.758746 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 20 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-05 07:25:00 obsr1958124 S22179455 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316054923 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-30 08:07:00 obsr363953 S23240788 Traveling P22 EBIRD 240.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340113065 2015-09-03 13:29:48 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus X United States US New York US-NY Jefferson US-NY-045 13.0 DePauville Rd L3884955 P 44.12521 -76.06482 2015-05-16 08:00:00 obsr1321679 S24874192 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306809651 2018-08-04 17:04:59 662 species avibase-FB738385 Bufflehead Bucephala albeola 13 United States US New York US-NY Tompkins US-NY-109 13.0 Buttermilk Falls SP--Upper L697854 H 42.4026874 -76.5109992 2015-04-01 16:00:00 obsr2137468 S22633184 Traveling P22 EBIRD 120.0 7.435 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306007269 2021-03-26 06:55:00.227271 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 210 United States US New York US-NY Ontario US-NY-069 13.0 US-NY-ONT Phelps--CR 25, Outlet Rd. E of Smith Rd. (3276C) [Phelps_NW] L736431 P 42.9841265 -77.1159017 2015-03-29 08:44:00 obsr606693 S22572164 Traveling P22 EBIRD 26.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321292483 2018-08-04 17:28:01 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Albany US-NY-001 13.0 My Yard & lower Barent Winne Rd. L1275103 P 42.5497407 -73.7620354 2015-05-19 17:00:00 obsr1154 S23536482 Traveling P22 EBIRD 42.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313117888 2021-04-01 11:24:19.637193 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 7 United States US New York US-NY Monroe US-NY-055 13.0 University of Rochester L1057695 H 43.1291149 -77.6293087 2015-04-26 08:45:00 obsr1958774 S23067108 Traveling P22 EBIRD 200.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291907402 2020-05-08 14:32:29 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 15 United States US New York US-NY Suffolk US-NY-103 US-NY_2800 30.0 Napeague Art Barge [ACW] L2142411 P 40.99949 -72.049716 2015-01-19 11:27:00 obsr598381 S21416715 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310061591 2015-04-14 18:16:10 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Washington US-NY-115 13.0 Hartford NY L3506392 P 43.3626154 -73.4031086 2015-04-14 10:35:00 obsr2533499 S22866419 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320837136 2021-03-26 07:46:52.994574 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-18 05:59:00 obsr1165633 S23508871 Traveling P22 EBIRD 170.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204500 2021-11-09 18:09:08.212564 622 species avibase-50566E50 Lesser Scaup Aythya affinis 6 United States US New York US-NY Dutchess US-NY-027 US-NY_870 13.0 Thompson Pond Preserve L123019 H 41.9677583 -73.6819272 2015-01-25 09:45:00 obsr671490 S21539313 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298918457 2015-02-22 08:58:08 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 8 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-02-21 06:50:00 obsr2716320 S22017771 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316079473 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY New York US-NY-061 30.0 Sutton Place Area L1058530 P 40.7536129 -73.9636892 2015-05-05 05:49:00 obsr259298 S23242157 Traveling P22 EBIRD 186.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302418944 2015-03-11 11:15:55 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-11 08:48:00 obsr1165633 S22295563 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319558700 2021-03-26 07:46:52.994574 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-14 07:15:00 obsr2837502 S23438961 Traveling P22 EBIRD 195.0 6.759 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311028522 2021-11-09 20:17:47.602699 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Orange US-NY-071 28.0 Benedict Park L616771 H 41.5302945 -74.2563665 2015-04-18 15:18:00 obsr1912104 S22931223 Traveling P22 EBIRD 42.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304217450 2018-08-04 17:02:01 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-03-19 16:30:00 obsr2448785 S22436211 Rusty Blackbird Spring Migration Blitz P41 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303033960 2021-03-23 16:52:36.900075 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven National Laboratory (restricted access) L2808445 H 40.8710034 -72.880066 2015-03-14 11:45:00 obsr1954215 S22343316 Traveling P22 EBIRD 40.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS411996037 2021-03-26 06:07:45.516082 303 species avibase-B59E1863 Canada Goose Branta canadensis N 8 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-05-23 10:55:00 obsr1850011 S30231733 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322717423 2021-11-15 03:06:58.889978 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-24 11:30:00 obsr2072398 S23622030 Traveling P22 EBIRD 240.0 3.219 2.0 1 G1288561 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313064533 2021-03-26 07:46:52.994574 406 species avibase-27B2749A Wood Duck Aix sponsa N 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-04-26 09:00:00 obsr2798912 S23064010 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298514777 2021-04-28 05:22:52.046239 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park--Southwest L154031 H 40.593426 -73.92352 2015-02-19 09:15:00 obsr2603801 S21983577 Traveling P22 EBIRD 180.0 4.828 2.0 1 G1153318 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294490155 2021-03-26 06:29:56.44369 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 13 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-02-01 08:17:00 obsr2595828 S21641018 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313460862 2021-03-26 07:30:35.289997 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 14 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-27 07:54:00 obsr1655171 S23088467 Traveling P22 EBIRD 27.0 0.483 2.0 1 G1243179 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302223173 2021-04-01 11:49:53.573686 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY Queens US-NY-081 30.0 Idlewild Park L2687800 H 40.6546016 -73.7547487 2015-03-10 08:22:00 obsr1982614 S22275299 Traveling P22 EBIRD 120.0 0.998 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301949973 2018-08-04 16:59:05 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-08 14:03:00 obsr354239 S22252435 Stationary P21 EBIRD 60.0 11.0 1 G1170855 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317589995 2018-08-06 22:29:28 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-05-09 11:00:00 obsr1830659 S23328170 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292459481 2018-08-04 16:54:00 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 165 United States US New York US-NY Suffolk US-NY-103 30.0 Eastport Lake (aka Seatuck Creek) L852369 H 40.8277092 -72.7276897 2015-01-19 10:30:00 obsr564905 S21480676 Traveling P22 EBIRD 26.0 0.322 2.0 1 G1118666 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295644427 2021-07-29 22:03:09.614108 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-30 obsr1220115 S21733677 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304667245 2021-11-09 21:50:48.44865 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 6 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-22 14:30:00 obsr1588136 S22469503 Traveling P22 EBIRD 60.0 0.402 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299206748 2021-11-09 22:29:08.190744 6189 species avibase-39F29B55 Common Murre Uria aalge 2 United States US New York US-NY Sullivan US-NY-105 28.0 Yankee Lake - my yard L1100954 P 41.5857896 -74.5484966 2015-02-23 13:30:00 obsr444155 S22042634 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308440623 2021-12-10 08:21:29.396662 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 4 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-04-08 06:30:00 obsr258431 S22752594 Traveling P22 EBIRD 225.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300958312 2021-03-23 17:22:05.708166 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-04 08:30:00 obsr1000124 S22176090 Area P23 EBIRD 85.0 2.59 2.0 1 G1166788 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300324650 2021-04-01 11:15:31.646886 6616 species avibase-7E022378 Common Loon Gavia immer 25 United States US New York US-NY Kings US-NY-047 Gravesend Bay, Shore Parkway Greenway Trail L483548 H 40.601293 -74.0120164 2015-03-01 14:44:00 obsr1516787 S22130238 Traveling P22 EBIRD 70.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314293720 2021-11-09 19:55:29.587179 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 7 United States US New York US-NY Orange US-NY-071 28.0 Six and a Half Station Rd. Sanctuary L306143 H 41.4025242 -74.3499176 2015-04-30 08:14:00 obsr1568163 S23140679 Traveling P22 EBIRD 125.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311018389 2021-03-24 20:33:47.533911 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Northeast Ithaca-119 Winston Dr L3500739 P 42.473569 -76.457685 2015-04-18 18:23:00 obsr2173269 S22930620 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307196719 2021-03-23 16:48:08.60516 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 12 United States US New York US-NY Seneca US-NY-099 13.0 US-NY-Seneca Falls-2168-2178 Lake Rd L2713634 P 42.920063 -76.749082 2015-04-02 18:34:00 obsr2211210 S22661940 Stationary P21 EBIRD 12.0 3.0 1 G1202713 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303953367 2015-03-18 20:56:44 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 1 United States US New York US-NY Herkimer US-NY-043 13.0 Bidleman Road L974699 P 43.0402928 -74.8114443 2015-03-18 16:27:00 obsr316199 S22415413 Traveling P22 EBIRD 16.0 1.287 3.0 1 G1184562 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312826939 2019-07-23 17:28:19 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 17 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip G L3559870 P 40.435667 -73.336683 2015-04-11 15:00:00 obsr1780417 S23049761 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305266378 2021-03-19 16:32:34.732091 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 4 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-25 13:30:00 obsr454647 S22515720 Traveling P22 EBIRD 130.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303817596 2021-03-26 06:21:54.883933 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Kings US-NY-047 30.0 Bergen Street, Brooklyn L3496233 P 40.6841779 -73.9831996 2015-03-13 15:00:00 obsr1623687 S22404795 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311823966 2021-03-26 07:30:35.289997 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-19 06:37:00 obsr2683910 S22982258 Traveling P22 EBIRD 34.0 0.322 2.0 1 G1230106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314295931 2019-05-07 15:30:03 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Stadlen and Hoyt-Pileated Trail L1498735 H 42.4777154 -76.4481604 2015-04-30 09:50:00 obsr869999 S23140819 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308791669 2018-08-04 17:06:20 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 4 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-07 08:30:00 obsr1160328 S22779532 Area P23 EBIRD 90.0 30.3514 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295658579 2021-03-26 07:20:31.408164 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 2 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven, Old Stump Road L1796581 P 40.774188 -72.89986 2015-02-07 07:14:00 obsr613775 S21734741 Stationary P21 EBIRD 76.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318961205 2021-11-09 21:48:09.904449 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 5 United States US New York US-NY Ulster US-NY-111 13.0 104 rowe court L2662281 P 42.0136083 -74.0778896 2015-02-13 10:00:00 obsr2276225 S23404274 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310343653 2019-07-23 17:28:19 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 19 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr152435 S22885654 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309150474 2018-08-04 17:08:33 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Genesee US-NY-037 13.0 Gypsum Ponds L609650 H 43.0566596 -78.2994747 2015-04-11 13:00:00 obsr408487 S22804111 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316050212 2021-11-09 17:58:40.313796 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 8 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-05 06:04:00 obsr1732267 S23240549 Traveling P22 EBIRD 240.0 5.472 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313580817 2021-03-26 07:56:20.588749 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-26 11:56:00 obsr1987335 S23095649 Rusty Blackbird Spring Migration Blitz P41 EBIRD 82.0 1.609 2.0 1 G1239967 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316007777 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Kings US-NY-047 Shore Road Park L616218 H 40.6220738 -74.0406629 2015-05-05 06:00:00 obsr1821546 S23238084 Traveling P22 EBIRD 70.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313128633 2021-03-30 19:37:33.521815 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-26 09:29:00 obsr1721609 S23067716 Traveling P22 EBIRD 187.0 3.219 3.0 1 G1238591 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS302583863 2021-03-24 20:20:25.430732 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 3 United States US New York US-NY Schenectady US-NY-093 13.0 Mohawk-Hudson Bike-Hike Trail, Ferry Rd. L2584191 H 42.7876687 -73.8359056 2015-03-11 16:27:00 obsr119187 S22308386 Traveling P22 EBIRD 66.0 1.77 2.0 1 G1176016 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298401494 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Monroe US-NY-055 13.0 Webster, 574 Bay Road L3373238 P 43.23753 -77.51164 2015-02-19 10:15:00 obsr1423702 S21973378 Stationary P21 EBIRD 106.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303014632 2015-03-14 10:53:56 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 2 United States US New York US-NY Hamilton US-NY-041 14.0 Eldridge Antiques L1613810 P 43.4591494 -74.4428429 2015-03-14 09:50:00 obsr1735540 S22341590 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312292211 2021-03-26 07:20:31.408164 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus N 10 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-04-23 08:00:00 obsr2011512 S23012989 Traveling P22 EBIRD 80.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317114681 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-08 06:40:00 obsr41879 S23301598 Traveling P22 EBIRD 141.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295190619 2018-08-04 16:55:44 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Trumansburg-1679 Taughannock Blvdz L3339853 P 42.540826 -76.592319 2015-02-06 11:06:00 obsr1791331 S21697212 Stationary P21 EBIRD 34.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304461672 2021-04-01 11:14:02.420281 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 6 United States US New York US-NY Jefferson US-NY-045 13.0 US-NY-Chaumont-13722 Case Rd L3343921 P 44.058796 -76.099869 2015-03-21 09:00:00 obsr891847 S22454417 Traveling P22 EBIRD 25.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311536198 2015-05-13 20:19:57 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 2 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-04-20 08:00:00 obsr2172593 S22962431 Traveling P22 EBIRD 90.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300696135 2015-03-03 10:30:56 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-02 09:12:00 obsr1334267 S22156275 Traveling P22 EBIRD 17.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300867808 2020-10-15 15:34:09 337 species avibase-694C127A Mute Swan Cygnus olor 1 Female, Adult (1) United States US New York US-NY Washington US-NY-115 13.0 Yoleberry Farms L4048976 P 43.4144232 -73.5374594 2015-02-26 06:14:00 obsr1204821 S22169304 Stationary P21 EBIRD 10.0 1.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307228306 2021-03-31 04:06:57.023771 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 2 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-03 15:03:00 obsr1721609 S22664327 Traveling P22 EBIRD 23.0 0.805 3.0 1 G1203141 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303600348 2021-11-09 21:56:49.750103 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 3 United States US New York US-NY Ulster US-NY-111 28.0 home L3265416 P 41.9668096 -74.2864877 2015-03-16 09:00:00 obsr595164 S22387984 Historical P62 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314690091 2021-03-24 19:48:44.880783 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 16 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-01 15:54:00 obsr991026 S23164684 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310513234 2021-03-30 19:29:33.633096 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 2 United States US New York US-NY Suffolk US-NY-103 30.0 41 Belton Road, Babylon L986538 P 40.6931311 -73.3296955 2015-04-16 07:00:00 obsr247620 S22897656 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308525300 2021-04-01 11:30:42.037277 681 species avibase-407E2CA8 Common Merganser Mergus merganser 28 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-08 15:45:00 obsr1135516 S22759076 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297772466 2021-11-09 22:04:47.967972 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-15 14:15:00 obsr840949 S21919031 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312764420 2021-03-24 20:06:25.370375 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 6 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Home L3158249 P 42.7894329 -77.5681436 2015-04-25 06:50:00 obsr39511 S23046085 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316794316 2021-03-19 16:44:35.607263 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--South Meadow Trail L591205 H 43.0076599 -77.5658798 2015-05-07 08:42:00 obsr1097423 S23283647 Traveling P22 EBIRD 28.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303338959 2021-12-10 08:21:29.396662 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-15 09:30:00 obsr2211514 S22367149 Traveling P22 EBIRD 180.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321794836 2021-03-19 16:19:20.977326 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-17 17:30:00 obsr2597186 S23567217 Traveling P22 EBIRD 70.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322316246 2021-12-24 11:02:14.483178 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-23 16:33:00 obsr730231 S23599005 Traveling P22 EBIRD 103.0 2.414 2.0 1 G1286135 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307117329 2021-03-26 07:07:10.758746 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 10 United States US New York US-NY Richmond US-NY-085 Conference House Park L302089 H 40.4995098 -74.2516756 2015-04-03 09:12:00 obsr1958124 S22656503 Traveling P22 EBIRD 36.0 0.966 2.0 1 G1202540 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312888043 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-25 12:00:00 obsr1762613 S23053320 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303032403 2021-05-05 15:43:39.075206 483 species avibase-85625D75 Mallard Anas platyrhynchos 30 United States US New York US-NY New York US-NY-061 Liberty Island/Statue of Liberty (NY County) L2686238 H 40.6900653 -74.0452476 2015-03-14 10:00:00 obsr2549280 S22343197 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303930090 2021-03-30 19:07:52.958398 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-01 13:30:00 obsr2182516 S22413715 Traveling P22 EBIRD 70.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311509717 2018-08-04 17:10:30 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Hundred Acre Pond L139802 H 43.0289001 -77.5643997 2015-04-19 08:55:00 obsr2065230 S22960704 Traveling P22 EBIRD 120.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310271841 2015-11-05 11:19:11 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 105 Eastern Heights Dr., Ithaca L2724192 P 42.425089 -76.455526 2015-04-15 08:26:00 obsr1318356 S22880570 Traveling P22 EBIRD 9.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290685407 2021-03-30 19:29:33.633096 7732 species avibase-A091D50A Northern Harrier Circus hudsonius X United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-10 07:45:00 obsr564905 S21319550 Traveling P22 EBIRD 70.0 3.219 2.0 1 G1107141 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320398186 2015-05-17 00:09:22 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Herkimer US-NY-043 13.0 Bronner Rd 1 L3577293 P 43.0806548 -74.8361421 2015-05-16 14:00:00 obsr592357 S23484372 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291807997 2021-11-20 09:30:27.481745 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake, end of Creekwalk L1331492 H 43.0680178 -76.1778662 2015-01-18 15:00:00 obsr1633923 S21409265 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308413868 2021-04-01 12:28:44.297881 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 4 United States US New York US-NY Chenango US-NY-017 28.0 Chenango River along RR tracks L3528471 P 42.3709608 -75.6386 2015-04-07 09:34:00 obsr1303581 S22750286 Traveling P22 EBIRD 76.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309846545 2021-04-01 11:23:42.170869 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-04-12 09:12:00 obsr589593 S22850979 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306565551 2021-03-26 06:29:14.715704 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Madison US-NY-053 13.0 Lake Rd L3528630 P 43.1468866 -75.8719361 2015-03-31 14:50:00 obsr666964 S22614894 Stationary P21 EBIRD 8.0 2.0 1 G1199684 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313043386 2021-03-23 16:39:03.255227 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-26 06:50:00 obsr1958124 S23062705 Traveling P22 EBIRD 7.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304510163 2021-03-22 09:17:32.016297 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 1 United States US New York US-NY Oneida US-NY-065 13.0 Whitestown L210157 P 43.17351 -75.4187135 2015-03-15 obsr1384380 S22458090 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297297672 2021-04-01 11:49:53.573686 505 species avibase-C732CB10 American Black Duck Anas rubripes 30 United States US New York US-NY Queens US-NY-081 30.0 Worlds Fair Marina, Flushing L1791669 H 40.7599179 -73.8530159 2015-02-15 13:05:00 obsr1982614 S21875761 Traveling P22 EBIRD 35.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305853157 2021-04-01 11:24:19.637193 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 15 United States US New York US-NY Monroe US-NY-055 13.0 Slater Creek (Russell Station) L140439 H 43.2691002 -77.6264038 2015-03-28 17:45:00 obsr934639 S22560640 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309660313 2018-08-04 17:06:17 30494 species avibase-240E3390 House Sparrow Passer domesticus 54 United States US New York US-NY Suffolk US-NY-103 US-NY_842 30.0 Cupsogue Beach County Park L566310 H 40.7713119 -72.7373457 2015-04-06 17:18:00 obsr395994 S22837081 Traveling P22 EBIRD 45.0 1.609 1.0 1 G1217923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310927379 2018-02-01 15:11:46 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom38 L3513980 H 42.6208868 -76.3556204 2015-04-18 13:03:00 obsr1655171 S22924864 Stationary P21 EBIRD 5.0 2.0 1 G1229849 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299731435 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-16 14:00:00 obsr2152799 S21370395 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308260011 2021-03-26 06:17:19.712573 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 6 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-04-07 12:26:00 obsr502830 S22738993 Traveling P22 EBIRD 48.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303143313 2021-03-23 16:48:08.60516 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 110 United States US New York US-NY Seneca US-NY-099 13.0 US-NY-Romulus-5026–5208 State Route 89 L3447372 P 42.778663 -76.769669 2015-03-04 16:08:00 obsr2173269 S22351871 Traveling P22 EBIRD 27.0 3.219 3.0 1 G1179649 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303114741 2021-03-30 19:13:38.458673 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 1 United States US New York US-NY Monroe US-NY-055 13.0 Slater Creek (Russell Station) L140439 H 43.2691002 -77.6264038 2015-03-14 17:31:00 obsr334398 S22349526 Stationary P21 EBIRD 4.0 2.0 1 G1179466 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318987459 2018-08-06 22:29:42 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 15 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-05-12 06:10:00 obsr286403 S23405801 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321683024 2021-03-19 16:44:35.607263 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-20 09:00:00 obsr2364166 S23560381 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317243695 2021-03-26 07:56:20.588749 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-08 10:55:00 obsr916370 S23308426 Traveling P22 EBIRD 95.0 3.058 5.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313908017 2021-03-19 16:08:39.161312 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-04-28 10:00:00 obsr479109 S23116689 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320508869 2021-03-26 06:21:54.883933 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Kings US-NY-047 Coney Island Creek Park L614792 H 40.5813224 -74.0052688 2015-05-17 11:20:00 obsr187432 S23490345 Traveling P22 EBIRD 39.0 0.129 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289119267 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek L845821 H 40.5811388 -73.9927912 2015-01-03 10:24:00 obsr2519357 S21194313 Traveling P22 EBIRD 150.0 2.897 12.0 1 G1093831 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308227637 2021-03-23 16:51:24.016808 6616 species avibase-7E022378 Common Loon Gavia immer 16 United States US New York US-NY Steuben US-NY-101 28.0 River Rd. Boat Launch L190042 H 42.11583 -77.00531 2015-04-06 16:00:00 obsr1334267 S22736496 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315310360 2021-03-26 06:29:56.44369 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 The Yard L2639964 P 43.3201667 -77.7224135 2015-05-03 12:50:00 obsr1482218 S23199497 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319199108 2015-05-13 07:59:22 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-13 06:35:00 obsr2750470 S23418188 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322580251 2018-08-06 22:31:00 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Greene US-NY-039 28.0 Mountain Top Arboretum L919375 P 42.2222092 -74.1346586 2015-05-24 08:00:00 obsr2978565 S23613940 Traveling P22 EBIRD 195.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323258932 2021-03-26 06:39:43.334073 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-23 10:40:00 obsr1706920 S23656668 Traveling P22 EBIRD 60.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310219855 2015-04-15 13:27:37 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 Smith Hill L3308153 P 42.3480147 -76.0314846 2015-04-15 11:05:00 obsr879105 S22877154 Traveling P22 EBIRD 10.0 3.219 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288334035 2021-11-09 22:04:47.967972 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 10 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-01-01 12:00:00 obsr2214649 S21129118 Traveling P22 EBIRD 30.0 1.609 2.0 1 G1089466 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311623990 2021-03-26 06:21:54.883933 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-20 12:55:00 obsr1516787 S22968877 Traveling P22 EBIRD 60.0 2.334 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304560771 2020-03-03 19:33:23 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Shirley Chisholm SP (Fountain Ave. Landfill) L671525 H 40.6472791 -73.8624734 2015-03-22 07:15:00 obsr1821546 S22461874 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319018266 2021-04-01 12:32:15.282601 592 species avibase-3072CC16 Redhead Aythya americana N X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-12 12:00:00 obsr2505956 S23407481 Rusty Blackbird Spring Migration Blitz P41 EBIRD 150.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313560055 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-27 09:15:00 obsr363953 S23094382 Traveling P22 EBIRD 200.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306805604 2022-02-18 10:47:29.953615 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-01 19:05:00 obsr1062070 S22632862 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318262106 2021-03-30 19:07:12.70155 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Jefferson US-NY-045 US-NY_759 13.0 South Sandy Creek observation platform L1808409 P 43.7140321 -76.1906148 2015-05-09 10:40:00 obsr1558090 S23365163 Traveling P22 EBIRD 95.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315766486 2021-11-02 20:32:06.137153 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-04 12:30:00 obsr317968 S23224194 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311175546 2018-08-04 17:08:36 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-11 16:03:00 obsr2700277 S22940274 Traveling P22 EBIRD 79.0 3.219 2.0 1 G1225650 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301548781 2021-04-01 12:26:53.827486 662 species avibase-FB738385 Bufflehead Bucephala albeola 55 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-07 15:34:00 obsr2270510 S22221109 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313735185 2018-08-04 17:12:35 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-28 07:45:00 obsr544268 S23105683 Traveling P22 EBIRD 75.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315028236 2021-04-01 10:55:39.308231 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-02 09:45:00 obsr2571887 S23184030 Traveling P22 EBIRD 75.0 2.012 4.0 1 G1248148 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302330296 2021-04-01 12:14:19.266649 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-10 14:30:00 obsr1137265 S22286388 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319682278 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 07:20:00 obsr2078092 S23445854 Traveling P22 EBIRD 420.0 4.828 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288964392 2021-03-30 19:29:33.633096 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Suffolk US-NY-103 30.0 Inlet Pond County Park L689239 H 41.108233 -72.3808479 2015-01-03 07:15:00 obsr2528068 S21181987 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314279099 2021-03-23 16:52:36.900075 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Pine Neck Sanctuary L122956 H 40.84111 -72.56528 2015-04-30 07:20:00 obsr1736113 S23139752 Traveling P22 EBIRD 70.0 3.541 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308682999 2021-03-19 15:59:05.496822 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 3 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-04-09 14:43:00 obsr955789 S22771187 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290914929 2019-01-03 10:54:11 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-A L3288843 P 40.26648 -73.25628 2015-01-11 08:00:00 obsr840949 S21337874 Traveling P22 EBIRD 60.0 12.392 44.0 1 G1108331 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308810760 2021-03-26 07:07:10.758746 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 20 United States US New York US-NY Richmond US-NY-085 Conference House Park L302089 H 40.4995098 -74.2516756 2015-04-10 08:09:00 obsr1958124 S22780977 Traveling P22 EBIRD 34.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288993959 2021-03-26 07:20:31.408164 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Suffolk US-NY-103 30.0 Home L1525287 P 40.8112246 -73.1320357 2015-01-04 10:33:00 obsr2448785 S21184465 Stationary P21 EBIRD 87.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306519164 2018-08-04 17:04:51 431 species avibase-90E2543E Blue-winged Teal Spatula discors 4 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-03-31 11:00:00 obsr369788 S22611162 Traveling P22 EBIRD 30.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314746269 2020-03-15 09:14:53 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-01 12:10:00 obsr2096529 S23168056 Traveling P22 EBIRD 35.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309158298 2021-03-22 09:15:15.32301 7200 species avibase-49D9148A Great Egret Ardea alba 6 United States US New York US-NY Niagara US-NY-063 US-NY_1729 13.0 Tonawanda WMA--Ruddy Marsh (West) L899749 H 43.1229132 -78.4875298 2015-04-11 14:20:00 obsr408487 S22804668 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305964882 2021-03-23 16:39:03.255227 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-29 07:55:00 obsr1958124 S22569058 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302073159 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 Randalls Island--NE fields and shoreline L1785381 H 40.7943072 -73.9138235 2015-03-08 13:15:00 obsr2105033 S22262066 Traveling P22 EBIRD 40.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311646740 2015-04-20 17:41:37 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-19 10:00:00 obsr1167884 S22970550 Stationary P21 EBIRD 75.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307357311 2021-03-26 07:07:10.758746 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-04 07:30:00 obsr1958124 S22673792 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299266277 2021-04-01 12:32:15.282601 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-22 14:00:00 obsr2406624 S22047429 Traveling P22 EBIRD 165.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308078966 2021-04-01 12:32:15.282601 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-06 14:00:00 obsr547602 S22724709 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304369228 2021-03-30 19:37:33.521815 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis N X United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-03-21 09:21:00 obsr1721609 S22447779 Traveling P22 EBIRD 125.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292228623 2021-04-01 11:15:31.646886 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 6 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-01-20 12:08:00 obsr187432 S21441614 Traveling P22 EBIRD 51.0 1.046 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309017483 2021-03-26 06:29:56.44369 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula N 5 United States US New York US-NY Monroe US-NY-055 13.0 10 Parkview Drive yard birds L690404 P 43.1565179 -77.5146952 2015-04-11 07:58:00 obsr2817239 S22795681 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313522323 2015-04-27 13:39:21 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Tompkins US-NY-109 28.0 Shindagin Hollow SF--Shindagin Hollow Rd. L2233053 H 42.3338153 -76.3400674 2015-04-23 06:00:00 obsr1725472 S23092170 Traveling P22 EBIRD 145.0 2.414 4.0 1 G1239595 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310536496 2021-04-01 10:47:08.851048 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 12 United States US New York US-NY Broome US-NY-007 28.0 Victory St. Marsh Area L524450 H 42.1243283 -75.9820676 2015-04-16 17:09:00 obsr800690 S22899368 Stationary P21 EBIRD 29.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314445082 2021-12-08 07:58:41.562209 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 50 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-30 18:02:00 obsr2571303 S23149697 Traveling P22 EBIRD 78.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306303927 2021-04-01 11:15:31.646886 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-30 08:15:00 obsr2729716 S22594393 Historical P62 EBIRD 210.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317046066 2021-03-19 15:59:05.496822 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 3 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River, Riverwalk Plaza L3479883 H 42.1255097 -77.961348 2015-05-07 16:30:00 obsr2700440 S23297718 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309355943 2021-04-01 11:30:42.037277 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY New York US-NY-061 30.0 W Village Backyards and Airspace L974907 P 40.7366845 -74.0071853 2015-04-12 10:42:00 obsr128156 S22817543 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298294953 2021-04-01 11:15:31.646886 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula X United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-02-18 15:00:00 obsr2448957 S21964215 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306865917 2021-11-15 03:06:58.889978 447 species avibase-C235A4D7 Gadwall Mareca strepera 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-01 08:47:00 obsr1548221 S22637244 Traveling P22 EBIRD 45.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297943479 2015-02-17 10:00:53 1472 domestic avibase-05471785 Indian Peafowl (Domestic type) Pavo cristatus (Domestic type) 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Ontario US-NY-069 28.0 Wesley HIll Maple Syrup Farm L2621459 P 42.7290459 -77.4821091 2015-02-15 08:30:00 obsr1820840 S21934367 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311332570 2021-04-01 11:30:42.037277 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 3 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-19 09:30:00 obsr814887 S22949764 Traveling P22 EBIRD 195.0 5.633 4.0 1 G1226625 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321441267 2021-03-19 16:44:35.607263 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 9 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-03-29 16:00:00 obsr1962295 S23545802 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292938277 2020-02-15 04:21:41 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Seneca US-NY-099 13.0 Finger Lakes Regional Airport L3284263 H 42.8787599 -76.783458 2015-01-24 14:50:00 obsr2001485 S21518458 Traveling P22 EBIRD 14.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS301787761 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-08 14:15:00 obsr440908 S22240534 Stationary P21 EBIRD 45.0 3.0 1 G1170633 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308438686 2021-04-01 12:45:19.712958 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 30 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-04-07 14:20:00 obsr114791 S22752440 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313444752 2015-04-27 09:01:27 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-27 06:52:00 obsr1165633 S23087577 Traveling P22 EBIRD 129.0 4.345 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309890360 2021-03-23 17:15:00.080143 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus X United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP, Sodus L712218 H 43.2673188 -77.0297813 2015-04-13 15:48:00 obsr528918 S22854242 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303901228 2021-11-09 19:56:28.26385 16285 species avibase-5BC4E0EF Willow Flycatcher Empidonax traillii 3 United States US New York US-NY Orange US-NY-071 28.0 Sawyer's Peak L3323518 P 41.3716881 -74.3810892 2015-01-27 08:30:00 obsr186871 S22411571 Stationary P21 EBIRD 210.0 3.0 1 G1184311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314452529 2021-03-23 17:39:28.36772 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-04-30 19:25:00 obsr1839967 S23150263 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307196666 2021-03-23 16:48:08.60516 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 10 United States US New York US-NY Seneca US-NY-099 13.0 US-NY-Seneca Falls-2168-2178 Lake Rd L2713634 P 42.920063 -76.749082 2015-04-02 18:34:00 obsr2173269 S22661939 Stationary P21 EBIRD 12.0 3.0 1 G1202713 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307559247 2021-04-01 11:30:42.037277 337 species avibase-694C127A Mute Swan Cygnus olor X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-04 obsr2277801 S22687927 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321737027 2015-05-21 15:15:51 20829 species avibase-B9B272F4 Common Raven Corvus corax 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-21 08:00:00 obsr2504709 S23563556 Traveling P22 EBIRD 55.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288966427 2021-04-01 12:18:57.910168 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Tompkins US-NY-109 13.0 Portland Point Rd. and Overlook L270445 H 42.5285274 -76.5272433 2015-01-04 09:00:00 obsr59643 S21182163 Traveling P22 EBIRD 40.0 0.322 6.0 1 G1095924 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301510608 2021-11-09 18:11:48.679808 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Dutchess US-NY-027 13.0 Andrew Haight Rd. L1268498 H 41.8140583 -73.645885 2015-03-07 11:30:00 obsr1917973 S22218110 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314335532 2015-04-30 12:32:59 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 US-NY-Moravia-2499–2585 State Route 38 L3601365 P 42.738375 -76.456419 2015-04-30 06:00:00 obsr1092576 S23142715 Incidental P20 EBIRD 2.0 0 G1244188 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304259625 2021-11-09 17:48:39.818677 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Dutchess US-NY-027 13.0 104 Bedell Rd, Poughkeepsie L10910414 P 41.7239345 -73.8816366 2015-03-20 16:30:00 obsr788817 S22439483 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319931393 2018-02-01 15:11:46 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor21 L3513963 H 42.6488131 -76.0917255 2015-05-09 15:44:00 obsr2535282 S23459828 Stationary P21 EBIRD 15.0 2.0 1 G1272230 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289295247 2021-03-26 06:29:56.44369 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis N 4 United States US New York US-NY Monroe US-NY-055 13.0 4 Woodside Drive, Penfield, NY L868257 P 43.1235553 -77.4714392 2015-01-05 00:15:00 obsr2716898 S21207726 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301732142 2021-12-19 10:32:19.574298 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-03-08 09:00:00 obsr1139818 S22235688 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290237859 2021-03-26 06:09:25.361188 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Victory St. JC L166647 P 42.125027 -75.98304 2015-01-10 13:00:00 obsr1626739 S21283511 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299072132 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-02-22 14:30:00 obsr30103 S22032024 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315024831 2018-08-04 17:14:09 7318 species avibase-C6772490 Yellow-crowned Night-Heron Nyctanassa violacea 3 United States US New York US-NY Essex US-NY-031 13.0 Maple Meadows L4115608 P 44.0422008 -73.4797356 2015-05-02 16:05:00 obsr2769235 S23183850 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301866200 2019-03-04 17:55:09 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 28 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-03-08 09:00:00 obsr1918430 S22246568 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307769007 2021-11-09 21:35:18.646328 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-04 12:00:00 obsr1904038 S22702411 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315115213 2021-03-26 06:29:56.44369 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-02 05:30:00 obsr2595828 S23188920 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305376835 2021-04-01 11:49:53.573686 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-23 07:24:00 obsr1982614 S22524394 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303338950 2021-12-10 08:21:29.396662 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 4 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-15 09:30:00 obsr2211514 S22367149 Traveling P22 EBIRD 180.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307806185 2018-08-04 17:05:38 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689 2015-04-05 14:15:00 obsr998593 S22705164 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310771484 2021-05-10 13:22:42.125601 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 32 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--DIL Woods & Mohawk Rd. L99395 H 42.4959541 -76.4513443 2015-04-17 19:55:00 obsr881968 S22914959 Stationary P21 EBIRD 30.0 5.0 1 G1223458 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293862754 2021-03-30 19:07:52.958398 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 3 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach--West L519918 H 40.5830444 -73.93058 2015-01-29 14:45:00 obsr1821546 S21591789 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312802230 2021-11-09 18:46:28.909415 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Dutchess US-NY-027 13.0 US-NY-Pleasant Valley-57 Pond Gut Rd L3589181 P 41.723024 -73.756246 2015-04-25 07:56:00 obsr2175245 S23048456 Traveling P22 EBIRD 226.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312372318 2021-03-30 19:29:33.633096 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 #1NB L1470823 P 41.0596744 -72.307855 2015-04-23 10:30:00 obsr784610 S23018535 Traveling P22 EBIRD 120.0 12.874 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311220064 2015-04-19 12:08:14 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Ontario US-NY-069 US-NY_835 13.0 Canadice Lake - east side L910292 P 42.7273436 -77.5621033 2015-04-19 09:40:00 obsr983655 S22942924 Traveling P22 EBIRD 30.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309409756 2021-03-26 07:30:35.289997 26109 species avibase-BAC33609 Brown Creeper Certhia americana 3 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--Comstock Knoll L290965 H 42.4498398 -76.4723566 2015-04-12 12:47:00 obsr1655171 S22820791 Traveling P22 EBIRD 20.0 0.322 2.0 1 G1219987 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311787798 2021-03-23 16:30:20.514143 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Mexico-192 Sage Creek Dr L3572034 P 43.52566 -76.238123 2015-04-21 08:30:00 obsr1351949 S22979644 Traveling P22 EBIRD 30.0 20.921 2.0 1 G5326521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313786516 2021-11-09 21:56:49.750103 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Ulster US-NY-111 28.0 home L3265416 P 41.9668096 -74.2864877 2015-04-25 17:00:00 obsr595164 S23108874 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300956914 2015-03-04 19:33:57 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-03-04 12:00:00 obsr1349676 S22175983 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312870510 2021-03-30 19:39:10.250398 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-25 14:14:00 obsr2844530 S23052269 Traveling P22 EBIRD 132.0 1.609 2.0 1 G1501688 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295445260 2016-02-05 13:48:38 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 400 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-02-07 09:45:00 obsr1668936 S21717809 Traveling P22 EBIRD 90.0 1.609 6.0 1 G1138301 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312765472 2015-04-25 11:25:19 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Schenectady US-NY-093 13.0 Old Maid Woods City Preserve L3588931 P 42.8255681 -73.9980694 2015-04-25 09:40:00 obsr2851090 S23046153 Traveling P22 EBIRD 40.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293904897 2021-02-01 04:45:51.985731 242 species avibase-D3A260BC Snow Goose Anser caerulescens 1 United States US New York US-NY Livingston US-NY-051 13.0 Home - Feeders and Woodlot L3326245 P 42.7480094 -77.6821368 2015-01-29 13:00:00 obsr1962379 S21595031 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1079603824 2021-02-21 12:05:24.683407 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 3 United States US New York US-NY Erie US-NY-029 13.0 Aqua Lane Park--Sheridan Boat Launch L8676009 H 42.9653675 -78.9243042 2015-01-18 08:15:00 obsr2155450 S82082258 Stationary P21 EBIRD 30.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1133747933 2021-04-27 11:51:18.575108 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--South Marina L458871 H 43.3060838 -77.7083373 2015-04-26 17:13:00 obsr1181085 S86492654 Traveling P22 EBIRD 9.0 0.241 2.0 1 G6615586 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309144643 2021-04-01 10:58:47.067498 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 10 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-04-11 11:25:00 obsr408487 S22803707 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318986852 2015-05-12 14:39:43 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Essex US-NY-031 13.0 Greeley Pond, Westport, NY L3638190 P 44.158813 -73.468925 2015-05-09 09:32:00 obsr2693145 S23405766 Traveling P22 EBIRD 39.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000285 2021-03-26 07:56:20.588749 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-02 16:00:00 obsr2218212 S23775901 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302918637 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 12 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-13 09:25:00 obsr916370 S22333771 Traveling P22 EBIRD 80.0 3.058 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293915356 2021-08-07 08:44:03.883901 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 64 United States US New York US-NY Warren US-NY-113 14.0 Harrisburg Rd, Stony Creek L3326325 P 43.4489311 -73.9972115 2015-01-29 08:55:00 obsr2855945 S21595823 Traveling P22 EBIRD 130.0 13.036 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309958099 2018-08-04 17:09:07 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-04-14 08:35:00 obsr1565981 S22859064 Traveling P22 EBIRD 56.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303403808 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-15 13:16:00 obsr924076 S22372233 Traveling P22 EBIRD 252.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299818202 2015-05-07 17:02:31 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-02-27 07:40:00 obsr455249 S22089485 Traveling P22 EBIRD 8.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320701667 2021-04-01 10:44:41.995232 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Allegany US-NY-003 28.0 Hanging Bog WMA L2218335 H 42.3107156 -78.2319904 2015-05-17 14:30:00 obsr2366185 S23500540 Traveling P22 EBIRD 300.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309463192 2016-03-30 17:44:19 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-12 08:23:00 obsr534615 S22823824 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323277808 2021-04-01 11:15:31.646886 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-26 16:30:00 obsr1382841 S23657991 Traveling P22 EBIRD 210.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295417770 2021-03-26 06:09:25.361188 16788 species avibase-0A76713F Couch's Kingbird Tyrannus couchii 2 United States US New York US-NY Broome US-NY-007 28.0 home L3344694 P 42.09646 -75.879425 2015-02-07 16:00:00 obsr2491105 S21715420 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323254981 2021-03-19 16:44:35.607263 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-26 10:50:00 obsr528918 S23656419 Traveling P22 EBIRD 55.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310740414 2021-03-24 20:33:47.533911 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Arrowwood Drive-Tareyton Park L2393851 P 42.4770939 -76.4614749 2015-04-17 18:06:00 obsr620377 S22912938 Traveling P22 EBIRD 47.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323785589 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 P C3 P United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo -- Center for Global Conservation (CGC) L1147553 P 40.8545266 -73.8786364 2015-05-29 13:50:00 obsr128156 S23694021 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322332917 2015-05-23 20:11:07 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Jefferson US-NY-045 13.0 Watertown: Wiley Middle School woods L3667128 P 43.9536064 -75.9085 2015-05-21 12:30:00 obsr1558090 S23600006 Traveling P22 EBIRD 20.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS389581817 2021-11-09 21:58:30.368982 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Ulster US-NY-111 28.0 686 Cape Rd, Ellenville, NY L3930646 P 41.7504039 -74.4375658 2015-04-04 10:00:00 obsr941056 S28826698 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312169478 2021-03-23 17:26:08.495143 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-04-17 08:30:00 obsr525303 S23004845 Traveling P22 EBIRD 60.0 1.609 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322468230 2018-08-06 22:31:02 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Cortland US-NY-023 28.0 Morgan Hill SF--Morgan Hill Rd. L2957577 H 42.7483043 -75.9996629 2015-05-24 10:03:00 obsr620377 S23607827 Traveling P22 EBIRD 42.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313747159 2021-03-26 06:07:26.162322 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 2 United States US New York US-NY Allegany US-NY-003 28.0 Cuba Lake L1326387 H 42.2508599 -78.2923025 2015-04-25 11:08:00 obsr870166 S23106385 Traveling P22 EBIRD 29.0 8.047 3.0 1 G1240624 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316949526 2021-03-26 07:56:20.588749 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-07 08:00:00 obsr2534001 S23292189 Traveling P22 EBIRD 75.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297312888 2021-03-26 08:05:20.615241 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Onondaga US-NY-067 13.0 Skan - 5 E. Lake St L631480 P 42.9468657 -76.4167383 2015-02-15 10:00:00 obsr2279567 S21877140 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310959360 2021-04-01 11:30:42.037277 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus N 20 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-17 14:00:00 obsr423515 S22926961 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298287670 2021-03-26 06:07:45.516082 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-02-18 10:30:00 obsr1659461 S21963700 Traveling P22 EBIRD 300.0 16.093 2.0 1 G1152399 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315174293 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 H C2 H United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-02 09:35:00 obsr924076 S23192187 Traveling P22 EBIRD 407.0 4.023 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300682375 2015-03-03 08:18:33 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 2 United States US New York US-NY Steuben US-NY-101 28.0 US-NY-Painted Post-3108 Knoll Rd L1826322 P 42.165969 -77.119302 2015-03-03 08:14:00 obsr2537623 S22155153 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316055188 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-05-05 06:59:00 obsr2270510 S23240801 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311780521 2021-03-31 04:04:13.35072 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Seneca US-NY-099 13.0 Sampson SP L356616 H 42.7288824 -76.9038166 2015-04-20 09:00:00 obsr2399211 S22979215 Traveling P22 EBIRD 150.0 8.047 3.0 1 G1229927 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300210453 2021-04-01 11:49:53.573686 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 11 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-02-28 10:41:00 obsr1077730 S22120691 Traveling P22 EBIRD 147.0 4.0 13.0 1 G1162162 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306590105 2021-11-15 03:06:58.889978 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-31 12:45:00 obsr1555046 S22616803 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1208366 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306246453 2021-03-26 06:29:56.44369 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-03-29 07:00:00 obsr2449897 S22589994 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316586565 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 06:30:00 obsr1911748 S23271696 Traveling P22 EBIRD 420.0 6.437 2.0 1 G1254906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311229773 2021-03-26 07:20:31.408164 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 4 United States US New York US-NY Suffolk US-NY-103 US-NY_2800 30.0 Hither Hills SP--Campground L2927714 H 41.0086886 -72.0111517 2015-04-19 11:39:00 obsr598381 S22943533 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317033847 2021-03-30 19:13:38.458673 23291 species avibase-58C502EA Barn Swallow Hirundo rustica X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-07 19:30:00 obsr2504709 S23296993 Stationary P21 EBIRD 40.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310839106 2018-08-04 17:09:06 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 9 United States US New York US-NY Tompkins US-NY-109 28.0 Fall Creek Rd. wetlands L1111423 H 42.5171015 -76.3409478 2015-04-14 07:50:00 obsr2683910 S22919341 Stationary P21 EBIRD 3.0 2.0 1 G1223893 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303113978 2018-08-04 17:00:45 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N, n. branch of split (0.15km)) L1372136 P 42.4805343 -76.4524385 2015-03-14 17:49:00 obsr2307843 S22349473 Traveling P22 EBIRD 5.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304989265 2021-03-26 07:52:59.845315 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-23 07:00:00 obsr1000124 S22494068 Area P23 EBIRD 78.0 2.59 2.0 1 G1190886 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317726757 2017-04-13 23:12:20 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Monroe US-NY-055 13.0 Tinker Nature Park L946685 H 43.0670694 -77.57339 2015-05-09 17:50:00 obsr934639 S23336501 Traveling P22 EBIRD 25.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310400444 2021-04-01 12:14:19.266649 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Stony Brook University L2350778 H 40.9146933 -73.1215687 2015-04-13 12:49:00 obsr758734 S22889659 Traveling P22 EBIRD 60.0 2.3 2.0 1 G1221831 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295413151 2021-04-01 12:45:19.712958 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-07 10:50:00 obsr2796494 S21715065 Traveling P22 EBIRD 40.0 0.805 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872625 2021-04-01 12:26:53.827486 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr2321296 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289284025 2021-03-24 21:10:11.310781 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Saratoga US-NY-091 13.0 36 Curt Blvd L2229955 P 43.0492325 -73.8315735 2015-01-05 09:40:00 obsr907769 S21206830 Stationary P21 EBIRD 140.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321008224 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY New York US-NY-061 30.0 Riverside Park--North of 96th St. L1018490 H 40.8073616 -73.9684904 2015-05-17 10:00:00 obsr794187 S23519167 Traveling P22 EBIRD 150.0 2.414 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305585112 2018-08-04 17:03:42 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 Male, Adult (1) United States US New York US-NY Onondaga US-NY-067 28.0 Tully Lakes L1129390 P 42.79011 -76.1278725 2015-03-27 08:14:00 obsr1178949 S22540556 Traveling P22 EBIRD 117.0 8.1 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311010369 2018-08-04 17:09:43 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-18 11:00:00 obsr1489009 S22930123 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306097594 2021-04-01 10:57:06.520339 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-03-29 15:50:00 obsr2693145 S22578665 Traveling P22 EBIRD 80.0 1.931 2.0 1 G1196693 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291839476 2021-04-01 11:14:02.420281 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Jefferson US-NY-045 13.0 Jefferson County Grasslands L3302774 P 44.1916042 -76.006422 2015-01-18 11:45:00 obsr2056110 S21411439 Traveling P22 EBIRD 60.0 45.062 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316794336 2021-03-19 16:44:35.607263 5922 species avibase-06B9BD24 Sanderling Calidris alba 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--South Meadow Trail L591205 H 43.0076599 -77.5658798 2015-05-07 08:42:00 obsr1097423 S23283647 Traveling P22 EBIRD 28.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304981901 2021-04-01 12:32:15.282601 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 52 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-03-21 10:35:00 obsr1927254 S22493523 Traveling P22 EBIRD 45.0 2.414 2.0 1 G1190793 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324387884 2022-03-06 22:19:43.839237 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Hamilton US-NY-041 14.0 Ferd's Bog L109141 H 43.7886933 -74.749732 2015-05-31 13:30:00 obsr317968 S23733048 Traveling P22 EBIRD 180.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290716754 2021-03-23 17:26:08.495143 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 14 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-11 15:00:00 obsr2175245 S21322086 Traveling P22 EBIRD 75.0 3.219 6.0 1 G1107399 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316052230 2021-11-09 19:01:40.008558 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-05 08:00:00 obsr671490 S23240641 Traveling P22 EBIRD 60.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291640230 2021-03-26 06:29:56.44369 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Monroe US-NY-055 13.0 Jeffords Rd (Monroe Co.) L2406511 P 43.00994 -77.63193 2015-01-18 11:45:00 obsr1097423 S21396494 Stationary P21 EBIRD 13.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320515959 2022-01-20 09:38:40.245267 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-17 06:15:00 obsr1154 S23490660 Traveling P22 EBIRD 373.0 4.023 20.0 1 G1275330 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313740608 2021-03-24 20:33:47.533911 242 species avibase-D3A260BC Snow Goose Anser caerulescens 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sunset Park, Ithaca L1528786 H 42.45875 -76.49325 2015-04-28 09:27:00 obsr1092576 S23106003 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321501914 2021-03-26 06:17:19.712573 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-18 11:00:00 obsr2871264 S23549137 Traveling P22 EBIRD 180.0 1.207 2.0 1 G1280786 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293536840 2021-03-26 06:21:08.096334 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 4 United States US New York US-NY Jefferson US-NY-045 13.0 US-NY-Watertown-527 Davidson St L3317604 P 43.980989 -75.909823 2015-01-27 08:00:00 obsr891847 S21565900 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314582021 2021-03-24 20:11:57.676649 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-30 10:00:00 obsr1633923 S23158577 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311925767 2021-03-26 08:13:27.160698 483 species avibase-85625D75 Mallard Anas platyrhynchos 15 United States US New York US-NY Tioga US-NY-107 28.0 Rt. 17C/Goodrich Rd--Purple Martin colony L2779685 P 42.096825 -76.288589 2015-04-21 06:45:00 obsr1318356 S22988743 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289310886 2021-11-09 21:56:49.991328 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Ulster US-NY-111 28.0 lemongrass restaurant, new paltz L3268726 P 41.7479726 -74.0835397 2015-01-04 13:00:00 obsr1259654 S21208955 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309464493 2021-03-26 06:09:25.361188 8773 species avibase-7AA076EF Barred Owl Strix varia 1 United States US New York US-NY Broome US-NY-007 28.0 Bond St., Binghamton L1430873 P 42.1013271 -75.8812401 2015-04-10 07:15:00 obsr998593 S22823916 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307231394 2021-04-01 11:30:42.037277 6610 species avibase-6C50988A Red-throated Loon Gavia stellata N X United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-03 11:57:00 obsr1961042 S22664551 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317791721 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus N 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-04 07:30:00 obsr2426588 S23339859 Incidental P20 EBIRD 3.0 0 G1187811 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304100188 2021-03-23 17:00:13.087107 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-03-19 18:40:00 obsr59643 S22426957 Traveling P22 EBIRD 18.0 0.322 2.0 1 G1185733 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321344734 2018-08-06 22:30:25 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Essex US-NY-031 US-NY_846 14.0 Marcy Dam L404695 H 44.1587366 -73.9514583 2015-05-17 12:00:00 obsr1995798 S23539566 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290248616 2021-04-01 11:54:40.172593 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 1 United States US New York US-NY Richmond US-NY-085 30.0 Neck Creek Preserve L958581 H 40.5964133 -74.1930269 2015-01-10 14:39:00 obsr1893950 S21284384 Stationary P21 EBIRD 6.0 2.0 1 G1103707 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314646371 2015-05-01 14:41:12 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 4 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-01 14:25:00 obsr334398 S23162148 Traveling P22 EBIRD 14.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304440348 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-03-21 14:00:00 obsr2207991 S22452817 Traveling P22 EBIRD 60.0 1.609 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301651918 2019-09-10 13:56:02 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-03-08 12:39:00 obsr59643 S22228765 Stationary P21 EBIRD 16.0 11.0 1 G1170856 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761254 2021-03-30 19:39:10.250398 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 8 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-06 09:00:00 obsr2218212 S22629514 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313062241 2021-03-23 16:39:03.255227 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-26 09:02:00 obsr1958124 S23063879 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317663060 2018-08-04 17:15:22 7732 species avibase-A091D50A Northern Harrier Circus hudsonius X United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-05-08 18:00:00 obsr1044068 S23333111 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299144757 2021-03-26 06:39:43.334073 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-23 06:20:00 obsr1135516 S22037789 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308383103 2021-03-26 06:13:28.501496 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 1 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Holiday Inn L160744 H 42.08827 -76.79419 2015-04-07 18:34:00 obsr1318356 S22748016 Stationary P21 EBIRD 14.0 4.0 1 G1210647 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289498393 2021-04-01 12:18:57.910168 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 29 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: Christmas Bird Count: City W hill: S loop L1865681 P 42.4407244 -76.5214177 2015-01-01 06:57:00 obsr2760150 S21224083 Traveling P22 EBIRD 260.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306106859 2021-04-01 12:11:50.996293 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Seneca US-NY-099 13.0 Finger Lakes Regional Airport L3284263 H 42.8787599 -76.783458 2015-03-29 14:00:00 obsr1034751 S22579420 Traveling P22 EBIRD 35.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304432192 2021-03-26 07:46:52.994574 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-03-21 07:20:00 obsr119187 S22452231 Traveling P22 EBIRD 104.0 1.609 4.0 1 G1186979 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312876445 2017-01-08 08:50:20 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College L1485004 H 44.4375537 -74.2530447 2015-04-25 11:00:00 obsr443017 S23052660 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308366893 2021-03-30 19:13:38.458673 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 35 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-07 15:45:00 obsr2504709 S22746810 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292740206 2021-03-19 16:32:34.732091 251 domestic avibase-6835DC6C Graylag Goose (Domestic type) Anser anser (Domestic type) 45 United States US New York US-NY Kings US-NY-047 Gravesend Bay, middle parking lot L1843449 H 40.6040297 -74.0243731 2015-01-23 07:28:00 obsr1189028 S21502729 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315479110 2015-08-02 21:38:41 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 2 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Hamlin-683-773 Redman Rd L3610889 P 43.342729 -77.965404 2015-05-01 06:49:00 obsr334398 S23208468 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302630696 2021-03-26 07:07:10.758746 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata N 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-12 13:34:00 obsr1958124 S22312143 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311636606 2021-03-26 06:39:43.334073 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-04-04 17:00:00 obsr601383 S22969777 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296898428 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Kings US-NY-047 30.0 Sheepshead Bay L835012 H 40.582363 -73.9434105 2015-02-14 15:45:00 obsr2448957 S21840053 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315463054 2015-05-03 19:08:11 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY Livingston US-NY-051 13.0 US-NY-PORTAGE, 625 NY-436 L3579171 P 42.574927 -78.013591 2015-05-03 11:44:00 obsr731272 S23207545 Stationary P21 EBIRD 193.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319415399 2022-02-17 14:32:23.002448 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 8 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-12 11:48:00 obsr454647 S23430496 Traveling P22 EBIRD 145.0 3.219 4.0 1 G1269781 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288145416 2018-08-04 16:52:13 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 13 United States US New York US-NY Suffolk US-NY-103 30.0 Carmen's River at Montauk Highway L294841 P 40.8020079 -72.8863523 2015-01-01 08:28:00 obsr395994 S21112975 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290607432 2021-03-26 07:20:31.408164 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 2 United States US New York US-NY Suffolk US-NY-103 30.0 418 Jamaica Avenue L653849 P 40.8152383 -72.9672861 2015-01-10 11:40:00 obsr2934754 S21312631 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295383785 2021-03-23 17:22:05.708166 30494 species avibase-240E3390 House Sparrow Passer domesticus 13 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-07 09:30:00 obsr1000124 S21712795 Area P23 EBIRD 95.0 2.59 2.0 1 G1138553 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313729293 2022-02-18 10:47:29.953615 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 S C2 S United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-28 06:56:00 obsr1062070 S23105273 Stationary P21 EBIRD 97.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311822108 2021-03-26 07:30:35.289997 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 my back yard Trumansburg L2594789 P 42.5410818 -76.6596392 2015-04-21 11:55:00 obsr2260025 S22982121 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311341573 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-04-19 09:30:00 obsr2207991 S22950299 Traveling P22 EBIRD 90.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310879540 2021-04-01 10:47:08.851048 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 1 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-04-17 16:24:00 obsr800690 S22922027 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS920853825 2021-03-23 16:30:20.514143 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 6 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Mexico-192 Sage Creek Dr L3572034 P 43.52566 -76.238123 2015-04-28 08:05:00 obsr2720788 S68975055 Traveling P22 EBIRD 80.0 1.609 2.0 1 G5326510 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290367276 2015-01-11 09:53:36 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus X United States US New York US-NY Livingston US-NY-051 13.0 County Route 71 L730552 P 42.7069197 -77.6757324 2015-01-11 07:53:00 obsr72341 S21293815 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320620779 2021-03-26 06:17:19.712573 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Erie US-NY-029 13.0 Ecology & Environment, Inc. (Private) L682760 P 42.9367576 -78.6593628 2015-05-17 07:00:00 obsr48167 S23496152 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313563136 2015-04-27 16:08:37 526 species avibase-56CCA717 Northern Pintail Anas acuta 7 United States US New York US-NY Allegany US-NY-003 28.0 Browns Marsh L2764855 H 42.1359887 -77.9052973 2015-04-27 11:00:00 obsr1868960 S23094581 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301648420 2016-08-04 23:51:14 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 5 United States US New York US-NY Westchester US-NY-119 30.0 Hunt-Parker Sanctuary--Bylane Farm L786456 H 41.2827085 -73.6707115 2015-03-08 12:24:00 obsr2844530 S22228516 Stationary P21 EBIRD 16.0 2.0 1 G1191739 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308690496 2021-03-23 17:17:33.263343 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Yates US-NY-123 28.0 West River Bridge L812325 H 42.6561188 -77.331562 2015-04-09 14:00:00 obsr983655 S22771829 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322337676 2021-03-19 16:10:30.527219 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-05-23 18:42:00 obsr967916 S23600256 Traveling P22 EBIRD 97.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297652421 2021-03-24 20:58:53.646623 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Livingston US-NY-051 13.0 Nations Rd. IBA--Huston Rd. L810213 H 42.8525297 -77.7958202 2015-02-14 09:00:00 obsr2619130 S21907426 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317978945 2021-03-19 16:02:45.308962 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 Nathaniel Cole Park L2840663 H 42.1436445 -75.705164 2015-05-09 08:00:00 obsr1720232 S23350308 Traveling P22 EBIRD 210.0 1.609 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306832047 2021-03-23 17:23:45.772216 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Livingston US-NY-051 13.0 Co Rd 10 L846164 P 42.7543863 -77.7720129 2015-04-01 18:14:00 obsr72341 S22634918 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307221030 2021-03-23 17:26:08.495143 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-03 08:30:00 obsr1102914 S22663764 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310552425 2021-03-19 16:19:20.977326 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-16 09:25:00 obsr319738 S22900448 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291533883 2021-03-26 07:52:59.845315 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-17 07:23:00 obsr1000124 S21388128 Area P23 EBIRD 60.0 2.59 2.0 1 G1114848 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305671983 2018-08-04 17:03:47 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Tompkins US-NY-109 13.0 Eastern Heights viewpoint L3518878 P 42.420142 -76.454977 2015-03-27 15:21:00 obsr1318356 S22547306 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293747229 2022-02-17 14:32:23.002448 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-25 08:45:00 obsr1605975 S21582469 Traveling P22 EBIRD 125.0 1.287 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305732213 2021-11-09 18:36:10.48079 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Dutchess US-NY-027 13.0 Kaatsbaan trail L2735757 P 42.0531007 -73.9126039 2015-03-27 18:15:00 obsr671490 S22551719 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312069520 2018-08-04 17:09:38 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Onondaga US-NY-067 US-NY_2803 13.0 Minoa Oxbow rd L2833954 P 43.1208386 -75.9688497 2015-04-18 07:40:00 obsr2290617 S22998180 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318782865 2021-03-31 04:01:10.517395 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-11 18:16:00 obsr1189028 S23394028 Traveling P22 EBIRD 90.0 2.414 2.0 1 G1266311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312433000 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-23 18:15:00 obsr1548221 S23022706 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301295733 2021-03-30 19:38:56.569827 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Ashe Road - East @ Rt 5 & Vicinity L3459861 P 43.0112633 -74.7675338 2015-03-06 15:47:00 obsr316199 S22201107 Traveling P22 EBIRD 65.0 0.644 3.0 1 G1168452 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290947278 2021-04-01 11:49:53.573686 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 15 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-01-12 07:15:00 obsr1982614 S21340391 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291629019 2020-03-22 07:58:01 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-01-18 10:36:00 obsr1696616 S21395535 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313210403 2021-04-01 11:30:42.037277 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 5 Unknown Sex, Adult (4); Male, Adult (1) United States US New York US-NY New York US-NY-061 30.0 10034 New York L171669 PC 40.867027 -73.92021 2015-04-26 13:30:00 obsr1740835 S23072509 Traveling P22 EBIRD 120.0 2.124 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312526286 2021-03-23 16:47:03.540174 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-22 11:57:00 obsr2846677 S23029004 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316109691 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 06:28:00 obsr870166 S23243716 Traveling P22 EBIRD 253.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303824387 2021-03-19 16:14:11.035882 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Cortland US-NY-023 28.0 Kellogg Road - Cortlandville L3448567 P 42.5851915 -76.1467123 2015-03-14 08:15:00 obsr931232 S22405351 Traveling P22 EBIRD 25.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325047437 2021-06-10 13:56:09.754681 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-17 15:41:00 obsr334398 S23779279 Traveling P22 EBIRD 32.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312811129 2021-03-30 19:07:00.01651 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Greene US-NY-039 13.0 Vosburgh Swamp WMA L293903 H 42.3093829 -73.7872795 2015-04-25 08:20:00 obsr2113222 S23048922 Traveling P22 EBIRD 180.0 4.023 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298914848 2021-04-01 11:30:42.037277 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-21 13:00:00 obsr2598985 S22017488 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316966391 2021-03-26 07:56:20.588749 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 10 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-07 16:57:00 obsr870166 S23293091 Traveling P22 EBIRD 94.0 2.253 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304550477 2021-03-30 19:39:10.250398 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Nassau US-NY-059 30.0 Wantaugh Pond L476035 P 40.6738032 -73.5152721 2015-03-21 13:20:00 obsr1160328 S22461224 Stationary P21 EBIRD 5.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322477549 2021-03-26 06:29:56.44369 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Hamlin-1–201 Morton Rd L3668407 P 43.328343 -77.975133 2015-05-24 11:18:00 obsr1696616 S23608296 Traveling P22 EBIRD 3.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309181350 2016-09-02 15:50:36 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-04-11 18:05:00 obsr2485753 S22806243 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309212398 2021-03-30 19:22:51.561415 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge--East Pond L109144 H 40.6226854 -73.8220096 2015-04-11 12:21:00 obsr839844 S22808346 Stationary P21 EBIRD 7.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298927977 2021-04-28 05:22:52.046239 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park--Southwest L154031 H 40.593426 -73.92352 2015-02-21 14:00:00 obsr2319444 S22018503 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293823094 2021-03-23 16:39:03.255227 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-01-29 09:35:00 obsr1958124 S21588505 Traveling P22 EBIRD 34.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318886166 2021-03-23 17:23:45.772216 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 2 United States US New York US-NY Livingston US-NY-051 US-NY_1760 13.0 US20 between 5 and Greenway L961048 P 42.9179036 -77.7740192 2015-05-12 07:41:00 obsr1060479 S23400328 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300056651 2021-03-26 07:43:12.52294 28886 species avibase-AEF821EC Bohemian Waxwing Bombycilla garrulus X United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-02-28 11:24:00 obsr1721609 S22108004 Traveling P22 EBIRD 125.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312807948 2021-04-01 10:51:06.899622 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus N 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-04-25 11:53:00 obsr2497657 S23048753 Traveling P22 EBIRD 88.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305563774 2018-08-04 17:03:41 11494 species avibase-20C2214E American Kestrel Falco sparverius 2 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Red Creek Unit L1528347 H 43.3006399 -76.7825379 2015-03-26 17:16:00 obsr211814 S22538881 Stationary P21 EBIRD 15.0 3.0 1 G1193968 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322266237 2021-04-01 11:15:31.646886 279 species avibase-3E04020B Brant Branta bernicla 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:15:00 obsr1711339 S23596212 Traveling P22 EBIRD 420.0 8.047 20.0 1 G1285843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307213324 2019-04-19 13:17:53 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-03 09:45:00 obsr1918430 S22663183 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301975400 2015-03-13 21:04:51 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Washington US-NY-115 13.0 43.4699 x -73.3501 L3469099 P 43.4699 -73.3501 2015-03-06 15:48:00 obsr1201479 S22254380 Stationary P21 EBIRD 2.0 3.0 1 G1178284 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292803383 2021-03-26 07:30:35.289997 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 700 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-23 12:34:00 obsr1655171 S21507613 Traveling P22 EBIRD 75.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299710838 2021-04-01 11:47:43.260314 27616 species avibase-D77E4B41 American Robin Turdus migratorius 20 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-02-26 12:48:00 obsr2871406 S22081028 Traveling P22 EBIRD 59.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293206666 2021-04-01 11:15:31.646886 242 species avibase-D3A260BC Snow Goose Anser caerulescens X United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-01-25 11:25:00 obsr1807494 S21539484 Traveling P22 EBIRD 45.0 1.609 4.0 1 G1122946 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307862035 2018-08-04 17:05:39 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 50 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-05 16:00:00 obsr1982614 S22709118 Traveling P22 EBIRD 45.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000493 2021-03-26 07:56:20.588749 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-07 09:00:00 obsr2218212 S23775908 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295599639 2021-03-30 19:43:32.881136 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-08 07:50:00 obsr186539 S21729896 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294084692 2018-08-04 16:55:22 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-28 12:30:00 obsr1318356 S21609153 Stationary P21 EBIRD 37.0 4.0 1 G1129708 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312363129 2015-04-23 17:12:15 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3585202 P 42.693501 -77.711644 2015-04-23 16:49:00 obsr682121 S23017853 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311922469 2021-03-24 20:21:02.634125 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Schoharie US-NY-095 28.0 Franklinton Vlaie L876603 H 42.5407577 -74.2995715 2015-04-21 06:33:00 obsr2846677 S22988477 Stationary P21 EBIRD 28.0 1.0 1 G1230540 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293136201 2021-04-01 10:55:39.308231 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 US-NY-Buffalo-12-52 Crowley Ave L3316775 P 42.952625 -78.908517 2015-01-25 12:31:00 obsr2588479 S21533946 Stationary P21 EBIRD 50.0 14.0 1 G1123057 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313513268 2021-04-01 11:30:42.037277 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 11:40:00 obsr2464833 S23091660 Traveling P22 EBIRD_VINS 170.0 3.219 2.0 1 G1239566 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301524806 2021-04-01 11:15:31.646886 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 15 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-07 10:30:00 obsr2499879 S22219223 Traveling P22 EBIRD 30.0 1.609 2.0 1 G1169858 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313379924 2021-03-30 19:22:51.561415 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-04-26 14:40:00 obsr1348614 S23082829 Traveling P22 EBIRD 150.0 0.5 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310933013 2015-04-18 14:06:26 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, Brentwood Dr and Arrowwood Dr corner L1615280 P 42.47869 -76.46307 2015-04-18 07:33:00 obsr2307843 S22925216 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322310173 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:15:00 obsr359717 S23598651 Traveling P22 EBIRD 540.0 6.437 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312313781 2021-03-26 07:07:10.758746 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 3 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-23 13:38:00 obsr1958124 S23014440 Traveling P22 EBIRD 3.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307668638 2018-08-04 17:05:34 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-05 10:23:00 obsr1958124 S22695451 Traveling P22 EBIRD 8.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294171543 2015-01-31 15:37:41 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 20 United States US New York US-NY Cayuga US-NY-011 28.0 Lake Como L518690 H 42.6801954 -76.3048983 2015-01-31 12:53:00 obsr887540 S21615952 Traveling P22 EBIRD 28.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314371660 2021-03-19 16:44:35.607263 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 5 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-04-30 12:15:00 obsr1561508 S23144877 Traveling P22 EBIRD 45.0 0.805 2.0 1 G1244319 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291827432 2021-03-26 07:56:20.588749 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 5 United States US New York US-NY Nassau US-NY-059 30.0 Baldwin L193543 T 40.6565 -73.60927 2015-01-03 10:10:00 obsr1987335 S21410602 Traveling P22 EBIRD 42.0 0.483 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319777987 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 13.0 10 Parkview Drive yard birds L690404 P 43.1565179 -77.5146952 2015-05-15 06:50:00 obsr2817239 S23451612 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312904982 2015-04-25 17:58:22 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Chenango US-NY-017 28.0 Coventry State Forest - west L3590052 P 42.3372415 -75.6430793 2015-04-25 07:58:00 obsr1303581 S23054248 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294033767 2021-03-24 21:01:50.671145 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 JFK Memorial Wildlife Sanctuary L194386 H 40.6105495 -73.4519033 2015-01-30 10:00:00 obsr916370 S21605187 Traveling P22 EBIRD 210.0 7.081 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310090905 2021-03-26 06:17:19.712573 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 8 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-04-14 07:48:00 obsr2071643 S22868463 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293169550 2021-03-26 07:56:20.588749 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2016 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-25 14:45:00 obsr598381 S21536503 Traveling P22 EBIRD 71.0 2.414 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316474042 2021-04-01 11:15:31.646886 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-06 06:15:00 obsr2499879 S23264932 Traveling P22 EBIRD 300.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305828850 2021-03-23 16:39:03.255227 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-03-28 15:25:00 obsr1958124 S22558931 Stationary P21 EBIRD 5.0 2.0 1 G1195273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288104653 2021-03-24 20:06:25.370375 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Ontario US-NY-069 13.0 yard - 5030 Butler Rd. L824954 P 42.8530016 -77.2913074 2015-01-01 08:20:00 obsr983655 S21109711 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296529864 2021-03-26 07:20:31.408164 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Suffolk US-NY-103 30.0 boxwood drive, shirley, ny L3362586 P 40.8307291 -72.86901 2015-02-13 16:30:00 obsr1281933 S21807040 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318634334 2021-03-26 06:29:56.44369 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 8 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-04-29 09:00:00 obsr2759466 S23385481 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309475667 2021-03-19 16:32:34.732091 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L3640607 P 40.6155949 -73.8359737 2015-04-12 10:55:00 obsr454647 S22824673 Traveling P22 EBIRD 105.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319825400 2021-11-15 03:06:58.889978 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 08:30:00 obsr2797341 S23454286 Traveling P22 EBIRD 210.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298855597 2021-11-09 21:57:18.616613 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Ulster US-NY-111 28.0 Southern Ulster L3406206 P 41.62807 -74.21404 2015-02-21 09:30:00 obsr1482758 S22012514 Traveling P22 EBIRD 218.0 32.186 2.0 1 G1155504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321577635 2021-03-19 16:08:39.161312 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-05-17 09:30:00 obsr479109 S23553853 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319859131 2021-03-26 06:29:56.44369 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-05-15 12:15:00 obsr1962295 S23455919 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302004410 2022-02-04 06:14:13.892644 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-03-09 11:45:00 obsr1734972 S22256568 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316576816 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 US-NY-New York - 40.7799x-73.9682 - May 6, 2015, 8:20 AM L3618088 P 40.779943 -73.968232 2015-05-06 08:20:00 obsr329727 S23271135 Traveling P22 EBIRD 90.0 3.219 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322640040 2021-09-03 19:22:31.034431 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-05-24 18:19:00 obsr2497657 S23617412 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303333033 2021-04-01 12:11:50.996293 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Mays Point Pool and road L99392 H 42.9946205 -76.7637599 2015-03-14 14:53:00 obsr2683910 S22366661 Traveling P22 EBIRD 4.0 0.322 2.0 1 G1181037 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306907927 2021-04-01 10:55:39.308231 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Erie US-NY-029 13.0 Delaware Park--Rumsey Woods L1348448 H 42.9307931 -78.8698229 2015-04-02 08:00:00 obsr736608 S22640388 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314225850 2021-03-30 19:29:33.633096 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-24 16:18:00 obsr2712298 S23136247 Traveling P22 EBIRD 76.0 1.8 3.0 1 G1243634 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304989260 2021-03-26 07:52:59.845315 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-23 07:00:00 obsr1000124 S22494068 Area P23 EBIRD 78.0 2.59 2.0 1 G1190886 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308605172 2021-03-23 16:39:03.255227 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-09 07:18:00 obsr1958124 S22765019 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309022649 2021-03-23 16:48:08.60516 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-04-11 07:24:00 obsr1278262 S22796046 Traveling P22 EBIRD 54.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314707904 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-01 12:05:00 obsr916370 S23165739 Traveling P22 EBIRD 50.0 2.092 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921676 2021-03-26 07:56:20.588749 26890 species avibase-94A44032 European Starling Sturnus vulgaris 12 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-18 09:00:00 obsr2218212 S22173331 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288892901 2021-03-30 19:39:10.250398 303 species avibase-B59E1863 Canada Goose Branta canadensis 100 United States US New York US-NY Nassau US-NY-059 30.0 Cammanns Pond Park L444842 H 40.6537553 -73.5509445 2015-01-03 12:00:00 obsr1895507 S21176555 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318878715 2018-08-06 22:29:39 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 3 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area - NCAE L474355 P 43.0923966 -77.3768806 2015-05-11 08:10:00 obsr2113616 S23399894 Traveling P22 EBIRD 100.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311886024 2021-04-01 11:30:42.037277 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-21 11:00:00 obsr2478995 S22986104 Traveling P22 EBIRD 105.0 2.414 2.0 1 G1230318 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308447491 2021-04-01 11:15:31.646886 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-08 07:50:00 obsr454647 S22753117 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307783621 2015-04-05 17:29:37 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.8729471 2015-03-26 19:30:00 obsr2837502 S22703654 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307782384 2021-03-30 19:39:10.250398 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-04-02 08:00:00 obsr1494607 S22703574 Traveling P22 EBIRD 120.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297219442 2019-07-23 17:27:21 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point SP L371349 P 41.0726221 -71.8584824 2015-02-15 11:14:00 obsr2741494 S21868621 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311954076 2021-03-24 20:33:47.533911 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-21 09:16:00 obsr2211210 S22990685 Traveling P22 EBIRD 29.0 0.805 2.0 1 G1230733 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292914261 2019-07-23 17:27:11 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Steuben US-NY-101 13.0 US-NY-Hammondsport-12215 E Lake Rd L3313829 P 42.466944 -77.15971 2015-01-24 11:23:00 obsr1828453 S21516690 Stationary P21 EBIRD 25.0 2.0 1 G1121010 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS314104658 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-29 11:20:00 obsr2505956 S23128739 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 3.219 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300121458 2021-04-26 04:57:02.963704 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-28 14:35:00 obsr1189028 S22113832 Traveling P22 EBIRD 136.0 4.023 2.0 1 G1162320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319758176 2021-03-26 07:52:59.845315 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Herkimer US-NY-043 13.0 Little Falls - South L1114999 P 43.0389088 -74.8589945 2015-05-14 09:13:00 obsr2694889 S23450521 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314090934 2018-08-04 17:12:40 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-04-29 07:40:00 obsr2978565 S23127929 Traveling P22 EBIRD 245.0 2.092 19.0 1 G1242821 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303036507 2021-03-23 16:39:03.255227 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-03-14 09:41:00 obsr1893950 S22343516 Traveling P22 EBIRD 19.0 0.805 2.0 1 G1178971 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314340615 2021-03-26 07:07:10.758746 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-30 09:59:00 obsr155915 S23143026 Traveling P22 EBIRD 130.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312087308 2021-03-23 16:39:03.255227 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 12 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-22 13:54:00 obsr1958124 S22999237 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308882350 2017-03-04 12:52:49 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Yates US-NY-123 13.0 Canandaigua Lake, Vine Valley L845804 H 42.723056 -77.327013 2015-04-10 14:55:00 obsr354090 S22785846 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316488062 2021-04-01 11:15:31.646886 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-06 09:58:00 obsr150415 S23265629 Traveling P22 EBIRD 168.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307425922 2018-08-04 17:05:24 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 30 United States US New York US-NY Monroe US-NY-055 13.0 Martin Rd., N fields and transient pond L1170980 H 43.3450614 -77.8750849 2015-04-04 12:51:00 obsr334398 S22678729 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311241814 2018-08-04 17:11:17 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 10 Male, Adult (6); Female, Adult (4) United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.3198299 2015-04-19 12:57:00 obsr2343764 S22944266 Stationary P21 EBIRD 25.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308359251 2018-08-04 17:08:01 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Albany US-NY-001 13.0 Ann Lee Pond L213238 H 42.7376342 -73.813757 2015-04-07 17:45:00 obsr777630 S22746253 Rusty Blackbird Spring Migration Blitz P41 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298880878 2021-11-09 21:57:18.682411 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Ulster US-NY-111 28.0 Gardiner--Sand Hill Rd L3406551 P 41.6648333 -74.1596889 2015-02-21 14:40:00 obsr856524 S22014573 Stationary P21 EBIRD 5.0 3.0 1 G1634036 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323364593 2021-11-15 03:06:58.889978 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-27 08:00:00 obsr2874437 S23663726 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298769726 2021-03-26 07:07:10.758746 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-02-21 12:15:00 obsr1958124 S22005603 Traveling P22 EBIRD 8.0 0.322 2.0 1 G1155356 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300090975 2018-08-04 16:58:28 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 10 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-28 15:20:00 obsr59643 S22111233 Stationary P21 EBIRD 50.0 2.0 1 G1162074 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294127369 2021-03-24 21:01:50.671145 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Tobay Beach Park L1060282 H 40.6113752 -73.4314372 2015-01-31 09:15:00 obsr547602 S21612510 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314221194 2021-03-26 06:55:00.227271 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, City Pier L357819 H 42.871907 -77.2725534 2015-04-29 14:30:00 obsr39511 S23135952 Traveling P22 EBIRD 10.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295675114 2021-03-24 20:58:04.794277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 20 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-01-23 07:00:00 obsr2694889 S21735968 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304445875 2021-11-21 20:10:12.576388 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Rockefeller Lane, Red Hook L1289036 H 42.0203642 -73.8634285 2015-03-21 15:00:00 obsr2862523 S22453237 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300536304 2021-11-09 20:40:08.274848 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Putnam US-NY-079 28.0 Yard List (Personal Location) L1765727 P 41.3533799 -73.952949 2015-03-01 14:00:00 obsr2188716 S22144458 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294694159 2015-02-03 07:03:04 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY New York US-NY-061 30.0 40.8143x-73.9619 - 2 Feb 2015 11:55 L3335826 P 40.814289 -73.961899 2015-02-02 11:55:00 obsr320660 S21656950 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293058975 2021-04-01 11:30:42.037277 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 32 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-24 12:01:00 obsr924076 S21527571 Traveling P22 EBIRD 277.0 6.437 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS315686035 2018-10-16 16:07:47 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-04 08:38:00 obsr2149836 S23219841 Stationary P21 EBIRD 67.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310749826 2021-03-23 17:00:13.087107 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-17 18:31:00 obsr1696616 S22913555 Stationary P21 EBIRD 10.0 2.0 1 G1223380 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291643771 2021-03-26 07:20:31.408164 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-01-17 09:30:00 obsr105122 S21396786 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295454352 2015-02-07 20:32:50 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 8 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Blueberry Hill East and West L782514 H 42.7004751 -73.8682283 2015-02-07 09:45:00 obsr777630 S21718506 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311890522 2021-03-26 08:14:57.071052 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-21 14:10:00 obsr258431 S22986376 Traveling P22 EBIRD 100.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310851414 2021-11-09 18:18:48.943076 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Dutchess US-NY-027 28.0 Beacon Waterfront Park L1393817 H 41.5065071 -73.9853881 2015-04-18 08:38:00 obsr749440 S22920188 Stationary P21 EBIRD 43.0 2.0 1 G1225464 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315950193 2015-05-04 22:05:15 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Herkimer US-NY-043 13.0 I-90 @ Millers Grove Rd L3614124 P 43.0624134 -75.0784743 2015-05-04 08:05:00 obsr2855945 S23234333 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313099238 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 Broome County L3387889 P 42.151852 -75.897588 2015-04-12 09:21:00 obsr2955569 S23066076 Incidental P20 EBIRD 1.0 1 G1225657 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299702891 2015-02-26 13:05:32 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Broome US-NY-007 28.0 Edwards Hill Rd. L1396502 H 42.3326977 -76.0304532 2015-02-26 09:22:00 obsr998593 S22080395 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310168363 2016-03-11 08:58:42 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - West Trail intersect spur trail to Winston Court L301740 P 42.4781834 -76.4567368 2015-04-15 07:42:00 obsr2307843 S22873814 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310238379 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 7 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-15 11:55:00 obsr547602 S22878356 Traveling P22 EBIRD 90.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298478930 2021-03-24 20:58:04.794277 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-01-31 07:30:00 obsr2694889 S21980674 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316789717 2018-08-04 17:15:06 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 4 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-05-07 06:45:00 obsr286403 S23283384 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295596558 2021-03-26 07:30:35.289997 242 species avibase-D3A260BC Snow Goose Anser caerulescens 1 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-02-08 15:31:00 obsr1655171 S21729629 Traveling P22 EBIRD 29.0 0.483 3.0 1 G1139324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316578096 2021-11-09 21:57:47.849558 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Ulster US-NY-111 US-NY_854 28.0 Frost Valley YMCA 2000 Frost Valley Road, Claryville, NY 12725, L3572205 P 41.9892074 -74.505634 2015-04-27 07:00:00 obsr1707088 S23271226 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300154977 2021-04-01 12:11:50.996293 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 15 United States US New York US-NY Seneca US-NY-099 13.0 Canoga area (Martin/Seybolt/Hoster) L3446818 P 42.8619989 -76.7848206 2015-02-28 09:42:00 obsr1655171 S22116175 Traveling P22 EBIRD 155.0 24.14 2.0 1 G1171275 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313444206 2021-03-23 16:47:03.540174 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-27 07:30:00 obsr1918430 S23087555 Traveling P22 EBIRD 20.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316934882 2021-03-24 21:01:50.671145 32955 species avibase-41062654 Northern Parula Setophaga americana 4 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-07 13:30:00 obsr247620 S23291302 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291002244 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-14 15:19:00 obsr934639 S21344757 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310437777 2021-03-24 20:33:47.533911 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 7 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail L1498729 H 42.4795201 -76.4551642 2015-04-16 10:55:00 obsr2871406 S22892060 Traveling P22 EBIRD 23.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317043296 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 10:30:00 obsr2369927 S23297555 Traveling P22 EBIRD 240.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303594287 2021-04-01 12:18:57.910168 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 3 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-03-16 09:00:00 obsr2137468 S22387481 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294770283 2018-08-04 16:55:14 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-25 12:30:00 obsr780726 S21663694 Traveling P22 EBIRD 120.0 1.0 2.0 1 G1134597 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312041664 2021-11-09 21:50:48.44865 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 2 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-22 08:24:00 obsr2546168 S22996468 Traveling P22 EBIRD 44.0 0.805 2.0 1 G1231255 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313173378 2021-03-23 17:00:13.087107 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-25 19:40:00 obsr436489 S23070377 Traveling P22 EBIRD 45.0 1.0 2.0 1 G1237114 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310742460 2018-06-07 15:04:08 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Saratoga US-NY-091 13.0 Saratoga Spa SP L283793 H 43.0507487 -73.8046006 2015-04-17 17:15:00 obsr907769 S22913086 Traveling P22 EBIRD 55.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS365105733 2016-01-10 18:53:54 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris X United States US New York US-NY Kings US-NY-047 US-NY_1722 Jamaica Bay Wildlife Refuge Kings County L4149087 P 40.6205543 -73.8352661 2015-05-31 obsr822321 S26828947 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305937544 2017-04-05 14:47:54 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 14 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-03-28 07:45:00 obsr313833 S22567058 Traveling P22 EBIRD 50.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310881512 2015-04-18 13:44:15 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Chenango US-NY-017 28.0 German, 28-710 Hollow Road L3572303 P 42.46467 -75.81988 2015-04-18 10:19:00 obsr2211210 S22922142 Incidental P20 EBIRD 1.0 0 G1224191 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311713438 2021-03-24 20:11:57.676649 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-20 08:18:00 obsr2744341 S22975055 Traveling P22 EBIRD 642.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308905724 2021-03-26 06:17:19.712573 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-10 13:10:00 obsr2597186 S22787560 Traveling P22 EBIRD 160.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304372626 2021-03-23 17:18:00.959502 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 50 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-03-21 10:49:00 obsr2937317 S22448064 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289180407 2021-03-26 08:14:57.071052 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica N 10 United States US New York US-NY Westchester US-NY-119 30.0 Rye Playland L283594 H 40.9664172 -73.6734963 2015-01-03 08:15:00 obsr1788273 S21198945 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310474549 2021-04-01 11:15:31.646886 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-16 14:40:00 obsr1055148 S22894673 Traveling P22 EBIRD 120.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306954995 2021-04-01 10:45:00.916278 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-02 11:10:00 obsr128156 S22644029 Rusty Blackbird Spring Migration Blitz P41 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320194603 2018-08-06 22:30:06 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-16 08:00:00 obsr1472872 S23473971 Traveling P22 EBIRD 190.0 4.023 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288790686 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa (general) L2488723 P 40.6803777 -73.4734726 2015-01-03 07:34:00 obsr2394424 S21166374 Incidental P20 EBIRD 3.0 1 G1094197 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303910359 2021-04-01 11:15:31.646886 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus N 15 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-25 12:30:00 obsr2182516 S22412229 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308704087 2021-04-01 11:54:40.172593 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 10 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-09 16:50:00 obsr1958124 S22772914 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290357755 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-11 08:05:00 obsr2404047 S21293029 Traveling P22 EBIRD 45.0 0.805 2.0 1 G1106603 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296086457 2021-03-24 20:33:47.533911 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-02-11 07:42:00 obsr2211210 S21767967 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320224312 2021-04-01 11:24:19.637193 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 1 United States US New York US-NY Monroe US-NY-055 13.0 Home L389912 P 43.1355744 -77.5996113 2015-05-16 14:20:00 obsr1124114 S23475429 Stationary P21 EBIRD 123.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305207801 2021-03-26 06:11:29.8335 303 species avibase-B59E1863 Canada Goose Branta canadensis N 3 United States US New York US-NY Cayuga US-NY-011 13.0 Ellis Rd., Levanna L1340510 H 42.7851685 -76.7161914 2015-03-25 07:39:00 obsr1092576 S22511085 Traveling P22 EBIRD 9.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319532206 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-10 10:26:00 obsr1601967 S23437436 Traveling P22 EBIRD 209.0 5.633 2.0 1 G1270313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304451290 2021-04-01 12:14:19.266649 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota X United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree SP L283564 H 40.6394313 -73.2644575 2015-03-21 14:48:00 obsr87415 S22453664 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315280002 2021-03-19 16:02:45.308962 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-03 06:00:00 obsr290506 S23198040 Traveling P22 EBIRD 240.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326259561 2021-04-01 12:30:15.438381 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Herkimer US-NY-043 13.0 Van Buren St. ,Dolgeville L2827820 P 43.0946402 -74.7678798 2015-05-25 08:30:00 obsr2694889 S23862825 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323120416 2015-05-26 12:53:24 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 Unknown Sex, Adult (1); Unknown Sex, Immature (1) United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-05-26 09:45:00 obsr2364166 S23647709 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296806189 2021-04-01 12:32:15.282601 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-14 08:30:00 obsr1711339 S21831783 Traveling P22 EBIRD 145.0 6.437 6.0 1 G1145831 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319633507 2021-04-01 11:30:42.037277 26278 species avibase-A381417F House Wren Troglodytes aedon 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 08:30:00 obsr2448505 S23443088 Traveling P22 EBIRD 180.0 3.219 3.0 1 G1270840 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313931831 2021-03-26 07:30:35.289997 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-04-28 08:00:00 obsr2137468 S23118166 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321273966 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-19 09:00:00 obsr706483 S23535389 Traveling P22 EBIRD 120.0 1.609 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315841038 2021-11-09 18:56:49.988387 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies L428335 H 41.7861111 -73.7397222 2015-05-03 07:00:00 obsr1835267 S23228131 Traveling P22 EBIRD 150.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314279419 2015-04-30 09:14:05 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 7 United States US New York US-NY Westchester US-NY-119 30.0 Edith Macy Conference Center L3601499 P 41.160491 -73.8078046 2015-04-30 06:53:00 obsr235405 S23139772 Traveling P22 EBIRD 107.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308940329 2021-03-24 20:58:53.646623 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-10 06:55:00 obsr72341 S22790247 Stationary P21 EBIRD 275.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313063624 2021-03-26 07:07:10.758746 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-26 09:09:00 obsr1958124 S23063953 Traveling P22 EBIRD 6.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296750744 2021-04-01 12:32:15.282601 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-14 10:00:00 obsr544268 S21827052 Traveling P22 EBIRD 180.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313084535 2022-02-18 10:47:29.953615 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 S C2 S United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-26 10:34:00 obsr1062070 S23065238 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311272709 2021-03-30 19:07:52.958398 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 08:00:00 obsr2363365 S22946260 Traveling P22 EBIRD 270.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311522651 2021-03-30 19:29:33.633096 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-19 08:35:00 obsr564905 S22961548 Traveling P22 EBIRD 70.0 1.609 2.0 1 G1228234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291947986 2015-01-19 15:44:12 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tioga US-NY-107 28.0 Jenksville State Forest L3304087 P 42.2705768 -76.2247753 2015-01-15 07:00:00 obsr1049722 S21419931 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306371339 2021-11-09 19:32:09.664889 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 125 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region--Mission Land Rd. L1276461 H 41.2952799 -74.4947528 2015-03-29 08:44:00 obsr2343626 S22599508 Stationary P21 EBIRD 15.0 1.0 1 G1198498 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315226255 2021-03-26 06:13:28.501496 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.1752556 -76.8558787 2015-01-02 09:30:00 obsr2736418 S23195318 Stationary P21 EBIRD 100.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319438988 2021-04-01 11:15:31.646886 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:30:00 obsr294325 S23431785 Traveling P22 EBIRD 300.0 3.0 6.0 1 G1265613 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300331144 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-01 11:20:00 obsr1731572 S22130754 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312628905 2021-03-19 16:54:27.713469 30494 species avibase-240E3390 House Sparrow Passer domesticus 9 United States US New York US-NY Montgomery US-NY-057 13.0 W Ames Rd @ Macphail Rd and vicinity L7457293 P 42.8430905 -74.6302772 2015-04-24 09:40:00 obsr2855945 S23036990 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135528 2021-03-26 07:56:20.588749 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-21 09:00:00 obsr2218212 S23589169 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289092014 2022-02-18 10:47:29.953615 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 320 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-01-04 16:40:00 obsr1062070 S21192191 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312375787 2015-04-23 18:10:14 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-04-23 14:46:00 obsr2426404 S23018811 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309021364 2021-03-23 17:26:08.495143 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Nassau US-NY-059 30.0 Guggenheim Elementary School (Port Washington) L3554440 P 40.8510533 -73.6983597 2015-04-11 08:00:00 obsr2982024 S22795948 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322676631 2019-10-18 07:40:54 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 28.0 Huyck Preserve--Lake Myosotis L304714 H 42.5220704 -74.1483993 2015-05-24 17:00:00 obsr30103 S23619660 Traveling P22 EBIRD 135.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312663719 2018-08-04 17:11:20 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature Preserve, Rexford, NY L3587945 P 42.7923775 -73.7953484 2015-04-19 18:09:00 obsr325436 S23039306 Traveling P22 EBIRD 157.0 3.219 9.0 1 G1234677 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312494516 2021-04-01 12:35:52.669792 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus X United States US New York US-NY Onondaga US-NY-067 13.0 Skaneateles Lake, North Village Parks L276075 H 42.945145 -76.4294109 2015-04-24 06:05:00 obsr2279567 S23026856 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317732573 2021-03-26 06:17:19.712573 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-09 06:50:00 obsr736608 S23336824 Traveling P22 EBIRD 260.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309392968 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 10:30:00 obsr1077730 S22819722 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1006524471 2021-04-01 11:30:42.037277 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-19 10:00:00 obsr562303 S75771180 Stationary P21 EBIRD 240.0 2.0 1 G5871584 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315703300 2021-03-23 16:21:52.613913 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Ontario US-NY-069 13.0 Smith, Joseph, Farm South (Ontario Co.) L2806220 P 43.0386579 -77.2456455 2015-04-30 07:00:00 obsr2832110 S23220725 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316761804 2021-03-23 17:22:05.708166 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Herkimer US-NY-043 13.0 Castle Road - Ponds L742345 P 43.150683 -74.8973608 2015-05-06 07:15:00 obsr2694889 S23281713 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293489162 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-01-26 07:20:00 obsr259298 S21562108 Traveling P22 EBIRD 25.0 0.5 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311304103 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-04-19 08:15:00 obsr150415 S22948059 Traveling P22 EBIRD 158.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310730891 2021-03-23 16:47:03.540174 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-17 11:00:00 obsr281585 S22912149 Traveling P22 EBIRD 105.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306349143 2021-03-30 19:29:33.633096 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Bayard Cutting Arboretum SP L715580 H 40.7355391 -73.1629871 2015-03-29 10:50:00 obsr1987335 S22597795 Rusty Blackbird Spring Migration Blitz P41 EBIRD 80.0 3.219 2.0 1 G1198390 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312410540 2015-04-23 20:32:45 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-23 06:05:00 obsr2716320 S23021157 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306810130 2021-11-09 19:38:27.588139 303 species avibase-B59E1863 Canada Goose Branta canadensis 9 United States US New York US-NY Orange US-NY-071 28.0 Circle Drive, Tuxedo, NY L1457834 P 41.188319 -74.1869493 2015-04-01 06:58:00 obsr2346161 S22633223 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290871818 2015-01-13 17:20:43 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-13 10:00:00 obsr247620 S21334509 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314107634 2018-08-04 17:12:40 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Westchester US-NY-119 30.0 Rockefeller SP Preserve--Eagle Hill area L2724294 H 41.0998684 -73.851099 2015-04-29 07:15:00 obsr1742994 S23128938 Traveling P22 EBIRD 255.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307776147 2017-08-16 16:59:20 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-04-05 09:20:00 obsr736608 S22703107 Traveling P22 EBIRD 49.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317780469 2021-09-08 04:42:53.165995 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY New York US-NY-061 30.0 Sherman Creek Park and Swindler Cove L1018912 H 40.8580281 -73.921085 2015-05-09 09:50:00 obsr1513140 S23339257 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307879637 2021-04-01 11:49:53.573686 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 8 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-04-05 08:00:00 obsr186539 S22710404 Traveling P22 EBIRD 180.0 2.575 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313635838 2015-04-27 20:02:44 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Columbia US-NY-021 14.0 Harlem Valley Rail Trail L3596155 P 42.1198472 -73.5194618 2015-04-27 15:15:00 obsr349211 S23099222 Traveling P22 EBIRD 250.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300951976 2017-08-15 17:01:50 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-03-04 13:21:00 obsr2588479 S22175570 Stationary P21 EBIRD 6.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304211771 2021-03-26 07:07:10.758746 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Richmond US-NY-085 30.0 Stately Richman Manor L2489256 P 40.6333994 -74.104638 2015-03-19 14:00:00 obsr2904420 S22435788 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302871114 2018-08-04 16:59:49 11371 species avibase-75600969 Northern Flicker Colaptes auratus 60 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-03-13 08:58:00 obsr2224244 S22329953 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311910116 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos N 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 08:00:00 obsr139757 S22987669 Traveling P22 EBIRD 375.0 6.437 16.0 1 G1230491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317471036 2021-04-01 11:30:42.037277 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 08:40:00 obsr609516 S23321965 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299185732 2021-12-10 08:21:29.396662 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-23 08:25:00 obsr206659 S22041019 Traveling P22 EBIRD 120.0 1.609 9.0 1 G1157696 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292711720 2021-03-26 07:30:35.289997 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-01-22 09:30:00 obsr2137468 S21500695 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307119348 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-01 15:45:00 obsr2598985 S22656640 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917453 2018-08-04 16:55:08 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:25:00 obsr2001485 S21516940 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318106013 2021-11-15 03:06:58.889978 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-10 06:21:00 obsr642993 S23356904 Traveling P22 EBIRD 260.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307019300 2021-03-31 03:59:45.979181 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea N 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-04-02 18:48:00 obsr1764243 S22649086 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315589065 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-02 15:30:00 obsr1555046 S23214424 Traveling P22 EBIRD 15.0 0.805 2.0 1 G1250424 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306170887 2022-02-27 09:35:49.066489 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-03-29 08:20:00 obsr660214 S22584276 Traveling P22 EBIRD 60.0 3.219 2.0 1 G1197232 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS355672664 2021-04-01 11:30:42.037277 30836 species avibase-8F268682 American Pipit Anthus rubescens 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-16 obsr1387984 S26011776 Historical P62 EBIRD 2.0 1 G5871575 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS432194148 2016-09-25 19:40:06 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-04-25 obsr2326876 S31756426 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308120245 2021-03-26 07:30:35.289997 303 species avibase-B59E1863 Canada Goose Branta canadensis 20 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-04-06 08:30:00 obsr2137468 S22727992 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304424828 2021-03-26 07:15:58.375907 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 3 United States US New York US-NY St. Lawrence US-NY-089 13.0 Remington Recreation Trail L270558 H 44.6127667 -75.1665791 2015-03-21 07:20:00 obsr1558090 S22451705 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299333353 2015-02-24 09:02:19 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Essex US-NY-031 14.0 home L1914193 P 44.2164782 -73.7556839 2015-02-22 07:30:00 obsr2105231 S22052432 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307553238 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY New York US-NY-061 30.0 Washington Square Park L1628412 H 40.7311385 -73.9972788 2015-04-04 10:00:00 obsr139757 S22687490 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322610595 2021-04-01 11:24:19.637193 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-24 12:28:00 obsr934639 S23615592 Traveling P22 EBIRD 378.0 9.656 4.0 1 G1337409 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289014372 2021-03-19 16:44:35.607263 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 18 United States US New York US-NY Monroe US-NY-055 13.0 Webster Park--Campground area L300494 H 43.2544474 -77.4600935 2015-01-04 08:35:00 obsr302343 S21186075 Traveling P22 EBIRD 115.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291450132 2021-12-03 21:50:44.732892 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 40 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-01-17 12:05:00 obsr1958124 S21381385 Traveling P22 EBIRD 20.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309941777 2021-04-01 11:14:02.420281 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Jefferson US-NY-045 13.0 West Carthage, NY (home) L1347968 P 43.9732503 -75.6230146 2015-01-24 08:00:00 obsr2251037 S22857964 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293045628 2016-09-07 10:02:22 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Research Ponds Unit II (restricted access) L266582 H 42.5034956 -76.4374457 2015-01-23 08:08:00 obsr2683910 S21526384 Traveling P22 EBIRD 7.0 0.483 2.0 1 G1121993 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309002572 2021-04-01 11:47:43.260314 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-10 08:04:00 obsr2945658 S22794581 Traveling P22 EBIRD 594.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291179465 2018-08-04 16:53:20 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Saratoga US-NY-091 13.0 Hudson River @ Bunce Lane, Stillwater L2738236 P 42.9363913 -73.6592692 2015-01-15 08:20:00 obsr2855945 S21359291 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308017101 2021-03-23 16:21:52.613913 406 species avibase-27B2749A Wood Duck Aix sponsa 3 United States US New York US-NY Ontario US-NY-069 US-NY_835 13.0 NY Ontario: Canadice Hollow Road L3543577 P 42.7538292 -77.5845242 2015-04-06 11:55:00 obsr39511 S22720315 Traveling P22 EBIRD 80.0 4.426 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318368708 2021-04-01 11:30:42.037277 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 05:44:00 obsr1358061 S23370934 Traveling P22 EBIRD 169.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307951300 2017-02-06 15:16:59 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L692296 H 42.8874107 -78.7166119 2015-04-06 09:00:00 obsr2149313 S22716027 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320125967 2021-11-15 03:06:58.889978 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 07:30:00 obsr1734972 S23470508 Traveling P22 EBIRD 150.0 3.219 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301209984 2021-03-30 19:07:52.958398 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-06 09:00:00 obsr1801902 S22194516 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324084406 2022-02-17 14:32:23.002448 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-30 14:00:00 obsr1063023 S23713262 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306009188 2021-03-26 06:55:00.227271 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 S C2 S United States US New York US-NY Ontario US-NY-069 13.0 US-NY-ONT Phelps--CR 25, Outlet Rd. E of Smith Rd. (3276C) [Phelps_NW] L736431 P 42.9841265 -77.1159017 2015-03-29 08:44:00 obsr606693 S22572164 Traveling P22 EBIRD 26.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316918225 2015-05-07 15:52:59 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Whitney Point Lake L3618361 P 42.3389984 -75.9649605 2015-05-06 14:49:00 obsr826254 S23290287 Traveling P22 EBIRD 70.0 1.609 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303723605 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius 70 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-17 10:55:00 obsr2505956 S22397404 Traveling P22 EBIRD 130.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761502 2021-03-26 07:56:20.588749 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 4 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-14 16:00:00 obsr2218212 S22629525 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294894035 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 35 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-02-04 09:30:00 obsr247620 S21673808 Traveling P22 EBIRD 120.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293725576 2016-09-12 10:27:59 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 10 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-26 10:30:00 obsr2475075 S21580471 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313998916 2021-11-15 03:06:58.889978 11371 species avibase-75600969 Northern Flicker Colaptes auratus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 07:39:00 obsr870166 S23122462 Traveling P22 EBIRD 90.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314930486 2021-11-15 03:06:58.889978 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 08:15:00 obsr2797341 S23178720 Traveling P22 EBIRD 240.0 3.219 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294366806 2022-03-06 12:39:33.700954 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-01-31 11:30:00 obsr2207991 S21631251 Traveling P22 EBIRD 60.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315369152 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 08:00:00 obsr822430 S23202543 Traveling P22 EBIRD 385.0 6.437 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295843009 2018-08-04 16:55:59 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-02-09 17:13:00 obsr128156 S21748513 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319316094 2016-09-12 10:28:02 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-07 10:30:00 obsr2475075 S23424826 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319001013 2018-08-04 17:26:48 7940 spuh avibase-CA08045E Accipiter sp. Accipiter sp. 3 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-12 09:04:00 obsr1472872 S23406585 Traveling P22 EBIRD 56.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS346308564 2021-11-09 21:59:59.062235 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Ulster US-NY-111 13.0 Lucas Ave Ext Near Binnewater Road L4383548 P 41.8927578 -74.0804243 2015-03-31 obsr2913530 S25311720 Historical P62 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298176059 2021-11-20 09:30:27.481745 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake, end of Creekwalk L1331492 H 43.0680178 -76.1778662 2015-02-17 16:33:00 obsr324569 S21953979 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322566409 2021-03-26 06:29:56.44369 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-24 13:31:00 obsr730231 S23613208 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1287629 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314232951 2021-04-01 11:49:53.573686 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 2 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-29 08:00:00 obsr2211514 S23136715 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311330843 2015-04-19 17:08:54 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 26 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-04-05 09:38:00 obsr98313 S22949648 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320601450 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 Male, Adult (3); Female, Adult (1) United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-17 06:30:00 obsr2363365 S23495133 Traveling P22 EBIRD 300.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS331841436 2021-11-15 03:06:58.889978 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-25 08:14:00 obsr1250490 S24270863 Traveling P22 EBIRD 233.0 6.437 2.0 1 G1347621 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309355938 2021-04-01 11:30:42.037277 406 species avibase-27B2749A Wood Duck Aix sponsa 3 United States US New York US-NY New York US-NY-061 30.0 W Village Backyards and Airspace L974907 P 40.7366845 -74.0071853 2015-04-12 10:42:00 obsr128156 S22817543 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320757191 2018-08-06 22:30:25 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Durand-Eastman Park--Zoo Rd. L139792 H 43.2279443 -77.557404 2015-05-17 11:55:00 obsr302343 S23503542 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298912677 2021-03-24 20:21:40.993321 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Seneca US-NY-099 13.0 Cayuga Lake, as seen from CR 141 (destroyed) L1072574 H 42.6359242 -76.6912598 2015-02-22 07:37:00 obsr1092576 S22017333 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316920392 2021-04-01 12:32:15.282601 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 14 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-06 09:30:00 obsr1494607 S23290428 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316819197 2021-04-01 11:15:31.646886 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 06:30:00 obsr2908667 S23284921 Traveling P22 EBIRD 205.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307936082 2021-03-23 16:39:03.255227 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-06 08:41:00 obsr1958124 S22714792 Traveling P22 EBIRD 7.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311440737 2021-03-26 07:42:06.558742 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 Ft. Edward Grasslands IBA L358625 H 43.2650813 -73.5411072 2015-04-18 14:54:00 obsr1731061 S22956488 Traveling P22 EBIRD 120.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323444104 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-27 07:16:00 obsr2595828 S23669469 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310089008 2021-03-30 19:07:52.958398 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-14 16:15:00 obsr1659461 S22868337 Traveling P22 EBIRD 135.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322055209 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-21 05:39:00 obsr334398 S23583978 Traveling P22 EBIRD 71.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310159136 2021-03-26 07:30:35.289997 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Palmer Woods L287796 H 42.4604469 -76.4789951 2015-04-15 07:36:00 obsr2952480 S22873166 Traveling P22 EBIRD 30.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317444979 2021-04-01 11:15:31.646886 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 12 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-09 05:42:00 obsr1189028 S23320481 Traveling P22 EBIRD 84.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS360462591 2018-08-06 22:30:12 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Basset Rd. L2419301 P 42.4060744 -75.9718645 2015-05-16 12:15:00 obsr998593 S26406411 Stationary P21 EBIRD 30.0 2.0 1 G1508798 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317865780 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 06:54:00 obsr150415 S23343853 Traveling P22 EBIRD 258.0 4.828 4.0 1 G1260339 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310345602 2021-04-01 11:24:19.637193 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-15 08:20:00 obsr1782363 S22885778 Stationary P21 EBIRD 60.0 2.0 1 G1221687 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306136358 2018-08-04 17:04:43 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Rensselaer US-NY-083 13.0 Papscanee Island Nature Preserve L488165 H 42.5762804 -73.7484741 2015-03-29 15:44:00 obsr489496 S22581674 Rusty Blackbird Spring Migration Blitz P41 EBIRD 23.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308629348 2018-08-04 17:08:12 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 10 United States US New York US-NY Richmond US-NY-085 Oakwood Beach L2501874 H 40.5533157 -74.1087484 2015-04-09 10:28:00 obsr1958124 S22766860 Stationary P21 EBIRD 10.0 2.0 1 G1212581 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302075886 2015-03-09 19:46:50 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-03-09 11:40:00 obsr2426404 S22262308 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304438282 2021-04-01 12:32:15.282601 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla X United States US New York US-NY Nassau US-NY-059 30.0 Milburn Pond Park L632761 H 40.6522759 -73.6026542 2015-03-21 11:00:00 obsr2207991 S22452692 Traveling P22 EBIRD 60.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321087834 2021-03-26 07:53:57.664705 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Livingston US-NY-051 13.0 Home--Geneseo L2865813 P 42.8460168 -77.8164196 2015-05-18 17:00:00 obsr1513934 S23523614 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311453530 2021-04-01 11:30:42.037277 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 11 H C2 H United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-19 06:17:00 obsr924076 S22957285 Traveling P22 EBIRD 699.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298857046 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 14 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-02-21 10:25:00 obsr150415 S22012627 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319608146 2018-08-06 22:29:57 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Tonawanda WMA--Meadville Rd. and Klossen Rd. L752507 H 43.0968629 -78.4547713 2015-05-14 15:44:00 obsr800690 S23441609 Traveling P22 EBIRD 25.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320519070 2021-11-09 18:47:29.602849 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Ward Road, Salt Point, NY (1.3 miles) L3649455 P 41.8058813 -73.836472 2015-05-16 18:02:00 obsr1442681 S23490801 Traveling P22 EBIRD 19.0 2.092 3.0 1 G1274826 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288638671 2021-03-30 19:07:52.958398 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 14 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-02 12:58:00 obsr2404047 S21154133 Traveling P22 EBIRD 140.0 1.609 2.0 1 G1092597 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319454358 2015-05-13 23:04:29 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Rochester-irondequoit 14622 yard L3146197 P 43.22078 -77.556809 2015-05-13 18:30:00 obsr140077 S23432688 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292611407 2021-11-09 22:38:55.83044 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 Male, Adult (1) United States US New York US-NY Sullivan US-NY-105 US-NY_2792 28.0 644 River Road L2326174 P 41.782401 -75.1017773 2015-01-06 13:47:00 obsr279522 S21492802 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296319105 2015-02-12 19:31:00 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 11 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-02-12 06:50:00 obsr2716320 S21788215 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324129474 2021-03-19 16:06:54.047432 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Cayuga US-NY-011 28.0 Summerhill SF--Lick St. Christmas Tree Farm L1318052 H 42.6464402 -76.3459897 2015-05-31 06:39:00 obsr1696616 S23716269 Traveling P22 EBIRD 17.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317589988 2018-08-06 22:29:28 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-05-09 11:00:00 obsr1830659 S23328170 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303133467 2021-04-01 11:58:54.966271 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 2 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-03-14 07:34:00 obsr2211750 S22351011 Stationary P21 EBIRD 190.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319146818 2021-04-01 11:30:42.037277 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 4 H C2 H United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-11 05:43:00 obsr924076 S23415251 Traveling P22 EBIRD 145.0 1.207 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317100774 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 07:06:00 obsr1944212 S23300894 Traveling P22 EBIRD 123.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317214995 2018-08-04 17:15:20 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Greene US-NY-039 13.0 Athens Reservoir L2984070 P 42.2935058 -73.9048576 2015-05-08 13:00:00 obsr2515158 S23306742 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304360611 2015-03-29 22:02:20 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias X United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-03-20 17:55:00 obsr319738 S22447051 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS347559363 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 18:10:00 obsr189780 S25394472 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291624465 2018-08-04 16:53:53 27616 species avibase-D77E4B41 American Robin Turdus migratorius 12 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.9026012 2015-01-18 07:55:00 obsr1830659 S21395142 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314993639 2015-05-02 16:11:17 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-02 08:20:00 obsr1334267 S23182116 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314264915 2021-03-24 20:53:39.352228 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-04-29 obsr1591201 S23138808 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297937751 2015-02-17 09:44:35 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 7 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-02-17 08:50:00 obsr2172593 S21933872 Stationary P21 EBIRD 53.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308374784 2021-04-01 11:15:31.646886 3174 species avibase-41E9F54B Black-billed Cuckoo Coccyzus erythropthalmus 8 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-07 11:00:00 obsr2750470 S22747374 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309480635 2021-04-01 12:30:15.438381 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Herkimer US-NY-043 13.0 Vicinity of Brockett & Lyon Road L664921 P 43.0933994 -74.7911453 2015-04-12 09:28:00 obsr1000124 S22825011 Stationary P21 EBIRD 4.0 4.0 1 G1216555 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314332401 2021-03-24 20:33:47.533911 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 2 United States US New York US-NY Tompkins US-NY-109 28.0 Thomas Rd., south (Six Mile Creek ponds & marsh) L388439 H 42.4020377 -76.3778114 2015-04-30 08:24:00 obsr2683910 S23142546 Traveling P22 EBIRD 10.0 3.54 2.0 1 G1244182 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307177469 2016-11-16 15:26:38 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Schoharie US-NY-095 28.0 42.594816,-74.275308 L3358128 P 42.5944804 -74.2745304 2015-04-03 07:30:00 obsr2161435 S22660690 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319851357 2021-03-26 06:12:17.833181 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-05-15 09:45:00 obsr1080625 S23455577 Traveling P22 EBIRD 230.0 1.609 10.0 1 G1309113 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312062025 2021-11-15 03:06:58.889978 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-22 09:45:00 obsr1289811 S22997744 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303620093 2021-03-30 19:13:38.458673 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-23 12:30:00 obsr319738 S22389497 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313201832 2021-03-30 12:05:58.533651 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-26 09:00:00 obsr2909711 S23072025 Traveling P22 EBIRD 180.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312485115 2021-03-26 08:14:57.071052 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Westchester US-NY-119 30.0 Sarah Lawrence College, Yonkers L2374154 H 40.9361988 -73.843399 2015-04-24 07:54:00 obsr1348614 S23026278 Traveling P22 EBIRD 67.0 0.966 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316866350 2021-03-19 16:44:35.607263 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-07 12:36:00 obsr334398 S23287333 Traveling P22 EBIRD 18.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300092707 2021-04-01 11:49:53.573686 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-02-28 10:15:00 obsr41879 S22111385 Traveling P22 EBIRD 144.0 3.219 3.0 1 G1162653 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300775474 2021-03-24 20:33:47.533911 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Tompkins US-NY-109 13.0 105 Eastern Heights Dr., Ithaca L2724192 P 42.425089 -76.455526 2015-03-03 09:11:00 obsr1318356 S22162376 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316168127 2018-08-04 17:14:54 337 species avibase-694C127A Mute Swan Cygnus olor X United States US New York US-NY Albany US-NY-001 13.0 Ann Lee Pond L213238 H 42.7376342 -73.813757 2015-05-05 15:16:00 obsr1165633 S23246792 Traveling P22 EBIRD 72.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314411554 2015-04-30 17:02:10 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 obsr2908667 S23147416 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301969490 2021-03-26 08:13:27.160698 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Tioga US-NY-107 28.0 Spencer Lake--Cowell Rd. viewpoint L3469055 P 42.2543313 -76.5040898 2015-03-09 08:08:00 obsr1318356 S22253899 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000475 2021-03-26 07:56:20.588749 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-07 09:00:00 obsr2218212 S23775908 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS398702599 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 06:26:00 obsr1552744 S29427796 Traveling P22 EBIRD 235.0 5.954 3.0 1 G1735846 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304342364 2021-11-09 18:44:18.633991 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 6 United States US New York US-NY Dutchess US-NY-027 13.0 Tivoli, 2 Madalin Court L3375751 P 42.05994 -73.91404 2015-03-21 08:12:00 obsr267319 S22445652 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423152 2021-04-01 11:24:19.637193 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 18 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-24 12:28:00 obsr1846130 S24163340 Traveling P22 EBIRD 378.0 9.656 4.0 1 G1337409 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS304413768 2021-04-01 12:18:57.910168 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Campus L294523 H 42.4474972 -76.482475 2015-03-21 11:40:00 obsr1655171 S22450992 Traveling P22 EBIRD 15.0 3.219 2.0 1 G1186935 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309103509 2021-03-26 06:20:10.658048 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 18 United States US New York US-NY Genesee US-NY-037 13.0 9605 Francis Rd , Batavia L3360943 P 42.947728 -78.1616086 2015-04-11 12:15:00 obsr393804 S22801074 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311036225 2021-04-01 12:35:52.669792 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Onondaga US-NY-067 28.0 South Meadows Nature Area, Tully L2969412 H 42.7954794 -76.1033088 2015-04-18 08:38:00 obsr1178949 S22931669 Area P23 EBIRD 155.0 10.9 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311824296 2021-04-01 10:49:39.496318 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 50 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-04-19 07:38:00 obsr2683910 S22982289 Traveling P22 EBIRD 45.0 0.483 2.0 1 G1230111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289959049 2015-01-08 23:47:14 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Hamilton US-NY-041 14.0 Route 8 Lake PLeasant & Speculator L635026 P 43.4887976 -74.3760681 2015-01-08 15:34:00 obsr1000124 S21260540 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294043370 2021-11-09 17:43:05.347258 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 50 United States US New York US-NY Dutchess US-NY-027 28.0 Brothers Rd - Depot Hill L1034813 P 41.5944317 -73.6783826 2015-01-30 15:15:00 obsr1732267 S21606059 Stationary P21 EBIRD 92.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295249486 2021-04-01 11:49:53.573686 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 7 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-02-02 07:36:00 obsr1982614 S21701748 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300275321 2021-04-08 15:10:32.30308 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 May's Point Clyde River water flow control L3448616 P 42.9970005 -76.7616248 2015-02-28 14:00:00 obsr1303581 S22126057 Stationary P21 EBIRD 25.0 7.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311231511 2021-03-26 07:56:20.588749 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa preserve- Walker Street L3175652 P 40.6969856 -73.4523153 2015-04-19 06:30:00 obsr547602 S22943634 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311307033 2021-03-30 06:01:28.020715 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Westchester US-NY-119 30.0 North Salem L241306 T 41.33479 -73.57127 2015-04-19 13:00:00 obsr2215645 S22947975 Traveling P22 EBIRD 120.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298306571 2021-04-01 12:39:12.329364 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N X United States US New York US-NY Otsego US-NY-077 13.0 Rout 80 south of Springfield L3397943 P 42.8227285 -74.8857307 2015-02-18 obsr131845 S21965228 Historical P62 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292144639 2015-01-20 15:24:07 303 species avibase-B59E1863 Canada Goose Branta canadensis 8 United States US New York US-NY Montgomery US-NY-057 13.0 Old Trail Rd. Montgomery County, N.Y. L3185324 P 42.9707431 -74.3779564 2015-01-18 12:30:00 obsr2590001 S21435581 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314045806 2021-03-26 06:55:00.227271 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 3 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-04-28 obsr1338126 S23125155 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319633437 2018-08-06 22:29:52 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 06:30:00 obsr2348610 S23443086 Traveling P22 EBIRD 270.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308424218 2015-04-08 15:52:08 30494 species avibase-240E3390 House Sparrow Passer domesticus 40 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-04-08 09:18:00 obsr2561576 S22751327 Stationary P21 EBIRD 5.0 2.0 1 G1211361 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311198447 2018-08-04 17:11:13 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-04-19 09:38:00 obsr2588479 S22941621 Traveling P22 EBIRD 53.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303988851 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-18 13:20:00 obsr516108 S22418037 Traveling P22 EBIRD 320.0 1.609 2.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305387688 2021-03-23 17:32:20.03109 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 4 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-26 09:34:00 obsr2172593 S22525301 Traveling P22 EBIRD 36.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313788475 2021-03-22 09:15:15.32301 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Niagara US-NY-063 13.0 Wilson-Tuscarora SP L210266 H 43.3072398 -78.8548868 2015-04-28 07:50:00 obsr2756208 S23108997 Traveling P22 EBIRD 71.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309560159 2021-03-22 09:15:15.32301 6339 species avibase-8535345B Herring Gull Larus argentatus 63 United States US New York US-NY Niagara US-NY-063 13.0 Hartland, 3503 Landers Lane L2417395 P 43.24857 -78.53238 2015-04-12 06:19:00 obsr745890 S22830483 Traveling P22 EBIRD 120.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319164884 2021-04-01 11:15:31.646886 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 06:58:00 obsr1821546 S23416257 Traveling P22 EBIRD 392.0 4.184 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289092221 2021-03-30 19:39:10.250398 660 spuh avibase-CB56BEF1 scoter sp. Melanitta sp. N 2 United States US New York US-NY Nassau US-NY-059 30.0 Twin Lakes Preserve L279979 H 40.6788694 -73.5147682 2015-01-03 14:00:00 obsr1494607 S21192208 Traveling P22 EBIRD 1200.0 0.322 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319323738 2016-09-12 10:28:02 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-09 08:00:00 obsr2475075 S23425265 Stationary P21 EBIRD 135.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313210848 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-25 15:20:00 obsr2499879 S23072535 Traveling P22 EBIRD 30.0 1.609 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302159806 2016-12-17 21:03:29 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-10 10:05:00 obsr1655171 S22268276 Traveling P22 EBIRD 2.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307978475 2021-04-01 12:14:19.266649 30494 species avibase-240E3390 House Sparrow Passer domesticus N 4 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-04-05 08:30:00 obsr105122 S22717880 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309176327 2021-03-30 19:29:33.633096 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Suffolk US-NY-103 30.0 Cove Hollow Farm L786267 P 40.9400884 -72.2210312 2015-04-11 15:00:00 obsr1460516 S22805881 Traveling P22 EBIRD 90.0 1.609 3.0 1 G1217997 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290124405 2015-01-10 03:31:31 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-01-09 07:25:00 obsr2716320 S21273730 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322743936 2021-04-01 11:12:52.834774 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 2 United States US New York US-NY Greene US-NY-039 13.0 New Baltimore Yard L7304489 P 42.4429607 -73.7862812 2015-05-25 07:50:00 obsr1181085 S23623916 Stationary P21 EBIRD 72.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313065854 2021-03-26 07:07:10.758746 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-26 07:53:00 obsr155915 S23064105 Traveling P22 EBIRD 95.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309744225 2021-03-30 19:29:33.633096 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 20 United States US New York US-NY Suffolk US-NY-103 US-NY_2798 30.0 Mecox Flats L1775817 P 40.8941808 -72.330637 2015-04-12 07:10:00 obsr1864342 S22844132 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317557196 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 05:40:00 obsr2321296 S23327421 Traveling P22 EBIRD 290.0 4.828 1.0 1 G1258875 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310450511 2021-03-30 19:29:33.633096 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-16 07:45:00 obsr247620 S22892905 Traveling P22 EBIRD 105.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870234 2015-03-08 21:09:52 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr34822 S22246830 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295802222 2019-01-03 10:54:11 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Gilgo State Park, Ocean Parkway, NY L2714829 P 40.6393907 -73.3314228 2015-02-09 10:30:00 obsr2534001 S21745196 Traveling P22 EBIRD 60.0 24.14 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289483723 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Monroe US-NY-055 13.0 Oakmark Circle L3183126 P 43.0820381 -77.575922 2015-01-06 11:00:00 obsr2290061 S21222821 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299095427 2021-04-01 11:47:43.260314 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 10 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-02-22 10:07:00 obsr2001485 S22034170 Traveling P22 EBIRD 72.0 0.644 3.0 1 G1156960 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312275728 2021-03-26 07:20:31.408164 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-04-15 07:00:00 obsr1592950 S23011988 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323661898 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 75 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-28 12:02:00 obsr2906952 S23684017 Traveling P22 EBIRD 180.0 0.563 2.0 1 G1294725 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS339685267 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-01 09:30:00 obsr294325 S24842908 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312852908 2018-08-04 17:12:12 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Rd- Double Dune area L2434757 P 40.8313217 -72.5154519 2015-04-25 12:30:00 obsr717785 S23051254 Traveling P22 EBIRD 60.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301054827 2021-03-26 07:56:20.588749 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--West End (Field 2) L2597735 H 40.5934333 -73.5209483 2015-02-27 08:30:00 obsr2331937 S22182961 Traveling P22 EBIRD 150.0 3.219 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301082657 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Rodmans Neck L1816643 H 40.8564741 -73.8006581 2015-03-01 10:00:00 obsr1987335 S22184713 Traveling P22 EBIRD 59.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299705971 2015-04-04 01:53:41 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Kings US-NY-047 Canarsie Pier L247765 H 40.6287773 -73.8836704 2015-02-26 13:15:00 obsr2906952 S22080650 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306133915 2021-03-24 20:53:39.352228 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 Female, Adult (3); Male, Adult (3) United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-03-29 17:43:00 obsr2270510 S22581483 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304550751 2021-03-30 19:39:10.250398 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 9 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve Reservoir L481834 P 40.6783598 -73.4643745 2015-03-21 14:15:00 obsr1160328 S22461247 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309661440 2021-03-26 08:13:27.160698 456 species avibase-D201EB72 American Wigeon Mareca americana 8 United States US New York US-NY Tioga US-NY-107 28.0 Lockheed Martin Pond L2347076 H 42.097235 -76.221474 2015-04-11 14:15:00 obsr317968 S22837156 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315832926 2017-11-28 16:58:09 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 350 United States US New York US-NY Nassau US-NY-059 US-NY_1727 JB West End 2: Red Trail L2782119 P 40.5842677 -73.5518789 2015-05-04 09:05:00 obsr1761797 S23227673 International Shorebird Survey (ISS) P74 EBIRD 95.0 1.287 1.0 1 G1277339 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS521767368 2017-07-29 10:20:51 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-02-05 obsr2871406 S38371865 Incidental P20 EBIRD 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318877393 2021-03-19 16:02:45.308962 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-05-12 07:39:00 obsr1764243 S23399805 Traveling P22 EBIRD 16.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317561580 2021-09-19 18:52:22.654948 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 12 United States US New York US-NY New York US-NY-061 The Battery, Manhattan L288752 H 40.7035452 -74.0159751 2015-05-09 12:40:00 obsr259298 S23327678 Traveling P22 EBIRD 30.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310015866 2018-08-04 17:09:06 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Delaware US-NY-025 28.0 Bunkhouse L3543418 P 42.1563852 -74.6267152 2015-04-14 08:00:00 obsr211499 S22863021 Stationary P21 EBIRD 720.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317723119 2018-08-04 17:15:40 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush Henrietta Athletic Association (RHAA) ballfields L3457667 H 43.0335528 -77.6629158 2015-05-09 16:10:00 obsr934639 S23336316 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299293250 2021-03-26 07:56:20.588749 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Nassau US-NY-059 30.0 N 2nd St. L2585098 P 40.738664 -73.6975363 2015-02-23 09:00:00 obsr143739 S22049441 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313799964 2015-04-28 13:57:34 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Ontario US-NY-069 13.0 east street L3147087 P 42.8983836 -77.2684765 2015-04-28 07:45:00 obsr2979658 S23109725 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288993156 2021-04-01 10:58:47.067498 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris N 5 United States US New York US-NY Genesee US-NY-037 13.0 Ivison Rd. (Byron) L746201 P 43.0593563 -78.0449867 2015-01-02 12:05:00 obsr408487 S21184379 Traveling P22 EBIRD 6.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319638889 2021-03-19 16:08:39.161312 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 16 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-05-14 10:15:00 obsr2816437 S23443418 Traveling P22 EBIRD 60.0 9.656 1.0 1 G1270925 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312720144 2021-03-24 20:58:53.646623 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3588521 P 42.693501 -77.711644 2015-04-25 07:09:00 obsr682121 S23043230 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304391045 2021-03-23 16:39:03.255227 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 18 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-03-21 11:02:00 obsr1958124 S22449432 Traveling P22 EBIRD 21.0 0.483 2.0 1 G1186865 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318259604 2021-03-26 06:29:56.44369 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 WS+MBP+DEC L3631915 P 43.3198077 -77.7154183 2015-05-10 07:50:00 obsr2504709 S23365030 Traveling P22 EBIRD 130.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308201123 2021-03-23 17:00:13.087107 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 26 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-07 06:53:00 obsr455249 S22734454 Traveling P22 EBIRD 7.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS349865579 2022-01-20 09:38:40.245267 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-29 09:00:00 obsr581027 S25550922 Traveling P22 EBIRD 180.0 4.023 2.0 1 G1295289 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306685136 2021-03-24 20:33:47.533911 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca N 4 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-01 08:10:00 obsr2211210 S22624208 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380946 2021-03-30 19:03:28.117389 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr2683910 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290990535 2021-11-09 18:13:40.429909 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook School L1315112 P 41.8447829 -73.6174469 2015-01-07 09:00:00 obsr1062217 S21343771 Traveling P22 EBIRD 150.0 2.736 7.0 1 G1109139 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305151280 2021-04-01 12:14:19.266649 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Road L552975 P 40.8179665 -72.5592041 2015-02-01 15:30:00 obsr2654038 S22506940 Traveling P22 EBIRD 120.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301138734 2021-04-01 11:49:53.573686 18439 species avibase-D97F93CC White-eyed Vireo Vireo griseus N 4 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-02 07:22:00 obsr1982614 S22188998 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310488324 2021-11-09 18:45:58.391484 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Dutchess US-NY-027 13.0 Stony Kill Farm, Freedom Trail L3558592 P 41.5587528 -73.9209402 2015-04-16 14:00:00 obsr2770696 S22895905 Traveling P22 EBIRD 150.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313202443 2015-04-26 16:06:17 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Oneida US-NY-065 13.0 New House L1325924 P 43.2548852 -75.701047 2015-04-26 obsr666964 S23072056 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312609852 2021-03-24 20:23:39.258075 11528 species avibase-F3DA111C Merlin Falco columbarius 1 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-04-24 17:38:00 obsr2485753 S23035636 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305340823 2018-08-04 17:02:52 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-03-25 15:50:00 obsr983655 S22521430 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299175092 2021-12-10 08:21:29.396662 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-23 08:25:00 obsr258431 S22040196 Traveling P22 EBIRD 120.0 1.609 9.0 1 G1157696 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313174062 2021-04-01 11:42:50.317679 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-04-26 01:00:00 obsr1195517 S23070412 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315866086 2021-03-26 07:56:20.588749 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-04 16:30:00 obsr916370 S23229591 Traveling P22 EBIRD 75.0 2.253 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292913528 2021-03-01 11:20:54.007808 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-24 12:44:00 obsr1655171 S21516631 Traveling P22 EBIRD 29.0 0.483 2.0 1 G1121998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310443965 2015-04-16 18:51:04 591 species avibase-1929E1E1 Canvasback Aythya valisineria 4 United States US New York US-NY Niagara US-NY-063 13.0 Joseph Davis SP L324316 H 43.2139755 -79.0390788 2015-04-16 12:22:00 obsr2588479 S22892468 Traveling P22 EBIRD 94.0 0.322 3.0 1 G1222150 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310285657 2021-11-09 18:25:59.179016 11494 species avibase-20C2214E American Kestrel Falco sparverius 2 United States US New York US-NY Dutchess US-NY-027 13.0 Strever Farm Rd, Pine Plains, NY L1828766 P 41.9405617 -73.6553262 2015-04-15 07:37:00 obsr1062217 S22881600 Stationary P21 EBIRD 30.0 3.0 1 G1220727 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293258041 2018-08-04 16:55:17 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-01-25 15:28:00 obsr2186523 S21543345 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321162719 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 East River, Brooklyn Bridge to S.I. Ferry L3339003 H 40.7039737 -74.0059423 2015-05-19 07:46:00 obsr2179748 S23528673 Traveling P22 EBIRD 45.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321181930 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Kings US-NY-047 Louis Valentino Jr. Park and Pier L2656269 H 40.6783803 -74.0180565 2015-05-19 09:57:00 obsr904434 S23529841 Traveling P22 EBIRD 17.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316399372 2015-05-06 05:55:14 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Herkimer US-NY-043 13.0 Fayville Falls L3616941 P 43.1053059 -74.8056087 2015-05-05 06:30:00 obsr2694889 S23260645 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625606 2021-03-26 07:56:20.588749 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-13 10:00:00 obsr564905 S21395246 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308248224 2021-03-26 07:20:31.408164 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 6 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-04-07 08:00:00 obsr2011512 S22738156 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289337153 2021-03-26 06:21:54.883933 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 200 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-02 10:18:00 obsr2512689 S21211171 Traveling P22 EBIRD 132.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305429291 2021-03-30 19:29:33.633096 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Great Pond L137722 P 41.0666122 -72.4558716 2015-03-26 13:39:00 obsr2485753 S22528525 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292801680 2021-03-26 07:53:57.664705 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-01-23 16:15:00 obsr1060479 S21507622 Stationary P21 EBIRD 71.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316158384 2021-03-19 16:42:57.886401 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Lewis US-NY-049 13.0 Location H L4611970 P 43.940282 -75.401446 2015-05-05 08:01:00 obsr417887 S23246266 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306706114 2021-03-24 20:23:39.258075 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-01 08:45:00 obsr1488063 S22625798 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290799452 2021-03-26 06:29:14.715704 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-01-11 10:19:00 obsr589593 S21328084 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292595905 2021-03-23 17:00:13.087107 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus N 40 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--tss office (CLO 193B) L515673 P 42.480385 -76.4511779 2015-01-22 10:30:00 obsr1062070 S21491552 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322751725 2018-08-06 22:31:07 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-05-25 09:24:00 obsr2420101 S23624339 Stationary P21 EBIRD 11.0 2.0 1 G1291160 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323304809 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-27 06:00:00 obsr547602 S23659813 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289440217 2018-08-04 16:52:48 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Livingston US-NY-051 13.0 Route 256 L1001935 P 42.587972 -77.6973724 2015-01-05 12:18:00 obsr72341 S21218990 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320303446 2015-05-16 20:02:42 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-16 08:30:00 obsr1463039 S23479511 Traveling P22 EBIRD 150.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306171038 2018-08-04 17:04:35 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Oneida US-NY-065 13.0 Lakeport L1552187 P 43.1500425 -75.8644765 2015-03-29 08:55:00 obsr660214 S22584284 Stationary P21 EBIRD 10.0 2.0 1 G1197234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313757104 2021-03-26 07:07:10.758746 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 2 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-28 08:00:00 obsr1620361 S23107035 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310551422 2021-03-30 19:07:52.958398 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis N 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-16 07:20:00 obsr2363365 S22900386 Traveling P22 EBIRD 360.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297547359 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 4 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-02-15 08:00:00 obsr1245041 S21897803 Stationary P21 EBIRD 100.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310646134 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-14 10:00:00 obsr2729095 S22906662 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314365186 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-30 07:30:00 obsr827632 S23144402 Traveling P22 EBIRD 240.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302908409 2021-04-01 11:15:31.646886 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-03-13 10:30:00 obsr827632 S22332926 Traveling P22 EBIRD 150.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310884667 2021-03-30 19:13:38.458673 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 16 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay L83 H 43.3130395 -77.7153471 2015-04-18 10:30:00 obsr2933610 S22922332 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311176026 2021-03-24 20:11:57.676649 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 4 United States US New York US-NY Oswego US-NY-075 Noyes Sanctuary L249716 H 43.5237609 -76.3690253 2015-04-17 18:24:00 obsr2700277 S22940312 Traveling P22 EBIRD 45.0 1.609 3.0 1 G1225673 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298613693 2015-05-06 20:08:00 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.6086106 -73.8904153 2015-02-20 14:10:00 obsr2855945 S21992031 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320473571 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-17 08:42:00 obsr1165633 S23488453 Traveling P22 EBIRD 86.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309538790 2018-08-04 17:08:42 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Albany US-NY-001 28.0 Basic Creek Reservoir (access permit required) L1152329 H 42.4853825 -74.0201926 2015-04-12 08:15:00 obsr119187 S22829043 Stationary P21 EBIRD 25.0 3.0 1 G1216933 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310482484 2020-06-20 20:01:51 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Chenango US-NY-017 US-NY_2780 28.0 Long Pond SF--Rt. 41 fishing access L3074026 H 42.422518 -75.851062 2015-04-16 14:55:00 obsr1303581 S22895530 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311223565 2021-12-08 07:58:41.562209 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-19 07:36:00 obsr2206421 S22943163 Traveling P22 EBIRD 159.0 2.736 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316046409 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-05 06:42:00 obsr2512689 S23240345 Traveling P22 EBIRD 108.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309567399 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N X United States US New York US-NY Nassau US-NY-059 30.0 North Woodmere Park L3514361 H 40.641285 -73.7363824 2015-04-12 15:00:00 obsr916370 S22830936 Traveling P22 EBIRD 35.0 0.644 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293787690 2021-03-30 19:07:52.958398 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-19 10:15:00 obsr2182516 S21585479 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311943092 2021-04-01 11:24:19.637193 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-21 07:15:00 obsr1782363 S22989974 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295820033 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis N 9 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-02-07 07:00:00 obsr2449897 S21746591 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297656241 2015-02-16 16:02:23 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 7 United States US New York US-NY Orleans US-NY-073 13.0 US-NY-Medina-12534 Hemlock Ridge Rd L2518220 P 43.170197 -78.313263 2015-02-16 15:26:00 obsr916033 S21907805 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319135199 2021-03-26 06:39:43.334073 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-09 11:50:00 obsr856524 S23414664 Traveling P22 EBIRD 45.0 0.402 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297492531 2021-11-09 20:39:09.52574 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Putnam US-NY-079 30.0 Schwartz House L1422495 P 41.3723712 -73.5892736 2015-02-14 07:42:00 obsr1297121 S21892782 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304192468 2021-03-26 07:56:20.588749 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 19 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-03-20 07:00:00 obsr676630 S22434279 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299314873 2021-04-07 20:52:30.17701 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Mays Point Pool and road L99392 H 42.9946205 -76.7637599 2015-02-23 15:19:00 obsr528918 S22051079 Traveling P22 EBIRD 10.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305267306 2021-03-26 07:46:52.994574 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-03-25 14:56:00 obsr1154 S22515788 Traveling P22 EBIRD 67.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308432452 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-08 07:30:00 obsr1229227 S22751988 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313265735 2018-08-04 17:12:02 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 3 United States US New York US-NY Rensselaer US-NY-083 US-NY_763 14.0 Babcock Lake, Grafton, NY L1531175 P 42.8177071 -73.3989717 2015-04-24 17:00:00 obsr1379674 S23075822 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315753332 2021-11-09 17:58:40.313796 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-04 06:55:00 obsr1110743 S23223461 Traveling P22 EBIRD 260.0 6.116 23.0 1 G1251189 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS317473091 2021-03-26 06:39:43.334073 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-05-09 08:59:00 obsr601383 S23322090 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322569230 2018-08-06 22:31:03 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-24 13:45:00 obsr1463039 S23613385 Traveling P22 EBIRD 35.0 0.322 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305849376 2015-03-28 17:18:32 6616 species avibase-7E022378 Common Loon Gavia immer 3 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-03-28 07:30:00 obsr1893950 S22560361 Stationary P21 EBIRD 10.0 2.0 1 G1195302 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319350749 2021-11-15 03:06:58.889978 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-12 17:30:00 obsr794187 S23426707 Traveling P22 EBIRD 90.0 2.414 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307203258 2021-04-01 12:14:19.266649 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 3 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Ocean Parkway L286801 P 40.6159065 -73.402978 2015-04-03 14:30:00 obsr706483 S22662429 Traveling P22 EBIRD 120.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314268127 2021-11-09 18:11:48.679808 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum X United States US New York US-NY Dutchess US-NY-027 13.0 Andrew Haight Rd. L1268498 H 41.8140583 -73.645885 2015-04-29 16:45:00 obsr1917973 S23139025 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318703891 2018-08-06 22:29:40 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-11 09:52:00 obsr745890 S23389342 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289522535 2015-01-06 16:52:54 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Erie US-NY-029 13.0 Home L2093742 P 42.7338768 -78.7242615 2015-01-06 15:37:00 obsr916033 S21225921 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288770206 2021-04-01 12:35:52.669792 505 species avibase-C732CB10 American Black Duck Anas rubripes 45 United States US New York US-NY Onondaga US-NY-067 28.0 South Meadows Nature Area, Tully L2969412 H 42.7954794 -76.1033088 2015-01-03 08:32:00 obsr1178949 S21164615 Area P23 EBIRD 157.0 10.9 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298398249 2021-03-26 06:29:56.44369 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 2 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-02-17 08:10:00 obsr1245041 S21973086 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307917827 2018-08-04 17:05:36 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Saratoga US-NY-091 13.0 Hudson Crossing Park L1476458 H 43.1155261 -73.577908 2015-04-05 12:46:00 obsr1647272 S22713576 Rusty Blackbird Spring Migration Blitz P41 EBIRD 67.0 0.483 2.0 1 G1207228 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312484530 2021-04-01 11:15:31.646886 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-24 06:49:00 obsr152435 S23026241 Traveling P22 EBIRD 132.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301234301 2021-03-22 09:17:32.016297 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N X United States US New York US-NY Oneida US-NY-065 13.0 * Little River L512613 P 43.3075048 -75.8048058 2015-03-06 13:10:00 obsr666964 S22196392 Area P23 EBIRD 105.0 4.0469 2.0 1 G1168358 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320163542 2021-03-30 19:39:10.250398 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 15 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-05-10 07:30:00 obsr2814122 S23472352 Traveling P22 EBIRD 120.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307436271 2021-11-09 00:38:34.069905 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 14 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-04-04 08:00:00 obsr572503 S22679446 Traveling P22 EBIRD 240.0 4.667 4.0 1 G1204037 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291421542 2021-03-26 06:09:25.361188 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309 -75.8817852 2015-01-08 09:00:00 obsr998593 S21378990 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310398916 2021-03-23 17:18:00.959502 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-04-16 07:37:00 obsr2113222 S22889570 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302324318 2021-04-01 12:32:15.282601 591 species avibase-1929E1E1 Canvasback Aythya valisineria X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-10 08:40:00 obsr2416285 S22285953 Traveling P22 EBIRD 270.0 4.828 3.0 1 G1174182 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324061805 2022-02-17 14:32:23.002448 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-30 13:53:00 obsr856524 S23711767 Traveling P22 EBIRD 150.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295457604 2017-05-31 22:37:31 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Rd., Road K L2498666 H 40.8361218 -72.5053489 2015-02-07 15:45:00 obsr1668936 S21718775 Traveling P22 EBIRD 10.0 3.219 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289050847 2021-03-30 19:43:32.881136 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-01-04 10:38:00 obsr2941109 S21188762 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293179390 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Kings US-NY-047 erie basin L3317358 P 40.6704181 -74.015429 2015-01-25 12:30:00 obsr377694 S21537289 Historical P62 EBIRD 30.0 6.437 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319792817 2021-03-19 16:54:27.713469 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-05-15 06:10:00 obsr286403 S23452449 Traveling P22 EBIRD 150.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288190135 2018-08-04 16:52:23 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Nassau US-NY-059 30.0 The Links, North Hills L1413680 P 40.7637038 -73.6753561 2015-01-01 13:10:00 obsr1760429 S21116664 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317183796 2021-04-01 11:24:19.637193 5948 species avibase-A47B0BD4 Least Sandpiper Calidris minutilla 4 United States US New York US-NY Monroe US-NY-055 13.0 University of Rochester--River Front and Pedestrian Bridge L899443 H 43.1310098 -77.6327848 2015-05-08 11:58:00 obsr2678807 S23305084 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312306284 2021-03-26 07:07:10.758746 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 2 United States US New York US-NY Richmond US-NY-085 30.0 Tottenville High School L884731 P 40.5282185 -74.1924763 2015-04-23 13:05:00 obsr1958124 S23013923 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308528335 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N X United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-04-08 12:30:00 obsr2448957 S22759349 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS335961580 2015-08-11 14:06:07 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven National Laboratory (restricted access) L2808445 H 40.8710034 -72.880066 2015-04-28 06:01:00 obsr2137822 S24577073 Traveling P22 EBIRD 149.0 6.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290473336 2015-03-08 14:32:20 30836 species avibase-8F268682 American Pipit Anthus rubescens 30 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-11 13:15:00 obsr1668936 S21302407 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316095952 2021-03-19 16:19:20.977326 406 species avibase-27B2749A Wood Duck Aix sponsa 3 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-05 09:34:00 obsr2939916 S23243024 Traveling P22 EBIRD 183.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320519688 2021-04-01 10:51:06.899622 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 21 United States US New York US-NY Chautauqua US-NY-013 13.0 Town of Busti L2076554 P 42.0197126 -79.3120193 2015-05-17 07:15:00 obsr2910282 S23490824 Traveling P22 EBIRD 52.0 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301871414 2021-04-01 12:14:19.266649 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Suffolk US-NY-103 Lake Montauk, Coast Guard Station L283127 H 41.07305 -71.9339556 2015-03-08 12:51:00 obsr598381 S22246916 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295533395 2021-03-26 07:30:35.289997 30494 species avibase-240E3390 House Sparrow Passer domesticus 100 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-08 07:50:00 obsr1092576 S21724772 Traveling P22 EBIRD 15.0 0.161 3.0 1 G1138946 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319529212 2022-01-12 18:14:10.119384 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--South Entrance L825062 H 44.3641149 -74.1511381 2015-05-14 08:41:00 obsr2630526 S23437243 Traveling P22 EBIRD 140.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297158817 2021-12-10 08:21:29.396662 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-15 08:30:00 obsr114791 S21863140 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314248861 2021-03-19 16:00:00.303051 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--The Meadow and adj. woodland L1816634 H 40.8628317 -73.7972195 2015-04-29 17:50:00 obsr538462 S23137706 Traveling P22 EBIRD 30.0 0.7 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS339694522 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 09:30:00 obsr294325 S24843583 Traveling P22 EBIRD 300.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304170291 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-03-20 08:18:00 obsr128156 S22432351 Rusty Blackbird Spring Migration Blitz P41 EBIRD 40.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303645705 2018-08-04 16:59:04 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Tioga US-NY-107 28.0 Confluence Park, Owego L2011248 H 42.0957386 -76.2724543 2015-03-08 13:30:00 obsr793564 S22391363 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311803128 2018-08-04 17:11:26 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 2 United States US New York US-NY Westchester US-NY-119 30.0 Angle Fly Preserve Somers L926434 P 41.2951314 -73.7167811 2015-04-21 08:00:00 obsr2078798 S22980743 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309341358 2021-03-26 07:30:35.289997 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 50 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-04-12 08:11:00 obsr869999 S22816631 Stationary P21 EBIRD 18.0 1.0 1 G1215802 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295600179 2021-03-30 06:01:28.020715 7200 species avibase-49D9148A Great Egret Ardea alba 100 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-08 12:20:00 obsr1655171 S21729942 Traveling P22 EBIRD 10.0 0.322 2.0 1 G1139915 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308887031 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 15 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-10 14:00:00 obsr2152799 S22786194 Traveling P22 EBIRD 81.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313985395 2021-03-24 20:33:47.533911 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-04-29 07:35:00 obsr455249 S23121574 Traveling P22 EBIRD 7.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322837661 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 11:20:00 obsr2906952 S23629534 Traveling P22 EBIRD 120.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306141024 2021-11-09 20:43:00.283468 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 2 United States US New York US-NY Putnam US-NY-079 US-NY_756 28.0 Great Swamp L3524145 P 41.506175 -73.5959101 2015-03-29 16:00:00 obsr1058852 S22582025 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304600813 2015-03-22 15:23:48 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-03-22 11:39:00 obsr2871406 S22464765 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317518269 2021-04-01 11:30:42.037277 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 10:30:00 obsr2976 S23325130 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307231440 2021-03-26 07:07:10.758746 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-03 09:50:00 obsr1032565 S22664553 Traveling P22 EBIRD 235.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311553299 2018-08-04 17:05:04 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-02 12:05:00 obsr258946 S22963540 Traveling P22 EBIRD 27.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314273174 2021-03-26 07:30:35.289997 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-04-29 16:53:00 obsr2683910 S23139366 Traveling P22 EBIRD 21.0 1.101 1.0 1 G1244172 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307851740 2022-02-17 14:32:23.002448 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-05 14:00:00 obsr2448957 S22708463 Traveling P22 EBIRD 300.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290365024 2021-03-26 06:59:15.841579 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 Female, Adult (3); Male, Adult (1) United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-01-02 12:10:00 obsr2409011 S21293632 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303282897 2017-12-13 23:02:30 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Greene US-NY-039 13.0 Dutchman's Landing L299259 H 42.2128621 -73.8558839 2015-03-15 11:20:00 obsr2766625 S22362443 Stationary P21 EBIRD 60.0 3.0 1 G1180646 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304896952 2021-03-19 16:32:34.732091 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 1 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek--23rd St. overlook L1847440 H 40.5793572 -73.9907261 2015-03-23 12:40:00 obsr454647 S22486523 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288236560 2021-04-01 12:40:54.473014 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-01-01 15:30:00 obsr1664745 S21120620 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303567708 2018-08-04 16:59:06 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-08 15:30:00 obsr2663400 S22385462 Stationary P21 EBIRD 75.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313156130 2021-03-19 15:59:05.496822 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 6 United States US New York US-NY Allegany US-NY-003 28.0 Van Der Linden Marsh L3519001 H 42.244147 -78.264549 2015-04-26 13:26:00 obsr955789 S23069314 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292025076 2021-04-01 11:30:42.037277 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N 4 United States US New York US-NY New York US-NY-061 30.0 Broadway Bridge, Manhattan and Marble Hill (New York Co.) L2724890 H 40.8731648 -73.9117545 2015-01-17 10:45:00 obsr189780 S21426126 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308803102 2021-04-01 11:27:18.37144 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 Male, Adult (1); Unknown Sex, Adult (1) United States US New York US-NY Montgomery US-NY-057 13.0 Mahr Road L751041 P 42.8239875 -74.4982052 2015-04-09 12:15:00 obsr316199 S22780399 Traveling P22 EBIRD 15.0 3.38 4.0 1 G1212860 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288293312 2021-03-26 06:29:56.44369 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 2 United States US New York US-NY Monroe US-NY-055 13.0 yard avacado la L1144137 P 43.1721025 -77.7359104 2015-01-01 10:30:00 obsr1886281 S21125706 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310801113 2021-04-01 11:43:48.927316 406 species avibase-27B2749A Wood Duck Aix sponsa N 1 United States US New York US-NY Ontario US-NY-069 13.0 Shortsville Rd. X Payne Rd., Farmington L800361 H 42.9615545 -77.3038334 2015-04-17 12:40:00 obsr528918 S22916895 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135191 2021-03-26 07:56:20.588749 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 5 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-24 16:00:00 obsr2218212 S23589158 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288221097 2021-03-19 16:44:35.607263 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Mumford-987 George St L2570538 P 42.991844 -77.865747 2015-01-01 15:15:00 obsr991026 S21119359 Stationary P21 EBIRD 15.0 2.0 1 G1088387 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323866688 2022-01-12 18:14:10.119384 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 3 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--South Entrance L825062 H 44.3641149 -74.1511381 2015-05-29 10:40:00 obsr769149 S23699429 Traveling P22 EBIRD 85.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307615715 2018-08-04 17:05:26 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-04-04 15:07:00 obsr408487 S22691926 Stationary P21 EBIRD 5.0 2.0 1 G1205189 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295105633 2021-03-30 19:28:38.115458 591 species avibase-1929E1E1 Canvasback Aythya valisineria 20 United States US New York US-NY Seneca US-NY-099 13.0 Geneva Waterfront - Seneca Lake L1187906 P 42.8739513 -76.9593143 2015-02-05 13:15:00 obsr1633923 S21691219 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310327866 2019-07-24 17:29:37 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 3 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr1958124 S22884582 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305969253 2020-01-16 17:01:29 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-03-24 13:39:00 obsr2279567 S22569383 Stationary P21 EBIRD 77.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311429572 2018-08-04 17:11:13 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Ontario US-NY-069 13.0 muar pond L981244 P 42.8811688 -77.2650433 2015-04-19 09:30:00 obsr2979658 S22955814 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300288824 2017-02-26 14:41:26 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP L99696 H 42.5460112 -76.600422 2015-03-01 14:50:00 obsr817830 S22127148 Traveling P22 EBIRD 54.0 0.499 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322285787 2019-09-10 13:56:02 337 species avibase-694C127A Mute Swan Cygnus olor 1 S C2 S Male, Adult (1) United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-05-23 16:35:00 obsr2154746 S23597247 Traveling P22 EBIRD 9.0 0.805 54.0 1 G1385095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298098377 2021-11-09 20:12:16.773384 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-02-17 15:29:00 obsr1912104 S21947758 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313200081 2021-04-01 11:24:19.637193 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-04-26 07:30:00 obsr1534851 S23071928 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304581160 2021-04-01 10:55:39.308231 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 25 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Unity Island (aka Squaw Is.)--North End L2036486 H 42.9321075 -78.9062977 2015-03-08 12:54:00 obsr2155111 S22463350 Traveling P22 EBIRD 100.0 0.483 2.0 1 G1188096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294304455 2021-04-01 11:47:43.260314 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Fulton-176-200 Riverside Ave L3331045 P 43.317594 -76.41777 2015-01-31 14:00:00 obsr2700277 S21626243 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS304274511 2018-08-04 17:02:08 505 species avibase-C732CB10 American Black Duck Anas rubripes 100 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-20 18:44:00 obsr2871406 S22440761 Traveling P22 EBIRD 17.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307023813 2021-03-24 20:11:57.676649 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-02 08:30:00 obsr1633923 S22649410 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316108110 2021-04-01 10:55:39.308231 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 20 Queens Drive L1383581 P 43.0393001 -78.946665 2015-05-05 09:45:00 obsr502830 S23243629 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316310688 2021-03-26 06:17:19.712573 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-02 10:30:00 obsr1379161 S23256051 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315671229 2021-04-01 12:32:15.282601 26109 species avibase-BAC33609 Brown Creeper Certhia americana 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-02 10:50:00 obsr564905 S23219010 Traveling P22 EBIRD 66.0 3.219 2.0 1 G1251016 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312169491 2021-03-23 17:26:08.495143 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-04-17 08:30:00 obsr525303 S23004845 Traveling P22 EBIRD 60.0 1.609 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316010290 2022-02-17 14:32:23.002448 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-04 19:28:00 obsr2404047 S23238224 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298828668 2021-03-26 06:29:56.44369 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Monroe US-NY-055 13.0 4 Woodside Drive, Penfield, NY L868257 P 43.1235553 -77.4714392 2015-02-21 14:35:00 obsr2716898 S22010441 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306731189 2021-04-01 11:15:31.646886 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-01 09:00:00 obsr827632 S22627564 Traveling P22 EBIRD 240.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310023731 2018-08-04 17:09:10 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 11 United States US New York US-NY Orleans US-NY-073 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Schoolhouse Marsh Overlook L153402 H 43.1460569 -78.3751774 2015-04-14 15:52:00 obsr2588479 S22863591 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301647699 2021-04-01 11:15:31.646886 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 5 United States US New York US-NY Kings US-NY-047 Brooklyn Army Terminal Pier 4 L2598864 H 40.646519 -74.026074 2015-03-08 08:21:00 obsr1189028 S22228463 Traveling P22 EBIRD 23.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298589845 2015-02-21 21:22:08 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-02-20 12:44:00 obsr1821546 S21990025 Traveling P22 EBIRD 106.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302040560 2021-04-01 11:15:31.646886 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-03-09 16:00:00 obsr1731572 S22259352 Traveling P22 EBIRD 30.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300263196 2021-03-26 08:14:57.071052 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-03-01 12:30:00 obsr2924527 S22125126 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318772889 2021-03-24 19:35:34.045988 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Erie US-NY-029 13.0 UB North Campus L1560817 P 43.0080012 -78.7856713 2015-05-11 07:20:00 obsr2597186 S23393445 Traveling P22 EBIRD 70.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311694555 2021-03-23 17:32:20.03109 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Onondaga US-NY-067 13.0 7474 James Street, Fayetteville, NY L269868 P 43.0374547 -76.0071565 2015-04-18 08:00:00 obsr1167884 S22973894 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319860226 2021-04-01 12:32:15.282601 11371 species avibase-75600969 Northern Flicker Colaptes auratus 4 Male, Adult (4) United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-15 08:05:00 obsr647628 S23455968 Traveling P22 EBIRD 125.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310474824 2021-04-01 11:15:31.646886 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-16 07:30:00 obsr2078092 S22894687 Traveling P22 EBIRD 330.0 4.828 20.0 1 G1222234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288653433 2021-03-26 06:38:32.090082 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Montgomery US-NY-057 13.0 Otsauga Club Road & Lock 15 L834703 P 42.9388076 -74.623239 2015-01-02 10:09:00 obsr316199 S21155258 Traveling P22 EBIRD 47.0 2.897 4.0 1 G1092070 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302528467 2015-03-11 19:28:35 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-03-11 16:55:00 obsr1958124 S22303999 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308057548 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-05 14:30:00 obsr2072398 S22723115 Traveling P22 EBIRD 75.0 0.805 3.0 1 G1208362 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309373293 2015-04-12 12:24:35 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 125 Yellow Barn L1154982 P 42.4758677 -76.3421059 2015-04-12 12:02:00 obsr2001485 S22818561 Traveling P22 EBIRD 22.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292600617 2021-03-30 19:18:56.909873 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 1 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-01-22 07:20:00 obsr150865 S21491873 Traveling P22 EBIRD 170.0 4.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS301869814 2018-08-04 16:53:58 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-01-18 17:07:00 obsr34822 S22246804 Stationary P21 EBIRD 5.0 5.0 1 G1171059 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316055077 2021-04-01 11:30:42.037277 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-04 08:13:00 obsr363953 S23240797 Traveling P22 EBIRD 300.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313548997 2021-11-15 03:06:58.889978 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-06 08:50:00 obsr189780 S23093707 Area P23 EBIRD 25.0 1.2141 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308754864 2021-03-24 20:33:47.533911 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-06 12:10:00 obsr2001485 S22776809 Traveling P22 EBIRD 40.0 1.609 2.0 1 G1212806 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303464922 2021-03-26 08:05:20.615241 7429 species avibase-1327AC55 Osprey Pandion haliaetus 11 United States US New York US-NY Onondaga US-NY-067 13.0 7474 James Street, Fayetteville, NY L269868 P 43.0374547 -76.0071565 2015-03-15 08:00:00 obsr1167884 S22377175 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291109484 2019-01-03 10:54:11 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-F L3288992 P 40.00252 -72.50312 2015-01-11 13:00:00 obsr598381 S21353790 Traveling P22 EBIRD 60.0 20.6 44.0 1 G1108339 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS317072831 2018-08-04 17:15:13 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-07 17:46:00 obsr749440 S23299260 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308285716 2022-03-05 22:03:50.715584 447 species avibase-C235A4D7 Gadwall Mareca strepera 20 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-07 08:45:00 obsr444155 S22740717 Traveling P22 EBIRD 300.0 8.047 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297487178 2021-03-26 08:05:20.615241 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Onondaga US-NY-067 13.0 7474 James Street, Fayetteville, NY L269868 P 43.0374547 -76.0071565 2015-02-15 08:00:00 obsr1167884 S21892313 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310260172 2018-08-04 17:09:18 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Wyoming US-NY-121 28.0 Beaver Meadow Audubon Center L160586 H 42.6730027 -78.3831251 2015-04-15 14:34:00 obsr558077 S22879808 Traveling P22 EBIRD 123.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311554460 2021-03-23 17:35:57.093178 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Rensselaer US-NY-083 US-NY_789 13.0 Schodack Island SP IBA L274767 H 42.5005866 -73.7751512 2015-04-19 08:28:00 obsr489496 S22963616 Traveling P22 EBIRD 135.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312733909 2021-03-24 20:33:47.533911 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Tompkins US-NY-109 13.0 Mulholland Wildflower Preserve L124514 H 42.431675 -76.48283 2015-04-25 08:38:00 obsr887540 S23044126 Traveling P22 EBIRD 30.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302674345 2021-04-01 11:54:40.172593 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-03-12 09:21:00 obsr1893950 S22314959 Stationary P21 EBIRD 422.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302879973 2021-03-26 06:21:54.883933 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Vale of Cashmere L1149386 H 40.6690561 -73.9683616 2015-03-13 12:30:00 obsr2476180 S22330656 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319619912 2021-03-19 16:44:35.607263 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-14 15:06:00 obsr1008519 S23442309 Traveling P22 EBIRD 70.0 1.127 3.0 1 G1271743 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297097076 2015-02-15 12:42:27 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Saratoga US-NY-091 13.0 23 scotch mist way L1882732 P 42.96589 -73.7828351 2015-02-15 obsr2774749 S21857370 Historical P62 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313444191 2021-03-23 16:47:03.540174 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-27 07:30:00 obsr1918430 S23087555 Traveling P22 EBIRD 20.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317253380 2018-08-06 22:29:12 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Greene US-NY-039 13.0 Hannacroix Creek Preserve L340471 H 42.4622196 -73.7930478 2015-05-08 07:52:00 obsr440908 S23309008 Traveling P22 EBIRD 420.0 5.375 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312299390 2021-04-01 11:54:40.172593 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 Male, Adult (2); Female, Adult (2) United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-23 09:00:00 obsr1620361 S23013475 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297499234 2021-03-26 07:53:57.664705 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Livingston US-NY-051 13.0 Groveland, NY L2623278 P 42.7113986 -77.7185619 2015-02-15 06:45:00 obsr1743566 S21893443 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313040925 2021-03-23 17:15:00.080143 6616 species avibase-7E022378 Common Loon Gavia immer 9 United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP, Sodus L712218 H 43.2673188 -77.0297813 2015-04-25 08:07:00 obsr1569772 S23062566 Traveling P22 EBIRD 135.0 1.931 13.0 1 G1235657 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305869142 2021-03-19 16:10:30.527219 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 40 United States US New York US-NY Chemung US-NY-015 28.0 National Warplane Museum, Big Flats L165313 P 42.168156 -76.892975 2015-03-28 16:33:00 obsr1334267 S22561825 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301835202 2022-03-08 13:50:22.901821 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-03-08 15:00:00 obsr2346161 S22244125 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298532954 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-19 09:00:00 obsr2361131 S21984824 Traveling P22 EBIRD 60.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297272888 2021-04-01 12:32:15.282601 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 9 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-15 08:00:00 obsr547602 S21873615 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318076142 2021-04-01 12:29:50.209479 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Fulton US-NY-035 13.0 johnstown cemetery L1202581 P 43.0097625 -74.3680859 2015-05-10 09:30:00 obsr2590001 S23355404 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315757847 2021-04-01 12:32:15.282601 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-05-04 09:30:00 obsr247620 S23223719 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306858149 2021-03-26 08:14:57.071052 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-04-01 07:15:00 obsr2918150 S22636738 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300638554 2015-03-02 23:14:21 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 3 United States US New York US-NY Rensselaer US-NY-083 13.0 John Snyder Rd between Rtes 7 & 129 L3452329 P 42.798833 -73.5427594 2015-03-02 11:20:00 obsr2855945 S22151772 Traveling P22 EBIRD 15.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304095768 2021-03-19 16:44:35.607263 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 25 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-19 18:31:00 obsr334398 S22426635 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305123712 2021-03-23 16:39:03.255227 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-03-24 16:55:00 obsr1958124 S22504724 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320341342 2018-08-06 22:30:02 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Broome US-NY-007 28.0 west corners swamp rte 26 L2023984 P 42.116052 -76.0736275 2015-05-15 18:00:00 obsr1947568 S23481413 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313840532 2021-03-26 06:29:56.44369 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 1 United States US New York US-NY Monroe US-NY-055 13.0 Harwick Rd., Irondequoit (Varied Thrush 2015) L3592824 H 43.1740003 -77.5539672 2015-04-28 11:40:00 obsr2817239 S23112320 Stationary P21 EBIRD 45.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313076488 2021-03-31 04:01:10.517395 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-26 08:42:00 obsr1711339 S23064764 Traveling P22 EBIRD 89.0 1.609 4.0 1 G1237518 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306315545 2021-03-30 19:29:33.633096 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Suffolk US-NY-103 30.0 Timber Point Golf Course--East Marina L2113967 H 40.7202869 -73.1412855 2015-03-30 10:00:00 obsr2534001 S22595218 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307685497 2021-03-30 19:13:38.458673 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 7 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-05 10:10:00 obsr613775 S22696608 Traveling P22 EBIRD 95.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289739167 2022-01-09 18:48:43.534861 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 60 United States US New York US-NY New York US-NY-061 30.0 Greenwich Village (14th St.-Houston St.; Broadway-Hudson River) L3238737 H 40.7342063 -74.0027145 2015-01-07 09:30:00 obsr2394424 S21238603 Traveling P22 EBIRD 164.0 2.414 2.0 1 G1100408 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322339858 2015-05-23 20:31:26 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-19 07:55:00 obsr2398987 S23600412 Traveling P22 EBIRD 250.0 1.609 4.0 1 G1286335 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310427532 2021-04-01 10:47:08.851048 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 7 United States US New York US-NY Broome US-NY-007 28.0 Murphy's Gravel Pit L1167821 P 42.1038265 -75.9965515 2015-04-16 09:30:00 obsr1826325 S22891444 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319388632 2021-11-09 18:23:09.854169 622 species avibase-50566E50 Lesser Scaup Aythya affinis 8 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1522533 P 41.732801 -73.8753483 2015-05-13 08:00:00 obsr1339050 S23428927 Traveling P22 EBIRD 240.0 2.414 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317635079 2021-11-09 18:45:27.272498 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Dutchess US-NY-027 13.0 near Verbank L3534485 P 41.7142739 -73.677063 2015-04-15 obsr191447 S23331550 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306030945 2021-04-01 10:51:50.668112 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Dam L160699 H 42.0864692 -76.8096739 2015-03-29 11:45:00 obsr1334267 S22573665 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311174108 2021-11-09 20:41:09.53869 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Putnam US-NY-079 US-NY_868 28.0 Fahnestock SP, NY L2999197 P 41.4291616 -73.8587344 2015-04-18 10:55:00 obsr2770696 S22940194 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310313150 2018-08-04 17:09:19 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Hamilton US-NY-041 14.0 Algonquin Drive - Co Rt. 5 L874662 P 43.4015944 -74.294765 2015-04-15 17:06:00 obsr1000124 S22883484 Traveling P22 EBIRD 49.0 4.023 3.0 1 G1221503 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306386200 2018-08-04 17:04:48 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Oswego US-NY-075 13.0 Battle Island SP L279449 H 43.3617561 -76.4355755 2015-03-30 15:30:00 obsr1321679 S22600689 Stationary P21 EBIRD 40.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300137066 2021-03-24 20:58:53.646623 33034 species avibase-6283E61E Pine Warbler Setophaga pinus N 3 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-02-28 14:50:00 obsr72341 S22115013 Stationary P21 EBIRD 140.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310704648 2021-04-01 12:32:15.282601 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-04-17 12:45:00 obsr2505956 S22910404 Traveling P22 EBIRD 80.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306168577 2021-03-24 20:49:55.752669 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 75 United States US New York US-NY Wayne US-NY-117 13.0 Powell's Yard L783199 P 43.0918854 -77.3488167 2015-03-29 17:15:00 obsr749440 S22584112 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310183324 2021-03-26 07:46:52.994574 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-15 07:43:00 obsr2321296 S22874871 Traveling P22 EBIRD 173.0 2.253 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292449180 2021-03-26 06:29:56.44369 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-01-20 08:15:00 obsr2759466 S21479782 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314534083 2016-03-06 22:55:23 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-05-01 05:37:00 obsr1154 S23155547 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322481218 2021-03-19 16:26:51.561076 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Franklin US-NY-033 14.0 Power line trail- gabriels L3668422 P 44.4407663 -74.1837215 2015-05-16 10:35:00 obsr1565981 S23608516 Traveling P22 EBIRD 65.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312649132 2019-06-10 00:04:47 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Tompkins US-NY-109 28.0 Hillview Rd. wetland, Danby L916068 H 42.2828732 -76.5054578 2015-04-24 18:15:00 obsr881968 S23038310 Stationary P21 EBIRD 45.0 4.0 1 G1234258 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306406324 2021-03-26 06:55:00.227271 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 2 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-03-27 obsr1338126 S22602287 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305171461 2021-03-26 06:29:56.44369 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-24 10:40:00 obsr334398 S22508310 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322242151 2018-08-06 22:30:57 30494 species avibase-240E3390 House Sparrow Passer domesticus 20 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 North Marsh L1471146 P 43.1268851 -78.3203682 2015-05-23 13:44:00 obsr2588479 S23594895 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300643242 2021-04-01 11:49:53.573686 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-02-28 10:41:00 obsr1481512 S22152309 Traveling P22 EBIRD 147.0 4.0 13.0 1 G1162162 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS314637323 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:05:00 obsr2514491 S23161629 Traveling P22 EBIRD 120.0 2.414 3.0 1 G1245777 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325110077 2015-06-05 04:39:14 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Herkimer US-NY-043 13.0 Ransom Marsh L2797588 P 43.0945072 -74.7733743 2015-04-28 07:30:00 obsr2694889 S23783953 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316440377 2021-11-15 03:06:58.889978 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-06 06:38:00 obsr350767 S23263119 Traveling P22 EBIRD 120.0 0.805 1.0 1 G1254395 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305383926 2021-04-26 04:57:02.963704 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 6 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-26 09:00:00 obsr2906952 S22525019 Traveling P22 EBIRD 48.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320911043 2021-11-15 03:06:58.889978 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-18 09:00:00 obsr1723318 S23512864 Traveling P22 EBIRD 231.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325233498 2018-08-06 22:31:18 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Livingston US-NY-051 13.0 US-NY-PORTAGE, 625 NY-436 L3579171 P 42.574927 -78.013591 2015-05-28 10:26:00 obsr731272 S23792563 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320944320 2022-01-20 09:38:40.245267 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-18 09:00:00 obsr1190754 S23514569 Traveling P22 EBIRD 300.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306142779 2021-01-02 20:17:06.602961 11494 species avibase-20C2214E American Kestrel Falco sparverius X United States US New York US-NY Tompkins US-NY-109 13.0 Allan H. Treman State Marine Park--marina (not lakeshore or woods) L159024 H 42.4571425 -76.5143238 2015-03-29 13:33:00 obsr324569 S22582185 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306731210 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-01 09:00:00 obsr827632 S22627564 Traveling P22 EBIRD 240.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296987340 2021-11-09 21:29:08.486377 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Ulster US-NY-111 13.0 82 First Avenue Kingston New York L1379414 P 41.9293245 -73.9826045 2015-02-14 08:00:00 obsr1588136 S21847269 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313715837 2021-03-26 07:43:12.52294 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Wayne US-NY-117 13.0 Powell's Yard L783199 P 43.0918854 -77.3488167 2015-04-27 16:30:00 obsr749440 S23104387 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296587535 2021-03-24 21:10:11.310781 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-02-13 08:30:00 obsr1664745 S21812065 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310904283 2021-03-26 07:30:35.289997 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Tompkins US-NY-109 13.0 Hawthorn Orchard and East Ithaca Rec. Way L122418 H 42.433213 -76.4681321 2015-04-18 12:10:00 obsr1318356 S22923551 Traveling P22 EBIRD 22.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321465998 2021-03-26 06:14:19.776945 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 S C2 S United States US New York US-NY Columbia US-NY-021 13.0 Hudson Shorebird Hotspot L3643276 P 42.2794521 -73.7536132 2015-05-20 10:50:00 obsr798742 S23547122 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315317586 2021-04-01 11:30:42.037277 26109 species avibase-BAC33609 Brown Creeper Certhia americana 11 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 06:50:00 obsr1146149 S23199870 Traveling P22 EBIRD 240.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311678248 2021-03-30 19:43:32.881136 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 15 United States US New York US-NY Westchester US-NY-119 30.0 Hommocks Conservation Area L3579314 P 40.93184 -73.74206 2015-04-20 18:15:00 obsr1348614 S22972769 Traveling P22 EBIRD 41.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295548073 2019-07-23 17:27:18 6616 species avibase-7E022378 Common Loon Gavia immer 20 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point SP L109151 H 41.0719093 -71.8838119 2015-02-08 07:15:00 obsr1668936 S21725889 Stationary P21 EBIRD 90.0 5.0 1 G1139006 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307968146 2021-03-26 07:20:31.408164 681 species avibase-407E2CA8 Common Merganser Mergus merganser 89 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-04-06 09:20:00 obsr564905 S22717155 Traveling P22 EBIRD 47.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302927437 2021-11-09 19:21:07.406501 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-03-11 07:30:00 obsr671490 S22334532 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301823593 2015-03-09 18:52:51 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tioga US-NY-107 28.0 US-NY-Barton-State Highway 282 L3467009 P 42.029503 -76.384151 2015-03-08 12:35:00 obsr1092576 S22243292 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314749654 2021-03-26 06:12:17.833181 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-05-01 08:00:00 obsr479109 S23168274 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314689824 2021-03-26 06:20:10.658048 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Genesee US-NY-037 13.0 9605 Francis Rd , Batavia L3360943 P 42.947728 -78.1616086 2015-05-01 13:30:00 obsr393804 S23164670 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290729988 2015-01-12 19:08:33 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 2 United States US New York US-NY Monroe US-NY-055 13.0 Chili, 267-487 Brook Road L3288673 P 43.07946 -77.71987 2015-01-12 11:01:00 obsr745890 S21323156 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS502599358 2021-04-01 11:30:42.037277 7429 species avibase-1327AC55 Osprey Pandion haliaetus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-04-25 07:38:00 obsr320411 S37023578 Area P23 EBIRD 555.0 0.0 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314911522 2021-03-30 19:07:52.958398 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-01 07:24:00 obsr2519357 S23177777 Traveling P22 EBIRD 86.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298522735 2021-04-01 11:24:19.637193 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 30 United States US New York US-NY Monroe US-NY-055 13.0 Genesee River at River St. L811957 H 43.2512123 -77.6105869 2015-02-19 16:15:00 obsr664566 S21984173 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323269861 2022-02-17 14:32:23.002448 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-26 12:52:00 obsr187432 S23657380 Traveling P22 EBIRD 86.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315083131 2018-08-04 17:14:02 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Essex US-NY-031 13.0 Mt. Defiance L2814714 H 43.8313207 -73.406589 2015-05-02 07:50:00 obsr822321 S23187198 Traveling P22 EBIRD 80.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294338007 2021-04-01 11:49:53.573686 7662 species avibase-5F8E7CA8 Golden Eagle Aquila chrysaetos 3 United States US New York US-NY Queens US-NY-081 30.0 Kissena Park L491873 H 40.7462409 -73.8080852 2015-02-01 09:00:00 obsr676630 S21629145 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319019661 2021-03-26 07:56:20.588749 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-05-12 09:00:00 obsr706483 S23407555 Traveling P22 EBIRD 120.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319418470 2021-11-09 18:47:28.973112 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Dutchess US-NY-027 28.0 Sarah Taylor Park, Fishkill, NY L3641487 P 41.5330132 -73.8914251 2015-05-13 17:30:00 obsr1560381 S23430662 Traveling P22 EBIRD 90.0 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308356983 2021-03-26 06:39:43.334073 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 30 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park--Dyckman Fields L1798629 H 40.8719469 -73.9306603 2015-04-07 18:00:00 obsr1513140 S22746092 Traveling P22 EBIRD 24.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307057390 2015-04-02 21:45:08 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana X United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Road, Dunkirk, NY L3492908 P 42.4462708 -79.38508 2015-04-02 10:45:00 obsr479109 S22651982 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299193460 2021-03-26 08:14:57.071052 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-02-23 12:54:00 obsr258431 S22041552 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301238946 2021-04-01 11:47:43.260314 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 50 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-03-06 10:02:00 obsr2224244 S22196759 Traveling P22 EBIRD 46.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303860479 2018-12-16 14:31:09 27616 species avibase-D77E4B41 American Robin Turdus migratorius 7 United States US New York US-NY Steuben US-NY-101 28.0 53 Prattsburgh to Kanona L3268683 P 42.4802 -77.2919083 2015-03-17 08:05:00 obsr1602357 S22408173 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310926994 2018-08-21 20:33:25 20829 species avibase-B9B272F4 Common Raven Corvus corax 4 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom31 L3513973 H 42.4442101 -76.280451 2015-04-18 11:28:00 obsr1655171 S22924840 Stationary P21 EBIRD 22.0 2.0 1 G1229844 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288982747 2015-01-04 10:58:43 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Suffolk US-NY-103 30.0 Great Pond L137722 P 41.0666122 -72.4558716 2015-01-04 10:48:00 obsr2485753 S21183486 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314122809 2015-12-22 16:52:26 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Warren US-NY-113 14.0 Up Yonda Farm EEC L3469115 H 43.5761802 -73.6543977 2015-04-29 06:45:00 obsr2019190 S23129815 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312737165 2021-11-15 03:06:58.889978 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-24 13:17:00 obsr1136524 S23044334 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300756632 2021-04-01 12:45:19.712958 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 30 United States US New York US-NY Westchester US-NY-119 30.0 Rye L1069097 P 40.9661597 -73.6719131 2015-03-03 10:00:00 obsr444155 S22160630 Traveling P22 EBIRD 75.0 2.414 2.0 1 G1165866 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288632191 2021-03-19 16:10:30.527219 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 220 United States US New York US-NY Chemung US-NY-015 28.0 Smith Rd. (East) Fields, Veteran L3259562 P 42.22927 -76.813584 2015-01-02 12:45:00 obsr1334267 S21153711 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289033537 2018-08-04 16:52:45 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca, James L Gibbs Drive L3265399 P 42.46227 -76.50043 2015-01-04 13:30:00 obsr2750671 S21187614 Traveling P22 EBIRD 20.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306893431 2021-03-23 17:41:09.545385 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 18 United States US New York US-NY Westchester US-NY-119 30.0 Pound Ridge Town Park L2504268 H 41.2007439 -73.5712767 2015-04-02 07:06:00 obsr2022298 S22639183 Traveling P22 EBIRD 67.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319268380 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 23 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-13 09:00:00 obsr1807494 S23422139 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291672620 2021-04-01 12:24:14.132004 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 17 United States US New York US-NY Washington US-NY-115 13.0 Hartman Rd L1475074 P 43.3359198 -73.5358771 2015-01-18 12:20:00 obsr1222746 S21398823 Traveling P22 EBIRD 14.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296085867 2015-02-11 07:37:49 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 9 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-02-10 08:45:00 obsr1680059 S21767910 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289485239 2021-04-01 11:30:42.037277 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 8 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-06 12:20:00 obsr259298 S21222953 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295001831 2015-02-05 08:21:37 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-02-05 07:55:00 obsr2074043 S21683317 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305155631 2021-03-26 07:30:35.289997 456 species avibase-D201EB72 American Wigeon Mareca americana 4000 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-24 07:46:00 obsr2683910 S22507252 Traveling P22 EBIRD 60.0 0.644 2.0 1 G1191720 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310578035 2021-03-24 20:33:47.533911 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Tompkins US-NY-109 13.0 206 Tareyton Drive, Ithaca L141039 P 42.471756 -76.4603653 2015-04-15 13:00:00 obsr620377 S22902125 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318184643 2021-03-19 16:32:34.732091 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-10 09:05:00 obsr350767 S23360895 Traveling P22 EBIRD 68.0 3.219 4.0 1 G1262447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288564017 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-01-01 08:45:00 obsr2759466 S21148081 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305971303 2021-04-01 11:49:53.573686 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-29 07:05:00 obsr1982614 S22569550 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309177866 2021-03-24 20:49:55.752669 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Wayne US-NY-117 13.0 Powell's Yard L783199 P 43.0918854 -77.3488167 2015-04-11 17:30:00 obsr749440 S22805997 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291929091 2021-03-23 16:52:36.900075 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-01-19 10:20:00 obsr2902954 S21418329 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311335004 2021-03-26 08:14:57.071052 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Westchester US-NY-119 US-NY_836 Edith Read -- Scanning from Southeastern peninsula L1887375 P 40.9667115 -73.6626102 2015-04-06 12:30:00 obsr98313 S22949921 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305341539 2021-03-30 19:03:28.117389 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-03-25 16:45:00 obsr983655 S22521475 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315481342 2021-09-08 04:42:53.165995 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY New York US-NY-061 30.0 Sherman Creek Park and Swindler Cove L1018912 H 40.8580281 -73.921085 2015-05-03 15:25:00 obsr2105033 S23208579 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312372408 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-23 14:00:00 obsr876649 S23018542 Traveling P22 EBIRD 100.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309507345 2021-04-01 12:14:19.266649 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-11 07:05:00 obsr1137265 S22826937 Rusty Blackbird Spring Migration Blitz P41 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291264260 2017-01-13 19:19:32 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3295510 P 43.429016 -75.903778 2015-01-16 11:07:00 obsr1477887 S21366410 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308502316 2021-01-10 16:39:54.759182 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Warren US-NY-113 13.0 Pine View Cemetery, Queensbury L2128813 H 43.3335429 -73.6702341 2015-04-08 10:15:00 obsr1222746 S22757329 Traveling P22 EBIRD 46.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305604359 2021-03-30 19:03:14.123633 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-03-27 10:28:00 obsr1830659 S22542080 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000957 2021-03-26 07:56:20.588749 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-15 16:00:00 obsr2218212 S23775922 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300910236 2021-03-23 16:52:36.900075 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Road L552975 P 40.8179665 -72.5592041 2015-03-04 12:30:00 obsr717785 S22172468 Traveling P22 EBIRD 80.0 9.656 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299817684 2015-02-27 07:42:54 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-02-25 06:53:00 obsr589593 S22089451 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306615915 2021-03-26 07:56:20.588749 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-03-31 18:15:00 obsr676630 S22618955 Traveling P22 EBIRD 60.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291984545 2021-03-24 19:35:34.045988 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Erie US-NY-029 13.0 Sawusch Backyard L819844 P 43.0177877 -78.7195301 2015-01-19 10:00:00 obsr303203 S21422905 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314491099 2021-04-01 11:24:19.637193 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 14 United States US New York US-NY Monroe US-NY-055 13.0 LaSalle Landing Park L2188519 P 43.176311 -77.5273418 2015-04-28 10:45:00 obsr2449897 S23152786 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289012901 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Nassau US-NY-059 30.0 Cammanns Pond Park L444842 H 40.6537553 -73.5509445 2015-01-04 08:15:00 obsr547602 S21185937 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314633788 2021-11-15 03:06:58.889978 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-01 08:00:00 obsr2105033 S23161417 Traveling P22 EBIRD 190.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317743598 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 44 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-05-09 18:00:00 obsr259298 S23337405 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315419035 2021-03-26 06:21:54.883933 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 10:55:00 obsr1152226 S23205189 Traveling P22 EBIRD 120.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312443778 2021-03-23 17:15:00.080143 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 8 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Rd. L508804 H 43.0489452 -76.7335796 2015-04-22 15:24:00 obsr528918 S23023458 Traveling P22 EBIRD 45.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310774231 2021-03-23 17:26:08.495143 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 10 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-17 13:30:00 obsr1160328 S22915142 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295499356 2021-11-09 18:43:48.942153 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa N 20 United States US New York US-NY Dutchess US-NY-027 28.0 Old Route 22, Dover, NY L3344835 P 41.7117527 -73.5684564 2015-02-07 10:05:00 obsr2175245 S21722126 Traveling P22 EBIRD 20.0 1.609 2.0 1 G1138690 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308988458 2018-08-04 17:08:23 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 Male, Adult (2) United States US New York US-NY Warren US-NY-113 13.0 Shermantown Rd. Portage Trail L960269 H 43.3064521 -73.6251848 2015-04-10 15:44:00 obsr1222746 S22793540 Traveling P22 EBIRD 33.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308904313 2015-04-10 16:44:20 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Greene US-NY-039 13.0 Red's Coxsackie L3243142 P 42.37142 -73.83536 2015-04-10 16:42:00 obsr1636520 S22787466 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309340975 2021-03-19 15:59:05.496822 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 7 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-4669 Summit Rd L3557495 P 42.204256 -78.193541 2015-04-12 09:27:00 obsr955789 S22816605 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310123330 2020-02-23 19:44:16 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Jefferson US-NY-045 US-NY_762 13.0 Fort Drum--TA6A/6C deciduous and mixed woods (restricted access) L1657449 P 44.0423638 -75.6948621 2015-04-13 10:30:00 obsr1558090 S22870737 Traveling P22 EBIRD 50.0 0.75 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300000121 2015-02-28 09:17:27 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 8 United States US New York US-NY Hamilton US-NY-041 14.0 Old Piseco Rd L2519395 P 43.4377354 -74.5134884 2015-02-28 08:00:00 obsr1735540 S22103316 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315063373 2021-03-26 06:17:19.712573 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 4 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-02 08:30:00 obsr2537615 S23186061 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317348943 2021-08-17 17:04:49.077299 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-08 20:00:00 obsr745890 S23314332 Traveling P22 EBIRD 60.0 0.644 2.0 1 G1258210 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299033282 2017-03-08 23:04:59 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay, North Channel Bridge L1396935 H 40.638525 -73.8325786 2015-02-22 09:25:00 obsr2645443 S22027544 Traveling P22 EBIRD 5.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314067038 2021-11-15 03:06:58.889978 6610 species avibase-6C50988A Red-throated Loon Gavia stellata N 50 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 12:24:00 obsr870166 S23126495 Traveling P22 EBIRD 80.0 2.253 3.0 1 G1243041 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299658747 2021-03-24 20:23:39.258075 337 species avibase-694C127A Mute Swan Cygnus olor 3 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-02-26 07:13:00 obsr2485753 S22077252 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306077651 2021-03-26 07:30:35.289997 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Tompkins US-NY-109 13.0 Newman Municipal Golf Course L2158758 H 42.4561318 -76.5052153 2015-03-29 14:48:00 obsr887540 S22577120 Traveling P22 EBIRD 73.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332420092 2021-03-19 16:44:35.607263 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-16 16:52:00 obsr334398 S24313950 Traveling P22 EBIRD 90.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS362502570 2021-03-24 20:52:26.336264 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 1 United States US New York US-NY Wyoming US-NY-121 28.0 2700 Centerline Road, Varysburg L11026787 P 42.736555 -78.3020117 2015-03-01 08:00:00 obsr2888451 S26582751 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314147863 2021-03-19 16:19:20.977326 31268 issf avibase-95F9C840 Purple Finch Haemorhous purpureus Purple Finch (Eastern) Haemorhous purpureus purpureus 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-29 08:22:00 obsr2756208 S23131316 Traveling P22 EBIRD 66.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313203584 2021-04-01 12:14:19.266649 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Suffolk US-NY-103 30.0 Chandler Estate L1355478 H 40.9559916 -73.0192018 2015-04-26 08:00:00 obsr2338506 S23072112 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307171674 2018-08-04 17:05:07 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 26 United States US New York US-NY Schenectady US-NY-093 13.0 Mohawk-Hudson Bike-Hike Trail, Ferry Rd. L2584191 H 42.7876687 -73.8359056 2015-04-02 16:52:00 obsr119187 S22660312 Traveling P22 EBIRD 97.0 1.931 2.0 1 G1202620 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304421042 2021-04-01 11:24:19.637193 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Monroe US-NY-055 13.0 N Hamlin Rd. creek crossing L3503615 H 43.3391176 -77.9152362 2015-03-21 14:50:00 obsr1696616 S22451476 Traveling P22 EBIRD 28.0 0.161 4.0 1 G1188672 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318359314 2021-03-26 06:29:56.44369 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-10 05:29:00 obsr2595828 S23370432 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309165209 2015-04-11 17:32:51 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Rensselaer US-NY-083 14.0 Jones Road Extension L1051585 P 42.8123718 -73.3462286 2015-04-11 16:12:00 obsr215455 S22805116 Traveling P22 EBIRD 79.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302100360 2021-03-30 19:38:56.569827 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 Female, Adult (3); Male, Adult (5) United States US New York US-NY Herkimer US-NY-043 13.0 Ashe Road & Vicinity L2764332 P 43.0173168 -74.7824969 2015-03-09 16:18:00 obsr1000124 S22264098 Traveling P22 EBIRD 82.0 2.736 3.0 1 G1173124 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308734127 2021-04-01 11:30:42.037277 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 1 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-09 16:30:00 obsr1513140 S22775309 Traveling P22 EBIRD 110.0 3.138 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307866828 2021-03-30 19:22:51.561415 6204 spuh avibase-4B2856FB large alcid sp. Uria/Alca sp. 2 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Environmental Center L1476823 H 40.7621022 -73.7535993 2015-04-05 07:10:00 obsr1160328 S22709435 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308424539 2017-04-18 10:15:34 6043 species avibase-2C7A2673 Lesser Yellowlegs Tringa flavipes 1 United States US New York US-NY Tioga US-NY-107 28.0 NY-17C Ponds, Barton L2347271 H 42.037237 -76.467701 2015-04-08 09:13:00 obsr1318356 S22751350 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315048433 2015-05-02 18:43:44 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-05-02 13:15:00 obsr1380963 S23185234 Stationary P21 EBIRD 330.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324240257 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola 33 H C2 H United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-31 08:24:00 obsr924076 S23723330 Traveling P22 EBIRD 270.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305254124 2021-04-01 11:15:31.646886 337 species avibase-694C127A Mute Swan Cygnus olor 10 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-03-25 13:40:00 obsr1731572 S22514863 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308717511 2018-08-04 17:08:14 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 4 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-09 16:35:00 obsr1655171 S22774016 Stationary P21 EBIRD 4.0 2.0 1 G1212554 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303166621 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 East Manitou Rd., overlook L617699 H 43.3072471 -77.6990917 2015-01-24 15:16:00 obsr334398 S22353663 Stationary P21 EBIRD 11.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307689556 2021-11-09 20:59:08.238638 33061 species avibase-E36325FA Prairie Warbler Setophaga discolor 1 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-04-05 08:00:00 obsr1121454 S22696868 Traveling P22 EBIRD 135.0 2.816 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305754622 2021-03-26 07:43:12.52294 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 30 United States US New York US-NY Wayne US-NY-117 13.0 Pultneyville Harbor L489590 H 43.2821007 -77.1852019 2015-03-28 10:24:00 obsr2914424 S22553688 Traveling P22 EBIRD 35.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308472023 2018-08-04 17:08:04 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-08 08:15:00 obsr879105 S22754903 Traveling P22 EBIRD 25.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319243320 2021-04-01 12:32:15.282601 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-13 06:30:00 obsr547602 S23420820 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135331 2021-03-26 07:56:20.588749 16223 species avibase-951C150C Olive-sided Flycatcher Contopus cooperi 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-28 09:00:00 obsr2218212 S23589163 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321047698 2021-03-30 19:13:38.458673 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-18 17:48:00 obsr934639 S23521282 Traveling P22 EBIRD 92.0 1.207 2.0 1 G1337410 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299838694 2019-01-03 10:54:11 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Rd., Triton Lane L296189 H 40.8219025 -72.5469155 2015-02-27 10:30:00 obsr1107696 S22091192 Traveling P22 EBIRD 13.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308272548 2018-08-04 17:08:00 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 13.0 CLO Office-2M15 L1313831 P 42.4800694 -76.4515024 2015-04-07 13:55:00 obsr2074043 S22739774 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311801645 2017-03-01 21:48:28 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-21 07:00:00 obsr544268 S22980617 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320561856 2016-12-29 21:01:10 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-05-17 12:58:00 obsr2270510 S23493008 Traveling P22 EBIRD 11.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322737684 2015-05-25 08:31:03 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Cortland US-NY-023 28.0 Rte 11 bridge over Tioughnioga River, Cortland L3556255 P 42.5984926 -76.1589217 2015-05-24 10:20:00 obsr2855945 S23623563 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292457792 2018-08-04 16:54:49 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-01-21 12:13:00 obsr354090 S21480544 Traveling P22 EBIRD 40.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305230352 2015-03-25 12:40:46 279 species avibase-3E04020B Brant Branta bernicla 5 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-03-25 12:15:00 obsr1349676 S22512898 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304580867 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Triplets Br. area (btwn 77th-79th St. transv.) L4525727 H 40.779838 -73.9724077 2015-03-21 14:47:00 obsr1548221 S22463334 Traveling P22 EBIRD 28.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320300156 2021-03-19 16:44:35.607263 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Cranberry Pond Nature Trail L511533 H 43.2975732 -77.7148819 2015-05-16 09:00:00 obsr2504709 S23479334 Traveling P22 EBIRD 210.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304575508 2021-04-01 10:51:06.899622 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-08 16:28:00 obsr334398 S22462937 Traveling P22 EBIRD 164.0 1.931 2.0 1 G1188098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288234486 2021-04-01 12:35:52.669792 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 50 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--West Shore Trail, Visitor's Center to Lakeview Point L2975271 H 43.0804886 -76.2126732 2015-01-01 16:06:00 obsr2561576 S21120458 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321190938 2021-03-30 19:13:38.458673 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-18 12:38:00 obsr1688373 S23530389 Traveling P22 EBIRD 58.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324010716 2021-03-23 17:26:08.495143 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-30 09:00:00 obsr2505956 S23708641 Traveling P22 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319550425 2015-05-14 12:29:12 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Broome US-NY-007 28.0 Nanticoke Lake L2359124 H 42.3357882 -76.0935978 2015-05-14 11:50:00 obsr1830659 S23438483 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312809191 2018-08-04 17:12:04 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon X United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-25 07:30:00 obsr2843748 S23048809 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308494754 2017-08-16 17:00:25 6616 species avibase-7E022378 Common Loon Gavia immer 2 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA--Duck Blind L3547992 P 43.210438 -76.338211 2015-04-08 08:57:00 obsr2172593 S22756721 Traveling P22 EBIRD 19.0 0.322 2.0 1 G1211360 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298973177 2015-02-22 13:44:10 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 23 United States US New York US-NY Cayuga US-NY-011 13.0 Center Rd. L99618 H 42.6500149 -76.6246314 2015-02-22 13:38:00 obsr1363650 S22022077 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304843254 2021-03-30 19:29:33.633096 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-03-21 15:05:00 obsr564905 S22482311 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 1.127 2.0 1 G1190130 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301416510 2015-03-14 21:35:21 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-07 13:24:00 obsr2255296 S22211650 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299733022 2021-03-30 19:28:38.115458 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 250 United States US New York US-NY Seneca US-NY-099 13.0 Rt. 89 near Schuyler Creek L805638 H 42.803374 -76.7630877 2015-02-26 15:45:00 obsr2871406 S22082637 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318598294 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-10 09:05:00 obsr150415 S23383427 Traveling P22 EBIRD 180.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317103360 2021-03-26 06:39:43.334073 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Cherry Hill L1089061 H 40.7747813 -73.972173 2015-05-08 07:20:00 obsr2797341 S23301020 Stationary P21 EBIRD 20.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290451083 2021-04-01 12:32:15.282601 7261 species avibase-86D45B8F Green Heron Butorides virescens 6 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-11 11:00:00 obsr444155 S21300554 Traveling P22 EBIRD 90.0 3.219 1.0 1 G1105467 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326755093 2015-06-14 00:06:29 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 S C2 S United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail Fields L2372364 P 42.212377 -76.840805 2015-04-19 09:02:00 obsr1587816 S23898871 Traveling P22 EBIRD 5.0 0.29 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290613925 2021-03-19 16:43:17.120646 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 10 United States US New York US-NY Madison US-NY-053 28.0 US-NY-Georgetown-1244 Carpenter Rd L3287454 P 42.770941 -75.809303 2015-01-12 08:20:00 obsr2172593 S21313115 Stationary P21 EBIRD 8.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313429975 2019-07-23 17:28:28 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Oneida US-NY-065 13.0 Godfrey Point DEC Boat Launch L1570638 H 43.2235924 -75.8505869 2015-04-27 05:57:00 obsr666964 S23086630 Stationary P21 EBIRD 62.0 1.0 1 G1239030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS920853083 2020-05-13 10:54:47 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 6 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Pulaski-36 Windcrest Dr L3099636 P 43.574895 -76.136795 2015-04-30 18:58:00 obsr2720788 S68975016 Traveling P22 EBIRD 45.0 72.419 1.0 1 G5326505 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323953619 2018-08-06 22:31:26 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 6 United States US New York US-NY Broome US-NY-007 28.0 Aquaterra Park L209925 H 42.032165 -75.939463 2015-05-30 08:13:00 obsr246469 S23705288 Traveling P22 EBIRD 193.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320460655 2021-04-01 10:51:06.899622 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 Male, Immature (1); Female, Adult (1); Male, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-05-17 07:01:00 obsr2497657 S23487817 Traveling P22 EBIRD 165.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288780714 2015-01-07 16:00:12 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Suffolk US-NY-103 30.0 Hortons Point L158149 H 41.0852163 -72.4456862 2015-01-03 15:26:00 obsr2485753 S21165479 Traveling P22 EBIRD 13.0 0.644 1.0 1 G1100217 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315784944 2021-11-15 03:06:58.889978 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 06:39:00 obsr870166 S23225190 Traveling P22 EBIRD 294.0 5.15 3.0 1 G1735849 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325986178 2021-03-26 06:12:17.833181 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-05-15 09:45:00 obsr1224512 S23842790 Traveling P22 EBIRD 230.0 1.609 10.0 1 G1309113 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325591545 2018-08-04 17:30:45 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Franklin US-NY-033 13.0 Private Property - Alderon Marsh L3601092 P 44.9946705 -74.5498753 2015-05-31 10:00:00 obsr1190754 S23815413 Traveling P22 EBIRD 90.0 0.966 2.0 1 G1306306 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298598494 2021-01-16 10:09:45.715513 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Washington US-NY-115 13.0 Duer Rd, Greenwich, NY L3397812 P 43.1695793 -73.5507651 2015-02-20 13:02:00 obsr1222746 S21990825 Traveling P22 EBIRD 24.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311019787 2018-08-04 17:09:38 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-18 08:00:00 obsr998593 S22930697 Stationary P21 EBIRD 180.0 10.0 1 G1224864 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303675192 2018-08-04 17:01:41 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Warren US-NY-113 14.0 Dock Rd., Old Steamshop Dock, Hague L2115273 H 43.7409256 -73.5010242 2015-03-17 10:52:00 obsr2693145 S22393782 Traveling P22 EBIRD 16.0 1.448 2.0 1 G1183217 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320134932 2022-01-12 18:15:23.330035 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--CR 55 to Bigelow Rd. L1432948 H 44.4167104 -74.1195601 2015-05-16 07:24:00 obsr2950436 S23470997 Traveling P22 EBIRD 155.0 1.448 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312292194 2021-03-26 07:20:31.408164 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-04-23 08:00:00 obsr2011512 S23012989 Traveling P22 EBIRD 80.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS924138754 2020-05-16 16:25:56 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Times Beach Nature Preserve L811486 H 42.8742747 -78.8825647 2015-05-17 07:40:00 obsr318741 S69165857 Traveling P22 EBIRD 105.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323420427 2015-05-27 18:43:57 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Columbia US-NY-021 13.0 269 Schneider Rd L169782 P 42.146175 -73.75124 2015-05-26 obsr1376228 S23667792 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297881167 2021-11-09 22:04:47.967972 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-14 13:35:00 obsr2269521 S21929152 Stationary P21 EBIRD 135.0 2.0 1 G1150104 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308613722 2021-03-26 08:14:57.071052 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 14 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-04-09 07:20:00 obsr258431 S22765717 Traveling P22 EBIRD 95.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309485416 2018-08-04 17:08:54 6493 species avibase-441918B5 Gull-billed Tern Gelochelidon nilotica 2 United States US New York US-NY Clinton US-NY-019 14.0 Macomb State Park L3558720 P 44.6548101 -73.6427817 2015-04-12 13:30:00 obsr1613652 S22825341 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317202223 2021-04-01 11:15:31.646886 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens N X United States US New York US-NY Kings US-NY-047 Shore Road Park L616218 H 40.6220738 -74.0406629 2015-05-08 08:15:00 obsr2078092 S23306035 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310000928 2017-06-26 21:11:42 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-14 13:30:00 obsr137150 S22861975 Traveling P22 EBIRD 45.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320338008 2022-02-04 06:14:13.892644 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-05-16 14:50:00 obsr2277801 S23481255 Historical P62 EBIRD 180.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292516753 2021-04-01 12:18:57.910168 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-21 15:30:00 obsr2634885 S21485419 Traveling P22 EBIRD 90.0 1.0 3.0 1 G1118834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311821143 2018-08-04 17:11:29 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-04-21 11:40:00 obsr2172593 S22982053 Traveling P22 EBIRD 39.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291031431 2020-04-10 18:34:06 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus X United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-14 16:35:00 obsr660214 S21347267 Stationary P21 EBIRD 35.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306402448 2019-07-23 17:28:11 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Niagara US-NY-063 13.0 Golden Hill SP L169679 H 43.3702607 -78.4835732 2015-03-29 12:06:00 obsr2588479 S22601978 Stationary P21 EBIRD 50.0 20.0 1 G1198708 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315397528 2021-11-09 18:46:59.887497 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Dutchess US-NY-027 13.0 Rombout Road Conservancy Area, Poughkeepsie, NY L3610266 P 41.6982367 -73.8312471 2015-04-07 07:00:00 obsr2786327 S23204018 Traveling P22 EBIRD 270.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304563322 2018-08-04 17:02:24 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-22 07:44:00 obsr1958124 S22462041 Traveling P22 EBIRD 6.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298184465 2021-03-22 09:17:32.016297 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 4 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-02-18 08:04:00 obsr666964 S21954650 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316763519 2018-08-04 17:15:05 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-05-07 05:25:00 obsr1154 S23281819 Traveling P22 EBIRD 40.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291427081 2015-12-15 11:54:29 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Wyoming US-NY-121 28.0 Beaver Meadow Audubon Center L160586 H 42.6730027 -78.3831251 2015-01-17 11:00:00 obsr558077 S21379531 Traveling P22 EBIRD 40.0 0.322 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311269495 2021-03-30 19:43:32.881136 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-04-19 08:30:00 obsr2924527 S22946040 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292788226 2021-04-01 11:30:42.037277 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-22 14:00:00 obsr1906124 S21506542 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320555443 2021-03-26 06:17:19.712573 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 14 United States US New York US-NY Erie US-NY-029 13.0 US-NY-South Wales L2862021 P 42.736146 -78.530722 2015-05-17 11:21:00 obsr1603345 S23492655 Traveling P22 EBIRD 168.0 47.796 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304977230 2021-03-24 21:10:11.310781 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-03-20 08:30:00 obsr1664745 S22493169 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296854657 2021-03-24 20:49:55.752669 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Wayne US-NY-117 13.0 Powell's Yard L783199 P 43.0918854 -77.3488167 2015-02-14 09:30:00 obsr749440 S21836202 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313734947 2018-08-04 17:12:05 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-04-25 08:05:00 obsr2837502 S23105668 Traveling P22 EBIRD 120.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294058426 2021-03-26 07:52:59.845315 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-30 08:30:00 obsr316199 S21607164 Area P23 EBIRD 75.0 2.59 2.0 1 G1129513 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289725399 2018-08-04 16:52:54 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-07 16:15:00 obsr1633923 S21241438 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310926978 2021-03-26 07:30:35.289997 20294 species avibase-76158864 Northern Shrike Lanius borealis 8 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-18 09:46:00 obsr1655171 S22924838 Traveling P22 EBIRD 95.0 2.736 2.0 1 G1229843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322632902 2021-11-09 19:01:40.008558 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 12 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-24 06:10:00 obsr1433400 S23616988 Traveling P22 EBIRD 240.0 8.449 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310295745 2021-04-01 11:49:53.573686 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-04-08 07:17:00 obsr1982614 S22882255 Stationary P21 EBIRD 25.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS313734583 2021-03-24 20:33:47.533911 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail and West Trail intersection shelter L301128 P 42.47736 -76.45312 2015-04-28 07:49:00 obsr2307843 S23105641 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323231305 2022-02-17 14:32:23.002448 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-26 13:00:00 obsr1310902 S23654980 Historical P62 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289367494 2021-11-09 20:42:30.296235 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 8 United States US New York US-NY Putnam US-NY-079 28.0 US-NY-Carmel-99 W Shore Dr L3261959 P 41.369769 -73.681728 2015-01-03 11:29:00 obsr1666581 S21213562 Traveling P22 EBIRD 87.0 6.437 2.0 1 G1097916 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296182711 2021-03-30 19:43:32.881136 6339 species avibase-8535345B Herring Gull Larus argentatus 8 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-08 12:00:00 obsr271871 S21775558 Stationary P21 EBIRD 30.0 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291759739 2021-03-19 16:44:35.607263 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush Dam L1066995 H 42.9928613 -77.6449406 2015-01-17 13:26:00 obsr1828453 S21405489 Stationary P21 EBIRD 23.0 1.0 1 G1112434 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325604870 2018-08-06 22:30:31 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Essex US-NY-031 US-NY_846 14.0 Adirondak Loj L358592 H 44.1829118 -73.9642096 2015-05-18 14:30:00 obsr2376028 S23816235 Traveling P22 EBIRD 180.0 6.437 2.0 1 G1306402 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298449274 2021-03-24 19:27:13.077399 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-02-19 14:41:00 obsr1334267 S21978308 Traveling P22 EBIRD 16.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310810401 2021-03-23 17:22:05.708166 279 species avibase-3E04020B Brant Branta bernicla 12 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-17 07:00:00 obsr316199 S22917436 Area P23 EBIRD 60.0 2.59 2.0 1 G1223671 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322178631 2021-03-24 19:48:44.880783 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-23 10:38:00 obsr1696616 S23591572 Traveling P22 EBIRD 42.0 0.644 2.0 1 G1285657 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313333078 2021-03-19 16:44:35.607263 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-04-26 10:30:00 obsr1962295 S23080089 Traveling P22 EBIRD 60.0 0.322 2.0 1 G1244317 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301380238 2021-03-26 07:17:57.136956 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Seneca US-NY-099 13.0 Cosad Rd. Seneca Falls L711560 P 42.8835115 -76.7625475 2015-03-07 10:30:00 obsr204036 S22208797 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308706433 2021-11-15 03:11:49.507437 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Rockland US-NY-087 30.0 Rockland Lake SP L283611 H 41.1468757 -73.9234741 2015-04-09 08:30:00 obsr272939 S22773125 Traveling P22 EBIRD 210.0 3.219 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311152315 2021-03-26 07:30:35.289997 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Snyder Hill Rd. L251541 H 42.4225716 -76.4460031 2015-04-19 07:38:00 obsr711169 S22938800 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308619662 2021-03-30 19:42:59.457579 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 2 United States US New York US-NY Saratoga US-NY-091 13.0 Stony Creek Reservoir L1138526 H 42.8320449 -73.8100147 2015-04-08 13:00:00 obsr2841967 S22766121 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294962912 2022-02-17 14:32:23.002448 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 17 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-04 13:00:00 obsr1807494 S21679558 Traveling P22 EBIRD 180.0 1.609 2.0 1 G1135526 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308080881 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-06 07:45:00 obsr827632 S22724867 Traveling P22 EBIRD 255.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290013935 2021-11-09 18:25:59.444943 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Wappinger Lake L1829902 H 41.6070847 -73.9159704 2015-01-09 12:25:00 obsr2241630 S21265010 Traveling P22 EBIRD 55.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315040065 2015-05-02 18:17:49 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Lick St. L383848 H 42.657479 -76.345811 2015-05-02 09:34:00 obsr2683910 S23184763 Traveling P22 EBIRD 4.0 1.609 2.0 1 G1247595 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301588972 2015-03-08 00:22:19 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Westchester US-NY-119 30.0 White Plains Reservoir No. Two and Overflow Ponds L1072831 P 41.0533369 -73.7598038 2015-03-07 17:00:00 obsr2918150 S22224156 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310911403 2018-08-04 17:09:44 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-18 11:44:00 obsr800690 S22923945 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313781022 2021-03-24 20:23:39.258075 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 Mashomack Preserve L122936 H 41.0562576 -72.2896713 2015-04-28 12:20:00 obsr613775 S23108541 Traveling P22 EBIRD 23.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305088393 2021-04-01 11:49:53.573686 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Queens US-NY-081 30.0 Ridgewood Reservoir L393007 H 40.688969 -73.8863182 2015-03-23 16:30:00 obsr1382841 S22502019 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310926421 2015-04-18 14:37:55 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Chenango US-NY-017 28.0 Smithville, 359 German Hollow Road L3572307 P 42.44039 -75.80345 2015-04-18 10:28:00 obsr1092576 S22924813 Stationary P21 EBIRD 6.0 2.0 1 G1224194 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308483237 2021-04-01 11:30:42.037277 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-08 08:00:00 obsr155560 S22755824 Traveling P22 EBIRD 180.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311508311 2021-03-19 16:14:11.035882 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Cortland US-NY-023 28.0 Tully Lake, south end L508613 H 42.76418 -76.13746 2015-04-20 06:57:00 obsr1696616 S22960614 Traveling P22 EBIRD 21.0 1.448 2.0 1 G1346338 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289319391 2021-03-23 17:00:13.087107 6339 species avibase-8535345B Herring Gull Larus argentatus 5 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-01-05 08:45:00 obsr455249 S21209804 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305392317 2021-03-26 07:46:52.994574 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 23 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-03-26 07:52:00 obsr2512689 S22525653 Traveling P22 EBIRD 68.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316479416 2018-02-26 23:31:47 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-05-06 12:05:00 obsr1830659 S23265222 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298470339 2015-02-19 18:14:32 26278 species avibase-A381417F House Wren Troglodytes aedon 7 H C2 H Unknown Sex and Age (7) United States US New York US-NY Erie US-NY-029 13.0 31 Cherrywood Drive L3400722 P 43.0065929 -78.7451077 2015-02-16 10:00:00 obsr2645885 S21980035 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308014775 2021-03-26 06:11:29.8335 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1000 United States US New York US-NY Cayuga US-NY-011 13.0 Harris Park, Cayuga L388115 H 42.917605 -76.7300177 2015-04-05 10:13:00 obsr1167884 S22720164 Stationary P21 EBIRD 20.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308463987 2021-04-01 10:53:25.818871 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Cortland US-NY-023 28.0 West Blodgett Mills Area - Virgil L2511065 P 42.565282 -76.1628914 2015-04-05 09:47:00 obsr931232 S22754262 Traveling P22 EBIRD 33.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318833184 2021-03-26 07:52:59.845315 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-09 12:50:00 obsr316199 S23396931 Area P23 EBIRD 60.0 2.59 2.0 1 G1266723 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311125148 2021-05-01 05:40:50.213405 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 18:30:00 obsr2796494 S22937389 Traveling P22 EBIRD 120.0 0.805 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312273633 2021-03-26 07:46:52.994574 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 P C3 P Male, Adult (1); Female, Adult (2) United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-04-23 06:20:00 obsr2512689 S23011868 Rusty Blackbird Spring Migration Blitz P41 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307553477 2015-04-04 20:07:30 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Kings US-NY-047 Floyd Bennett Field--South Entrance L1099708 H 40.581644 -73.887949 2015-04-04 19:05:00 obsr2180607 S22687503 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294531571 2021-04-01 12:26:53.827486 8806 species avibase-FC4D40D2 Long-eared Owl Asio otus 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-02-02 07:30:00 obsr2321296 S21644240 Stationary P21 EBIRD 85.0 2.0 1 G1132946 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300153364 2021-03-30 19:28:38.115458 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Seneca US-NY-099 13.0 Varick, 5011-5143 New York 89 L2716122 P 42.77557 -76.76954 2015-02-28 09:28:00 obsr2683910 S22116253 Traveling P22 EBIRD 3.0 1.609 2.0 0 G1162607 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324146422 2021-03-26 06:39:43.334073 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Greywacke Arch L2179946 H 40.7792619 -73.9657742 2015-05-26 08:18:00 obsr1548221 S23717395 Traveling P22 EBIRD 21.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308051666 2021-03-24 20:33:47.533911 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Tompkins US-NY-109 13.0 Mistry backyard L510918 P 42.43245 -76.44061 2015-04-01 11:00:00 obsr2119225 S22722674 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299082240 2015-02-22 20:48:47 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Delaware US-NY-025 28.0 Quail Ridge Area L2327396 P 42.2085425 -74.587276 2015-02-22 08:00:00 obsr883142 S22033212 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293098028 2021-04-01 11:54:40.172593 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Richmond US-NY-085 Lemon Creek Park L508340 H 40.5121298 -74.198581 2015-01-25 10:32:00 obsr1958124 S21531008 Traveling P22 EBIRD 5.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312297906 2021-03-23 17:35:23.829899 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon N 4 United States US New York US-NY Otsego US-NY-077 28.0 Agricultural Field, Colliersville, NY L3584577 P 42.4887508 -74.9710786 2015-04-16 18:00:00 obsr789570 S23013371 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303036348 2015-03-14 12:53:11 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-03-14 11:21:00 obsr1893950 S22343501 Traveling P22 EBIRD 2.0 0.322 2.0 1 G1178962 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304082156 2021-04-01 11:24:19.637193 486 domestic avibase-07FFC1E5 Mallard (Domestic type) Anas platyrhynchos (Domestic type) 20 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-19 15:20:00 obsr983655 S22425586 Traveling P22 EBIRD 40.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316070989 2021-03-19 16:44:35.607263 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-05 10:23:00 obsr2933610 S23241686 Traveling P22 EBIRD 60.0 0.322 2.0 1 G1254139 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288989288 2018-08-04 16:52:43 11494 species avibase-20C2214E American Kestrel Falco sparverius 28 United States US New York US-NY Oneida US-NY-065 13.0 Sylvan Beach L509883 H 43.1939135 -75.731163 2015-01-04 11:13:00 obsr2950436 S21183960 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302664104 2021-04-01 11:49:53.573686 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 6 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-12 07:10:00 obsr1982614 S22314256 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300759149 2015-03-03 18:38:32 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 14 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-03-03 13:04:00 obsr247625 S22160846 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314007651 2021-11-09 21:35:18.646328 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 5 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-29 07:30:00 obsr1636520 S23122980 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322964488 2018-08-06 22:30:20 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Herkimer US-NY-043 14.0 Lake Rondaxe, Burgers Camp L992096 P 43.761071 -74.9080167 2015-05-17 08:15:00 obsr186330 S23637668 Traveling P22 EBIRD 180.0 4.828 4.0 1 G1289899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309374715 2021-03-19 16:02:45.308962 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 27 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-12 08:30:00 obsr290506 S22818654 Traveling P22 EBIRD 100.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309853436 2021-11-09 18:40:19.746769 18439 species avibase-D97F93CC White-eyed Vireo Vireo griseus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--West L3002249 H 41.9197784 -73.6751747 2015-04-13 16:45:00 obsr2862523 S22851521 Traveling P22 EBIRD 100.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290978412 2021-11-09 18:28:50.133002 406 species avibase-27B2749A Wood Duck Aix sponsa 16 United States US New York US-NY Dutchess US-NY-027 13.0 Home, Millbrook, NY L2119013 P 41.7923452 -73.6592703 2015-01-04 07:00:00 obsr1062217 S21342911 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307690997 2021-03-30 19:13:38.458673 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--South Marina L458871 H 43.3060838 -77.7083373 2015-04-05 11:54:00 obsr334398 S22696961 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311187098 2015-05-07 17:07:25 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-19 09:36:00 obsr455249 S22941016 Traveling P22 EBIRD 14.0 0.467 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312067915 2021-03-26 08:05:20.615241 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 4 United States US New York US-NY Onondaga US-NY-067 13.0 Oneida Lake - Short Point Bay Aero Marina L800554 P 43.2092266 -76.0786486 2015-04-18 09:35:00 obsr2290617 S22998098 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356821 2021-04-01 10:45:00.916278 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-04 14:00:00 obsr676630 S21212739 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304217583 2021-03-26 06:29:56.44369 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-20 13:52:00 obsr334398 S22436221 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292899980 2021-04-01 12:18:57.910168 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 175 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-01-24 08:57:00 obsr1696616 S21514193 Traveling P22 EBIRD 84.0 0.322 3.0 1 G1120932 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303165225 2021-03-30 19:37:33.521815 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus X United States US New York US-NY Wayne US-NY-117 13.0 Sodus Point L929415 P 43.2714248 -76.9817591 2015-03-14 10:15:00 obsr195058 S22353543 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297556571 2021-04-01 12:32:15.282601 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Nassau US-NY-059 30.0 west hempstead L1040566 P 40.6900103 -73.6729431 2015-02-15 13:00:00 obsr1494607 S21898641 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302031879 2021-03-26 07:43:12.52294 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 13 United States US New York US-NY Wayne US-NY-117 13.0 ***US-NY-WAY Newark--Wegman's Plaza [Newark_CW] L986247 P 43.0450144 -77.1128279 2015-03-09 12:08:00 obsr606693 S22258672 Stationary P21 EBIRD 13.0 0.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298840954 2021-04-01 11:49:53.573686 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 53 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-02-21 10:53:00 obsr1982614 S22011408 Traveling P22 EBIRD 130.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304921208 2018-08-04 17:02:39 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 11 United States US New York US-NY Ontario US-NY-069 13.0 Outlet Creek at Flint Creek, N Wayne St., Phelps L3509790 H 42.960438 -77.048707 2015-03-23 13:36:00 obsr606693 S22488576 Traveling P22 EBIRD 5.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313581239 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-27 06:30:00 obsr2908667 S23095677 Traveling P22 EBIRD 300.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304241842 2021-11-02 20:32:06.137153 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-03-20 13:45:00 obsr317968 S22438089 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298443782 2022-02-17 14:32:23.002448 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-19 14:15:00 obsr454647 S21977871 Traveling P22 EBIRD 105.0 0.966 3.0 1 G1153068 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313438009 2018-08-04 17:11:28 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Warren US-NY-113 14.0 Rogers Rock Campgound L799286 H 43.7930769 -73.4800172 2015-04-21 10:12:00 obsr2693145 S23087159 Traveling P22 EBIRD 109.0 0.805 2.0 1 G1239067 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321915057 2018-08-06 22:30:42 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Greene US-NY-039 US-NY_854 28.0 Spruceton Trail to FireTower L3661949 H 42.1857939 -74.27423 2015-05-21 07:15:00 obsr440908 S23575134 Traveling P22 EBIRD 420.0 5.472 3.0 1 G1283104 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323809401 2018-08-06 22:31:23 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 US-NY-Salamanca - 42.1261x-78.7049 - May 29, 2015, 2:50 PM L3682733 P 42.126149 -78.70494 2015-05-29 14:50:00 obsr2588479 S23695616 Traveling P22 EBIRD 95.0 6.437 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303350524 2021-03-23 16:48:08.60516 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--East Rd. L99686 H 43.009646 -76.7582003 2015-02-22 15:43:00 obsr334398 S22368102 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307578589 2018-08-04 17:05:28 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla X United States US New York US-NY Washington US-NY-115 13.0 River Rd, Washington Cty to Rensselaer County L3539137 P 42.9986487 -73.5949805 2015-04-04 17:15:00 obsr634484 S22689363 Traveling P22 EBIRD 20.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305555373 2015-03-27 07:25:20 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-03-26 08:19:00 obsr2074043 S22538147 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318815484 2021-04-01 10:55:39.308231 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-11 13:45:00 obsr1379161 S23395879 Traveling P22 EBIRD 240.0 3.219 2.0 1 G1280580 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288857332 2021-03-30 19:39:10.250398 591 species avibase-1929E1E1 Canvasback Aythya valisineria 4 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-01-03 07:30:00 obsr1102914 S21173939 Traveling P22 EBIRD 180.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320192297 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-16 07:00:00 obsr2700876 S23473871 Traveling P22 EBIRD 120.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291800145 2017-04-15 20:22:12 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 29 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-H L3289015 P 40.16753 -73.15285 2015-01-11 15:00:00 obsr751942 S21408693 Traveling P22 EBIRD 60.0 33.523 44.0 1 G1108341 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311964046 2021-11-09 19:21:07.406501 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-04-21 07:30:00 obsr671490 S22991292 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289184063 2018-08-04 16:52:17 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Niagara US-NY-063 13.0 Niagara Falls SP L918348 H 43.0863978 -79.0690431 2015-01-01 10:00:00 obsr2965498 S21199241 Traveling P22 EBIRD 15.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313761015 2018-03-17 06:19:18 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Pine Neck Sanctuary L122956 H 40.84111 -72.56528 2015-04-28 08:30:00 obsr1736113 S23107269 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291940661 2021-04-01 11:49:53.573686 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-01-19 09:15:00 obsr876649 S21419290 Traveling P22 EBIRD 220.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317968283 2021-04-01 11:15:31.646886 681 species avibase-407E2CA8 Common Merganser Mergus merganser N X United States US New York US-NY Kings US-NY-047 Canarsie Pier L247765 H 40.6287773 -73.8836704 2015-05-09 17:30:00 obsr1189028 S23349668 Stationary P21 EBIRD 15.0 2.0 1 G1261019 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294535820 2021-04-01 11:49:53.573686 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Queens US-NY-081 30.0 Flushing Meadows Corona Park L520701 H 40.7397975 -73.8407834 2015-02-02 07:00:00 obsr1135516 S21644616 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314330266 2018-08-04 17:13:07 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 4 United States US New York US-NY Onondaga US-NY-067 US-NY_2803 13.0 Cicero Swamp WMA L270911 H 43.1333977 -75.9873074 2015-04-30 08:30:00 obsr660214 S23142398 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320546671 2021-03-30 06:01:28.020715 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Oneida US-NY-065 13.0 Home L3650238 P 43.083719 -75.37244 2015-04-15 obsr593665 S23492183 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300944165 2021-03-23 16:48:08.60516 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Seneca US-NY-099 13.0 Canoga Bait Ponds (Seybolt Rd.) L99394 H 42.8546893 -76.76586 2015-03-04 17:45:00 obsr1696616 S22174976 Traveling P22 EBIRD 13.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302329628 2021-03-24 21:13:42.099821 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 8 United States US New York US-NY Westchester US-NY-119 30.0 Hunt-Parker Sanctuary--Bylane Farm L786456 H 41.2827085 -73.6707115 2015-03-10 16:45:00 obsr385524 S22286333 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613147 2021-03-26 07:30:35.289997 406 species avibase-27B2749A Wood Duck Aix sponsa 10000 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-17 14:48:00 obsr2683910 S21394121 Stationary P21 EBIRD 51.0 2.0 1 G1113287 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS323515111 2021-11-02 20:32:06.137153 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-27 12:30:00 obsr317968 S23674230 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297076922 2021-11-15 03:06:58.889978 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-14 14:30:00 obsr1008756 S21855490 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307396319 2018-08-04 17:05:23 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Oswego US-NY-075 13.0 CR 37 swamps L888794 P 43.2688313 -76.1186028 2015-04-04 11:14:00 obsr979921 S22676669 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296586367 2021-03-24 21:10:11.310781 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-02-10 08:30:00 obsr1664745 S21811958 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311204580 2017-03-30 13:04:27 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Woodleton boardwalk (0.17km) L250377 P 42.47638 -76.44913 2015-04-19 07:47:00 obsr2307843 S22941967 Traveling P22 EBIRD 10.0 0.1 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293513093 2015-05-07 17:03:00 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-01-27 07:15:00 obsr455249 S21563855 Traveling P22 EBIRD 6.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS798334345 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Nassau US-NY-059 30.0 Baldwin L193543 T 40.6565 -73.60927 2015-01-03 07:25:00 obsr2686964 S59266092 Traveling P22 EBIRD 555.0 20.921 2.0 1 G4460186 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316799829 2021-03-26 06:21:54.883933 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 07:25:00 obsr2519357 S23283917 Traveling P22 EBIRD 100.0 1.609 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314263173 2021-11-15 03:06:58.889978 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-28 07:00:00 obsr570335 S23138686 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316640785 2021-11-09 19:01:40.008558 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-01 08:00:00 obsr2753438 S23274870 Traveling P22 EBIRD 240.0 4.828 2.0 1 G1255031 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319504503 2021-03-26 06:29:56.44369 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-13 10:28:00 obsr2595828 S23435881 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317293654 2022-02-17 14:32:23.002448 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-08 15:30:00 obsr1801902 S23311235 Traveling P22 EBIRD 80.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288773147 2021-03-30 19:39:10.250398 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Nassau US-NY-059 30.0 North Woodmere Park L1855788 P 40.644958 -73.736834 2015-01-03 14:20:00 obsr2906952 S21164888 Traveling P22 EBIRD 55.0 0.402 4.0 1 G1094303 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312753511 2021-12-10 08:21:29.396662 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus N 3 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-04-25 06:30:00 obsr258431 S23045438 Traveling P22 EBIRD 253.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322026606 2021-03-19 16:25:42.617988 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 4 United States US New York US-NY Essex US-NY-031 13.0 magic triangle L2415718 P 44.266838 -73.364296 2015-05-22 10:15:00 obsr2105231 S23582342 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314261864 2021-03-23 17:00:13.087107 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-772 Bostwick Rd L3557263 P 42.426365 -76.596871 2015-04-30 06:43:00 obsr2625207 S23138606 Traveling P22 EBIRD 35.0 1.996 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295405818 2019-07-23 17:27:17 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Road L1297365 P 40.8364114 -72.5046158 2015-02-07 14:00:00 obsr717785 S21714088 Traveling P22 EBIRD 120.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300294296 2021-04-28 05:22:52.046239 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 6 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-03-01 10:50:00 obsr150415 S22127602 Traveling P22 EBIRD 40.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316559438 2021-03-26 06:39:43.334073 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-05-06 14:30:00 obsr2485773 S23270115 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290844858 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-01-13 14:05:00 obsr1711339 S21332021 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315663400 2021-03-19 16:54:27.713469 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Montgomery US-NY-057 13.0 629 State Highway 161 L3554520 P 42.8835997 -74.2643339 2015-05-04 06:15:00 obsr286403 S23218649 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307081110 2018-08-04 17:05:06 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-02 13:38:00 obsr528918 S22653684 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293901637 2021-11-09 19:48:28.372144 6186 species avibase-B0932D89 Dovekie Alle alle 6 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region L2435862 P 41.3374945 -74.4715548 2015-01-29 15:00:00 obsr444155 S21594772 Traveling P22 EBIRD 150.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310188073 2021-04-01 12:32:15.282601 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 4 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-15 08:10:00 obsr247620 S22875182 Traveling P22 EBIRD 80.0 2.012 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288114670 2021-03-19 16:44:35.607263 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 64 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-01-01 08:31:00 obsr334398 S21110380 Traveling P22 EBIRD 46.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302878483 2018-08-04 16:59:45 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 Unknown Sex, Adult (1) United States US New York US-NY Oswego US-NY-075 13.0 Oswego River in Phoenix north of Culvert St and Lock L3485145 P 43.2296756 -76.3036323 2015-03-12 11:30:00 obsr1303581 S22330535 Traveling P22 EBIRD 35.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312706808 2020-05-16 18:11:30 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 3 United States US New York US-NY Otsego US-NY-077 13.0 Clarke Pond & Vicinity L3251223 P 42.8139232 -74.8971891 2015-04-24 13:32:00 obsr316199 S23042292 Traveling P22 EBIRD 20.0 1.127 3.0 1 G1234628 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317430340 2021-11-15 03:06:58.889978 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-09 06:45:00 obsr431494 S23319644 Traveling P22 EBIRD 129.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301413566 2021-03-23 16:39:03.255227 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-03-07 12:15:00 obsr1893950 S22211454 Traveling P22 EBIRD 20.0 0.805 2.0 1 G1168998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311218126 2018-08-04 17:11:14 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Oneida US-NY-065 13.0 Verona, Verona Beach State Park L3557734 P 43.17773 -75.73251 2015-04-19 10:18:00 obsr666964 S22942811 Traveling P22 EBIRD 88.0 4.023 1.0 1 G1225983 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295344752 2018-08-04 16:55:48 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP L99696 H 42.5460112 -76.600422 2015-02-07 11:55:00 obsr887540 S21709751 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291309367 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-16 12:00:00 obsr1489009 S21370289 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318150175 2022-03-06 12:39:33.700954 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias X United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-05-09 05:45:00 obsr2207991 S23359139 Traveling P22 EBIRD 60.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308067279 2021-03-26 07:07:10.758746 23187 species avibase-ACB9D1C6 Purple Martin Progne subis 1 United States US New York US-NY Richmond US-NY-085 30.0 Goethals Bridge Pond--Observation Platform L884460 H 40.6281787 -74.1741575 2015-04-06 13:19:00 obsr155915 S22723830 Stationary P21 EBIRD 12.0 2.0 1 G1208439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319246828 2021-03-30 19:07:52.958398 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-13 06:30:00 obsr2908667 S23421015 Traveling P22 EBIRD 205.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299819722 2021-03-19 16:43:17.120646 592 species avibase-3072CC16 Redhead Aythya americana N 2 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-02-26 06:40:00 obsr2716320 S22089630 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290606233 2021-03-30 19:29:33.633096 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-11 07:23:00 obsr1189028 S21312520 Traveling P22 EBIRD 132.0 0.483 3.0 1 G1106578 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309561510 2021-03-26 06:55:00.227271 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Ontario US-NY-069 13.0 Finger Lakes Community College--Upper Trail (Ontario Co.) L429606 H 42.8683135 -77.2382855 2015-04-09 13:45:00 obsr1243175 S22830562 Traveling P22 EBIRD 26.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320324453 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 06:06:00 obsr2404047 S23480566 Traveling P22 EBIRD 480.0 4.828 3.0 1 G1274913 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312086498 2021-04-01 10:53:25.818871 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Cortland US-NY-023 28.0 Bassett/River Rd L2787006 P 42.4134768 -75.9568977 2015-04-22 10:40:00 obsr879105 S22999185 Traveling P22 EBIRD 15.0 6.437 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315872976 2018-08-04 17:14:04 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Delaware US-NY-025 28.0 Rail Trail, West Branch, Hamden, NY L3184377 P 42.1615266 -75.0437236 2015-05-02 08:30:00 obsr2200827 S23229978 Traveling P22 EBIRD 240.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293373597 2021-11-09 21:56:49.750103 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 11 United States US New York US-NY Ulster US-NY-111 28.0 home L3265416 P 41.9668096 -74.2864877 2015-01-26 09:00:00 obsr595164 S21552196 Historical P62 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309197574 2015-04-11 19:09:42 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-04-10 08:30:00 obsr2759466 S22807333 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289553163 2020-06-29 22:16:16 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 10 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-01-06 12:45:00 obsr114791 S21228323 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319140240 2021-04-01 11:15:31.646886 337 species avibase-694C127A Mute Swan Cygnus olor 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 11:00:00 obsr1659461 S23414926 Traveling P22 EBIRD 420.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308114600 2021-04-01 10:58:47.067498 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 25 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-04-06 13:32:00 obsr2588479 S22727547 Traveling P22 EBIRD 76.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293110997 2021-04-01 11:15:31.646886 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 1 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-01-25 08:45:00 obsr350767 S21532016 Traveling P22 EBIRD 90.0 1.287 3.0 1 G1122482 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296235139 2015-02-12 09:09:29 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Saratoga US-NY-091 13.0 Skidmore College L1478151 P 43.0961323 -73.7844899 2015-02-12 09:00:00 obsr1222746 S21779665 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299496699 2021-04-01 12:32:15.282601 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Nassau US-NY-059 30.0 Baldwin LIRR Train Station L2782893 P 40.656513 -73.607819 2015-02-25 06:52:00 obsr870166 S22064516 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306804878 2022-02-27 09:35:49.066489 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 8 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-04-01 16:30:00 obsr2087436 S22632799 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314226433 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-04-28 17:00:00 obsr2072398 S23136276 Stationary P21 EBIRD 20.0 2.0 1 G1266022 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324071489 2015-05-30 20:53:29 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-05-30 obsr646558 S23712360 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297458956 2021-03-23 16:30:20.514143 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Oswego US-NY-075 14.0 home L3383045 P 43.3818462 -76.0223866 2015-02-16 07:30:00 obsr709593 S21889668 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306742167 2021-04-01 12:32:15.282601 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 5 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-01 13:50:00 obsr1488063 S22628292 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303478557 2021-03-26 06:20:10.658048 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 1 United States US New York US-NY Genesee US-NY-037 13.0 Genesee County Airport (GVQ) L2486434 H 43.0306505 -78.1733465 2015-03-16 09:40:00 obsr2933610 S22378708 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310157254 2021-03-23 17:00:13.087107 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-04-15 07:34:00 obsr455249 S22873038 Traveling P22 EBIRD 11.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310328062 2019-07-23 17:28:19 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 23 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip G L3559870 P 40.435667 -73.336683 2015-04-11 15:00:00 obsr1958124 S22884599 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314272808 2022-02-18 10:47:29.953615 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 28 S C2 S United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-30 06:40:00 obsr1062070 S23139341 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312715564 2021-03-26 07:07:10.758746 20829 species avibase-B9B272F4 Common Raven Corvus corax 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-25 06:14:00 obsr1958124 S23042874 Traveling P22 EBIRD 7.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309794048 2021-03-30 19:29:33.633096 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Suffolk US-NY-103 30.0 Terrell River County Park L523654 H 40.7921091 -72.7785873 2015-04-13 16:00:00 obsr2381457 S22847395 Traveling P22 EBIRD 60.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307816498 2018-08-04 17:05:37 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Greene US-NY-039 13.0 Coxsackie Creek Grassland Preserve L293901 H 42.3734151 -73.8229966 2015-04-05 12:57:00 obsr1154 S22705925 Stationary P21 EBIRD 10.0 2.0 1 G1206191 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297017362 2018-09-13 15:48:05 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 15 United States US New York US-NY Steuben US-NY-101 28.0 Ashhill3 L3374079 P 42.3911354 -77.3859358 2015-02-14 11:00:00 obsr590020 S21850087 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308278507 2021-03-26 06:39:43.334073 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-04-07 07:05:00 obsr1706920 S22740165 Traveling P22 EBIRD 75.0 0.161 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294499486 2021-03-26 08:09:53.772059 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Rensselaer US-NY-083 13.0 Church farm, N Hoosick, NY L3088586 P 42.926324 -73.3013767 2015-02-01 13:20:00 obsr1244816 S21641738 Traveling P22 EBIRD_VINS 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314102937 2021-03-23 17:26:08.495143 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park L693342 P 40.6618894 -73.719635 2015-04-29 08:40:00 obsr2505956 S23128614 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289741718 2021-11-15 03:06:58.889978 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-07 08:47:00 obsr1548221 S21242817 Traveling P22 EBIRD 42.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306467493 2015-03-31 07:53:48 622 species avibase-50566E50 Lesser Scaup Aythya affinis X United States US New York US-NY Albany US-NY-001 13.0 Bob's morning run L2676266 P 42.6676218 -73.7954021 2015-03-31 05:30:00 obsr2798912 S22607437 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309163559 2018-08-04 17:08:36 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-11 16:03:00 obsr2945658 S22805014 Traveling P22 EBIRD 79.0 3.219 2.0 1 G1225650 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321247727 2021-04-01 11:30:42.037277 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-19 12:00:00 obsr2706811 S23533873 Traveling P22 EBIRD 120.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303172161 2021-03-26 08:13:27.160698 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 4 United States US New York US-NY Tioga US-NY-107 28.0 Dartts Rd, Spencer L3199225 P 42.202185 -76.52114 2015-03-13 08:25:00 obsr1828453 S22354050 Traveling P22 EBIRD 15.0 0.483 2.0 1 G1179990 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300217120 2021-03-24 20:21:40.993321 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Seneca US-NY-099 13.0 Cove L678244 P 42.6487254 -76.8698493 2015-03-01 obsr2731440 S22121304 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291559815 2021-03-24 20:23:39.258075 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Roosevelt Estate County Park L7273270 H 40.7386078 -73.0728777 2015-01-17 10:12:00 obsr1107696 S21390167 Traveling P22 EBIRD 39.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305378640 2021-04-01 12:45:19.712958 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 5 United States US New York US-NY Westchester US-NY-119 30.0 Kensico Lake - Kensico Dam L3515605 P 41.073736 -73.76689 2015-03-26 08:42:00 obsr2022298 S22524581 Stationary P21 EBIRD 27.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309447363 2021-04-01 11:30:42.037277 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 Unknown Sex, Adult (2) United States US New York US-NY New York US-NY-061 30.0 10034 New York L171669 PC 40.867027 -73.92021 2015-04-12 13:00:00 obsr1740835 S22822838 Traveling P22 EBIRD 90.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289586455 2021-03-23 17:22:05.708166 5664 species avibase-27903EF7 Black-bellied Plover Pluvialis squatarola 3 United States US New York US-NY Herkimer US-NY-043 13.0 Thompson Road - West L622991 P 43.1180579 -74.8612475 2015-01-06 16:03:00 obsr1000124 S21230788 Traveling P22 EBIRD 8.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299855504 2021-03-26 07:56:20.588749 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-02-26 10:05:00 obsr1296638 S22092415 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296665600 2019-07-23 17:27:21 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Suffolk US-NY-103 30.0 Wading River Marsh Preserve L123013 H 40.96167 -72.85778 2015-02-14 08:50:00 obsr1954215 S21818936 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304890466 2021-12-10 08:21:29.396662 11494 species avibase-20C2214E American Kestrel Falco sparverius 2 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-23 08:20:00 obsr2133003 S22485992 Traveling P22 EBIRD 170.0 3.862 11.0 1 G1190278 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306155631 2015-04-16 07:44:36 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-28 18:15:00 obsr794187 S22583140 Stationary P21 EBIRD 130.0 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288817280 2021-03-30 19:39:10.250398 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-03 07:41:00 obsr2394424 S21160793 Traveling P22 EBIRD 266.0 3.219 3.0 1 G1094198 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314153756 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 15:25:00 obsr2105033 S23131673 Traveling P22 EBIRD 130.0 1.931 1.0 1 G1243225 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316578284 2015-05-07 12:19:01 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 3 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-05-06 07:30:00 obsr2842267 S23271232 Traveling P22 EBIRD 270.0 0.805 16.0 1 G1254989 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307300192 2021-03-30 19:13:38.458673 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Park West L1756090 H 43.1831991 -77.5278997 2015-04-03 18:05:00 obsr302343 S22669456 Stationary P21 EBIRD 40.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317401364 2021-03-19 16:14:11.035882 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor27 L3513969 H 42.6604171 -76.149084 2015-05-09 06:03:00 obsr620377 S23317852 Stationary P21 EBIRD 18.0 2.0 1 G1272254 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302841492 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-13 09:51:00 obsr1979147 S22327743 Traveling P22 EBIRD 68.0 0.483 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS314484954 2021-03-30 19:07:52.958398 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 17:30:00 obsr1807494 S23152439 Traveling P22 EBIRD 105.0 1.609 2.0 1 G1244829 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311232476 2021-03-26 07:30:35.289997 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 3 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Research Ponds Unit II (restricted access) L266582 H 42.5034956 -76.4374457 2015-04-19 12:08:00 obsr1062070 S22943703 Traveling P22 EBIRD 33.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307682803 2021-09-29 04:58:21.533581 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 Governors Island (open year-round) L555894 H 40.6885372 -74.0189759 2015-04-05 10:45:00 obsr259298 S22696418 Traveling P22 EBIRD 5.0 0.257 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288717963 2019-07-23 17:26:40 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 25 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 Mashomack Preserve L122936 H 41.0562576 -72.2896713 2015-01-03 07:30:00 obsr613775 S21160504 Traveling P22 EBIRD 269.0 8.047 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294870972 2021-03-26 07:56:20.588749 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-09 09:00:00 obsr2218212 S21672024 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317082268 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-05-06 16:39:00 obsr119187 S23299820 Stationary P21 EBIRD 120.0 2.0 1 G1257076 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289487683 2021-03-26 07:07:10.758746 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-06 13:40:00 obsr1958124 S21223161 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292539379 2021-04-01 12:18:57.910168 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-01-21 14:00:00 obsr2673845 S21486998 Stationary P21 EBIRD 20.0 3.0 1 G1118986 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298985826 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 30.0 Flatbush Ave -- Plaza to Atlantic L1988258 P 40.678311 -73.9732593 2015-02-19 08:40:00 obsr904434 S22023049 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311082284 2021-03-19 16:12:42.877422 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Columbia US-NY-021 14.0 Larkspur Farm woods (private) L3150691 P 42.1917199 -73.6003561 2015-04-18 07:25:00 obsr2842267 S22934818 Traveling P22 EBIRD 95.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310334119 2019-07-24 17:31:47 662 species avibase-FB738385 Bufflehead Bucephala albeola 171 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr1982614 S22884992 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293225509 2021-04-01 11:49:53.573686 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 3 United States US New York US-NY Queens US-NY-081 ROCKAWAY BEACH L1094857 P 40.5821492 -73.8085556 2015-01-25 13:30:00 obsr2189493 S21540921 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308614725 2021-03-26 06:09:25.361188 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-04-09 08:05:00 obsr879105 S22765791 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319492909 2021-04-01 11:30:42.037277 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 06:00:00 obsr1135516 S23435133 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300046841 2021-03-24 20:16:00.852773 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-02-28 07:18:00 obsr1958124 S22107205 Traveling P22 EBIRD 14.0 0.644 2.0 1 G1161961 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308433835 2015-04-08 18:13:47 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Richmond US-NY-085 Oakwood Beach L2501874 H 40.5533157 -74.1087484 2015-04-08 10:13:00 obsr1958124 S22752100 Stationary P21 EBIRD 5.0 2.0 1 G1211598 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293991305 2021-03-23 16:39:03.255227 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 15 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-01-30 12:07:00 obsr1958124 S21601677 Traveling P22 EBIRD 37.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315866080 2021-03-26 07:56:20.588749 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-04 16:30:00 obsr916370 S23229591 Traveling P22 EBIRD 75.0 2.253 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292947991 2021-03-19 16:44:35.607263 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-01-24 08:55:00 obsr302343 S21519251 Traveling P22 EBIRD 135.0 3.621 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300598251 2015-03-02 20:13:37 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-02 08:30:00 obsr316199 S22149208 Area P23 EBIRD 60.0 2.59 2.0 1 G1165183 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288172690 2015-01-01 13:06:51 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Onondaga US-NY-067 13.0 Gully Road, Marcellus L1343478 P 42.9745136 -76.3974996 2015-01-01 12:30:00 obsr2406179 S21115195 Stationary P21 EBIRD 25.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293386781 2017-08-16 16:27:15 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus X United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-25 17:35:00 obsr2505956 S21553402 Traveling P22 EBIRD 75.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306240339 2015-03-30 07:19:16 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-03-30 07:15:00 obsr1958124 S22589479 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320121510 2021-11-15 03:06:58.889978 622 species avibase-50566E50 Lesser Scaup Aythya affinis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-16 09:45:00 obsr585997 S23470274 Traveling P22 EBIRD 75.0 1.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309626633 2021-04-01 11:15:31.646886 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-12 14:30:00 obsr2404047 S22834886 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291447028 2018-08-04 16:53:30 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-01-17 13:08:00 obsr1062070 S21381149 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309222280 2021-01-02 20:17:06.602961 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Tompkins US-NY-109 13.0 Allan H. Treman State Marine Park--marina (not lakeshore or woods) L159024 H 42.4571425 -76.5143238 2015-04-10 14:50:00 obsr2855945 S22808997 Stationary P21 EBIRD 15.0 3.0 1 G1216884 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316308099 2021-03-26 06:39:43.334073 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 08:50:00 obsr1706920 S23255872 Stationary P21 EBIRD 25.0 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306099622 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-03-29 14:00:00 obsr2774749 S22578827 Traveling P22 EBIRD 90.0 1.287 2.0 1 G1196722 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308056353 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-06 13:25:00 obsr1711339 S22723024 Traveling P22 EBIRD 170.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310961383 2021-04-01 12:32:15.282601 591 species avibase-1929E1E1 Canvasback Aythya valisineria N X United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-18 08:00:00 obsr547602 S22927095 Traveling P22 EBIRD 120.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318197687 2021-04-01 11:15:31.646886 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-10 08:30:00 obsr2336264 S23361625 Traveling P22 EBIRD 390.0 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317976061 2021-03-23 17:21:37.486392 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Fulton US-NY-035 13.0 Tillboro rd st johnsville L2255286 P 43.0266198 -74.5724702 2015-05-09 16:52:00 obsr1683226 S23350150 Traveling P22 EBIRD 159.0 4.828 2.0 1 G1261081 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921296 2021-03-26 07:56:20.588749 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 16 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-06 16:00:00 obsr2218212 S22173316 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306900811 2021-03-24 20:06:25.370375 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Ontario US-NY-069 13.0 east street L3147087 P 42.8983836 -77.2684765 2015-04-01 11:55:00 obsr2979658 S22639780 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300275457 2021-03-24 19:27:13.077399 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-03-01 07:30:00 obsr142874 S22126064 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301811301 2022-03-08 13:50:22.901821 26109 species avibase-BAC33609 Brown Creeper Certhia americana 4 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-03-07 14:30:00 obsr1872991 S22242328 Traveling P22 EBIRD 60.0 3.219 2.0 0 G1170920 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305298773 2021-03-26 07:42:06.558742 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 10 United States US New York US-NY Washington US-NY-115 13.0 Fort Miller, NY L2588693 P 43.1546669 -73.5772634 2015-03-25 10:51:00 obsr1222746 S22518257 Traveling P22 EBIRD 59.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294529570 2021-03-30 19:13:38.458673 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 8 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-18 14:30:00 obsr2276013 S21644071 Traveling P22 EBIRD 56.0 0.241 2.0 1 G1132729 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318940284 2021-03-26 07:46:52.994574 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-11 16:00:00 obsr30103 S23403158 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303530922 2021-03-26 06:55:00.227271 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-03-16 14:30:00 obsr606693 S22382715 Traveling P22 EBIRD 10.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311108463 2021-03-31 04:01:10.517395 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 07:00:00 obsr2448957 S22936411 Traveling P22 EBIRD 360.0 6.437 16.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS295800286 2022-02-10 18:52:24.045177 30494 species avibase-240E3390 House Sparrow Passer domesticus N 100 United States US New York US-NY Ulster US-NY-111 28.0 Wallkill--Old Fort Rd/Bates Ln area L3349436 P 41.6308089 -74.2259932 2015-02-09 09:44:00 obsr1895272 S21745013 Traveling P22 EBIRD 224.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS300572388 2021-03-23 16:47:32.118714 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Schoharie US-NY-095 28.0 Adam's Feeder L1409105 P 42.6103276 -74.2869187 2015-03-02 09:30:00 obsr2268588 S22147215 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319532196 2021-04-01 11:15:31.646886 32955 species avibase-41062654 Northern Parula Setophaga americana 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-10 10:26:00 obsr1601967 S23437436 Traveling P22 EBIRD 209.0 5.633 2.0 1 G1270313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312871901 2021-03-23 17:23:45.772216 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake Park L792637 H 42.7759994 -77.6113701 2015-04-25 11:53:00 obsr39511 S23052345 Traveling P22 EBIRD 53.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318677758 2021-04-01 11:15:31.646886 7200 species avibase-49D9148A Great Egret Ardea alba 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L3640607 P 40.6155949 -73.8359737 2015-05-09 12:24:00 obsr454647 S23387850 Traveling P22 EBIRD 150.0 1.0 6.0 1 G1265610 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288826697 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-01 08:30:00 obsr145923 S21171347 Traveling P22 EBIRD 225.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324213970 2020-04-04 07:56:25 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Oswego US-NY-075 13.0 Helinger Rd L3687148 P 43.2917322 -76.0883904 2015-04-26 09:03:00 obsr2409011 S23721539 Traveling P22 EBIRD 10.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311061034 2018-08-04 17:09:09 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Erie Canal, Fayetteville L723439 H 43.0433627 -76.0207558 2015-04-14 12:30:00 obsr2648237 S22933390 Traveling P22 EBIRD 120.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317784561 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 La Casa Mocha L2517907 P 43.1025966 -77.429511 2015-05-09 07:30:00 obsr1638920 S23339460 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000562 2021-03-26 07:56:20.588749 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-08 09:00:00 obsr2218212 S23775910 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311961444 2021-03-26 06:39:43.334073 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Greywacke Arch L2179946 H 40.7792619 -73.9657742 2015-04-19 08:35:00 obsr1548221 S22991122 Traveling P22 EBIRD 26.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306302720 2022-02-17 14:32:23.002448 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-16 10:00:00 obsr1284279 S22594316 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309476452 2021-03-01 11:20:54.007808 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-12 15:34:00 obsr887540 S22824738 Traveling P22 EBIRD 35.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290411433 2019-07-23 17:26:45 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point State Park L3284867 P 41.0661986 -71.8885231 2015-01-10 09:25:00 obsr1848026 S21297380 Traveling P22 EBIRD 60.0 0.402 8.0 1 G1105255 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306134311 2015-03-29 19:13:30 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-03-29 14:30:00 obsr87415 S22581511 Traveling P22 EBIRD 45.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310172638 2021-04-01 10:47:08.851048 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus X United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-04-15 08:50:00 obsr1044068 S22874107 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292125433 2021-03-26 06:55:00.227271 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-01-20 12:38:00 obsr606693 S21434083 Traveling P22 EBIRD 14.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314670481 2021-03-31 04:08:01.38714 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Livingston US-NY-051 13.0 PFA-North Avon Route L1192039 P 42.9168979 -77.673254 2015-05-01 05:35:00 obsr1060479 S23163547 Traveling P22 EBIRD 85.0 17.542 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315150233 2021-11-09 18:41:50.421844 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 5 United States US New York US-NY Dutchess US-NY-027 13.0 Roeliff Jansen Kill MUA L3121099 H 42.0079918 -73.7374895 2015-05-02 12:00:00 obsr237150 S23190855 Traveling P22 EBIRD 45.0 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317937605 2021-04-01 10:55:39.308231 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-09 15:00:00 obsr1379161 S23347828 Traveling P22 EBIRD 150.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319931338 2021-03-19 16:14:11.035882 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor24 L3513966 H 42.634037 -76.1144502 2015-05-09 16:04:00 obsr2535282 S23459822 Stationary P21 EBIRD 9.0 2.0 1 G1272229 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313747145 2021-03-26 06:07:26.162322 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Allegany US-NY-003 28.0 Cuba Lake L1326387 H 42.2508599 -78.2923025 2015-04-25 11:08:00 obsr870166 S23106385 Traveling P22 EBIRD 29.0 8.047 3.0 1 G1240624 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322977687 2021-03-26 06:11:29.8335 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Harbor Marina (private) L632907 H 42.8396606 -76.6973591 2015-05-16 14:41:00 obsr2683910 S23638474 Stationary P21 EBIRD 51.0 2.0 1 G1290022 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314207627 2021-11-15 03:06:58.889978 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 15:30:00 obsr2277801 S23135170 Historical P62 EBIRD 225.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322073343 2021-11-09 18:18:59.735531 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 12 United States US New York US-NY Dutchess US-NY-027 13.0 Greig Farm L1398659 P 42.0238868 -73.8620972 2015-05-21 09:30:00 obsr671490 S23585175 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319591848 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-12 14:10:00 obsr463578 S23440730 Traveling P22 EBIRD 64.0 2.897 2.0 1 G1270546 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314354662 2018-03-28 07:13:34 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Towpath Rd. L266832 H 43.0038224 -76.7457005 2015-04-30 11:00:00 obsr204036 S23143819 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315949856 2021-03-24 19:48:44.880783 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-04 07:35:00 obsr1561508 S23234319 Traveling P22 EBIRD 100.0 0.966 2.0 1 G1252320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288324617 2015-01-01 20:24:00 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Livingston US-NY-051 13.0 Rt 15 L1531428 P 42.8414586 -77.7059104 2015-01-01 14:36:00 obsr72341 S21128368 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292207278 2021-04-01 11:15:31.646886 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 25 United States US New York US-NY Kings US-NY-047 US-NY_1722 NY Kings Co., Traveling on the Shore Parkway L3307111 P 40.6273383 -73.8887215 2015-01-19 16:17:00 obsr777692 S21440220 Incidental P20 EBIRD 3.0 0 G1521802 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305411588 2015-03-27 17:04:31 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 4 United States US New York US-NY Suffolk US-NY-103 30.0 Quail Hill L3515872 P 40.9866852 -72.1376896 2015-03-26 10:30:00 obsr2239595 S22527059 Stationary P21 EBIRD 15.0 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291461024 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-17 14:40:00 obsr934639 S21382309 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306362464 2018-08-04 17:04:46 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Tioga US-NY-107 28.0 Catatonk Creek, Spencer, NY L3526495 P 42.2137073 -76.4532566 2015-03-30 12:20:00 obsr2430746 S22598777 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307075876 2021-04-01 11:46:19.761029 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Orleans US-NY-073 13.0 Lakeshore Rd. (Orleans Cty.) L749858 P 43.37149 -78.1236935 2015-04-02 09:40:00 obsr408487 S22653369 Traveling P22 EBIRD 7.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289295252 2021-03-26 06:29:56.44369 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Monroe US-NY-055 13.0 4 Woodside Drive, Penfield, NY L868257 P 43.1235553 -77.4714392 2015-01-05 00:15:00 obsr2716898 S21207726 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308160867 2015-04-06 22:42:05 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 Male, Adult (2) United States US New York US-NY Fulton US-NY-035 13.0 Co Rt 151 - Town of Oppenheim L622995 P 43.0672575 -74.7324371 2015-04-05 17:06:00 obsr316199 S22730920 Traveling P22 EBIRD 7.0 1.77 4.0 1 G1209044 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317133256 2021-04-01 11:15:31.646886 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 07:15:00 obsr2363365 S23302552 Traveling P22 EBIRD 420.0 4.828 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320619042 2022-02-17 14:32:23.002448 7261 species avibase-86D45B8F Green Heron Butorides virescens 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-17 13:00:00 obsr2499879 S23496056 Traveling P22 EBIRD 180.0 6.437 2.0 1 G1278228 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1277039589 2021-11-14 11:47:45.818003 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 11 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-04-16 08:20:00 obsr2155450 S97571155 Traveling P22 EBIRD 80.0 2.012 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314266265 2015-04-30 07:54:27 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown, Southside L2023033 P 42.0758647 -79.2347717 2015-04-29 08:15:00 obsr2910282 S23138905 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302503997 2018-08-04 16:59:40 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Allegany US-NY-003 28.0 Back River Road L3481285 P 42.1984696 -78.0121732 2015-03-11 10:50:00 obsr1310178 S22301863 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309552371 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-04-12 15:20:00 obsr119187 S22829980 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322136376 2021-03-30 19:39:10.250398 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 10 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-21 16:00:00 obsr2218212 S23589199 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319528653 2021-03-19 16:02:45.308962 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 12 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-14 09:08:00 obsr1830659 S23437205 Traveling P22 EBIRD 102.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296818732 2018-08-04 16:55:27 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 Female, Adult (1) United States US New York US-NY Delaware US-NY-025 28.0 Delaware River Bridge, Downsville L2424412 H 42.0746513 -74.9819514 2015-01-31 07:49:00 obsr1788273 S21832948 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310396871 2017-05-07 22:30:53 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-04-16 07:53:00 obsr2588479 S22889447 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312912629 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-25 09:15:00 obsr1258494 S23054690 Traveling P22 EBIRD 120.0 1.609 50.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298913991 2021-03-26 06:09:25.361188 31911 species avibase-486265CF Clay-colored Sparrow Spizella pallida 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-02-22 07:10:00 obsr879105 S22017248 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288985937 2021-03-30 19:29:33.633096 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Suffolk US-NY-103 30.0 Lotus Lake, Sayville L10183421 H 40.7450323 -73.0656674 2015-01-04 10:39:00 obsr1107696 S21183643 Traveling P22 EBIRD 27.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308615857 2021-04-01 11:30:42.037277 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-09 07:05:00 obsr2313260 S22765862 Traveling P22 EBIRD 125.0 1.609 9.0 1 G1212858 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312753483 2021-12-10 08:21:29.396662 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-04-25 06:30:00 obsr258431 S23045438 Traveling P22 EBIRD 253.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309123455 2021-11-09 21:29:33.71224 6291 species avibase-F89FD6E3 Little Gull Hydrocoloeus minutus X United States US New York US-NY Ulster US-NY-111 13.0 George Freer Memorial Beach L1396692 H 41.9102459 -73.9727658 2015-04-11 09:30:00 obsr2862523 S22802286 Stationary P21 EBIRD 20.0 20.0 1 G1214173 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423322 2021-03-26 06:29:56.44369 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-12 18:45:00 obsr1846130 S24163346 Traveling P22 EBIRD 15.0 1.207 4.0 1 G1337411 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293605210 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-01-24 11:03:00 obsr1987335 S21571344 Traveling P22 EBIRD 262.0 0.805 4.0 1 G1126991 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320681 2021-11-09 20:51:06.773494 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Rockland US-NY-087 28.0 Kakiat County Park L1023278 H 41.1461171 -74.11466 2015-02-01 08:05:00 obsr1253931 S21627688 Traveling P22 EBIRD 111.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1085669681 2021-03-01 21:02:53.760364 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 7 United States US New York US-NY Erie US-NY-029 13.0 Buckhorn Island SP L164983 H 43.0606218 -78.9882132 2015-05-17 09:45:00 obsr2155450 S82605282 Traveling P22 EBIRD 120.0 4.828 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294865834 2021-04-01 11:15:31.646886 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 21 United States US New York US-NY Kings US-NY-047 Brooklyn Army Terminal Pier 4 L2598864 H 40.646519 -74.026074 2015-02-04 11:00:00 obsr1821546 S21671625 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323087138 2018-08-06 22:30:56 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Rochester - 43.0982x-77.6865 - May 26, 2015, 10:22 AM L3674444 P 43.098224 -77.686513 2015-05-23 10:30:00 obsr2817239 S23645617 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323984511 2021-04-01 11:15:31.646886 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 06:35:00 obsr41879 S23707073 Traveling P22 EBIRD 279.0 2.414 4.0 1 G1296053 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320082220 2015-05-16 09:35:31 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-05-15 06:59:00 obsr2360922 S23468341 Stationary P21 EBIRD 20.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304550595 2018-08-04 17:02:18 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Nassau US-NY-059 30.0 South Seaman Pond L476036 P 40.675691 -73.5145855 2015-03-21 13:25:00 obsr1160328 S22461234 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301077348 2021-11-09 19:46:29.299755 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Orange US-NY-071 28.0 Fiero - 379 Lake Osiris Road L2227275 P 41.5700607 -74.1483917 2015-03-05 08:00:00 obsr662396 S22184283 Stationary P21 EBIRD 300.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313482888 2021-03-23 17:23:45.772216 23187 species avibase-ACB9D1C6 Purple Martin Progne subis 10 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake Park L792637 H 42.7759994 -77.6113701 2015-04-27 07:45:00 obsr2223307 S23089820 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309382790 2021-04-01 11:49:53.573686 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Queens US-NY-081 30.0 Kissena Corridor Park L1285332 H 40.747257 -73.8202286 2015-04-12 07:00:00 obsr676630 S22819110 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314153775 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 15:25:00 obsr2105033 S23131673 Traveling P22 EBIRD 130.0 1.931 1.0 1 G1243225 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311721215 2015-04-20 22:15:04 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh trail off 208 L3579699 P 42.6541241 -73.939265 2015-04-19 17:00:00 obsr2190222 S22975536 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305583231 2018-08-04 17:03:44 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-27 11:22:00 obsr1062070 S22540405 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302750736 2022-02-17 14:32:23.002448 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-08 14:30:00 obsr2404047 S22320995 Traveling P22 EBIRD 280.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294598093 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 Female, Adult (1); Male, Adult (4) United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-02-01 10:50:00 obsr1601967 S21649646 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313880435 2020-01-16 17:01:29 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Madison US-NY-053 28.0 Springhill Farm L3393258 P 42.7960934 -75.8108997 2015-04-28 06:30:00 obsr2505726 S23114963 Stationary P21 EBIRD 735.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS324604463 2018-08-06 22:31:25 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 3 United States US New York US-NY Franklin US-NY-033 14.0 Fish Creek Pond Campground L1301155 H 44.3040805 -74.3591219 2015-05-30 07:00:00 obsr2161273 S23747679 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288443769 2018-08-04 16:52:29 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Tompkins US-NY-109 28.0 Fall Creek at Etna bridge L3256899 P 42.485595 -76.385035 2015-01-02 10:50:00 obsr2001485 S21137679 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310185754 2021-03-26 07:30:35.289997 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-15 07:32:00 obsr1655171 S22875035 Traveling P22 EBIRD 36.0 0.483 2.0 1 G1221849 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301532696 2021-03-23 17:18:00.959502 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Guilderland, NY L1819771 P 42.6970288 -73.8770027 2015-03-07 16:00:00 obsr30103 S22219822 Traveling P22 EBIRD 60.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301735301 2019-01-03 10:54:11 303 species avibase-B59E1863 Canada Goose Branta canadensis 13 United States US New York US-NY Suffolk US-NY-103 US-NY_839 South Ferry Channel, Shelter Island L1655288 P 41.0414924 -72.3162484 2015-03-08 10:49:00 obsr613775 S22235887 Traveling P22 EBIRD 75.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300072660 2021-04-01 12:11:50.996293 6408 spuh avibase-E8FAD0BB Larus sp. Larus sp. 1 United States US New York US-NY Seneca US-NY-099 13.0 Seybolt Road, N of Bait Ponds L882643 H 42.8684157 -76.7654228 2015-02-28 10:45:00 obsr887540 S22109255 Traveling P22 EBIRD 27.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298469916 2021-03-30 19:39:10.250398 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-02-19 09:00:00 obsr247620 S21980006 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315852929 2021-12-14 08:38:15.858862 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY New York US-NY-061 30.0 Tudor City Greens (North & South) L2837736 H 40.7490963 -73.9705077 2015-05-04 17:00:00 obsr259298 S23228823 Traveling P22 EBIRD 45.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319176584 2018-08-06 22:29:40 33061 species avibase-E36325FA Prairie Warbler Setophaga discolor 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-11 08:45:00 obsr1962295 S23416805 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309769315 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 prospect park L2823866 P 40.6615313 -73.9686942 2015-04-13 10:00:00 obsr293770 S22845708 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305306447 2020-05-16 18:07:31 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 22 United States US New York US-NY Otsego US-NY-077 13.0 Canadarago Lake - Rt 28 south of Wing Hill Road to Perkins Lane. L1311694 P 42.8086932 -75.0243607 2015-03-25 15:11:00 obsr1000124 S22518845 Incidental P20 EBIRD 3.0 0 G1192374 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303881089 2021-03-26 06:59:15.841579 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Oswego US-NY-075 13.0 Great Bear Recreation Area L664197 H 43.2666087 -76.3654238 2015-03-18 08:59:00 obsr2224244 S22409993 Traveling P22 EBIRD 190.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308370314 2020-02-24 20:02:45 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Jefferson US-NY-045 US-NY_762 13.0 Fort Drum: Training Area 12 & 13 fields (restricted access) L2570251 P 44.1394851 -75.6551372 2015-04-07 12:45:00 obsr1558090 S22747046 Traveling P22 EBIRD 75.0 7.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304893846 2021-03-26 06:39:43.334073 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-03-22 13:14:00 obsr366057 S22486266 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS302851986 2022-03-05 22:03:50.715584 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-13 08:30:00 obsr2219590 S22328560 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322475237 2021-03-24 19:48:44.880783 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Monroe US-NY-055 13.0 Cook Rd quarry L551905 H 43.35837 -77.98301 2015-05-24 11:02:00 obsr1696616 S23608172 Traveling P22 EBIRD 9.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296389003 2021-03-26 06:21:08.096334 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 1 United States US New York US-NY Jefferson US-NY-045 13.0 Watertown L152975 T 43.97476 -75.91075 2015-02-13 09:10:00 obsr2095374 S21793874 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306042779 2021-12-10 08:21:29.396662 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 6 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-29 09:30:00 obsr2211514 S22574578 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307973221 2021-03-26 08:14:57.071052 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-06 08:40:00 obsr258431 S22717530 Traveling P22 EBIRD 140.0 3.621 18.0 1 G1207928 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292030380 2021-12-08 07:58:41.562209 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-01-17 13:30:00 obsr189780 S21426503 Traveling P22 EBIRD 70.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301508195 2018-08-04 16:58:57 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 6 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-03-07 13:30:00 obsr1381746 S22217966 Stationary P21 EBIRD 15.0 2.0 1 G1169253 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317575602 2021-11-09 19:18:50.164977 337 species avibase-694C127A Mute Swan Cygnus olor 4 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L900098 P 41.7307464 -73.8804388 2015-05-08 11:00:00 obsr2954986 S23328439 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292088996 2021-03-26 07:30:35.289997 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus X United States US New York US-NY Tompkins US-NY-109 13.0 Overlook, Rte. 89 N of Hog Hole L479673 H 42.4647843 -76.5246248 2015-01-20 07:30:00 obsr1092576 S21431055 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318619588 2021-04-01 10:47:08.851048 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 5 United States US New York US-NY Broome US-NY-007 28.0 Parsons Rd. L1497949 H 42.2404567 -75.8516071 2015-05-11 12:00:00 obsr800690 S23384732 Traveling P22 EBIRD 20.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314421648 2021-04-01 10:45:00.916278 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-30 17:08:00 obsr128156 S23148055 Traveling P22 EBIRD 36.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316265316 2021-04-01 12:18:57.910168 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Beebe Lake L281786 H 42.4512932 -76.4767515 2015-04-26 08:35:00 obsr1725472 S23253435 Traveling P22 EBIRD 65.0 0.161 3.0 1 G1239951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290236027 2018-08-28 21:10:38 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Nassau US-NY-059 30.0 Shu Swamp Nature Preserve L503050 H 40.8803597 -73.5648394 2015-01-10 11:00:00 obsr247620 S21283326 Traveling P22 EBIRD 120.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288297846 2021-04-01 11:30:42.037277 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 5 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-01 07:10:00 obsr259298 S21126137 Stationary P21 EBIRD 55.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313814840 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 12:00:00 obsr2706811 S23110710 Traveling P22 EBIRD 120.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305749492 2021-11-09 18:45:26.954558 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Dutchess US-NY-027 13.0 Pitcher Lane, Red Hook NY L3519797 P 42.0274277 -73.8618994 2015-03-25 14:55:00 obsr1917973 S22553270 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298202455 2015-02-18 10:43:38 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 2 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-02-18 07:45:00 obsr1680059 S21956304 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420200 2015-01-17 11:16:44 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309 -75.8817852 2015-01-03 09:00:00 obsr998593 S21378875 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310702496 2019-07-23 17:28:19 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip G L3559870 P 40.435667 -73.336683 2015-04-11 15:00:00 obsr248226 S22910268 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320590991 2021-04-01 11:30:42.037277 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-17 06:50:00 obsr822430 S23494596 Traveling P22 EBIRD 320.0 6.437 33.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318009276 2021-03-19 16:19:20.977326 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-10 06:50:00 obsr48167 S23351863 Traveling P22 EBIRD 100.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317560051 2021-03-19 16:08:39.161312 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 South Ripley, Miller Road L3360057 P 42.21902 -79.75516 2015-05-09 12:00:00 obsr37369 S23327543 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320726384 2022-02-17 14:32:23.002448 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-16 11:00:00 obsr1152226 S23501815 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294552904 2021-04-01 12:14:19.266649 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 40 United States US New York US-NY Suffolk US-NY-103 Lake Montauk L3316869 P 41.062777 -71.923413 2015-01-25 12:00:00 obsr110238 S21646046 Traveling P22 EBIRD 120.0 3.219 4.0 1 G1132921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298818901 2019-01-03 10:54:11 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-02-21 17:01:00 obsr2485753 S22009675 Stationary P21 EBIRD 30.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS300899513 2021-03-19 16:06:54.047432 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-02-28 obsr1395007 S22171641 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320212068 2018-10-01 17:17:51 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-16 12:35:00 obsr2105033 S23474806 Traveling P22 EBIRD 120.0 0.644 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317241334 2021-03-19 16:19:20.977326 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo--Mirror Lake L2809120 H 42.9268351 -78.8632295 2015-05-05 08:00:00 obsr1054748 S23308283 Traveling P22 EBIRD 210.0 0.08 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313724053 2021-11-15 03:06:58.889978 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-28 05:55:00 obsr1135516 S23104921 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293306898 2019-01-03 10:54:11 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 23 United States US New York US-NY Suffolk US-NY-103 US-NY_2800 30.0 Napeague SP--Napeague Meadow Rd. L1832761 H 40.9955955 -72.0642866 2015-01-25 15:00:00 obsr1982614 S21547075 Stationary P21 EBIRD 50.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310660393 2021-04-01 12:31:09.823741 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY Livingston US-NY-051 13.0 Rosebrugh Road L1022969 P 42.7197061 -77.735728 2015-04-17 11:45:00 obsr72341 S22907586 Traveling P22 EBIRD 7.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304089381 2021-11-15 03:06:58.889978 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 22 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-10 08:30:00 obsr1548221 S22426143 Traveling P22 EBIRD 46.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314303072 2018-08-04 17:12:13 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Ontario US-NY-069 28.0 Fred&Mike's/Gulick Rd L850433 P 42.7224254 -77.4652541 2015-04-25 13:30:00 obsr2774009 S23141227 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309513559 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-04-12 09:30:00 obsr2078092 S22827350 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323161500 2021-04-27 05:37:04.934789 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-05-22 11:28:00 obsr564905 S23650457 Traveling P22 EBIRD 35.0 1.127 2.0 1 G1291559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313425838 2018-12-27 13:19:22 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Mulholland Wildflower Preserve L124514 H 42.431675 -76.48283 2015-04-25 09:56:00 obsr2211210 S23086389 Traveling P22 EBIRD 26.0 0.483 2.0 1 G1239003 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304743714 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Plains Preserve L1575568 H 40.7240849 -73.5844534 2015-03-20 10:30:00 obsr548996 S22475361 Traveling P22 EBIRD 22.0 0.644 10.0 1 G1185867 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423102 2021-03-30 19:13:38.458673 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-29 19:23:00 obsr1846130 S24163337 Stationary P21 EBIRD 25.0 2.0 1 G1337407 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321831567 2015-05-21 21:16:24 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Allegany US-NY-003 28.0 Route 248A, big pine tree L2946666 P 42.0211129 -77.8145233 2015-05-17 14:20:00 obsr2700440 S23569313 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313768628 2015-04-28 11:48:27 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Ontario US-NY-069 13.0 Ontario Pathways--Cedar Swamp off Gifford Rd. L598969 H 42.9828076 -77.0638078 2015-04-28 09:34:00 obsr1569772 S23107782 Traveling P22 EBIRD 128.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308602804 2021-11-09 21:41:38.795423 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-04-08 07:00:00 obsr1588136 S22764838 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295379882 2021-03-30 19:21:52.898317 5956 species avibase-F35821AA Semipalmated Sandpiper Calidris pusilla 1 United States US New York US-NY Oswego US-NY-075 13.0 Brewerton L1564076 P 43.2388746 -76.1287412 2015-02-07 08:40:00 obsr545221 S21712487 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1277431592 2021-11-14 21:07:41.301602 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata N 6 United States US New York US-NY Erie US-NY-029 13.0 University at Buffalo (North Campus) L6275102 H 43.0008539 -78.7889698 2015-04-29 07:35:00 obsr2155450 S97600716 Traveling P22 EBIRD 30.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS449680071 2021-03-26 07:46:52.994574 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Albany US-NY-001 13.0 Ann Lee Pond L213238 H 42.7376342 -73.813757 2015-04-03 16:43:00 obsr2270510 S22671365 Traveling P22 EBIRD 58.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316251319 2021-03-26 07:53:57.664705 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 4 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-05-05 16:12:00 obsr1060479 S23252623 Stationary P21 EBIRD 86.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288595033 2021-04-01 12:30:15.438381 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Southern Ave (Mohawk River) L3255960 P 43.0341135 -74.8669124 2015-01-01 14:50:00 obsr1000124 S21150546 Stationary P21 EBIRD 50.0 3.0 1 G1091745 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS317683163 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 07:00:00 obsr2152799 S23334166 Traveling P22 EBIRD 480.0 11.265 5.0 0 G1259834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288242196 2021-04-01 11:30:42.037277 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY New York US-NY-061 Randalls Island--saltmarsh and backstop 42 vicinity L1781022 H 40.7964152 -73.9152148 2015-01-01 14:04:00 obsr259298 S21121096 Traveling P22 EBIRD 24.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317371888 2021-11-09 17:58:40.313796 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-08 07:00:00 obsr2753438 S23315698 Traveling P22 EBIRD 210.0 4.828 3.0 1 G1258381 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877118 2021-03-26 07:30:35.289997 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-23 16:30:00 obsr1092576 S21513490 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295657602 2021-12-10 08:21:29.396662 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 4 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-08 08:00:00 obsr2534001 S21734677 Traveling P22 EBIRD 420.0 16.093 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324993177 2018-08-04 16:54:45 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 500 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake L3696266 P 42.7716286 -76.7106923 2015-01-20 09:00:00 obsr1695947 S23775359 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312183979 2021-04-01 12:35:52.669792 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis X United States US New York US-NY Onondaga US-NY-067 13.0 Camillus Erie Canal Park L3583520 P 43.052375 -76.3021731 2015-04-22 12:45:00 obsr968185 S23005834 Traveling P22 EBIRD 120.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291562271 2021-03-26 07:56:20.588749 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 22 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-17 14:45:00 obsr856524 S21390345 Traveling P22 EBIRD 110.0 1.609 3.0 1 G1634022 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320192284 2021-04-01 12:32:15.282601 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-16 07:00:00 obsr2700876 S23473871 Traveling P22 EBIRD 120.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310333824 2015-04-18 14:21:35 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 24 United States US New York US-NY Tompkins US-NY-109 13.0 Hanshaw Rd. fields L1150539 H 42.4663513 -76.4531064 2015-04-15 18:37:00 obsr1655171 S22884974 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303413295 2021-03-31 04:06:27.28709 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 Ft. Edward Grasslands IBA L358625 H 43.2650813 -73.5411072 2015-02-22 15:00:00 obsr1778524 S22372941 Traveling P22 EBIRD 150.0 16.093 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304539509 2021-03-26 07:30:35.289997 26109 species avibase-BAC33609 Brown Creeper Certhia americana 95 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-21 18:27:00 obsr1318356 S22460386 Traveling P22 EBIRD 68.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304575761 2017-08-16 16:52:48 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-20 14:30:00 obsr334398 S22462963 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296055100 2015-02-10 21:43:23 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Delaware US-NY-025 28.0 Quail Ridge Area L2327396 P 42.2085425 -74.587276 2015-02-10 08:30:00 obsr883142 S21765517 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321729824 2021-04-01 10:45:00.916278 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 13 CF C4 CF United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-21 14:03:00 obsr128156 S23563115 Traveling P22 EBIRD 40.0 0.75 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291043379 2021-03-30 19:29:33.633096 483 species avibase-85625D75 Mallard Anas platyrhynchos 64 United States US New York US-NY Suffolk US-NY-103 30.0 Southaven County Park L2117422 H 40.8157861 -72.8972683 2015-01-14 15:37:00 obsr1107696 S21348289 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304536713 2021-04-01 10:52:54.724403 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Columbia US-NY-021 13.0 Chatham L157212 T 42.36428 -73.59486 2015-03-21 13:00:00 obsr712039 S22460140 Traveling P22 EBIRD 120.0 25.75 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299698606 2021-04-01 10:57:06.520339 681 species avibase-407E2CA8 Common Merganser Mergus merganser 160 United States US New York US-NY Essex US-NY-031 13.0 Alexandria Ave bridge L2589364 P 43.8362139 -73.4292054 2015-02-24 16:35:00 obsr2420101 S22080062 Traveling P22 EBIRD 31.0 0.322 2.0 1 G1160276 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306094038 2021-04-01 12:14:19.266649 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-03-29 12:45:00 obsr544268 S22578410 Traveling P22 EBIRD 45.0 4.828 2.0 1 G1196683 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316506658 2018-08-04 17:15:00 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-06 10:30:00 obsr1472872 S23266796 Traveling P22 EBIRD 60.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302058100 2021-04-01 11:30:42.037277 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 2 United States US New York US-NY New York US-NY-061 Randalls Island--Southwest section L1785369 H 40.7836216 -73.9351181 2015-03-08 14:10:00 obsr1548221 S22260868 Traveling P22 EBIRD 41.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298877011 2021-11-09 21:31:40.219848 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 5 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-02-21 09:30:00 obsr2862523 S22014218 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS385644694 2016-03-25 16:46:11 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.1752556 -76.8558787 2015-05-30 19:20:00 obsr2736418 S28538492 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312076414 2021-03-23 17:20:04.546757 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-04-21 10:30:00 obsr2475075 S22998563 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306285515 2021-03-23 17:32:20.03109 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Onondaga US-NY-067 13.0 7474 James Street, Fayetteville, NY L269868 P 43.0374547 -76.0071565 2015-03-27 08:00:00 obsr1167884 S22593077 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291719818 2021-03-23 16:52:36.900075 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 100 United States US New York US-NY Suffolk US-NY-103 US-NY_842 30.0 Cupsogue Beach County Park L566310 H 40.7713119 -72.7373457 2015-01-18 15:00:00 obsr800690 S21402342 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306991693 2021-03-23 17:37:19.520785 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-02 09:34:00 obsr440908 S22646782 Traveling P22 EBIRD 340.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS328916464 2021-11-09 18:17:17.335499 23187 species avibase-ACB9D1C6 Purple Martin Progne subis 8 United States US New York US-NY Dutchess US-NY-027 13.0 Strever Farm Road, Pine Plains L1363519 H 41.9457427 -73.6491438 2015-03-31 09:30:00 obsr1433400 S24057393 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288624114 2018-08-04 16:52:29 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 314 United States US New York US-NY Montgomery US-NY-057 13.0 Riverside Dr./River St. - Fultonville L1385022 P 42.9493581 -74.3647554 2015-01-02 10:45:00 obsr2694889 S21153039 Traveling P22 EBIRD 21.0 0.805 4.0 1 G1092098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307116857 2020-12-14 15:56:49.243642 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Lewis US-NY-049 13.0 Location H L4611970 P 43.940282 -75.401446 2015-04-03 08:46:00 obsr417887 S22656465 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323973136 2021-03-24 20:53:39.352228 6339 species avibase-8535345B Herring Gull Larus argentatus 1 S C2 S United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.5747387 -74.1554202 2015-05-30 07:43:00 obsr1154 S23706418 Traveling P22 EBIRD 250.0 3.219 8.0 1 G1296007 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313913156 2021-04-01 11:15:31.646886 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-28 07:44:00 obsr1152226 S23117041 Rusty Blackbird Spring Migration Blitz P41 EBIRD 240.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319526366 2021-04-01 11:30:42.037277 26278 species avibase-A381417F House Wren Troglodytes aedon 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-05-14 08:30:00 obsr800463 S23437057 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291917895 2018-08-04 16:54:02 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake - Butler Rd. L1474117 P 42.8520571 -77.2811504 2015-01-19 12:45:00 obsr983655 S21417505 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319849916 2021-04-01 11:24:19.637193 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 13.0 Nazareth College L3637430 P 43.100258 -77.519002 2015-05-13 15:36:00 obsr1369657 S23455497 Traveling P22 EBIRD 126.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312193938 2021-11-15 03:06:58.889978 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-22 09:30:00 obsr2310825 S23006542 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309718463 2015-05-09 11:58:16 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 24 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-13 11:57:00 obsr502830 S22841542 Stationary P21 EBIRD 39.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290681495 2021-03-30 19:29:33.633096 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 5 United States US New York US-NY Suffolk US-NY-103 30.0 Southaven County Park L2117422 H 40.8157861 -72.8972683 2015-01-11 15:15:00 obsr564905 S21319254 Stationary P21 EBIRD 101.0 2.0 1 G1107122 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305914996 2021-04-28 05:22:52.046239 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia X United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-03-28 14:32:00 obsr2519357 S22565420 Traveling P22 EBIRD 130.0 4.828 2.0 1 G1195672 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321952055 2018-08-06 22:30:49 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Monroe US-NY-055 13.0 Bird Sanctuary Trail L3663571 P 43.2246922 -77.4341619 2015-05-22 09:30:00 obsr302343 S23577295 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290568662 2021-03-26 06:21:54.883933 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 45 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-11 11:31:00 obsr2404047 S21309926 Traveling P22 EBIRD 390.0 4.828 2.0 1 G1106606 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314303020 2021-03-26 06:39:43.334073 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 09:00:00 obsr800463 S23141224 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302823218 2018-08-04 16:59:48 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus 9 Female, Adult (3); Male, Adult (6) United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-03-13 07:45:00 obsr2342280 S22326315 Traveling P22 EBIRD 15.0 0.322 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303613576 2021-04-01 12:41:58.738824 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 2 United States US New York US-NY Schuyler US-NY-097 13.0 Fitzgerald Rd. (Schuyler Co.) L3493807 H 42.4490773 -76.7425815 2015-03-16 17:27:00 obsr2173269 S22388999 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315317197 2021-11-09 19:19:16.74786 303 species avibase-B59E1863 Canada Goose Branta canadensis 28 United States US New York US-NY Dutchess US-NY-027 13.0 Tivoli Bays - Kidd Lane L902373 P 42.0455003 -73.906703 2015-05-03 08:30:00 obsr2954986 S23199855 Traveling P22 EBIRD 195.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307824557 2022-02-17 14:32:23.002448 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 30 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-04 11:30:00 obsr1152226 S22706535 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309882014 2021-12-08 07:58:41.562209 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 Male, Adult (3); Unknown Sex, Adult (2); Female, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-13 15:39:00 obsr1652207 S22853673 Traveling P22 EBIRD 80.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319549299 2021-03-26 06:17:19.712573 6339 species avibase-8535345B Herring Gull Larus argentatus N 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-14 09:30:00 obsr2096529 S23438409 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314259860 2018-08-04 17:13:05 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-04-30 06:40:00 obsr2074043 S23138468 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321658718 2018-08-06 22:30:42 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-05-21 07:24:00 obsr916033 S23558863 Traveling P22 EBIRD 78.0 3.219 2.0 0 G1281490 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314081146 2021-04-01 12:32:15.282601 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-04-29 11:45:00 obsr247620 S23127326 Traveling P22 EBIRD 105.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311974898 2021-03-30 19:07:52.958398 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-04-20 16:05:00 obsr1821546 S22991971 Traveling P22 EBIRD 78.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340107140 2022-02-17 14:32:23.002448 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-11 10:10:00 obsr294325 S24873703 Traveling P22 EBIRD 140.0 3.219 3.0 1 G1395740 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308090403 2021-11-15 03:06:58.889978 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-06 14:00:00 obsr1460516 S22725701 Stationary P21 EBIRD 30.0 2.0 1 G1209775 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308319045 2021-03-26 06:55:00.227271 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus N 2 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-07 16:51:00 obsr606693 S22743184 Traveling P22 EBIRD 19.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313135297 2021-03-30 12:05:58.533651 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 4 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-26 10:35:00 obsr152435 S23068107 Traveling P22 EBIRD 157.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308296907 2021-03-26 06:55:00.227271 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Home L3158249 P 42.7894329 -77.5681436 2015-04-07 07:45:00 obsr39511 S22741509 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380931 2021-03-30 19:03:28.117389 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr2683910 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324843785 2021-03-23 17:20:04.546757 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-27 11:00:00 obsr2475075 S23764652 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304652733 2021-04-01 12:40:54.473014 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Saratoga US-NY-091 13.0 Saratoga Springs L196167 T 43.08317 -73.78457 2015-03-21 13:00:00 obsr388852 S22468431 Historical P62 EBIRD 240.0 64.374 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321777538 2021-04-01 11:30:42.037277 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-20 07:30:00 obsr1102914 S23566176 Traveling P22 EBIRD 270.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305714767 2021-03-23 17:22:05.708166 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-27 07:15:00 obsr1000124 S22550430 Area P23 EBIRD 40.0 2.59 2.0 1 G1198835 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303545170 2021-04-01 11:49:53.573686 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N 3 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-16 07:19:00 obsr1982614 S22383841 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311423611 2021-03-23 16:30:20.514143 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-19 09:30:00 obsr1633923 S22955433 Traveling P22 EBIRD 540.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300710468 2019-07-23 17:27:37 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Broome US-NY-007 28.0 3665 River Rd Endicott L1466336 P 42.108244 -76.008055 2015-03-03 10:15:00 obsr1826325 S22157325 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309795230 2021-03-26 07:20:31.408164 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L635183 H 40.8348529 -72.6153374 2015-04-13 10:00:00 obsr717785 S22847486 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298960401 2015-02-22 12:39:17 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Saratoga US-NY-091 13.0 Stillwater L196899 T 42.93838 -73.65316 2015-02-21 12:30:00 obsr634484 S22021055 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309859004 2021-03-26 06:39:43.334073 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-13 08:19:00 obsr1548221 S22851933 Traveling P22 EBIRD 23.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310654677 2021-03-26 06:39:43.334073 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-17 10:30:00 obsr1223279 S22907202 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324166871 2021-04-01 11:12:52.834774 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 9 CN C4 CN United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-05-30 07:10:00 obsr2655666 S23718689 Traveling P22 EBIRD 170.0 1.609 6.0 1 G1296011 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313441157 2015-04-27 08:42:42 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Essex US-NY-031 13.0 Ticonderoga Ferry and Boat Launch L2384243 H 43.853925 -73.3852333 2015-04-11 10:08:00 obsr2693145 S23087377 Traveling P22 EBIRD 60.0 0.161 2.0 1 G1239093 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310727835 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-17 14:30:00 obsr363953 S22911919 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306512356 2021-03-26 07:56:20.588749 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-03-31 10:15:00 obsr1982614 S22610702 Traveling P22 EBIRD 60.0 0.499 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309653393 2021-03-24 20:33:47.533911 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 8 United States US New York US-NY Tompkins US-NY-109 13.0 Burdick Hill Rd., Lansing L1107958 H 42.4980885 -76.4998821 2015-04-11 12:30:00 obsr1311434 S22836637 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761752 2021-03-26 07:56:20.588749 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-24 16:00:00 obsr2218212 S22629535 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315662542 2015-11-10 15:42:18 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 Male, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot, Cedar Beach, Back side L3612211 P 42.4909538 -79.3512279 2015-05-03 16:15:00 obsr1235982 S23218611 Stationary P21 EBIRD 15.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311837774 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 20 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 07:30:00 obsr454647 S22983134 Traveling P22 EBIRD 300.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311574842 2018-08-04 17:09:06 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L526565 P 40.7469969 -73.7436676 2015-04-14 07:34:00 obsr2233270 S22965036 Traveling P22 EBIRD 70.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310180752 2021-11-09 18:42:19.628792 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-04-15 06:14:00 obsr2175245 S22874716 Traveling P22 EBIRD 70.0 1.867 3.0 1 G1220726 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304695521 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-21 11:48:00 obsr93451 S22471788 Traveling P22 EBIRD 120.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319100478 2021-03-26 06:17:19.712573 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 2 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-05-12 obsr2096529 S23412800 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306766400 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-01 11:15:00 obsr2505956 S22629900 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322273290 2018-08-06 22:30:58 526 species avibase-56CCA717 Northern Pintail Anas acuta 9 United States US New York US-NY Essex US-NY-031 13.0 Noblewood Park L191517 H 44.3548774 -73.356574 2015-05-23 15:20:00 obsr2937317 S23596578 Traveling P22 EBIRD 48.0 0.885 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316251778 2021-03-24 05:37:45.927792 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-05 14:00:00 obsr319738 S23252644 Traveling P22 EBIRD 110.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293674288 2021-03-24 20:33:47.533911 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Podell Boardwalk (0.08 km) L1075029 P 42.4782515 -76.4511698 2015-01-28 08:18:00 obsr2307843 S21576634 Traveling P22 EBIRD 5.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315266721 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 18:05:00 obsr1433400 S23197412 Traveling P22 EBIRD 80.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316413436 2021-03-30 19:13:38.458673 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-06 06:54:00 obsr2595828 S23261496 Traveling P22 EBIRD 68.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296287553 2018-08-04 16:56:09 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-02-12 15:15:00 obsr369788 S21784150 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298385808 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 13.0 374 Cromwell L1952255 P 43.1326227 -77.5253892 2015-02-10 11:00:00 obsr1463039 S21972051 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320121390 2018-08-06 22:30:11 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Chemung US-NY-015 28.0 Sullivanville Dam L312295 H 42.1930881 -76.7819872 2015-05-16 11:22:00 obsr1318356 S23470269 Traveling P22 EBIRD 21.0 0.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302921284 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-13 16:45:00 obsr568671 S22333985 Stationary P21 EBIRD 45.0 2.0 1 G1178124 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304803323 2022-02-17 14:32:23.002448 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-22 15:00:00 obsr2180607 S22479654 Traveling P22 EBIRD 120.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323533647 2021-04-01 11:30:42.037277 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-28 07:00:00 obsr1220115 S23675627 Traveling P22 EBIRD 120.0 2.414 10.0 1 G1294408 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307177883 2021-03-23 17:41:09.545385 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Westchester US-NY-119 30.0 10573 Port Chester L108608 PC 41.01016 -73.67127 2015-04-01 obsr357066 S22660716 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309889544 2021-03-30 19:13:38.458673 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-04-13 10:50:00 obsr528918 S22854195 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320133731 2021-03-19 16:02:45.308962 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-16 06:05:00 obsr290506 S23470939 Traveling P22 EBIRD 254.0 3.219 2.0 1 G1273111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303838069 2021-03-26 06:29:56.44369 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Monroe US-NY-055 13.0 La Casa Mocha L2517907 P 43.1025966 -77.429511 2015-03-15 10:30:00 obsr1638920 S22406521 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288284265 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY New York US-NY-061 30.0 Bleecker Playground L3238741 H 40.7363767 -74.0055963 2015-01-01 09:30:00 obsr2207991 S21124884 Stationary P21 EBIRD 90.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303046140 2021-04-01 11:24:19.637193 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 3 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-MON Henrietta--Boston Market, NY 252, Jefferson Rd. L5058894 P 43.0875193 -77.6121238 2015-03-13 12:20:00 obsr606693 S22344276 Traveling P22 EBIRD 7.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317102077 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-08 06:50:00 obsr2797341 S23300953 Stationary P21 EBIRD 25.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321723599 2021-03-24 21:01:50.671145 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Nassau US-NY-059 30.0 Lynbrook L3091077 P 40.6511413 -73.6801529 2015-05-21 13:45:00 obsr358492 S23562762 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312794214 2021-03-19 16:44:35.607263 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-04-25 07:30:00 obsr1534851 S23047785 Traveling P22 EBIRD 210.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315323086 2021-03-19 16:25:42.617988 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Essex US-NY-031 13.0 Noblewood Park L191517 H 44.3548774 -73.356574 2015-05-03 11:54:00 obsr822321 S23200149 Traveling P22 EBIRD 111.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301570966 2021-04-01 10:49:39.496318 20829 species avibase-B9B272F4 Common Raven Corvus corax 30 United States US New York US-NY Cayuga US-NY-011 13.0 Triangle Diner L368656 H 42.664724 -76.638903 2015-03-07 17:12:00 obsr184660 S22222720 Stationary P21 EBIRD 11.0 4.0 1 G1169252 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317401651 2021-03-26 06:29:56.44369 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 5 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-05-09 05:42:00 obsr934639 S23317868 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302826284 2021-04-01 11:15:31.646886 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 25 United States US New York US-NY Kings US-NY-047 Coney Island Beach--35th St. Overlook L1373631 H 40.5717813 -74.0006958 2015-03-13 07:00:00 obsr1189028 S22326519 Stationary P21 EBIRD 48.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315486629 2021-03-24 19:48:44.880783 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 146 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-04-27 07:23:00 obsr334398 S23208902 Traveling P22 EBIRD 86.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312494074 2015-04-24 11:21:56 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Tompkins US-NY-109 28.0 US-NY-Danby-1022–1264 Fisher Settlement Rd L3586454 P 42.298802 -76.449831 2015-04-24 06:31:00 obsr1092576 S23026822 Stationary P21 EBIRD 3.0 2.0 1 G1233735 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317739149 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 06:15:00 obsr2603801 S23337175 Traveling P22 EBIRD 225.0 4.828 3.0 1 G1259632 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303067640 2021-03-26 06:29:56.44369 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-14 14:50:00 obsr934639 S22345921 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315073337 2017-12-21 12:25:41 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 2 United States US New York US-NY Columbia US-NY-021 13.0 Olana State Historic Site L357372 H 42.2183005 -73.8287207 2015-05-02 07:59:00 obsr440908 S23186633 Traveling P22 EBIRD 303.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314004018 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-04-28 07:35:00 obsr1245041 S23122758 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290545652 2019-07-23 17:26:56 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 25 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-11 14:30:00 obsr544268 S21308204 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307232401 2021-11-09 19:57:10.476963 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Orange US-NY-071 28.0 Hatfield Ln. Goshen L3535413 P 41.3934553 -74.3364573 2015-04-03 16:40:00 obsr186871 S22664618 Incidental P20 EBIRD 4.0 0 G1202899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS354455073 2015-11-20 20:21:55 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 6 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-18 08:32:00 obsr2426588 S25925736 Traveling P22 EBIRD 24.0 0.805 2.0 0 G1472325 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318659150 2021-03-26 06:07:45.516082 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Bronx US-NY-005 US-NY_779 30.0 Van Cortlandt Park--NW Forest L188940 H 40.904835 -73.89131 2015-05-09 11:00:00 obsr1336375 S23386790 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290871203 2021-03-23 17:26:08.495143 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-01-13 09:00:00 obsr247620 S21334452 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292267671 2021-03-30 19:03:28.117389 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.3458884 -76.710341 2015-01-18 10:35:00 obsr1167884 S21445016 Traveling P22 EBIRD 25.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291166423 2021-11-09 21:05:38.512979 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Rockland US-NY-087 28.0 US-NY-GE Crotonville L3291925 P 41.199082 -73.959177 2015-01-15 16:30:00 obsr385096 S21358223 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290566432 2021-03-26 07:52:59.845315 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-11 07:25:00 obsr1000124 S21309701 Area P23 EBIRD 150.0 2.59 2.0 1 G1109827 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313187071 2018-02-01 15:11:46 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom41 L3513983 H 42.2738642 -76.461249 2015-04-26 14:08:00 obsr887540 S23071175 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309743035 2021-03-30 19:29:33.633096 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 16 United States US New York US-NY Suffolk US-NY-103 30.0 Arshamomaque Pond Preserve L140131 H 41.079361 -72.4004135 2015-04-13 13:10:00 obsr2485753 S22844049 Traveling P22 EBIRD 39.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301189702 2015-03-06 15:16:20 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP--Overlook L1796833 H 42.5385523 -76.6077244 2015-03-06 09:00:00 obsr1092576 S22192692 Stationary P21 EBIRD 6.0 2.0 1 G1168147 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313725486 2018-02-01 15:11:46 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor21 L3513963 H 42.6488131 -76.0917255 2015-04-28 07:42:00 obsr620377 S23105011 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321899147 2021-04-01 11:30:42.037277 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-21 12:00:00 obsr2706811 S23574149 Traveling P22 EBIRD 60.0 1.609 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308205344 2021-11-09 21:43:58.300436 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Ulster US-NY-111 13.0 Black Creek Preserve L2086582 H 41.8236532 -73.9574718 2015-04-07 08:10:00 obsr1136997 S22734748 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310165489 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-15 06:05:00 obsr1433400 S22873603 Traveling P22 EBIRD 150.0 5.439 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313601658 2018-08-04 17:12:33 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-27 17:09:00 obsr1764243 S23097088 Traveling P22 EBIRD 63.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313633876 2021-04-01 11:54:40.172593 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 Male, Adult (2); Female, Adult (2) United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-04-26 08:00:00 obsr666331 S23099111 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301810741 2015-03-08 17:44:57 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 11 United States US New York US-NY Tioga US-NY-107 28.0 Fisher Settlement Rd./Lake Rd. intersection L2955544 P 42.233826 -76.489159 2015-03-08 09:00:00 obsr2173269 S22242274 Stationary P21 EBIRD 5.0 2.0 1 G1170805 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290498487 2018-08-04 16:53:04 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 12 United States US New York US-NY Suffolk US-NY-103 30.0 Lake Capri L1133165 H 40.6961927 -73.3003521 2015-01-11 08:00:00 obsr547602 S21304524 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309360602 2021-03-26 06:29:56.44369 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-04-12 08:20:00 obsr934639 S22817815 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310491413 2021-04-01 11:42:15.525388 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 22 United States US New York US-NY Niagara US-NY-063 US-NY_1724 13.0 Buffalo Ave. Riverfront Overlook L789875 H 43.0737705 -78.988266 2015-04-16 12:40:00 obsr2082724 S22896143 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290716568 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 28 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Zachs Bay L610793 H 40.6014415 -73.4918618 2015-01-11 12:15:00 obsr2175245 S21322070 Stationary P21 EBIRD 60.0 6.0 1 G1107395 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315667966 2021-04-01 11:15:31.646886 32666 species avibase-5110842F Baltimore Oriole Icterus galbula N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 06:40:00 obsr2519357 S23218852 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288596771 2021-03-30 19:29:33.633096 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Suffolk US-NY-103 30.0 Ice House Pond, Montauk L1036496 H 41.051156 -71.956973 2015-01-02 09:50:00 obsr1832543 S21150699 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309787177 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-13 16:00:00 obsr2797341 S22846903 Stationary P21 EBIRD 20.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS306136818 2021-03-30 19:13:38.458673 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 18 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-28 18:35:00 obsr1598543 S22581703 Stationary P21 EBIRD 61.0 3.0 1 G1196955 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304090177 2021-03-26 06:39:43.334073 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Shakespeare Garden L1673419 H 40.7798887 -73.9697911 2015-03-11 08:59:00 obsr1548221 S22426203 Traveling P22 EBIRD 11.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308804338 2021-03-24 19:47:16.07498 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 3 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-09 06:15:00 obsr2716320 S22780503 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310284743 2015-04-15 18:33:46 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 2 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-15 07:03:00 obsr666964 S22881543 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308694140 2021-11-09 00:38:34.069905 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus 24 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-04-08 09:40:00 obsr1832377 S22772119 Traveling P22 EBIRD 90.0 0.805 2.0 1 G1212446 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292129192 2022-02-17 14:32:23.002448 6339 species avibase-8535345B Herring Gull Larus argentatus 55 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-20 11:21:00 obsr1152226 S21434389 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288949150 2021-04-01 12:31:09.823741 483 species avibase-85625D75 Mallard Anas platyrhynchos N X United States US New York US-NY Livingston US-NY-051 13.0 Home--Geneseo L2865813 P 42.8460168 -77.8164196 2015-01-02 16:30:00 obsr1513934 S21153444 Traveling P22 EBIRD 90.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318335401 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-10 14:15:00 obsr1135516 S23369092 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310872091 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 08:15:00 obsr512869 S22921553 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307006713 2020-05-16 18:13:13 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Otsego US-NY-077 28.0 Armstrong Rd. L3512044 P 42.7503527 -74.9406624 2015-04-02 16:30:00 obsr329699 S22648228 Traveling P22 EBIRD 60.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298187114 2021-03-24 20:33:47.533911 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 1 United States US New York US-NY Tompkins US-NY-109 13.0 Eastern Heights dog walk L2954455 P 42.425232 -76.456589 2015-02-18 08:06:00 obsr1318356 S21954919 Traveling P22 EBIRD 12.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322732626 2021-03-26 06:12:17.833181 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown, Southside L2023033 P 42.0758647 -79.2347717 2015-05-24 15:30:00 obsr2910282 S23623245 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289053039 2021-03-30 19:29:33.633096 447 species avibase-C235A4D7 Gadwall Mareca strepera 10 United States US New York US-NY Suffolk US-NY-103 30.0 Brightwaters Lakes L4991297 H 40.7140158 -73.2635926 2015-01-01 11:40:00 obsr564905 S21188940 Traveling P22 EBIRD 20.0 1.127 2.0 1 G1095443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322134258 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Monroe US-NY-055 13.0 Hogan Point Rd., pond and flooded field L587955 H 43.2987445 -77.7390915 2015-05-23 07:30:00 obsr1696616 S23589112 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304376163 2021-03-24 19:48:44.880783 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 19 United States US New York US-NY Monroe US-NY-055 13.0 Slater Creek (Russell Station) L140439 H 43.2691002 -77.6264038 2015-03-21 11:10:00 obsr1696616 S22448277 Traveling P22 EBIRD 59.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308761740 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-04-09 07:05:00 obsr1312694 S22777322 Traveling P22 EBIRD 125.0 1.609 9.0 1 G1212858 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310374599 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 06:50:00 obsr2303032 S22887835 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323253472 2021-03-26 07:52:59.845315 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-19 07:27:00 obsr316199 S23656329 Area P23 EBIRD 85.0 2.59 2.0 1 G1292177 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295077301 2021-03-30 19:07:52.958398 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-05 14:30:00 obsr2448957 S21689792 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322026672 2018-08-06 22:30:48 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-05-22 07:45:00 obsr2449897 S23582347 Traveling P22 EBIRD 130.0 3.46 2.0 1 G1284646 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320004910 2018-11-27 15:28:04 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-15 16:00:00 obsr1417967 S23463856 Traveling P22 EBIRD 270.0 3.219 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS319227203 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-12 08:15:00 obsr2619204 S23419930 Traveling P22 EBIRD 420.0 6.116 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317688547 2021-04-01 11:15:31.646886 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:40:00 obsr41879 S23334473 Traveling P22 EBIRD 560.0 15.771 6.0 1 G1259504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291062097 2021-04-01 11:24:19.637193 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-14 10:00:00 obsr1782363 S21349799 Stationary P21 EBIRD 60.0 2.0 1 G1111818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS798334441 2021-03-26 06:21:54.883933 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 2 United States US New York US-NY Kings US-NY-047 Floyd Bennett Field--Community Gardens L996212 H 40.5863861 -73.892777 2015-01-01 12:20:00 obsr2686964 S59266101 Traveling P22 EBIRD 85.0 0.402 2.0 1 G4460190 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314652750 2018-08-04 17:13:55 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-01 11:13:00 obsr1472872 S23162491 Traveling P22 EBIRD 160.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340107204 2021-04-26 04:57:02.963704 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 8 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-01 13:00:00 obsr294325 S24873706 Traveling P22 EBIRD 90.0 6.437 3.0 1 G1395742 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301571098 2018-08-04 16:58:58 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 8 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-03-07 15:39:00 obsr184660 S22222730 Traveling P22 EBIRD 3.0 0.322 4.0 1 G1169098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307047393 2021-03-24 20:33:47.533911 30494 species avibase-240E3390 House Sparrow Passer domesticus 60 United States US New York US-NY Tompkins US-NY-109 13.0 206 Tareyton Drive, Ithaca L141039 P 42.471756 -76.4603653 2015-04-02 13:00:00 obsr620377 S22651182 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309918728 2021-10-05 11:29:05.900573 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus N 8 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-13 16:57:00 obsr870166 S22856216 Traveling P22 EBIRD 39.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302541504 2021-04-01 12:30:15.438381 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 11 United States US New York US-NY Herkimer US-NY-043 13.0 Rt 170A - between Burrell Rd & Rt. 170. L831856 P 43.0990636 -74.8545206 2015-03-11 11:30:00 obsr1000124 S22305008 Traveling P22 EBIRD 20.0 0.966 3.0 1 G1176913 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292811459 2021-04-01 11:49:53.573686 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-01-21 07:21:00 obsr1982614 S21508472 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293907127 2021-04-01 12:32:15.282601 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-01-29 08:00:00 obsr1160328 S21595195 Area P23 EBIRD 120.0 30.3514 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314540126 2021-11-09 18:46:57.560295 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N X United States US New York US-NY Dutchess US-NY-027 13.0 Jameson Hill Road, Clinton Corners (2.4miles) L3603804 P 41.8353805 -73.7465429 2015-04-30 09:20:00 obsr2175245 S23155951 Traveling P22 EBIRD 45.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316227464 2015-05-05 19:33:36 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-05-04 23:05:00 obsr259298 S23251185 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300138245 2021-03-26 06:39:43.334073 616 species avibase-25C94A8F Greater Scaup Aythya marila N 6 United States US New York US-NY New York US-NY-061 30.0 Margaret Corbin Circle /190th St Subway L3446579 P 40.8592007 -73.9341259 2015-02-28 11:00:00 obsr1149580 S22115127 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302017251 2021-03-24 21:06:05.39641 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Onondaga US-NY-067 13.0 7474 James Street, Fayetteville, NY L269868 P 43.0374547 -76.0071565 2015-03-07 08:00:00 obsr1167884 S22257515 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303053430 2021-03-19 16:44:35.607263 456 species avibase-D201EB72 American Wigeon Mareca americana 130 United States US New York US-NY Monroe US-NY-055 13.0 Moscow Rd., Hamlin L618044 H 43.3504475 -77.9462321 2015-03-14 14:05:00 obsr334398 S22344865 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306487825 2021-03-23 16:33:05.415158 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus X United States US New York US-NY Queens US-NY-081 30.0 Kissena Park L491873 H 40.7462409 -73.8080852 2015-03-31 08:32:00 obsr2233270 S22608889 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311688252 2021-04-01 10:51:50.668112 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 N C3 N Unknown Sex, Adult (1) United States US New York US-NY Chemung US-NY-015 28.0 Grove Street Fishing Access L2759121 P 42.0830474 -76.8173933 2015-04-17 16:45:00 obsr778043 S22973457 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303256468 2018-08-27 13:52:12 26890 species avibase-94A44032 European Starling Sturnus vulgaris 70 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-15 10:40:00 obsr1696616 S22360382 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296832461 2021-03-23 16:39:03.255227 591 species avibase-1929E1E1 Canvasback Aythya valisineria 18 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-02-14 14:12:00 obsr1893950 S21834192 Traveling P22 EBIRD 16.0 0.483 2.0 1 G1145895 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323517792 2021-03-30 19:07:52.958398 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N 30 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-28 07:14:00 obsr1605975 S23674400 Traveling P22 EBIRD 117.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314730484 2021-11-09 18:46:57.75995 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Dutchess US-NY-027 14.0 HVRT-Sharon Station Road, Amenia, NY L3605212 P 41.8791272 -73.5207438 2015-04-06 07:30:00 obsr2786327 S23167084 Traveling P22 EBIRD 240.0 6.437 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312972238 2022-03-05 22:03:50.715584 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-25 15:30:00 obsr1565981 S23058352 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313248299 2022-03-05 22:03:50.715584 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-26 09:30:00 obsr1544235 S23074754 Traveling P22 EBIRD 240.0 9.656 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295755913 2021-03-26 07:53:57.664705 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 16 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-02-07 08:24:00 obsr1060479 S21741756 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313601411 2018-08-04 17:12:33 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Arshamomaque Pond Preserve L140131 H 41.079361 -72.4004135 2015-04-27 17:41:00 obsr2485753 S23097075 Traveling P22 EBIRD 30.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135318 2021-03-26 07:56:20.588749 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-28 09:00:00 obsr2218212 S23589163 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311864602 2021-03-30 19:39:10.250398 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 4 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-04-19 12:00:00 obsr1987335 S22984651 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293276793 2021-03-26 06:21:54.883933 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N X United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-01-24 09:50:00 obsr2404047 S21544826 Stationary P21 EBIRD 280.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303688021 2021-03-23 17:32:20.03109 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 4 United States US New York US-NY Onondaga US-NY-067 13.0 Pompey Estey Rd L2720155 P 42.905839 -75.9615326 2015-03-14 07:30:00 obsr2290617 S22394699 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317281397 2015-05-08 18:39:08 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-08 18:10:00 obsr991026 S23310515 Traveling P22 EBIRD 28.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294583486 2021-03-30 19:43:32.881136 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-02-01 15:30:00 obsr2196583 S21648427 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290149294 2015-01-10 10:34:20 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 4 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-01-10 08:48:00 obsr455249 S21275810 Traveling P22 EBIRD 105.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322986014 2018-08-06 22:31:09 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Madison US-NY-053 28.0 Colgate XC Ski/Bike trails L689589 P 42.8172828 -75.5305767 2015-05-25 18:24:00 obsr589593 S23638972 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313149145 2021-03-23 17:00:13.087107 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-04-26 13:15:00 obsr2673845 S23068923 Traveling P22 EBIRD 30.0 0.483 4.0 1 G1239379 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308726115 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery L2827319 P 40.6555736 -73.9938211 2015-04-09 10:05:00 obsr827632 S22774685 Traveling P22 EBIRD 150.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309563733 2015-04-12 20:44:52 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 8 United States US New York US-NY Suffolk US-NY-103 US-NY_847 30.0 Arthur H. Kunz County Park L1850341 H 40.8918194 -73.2118815 2015-04-12 09:30:00 obsr2106875 S22830717 Traveling P22 EBIRD 15.0 0.4 3.0 1 G1217075 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311666969 2018-08-04 17:11:17 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 1 United States US New York US-NY Lewis US-NY-049 13.0 Location F L1847764 P 43.936171 -75.505298 2015-04-19 12:58:00 obsr417887 S22972002 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307799635 2021-11-09 21:29:33.71224 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Ulster US-NY-111 13.0 George Freer Memorial Beach L1396692 H 41.9102459 -73.9727658 2015-04-04 15:00:00 obsr1110743 S22704728 Stationary P21 EBIRD 30.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319487389 2018-08-06 22:29:53 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Essex US-NY-031 13.0 Mt. Defiance L2814714 H 43.8313207 -73.406589 2015-05-14 07:06:00 obsr2693145 S23434830 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321906046 2021-04-01 10:45:00.916278 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 48 FL C4 FL Female, Adult (4); Male, Adult (39); Unknown Sex, Juvenile (5) United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-22 09:00:00 obsr128156 S23574575 Traveling P22 EBIRD 36.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289857095 2018-08-04 16:52:55 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Wayne US-NY-117 13.0 Pultneyville Harbor L489590 H 43.2821007 -77.1852019 2015-01-08 12:10:00 obsr2914424 S21252282 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290951198 2021-11-09 21:56:49.750103 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY Ulster US-NY-111 28.0 home L3265416 P 41.9668096 -74.2864877 2015-01-14 07:00:00 obsr595164 S21340749 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316762497 2021-03-31 04:01:10.517395 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 9 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-07 05:10:00 obsr1821546 S23281758 Traveling P22 EBIRD 29.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313672984 2021-03-24 20:33:47.533911 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 5 United States US New York US-NY Tompkins US-NY-109 28.0 Durland Preserve L446377 H 42.4379956 -76.3979816 2015-04-22 07:40:00 obsr2683910 S23101648 Traveling P22 EBIRD 59.0 1.931 2.0 1 G1240579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291998918 2021-04-01 11:24:19.637193 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 12 United States US New York US-NY Monroe US-NY-055 13.0 stakeout Yellow-headed Blackbird, Jeffords Rd., Rush (2015) L3304693 H 43.00988 -77.62134 2015-01-19 12:54:00 obsr2683910 S21424073 Stationary P21 EBIRD 64.0 2.0 1 G1116206 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351703 2021-03-26 07:07:10.758746 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 19 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-11 07:26:00 obsr1958124 S21292479 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293823092 2021-03-23 16:39:03.255227 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 14 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-01-29 09:35:00 obsr1958124 S21588505 Traveling P22 EBIRD 34.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304176805 2018-08-04 17:02:03 6339 species avibase-8535345B Herring Gull Larus argentatus 100 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-03-20 08:32:00 obsr1092576 S22432897 Stationary P21 EBIRD 17.0 2.0 1 G1185811 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288795061 2021-11-09 20:42:30.296235 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Putnam US-NY-079 28.0 US-NY-Carmel-99 W Shore Dr L3261959 P 41.369769 -73.681728 2015-01-03 11:29:00 obsr187432 S21166703 Traveling P22 EBIRD 87.0 6.437 2.0 1 G1097916 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320658423 2021-12-24 11:02:14.483178 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-17 17:29:00 obsr991026 S23498228 Traveling P22 EBIRD 65.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311400496 2021-11-09 20:12:16.773384 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-04-19 10:15:00 obsr1912104 S22954032 Stationary P21 EBIRD 460.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319466312 2021-03-26 07:52:59.845315 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-12 07:00:00 obsr316199 S23433411 Area P23 EBIRD 78.0 2.59 2.0 1 G1270076 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308978623 2021-04-01 12:24:14.132004 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Washington US-NY-115 13.0 Champlain Canal--Lock 7, Fort Edward, NY L2435803 P 43.2573151 -73.5823649 2015-04-10 11:05:00 obsr1222746 S22792856 Traveling P22 EBIRD 32.0 0.579 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326781366 2021-11-09 21:44:27.635828 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 1 United States US New York US-NY Ulster US-NY-111 US-NY_1728 28.0 Minnewaska SP--Peter's Kill L2097884 P 41.7386686 -74.2188638 2015-04-30 14:15:00 obsr1303376 S23900584 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298711587 2021-03-26 07:46:10.228013 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Yates US-NY-123 13.0 Seneca Lake, Glenora Falls and Spit L463248 H 42.4907071 -76.9120216 2015-02-21 08:52:00 obsr2871406 S22000777 Traveling P22 EBIRD 23.0 2.092 2.0 1 G1154692 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315467290 2021-03-26 07:20:31.408164 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-04-29 07:00:00 obsr1592950 S23207787 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289088674 2019-07-23 17:26:42 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 5 United States US New York US-NY Suffolk US-NY-103 New London to Orient Point Ferry (NY water) L1373227 P 41.2342763 -72.171365 2015-01-03 08:43:00 obsr1407768 S21191915 Traveling P22 EBIRD 123.0 22.531 9.0 1 G1095674 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300249528 2021-04-01 11:42:50.317679 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 11 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-02-21 08:30:00 obsr2892286 S22124028 Stationary P21 EBIRD 135.0 2.0 1 G1163377 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296289028 2021-04-01 11:30:42.037277 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus N 1 United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-02-12 13:15:00 obsr968874 S21784281 Traveling P22 EBIRD 30.0 1.127 14.0 1 G1143887 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309817855 2021-03-22 08:58:29.008072 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-04-12 13:22:00 obsr1548221 S22849118 Traveling P22 EBIRD 43.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324438155 2021-03-23 17:26:08.495143 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Nassau US-NY-059 30.0 Sands Point Preserve L293460 H 40.8591053 -73.6970283 2015-05-31 14:00:00 obsr676630 S23736280 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306215554 2015-03-30 00:16:54 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-03-29 16:00:00 obsr516108 S22587770 Traveling P22 EBIRD 120.0 0.483 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310920969 2015-04-18 13:29:10 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Chenango US-NY-017 28.0 535 Moran Rd, Oxford L2650908 P 42.3464446 -75.6593978 2015-04-17 07:00:00 obsr1303581 S22924483 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305875545 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY New York US-NY-061 30.0 Highbridge Park--N of Alexander Hamilton Bridge L2741557 H 40.8528936 -73.926117 2015-03-27 16:00:00 obsr1706920 S22562317 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292913689 2015-01-24 13:15:24 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 15 United States US New York US-NY Yates US-NY-123 13.0 US-NY-Dundee-1008 E Lake Rd L3313714 P 42.521652 -77.101496 2015-01-24 12:01:00 obsr1092576 S21516651 Traveling P22 EBIRD 20.0 2.414 2.0 1 G1121001 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313191342 2021-03-30 19:29:33.633096 6201 species avibase-64F4DD81 Razorbill Alca torda 3 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Narrow River Rd., Orient L2656239 H 41.1403084 -72.2839192 2015-04-26 11:50:00 obsr2528068 S23071449 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302772376 2021-03-30 19:06:31.183757 681 species avibase-407E2CA8 Common Merganser Mergus merganser 10 United States US New York US-NY Erie US-NY-029 13.0 Green Lake L3480196 P 42.7577671 -78.7494123 2015-03-10 16:00:00 obsr2246681 S22323288 Stationary P21 EBIRD_VINS 20.0 3.0 1 G1177463 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290959367 2021-11-09 18:33:57.599353 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Dutchess US-NY-027 28.0 Depot Hill / Grape Hollow L2506710 P 41.55377 -73.6826 2015-01-01 08:30:00 obsr2343626 S21341465 Traveling P22 EBIRD 60.0 4.828 2.0 1 G1108974 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308610645 2021-04-01 12:18:57.910168 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-04-09 07:33:00 obsr2211210 S22765452 Traveling P22 EBIRD 51.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305065989 2021-03-23 16:52:36.900075 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--Golf Course L507417 H 40.6235296 -73.2860184 2015-03-24 12:29:00 obsr1228860 S22500391 Traveling P22 EBIRD 39.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321672952 2021-03-23 17:18:00.959502 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-21 09:03:00 obsr1201479 S23559774 Traveling P22 EBIRD 82.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310920992 2015-04-18 13:29:10 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Chenango US-NY-017 28.0 535 Moran Rd, Oxford L2650908 P 42.3464446 -75.6593978 2015-04-17 07:00:00 obsr1303581 S22924483 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320784635 2021-03-26 07:52:59.845315 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 3 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-17 07:45:00 obsr316199 S23505108 Area P23 EBIRD 155.0 2.59 2.0 1 G1276526 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304846687 2021-03-31 04:02:10.428248 592 species avibase-3072CC16 Redhead Aythya americana N 3 United States US New York US-NY Niagara US-NY-063 13.0 Dickersonville Rd L2189792 P 43.2699562 -78.9381409 2015-02-04 15:50:00 obsr970333 S22482636 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303229565 2021-03-24 20:33:47.533911 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-03-15 09:00:00 obsr59643 S22358325 Traveling P22 EBIRD 95.0 1.207 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961238 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.5944991 -73.8148373 2015-01-19 10:20:00 obsr2855945 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319046839 2021-04-01 11:30:42.037277 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-12 16:13:00 obsr904434 S23409650 Traveling P22 EBIRD 92.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294547878 2021-03-24 19:28:50.176616 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Columbia US-NY-021 13.0 Schneider Homestead L488567 P 42.3583536 -73.7352562 2015-02-02 09:00:00 obsr440908 S21645643 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295529315 2018-08-04 16:55:53 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 50 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Aurora-1849 Honoco Rd L3346401 P 42.709315 -76.702003 2015-02-08 09:42:00 obsr2871406 S21724504 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1138935 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312757793 2021-03-30 19:29:33.633096 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-25 08:40:00 obsr2406624 S23045694 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313087450 2021-03-26 07:16:36.956617 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 20 United States US New York US-NY Schenectady US-NY-093 13.0 Neighborhood Bridge L3300472 P 42.8978216 -73.9362824 2015-04-26 10:15:00 obsr739254 S23065412 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300596634 2015-03-02 20:13:37 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 14 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-02 08:30:00 obsr1000124 S22149098 Area P23 EBIRD 60.0 2.59 2.0 1 G1165183 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316398262 2021-04-01 10:47:08.851048 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Broome US-NY-007 28.0 from my yard L2624869 P 42.1113056 -75.9594167 2015-05-05 16:07:00 obsr2001289 S23260586 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306488134 2018-02-10 19:39:12 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 United States US New York US-NY Suffolk US-NY-103 30.0 Poxabogue County Park & Pond L1854326 H 40.9458512 -72.2865675 2015-03-29 19:00:00 obsr1460516 S22590168 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312804473 2021-03-23 17:00:13.087107 681 species avibase-407E2CA8 Common Merganser Mergus merganser 20 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-04-25 10:35:00 obsr246591 S23048600 Stationary P21 EBIRD 15.0 2.0 1 G1235067 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306543142 2021-03-26 07:20:31.408164 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 5 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-03-31 06:35:00 obsr1987335 S22613042 Traveling P22 EBIRD 55.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306988113 2021-03-19 16:44:35.607263 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-04-02 09:45:00 obsr983655 S22646498 Stationary P21 EBIRD 240.0 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312863227 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-04-25 06:30:00 obsr1135516 S23051855 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302926756 2021-11-09 19:21:07.406501 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-03-12 10:15:00 obsr671490 S22334462 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206348 2018-08-04 16:53:01 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-10 12:15:00 obsr545221 S21280639 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311930485 2021-03-30 19:07:52.958398 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 15:00:00 obsr327318 S22989025 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314108806 2021-04-01 11:30:42.037277 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 08:00:00 obsr2319444 S23129015 Traveling P22 EBIRD 240.0 3.219 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298731831 2021-03-23 16:52:36.900075 6339 species avibase-8535345B Herring Gull Larus argentatus 7 United States US New York US-NY Suffolk US-NY-103 30.0 North Fork Preserve L1421657 H 40.97294 -72.6178146 2015-02-21 10:33:00 obsr2485753 S22002460 Traveling P22 EBIRD 40.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310771474 2021-05-10 13:22:42.125601 483 species avibase-85625D75 Mallard Anas platyrhynchos N 7 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--DIL Woods & Mohawk Rd. L99395 H 42.4959541 -76.4513443 2015-04-17 19:55:00 obsr71667 S22914958 Stationary P21 EBIRD 30.0 5.0 1 G1223458 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324683731 2015-06-02 18:08:36 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 1 S C2 S United States US New York US-NY Hamilton US-NY-041 US-NY_864 14.0 Inlet, Moose River Road L3690938 P 43.71709 -74.75607 2015-05-30 20:40:00 obsr2937317 S23753400 Traveling P22 EBIRD 20.0 7.564 3.0 1 G1300400 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293780360 2021-11-09 18:19:29.578852 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Dutchess US-NY-027 13.0 LaGrangeville L1403403 P 41.6293956 -73.7753336 2015-01-28 13:20:00 obsr2228257 S21584963 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290730075 2017-06-26 06:13:35 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 13.0 Ballantyne Rd., Chili L4751844 H 43.0758855 -77.7313791 2015-01-12 11:19:00 obsr745890 S21323162 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297502294 2021-03-26 08:14:57.071052 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla N 6 United States US New York US-NY Westchester US-NY-119 30.0 8a croton dam road, ossining L3383891 P 41.175553 -73.8607407 2015-02-14 09:00:00 obsr1138087 S21893732 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307682802 2021-09-29 04:58:21.533581 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 4 United States US New York US-NY New York US-NY-061 Governors Island (open year-round) L555894 H 40.6885372 -74.0189759 2015-04-05 10:45:00 obsr259298 S22696418 Traveling P22 EBIRD 5.0 0.257 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288257816 2015-04-18 14:38:33 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 750 United States US New York US-NY Ontario US-NY-069 13.0 Shackleton Pond (Elam quarry), West Bloomfield L1021221 H 42.904388 -77.4932671 2015-01-01 17:12:00 obsr991026 S21122462 Stationary P21 EBIRD 5.0 2.0 1 G1088626 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306943458 2021-04-01 12:24:45.865424 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-02 09:43:00 obsr943683 S22643172 Stationary P21 EBIRD 341.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871163 2021-03-26 07:56:20.588749 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-15 16:00:00 obsr2218212 S21672033 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985522 2021-03-26 07:07:10.758746 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 16 United States US New York US-NY Richmond US-NY-085 30.0 Stately Richman Manor L2489256 P 40.6333994 -74.104638 2015-01-24 08:45:00 obsr2904420 S21521944 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290199940 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-10 08:30:00 obsr1711339 S21280066 Traveling P22 EBIRD 300.0 4.828 3.0 1 G1103277 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308007306 2018-08-04 17:05:38 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 20 United States US New York US-NY Oswego US-NY-075 Oswego Harbor L247908 H 43.4658286 -76.5149873 2015-04-05 15:00:00 obsr2269231 S22719647 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313188206 2021-03-30 19:29:33.633096 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 12 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-26 08:37:00 obsr1848026 S23071258 Traveling P22 EBIRD 275.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292951977 2021-03-26 06:55:00.227271 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 2 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-01-24 obsr1338126 S21519510 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294364564 2021-04-01 12:32:15.282601 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-01 07:30:00 obsr547602 S21631072 Traveling P22 EBIRD 240.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310683726 2021-03-26 07:46:52.994574 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-17 11:35:00 obsr481595 S22908964 Traveling P22 EBIRD 130.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302844343 2021-03-26 06:29:56.44369 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-13 11:09:00 obsr334398 S22327950 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296389409 2015-02-15 09:32:49 26109 species avibase-BAC33609 Brown Creeper Certhia americana 3050 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-13 08:42:00 obsr1318356 S21793910 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295755267 2021-11-09 21:56:49.750103 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 9 United States US New York US-NY Ulster US-NY-111 28.0 home L3265416 P 41.9668096 -74.2864877 2015-02-08 09:30:00 obsr595164 S21741704 Historical P62 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304758806 2021-03-19 16:19:20.977326 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-03-22 09:55:00 obsr1079517 S22476390 Area P23 EBIRD 35.0 48.5623 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317727004 2021-04-01 11:15:31.646886 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:40:00 obsr2519357 S23336511 Traveling P22 EBIRD 560.0 15.771 6.0 1 G1259504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315384233 2021-03-19 16:02:45.308962 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Broome US-NY-007 28.0 Monkey Run Road L2237953 P 42.2195386 -75.756496 2015-05-03 09:08:00 obsr1044068 S23203341 Traveling P22 EBIRD 30.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322093017 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-22 08:00:00 obsr423515 S23586440 Traveling P22 EBIRD 225.0 4.828 7.0 1 G1284770 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307551873 2021-03-24 20:04:09.481678 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-04-04 08:30:00 obsr2812831 S22687389 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309851610 2015-04-13 20:46:50 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Essex US-NY-031 14.0 Corner of Bull Rock and Shattuck L3026671 P 43.815311 -73.498596 2015-04-13 19:57:00 obsr2693145 S22851375 Traveling P22 EBIRD 41.0 0.805 2.0 1 G1218790 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313166248 2021-03-30 19:22:51.561415 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Queens US-NY-081 30.0 Ridgewood Reservoir L393007 H 40.688969 -73.8863182 2015-04-26 08:30:00 obsr2908667 S23069944 Traveling P22 EBIRD 195.0 3.219 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301631354 2021-03-23 17:00:13.087107 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-08 09:45:00 obsr2255296 S22227304 Stationary P21 EBIRD 45.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310349261 2019-07-23 17:28:19 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 19 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr155915 S22886039 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313670751 2021-04-01 11:49:53.573686 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N X United States US New York US-NY Queens US-NY-081 30.0 Ridgewood Reservoir L393007 H 40.688969 -73.8863182 2015-04-26 08:40:00 obsr2908667 S23101508 Traveling P22 EBIRD 270.0 4.828 8.0 1 G1238523 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298821604 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis N 42 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-21 13:55:00 obsr1488063 S22009887 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317093331 2018-08-06 22:29:10 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Hamilton US-NY-041 14.0 Oxbow Road L3484590 P 43.4488874 -74.4700098 2015-05-08 06:40:00 obsr1735540 S23300479 Traveling P22 EBIRD 20.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290541088 2021-03-26 07:20:31.408164 32952 species avibase-DB20CB6B Cape May Warbler Setophaga tigrina 1 United States US New York US-NY Suffolk US-NY-103 30.0 Private Yard L3286431 P 40.9587845 -73.0175909 2015-01-11 15:03:00 obsr916033 S21307844 Stationary P21 EBIRD 160.0 4.0 1 G1106074 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307489934 2021-03-19 16:08:39.161312 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Road L3492876 P 42.4352574 -79.3776771 2015-04-04 10:15:00 obsr479109 S22683079 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315678113 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 06:50:00 obsr41879 S23219417 Traveling P22 EBIRD 130.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317140503 2021-04-01 12:32:15.282601 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-05-02 11:00:00 obsr1137265 S23302910 Traveling P22 EBIRD 60.0 4.828 2.0 1 G1257272 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301398328 2021-03-24 20:33:47.533911 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Ecology House L550854 H 42.4584285 -76.4832383 2015-03-07 13:45:00 obsr2820047 S22210256 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314617496 2021-03-26 06:29:56.44369 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 14 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-01 08:42:00 obsr2919757 S23160581 Traveling P22 EBIRD 69.0 0.322 2.0 1 G1245623 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295958000 2021-03-26 06:29:56.44369 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 8 United States US New York US-NY Monroe US-NY-055 13.0 Buck Pond Area L3351454 P 43.2711905 -77.6775429 2015-02-10 11:30:00 obsr199444 S21758033 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322506032 2021-03-19 16:12:42.877422 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Columbia US-NY-021 13.0 3075 Upper Main St Valatie NY L1620378 P 42.4126309 -73.671052 2015-05-24 12:00:00 obsr2766625 S23609881 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320685468 2021-03-19 16:10:30.527219 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-05-17 18:30:00 obsr967916 S23499675 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319076818 2018-08-04 17:12:09 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-25 10:15:00 obsr1987335 S23411452 Traveling P22 EBIRD 99.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322568052 2021-04-01 11:15:31.646886 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 11:48:00 obsr152435 S23613325 Traveling P22 EBIRD 292.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297701276 2015-02-16 17:27:04 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Schuyler US-NY-097 13.0 Hector, NY L3387733 P 42.5028492 -76.8335724 2015-02-14 10:10:00 obsr2582156 S21912243 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315266293 2021-04-01 11:30:42.037277 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:05:00 obsr2105033 S23197399 Traveling P22 EBIRD 245.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309934846 2021-04-01 12:14:19.266649 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-14 07:15:00 obsr544268 S22857430 Rusty Blackbird Spring Migration Blitz P41 EBIRD 75.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289653133 2021-03-24 20:33:47.533911 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 Male, Adult (1) United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-01-07 07:55:00 obsr2377251 S21236514 Stationary P21 EBIRD 20.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS297492522 2021-11-09 20:39:09.52574 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Putnam US-NY-079 30.0 Schwartz House L1422495 P 41.3723712 -73.5892736 2015-02-14 07:42:00 obsr1297121 S21892782 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300104212 2021-11-09 21:23:47.89824 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 26 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-28 08:45:00 obsr1135516 S22112350 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320202863 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-05-16 07:26:00 obsr2270510 S23474383 Traveling P22 EBIRD 35.0 0.322 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304560339 2021-03-26 07:07:10.758746 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-03-22 07:07:00 obsr1958124 S22461846 Traveling P22 EBIRD 7.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303301959 2016-12-16 18:07:24 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-03-15 12:34:00 obsr2270510 S22363883 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319169749 2021-03-26 06:21:54.883933 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Kings US-NY-047 Owls Head Park L304833 H 40.6403687 -74.0322153 2015-05-12 08:00:00 obsr2448957 S23416467 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299256511 2021-03-23 17:23:45.772216 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3435250 P 42.693501 -77.711644 2015-02-23 17:00:00 obsr682121 S22046690 Stationary P21 EBIRD 56.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312286533 2021-03-26 06:14:19.776945 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Columbia US-NY-021 13.0 Columbia-Greene Community College L2429955 P 42.2165679 -73.8188553 2015-04-23 08:30:00 obsr481595 S23012651 Traveling P22 EBIRD 120.0 1.609 17.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294915932 2021-11-20 09:30:27.481745 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 8 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake, end of Creekwalk L1331492 H 43.0680178 -76.1778662 2015-01-17 12:34:00 obsr2787912 S21675291 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310526881 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-04-16 12:30:00 obsr1962295 S22898702 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1222825 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322724275 2021-04-01 12:26:53.827486 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-24 13:45:00 obsr777630 S23617454 Stationary P21 EBIRD 135.0 3.0 1 G1288067 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307786277 2021-11-09 21:57:39.739056 279 species avibase-3E04020B Brant Branta bernicla 7 United States US New York US-NY Ulster US-NY-111 13.0 black creek preserve L3541148 P 41.8208606 -73.9587005 2015-04-05 08:50:00 obsr187701 S22703854 Traveling P22 EBIRD 60.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288957045 2021-03-23 17:18:00.959502 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 5 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-01-04 08:18:00 obsr1154 S21181410 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS427911050 2021-03-19 16:19:20.977326 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Times Beach Nature Preserve L811486 H 42.8742747 -78.8825647 2015-05-14 07:30:00 obsr318741 S31438720 Traveling P22 EBIRD 90.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321930588 2021-11-09 18:42:19.628792 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-22 08:47:00 obsr1442681 S23575904 Traveling P22 EBIRD 144.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291042823 2021-03-26 07:20:31.408164 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 13 United States US New York US-NY Suffolk US-NY-103 30.0 Suffolk County Farm & Education Center L3140486 P 40.8253386 -72.9192209 2015-01-14 14:34:00 obsr1107696 S21348251 Traveling P22 EBIRD 48.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299397629 2020-02-18 11:48:40 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Forge River L2636000 P 40.7977194 -72.8315127 2015-02-22 15:00:00 obsr1592950 S22056935 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300046859 2021-03-23 16:39:03.255227 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-02-28 07:35:00 obsr1958124 S22107208 Traveling P22 EBIRD 2.0 0.322 2.0 1 G1161960 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317533242 2018-04-12 14:44:00 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-09 09:15:00 obsr1830659 S23325745 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306031044 2021-11-09 18:34:57.804398 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 2 United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-03-29 07:30:00 obsr1264675 S22573672 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307228310 2021-03-31 04:06:57.023771 341 species avibase-B86C504C Trumpeter Swan Cygnus buccinator 2 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-03 15:03:00 obsr1721609 S22664327 Traveling P22 EBIRD 23.0 0.805 3.0 1 G1203141 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295399600 2021-12-10 08:21:29.396662 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 6 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-07 11:00:00 obsr258431 S21713991 Traveling P22 EBIRD 240.0 0.805 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308244224 2021-03-26 08:14:57.071052 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-04-06 13:00:00 obsr258431 S22737886 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303680805 2019-07-23 17:28:01 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-17 08:50:00 obsr628301 S22394224 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312292929 2021-03-23 16:21:52.613913 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Ontario US-NY-069 13.0 **US-NY-ONT Manchester--CR 19 X Freshour Rd., Shortsville [Clifton Springs_CW] L1111756 P 42.953046 -77.2107983 2015-04-23 10:57:00 obsr606693 S23013029 Traveling P22 EBIRD 9.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315212881 2021-03-26 08:14:57.071052 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Westchester US-NY-119 30.0 My Yard L1499494 P 41.1798224 -73.6109444 2015-04-12 07:15:00 obsr1276920 S23194581 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288332155 2021-03-30 19:07:52.958398 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-01-01 08:45:00 obsr2848443 S21128971 Traveling P22 EBIRD 45.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288647 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Nassau US-NY-059 30.0 Whitney Pond Park L1412003 H 40.7848952 -73.7037661 2015-01-31 14:00:00 obsr676630 S21625081 Traveling P22 EBIRD 60.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295601186 2021-03-26 07:30:35.289997 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-08 13:08:00 obsr1655171 S21730013 Traveling P22 EBIRD 42.0 0.483 2.0 1 G1139917 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308506474 2021-01-12 19:50:23.677101 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 Male, Adult (2); Female, Adult (2) United States US New York US-NY Warren US-NY-113 14.0 Warren County Bikeway--Ash Dr, Queensbury, NY L2588444 P 43.356634 -73.6842245 2015-04-08 11:45:00 obsr1222746 S22757718 Traveling P22 EBIRD 56.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317516055 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 2 United States US New York US-NY New York US-NY-061 30.0 US-NY-New York-944 1st Ave L3625344 P 40.755046 -73.965254 2015-05-09 12:06:00 obsr259298 S23325019 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291973023 2021-03-30 19:29:33.633096 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 25 United States US New York US-NY Suffolk US-NY-103 30.0 Patchogue Lake L852362 H 40.7684842 -73.0212522 2015-01-19 07:45:00 obsr1327990 S21422017 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305745463 2021-03-23 16:45:39.358281 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-415-609 NY-11C L3505304 P 44.784185 -74.803031 2015-03-28 07:59:00 obsr2211750 S22552920 Stationary P21 EBIRD 85.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302688909 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-12 13:15:00 obsr1312760 S22316187 Traveling P22 EBIRD 105.0 0.805 14.0 1 G1176950 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309488573 2021-04-01 11:24:19.637193 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush Henrietta Athletic Association (RHAA) ballfields L3457667 H 43.0335528 -77.6629158 2015-04-12 16:40:00 obsr934639 S22825583 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305787879 2021-03-26 07:56:20.588749 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 20 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-26 14:00:00 obsr271871 S22555918 Traveling P22 EBIRD 60.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292524783 2021-03-30 19:43:32.881136 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 40 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-01-21 14:00:00 obsr114791 S21485819 Traveling P22 EBIRD 40.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305293677 2021-11-09 20:39:07.176487 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Putnam US-NY-079 28.0 West Branch Reservoir, NW corner L1354728 H 41.4379397 -73.724414 2015-03-25 11:25:00 obsr979921 S22517878 Traveling P22 EBIRD 3.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306485490 2015-03-31 10:02:16 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-03-30 13:10:00 obsr2233270 S22608722 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291702658 2021-04-01 12:26:28.140316 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 1 United States US New York US-NY Yates US-NY-123 13.0 West Swamp Road L2748619 P 42.6424112 -77.2428131 2015-01-18 10:30:00 obsr1602357 S21400922 Traveling P22 EBIRD 64.0 9.656 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303497927 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 17 United States US New York US-NY Kings US-NY-047 The Narrows (Brooklyn) L1918391 H 40.6218575 -74.0503407 2015-03-16 11:23:00 obsr869873 S22380240 Traveling P22 EBIRD 45.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307103029 2015-09-22 15:33:45 32973 species avibase-10C601D3 Bay-breasted Warbler Setophaga castanea 2 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF--Reed Marsh L1349275 H 40.5177631 -74.2204088 2015-04-03 08:10:00 obsr1958124 S22655367 Traveling P22 EBIRD 11.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312772252 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Washington Park (Albany Co.) L1657899 H 42.6560581 -73.7657327 2015-04-25 08:00:00 obsr2512689 S23046553 Traveling P22 EBIRD 135.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310551730 2021-03-24 19:47:16.07498 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 3 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-16 06:15:00 obsr2716320 S22900400 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302549745 2021-03-23 17:26:08.495143 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N X United States US New York US-NY Nassau US-NY-059 30.0 US-NY-Syosset-15-27 School House Ln L3463737 P 40.832926 -73.501903 2015-03-11 19:00:00 obsr2416285 S22305750 Stationary P21 EBIRD 10.0 1.0 1 G1175653 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319932560 2018-08-06 22:29:27 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor3 L3513944 H 42.6877445 -75.901219 2015-05-09 10:17:00 obsr2535282 S23459886 Stationary P21 EBIRD 27.0 2.0 1 G1272246 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321091987 2021-03-19 16:10:30.527219 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 4 United States US New York US-NY Chemung US-NY-015 28.0 Harris Hill Park--Overlook L1760279 H 42.123902 -76.904434 2015-05-18 08:27:00 obsr1334267 S23523868 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321659952 2018-08-04 17:28:18 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-05-21 08:43:00 obsr2588479 S23558937 Traveling P22 EBIRD 28.0 1.931 2.0 1 G1281509 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288703994 2021-05-10 13:22:42.125601 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 10 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--DIL Woods & Mohawk Rd. L99395 H 42.4959541 -76.4513443 2015-01-03 11:00:00 obsr59643 S21159312 Incidental P20 EBIRD 2.0 1 G1095974 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305146425 2021-03-26 07:56:20.588749 636 species avibase-B77377EE Common Eider Somateria mollissima 4 United States US New York US-NY Nassau US-NY-059 oceanside preserve L1472478 P 40.6230202 -73.6179777 2015-03-24 10:30:00 obsr1494607 S22506548 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310225365 2018-08-04 17:09:17 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Suffolk US-NY-103 30.0 Lakeland County Park L2680286 H 40.8044899 -73.1562702 2015-04-15 13:03:00 obsr1987335 S22877505 Rusty Blackbird Spring Migration Blitz P41 EBIRD 19.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307401271 2021-11-15 03:06:58.889978 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-04 08:40:00 obsr2797341 S22677064 Traveling P22 EBIRD 150.0 0.805 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320352099 2021-08-17 17:05:10.395367 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Essex US-NY-031 14.0 Corner of Bull Rock and Shattuck L3026671 P 43.815311 -73.498596 2015-05-16 20:05:00 obsr2420101 S23481949 Traveling P22 EBIRD 70.0 0.966 4.0 1 G1274035 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301589957 2021-04-01 11:15:31.646886 8857 species avibase-26BA25EF Northern Saw-whet Owl Aegolius acadicus 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-07 10:30:00 obsr1659461 S22224241 Traveling P22 EBIRD 30.0 1.609 2.0 1 G1169858 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312244512 2021-03-19 16:14:11.035882 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor25 L3513967 H 42.4531944 -76.1188705 2015-04-23 07:32:00 obsr1092576 S23010006 Stationary P21 EBIRD 5.0 2.0 1 G1232706 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319359837 2021-03-19 16:44:35.607263 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-13 16:32:00 obsr749440 S23427188 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298270866 2021-11-09 19:42:30.164461 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Orange US-NY-071 28.0 Home L1977472 P 41.2531655 -74.3198544 2015-02-13 07:10:00 obsr769408 S21962297 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302859492 2021-03-30 19:29:33.633096 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 1 Male, Adult (1) United States US New York US-NY Suffolk US-NY-103 US-NY_847 30.0 Blydenburgh Park L524406 H 40.8353508 -73.220264 2015-03-10 13:30:00 obsr2852365 S22329117 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313375129 2018-08-04 17:12:06 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tioga US-NY-107 28.0 Brick Pond Wetland Preserve L1005329 H 42.1067239 -76.2456751 2015-04-25 08:30:00 obsr1712268 S23082559 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310460283 2021-03-30 19:22:51.561415 303 species avibase-B59E1863 Canada Goose Branta canadensis 250 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr1092576 S22893605 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311018524 2021-03-26 07:46:52.994574 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 7 United States US New York US-NY Albany US-NY-001 13.0 Stanton Pond L273495 H 42.5094164 -73.9012973 2015-04-18 11:50:00 obsr2855945 S22930629 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761492 2021-03-26 07:56:20.588749 33061 species avibase-E36325FA Prairie Warbler Setophaga discolor 15 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-14 09:00:00 obsr2218212 S22629524 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288484974 2016-01-01 16:35:16 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1500 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-02 11:25:00 obsr1097423 S21141242 Traveling P22 EBIRD 95.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308731838 2021-04-01 11:47:43.260314 27616 species avibase-D77E4B41 American Robin Turdus migratorius 125 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-09 09:30:00 obsr1633923 S22775132 Stationary P21 EBIRD 540.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS313621340 2021-03-19 16:14:11.035882 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Cortland US-NY-023 28.0 Cornell Lane, Harford L508623 H 42.4382173 -76.2464476 2015-04-23 08:19:00 obsr1828453 S23098266 Traveling P22 EBIRD 3.0 0.322 2.0 0 G1232700 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323319376 2018-08-04 17:30:28 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Tonawanda WMA--Meadville Marsh L899745 H 43.1208458 -78.4629822 2015-05-27 10:18:00 obsr2588479 S23660910 Traveling P22 EBIRD 38.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300425276 2021-03-30 19:43:32.881136 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 10 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-03-01 15:30:00 obsr114791 S22136769 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317279007 2021-11-09 18:47:19.701986 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L3622901 P 41.730483 -73.879897 2015-05-07 14:00:00 obsr322870 S23310368 Traveling P22 EBIRD 60.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307676754 2021-03-19 16:32:34.732091 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 08:16:00 obsr2692140 S22696014 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309720025 2021-03-30 19:07:52.958398 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 20 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-13 08:13:00 obsr1605975 S22841669 Traveling P22 EBIRD 242.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322488522 2022-01-20 09:38:40.245267 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) X United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-17 07:00:00 obsr1565981 S23608927 Traveling P22 EBIRD 260.0 4.828 15.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320944073 2021-03-30 19:13:38.458673 622 species avibase-50566E50 Lesser Scaup Aythya affinis 15 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 10:05:00 obsr1962295 S23514560 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316578106 2021-11-09 21:57:47.849558 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Ulster US-NY-111 US-NY_854 28.0 Frost Valley YMCA 2000 Frost Valley Road, Claryville, NY 12725, L3572205 P 41.9892074 -74.505634 2015-04-27 07:00:00 obsr1707088 S23271226 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322817570 2021-11-09 18:47:56.955842 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Dutchess US-NY-027 13.0 Dutchess Rail Trail - veterans mile L3671585 P 41.6209606 -73.8500977 2015-05-25 11:15:00 obsr2103727 S23628317 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313881325 2015-04-28 19:12:10 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Erie US-NY-029 13.0 Alden - Crittenden Rd. L586154 P 42.9165364 -78.4935379 2015-04-28 16:15:00 obsr2871264 S23115014 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308756933 2021-03-26 07:30:35.289997 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-09 07:37:00 obsr2683910 S22776969 Traveling P22 EBIRD 70.0 0.644 2.0 1 G1212827 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296950442 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-14 13:40:00 obsr454647 S21844431 Traveling P22 EBIRD 80.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311220847 2017-02-07 18:30:45 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Ontario US-NY-069 US-NY_835 13.0 Hemlock-Canadice SF (Ontario Co.) L123103 H 42.7396135 -77.5974816 2015-04-19 10:15:00 obsr983655 S22942977 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308556938 2021-04-01 11:24:19.637193 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--South Marina L458871 H 43.3060838 -77.7083373 2015-04-08 12:37:00 obsr2270510 S22761572 Traveling P22 EBIRD 13.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290803396 2015-01-13 08:50:52 7261 species avibase-86D45B8F Green Heron Butorides virescens 11 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-01-10 10:00:00 obsr1349676 S21328372 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301548787 2021-04-01 12:26:53.827486 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 40 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-07 15:34:00 obsr2270510 S22221109 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310704296 2016-10-11 17:00:32 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 48 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip D L3559811 P 40.162933 -73.250983 2015-04-11 10:00:00 obsr248226 S22910384 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221326 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315779376 2021-03-26 06:11:29.8335 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.3458884 -76.710341 2015-05-04 12:33:00 obsr1721609 S23224904 Traveling P22 EBIRD 101.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323511103 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 09:48:00 obsr1982614 S23673930 Traveling P22 EBIRD 180.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311107794 2021-03-24 19:23:17.886063 483 species avibase-85625D75 Mallard Anas platyrhynchos N X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-04-18 obsr1395007 S22936373 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311157303 2015-04-19 08:24:06 483 species avibase-85625D75 Mallard Anas platyrhynchos 12 United States US New York US-NY Oswego US-NY-075 13.0 Peter Scott Swamp L248391 H 43.2444498 -76.2705344 2015-04-19 08:00:00 obsr642516 S22939161 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314730560 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 10:00:00 obsr1303086 S23167090 Traveling P22 EBIRD 285.0 4.828 21.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312904722 2021-12-27 20:39:04.096623 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-04-25 10:08:00 obsr2001485 S23054232 Traveling P22 EBIRD 37.0 1.609 2.0 1 G1235527 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300199023 2015-03-01 07:39:51 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-02-28 08:00:00 obsr1349676 S22119596 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324284224 2021-11-09 17:58:40.313796 20829 species avibase-B9B272F4 Common Raven Corvus corax 7 S C2 S United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-31 14:03:00 obsr2321296 S23726162 Traveling P22 EBIRD 87.0 2.414 7.0 1 G1297819 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290361670 2021-04-01 11:24:19.637193 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 2 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-10 08:10:00 obsr2289693 S21293352 Stationary P21 EBIRD 60.0 3.0 1 G1104736 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312090305 2021-03-24 20:23:39.258075 30494 species avibase-240E3390 House Sparrow Passer domesticus 26 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--Golf Course L507417 H 40.6235296 -73.2860184 2015-04-22 07:30:00 obsr247620 S22999459 Traveling P22 EBIRD 135.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320110542 2021-03-24 19:27:13.077399 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY Chemung US-NY-015 28.0 Erin--Maple Drive L3646985 P 42.201233 -76.668685 2015-05-16 10:55:00 obsr1318356 S23469725 Traveling P22 EBIRD 11.0 0.8 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309706023 2021-03-26 08:14:57.071052 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-04-13 08:20:00 obsr258431 S22840737 Traveling P22 EBIRD 150.0 2.414 20.0 1 G1218134 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299456354 2021-04-01 12:31:09.823741 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 1 United States US New York US-NY Livingston US-NY-051 US-NY_1760 13.0 Nations Road L799182 P 42.8579487 -77.8129005 2015-02-24 10:42:00 obsr72341 S22061262 Traveling P22 EBIRD 68.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295649266 2021-03-26 07:20:31.408164 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Suffolk US-NY-103 30.0 Home L1944919 P 40.8369959 -72.8792238 2015-02-08 08:00:00 obsr1327990 S21734087 Stationary P21 EBIRD 600.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314777735 2021-03-24 20:53:39.352228 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-01 18:10:00 obsr2512689 S23170134 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318012097 2021-03-26 07:56:20.588749 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Nassau US-NY-059 US-NY_872 30.0 Muttontown Preserve L250511 H 40.8315708 -73.5416646 2015-05-10 06:00:00 obsr2823378 S23352018 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296110226 2021-03-24 20:04:09.481678 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N 4 United States US New York US-NY Oneida US-NY-065 13.0 204 Daniel Court Deerfield NY L3317293 P 43.1277995 -75.1987123 2015-02-09 08:00:00 obsr1681569 S21769817 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322527800 2021-03-24 19:48:44.880783 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-24 08:19:00 obsr745890 S23611065 Traveling P22 EBIRD 180.0 1.609 4.0 1 G1287746 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320331941 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-16 11:45:00 obsr2277801 S23480942 Historical P62 EBIRD 160.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314149095 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 09:00:00 obsr98313 S23131376 Traveling P22 EBIRD 210.0 4.828 4.0 1 G1243147 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290370657 2015-01-11 11:13:48 337 species avibase-694C127A Mute Swan Cygnus olor 6 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk-Rupert Rd L3284385 P 42.539554 -73.854804 2015-01-11 10:11:00 obsr2214649 S21294095 Traveling P22 EBIRD 4.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310089956 2021-03-31 04:02:52.909278 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Orleans US-NY-073 13.0 Posson Rd., Medina L1474052 H 43.1612053 -78.3321027 2015-04-14 19:16:00 obsr2588479 S22868394 Stationary P21 EBIRD 66.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302551149 2021-03-26 08:14:57.071052 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-03-08 16:30:00 obsr258431 S22305851 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305044157 2021-11-09 20:25:59.805509 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 11 Male, Adult (8); Female, Adult (3) United States US New York US-NY Orange US-NY-071 28.0 Laurel Grove Cemetery L760290 H 41.3619453 -74.6869469 2015-03-24 07:30:00 obsr2737993 S22498628 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295438688 2018-04-04 22:22:59 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Tioga US-NY-107 28.0 Kinney Rd., Campville L5641564 H 42.0824661 -76.1514652 2015-02-07 12:04:00 obsr1626739 S21717193 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309938262 2021-03-19 16:42:57.886401 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Lewis US-NY-049 13.0 Location H L4611970 P 43.940282 -75.401446 2015-04-14 07:43:00 obsr417887 S22857708 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320555367 2020-03-15 09:14:53 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-17 09:13:00 obsr997992 S23492654 Traveling P22 EBIRD 244.0 2.414 2.0 1 G1274998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311582509 2021-11-02 20:32:06.137153 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-04-20 12:20:00 obsr317968 S22965540 Traveling P22 EBIRD 30.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316056687 2021-09-08 04:42:53.165995 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 4 United States US New York US-NY New York US-NY-061 30.0 Sherman Creek Park and Swindler Cove L1018912 H 40.8580281 -73.921085 2015-05-05 09:00:00 obsr789409 S23240891 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293553431 2021-11-28 10:09:08.269141 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 160 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-01-23 13:36:00 obsr564905 S21567181 Traveling P22 EBIRD 177.0 6.437 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS296347755 2018-08-04 16:56:09 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek--Leon S. Kaiser Park L1312993 H 40.5806115 -73.9979002 2015-02-12 12:45:00 obsr1821546 S21790454 Traveling P22 EBIRD 34.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315825447 2021-03-19 16:44:35.607263 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Cranberry Pond Nature Trail L511533 H 43.2975732 -77.7148819 2015-05-04 10:00:00 obsr2504709 S23227274 Traveling P22 EBIRD 98.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312377004 2015-04-23 18:15:18 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-04-21 07:54:00 obsr2426404 S23018895 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300900927 2021-11-09 22:27:59.558644 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Sullivan US-NY-105 28.0 Wurtsboro L1061608 P 41.572435 -74.4754601 2015-03-04 10:30:00 obsr444155 S22171756 Traveling P22 EBIRD 40.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303828537 2017-09-09 13:14:35 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 F C1 F United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Hoyt spur powerline cut trail (0.223 km) L1368198 P 42.4797939 -76.4474848 2015-03-18 08:35:00 obsr2307843 S22405776 Traveling P22 EBIRD 5.0 0.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309406062 2021-03-19 16:14:11.035882 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Truxton-3288 E River Rd L3558055 P 42.673276 -76.059877 2015-04-12 09:53:00 obsr1318356 S22820566 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305429101 2015-03-26 19:44:35 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-03-26 08:34:00 obsr1655171 S22528506 Stationary P21 EBIRD 5.0 2.0 1 G1193441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320335357 2018-08-06 22:30:13 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Rochester, 463 Lowden Point Road L3648593 P 43.29055 -77.70975 2015-05-16 12:54:00 obsr745890 S23481124 Traveling P22 EBIRD 50.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294421242 2021-04-26 04:57:02.963704 6616 species avibase-7E022378 Common Loon Gavia immer 40 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-01 13:00:00 obsr876649 S21635605 Traveling P22 EBIRD 90.0 6.437 3.0 1 G1395742 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310394593 2021-03-30 19:22:51.561415 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 8 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr12303 S22889309 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310082611 2021-03-26 07:53:57.664705 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-04-14 16:15:00 obsr1060479 S22867874 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301950158 2019-09-10 13:56:02 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-03-08 12:39:00 obsr354239 S22252452 Stationary P21 EBIRD 16.0 11.0 1 G1170856 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310372074 2021-03-24 20:33:47.533911 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 5 United States US New York US-NY Tompkins US-NY-109 13.0 Maplewood Dr., Ithaca L1420859 P 42.46891 -76.45742 2015-04-16 06:35:00 obsr2211210 S22887635 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310300886 2021-04-01 11:15:31.646886 337 species avibase-694C127A Mute Swan Cygnus olor X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-15 18:15:00 obsr2750470 S22882623 Traveling P22 EBIRD 1.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298613313 2020-11-12 19:37:13 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 Female, Unknown Age (1); Male, Unknown Age (5) United States US New York US-NY Nassau US-NY-059 30.0 North Woodmere Park L3514361 H 40.641285 -73.7363824 2015-02-20 11:30:00 obsr1693806 S21991997 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308324381 2018-08-04 17:08:01 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 12 United States US New York US-NY Tompkins US-NY-109 28.0 Thomas Rd., south (Six Mile Creek ponds & marsh) L388439 H 42.4020377 -76.3778114 2015-04-07 17:50:00 obsr2074043 S22743591 Traveling P22 EBIRD 12.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314560942 2018-08-04 17:13:15 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 6 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-01 07:50:00 obsr1830659 S23157249 Traveling P22 EBIRD 92.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302614202 2018-08-04 16:59:44 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, German Brothers Marina L836553 H 42.836435 -77.2820914 2015-03-12 09:25:00 obsr983655 S22310867 Traveling P22 EBIRD 20.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309830673 2021-03-23 16:30:20.514143 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 10 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 10:49:00 obsr2074043 S22850019 Stationary P21 EBIRD 299.0 5.0 1 G1218628 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311026482 2021-03-26 07:56:20.588749 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-18 08:00:00 obsr1160328 S22931097 Stationary P21 EBIRD 120.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288820837 2021-03-26 07:20:31.408164 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Suffolk US-NY-103 30.0 My Backyard L1767606 P 40.9186002 -72.3766669 2015-01-03 07:13:00 obsr1864342 S21170592 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303877452 2018-08-04 17:01:53 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-18 14:30:00 obsr1958124 S22409522 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314391260 2018-08-04 17:13:11 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 3 United States US New York US-NY Suffolk US-NY-103 30.0 Terrell River County Park L523654 H 40.7921091 -72.7785873 2015-04-30 15:30:00 obsr2381457 S23146186 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315833136 2018-08-04 17:14:44 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 31 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-04 12:00:00 obsr2504709 S23227682 Traveling P22 EBIRD 180.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310876170 2021-12-03 21:50:44.732892 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-04-18 10:52:00 obsr1958124 S22921813 Traveling P22 EBIRD 9.0 0.805 3.0 1 G1224796 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296650341 2021-08-12 17:25:07.816444 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-14 08:20:00 obsr2741494 S21817422 Stationary P21 EBIRD 35.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293940524 2021-03-30 19:28:38.115458 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 10 United States US New York US-NY Seneca US-NY-099 13.0 Rt. 89 Near Varick Winery L3326592 P 42.7790349 -76.769886 2015-01-28 15:30:00 obsr528918 S21597545 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293131007 2021-03-26 06:29:56.44369 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 374 Cromwell L1952255 P 43.1326227 -77.5253892 2015-01-24 09:00:00 obsr1463039 S21533598 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300075622 2015-03-01 19:20:13 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Seneca US-NY-099 13.0 Covert, 8356 New York 89 L3445727 P 42.62253 -76.70179 2015-02-28 16:08:00 obsr2211210 S22109524 Incidental P20 EBIRD 1.0 0 G1162293 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322687615 2021-12-08 07:58:41.562209 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-24 10:00:00 obsr2054320 S23620292 Traveling P22 EBIRD 90.0 1.287 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320095537 2021-03-19 16:02:45.308962 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY Broome US-NY-007 28.0 Nuthatch Hollow Nature Preserve L199978 H 42.0810666 -75.9852703 2015-05-16 10:00:00 obsr1044068 S23469018 Traveling P22 EBIRD 18.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301238833 2021-03-30 06:01:28.020715 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 25 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-06 12:40:00 obsr2224244 S22196749 Traveling P22 EBIRD 139.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312246609 2021-11-15 03:06:58.889978 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-23 06:00:00 obsr1135516 S23010144 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289186948 2015-03-08 15:24:33 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Niagara US-NY-063 13.0 Niagara Falls SP L918348 H 43.0863978 -79.0690431 2015-01-01 10:45:00 obsr2965498 S21199472 Traveling P22 EBIRD 15.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320426536 2021-03-24 19:35:34.045988 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-05-17 06:34:00 obsr502830 S23485909 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308214292 2021-03-26 07:30:35.289997 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-07 07:47:00 obsr59643 S22735475 Traveling P22 EBIRD 60.0 0.161 2.0 1 G1209642 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310568553 2019-07-23 17:28:19 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip G L3559870 P 40.435667 -73.336683 2015-04-11 15:00:00 obsr870166 S22901498 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312277456 2021-04-01 11:30:42.037277 26278 species avibase-A381417F House Wren Troglodytes aedon X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-15 16:00:00 obsr2182516 S23012108 Traveling P22 EBIRD 120.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310735764 2021-04-01 12:35:52.669792 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 1 United States US New York US-NY Onondaga US-NY-067 13.0 Andrews Rd., feeder canal L1365459 H 43.0247612 -76.0673117 2015-04-17 17:45:00 obsr1149420 S22912558 Traveling P22 EBIRD 48.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298429182 2018-08-04 16:56:10 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY US-NY_1726 13.0 Montezuma NWR (general area) L246782 H 42.9833651 -76.7562389 2015-02-12 16:09:00 obsr138057 S21976424 Traveling P22 EBIRD_PA 45.0 16.093 3.0 1 G1146336 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309810309 2018-08-04 17:09:03 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Herkimer US-NY-043 13.0 McKoons Road pond near Smith Road L2812296 P 42.9248029 -75.0358315 2015-04-13 13:50:00 obsr1680059 S22848558 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316070998 2021-03-19 16:44:35.607263 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-05 10:23:00 obsr2933610 S23241686 Traveling P22 EBIRD 60.0 0.322 2.0 1 G1254139 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299013176 2021-04-01 12:11:50.996293 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Seneca US-NY-099 13.0 Canoga area (Martin/Seybolt/Hoster) L3446818 P 42.8619989 -76.7848206 2015-02-22 12:41:00 obsr1655171 S22025332 Traveling P22 EBIRD 49.0 9.656 3.0 1 G1156981 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309424298 2015-04-12 14:47:10 12258 species avibase-11783075 Monk Parakeet Myiopsitta monachus 2 United States US New York US-NY Richmond US-NY-085 Saw Mill Creek Marsh L833906 H 40.6081575 -74.1885844 2015-04-12 09:03:00 obsr155915 S22821613 Stationary P21 EBIRD 2.0 2.0 1 G1216226 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321930571 2021-11-09 18:42:19.628792 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-22 08:47:00 obsr1442681 S23575904 Traveling P22 EBIRD 144.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307531448 2021-04-01 11:24:19.637193 6339 species avibase-8535345B Herring Gull Larus argentatus N X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-04 16:10:00 obsr934639 S22685826 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305094907 2021-03-31 04:06:57.023771 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 30 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Red Creek Unit L1528347 H 43.3006399 -76.7825379 2015-03-24 14:54:00 obsr1721609 S22502543 Stationary P21 EBIRD 85.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304093383 2018-08-04 17:01:57 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-03-19 09:58:00 obsr1472872 S22426432 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320091461 2018-08-06 22:29:46 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area - NCAW L473419 P 43.091096 -77.3856997 2015-05-12 10:35:00 obsr2113616 S23468791 Traveling P22 EBIRD 70.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294777707 2021-03-26 07:52:40.224846 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 10 United States US New York US-NY Fulton US-NY-035 13.0 mom's place L1207546 P 42.9963298 -74.371047 2015-02-02 08:45:00 obsr2590001 S21664242 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311424807 2021-03-26 06:29:56.44369 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Monroe US-NY-055 13.0 744 Plank Rd., Penfield, NY L747676 P 43.1829034 -77.4731022 2015-04-19 15:30:00 obsr1545618 S22955500 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300939791 2021-04-01 11:47:43.260314 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 92 United States US New York US-NY Oswego US-NY-075 13.0 Oneida Lake, Brewerton L2690668 H 43.2368243 -76.1249542 2015-03-04 13:00:00 obsr979921 S22174648 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305255296 2017-04-18 11:27:41 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Kings US-NY-047 Brooklyn Army Terminal Pier 4 L2598864 H 40.646519 -74.026074 2015-03-25 14:33:00 obsr1711339 S22514934 Stationary P21 EBIRD 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319179317 2018-08-04 17:26:50 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-12 13:15:00 obsr1962295 S23416998 Traveling P22 EBIRD 60.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296311485 2021-03-26 06:29:56.44369 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-12 15:50:00 obsr934639 S21787590 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314111288 2021-11-09 21:05:07.751154 7662 species avibase-5F8E7CA8 Golden Eagle Aquila chrysaetos 22 United States US New York US-NY Rockland US-NY-087 US-NY_843 28.0 Bear Mountain SP--Doodletown Rd. L316486 H 41.3011999 -73.9869576 2015-04-29 08:45:00 obsr1121454 S23129160 Traveling P22 EBIRD 150.0 7.242 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS317689854 2021-04-01 10:53:25.818871 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 4 United States US New York US-NY Cortland US-NY-023 28.0 AviCor18 L3513960 H 42.4410677 -76.0746521 2015-05-09 17:03:00 obsr620377 S23334542 Stationary P21 EBIRD 13.0 2.0 1 G1272223 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314307929 2021-03-23 17:18:00.959502 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 3 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-04-30 06:55:00 obsr2270510 S23141478 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318415895 2015-05-10 22:47:03 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Albany US-NY-001 13.0 Slingerlands, 146 Bullock Road L3633288 P 42.61573 -73.92469 2015-05-10 09:19:00 obsr1393782 S23373492 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322382804 2015-05-24 11:29:30 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-21 16:30:00 obsr150415 S23603018 Traveling P22 EBIRD 90.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307460864 2021-11-09 21:57:30.418465 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 20 United States US New York US-NY Ulster US-NY-111 13.0 Sturgeon Pool L3537960 H 41.8440855 -74.0424281 2015-04-04 10:00:00 obsr610423 S22681046 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291419516 2019-07-23 17:27:02 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 6 United States US New York US-NY Suffolk US-NY-103 30.0 Wading River Marsh Preserve L123013 H 40.96167 -72.85778 2015-01-17 07:30:00 obsr1327990 S21378823 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303022760 2015-03-14 12:53:23 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-03-14 10:43:00 obsr1958124 S22342298 Stationary P21 EBIRD 9.0 2.0 1 G1178966 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299351412 2021-04-01 12:18:57.910168 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-02-24 09:08:00 obsr1655171 S22053813 Traveling P22 EBIRD 46.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309495241 2018-08-04 17:08:42 32955 species avibase-41062654 Northern Parula Setophaga americana X United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-04-12 08:11:00 obsr2071643 S22826066 Traveling P22 EBIRD 56.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296484368 2021-03-26 06:20:10.658048 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Genesee US-NY-037 13.0 9605 Francis Rd , Batavia L3360943 P 42.947728 -78.1616086 2015-02-13 08:00:00 obsr393804 S21802557 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311317443 2021-03-24 20:33:47.533911 622 species avibase-50566E50 Lesser Scaup Aythya affinis 5 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-19 07:30:00 obsr1008519 S22948845 Traveling P22 EBIRD 75.0 1.207 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290862646 2019-01-03 10:54:11 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 12 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-F L3288992 P 40.00252 -72.50312 2015-01-11 13:00:00 obsr1982614 S21333711 Traveling P22 EBIRD 60.0 20.6 44.0 1 G1108339 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314431215 2021-04-01 12:24:14.132004 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Washington US-NY-115 13.0 S of Schuy L2821266 P 43.064347 -73.574698 2015-04-30 16:49:00 obsr648176 S23148692 Traveling P22 EBIRD 95.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296819219 2021-03-26 07:20:31.408164 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 5 United States US New York US-NY Suffolk US-NY-103 20 Stengel Pl L1939557 P 40.8839288 -73.190918 2015-02-14 11:00:00 obsr2650890 S21832991 Stationary P21 EBIRD_PNW 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304835978 2021-03-30 19:03:28.117389 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.7298675 2015-03-21 13:00:00 obsr241086 S22481774 Stationary P21 EBIRD 15.0 10.0 1 G1189973 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313425818 2021-03-24 19:48:44.880783 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 13.0 Erie Station Village L2334326 P 43.04309 -77.66408 2015-04-27 06:50:00 obsr1097423 S23086388 Traveling P22 EBIRD 14.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295358472 2021-03-19 16:32:34.732091 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Kings US-NY-047 BJs Wholesale Club Waterfront (Brooklyn) L3311662 H 40.5917716 -73.9990756 2015-02-07 12:20:00 obsr1189028 S21710807 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315553480 2021-03-30 19:07:52.958398 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 07:30:00 obsr2363365 S23212535 Traveling P22 EBIRD 480.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300513541 2021-04-01 12:24:14.132004 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 4 United States US New York US-NY Washington US-NY-115 13.0 Roger's Island L2464667 P 43.2621749 -73.5857069 2015-03-02 10:15:00 obsr1222746 S22142747 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288986427 2021-03-19 16:10:30.527219 5155 species avibase-4880DC55 Virginia Rail Rallus limicola 3 United States US New York US-NY Chemung US-NY-015 28.0 Boces - Bush Campus in Elmira L2583687 H 42.150709 -76.839781 2015-01-03 07:05:00 obsr1602357 S21183692 Traveling P22 EBIRD 120.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300554686 2021-03-23 17:26:08.495143 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-21 13:00:00 obsr564905 S22145875 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1165032 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304621145 2021-03-30 19:07:52.958398 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 15 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-22 07:45:00 obsr1189028 S22466186 Traveling P22 EBIRD 90.0 2.414 2.0 1 G1188243 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315302333 2021-06-25 16:15:16.069887 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 14:00:00 obsr2448957 S23199126 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318666822 2018-08-04 17:11:58 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma National Wildlife Refuge L3635305 P 42.967752 -76.740521 2015-04-24 08:30:00 obsr1780608 S23387247 Traveling P22 EBIRD 300.0 8.047 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317415853 2018-08-06 22:29:20 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 7 United States US New York US-NY Allegany US-NY-003 28.0 Peterson Trails West L3020973 P 42.2116521 -77.7505714 2015-05-09 06:15:00 obsr1868960 S23318790 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316777315 2021-03-24 19:47:16.07498 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-05-07 06:13:00 obsr2716320 S23282726 Traveling P22 EBIRD 65.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311337141 2021-04-01 11:15:31.646886 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-19 07:30:00 obsr827632 S22950048 Traveling P22 EBIRD 270.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317120078 2022-01-20 09:38:40.245267 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-08 05:56:00 obsr896341 S23301856 Traveling P22 EBIRD 262.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304383123 2018-12-05 11:23:21 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 50 United States US New York US-NY Steuben US-NY-101 28.0 Bath--Washington St. River View L3505494 P 42.3377057 -77.3375112 2015-03-21 12:35:00 obsr1092576 S22448799 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303203119 2021-03-23 16:48:08.60516 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Seneca US-NY-099 13.0 US-NY-Romulus-5026–5208 State Route 89 L3447372 P 42.778663 -76.769669 2015-03-04 16:08:00 obsr1696616 S22356159 Traveling P22 EBIRD 27.0 3.219 3.0 1 G1179649 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309712483 2015-04-13 12:15:21 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-04-12 18:00:00 obsr2284947 S22841192 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312187516 2021-11-09 18:39:18.952338 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Pine Plains, Rt 82 at Conklin Hill Rd L2855074 P 41.93936 -73.65635 2015-04-22 06:15:00 obsr1732267 S23006055 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313824889 2021-04-01 11:15:31.646886 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-28 07:30:00 obsr1077730 S23111358 Traveling P22 EBIRD 195.0 4.023 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316928041 2021-04-01 11:15:31.646886 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Vale of Cashmere L1149386 H 40.6690561 -73.9683616 2015-05-07 12:20:00 obsr664500 S23290883 Traveling P22 EBIRD 16.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288685293 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 15 United States US New York US-NY Monroe US-NY-055 13.0 Home-Brighton L3260295 P 43.128238 -77.5722098 2015-01-03 09:00:00 obsr2504709 S21157569 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308654287 2021-03-26 07:43:12.52294 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Wayne US-NY-117 13.0 Ontario Center Greenway Park L2812991 H 43.2367143 -77.310555 2015-04-09 11:45:00 obsr2914424 S22768651 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305487708 2015-03-26 19:25:13 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-03-26 09:00:00 obsr2812831 S22533097 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299729928 2021-03-24 19:27:13.077399 26109 species avibase-BAC33609 Brown Creeper Certhia americana 5 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-02-26 08:07:00 obsr1334267 S22082399 Traveling P22 EBIRD 31.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319567220 2021-04-01 12:32:15.282601 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-14 06:45:00 obsr247620 S23439377 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS355728162 2020-11-03 05:33:59 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY New York US-NY-061 South Ferry incl. Staten I. + Gov. I. Ferry Terminals L4024804 H 40.7011738 -74.0124754 2015-05-17 obsr1387984 S26016063 Incidental P20 EBIRD 2.0 0 G5871579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310000921 2017-06-26 21:11:42 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-14 13:30:00 obsr137150 S22861975 Traveling P22 EBIRD 45.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306565971 2021-03-22 09:17:32.016297 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Oneida US-NY-065 13.0 Sylvan Beach L509883 H 43.1939135 -75.731163 2015-03-31 obsr1640315 S22614930 Incidental P20 EBIRD 0 G1199686 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321659235 2021-03-26 06:39:43.334073 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-05-21 07:18:00 obsr894191 S23558897 Traveling P22 EBIRD 117.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304612941 2021-11-09 19:21:07.406501 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-03-22 07:30:00 obsr671490 S22465606 Rusty Blackbird Spring Migration Blitz P41 EBIRD 180.0 4.828 11.0 1 G1192428 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288843432 2021-11-15 03:06:58.889978 8773 species avibase-7AA076EF Barred Owl Strix varia 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-03 08:56:00 obsr1548221 S21172848 Traveling P22 EBIRD 116.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320373510 2021-03-30 19:07:52.958398 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 09:17:00 obsr150415 S23483050 Traveling P22 EBIRD 170.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311897068 2021-03-26 06:29:56.44369 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Monroe US-NY-055 13.0 Home L389912 P 43.1355744 -77.5996113 2015-04-21 09:30:00 obsr1124114 S22986760 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296132833 2021-03-26 06:52:34.887371 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Niagara--Lewiston (NY) L356887 H 43.174301 -79.04921 2015-02-11 12:30:00 obsr736608 S21771593 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323629292 2021-11-09 18:42:19.628792 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-28 09:30:00 obsr1917973 S23681824 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299310462 2018-08-04 16:58:07 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-02-23 11:30:00 obsr528918 S22050782 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305068485 2021-03-30 19:29:33.633096 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-24 09:00:00 obsr2534001 S22500564 Traveling P22 EBIRD 70.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295216249 2018-08-04 16:55:44 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 39 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-02-06 13:47:00 obsr502830 S21698976 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306137053 2021-03-30 19:13:38.458673 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum N 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay L83 H 43.3130395 -77.7153471 2015-03-28 11:44:00 obsr1598543 S22581717 Traveling P22 EBIRD 76.0 1.287 4.0 1 G1196956 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298451003 2015-02-19 16:42:44 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Madison US-NY-053 28.0 Linda's feeders L1900001 P 42.7960035 -75.8110164 2015-02-19 13:42:00 obsr2716320 S21978441 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291199527 2021-04-01 12:35:52.669792 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 172 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--Liverpool Marina L837889 H 43.1007479 -76.2093687 2015-01-15 14:45:00 obsr979921 S21360942 Traveling P22 EBIRD 25.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315665820 2021-04-01 11:14:02.420281 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Jefferson US-NY-045 US-NY_778 13.0 Dog Hill Rd. parking area L1577138 H 44.122672 -75.938424 2015-05-03 13:09:00 obsr408487 S23218742 Traveling P22 EBIRD 6.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304634117 2021-03-19 16:44:35.607263 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 13.0 Hogan Point Rd. L164452 H 43.304603 -77.7309322 2015-03-22 11:46:00 obsr730231 S22467120 Traveling P22 EBIRD 8.0 1.609 1.0 1 G1188287 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289640523 2016-03-11 09:00:40 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson trail west split n side main pond (on small bridge) L301742 P 42.4804482 -76.4531896 2015-01-07 08:17:00 obsr2307843 S21235430 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310982649 2021-04-01 11:30:42.037277 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 08:15:00 obsr822430 S22928374 Traveling P22 EBIRD 230.0 4.828 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302831350 2018-07-26 14:58:33 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora--Paines Creek mouth L1172078 H 42.7377775 -76.7026377 2015-03-11 obsr1338126 S22326962 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303467198 2021-03-19 16:44:35.607263 18512 species avibase-447A1BA5 Philadelphia Vireo Vireo philadelphicus X United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 1 (Winter Lakewatch) L654004 H 43.3626297 -77.9489422 2015-03-14 08:30:00 obsr2240964 S22377622 Stationary P21 EBIRD 120.0 14.0 1 G1182074 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308283580 2015-04-07 14:45:14 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 6 United States US New York US-NY Broome US-NY-007 28.0 Glen Aubrey L1421889 P 42.2673968 -76.0045008 2015-04-07 obsr800690 S22740552 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289735049 2021-04-01 12:32:15.282601 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach State Park L359878 P 40.5898488 -73.5531744 2015-01-03 06:30:00 obsr916370 S21242273 Traveling P22 EBIRD 320.0 12.392 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324276352 2021-03-26 06:13:28.501496 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.1752556 -76.8558787 2015-04-12 07:30:00 obsr2736418 S23725629 Stationary P21 EBIRD 210.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303221067 2021-04-01 11:54:40.172593 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Richmond US-NY-085 30.0 Fresh Kills overpass L2509810 P 40.5767235 -74.1903734 2015-03-15 09:45:00 obsr1958124 S22357665 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290447311 2021-04-01 12:32:15.282601 32842 spuh avibase-D572AE1C blackbird sp. Icteridae sp. 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-11 11:35:00 obsr2505956 S21300206 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298836126 2021-11-09 18:26:50.162401 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 5 United States US New York US-NY Dutchess US-NY-027 13.0 Separate Road, Amenia, NY L1893810 P 41.8622316 -73.6034884 2015-02-19 13:30:00 obsr1062217 S22011040 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307509018 2018-08-04 17:05:24 7346 species avibase-D4540F88 Glossy Ibis Plegadis falcinellus 1 United States US New York US-NY Westchester US-NY-119 30.0 Rye Nature Center L299426 H 40.9769767 -73.689841 2015-04-04 12:30:00 obsr1348614 S22684294 Traveling P22 EBIRD 150.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310236845 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-15 09:15:00 obsr1481512 S22878257 Traveling P22 EBIRD 210.0 4.023 7.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310654682 2021-03-26 06:39:43.334073 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-17 10:30:00 obsr1223279 S22907202 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296309378 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-02-12 13:15:00 obsr215694 S21787447 Traveling P22 EBIRD 30.0 1.127 14.0 1 G1143885 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319178632 2021-03-26 06:29:56.44369 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-12 12:15:00 obsr1962295 S23416939 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314049496 2021-03-26 07:56:20.588749 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 3 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-29 09:00:00 obsr1693806 S23125401 Traveling P22 EBIRD 90.0 1.207 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292521244 2021-03-30 19:29:33.633096 662 species avibase-FB738385 Bufflehead Bucephala albeola 5 United States US New York US-NY Suffolk US-NY-103 30.0 Hook Pond L283133 H 40.9461611 -72.1907833 2015-01-21 09:45:00 obsr247620 S21485568 Traveling P22 EBIRD 30.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290914683 2021-03-30 19:39:10.250398 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 300 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 17:00:00 obsr840949 S21337851 Traveling P22 EBIRD 30.0 4.828 44.0 1 G1108343 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317354552 2021-03-19 16:44:35.607263 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-08 10:25:00 obsr302343 S23314682 Traveling P22 EBIRD 55.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290215586 2019-07-23 17:26:45 27616 species avibase-D77E4B41 American Robin Turdus migratorius 30 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-01-10 09:30:00 obsr670607 S21281496 Stationary P21 EBIRD 600.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305704988 2021-04-01 10:47:08.851048 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-03-27 16:11:00 obsr1626739 S22549649 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292449178 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-01-20 08:15:00 obsr2759466 S21479782 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293259759 2015-01-25 21:52:10 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 300 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 West Side Rowing Club L1822426 P 42.90086 -78.90172 2015-01-25 10:20:00 obsr2871264 S21543478 Stationary P21 EBIRD 80.0 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291098354 2022-02-18 10:47:29.953615 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 2 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-01-15 08:30:00 obsr1062070 S21352726 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305114861 2021-02-24 16:37:49.518793 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 5 Female, Adult (2); Male, Adult (3) United States US New York US-NY Suffolk US-NY-103 30.0 Lily Pond County Park L523536 H 40.8330257 -73.127482 2015-03-24 15:30:00 obsr1848026 S22504020 Traveling P22 EBIRD 90.0 1.931 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294666548 2021-03-23 16:33:05.415158 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-02-01 11:30:00 obsr1113580 S21655061 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305538702 2021-03-26 07:15:58.375907 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 3 Male, Adult (3) United States US New York US-NY St. Lawrence US-NY-089 13.0 Remington Recreation Trail L270558 H 44.6127667 -75.1665791 2015-03-26 18:00:00 obsr2056110 S22536923 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305448416 2021-11-09 18:28:07.511478 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Dutchess US-NY-027 13.0 Baxter Road, Red Hook L1949312 P 41.9894809 -73.8689804 2015-03-26 14:40:00 obsr2573652 S22530065 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298859108 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-21 12:15:00 obsr150415 S22012797 Traveling P22 EBIRD 75.0 0.483 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS315316279 2021-03-26 06:17:19.712573 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-03 09:30:00 obsr2537615 S23199812 Traveling P22 EBIRD 120.0 1.207 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314303070 2018-08-04 17:12:13 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Ontario US-NY-069 28.0 Fred&Mike's/Gulick Rd L850433 P 42.7224254 -77.4652541 2015-04-25 13:30:00 obsr2774009 S23141227 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313836206 2021-04-01 11:30:42.037277 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 12:45:00 obsr2883698 S23112031 Traveling P22 EBIRD 50.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309662577 2021-04-01 10:55:39.308231 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 45 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Unity Island (aka Squaw Is.)--North End L2036486 H 42.9321075 -78.9062977 2015-04-13 07:44:00 obsr502830 S22837231 Traveling P22 EBIRD 52.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311724154 2021-11-09 21:50:48.44865 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 11 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-19 09:40:00 obsr1588136 S22975716 Traveling P22 EBIRD 135.0 2.414 30.0 1 G1226287 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315268467 2021-03-19 16:27:31.421791 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Sour Springs Rd. (Genesee Co.) L153399 H 43.125275 -78.37028 2015-05-03 10:17:00 obsr2588479 S23197504 Traveling P22 EBIRD 24.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299184321 2021-03-23 16:39:03.255227 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-23 10:57:00 obsr1893950 S22040907 Traveling P22 EBIRD 57.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309021352 2021-03-24 19:24:40.212356 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 Male, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 South Ripley, Miller Road L3360057 P 42.21902 -79.75516 2015-04-11 07:30:00 obsr37369 S22795947 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309931960 2021-03-26 06:29:56.44369 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Monroe US-NY-055 13.0 10 Parkview Drive yard birds L690404 P 43.1565179 -77.5146952 2015-04-14 08:33:00 obsr2817239 S22857217 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316003926 2022-02-08 20:42:54.672036 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 08:00:00 obsr118940 S23237842 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313795484 2021-03-24 20:53:39.352228 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Karner Barrens East L553196 H 42.7184131 -73.8640168 2015-04-28 10:30:00 obsr820113 S23109446 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311847357 2021-04-01 12:24:45.865424 11528 species avibase-F3DA111C Merlin Falco columbarius 3 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-21 11:49:00 obsr1721609 S22983707 Traveling P22 EBIRD 125.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290706240 2021-03-24 20:23:39.258075 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 12 United States US New York US-NY Suffolk US-NY-103 30.0 Cove Hollow Farm L786267 P 40.9400884 -72.2210312 2015-01-11 13:00:00 obsr1460516 S21321240 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320324467 2021-04-01 11:15:31.646886 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 06:06:00 obsr2404047 S23480566 Traveling P22 EBIRD 480.0 4.828 3.0 1 G1274913 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320168336 2018-08-06 22:29:37 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-11 05:45:00 obsr1009338 S23472575 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310165682 2021-04-01 12:35:52.669792 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Skaneateles Lake, North Village Parks L276075 H 42.945145 -76.4294109 2015-04-15 05:55:00 obsr2279567 S22873614 Stationary P21 EBIRD 99.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323081043 2021-11-09 18:25:30.341513 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Dutchess US-NY-027 US-NY_868 28.0 Mount Beacon Park L1742342 H 41.4814949 -73.9447414 2015-05-24 10:30:00 obsr1289811 S23645219 Traveling P22 EBIRD 120.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298236767 2021-03-26 07:30:35.289997 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 1160 Hinging Post Rd, Ithaca, NY L2664981 P 42.4692437 -76.5324783 2015-02-14 08:00:00 obsr2722332 S21959348 Stationary P21 EBIRD 150.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298480676 2019-07-23 17:27:23 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-02-19 14:40:00 obsr1893950 S21980806 Traveling P22 EBIRD 20.0 0.483 2.0 1 G1153084 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296266645 2021-04-01 12:32:15.282601 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Nassau US-NY-059 30.0 Hofstra University L639147 H 40.7145119 -73.6003128 2015-01-30 09:35:00 obsr2331937 S21782345 Traveling P22 EBIRD 80.0 2.414 9.0 1 G1133457 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298695553 2021-03-26 07:20:31.408164 32952 species avibase-DB20CB6B Cape May Warbler Setophaga tigrina 22 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven, Old Stump Road L1796581 P 40.774188 -72.89986 2015-02-20 06:47:00 obsr613775 S21999394 Stationary P21 EBIRD 53.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297546101 2021-03-26 06:29:56.44369 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-02-14 08:00:00 obsr1245041 S21897701 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296377972 2015-02-13 08:23:01 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-02-13 07:30:00 obsr2074043 S21792776 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312297701 2015-04-23 12:28:17 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Dryden-1369–1417 Daisy Hollow Rd L3584187 P 42.477577 -76.230289 2015-04-23 06:25:00 obsr1828453 S23013357 Stationary P21 EBIRD 11.0 2.0 1 G1232710 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303962888 2021-03-30 19:13:38.458673 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 20 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-18 17:35:00 obsr302343 S22416212 Traveling P22 EBIRD 55.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309752269 2018-10-06 16:50:39 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--East Rd. L99686 H 43.009646 -76.7582003 2015-04-13 09:59:00 obsr1655171 S22844650 Traveling P22 EBIRD 6.0 0.805 2.0 1 G1220005 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305023455 2019-07-23 17:28:06 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point County Park L835192 H 41.1597479 -72.2347641 2015-03-24 06:42:00 obsr613775 S22496951 Traveling P22 EBIRD 41.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS345663552 2018-08-27 14:06:47 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Shindagin Hollow SF--Shindagin Hollow Rd. L2233053 H 42.3338153 -76.3400674 2015-04-23 06:00:00 obsr2130551 S25265295 Traveling P22 EBIRD 145.0 2.414 4.0 1 G1239595 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310693672 2020-05-16 18:13:14 5770 species avibase-95E28A57 Semipalmated Plover Charadrius semipalmatus 13 Male, Adult (9); Female, Adult (4) United States US New York US-NY Otsego US-NY-077 28.0 Ottaway Pond L3568681 P 42.7363566 -74.8490193 2015-04-17 13:30:00 obsr189015 S22909624 Traveling P22 EBIRD 60.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302422269 2021-03-30 19:07:52.958398 32973 species avibase-10C601D3 Bay-breasted Warbler Setophaga castanea N 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-11 09:20:00 obsr1536880 S22295883 Traveling P22 EBIRD 20.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308321298 2021-03-26 06:29:56.44369 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-04-07 16:10:00 obsr934639 S22743368 Traveling P22 EBIRD 47.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320100656 2018-08-06 22:30:06 30494 species avibase-240E3390 House Sparrow Passer domesticus 10 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-16 07:46:00 obsr1097423 S23469271 Traveling P22 EBIRD 156.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321423397 2018-08-06 22:30:35 26890 species avibase-94A44032 European Starling Sturnus vulgaris 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Watts Flats WMA L490893 H 42.0350422 -79.4263016 2015-05-20 05:23:00 obsr2910282 S23544574 Traveling P22 EBIRD 95.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311297642 2021-03-19 16:19:20.977326 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-19 08:20:00 obsr2071643 S22947665 Traveling P22 EBIRD 245.0 2.414 3.0 1 G1226244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307119342 2021-04-01 11:30:42.037277 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-01 15:45:00 obsr2598985 S22656640 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313634858 2021-04-01 11:30:42.037277 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-27 17:20:00 obsr1135516 S23099160 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288987863 2021-04-01 11:15:31.646886 634 species avibase-F3D74914 King Eider Somateria spectabilis 1 United States US New York US-NY Kings US-NY-047 30.0 20 Winthrop st, brooklyn L1141901 P 40.65616 -73.95917 2015-01-04 09:49:00 obsr2152799 S21183848 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310310317 2018-08-04 17:09:22 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 6 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA--Potter Rd. L1740178 H 43.198162 -76.317002 2015-04-15 18:30:00 obsr660214 S22883299 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304505577 2021-03-30 19:03:54.667077 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-21 11:00:00 obsr479109 S22457750 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314470396 2022-03-05 22:03:50.715584 7429 species avibase-1327AC55 Osprey Pandion haliaetus X United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-30 09:00:00 obsr1257003 S23151468 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312714389 2018-08-04 17:11:20 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature Preserve, Rexford, NY L3587945 P 42.7923775 -73.7953484 2015-04-19 18:09:00 obsr1933201 S23042781 Traveling P22 EBIRD 157.0 3.219 9.0 1 G1234677 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299736701 2019-07-23 17:27:29 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-25 11:30:00 obsr2505956 S22082916 Traveling P22 EBIRD 110.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311335077 2021-04-07 20:48:01.047637 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 4 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-19 09:54:00 obsr1655171 S22949927 Traveling P22 EBIRD 47.0 6.437 2.0 1 G1230119 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298394154 2021-03-26 07:56:20.588749 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Nassau US-NY-059 30.0 Home L3399186 P 40.8754275 -73.5743237 2015-02-13 07:00:00 obsr2045025 S21972700 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303489758 2021-03-26 07:19:24.261425 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY Steuben US-NY-101 28.0 Hickory Hill Campground L841182 H 42.3643787 -77.3119926 2015-03-16 10:58:00 obsr749440 S22379574 Traveling P22 EBIRD 22.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761137 2021-03-26 07:56:20.588749 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 15 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-03 09:00:00 obsr2218212 S22629510 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297609396 2021-11-09 20:59:08.238638 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-02-16 11:00:00 obsr1932005 S21903470 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299053970 2021-04-01 12:24:14.132004 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Washington US-NY-115 13.0 Easton L287691 T 42.99338 -73.55236 2015-02-22 15:00:00 obsr2774749 S22030633 Historical P62 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294738828 2021-03-24 20:23:39.258075 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Suffolk US-NY-103 30.0 Inlet Pond L142173 P 41.1089174 -72.3813629 2015-02-03 13:16:00 obsr2485753 S21660750 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1062743245 2021-04-01 10:51:06.899622 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_857 13.0 Ripley (Double DAB Riding Stable) L13439163 P 42.2497997 -79.6761163 2015-05-10 10:00:00 obsr2155450 S80161308 Traveling P22 EBIRD 90.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302181975 2015-04-04 01:53:41 6616 species avibase-7E022378 Common Loon Gavia immer 113 United States US New York US-NY Kings US-NY-047 Canarsie Pier L247765 H 40.6287773 -73.8836704 2015-03-10 08:45:00 obsr1821546 S22270333 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303518594 2021-04-01 10:51:06.899622 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-16 12:40:00 obsr2497657 S22381834 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314129576 2018-08-04 17:13:03 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 6 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-04-29 16:51:00 obsr1124114 S23130258 Traveling P22 EBIRD 47.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317608469 2021-04-01 11:15:31.646886 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-09 14:14:00 obsr2404047 S23330157 Traveling P22 EBIRD 46.0 3.219 4.0 1 G1260349 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320773663 2018-08-04 17:27:39 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.695478 2015-05-16 18:20:00 obsr2855945 S23504415 Stationary P21 EBIRD 10.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313981282 2021-04-01 11:54:40.172593 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-29 06:50:00 obsr1958124 S23121265 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295523101 2015-02-08 10:23:01 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Suffolk US-NY-103 Rocky Point, 361 Soundview Drive L3346309 P 40.96232 -72.91733 2015-02-08 09:51:00 obsr715568 S21723984 Traveling P22 EBIRD 31.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314141153 2022-03-05 22:03:50.715584 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-29 16:00:00 obsr444155 S23130892 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309487135 2021-04-01 12:35:52.669792 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus N 1 United States US New York US-NY Onondaga US-NY-067 13.0 Skaneateles Lake, North Village Parks L276075 H 42.945145 -76.4294109 2015-04-06 06:25:00 obsr2279567 S22825463 Stationary P21 EBIRD 71.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522808 2021-03-23 16:39:03.255227 505 species avibase-C732CB10 American Black Duck Anas rubripes 15 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-04-08 10:49:00 obsr155915 S22758864 Traveling P22 EBIRD 26.0 0.805 2.0 1 G1211596 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322136484 2021-04-01 12:32:15.282601 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 5 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-12 09:00:00 obsr2218212 S23589203 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308272680 2021-04-01 12:32:15.282601 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-04-07 11:20:00 obsr2480606 S22739785 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314990539 2022-02-17 14:32:23.002448 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 5 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-02 08:30:00 obsr1211277 S23181945 Traveling P22 EBIRD 150.0 1.931 5.0 1 G1247128 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332421977 2021-03-26 06:29:56.44369 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-16 10:23:00 obsr334398 S24314080 Traveling P22 EBIRD 137.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315908491 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Kings US-NY-047 The Narrows (Brooklyn) L1918391 H 40.6218575 -74.0503407 2015-05-04 19:00:00 obsr2078092 S23232041 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317454964 2018-02-01 15:11:46 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor2 L3513942 H 42.7382236 -75.8923355 2015-05-09 09:28:00 obsr620377 S23321049 Stationary P21 EBIRD 32.0 2.0 1 G1272247 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305199243 2015-03-25 08:42:48 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Essex US-NY-031 14.0 Fiegel's Field L3445655 P 43.826187 -73.491547 2015-03-25 08:11:00 obsr2420101 S22510423 Traveling P22 EBIRD 29.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311499121 2021-03-26 06:07:45.516082 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 12 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Southern Meadow and environs L1816707 H 40.8533174 -73.8219978 2015-04-18 15:30:00 obsr538462 S22960077 Traveling P22 EBIRD 90.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293043459 2021-03-24 20:58:53.646623 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-01-24 11:20:00 obsr72341 S21526219 Stationary P21 EBIRD 340.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290450848 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-11 14:30:00 obsr934639 S21300532 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317437476 2016-09-12 10:40:05 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 Sunset Hill Cemetery, Ellicottville, NY L3620954 P 42.2773934 -78.6809063 2015-05-08 10:00:00 obsr2428053 S23320041 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297636144 2022-01-30 05:59:21.134541 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Feeders Only L1037405 H 40.6580479 -73.9676857 2015-02-14 11:00:00 obsr1152226 S21905930 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296378576 2021-11-09 19:56:29.619046 16285 species avibase-5BC4E0EF Willow Flycatcher Empidonax traillii 1 United States US New York US-NY Orange US-NY-071 28.0 US-NY-Harriman - 41.3094x-74.1238 - Feb 12, 2015, 10:29 AM L3356636 P 41.309381 -74.123849 2015-02-12 10:27:00 obsr2449954 S21792831 Traveling P22 EBIRD 8.0 8.047 2.0 1 G1144450 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295565695 2021-03-26 07:20:31.408164 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 12 United States US New York US-NY Suffolk US-NY-103 30.0 Marratooka L143474 P 40.9934692 -72.5238113 2015-02-08 13:35:00 obsr2485753 S21727242 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317316694 2021-03-24 05:37:45.927792 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 20 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-05 10:00:00 obsr1166887 S23312501 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303420288 2017-08-16 16:51:17 23450 spuh avibase-55CCEE2D swallow sp. Hirundinidae sp. 1 United States US New York US-NY Suffolk US-NY-103 30.0 Edwards Ave. Sod Fields L3100005 H 40.9378638 -72.7490187 2015-03-15 12:30:00 obsr1460516 S22373454 Stationary P21 EBIRD 30.0 2.0 0 G1181761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310596228 2021-03-24 20:23:39.258075 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 16 United States US New York US-NY Suffolk US-NY-103 US-NY_847 David Weld Preserve L498539 H 40.9062922 -73.2089183 2015-04-14 10:26:00 obsr1107696 S22903407 Rusty Blackbird Spring Migration Blitz P41 EBIRD 95.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312739972 2018-08-04 17:12:08 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-04-25 09:40:00 obsr1958124 S23044513 Incidental P20 EBIRD 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307559239 2021-04-01 11:30:42.037277 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-04 obsr2277801 S22687927 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS353832615 2019-07-23 17:26:43 32860 species avibase-4D08EE7E Prothonotary Warbler Protonotaria citrea 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-04 10:00:00 obsr982051 S25869692 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323785587 2021-03-26 06:07:45.516082 5561 species avibase-E196D6F9 Sandhill Crane Antigone canadensis 6 FL C4 FL United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo -- Center for Global Conservation (CGC) L1147553 P 40.8545266 -73.8786364 2015-05-29 13:50:00 obsr128156 S23694021 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306082124 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-29 13:00:00 obsr2793388 S22577485 Traveling P22 EBIRD 100.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304831173 2022-02-18 08:25:20.66755 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Erie US-NY-029 13.0 Buffalo Zoo L5825994 H 42.9387038 -78.8514959 2015-03-20 08:00:00 obsr1978185 S22481372 Traveling P22 EBIRD 5.0 0.322 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316440632 2015-05-06 10:05:10 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-06 09:19:00 obsr2595828 S23263132 Traveling P22 EBIRD 45.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320782976 2021-03-26 07:52:59.845315 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-17 07:45:00 obsr1000124 S23505007 Area P23 EBIRD 155.0 2.59 2.0 1 G1276526 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288221135 2017-09-10 16:53:09 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Wayne US-NY-117 13.0 Casey Park, Town of Ontario L2933674 H 43.2352297 -77.2896552 2015-01-01 14:23:00 obsr2914424 S21119365 Traveling P22 EBIRD 79.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313361958 2021-04-01 11:49:53.573686 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 Male, Adult (1) United States US New York US-NY Queens US-NY-081 30.0 Ridgewood Reservoir L393007 H 40.688969 -73.8863182 2015-04-26 08:40:00 obsr1348614 S23081800 Traveling P22 EBIRD 270.0 4.828 8.0 1 G1238523 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311278576 2021-03-31 04:01:10.517395 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-19 11:12:00 obsr152435 S22946585 Traveling P22 EBIRD 219.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316688269 2021-03-26 07:56:20.588749 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Nassau US-NY-059 30.0 Manhasset Valley County Park L1411973 H 40.7910487 -73.7078854 2015-05-06 19:00:00 obsr676630 S23277524 Traveling P22 EBIRD 12.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305692369 2021-03-24 21:12:31.336509 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Tioga US-NY-107 28.0 Spencer Lake L2347622 H 42.2473269 -76.5017509 2015-03-22 14:12:00 obsr2683910 S22548811 Stationary P21 EBIRD 46.0 2.0 1 G1194539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314642775 2021-03-19 16:12:42.877422 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 2 United States US New York US-NY Columbia US-NY-021 14.0 Drowned Lands Swamp L3604486 P 42.0539697 -73.5681438 2015-05-01 07:30:00 obsr349211 S23161961 Traveling P22 EBIRD 210.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303653015 2018-08-04 16:58:44 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-03-04 14:00:00 obsr319738 S22391998 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297986750 2021-04-01 12:43:36.236969 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 11 United States US New York US-NY Tioga US-NY-107 28.0 134 Church St. Apker Homestead L2229874 P 42.0298729 -76.3876953 2015-02-15 09:30:00 obsr1537249 S21938108 Stationary P21 EBIRD 420.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305876725 2021-04-01 11:15:31.646886 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 4 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-03-28 12:25:00 obsr1407710 S22562391 Traveling P22 EBIRD 110.0 2.012 11.0 1 G1195436 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314707912 2021-03-26 07:56:20.588749 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-01 12:05:00 obsr916370 S23165739 Traveling P22 EBIRD 50.0 2.092 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1340576310 2022-02-12 20:44:37.656812 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 20 United States US New York US-NY Ulster US-NY-111 28.0 River Rd. Along Wallkill River. L17725437 P 41.6226366 -74.1848803 2015-02-28 10:00:00 obsr2095621 S102522091 Traveling P22 EBIRD 240.0 24.14 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307731197 2021-04-01 10:55:39.308231 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 1 United States US New York US-NY Erie US-NY-029 13.0 Delaware Park--Rumsey Woods L1348448 H 42.9307931 -78.8698229 2015-04-03 10:50:00 obsr2597186 S22699827 Traveling P22 EBIRD 50.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310198544 2021-04-01 12:31:09.823741 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake - Inlet L723215 P 42.7139754 -77.7105045 2015-04-15 07:58:00 obsr72341 S22875840 Traveling P22 EBIRD 670.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314143047 2021-04-01 12:32:15.282601 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 Unknown Sex, Adult (1) United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-29 13:30:00 obsr647628 S23131015 Traveling P22 EBIRD 230.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309496841 2021-11-09 19:57:48.990233 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-12 08:45:00 obsr547602 S22826197 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307365225 2021-03-26 07:56:20.588749 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Nassau US-NY-059 Mill Pond, Port Washington L1813608 H 40.8367848 -73.6986976 2015-04-04 08:20:00 obsr2480606 S22674416 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310961313 2021-03-24 19:30:07.33826 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 4 United States US New York US-NY Cortland US-NY-023 28.0 AviCor5 L3513947 H 42.7868405 -75.9281065 2015-04-18 13:40:00 obsr887540 S22927089 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308645784 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 20 Male, Adult (20) United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-04-09 08:10:00 obsr2512689 S22768078 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322720559 2021-12-24 11:05:53.916238 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Round Pond & Outlet, Greece L139794 H 43.2748148 -77.6451323 2015-05-25 05:16:00 obsr1696616 S23622493 Traveling P22 EBIRD 14.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289867813 2017-01-02 17:56:08 32757 species avibase-EF47E15D Boat-tailed Grackle Quiscalus major 375 United States US New York US-NY Suffolk US-NY-103 30.0 Colonial Springs Golf Club (private) L1847450 H 40.7445934 -73.3891588 2015-01-08 11:45:00 obsr2555972 S21253125 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317865730 2021-05-01 05:40:50.213405 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-09 04:14:00 obsr150415 S23343852 Traveling P22 EBIRD 28.0 0.805 4.0 1 G1260338 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313795237 2021-04-01 11:30:42.037277 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Shakespeare Garden L1673419 H 40.7798887 -73.9697911 2015-04-28 07:15:00 obsr1832377 S23109429 Traveling P22 EBIRD 210.0 4.023 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301959140 2021-03-26 07:30:35.289997 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 34 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-08 08:30:00 obsr1797072 S22253137 Stationary P21 EBIRD 45.0 11.0 1 G1170861 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310274566 2021-04-01 11:54:40.172593 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla N 6 United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-04-15 10:45:00 obsr1893950 S22880797 Stationary P21 EBIRD 423.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311562297 2021-03-30 19:13:38.458673 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay L83 H 43.3130395 -77.7153471 2015-04-20 10:35:00 obsr2933610 S22964130 Stationary P21 EBIRD 86.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289959820 2021-03-26 07:52:59.845315 279 species avibase-3E04020B Brant Branta bernicla 6 Female, Adult (2); Male, Adult (4) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-08 07:43:00 obsr1000124 S21260598 Area P23 EBIRD 80.0 2.59 2.0 1 G1101918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291484749 2021-11-09 18:25:18.182088 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Wappingers Falls L1655886 P 41.588856 -73.9344455 2015-01-17 13:00:00 obsr2241630 S21384178 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303823747 2021-04-01 10:53:25.818871 303 species avibase-B59E1863 Canada Goose Branta canadensis 9 United States US New York US-NY Cortland US-NY-023 28.0 West Blodgett Mills Area - Virgil L2511065 P 42.565282 -76.1628914 2015-03-14 07:55:00 obsr931232 S22405291 Traveling P22 EBIRD 20.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299233927 2021-03-23 17:23:45.772216 30494 species avibase-240E3390 House Sparrow Passer domesticus 12 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-02-23 06:47:00 obsr72341 S22044750 Stationary P21 EBIRD 583.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294842289 2021-03-26 07:07:10.758746 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 5 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-04 07:02:00 obsr1958124 S21669490 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290290201 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-10 13:53:00 obsr924076 S21287709 Traveling P22 EBIRD 238.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621097 2020-03-13 20:12:39 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Albany US-NY-001 28.0 Fairview Farm L2504189 P 42.4713688 -74.1246808 2015-02-08 11:40:00 obsr1363650 S21731696 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290800405 2018-01-07 20:13:45 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 5 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-01-13 07:27:00 obsr2693145 S21328144 Stationary P21 EBIRD 51.0 2.0 1 G1107988 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304505570 2021-03-30 19:03:54.667077 32955 species avibase-41062654 Northern Parula Setophaga americana N X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-21 11:00:00 obsr479109 S22457750 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312287514 2018-08-04 17:11:51 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 6 Female, Adult (3); Male, Adult (3) United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-23 06:28:00 obsr1222746 S23012714 Rusty Blackbird Spring Migration Blitz P41 EBIRD 101.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309496109 2021-11-15 03:06:58.889978 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-12 15:30:00 obsr1927179 S22826145 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306207313 2021-03-26 06:11:29.8335 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-03-29 10:40:00 obsr1655171 S22587143 Traveling P22 EBIRD 70.0 0.805 2.0 1 G1198715 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321424723 2021-03-22 08:58:29.008072 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-20 07:07:00 obsr2313260 S23544670 Traveling P22 EBIRD 137.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293815622 2017-09-09 13:09:19 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - s. leg of West Trail (0.21km) L1364966 P 42.4772275 -76.4543913 2015-01-29 08:06:00 obsr2307843 S21587864 Traveling P22 EBIRD 10.0 0.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307973242 2021-03-26 08:14:57.071052 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-06 08:40:00 obsr258431 S22717530 Traveling P22 EBIRD 140.0 3.621 18.0 1 G1207928 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289262448 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY New York US-NY-061 30.0 Hudson St across from Abingdon Square L3268106 P 40.7366545 -74.0058871 2015-01-05 07:30:00 obsr2305870 S21205080 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305481657 2018-08-04 17:03:40 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 4 United States US New York US-NY Saratoga US-NY-091 13.0 Hudson Crossing Park L1476458 H 43.1155261 -73.577908 2015-03-26 14:40:00 obsr2186523 S22532651 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289506588 2021-03-26 07:56:20.588749 591 species avibase-1929E1E1 Canvasback Aythya valisineria N 40 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-06 13:50:00 obsr2394424 S21224675 Traveling P22 EBIRD 81.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291526838 2021-03-26 06:21:54.883933 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Kings US-NY-047 Louis Valentino Jr. Park and Pier L2656269 H 40.6783803 -74.0180565 2015-01-17 13:35:00 obsr41879 S21387578 Stationary P21 EBIRD 17.0 4.0 1 G1112443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291293828 2021-11-09 18:43:18.378649 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 2 United States US New York US-NY Dutchess US-NY-027 13.0 Upton Lake Christian School L3271185 P 41.833243 -73.7613273 2015-01-16 07:30:00 obsr2862523 S21369046 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323875124 2021-04-01 11:24:19.637193 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-05-29 20:03:00 obsr934639 S23700019 Stationary P21 EBIRD 35.0 2.0 1 G1337404 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304550211 2018-08-04 17:02:15 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Nassau US-NY-059 30.0 Milburn Pond Park L632761 H 40.6522759 -73.6026542 2015-03-21 11:45:00 obsr1160328 S22461198 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288783062 2021-03-26 08:14:57.071052 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Westchester US-NY-119 30.0 Martling Avenue L1368836 P 41.0672048 -73.8554782 2015-01-03 15:15:00 obsr1055148 S21165685 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310108067 2021-11-09 21:41:38.795423 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-04-14 06:00:00 obsr1588136 S22869656 Stationary P21 EBIRD 660.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316114944 2021-03-26 06:17:19.712573 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-05 07:22:00 obsr736608 S23244020 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321682976 2021-09-19 18:57:52.903665 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 30.0 Morningside Park, Manhattan L1799559 H 40.8067376 -73.9580993 2015-05-20 09:55:00 obsr1706920 S23560378 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307611073 2021-04-02 13:20:09.513046 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY US-NY_1726 13.0 Montezuma NWR (general area) L246782 H 42.9833651 -76.7562389 2015-04-04 14:00:00 obsr1872991 S22691588 Traveling P22 EBIRD 180.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317866846 2021-04-01 11:15:31.646886 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax N X United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-05-09 12:39:00 obsr150415 S23343909 Traveling P22 EBIRD 26.0 0.483 4.0 1 G1260346 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317008979 2021-11-15 03:06:58.889978 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-06 09:00:00 obsr1253931 S23295536 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298778492 2021-03-26 06:11:29.8335 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-02-21 09:44:00 obsr2683910 S22006331 Stationary P21 EBIRD 6.0 2.0 1 G1155009 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS331431072 2021-03-26 07:46:52.994574 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-30 06:05:00 obsr1778524 S24239484 Traveling P22 EBIRD 240.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296172551 2021-03-26 07:30:35.289997 681 species avibase-407E2CA8 Common Merganser Mergus merganser 11 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-02-11 11:00:00 obsr2137468 S21774737 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288549130 2021-03-24 19:47:16.07498 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Madison US-NY-053 28.0 Carpenter Rd. L3258432 P 42.7961722 -75.8109775 2015-01-02 09:00:00 obsr2223307 S21146858 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306672258 2015-04-01 07:31:10 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 155 Lt. VanWinkle Drive, Binghamton, NY 13905 L2762206 P 42.1324166 -75.9168926 2015-04-01 06:40:00 obsr1047534 S22623117 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301659473 2021-04-01 11:30:42.037277 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-08 11:00:00 obsr1668936 S22229267 Traveling P22 EBIRD 139.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289326611 2021-03-24 20:06:25.370375 616 species avibase-25C94A8F Greater Scaup Aythya marila 10 United States US New York US-NY Ontario US-NY-069 13.0 The Swamp L1660257 P 42.8848133 -77.0413991 2015-01-05 15:10:00 obsr572658 S21210441 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS560385586 2021-03-30 19:13:38.458673 681 species avibase-407E2CA8 Common Merganser Mergus merganser 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-04 10:40:00 obsr1191915 S41330139 Stationary P21 EBIRD 30.0 3.0 1 G2810132 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307460990 2021-03-24 19:19:28.646223 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 38 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-04-04 09:44:00 obsr955789 S22681056 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290390116 2019-07-23 17:26:55 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Suffolk US-NY-103 30.0 Hortons Point L158149 H 41.0852163 -72.4456862 2015-01-11 11:13:00 obsr2485753 S21295750 Traveling P22 EBIRD 41.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290979481 2021-11-09 18:25:57.501281 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 20 United States US New York US-NY Dutchess US-NY-027 13.0 Shunpike Rd (pond at Rally Farms) L1778940 P 41.8362525 -73.6505797 2015-01-05 08:30:00 obsr1062217 S21342972 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307408225 2015-04-04 12:03:43 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North Woods L3534756 P 40.7974211 -73.9554012 2015-04-04 09:00:00 obsr1223279 S22677566 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318948161 2021-04-01 11:30:42.037277 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-12 09:16:00 obsr2313260 S23403542 Traveling P22 EBIRD 192.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306008795 2021-04-01 11:24:19.637193 26890 species avibase-94A44032 European Starling Sturnus vulgaris 50 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 10:17:00 obsr749440 S22572251 Stationary P21 EBIRD 101.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305090976 2021-04-01 11:43:48.927316 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Home L3158249 P 42.7894329 -77.5681436 2015-03-24 07:40:00 obsr39511 S22499262 Stationary P21 EBIRD 120.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318937383 2021-03-26 07:56:20.588749 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-12 10:57:00 obsr1828453 S23403006 Traveling P22 EBIRD 48.0 0.805 2.0 1 G1268142 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291079447 2021-11-15 03:06:58.889978 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-07 08:45:00 obsr601383 S21351154 Traveling P22 EBIRD 15.0 0.402 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308696278 2021-04-01 12:32:15.282601 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-09 08:00:00 obsr2505956 S22772249 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321051844 2022-02-17 14:32:23.002448 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-17 13:00:00 obsr1659461 S23521521 Traveling P22 EBIRD 180.0 6.437 2.0 1 G1278228 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304056502 2019-07-23 17:28:02 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-03-19 13:53:00 obsr2914424 S22423658 Traveling P22 EBIRD 63.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305828581 2021-03-30 19:25:27.212017 27616 species avibase-D77E4B41 American Robin Turdus migratorius 14 United States US New York US-NY Richmond US-NY-085 30.0 Arbutus Lake L1096289 H 40.5227091 -74.1783006 2015-03-28 14:29:00 obsr1958124 S22558909 Stationary P21 EBIRD 8.0 2.0 1 G1195278 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312436286 2021-03-24 20:33:47.533911 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Tompkins US-NY-109 13.0 206 Tareyton Drive, Ithaca L141039 P 42.471756 -76.4603653 2015-04-23 11:15:00 obsr620377 S23022926 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309586619 2022-01-20 13:44:29.539827 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Seneca US-NY-099 US-NY_803 13.0 Geneva Lakefront Park, birds over water ONLY (Seneca Co.) L360643 H 42.8659781 -76.9714307 2015-04-12 13:00:00 obsr2406179 S22832213 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320087609 2021-09-03 19:22:31.034431 32955 species avibase-41062654 Northern Parula Setophaga americana 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-05-16 07:17:00 obsr2497657 S23468590 Stationary P21 EBIRD 156.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303053525 2015-03-14 14:10:18 27380 species avibase-E53FC25C Swainson's Thrush Catharus ustulatus 2 United States US New York US-NY Montgomery US-NY-057 13.0 Langley & Stanly Rd L3487282 P 42.8866875 -74.1842365 2015-03-14 10:20:00 obsr481595 S22344872 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324166114 2021-04-01 12:26:53.827486 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Karner Barrens East L553196 H 42.7184131 -73.8640168 2015-05-31 09:15:00 obsr2270510 S23718637 Traveling P22 EBIRD 25.0 0.483 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316055085 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-04 08:13:00 obsr363953 S23240797 Traveling P22 EBIRD 300.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295466874 2021-11-09 18:43:49.061486 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 Female, Adult (1) United States US New York US-NY Dutchess US-NY-027 28.0 Purgatory Hill L3345412 P 41.5670731 -73.566159 2015-02-07 10:00:00 obsr1058852 S21719480 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303017199 2021-04-01 11:49:53.573686 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay, Big Egg Marsh L722804 H 40.5963256 -73.8252819 2015-03-11 11:21:00 obsr1982614 S22341816 Traveling P22 EBIRD 110.0 0.692 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309402565 2018-08-04 17:08:54 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Tompkins US-NY-109 28.0 Herman Rd. wetlands L1108700 H 42.5157265 -76.3355194 2015-04-12 13:45:00 obsr1318356 S22820285 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322817586 2021-11-09 18:47:56.955842 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla N 1 United States US New York US-NY Dutchess US-NY-027 13.0 Dutchess Rail Trail - veterans mile L3671585 P 41.6209606 -73.8500977 2015-05-25 11:15:00 obsr2103727 S23628317 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300757961 2021-04-01 12:45:19.712958 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 18 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-03-03 11:46:00 obsr247625 S22160727 Stationary P21 EBIRD 52.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310902402 2021-03-19 16:43:17.120646 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 2 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank-West L234397 P 43.1088551 -75.8037988 2015-04-18 11:30:00 obsr2087436 S22923432 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320344529 2021-03-26 06:17:19.712573 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-05-16 obsr2096529 S23481587 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318699036 2021-03-26 06:29:56.44369 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-11 06:11:00 obsr745890 S23389047 Traveling P22 EBIRD 20.0 0.016 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315023400 2021-04-01 11:23:28.992084 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 18 United States US New York US-NY Lewis US-NY-049 14.0 Ridge Road, Castorland L1129327 H 43.8690954 -75.5006647 2015-05-02 11:35:00 obsr979921 S23183766 Traveling P22 EBIRD 100.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316138604 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 40 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 08:20:00 obsr599682 S23245254 Traveling P22 EBIRD 140.0 2.414 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316997605 2021-03-26 06:29:56.44369 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Monroe US-NY-055 13.0 Tinker Nature Park L3618688 P 43.06707 -77.57339 2015-05-06 10:15:00 obsr1624587 S23294892 Traveling P22 EBIRD 126.0 2.414 2.0 1 G1256551 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323915358 2021-03-19 16:02:45.308962 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-30 07:05:00 obsr1830659 S23702917 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321729216 2018-08-06 22:30:44 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Iroquois NWR--Swallow Hollow Trail L771567 H 43.1254425 -78.3256102 2015-05-21 13:15:00 obsr916033 S23563081 Traveling P22 EBIRD 83.0 3.219 2.0 1 G1281890 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290200090 2021-11-18 08:22:07.46651 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Ulster US-NY-111 13.0 Esopus Bend Nature Preserve L1422709 H 42.069482 -73.9586939 2015-01-10 07:30:00 obsr2573652 S21280079 Traveling P22 EBIRD 300.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319957874 2021-04-01 10:47:08.851048 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-05-15 06:55:00 obsr646558 S23461243 Traveling P22 EBIRD 20.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712174 2019-10-18 07:40:54 27616 species avibase-D77E4B41 American Robin Turdus migratorius 8 United States US New York US-NY Albany US-NY-001 28.0 Huyck Preserve--Lake Myosotis L304714 H 42.5220704 -74.1483993 2015-01-03 08:30:00 obsr1188777 S21240370 Traveling P22 EBIRD 170.0 7.081 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307267010 2021-03-23 17:00:13.087107 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Dubois Cottage (SbR) L2994397 P 42.4848288 -76.5484959 2015-04-01 09:15:00 obsr2867163 S22667068 Traveling P22 EBIRD 60.0 0.193 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288592898 2021-03-26 08:09:53.772059 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 8 United States US New York US-NY Rensselaer US-NY-083 13.0 Ford Hill Road L3259120 P 42.8428073 -73.554368 2015-01-02 09:20:00 obsr1735540 S21150458 Traveling P22 EBIRD 40.0 6.92 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307761622 2021-03-26 07:46:52.994574 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 6 United States US New York US-NY Albany US-NY-001 13.0 Stanton Pond L273495 H 42.5094164 -73.9012973 2015-04-05 13:00:00 obsr2214649 S22701913 Stationary P21 EBIRD 15.0 2.0 1 G1210516 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310926033 2021-03-26 07:56:20.588749 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-04-18 08:05:00 obsr1296638 S22924788 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322901650 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-05-25 15:00:00 obsr2774749 S23633459 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311521061 2015-04-20 08:50:11 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Tioga US-NY-107 28.0 Brick Pond Wetland Preserve L1005329 H 42.1067239 -76.2456751 2015-04-19 11:45:00 obsr317968 S22961458 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301983223 2021-03-23 17:26:08.495143 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-09 12:00:00 obsr544268 S22254979 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297941577 2021-03-26 07:30:35.289997 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-02-17 08:45:00 obsr1655171 S21934226 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305038903 2021-03-26 07:30:35.289997 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota X United States US New York US-NY Tompkins US-NY-109 13.0 Newman Municipal Golf Course L2158758 H 42.4561318 -76.5052153 2015-03-24 08:12:00 obsr2001485 S22497308 Traveling P22 EBIRD 13.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324003413 2018-08-06 22:31:28 8829 species avibase-8F123A11 Short-eared Owl Asio flammeus 6 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Durand-Eastman Park--Zoo Rd. L139792 H 43.2279443 -77.557404 2015-05-30 10:25:00 obsr1243175 S23708201 Traveling P22 EBIRD 75.0 0.805 3.0 1 G1296126 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308685636 2021-11-09 22:37:20.108383 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Sullivan US-NY-105 28.0 Bashakill L1566572 P 41.5241759 -74.5163684 2015-04-09 09:30:00 obsr2219590 S22771200 Traveling P22 EBIRD 240.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307563220 2018-08-04 17:05:24 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-04-04 12:50:00 obsr856524 S22688203 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309104881 2022-03-05 22:03:50.715584 32901 species avibase-1A0096F2 Mourning Warbler Geothlypis philadelphia 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-11 08:10:00 obsr1544235 S22801161 Traveling P22 EBIRD 150.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314197135 2021-03-24 05:37:45.927792 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 18 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-29 15:30:00 obsr66866 S23134467 Traveling P22 EBIRD 120.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299261992 2022-02-04 06:14:13.892644 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 Female, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-02-07 15:35:00 obsr717528 S22047086 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308614260 2015-04-09 08:59:55 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 3 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-04-09 08:30:00 obsr2750671 S22765757 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320576211 2021-12-08 07:58:41.562209 6361 issf avibase-0C55DFCC Iceland Gull Larus glaucoides Iceland Gull (kumlieni) Larus glaucoides kumlieni N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-17 07:55:00 obsr2206421 S23493823 Traveling P22 EBIRD 285.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291673217 2021-03-26 06:21:54.883933 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-01-17 11:00:00 obsr2603801 S21398869 Stationary P21 EBIRD 20.0 3.0 1 G1112862 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313975916 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-04-28 17:30:00 obsr794187 S23120859 Traveling P22 EBIRD 20.0 0.483 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322311080 2021-03-30 19:07:52.958398 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:30:00 obsr1077730 S23598694 Traveling P22 EBIRD 645.0 8.047 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305123713 2021-03-23 16:39:03.255227 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis N 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-03-24 16:55:00 obsr1958124 S22504724 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299729929 2021-03-24 19:27:13.077399 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 13 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-02-26 08:07:00 obsr1334267 S22082399 Traveling P22 EBIRD 31.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297688022 2021-03-23 17:26:08.495143 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-02-16 13:30:00 obsr247620 S21911003 Traveling P22 EBIRD 90.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308111957 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-06 14:00:00 obsr2448957 S22727356 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305822389 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-28 12:29:00 obsr152435 S22558442 Traveling P22 EBIRD 186.0 8.047 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314270678 2021-03-24 21:08:40.363932 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Otsego US-NY-077 28.0 207 Stoller Hill Rd L3359197 P 42.7034192 -75.0299799 2015-04-30 07:39:00 obsr131845 S23139203 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318489207 2021-12-08 07:58:41.562209 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-11 06:15:00 obsr1828453 S23377679 Traveling P22 EBIRD 86.0 1.609 2.0 1 G1265670 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306939518 2018-02-01 15:11:46 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor16 L3513958 H 42.6625316 -76.0726389 2015-04-02 12:41:00 obsr1696616 S22642860 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316037456 2021-04-01 11:15:31.646886 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis N 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 06:13:00 obsr150415 S23239811 Traveling P22 EBIRD 146.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291465126 2015-01-17 15:04:13 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 11 United States US New York US-NY Livingston US-NY-051 13.0 US-NY-Livonia-7469-7599 Co Rd 41 L3298213 P 42.825721 -77.591827 2015-01-17 14:55:00 obsr749440 S21382628 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319390100 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-12 19:00:00 obsr1310902 S23429015 Historical P62 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316312488 2021-03-19 16:19:20.977326 1375 species avibase-4B9EEF56 Ring-necked Pheasant Phasianus colchicus 5 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-05 14:00:00 obsr1379161 S23256180 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311961431 2021-03-26 06:39:43.334073 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 4 Female, Adult (1); Male, Adult (3) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Greywacke Arch L2179946 H 40.7792619 -73.9657742 2015-04-19 08:35:00 obsr1548221 S22991122 Traveling P22 EBIRD 26.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312979520 2021-03-26 06:58:34.561206 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Orleans US-NY-073 US-NY_1729 13.0 USFWS_219 bos section 10a L1304629 P 43.1361929 -78.4205818 2015-04-12 08:00:00 obsr1296884 S23058823 Area P23 EBIRD 360.0 3500.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296770765 2021-03-26 08:09:53.772059 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Rensselaer US-NY-083 13.0 Poestenkill, Home Yard L940921 P 42.6943279 -73.5632408 2015-02-14 07:45:00 obsr1735540 S21828827 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304135569 2015-03-19 22:21:27 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 100 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-03-19 13:19:00 obsr2186523 S22429657 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321176667 2022-01-12 18:14:10.119384 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--South Entrance L825062 H 44.3641149 -74.1511381 2015-05-19 07:12:00 obsr2630526 S23529535 Traveling P22 EBIRD 153.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302850898 2021-03-30 19:03:54.667077 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-12 11:00:00 obsr319738 S22328483 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321620308 2021-03-26 06:38:32.090082 486 domestic avibase-07FFC1E5 Mallard (Domestic type) Anas platyrhynchos (Domestic type) N 6 United States US New York US-NY Montgomery US-NY-057 13.0 St Johnsville L3660762 P 42.9990519 -74.6804009 2015-05-20 13:30:00 obsr316199 S23556626 Traveling P22 EBIRD 32.0 8.047 3.0 1 G1281336 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316970007 2021-03-19 16:44:35.607263 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-07 16:10:00 obsr934639 S23293317 Traveling P22 EBIRD 140.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312317449 2021-03-23 16:39:03.255227 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-23 13:51:00 obsr1958124 S23014722 Traveling P22 EBIRD 6.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322445686 2019-07-24 17:40:04 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Lisle Park & Keibel Rd. L885144 H 42.350552 -75.9814239 2015-05-24 07:42:00 obsr1092576 S23606585 Traveling P22 EBIRD 107.0 3.54 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315906082 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Summit Rock L1150654 H 40.7832 -73.9700467 2015-05-04 07:15:00 obsr2277801 S23231900 Historical P62 EBIRD 35.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309002549 2021-04-01 11:47:43.260314 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-10 08:04:00 obsr2945658 S22794581 Traveling P22 EBIRD 594.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304306570 2021-03-24 19:23:17.886063 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-03-20 obsr1395007 S22443109 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316500695 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 09:00:00 obsr98313 S23266451 Traveling P22 EBIRD 270.0 4.828 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290746806 2021-03-26 08:11:28.0353 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-01-12 08:30:00 obsr1664745 S21324371 Stationary P21 EBIRD 210.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318570938 2015-05-11 11:50:29 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 16 United States US New York US-NY Monroe US-NY-055 13.0 Trolley Trail and Ayrault Road L2274899 P 43.079568 -77.426087 2015-05-11 09:30:00 obsr2391541 S23381948 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320855078 2021-04-01 11:15:31.646886 505 species avibase-C732CB10 American Black Duck Anas rubripes 9 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-18 07:31:00 obsr187432 S23509822 Traveling P22 EBIRD 54.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297165292 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-15 12:00:00 obsr2534001 S21863700 Traveling P22 EBIRD 60.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321738528 2021-03-19 16:44:35.607263 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-21 08:55:00 obsr2504709 S23563658 Traveling P22 EBIRD 40.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293847462 2019-07-23 17:27:13 33061 species avibase-E36325FA Prairie Warbler Setophaga discolor 6 United States US New York US-NY Suffolk US-NY-103 30.0 Napeague L1082529 T 41.0095 -72.06812 2015-01-25 14:30:00 obsr1987335 S21590445 Traveling P22 EBIRD 85.0 3.219 2.0 1 G1128212 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289077648 2021-03-23 17:26:08.495143 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 6 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-03 09:00:00 obsr2603801 S21191015 Traveling P22 EBIRD 360.0 9.656 3.0 1 G1093276 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309503764 2021-11-09 18:22:29.372367 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Dutchess US-NY-027 13.0 River paddle L1487368 P 42.0469932 -73.927686 2015-04-12 11:30:00 obsr671490 S22826706 Traveling P22 EBIRD 150.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311320621 2018-08-04 17:11:19 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 8 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-04-19 16:15:00 obsr1223279 S22949039 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319531823 2021-03-19 16:44:35.607263 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-14 07:20:00 obsr1410564 S23437410 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298241092 2021-04-01 11:30:42.037277 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-18 13:00:00 obsr1668936 S21959701 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316079834 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Monroe US-NY-055 13.0 Durand-Eastman Park--Horseshoe Rd. L1167931 H 43.2369181 -77.564064 2015-05-05 09:04:00 obsr2774009 S23242175 Traveling P22 EBIRD 75.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320758637 2021-04-01 11:15:31.646886 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-17 06:05:00 obsr150415 S23503618 Traveling P22 EBIRD 545.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301257728 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N X United States US New York US-NY Nassau US-NY-059 30.0 East Meadow L2579132 P 40.71788 -73.5637665 2015-03-06 16:00:00 obsr2207991 S22198276 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312045006 2021-11-09 18:46:28.67867 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons 1 United States US New York US-NY Dutchess US-NY-027 13.0 Bethel Cross Road, Pine Plains, NY L3582452 P 41.9474362 -73.646512 2015-04-22 09:50:00 obsr763723 S22996672 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312483013 2021-03-24 20:21:40.993321 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Seneca US-NY-099 13.0 Lower Lake Rd., S of Cayuga Lake SP L622570 H 42.8798637 -76.7456925 2015-04-23 13:15:00 obsr457491 S23026130 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309392939 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 10:30:00 obsr1077730 S22819722 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312275693 2021-03-26 07:20:31.408164 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-04-13 07:00:00 obsr1592950 S23011986 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293085537 2021-03-26 08:14:57.071052 27616 species avibase-D77E4B41 American Robin Turdus migratorius 30 United States US New York US-NY Westchester US-NY-119 30.0 Manor Park area Larchmont,NY L827413 P 40.9174691 -73.7462425 2015-01-24 15:30:00 obsr964539 S21529798 Traveling P22 EBIRD 90.0 1.609 2.0 1 G1124710 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305962408 2021-03-26 07:56:20.588749 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Nassau US-NY-059 30.0 001home, bethpage, ny L1333196 P 40.719284 -73.4770712 2015-03-29 07:00:00 obsr547602 S22568891 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313133866 2018-08-04 17:12:25 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Oneida US-NY-065 13.0 Sidecut Road, Verona L1525633 P 43.184544 -75.662055 2015-04-26 11:45:00 obsr545221 S23068028 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313414584 2021-03-26 06:39:43.334073 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-03-17 10:30:00 obsr1532624 S23085598 Traveling P22 EBIRD 120.0 5.0 15.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310833373 2021-04-01 12:18:57.910168 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-18 06:45:00 obsr1696616 S22918956 Stationary P21 EBIRD 31.0 2.0 1 G1223870 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309518083 2018-08-04 17:08:55 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Rensselaer US-NY-083 13.0 CR 113 Farm Pond NE of Tomhannock L3142094 P 42.877285 -73.5370517 2015-04-12 14:20:00 obsr2855945 S22827666 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324010731 2021-03-23 17:26:08.495143 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 26 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-30 09:00:00 obsr2505956 S23708641 Traveling P22 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311661431 2022-02-18 10:47:29.953615 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-20 17:10:00 obsr1062070 S22971606 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307873574 2021-04-01 11:15:31.646886 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 09:45:00 obsr2909711 S22709984 Traveling P22 EBIRD 150.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306706425 2015-04-01 11:45:27 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-31 10:59:00 obsr1334267 S22625813 Traveling P22 EBIRD 49.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303311751 2015-03-15 22:55:42 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-03-15 14:45:00 obsr1736113 S22364570 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303616146 2021-03-30 19:37:33.521815 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-03-16 12:15:00 obsr528918 S22389216 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292951943 2022-02-21 16:56:20.41462 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 12 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-24 14:43:00 obsr1821546 S21519509 Traveling P22 EBIRD 78.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314161856 2018-08-04 17:13:03 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-29 17:48:00 obsr34822 S23132216 Traveling P22 EBIRD 93.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309463944 2018-08-04 17:05:07 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-02 17:10:00 obsr1488063 S22823879 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321402398 2021-03-26 06:21:54.883933 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N 1 United States US New York US-NY Kings US-NY-047 30.0 Park Place (Backyard list), Brooklyn L1355824 P 40.678271 -73.9753908 2015-05-20 05:45:00 obsr827632 S23543209 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318155417 2021-03-26 06:39:43.334073 6029 species avibase-D4A73324 Solitary Sandpiper Tringa solitaria 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-09 07:31:00 obsr758734 S23359368 Traveling P22 EBIRD 21.0 0.3 2.0 1 G1262307 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309348111 2015-04-12 11:04:33 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Hilton-141 Frisbee Hill Rd L3557563 P 43.285663 -77.727703 2015-04-12 10:27:00 obsr749440 S22817062 Traveling P22 EBIRD 22.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315476407 2021-04-01 11:24:19.637193 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-03 07:00:00 obsr334398 S23208317 Traveling P22 EBIRD 163.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301827202 2018-12-30 09:51:06 27616 species avibase-D77E4B41 American Robin Turdus migratorius 20 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-08 16:40:00 obsr2321296 S22243577 Stationary P21 EBIRD 40.0 5.0 1 G1172850 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297603691 2021-03-26 06:52:34.887371 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 4 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-02-10 10:00:00 obsr2141910 S21902950 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321807243 2021-11-15 03:06:58.889978 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-21 16:20:00 obsr2277801 S23567938 Historical P62 EBIRD 85.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310308058 2019-07-23 17:28:23 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 Male, Juvenile (1); Female, Adult (1) United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-04-15 17:00:00 obsr920912 S22883137 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311944879 2021-03-26 06:12:17.833181 6339 species avibase-8535345B Herring Gull Larus argentatus 10 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-04-21 08:00:00 obsr479109 S22990107 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312084426 2021-04-01 12:24:14.132004 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Washington US-NY-115 13.0 S of Schuy L2821266 P 43.064347 -73.574698 2015-04-22 06:50:00 obsr648176 S22999046 Stationary P21 EBIRD 417.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306760123 2021-03-26 07:56:20.588749 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-01 14:50:00 obsr1488063 S22629407 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308659110 2021-03-26 07:30:35.289997 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 28 United States US New York US-NY Tompkins US-NY-109 13.0 120 N. Aurora St. L1257572 P 42.4403865 -76.495847 2015-04-06 18:30:00 obsr1092576 S22768994 Stationary P21 EBIRD 11.0 1.0 1 G1212274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288169473 2021-04-01 12:35:52.669792 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--Liverpool Marina L837889 H 43.1007479 -76.2093687 2015-01-01 08:35:00 obsr660214 S21114968 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308099337 2021-03-26 07:30:35.289997 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus N 2 United States US New York US-NY Tompkins US-NY-109 13.0 120 N. Aurora St. L1257572 P 42.4403865 -76.495847 2015-04-06 18:30:00 obsr2211210 S22726397 Stationary P21 EBIRD 11.0 1.0 1 G1212274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313518630 2018-08-04 17:12:31 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake, Vitale Park L637129 H 42.8342164 -77.7035522 2015-04-27 12:00:00 obsr642516 S23091951 Traveling P22 EBIRD 45.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301369587 2021-04-01 12:35:52.669792 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 45 United States US New York US-NY Onondaga US-NY-067 13.0 US-NY-Phoenix-9434 Pendergast Rd L3460935 P 43.229934 -76.30642 2015-03-07 10:45:00 obsr184660 S22207944 Stationary P21 EBIRD 38.0 4.0 1 G1168728 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309500148 2021-04-01 11:30:42.037277 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-12 13:05:00 obsr822430 S22826422 Traveling P22 EBIRD 150.0 6.437 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317324118 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-08 17:55:00 obsr904434 S23312539 Traveling P22 EBIRD 108.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293332352 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-25 09:15:00 obsr1807494 S21548790 Traveling P22 EBIRD 90.0 0.805 4.0 1 G1124331 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308470975 2022-03-05 22:03:50.715584 592 species avibase-3072CC16 Redhead Aythya americana 75 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-08 09:00:00 obsr444155 S22754828 Traveling P22 EBIRD 210.0 6.437 4.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS307516355 2018-10-15 17:27:54 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-04 10:30:00 obsr2030638 S22684842 Traveling P22 EBIRD 150.0 3.219 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311950177 2021-03-31 04:01:10.517395 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 20 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 08:23:00 obsr1152226 S22990425 Traveling P22 EBIRD 240.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315881907 2021-04-01 11:15:31.646886 32842 spuh avibase-D572AE1C blackbird sp. Icteridae sp. 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 06:04:00 obsr150415 S23230526 Traveling P22 EBIRD 419.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313009346 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-23 07:00:00 obsr1220115 S23060568 Traveling P22 EBIRD 120.0 2.414 15.0 1 G1236321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294532692 2021-03-26 07:20:31.408164 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-01-24 08:00:00 obsr1592950 S21644354 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288709014 2022-02-17 14:32:23.002448 26890 species avibase-94A44032 European Starling Sturnus vulgaris 300 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-03 08:32:00 obsr1605975 S21159756 Traveling P22 EBIRD 148.0 2.414 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321326644 2020-12-14 15:56:49.243642 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Lewis US-NY-049 13.0 Location H L4611970 P 43.940282 -75.401446 2015-05-19 08:05:00 obsr417887 S23538504 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295056948 2021-03-26 07:20:31.408164 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 3 United States US New York US-NY Suffolk US-NY-103 30.0 41 Belton Road, Babylon L986538 P 40.6931311 -73.3296955 2015-02-05 07:00:00 obsr247620 S21688124 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305039860 2021-04-01 11:49:53.573686 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-03-24 07:20:00 obsr676630 S22498302 Rusty Blackbird Spring Migration Blitz P41 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312917642 2021-03-30 12:05:58.533651 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-25 16:00:00 obsr1189028 S23054985 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310231138 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-04-15 13:50:00 obsr2883698 S22877855 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306926107 2021-04-01 11:54:40.172593 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 25 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-02 08:30:00 obsr1620361 S22641791 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307845234 2015-04-05 20:53:41 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Onondaga US-NY-067 28.0 Tully Lakes L1129390 P 42.79011 -76.1278725 2015-04-04 16:20:00 obsr1178949 S22708016 Traveling P22 EBIRD 85.0 8.1 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305849010 2021-03-30 19:25:27.212017 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula N 2 United States US New York US-NY Richmond US-NY-085 30.0 Cameron Lake L1441085 H 40.6004365 -74.0804102 2015-03-28 13:25:00 obsr1893950 S22560335 Stationary P21 EBIRD 5.0 2.0 1 G1195281 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318356368 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park, Bow Bridge L3632730 P 40.77685 -73.97052 2015-05-10 09:15:00 obsr662550 S23370262 Traveling P22 EBIRD 140.0 3.058 7.0 1 G1263599 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307940184 2021-11-09 17:54:39.292468 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Dutchess US-NY-027 13.0 Hunns Lake L1131036 H 41.9032193 -73.6476231 2015-04-06 09:08:00 obsr1732267 S22715033 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315897929 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 26 United States US New York US-NY Nassau US-NY-059 30.0 Guggenheim Elementary School (Port Washington) L3554440 P 40.8510533 -73.6983597 2015-05-04 18:30:00 obsr2982024 S23231415 Traveling P22 EBIRD 70.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298713876 2021-04-26 04:57:02.963704 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-21 06:09:00 obsr1821546 S22000976 Traveling P22 EBIRD 212.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296235836 2015-02-12 09:17:37 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-02-12 08:55:00 obsr2172593 S21779726 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317145799 2021-11-09 18:13:28.75129 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Dutchess US-NY-027 13.0 Southlands Farm L1303953 P 41.885298 -73.9129043 2015-04-11 08:45:00 obsr1339050 S23303161 Traveling P22 EBIRD 165.0 2.414 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317467957 2021-03-19 16:02:45.308962 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.9026012 2015-05-09 08:30:00 obsr646558 S23321793 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312324507 2015-04-23 14:32:38 6616 species avibase-7E022378 Common Loon Gavia immer 1 Male, Adult (1) United States US New York US-NY Hamilton US-NY-041 14.0 Rt 30 - between Snowy Mt. Lodge Road & Perkins Clearing Road L3584827 P 43.6091152 -74.4171274 2015-04-22 17:55:00 obsr2694889 S23015244 Incidental P20 EBIRD 4.0 0 G1232824 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320108162 2022-01-12 18:14:50.403512 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail L212481 H 44.4128015 -74.121715 2015-05-16 07:30:00 obsr2161273 S23469610 Traveling P22 EBIRD 120.0 3.219 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295439033 2021-04-01 11:15:31.646886 3543 species avibase-8D3E8871 Chuck-will's-widow Antrostomus carolinensis 2 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-02-07 13:00:00 obsr1711339 S21717268 Traveling P22 EBIRD 60.0 0.402 5.0 1 G1138084 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319927691 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-15 09:40:00 obsr827632 S23459604 Traveling P22 EBIRD 230.0 7.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317585665 2018-08-04 17:15:25 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-09 05:45:00 obsr2504709 S23328944 Traveling P22 EBIRD 375.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311000985 2015-04-18 17:47:40 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Montgomery US-NY-057 13.0 Charleston State Forest, Gidley Rd L3573313 P 42.8026857 -74.3034534 2015-04-18 11:30:00 obsr286403 S22929545 Traveling P22 EBIRD 15.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308514445 2021-04-01 11:30:42.037277 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 Male, Adult (2) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-08 07:00:00 obsr1220115 S22758276 Traveling P22 EBIRD 120.0 2.414 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320729437 2015-05-17 21:18:14 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Chautauqua Summer House L330942 P 42.170002 -79.475503 2015-05-17 13:16:00 obsr1092576 S23501985 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301606079 2019-10-25 15:54:28 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 11 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-03-07 07:30:00 obsr2211750 S22225373 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289935232 2021-03-30 19:39:10.250398 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-01-08 08:00:00 obsr1494607 S21258658 Traveling P22 EBIRD 85.0 0.805 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299112876 2021-03-30 19:03:54.667077 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-02-22 12:34:00 obsr2343764 S22022782 Stationary P21 EBIRD 80.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304345125 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-03-21 07:20:00 obsr1154 S22445857 Traveling P22 EBIRD 104.0 1.609 4.0 1 G1186979 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310085839 2021-04-01 11:30:42.037277 5155 species avibase-4880DC55 Virginia Rail Rallus limicola 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-14 13:56:00 obsr139757 S22868119 Traveling P22 EBIRD 207.0 4.023 2.0 1 G1219940 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312007445 2021-04-01 11:49:53.573686 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 14 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-04-22 06:39:00 obsr2574755 S22994160 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323270115 2021-03-30 19:13:38.458673 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-26 11:47:00 obsr528918 S23657393 Traveling P22 EBIRD 140.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289327983 2021-11-09 18:36:27.898762 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 4 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-01-01 10:00:00 obsr1835267 S21210567 Traveling P22 EBIRD 180.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294882531 2021-04-01 11:54:40.172593 406 species avibase-27B2749A Wood Duck Aix sponsa 6 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-04 13:34:00 obsr1958124 S21672924 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296234478 2018-08-04 16:56:07 27616 species avibase-D77E4B41 American Robin Turdus migratorius 7 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River, Riverwalk Plaza L3479883 H 42.1255097 -77.961348 2015-02-11 16:30:00 obsr2700440 S21779596 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311661433 2022-02-18 10:47:29.953615 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-20 17:10:00 obsr1062070 S22971606 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305863480 2021-04-01 11:30:42.037277 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 8 United States US New York US-NY New York US-NY-061 30.0 Riverside Park--North of 96th St. L1018490 H 40.8073616 -73.9684904 2015-03-28 16:55:00 obsr2206421 S22561429 Traveling P22 EBIRD 38.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297202736 2021-03-26 06:29:14.715704 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Madison US-NY-053 13.0 2743 Perryville Road L3378274 P 43.0072106 -75.8072305 2015-02-14 08:00:00 obsr1139793 S21867025 Stationary P21 EBIRD 540.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307182036 2020-01-16 17:01:29 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Onondaga US-NY-067 13.0 US-NY-Baldwinsville-8898 Smokey Hollow Rd L3534922 P 43.211303 -76.342474 2015-04-03 12:12:00 obsr2172593 S22660998 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314859928 2021-03-24 19:48:44.880783 20829 species avibase-B9B272F4 Common Raven Corvus corax 6 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-05-02 08:33:00 obsr1124114 S23175137 Traveling P22 EBIRD 94.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306709818 2021-03-19 16:54:27.713469 526 species avibase-56CCA717 Northern Pintail Anas acuta 2 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Creek Aqueduct,Montgomery,County,N.Y. L3227871 P 42.9393967 -74.2905056 2015-04-01 10:45:00 obsr2590001 S22626067 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325186565 2021-03-19 16:44:35.607263 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-30 08:50:00 obsr2774009 S23789533 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313899414 2021-03-26 08:14:57.071052 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-04-28 08:20:00 obsr2918150 S23116098 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289852532 2018-08-04 16:52:55 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 12 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-01-08 11:27:00 obsr2914424 S21251889 Traveling P22 EBIRD 27.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303368966 2021-11-09 21:50:48.44865 6616 species avibase-7E022378 Common Loon Gavia immer X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-15 19:05:00 obsr1446126 S22369571 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309662584 2021-04-01 10:55:39.308231 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Unity Island (aka Squaw Is.)--North End L2036486 H 42.9321075 -78.9062977 2015-04-13 07:44:00 obsr502830 S22837231 Traveling P22 EBIRD 52.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303095054 2021-03-26 06:07:45.516082 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-03-14 15:00:00 obsr128156 S22348016 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306463761 2021-03-26 07:07:10.758746 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-31 06:49:00 obsr1958124 S22607113 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307447290 2021-03-23 17:26:08.495143 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-04 10:15:00 obsr247620 S22680183 Traveling P22 EBIRD 90.0 0.805 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS318167553 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-10 07:00:00 obsr2605333 S23359955 Traveling P22 EBIRD 180.0 3.219 16.0 1 G1275937 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293572532 2021-03-26 07:30:35.289997 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 25 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--F.R. Newman Arboretum L799199 H 42.4520722 -76.4572692 2015-01-27 14:45:00 obsr835300 S21568630 Stationary P21 EBIRD 10.0 2.0 1 G1126803 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312311106 2021-11-09 17:44:58.165123 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Dutchess US-NY-027 13.0 Feeder/yard observations L1072689 P 41.8611874 -73.6756039 2015-04-23 07:30:00 obsr1917973 S23014248 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297767344 2021-03-23 16:52:36.900075 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 24 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven, Old Stump Road L1796581 P 40.774188 -72.89986 2015-02-14 07:18:00 obsr613775 S21918559 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303650559 2021-03-23 17:23:45.772216 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-03-16 07:55:00 obsr72341 S22391795 Stationary P21 EBIRD 95.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295375194 2021-04-01 10:52:54.724403 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 59 United States US New York US-NY Columbia US-NY-021 13.0 North Stuyvesant Farmland L3344094 P 42.4521513 -73.7349987 2015-02-07 11:50:00 obsr440908 S21712084 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324013509 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 7 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-25 07:28:00 obsr1696616 S23708810 Traveling P22 EBIRD 75.0 0.8 2.0 1 G1296178 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289119793 2021-03-26 07:56:20.588749 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-01-04 12:05:00 obsr2206421 S21194357 Stationary P21 EBIRD 35.0 2.0 1 G1095766 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310303259 2015-04-15 19:48:21 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-15 17:50:00 obsr2214649 S22882797 Traveling P22 EBIRD 110.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297257738 2015-02-15 18:05:17 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Greene US-NY-039 13.0 Vosenkill Road, Athens L3379519 P 42.2535385 -73.8695812 2015-02-15 14:45:00 obsr352806 S21872168 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288549140 2021-03-24 19:47:16.07498 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Madison US-NY-053 28.0 Carpenter Rd. L3258432 P 42.7961722 -75.8109775 2015-01-02 09:00:00 obsr2223307 S21146858 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299575021 2021-04-01 11:15:31.646886 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus 6 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek--Leon S. Kaiser Park L1312993 H 40.5806115 -73.9979002 2015-02-25 10:15:00 obsr327318 S22070729 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298841707 2021-11-09 18:18:38.879665 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Dutchess US-NY-027 14.0 Reagan Road, Millerton, NY L1377289 P 41.9018398 -73.5172824 2015-02-20 16:30:00 obsr1062217 S22011470 Traveling P22 EBIRD 35.0 2.092 2.0 1 G1155859 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312747511 2021-11-15 03:06:58.889978 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-25 06:44:00 obsr1165633 S23045024 Traveling P22 EBIRD 213.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297453906 2021-03-24 20:06:25.370375 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Ontario US-NY-069 13.0 yard - 5030 Butler Rd. L824954 P 42.8530016 -77.2913074 2015-02-16 08:20:00 obsr983655 S21889162 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294327112 2021-04-01 11:30:42.037277 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-01 08:30:00 obsr2976 S21628222 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308114603 2021-04-01 10:58:47.067498 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-04-06 13:32:00 obsr2588479 S22727547 Traveling P22 EBIRD 76.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317103673 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-08 07:12:00 obsr1189081 S23301033 Traveling P22 EBIRD 129.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309938458 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-14 07:00:00 obsr2706811 S22857722 Traveling P22 EBIRD 120.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306774491 2018-08-04 17:04:57 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Oneida US-NY-065 13.0 Schneibles, South Bay, Oneida Lake L3529803 P 43.1649505 -75.7373106 2015-04-01 13:25:00 obsr1842004 S22630603 Stationary P21 EBIRD 20.0 3.0 1 G1200696 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS548577878 2018-08-04 17:05:15 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 25 United States US New York US-NY Jefferson US-NY-045 US-NY_759 13.0 Montario Point Rd., lookout L834019 H 43.6916264 -76.2018907 2015-04-03 15:00:00 obsr2188450 S40443428 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324089999 2018-08-06 22:29:40 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 5 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP - Yanty Creek Trail L269421 P 43.3618733 -77.9527094 2015-05-11 09:20:00 obsr2966702 S23713597 Traveling P22 EBIRD 90.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305876941 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 16 United States US New York US-NY Kings US-NY-047 Canarsie Pier L247765 H 40.6287773 -73.8836704 2015-03-28 08:05:00 obsr1668936 S22562402 Traveling P22 EBIRD 40.0 0.322 11.0 1 G1195440 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313491134 2021-03-26 06:29:56.44369 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-04-27 09:23:00 obsr934639 S23090284 Traveling P22 EBIRD 135.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332421515 2021-12-24 11:02:14.483178 662 species avibase-FB738385 Bufflehead Bucephala albeola 15 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-16 14:26:00 obsr334398 S24314064 Traveling P22 EBIRD 131.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305409731 2021-03-24 20:33:47.533911 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 36 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-03-26 11:05:00 obsr1006348 S22526924 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293570727 2021-09-08 04:42:53.165995 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 16 United States US New York US-NY New York US-NY-061 30.0 Sherman Creek Park and Swindler Cove L1018912 H 40.8580281 -73.921085 2015-01-27 10:00:00 obsr1135516 S21568475 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315017448 2022-03-06 22:19:43.839237 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY Hamilton US-NY-041 14.0 Ferd's Bog L109141 H 43.7886933 -74.749732 2015-05-02 08:05:00 obsr842638 S23183415 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310763970 2018-08-04 17:09:35 242 species avibase-D3A260BC Snow Goose Anser caerulescens 5 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-17 19:41:00 obsr589593 S22914461 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290135831 2021-11-09 22:29:08.190744 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Sullivan US-NY-105 28.0 Yankee Lake - my yard L1100954 P 41.5857896 -74.5484966 2015-01-10 07:30:00 obsr444155 S21274547 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310343661 2019-07-23 17:28:19 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr152435 S22885654 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305485189 2021-03-19 16:19:20.977326 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Erie US-NY-029 13.0 Woodlawn Beach SP L339875 H 42.790592 -78.850687 2015-03-22 16:10:00 obsr2597186 S22532925 Traveling P22 EBIRD 55.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300146616 2021-11-09 21:57:18.991937 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Ulster US-NY-111 28.0 Walkill River-- Gardiner L3446732 P 41.682894 -74.162051 2015-02-28 12:42:00 obsr2184966 S22115799 Traveling P22 EBIRD 90.0 0.161 2.0 1 G1163060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307705571 2018-08-04 17:05:21 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-04 09:00:00 obsr2692002 S22697869 Traveling P22 EBIRD 90.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303462211 2018-08-04 17:00:42 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-03-14 12:30:00 obsr317968 S22376829 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291470778 2018-08-04 16:53:31 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-17 14:49:00 obsr1165633 S21383073 Stationary P21 EBIRD 20.0 15.0 1 G1112539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311936641 2021-03-26 07:07:10.758746 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-21 16:55:00 obsr1958124 S22989483 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314194127 2021-03-26 07:30:35.289997 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca - 42.4487x-76.4594 - Apr 26, 2015, 9:13 AM L3591623 P 42.448744 -76.459388 2015-04-26 09:10:00 obsr1581960 S23134273 Traveling P22 EBIRD 78.0 1.609 4.0 1 G1243397 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295531634 2021-03-30 19:03:28.117389 303 species avibase-B59E1863 Canada Goose Branta canadensis N 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-02-08 10:33:00 obsr1092576 S21724693 Stationary P21 EBIRD 13.0 3.0 1 G1138931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308353891 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-05 12:56:00 obsr2233270 S22745854 Traveling P22 EBIRD 155.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290134081 2021-03-26 07:07:10.758746 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-10 07:25:00 obsr1958124 S21274362 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298929772 2021-03-24 20:21:40.993321 32578 species avibase-000482C9 Orchard Oriole Icterus spurius 9 United States US New York US-NY Seneca US-NY-099 13.0 Cove L678244 P 42.6487254 -76.8698493 2015-02-22 obsr2731440 S22018635 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308267888 2021-03-30 19:43:32.881136 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-04-07 10:00:00 obsr2924527 S22739432 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312546470 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 09:00:00 obsr2706811 S23030992 Traveling P22 EBIRD 120.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308745951 2021-04-01 11:47:43.260314 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 8 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-09 10:28:00 obsr2945658 S22776226 Stationary P21 EBIRD 419.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314050298 2021-04-01 10:47:08.851048 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Broome US-NY-007 28.0 Jones Park L1180843 P 42.0166518 -75.9677124 2015-04-29 08:00:00 obsr1826325 S23125443 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310413215 2015-04-16 11:26:48 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Monroe US-NY-055 13.0 117 Lyons Rd L154230 P 43.0025601 -77.6175928 2015-04-16 11:00:00 obsr270659 S22890504 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315309159 2021-11-09 18:56:49.988387 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 2 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies L428335 H 41.7861111 -73.7397222 2015-05-03 12:48:00 obsr1732267 S23199436 Stationary P21 EBIRD 12.0 2.0 1 G1249922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298546340 2020-03-22 07:58:01 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-02-20 06:51:00 obsr1696616 S21985891 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307298450 2018-08-04 17:05:02 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 S C2 S United States US New York US-NY Saratoga US-NY-091 13.0 Nolan Rd Boat Launch area L2850346 P 43.2708588 -73.6607444 2015-04-02 08:30:00 obsr2943723 S22669332 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300379349 2021-04-01 11:49:53.573686 591 species avibase-1929E1E1 Canvasback Aythya valisineria 2 United States US New York US-NY Queens US-NY-081 30.0 Rosie's Place-243 Beach 135th Street L869966 P 40.5751026 -73.8535845 2015-03-01 10:30:00 obsr604941 S22133904 Stationary P21 EBIRD 260.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308470511 2021-12-28 15:50:27.785498 6339 species avibase-8535345B Herring Gull Larus argentatus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-08 13:20:00 obsr606693 S22754759 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290199973 2021-04-01 11:15:31.646886 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-10 08:30:00 obsr1807494 S21280067 Traveling P22 EBIRD 300.0 4.828 3.0 1 G1103277 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316145048 2021-04-01 11:30:42.037277 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L785945 P 40.783661 -73.9633942 2015-05-05 07:30:00 obsr2883401 S23245574 Traveling P22 EBIRD 420.0 6.437 16.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322994235 2021-11-15 03:06:58.889978 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-25 06:00:00 obsr2848443 S23639506 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326329502 2019-03-17 16:38:55 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Essex US-NY-031 14.0 Chapamini Residence L2506431 P 43.820419 -73.493089 2015-05-17 05:15:00 obsr2398987 S23868568 Traveling P22 EBIRD 93.0 1.609 2.0 1 G3954751 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293121990 2021-03-24 20:33:47.533911 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-01-25 11:33:00 obsr887540 S21532931 Traveling P22 EBIRD 60.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299950955 2015-02-27 21:02:04 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Albany US-NY-001 13.0 Green Island--Hudson&Tibbitts L3294938 P 42.7492098 -73.6883926 2015-02-27 15:30:00 obsr2186523 S22099453 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301950150 2019-09-10 13:56:02 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 5 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-03-08 12:39:00 obsr354239 S22252452 Stationary P21 EBIRD 16.0 11.0 1 G1170856 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295162596 2021-03-26 07:07:10.758746 406 species avibase-27B2749A Wood Duck Aix sponsa N 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-06 07:27:00 obsr1958124 S21694809 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311781141 2021-04-01 11:30:42.037277 31491 species avibase-1B235E00 European Goldfinch Carduelis carduelis N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-04-19 18:45:00 obsr2072398 S22979252 Traveling P22 EBIRD 20.0 0.805 2.0 1 G1229929 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308664831 2018-08-04 17:08:13 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 16 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-09 13:15:00 obsr2001485 S22769422 Stationary P21 EBIRD 30.0 2.0 1 G1212287 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309023805 2021-04-01 12:18:57.910168 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 500 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-11 08:37:00 obsr1696616 S22796117 Traveling P22 EBIRD 34.0 3.219 2.0 1 G1214134 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300969224 2015-03-04 20:57:49 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 40 United States US New York US-NY Queens US-NY-081 30.0 John F Kennedy International Airport (JFK) L1051393 H 40.6448289 -73.783493 2015-03-02 obsr790510 S22176879 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296712471 2021-03-26 07:16:36.956617 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Schenectady US-NY-093 13.0 190 Birch Lane, Town of Glenville L2882674 P 42.878784 -73.910518 2015-02-14 11:22:00 obsr2937317 S21823437 Stationary P21 EBIRD 38.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314488494 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Arthur Ross Pinetum L826628 H 40.7835168 -73.9667 2015-04-30 16:00:00 obsr2277801 S23152647 Historical P62 EBIRD 45.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297321772 2015-02-15 20:09:40 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 15 United States US New York US-NY Oswego US-NY-075 13.0 Baum Road yard L266171 P 43.3412537 -76.1184204 2015-02-15 07:45:00 obsr979921 S21877913 Stationary P21 EBIRD 540.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299015221 2021-03-26 07:20:31.408164 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 2 United States US New York US-NY Suffolk US-NY-103 30.0 21 Kew Dr. (yard) L2379429 P 40.9582898 -72.9690624 2015-02-22 14:37:00 obsr2712298 S22025500 Stationary P21 EBIRD 18.0 2.0 1 G1156499 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293380630 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus N 35 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Cedar Hill L5197378 H 40.7770344 -73.9654146 2015-01-21 08:30:00 obsr1548221 S21552850 Traveling P22 EBIRD 5.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309121378 2021-11-09 18:33:00.40522 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 7 United States US New York US-NY Dutchess US-NY-027 13.0 Southlands L2422486 P 41.8864322 -73.9142561 2015-04-10 07:45:00 obsr671490 S22802171 Traveling P22 EBIRD 120.0 4.023 2.0 1 G1214451 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315484970 2021-03-19 16:44:35.607263 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-30 19:28:00 obsr334398 S23208806 Traveling P22 EBIRD 20.0 0.064 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322750572 2021-03-24 19:23:17.886063 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Harbor Marina (private) L632907 H 42.8396606 -76.6973591 2015-05-25 09:05:00 obsr887540 S23624278 Stationary P21 EBIRD 11.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304096113 2021-04-01 12:18:57.910168 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-03-19 16:58:00 obsr1655171 S22426661 Traveling P22 EBIRD 92.0 0.161 3.0 1 G1185375 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296021710 2016-01-27 10:55:33 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Saratoga US-NY-091 14.0 Town of Providence Private Home L2227285 P 43.0943112 -73.9951837 2015-02-03 09:00:00 obsr2660627 S21762837 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312689807 2021-03-26 07:17:57.136956 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 30 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-24 10:00:00 obsr982339 S23041222 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320247036 2018-08-06 22:29:50 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 4 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-13 10:30:00 obsr1079517 S23476572 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310300903 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-15 18:15:00 obsr2750470 S22882623 Traveling P22 EBIRD 1.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299330 2018-08-04 16:52:46 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 2 Male, Adult (2) United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-01-04 15:30:00 obsr317968 S21208053 Traveling P22 EBIRD 30.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313893301 2015-04-28 20:01:14 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Fuller Wetlands L1544410 H 42.4812919 -76.4510491 2015-04-28 10:00:00 obsr2430746 S23115751 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309675798 2021-11-09 18:16:49.161527 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 1 United States US New York US-NY Dutchess US-NY-027 13.0 Twin Island Lake L1363516 H 41.9803808 -73.6711214 2015-04-12 10:20:00 obsr2343626 S22838839 Stationary P21 EBIRD 10.0 2.0 1 G1217893 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321456554 2021-03-23 17:20:04.546757 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-14 10:30:00 obsr2475075 S23546625 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291722211 2021-03-26 08:14:57.071052 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Westchester US-NY-119 30.0 Westchester Cty - at large L3301468 P 40.9759635 -73.8407593 2015-01-17 obsr1850406 S21402525 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304714392 2018-08-04 17:02:29 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-03-22 14:45:00 obsr2071643 S22473212 Traveling P22 EBIRD 65.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS920857876 2020-05-13 10:59:24 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 2 United States US New York US-NY Oswego US-NY-075 US-NY-Pulaski-3256 County Rte 15 L3508939 P 43.631669 -76.188137 2015-03-23 10:32:00 obsr2720788 S68975299 Stationary P21 EBIRD 28.0 1.0 1 G5326544 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291892981 2021-11-09 17:50:47.161496 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Kennels Road, Millbrook,NY L1098136 P 41.822438 -73.6316156 2015-01-16 07:50:00 obsr1062217 S21415584 Traveling P22 EBIRD 10.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307849862 2022-02-17 14:32:23.002448 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-05 15:14:00 obsr2404047 S22708328 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295620396 2021-04-01 12:45:19.712958 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-02-08 13:00:00 obsr2207991 S21731642 Traveling P22 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308145699 2021-11-09 21:35:18.646328 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-06 16:40:00 obsr1110743 S22729819 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298039844 2021-11-09 18:34:57.804398 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-02-17 13:30:00 obsr1264675 S21942654 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288228404 2021-04-01 11:49:53.573686 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 3 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-01-01 15:56:00 obsr2574755 S21119927 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308118864 2022-03-05 22:03:50.715584 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-06 09:00:00 obsr2219590 S22727866 Traveling P22 EBIRD 135.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423179 2021-04-01 11:24:19.637193 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 30 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-24 12:28:00 obsr1846130 S24163340 Traveling P22 EBIRD 378.0 9.656 4.0 1 G1337409 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315001426 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 14:30:00 obsr1135516 S23182528 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS454841051 2021-04-01 12:12:56.033907 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 Male, Adult (1) United States US New York US-NY Steuben US-NY-101 28.0 Robie Street, Bath L1985415 P 42.3437961 -77.3205543 2015-04-12 08:12:00 obsr677629 S33479121 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304170477 2018-08-04 17:02:03 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-03-20 08:32:00 obsr1828453 S22432367 Stationary P21 EBIRD 17.0 2.0 1 G1185811 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295350036 2021-03-30 19:43:32.881136 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 11 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-07 10:50:00 obsr1327349 S21710190 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324198882 2021-03-26 06:21:54.883933 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-31 11:49:00 obsr1189028 S23720605 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322374494 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-23 06:50:00 obsr2449897 S23602579 Traveling P22 EBIRD 120.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294910640 2016-09-12 10:27:59 279 species avibase-3E04020B Brant Branta bernicla 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-31 10:00:00 obsr2475075 S21674948 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318929410 2021-03-23 17:18:00.959502 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 20 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-12 08:57:00 obsr1201479 S23402598 Traveling P22 EBIRD 146.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305379266 2018-08-04 17:02:54 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 2 United States US New York US-NY Greene US-NY-039 13.0 Coxsackie Boat Launch L474746 H 42.3533746 -73.7957346 2015-03-26 09:03:00 obsr2321296 S22524630 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288591935 2021-03-30 19:42:48.727031 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 100 United States US New York US-NY Rensselaer US-NY-083 13.0 Tomhannock Reservoir L213216 H 42.8487622 -73.548707 2015-01-02 08:50:00 obsr1735540 S21150363 Traveling P22 EBIRD 30.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319005284 2021-04-01 10:47:08.851048 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus X United States US New York US-NY Broome US-NY-007 28.0 Murphy's Gravel Pit L1167821 P 42.1038265 -75.9965515 2015-05-12 10:30:00 obsr1826325 S23406810 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322590912 2021-03-24 19:48:44.880783 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-24 08:19:00 obsr1243175 S23614526 Traveling P22 EBIRD 180.0 1.609 4.0 1 G1287746 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS302415557 2015-03-11 09:01:53 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-10 13:30:00 obsr1735540 S22295277 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311572582 2021-04-01 11:49:53.573686 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N X United States US New York US-NY Queens US-NY-081 30.0 Kissena Park L491873 H 40.7462409 -73.8080852 2015-04-13 07:47:00 obsr2233270 S22964866 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307131578 2021-11-09 18:56:49.988387 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 4 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies L428335 H 41.7861111 -73.7397222 2015-04-03 06:45:00 obsr423422 S22657524 Traveling P22 EBIRD 105.0 4.828 2.0 1 G1202457 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310896003 2021-03-23 17:00:13.087107 303 species avibase-B59E1863 Canada Goose Branta canadensis N 3 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom37 L3513979 H 42.6057548 -76.3543007 2015-04-18 12:06:00 obsr1696616 S22923046 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310777189 2019-04-19 13:17:53 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-17 17:45:00 obsr30103 S22915325 Traveling P22 EBIRD 25.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289245155 2021-11-09 20:38:35.618233 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Putnam US-NY-079 28.0 Mahopac L123681 T 41.37229 -73.73348 2015-01-03 07:00:00 obsr1502560 S21203705 Traveling P22 EBIRD 450.0 9.656 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294679631 2021-03-26 08:14:57.071052 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-02-02 08:30:00 obsr2918150 S21655893 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309510088 2021-03-30 19:29:33.633096 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-11 09:30:00 obsr2852365 S22827112 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322976249 2015-05-28 08:22:29 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY New York US-NY-061 30.0 Lower East Side, around my building L815807 P 40.7158811 -73.9877835 2015-05-25 16:30:00 obsr1758291 S23638410 Area P23 EBIRD 90.0 1.2141 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309646957 2021-11-09 19:47:29.45622 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Winding Waters Trail (NY) L2393335 H 41.2878143 -74.5339547 2015-04-12 17:30:00 obsr2054320 S22836236 Traveling P22 EBIRD 180.0 0.644 2.0 1 G1219457 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315302638 2021-11-09 19:02:27.638861 7011 species avibase-534FB490 Northern Gannet Morus bassanus 3 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-05-03 09:30:00 obsr2103727 S23199136 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313725358 2021-03-23 16:21:52.613913 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe N 2 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-04-28 07:03:00 obsr606693 S23105001 Traveling P22 EBIRD 19.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305564258 2021-03-30 19:37:33.521815 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-03-19 16:27:00 obsr211814 S22538923 Traveling P22 EBIRD 86.0 0.805 3.0 1 G1193977 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290388433 2021-04-01 11:15:31.646886 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps X United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-01-11 11:15:00 obsr2499879 S21295618 Stationary P21 EBIRD 5.0 2.0 1 G1105021 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295428594 2021-04-01 11:15:31.646886 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 6 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek L845821 H 40.5811388 -73.9927912 2015-02-07 09:45:00 obsr1077730 S21716194 Traveling P22 EBIRD 145.0 2.575 5.0 1 G1137824 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317293649 2022-02-17 14:32:23.002448 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-08 15:30:00 obsr1801902 S23311235 Traveling P22 EBIRD 80.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289676565 2015-01-07 12:50:10 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-07 10:35:00 obsr1711339 S21237990 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315802508 2021-03-26 07:56:20.588749 8099 form avibase-65613235 Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (abieticola) Buteo jamaicensis abieticola 3 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-04 12:35:00 obsr647628 S23226083 Traveling P22 EBIRD 90.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307855027 2015-04-05 21:19:03 337 species avibase-694C127A Mute Swan Cygnus olor 7 United States US New York US-NY Albany US-NY-001 13.0 52 Craven RD L2678285 P 42.7167502 -74.1020107 2015-04-05 12:13:00 obsr648176 S22708676 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309851914 2015-04-13 20:45:47 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 5 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-12 09:00:00 obsr1736113 S22851399 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308358102 2018-08-04 17:08:01 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson River Park (private) L3498350 H 43.2032416 -76.2825651 2015-04-07 18:04:00 obsr2224244 S22746175 Stationary P21 EBIRD 115.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317095128 2021-09-03 19:22:31.034431 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-05-08 08:35:00 obsr2497657 S23300568 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310109094 2021-04-01 12:40:54.473014 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 13 Female, Adult (5); Male, Adult (8) United States US New York US-NY Saratoga US-NY-091 13.0 Saratoga Lake Marine Park L2461422 H 43.0533404 -73.71987 2015-04-14 17:42:00 obsr1222746 S22869724 Rusty Blackbird Spring Migration Blitz P41 EBIRD 18.0 0.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319549485 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 20 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 06:42:00 obsr187432 S23438418 Traveling P22 EBIRD 260.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288684643 2021-03-22 09:17:32.016297 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-01-03 09:00:00 obsr666964 S21157516 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318836135 2015-05-11 23:42:42 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Herkimer US-NY-043 13.0 Carlson Road - NE L766953 P 43.115356 -74.7912419 2015-05-11 13:23:00 obsr1000124 S23397081 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318657877 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L2846580 P 40.7769505 -73.9707327 2015-05-09 07:00:00 obsr1336375 S23386722 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298928917 2021-03-26 07:07:10.758746 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-02-22 09:45:00 obsr1958124 S22018566 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322763321 2018-08-06 22:31:05 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-25 07:33:00 obsr334398 S23625063 Traveling P22 EBIRD 8.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313248696 2021-11-09 20:39:07.000763 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Putnam US-NY-079 28.0 Fred Dill Wildlife Sanctuary--Carmel Marsh L1354703 H 41.4225272 -73.6721431 2015-04-26 11:07:00 obsr2798434 S23074792 Traveling P22 EBIRD 30.0 0.805 2.0 1 G1237532 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320100654 2018-08-06 22:30:06 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-16 07:46:00 obsr1097423 S23469271 Traveling P22 EBIRD 156.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319976008 2021-04-01 10:51:06.899622 279 species avibase-3E04020B Brant Branta bernicla 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-05-15 08:40:00 obsr1380963 S23462196 Traveling P22 EBIRD 45.0 9.656 1.0 1 G1272454 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309866208 2021-03-30 19:07:52.958398 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-13 09:15:00 obsr2363365 S22852456 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309557435 2021-03-26 06:29:56.44369 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-04-12 12:35:00 obsr2504709 S22830312 Traveling P22 EBIRD 25.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322476628 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-23 14:00:00 obsr1250490 S23608247 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296395979 2021-11-09 22:04:47.967972 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-11 10:19:00 obsr1595836 S21794706 Stationary P21 EBIRD 86.0 3.0 1 G1144505 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315674731 2021-03-19 15:59:05.496822 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-05-03 15:00:00 obsr1210649 S23219219 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316072538 2015-05-05 11:27:55 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Greene US-NY-039 13.0 Hannacroix Creek Preserve L340471 H 42.4622196 -73.7930478 2015-05-05 09:40:00 obsr1181085 S23241785 Traveling P22 EBIRD 107.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302823036 2019-07-23 17:27:54 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-03-12 14:34:00 obsr745890 S22326297 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310855522 2018-08-04 17:09:36 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 thacher marsh L2786248 P 42.64246 -74.01607 2015-04-18 05:50:00 obsr777630 S22920444 Traveling P22 EBIRD 180.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307538080 2021-04-01 11:15:31.646886 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-04 12:15:00 obsr2078092 S22686305 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309016501 2021-03-23 17:00:13.087107 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Drake Rd., Lansing L366342 H 42.5309152 -76.5116 2015-04-11 08:05:00 obsr711169 S22795613 Stationary P21 EBIRD 10.0 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306472289 2018-08-04 17:04:48 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-03-30 17:05:00 obsr317968 S22607753 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295548668 2018-08-04 16:55:53 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Podell Boardwalk (0.08 km) L1075029 P 42.4782515 -76.4511698 2015-02-08 09:19:00 obsr2307843 S21725950 Traveling P22 EBIRD 5.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303693273 2019-05-15 10:19:40 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 1 United States US New York US-NY Tompkins US-NY-109 13.0 Handshaw Rd south of Niemi Rd L3494659 P 42.4993456 -76.4309621 2015-03-16 19:04:00 obsr881968 S22395114 Stationary P21 EBIRD 10.0 4.0 0 G1183238 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303205484 2015-03-21 04:20:56 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Monroe US-NY-055 13.0 West Ridge Plaza, Greece L2998752 H 43.2040106 -77.6430658 2015-01-31 16:19:00 obsr334398 S22356321 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288159201 2021-04-01 12:14:19.266649 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree SP L283564 H 40.6394313 -73.2644575 2015-01-01 10:00:00 obsr1489009 S21114189 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314497831 2020-01-16 17:00:56 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-30 20:00:00 obsr2504709 S23153204 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310948470 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 08:22:00 obsr150415 S22926277 Traveling P22 EBIRD 302.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307426062 2018-08-04 17:05:23 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-04 10:55:00 obsr204036 S22678740 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321874638 2021-03-26 06:17:19.712573 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-18 11:00:00 obsr1379161 S23572590 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304499926 2015-03-21 20:27:29 337 species avibase-694C127A Mute Swan Cygnus olor 15 United States US New York US-NY Rensselaer US-NY-083 US-NY_789 13.0 Schodack Island SP IBA L274767 H 42.5005866 -73.7751512 2015-03-21 09:29:00 obsr440908 S22457312 Traveling P22 EBIRD 300.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312033201 2015-04-22 10:10:42 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Schuyler US-NY-097 US-NY_845 13.0 Finger Lakes NF--Potomac Rd north of Picnic Area Rd L3575637 P 42.498251 -76.789199 2015-04-22 08:18:00 obsr1092576 S22995943 Traveling P22 EBIRD 19.0 4.828 3.0 1 G1231210 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321348504 2015-05-20 17:56:54 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.3458884 -76.710341 2015-05-18 16:00:00 obsr1633923 S23539776 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312457295 2021-04-01 11:15:31.646886 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 08:40:00 obsr1601967 S23024348 Traveling P22 EBIRD 295.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290203336 2021-04-01 11:54:40.172593 303 species avibase-B59E1863 Canada Goose Branta canadensis 20 United States US New York US-NY Richmond US-NY-085 30.0 Van Name-Van Pelt Cove L1393163 H 40.6371191 -74.1532295 2015-01-10 13:32:00 obsr1958124 S21280370 Stationary P21 EBIRD 8.0 2.0 1 G1103714 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301372435 2015-03-07 11:57:41 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Washington US-NY-115 13.0 County rt 59 L3461028 P 42.9699895 -73.4604692 2015-03-04 08:30:00 obsr634484 S22208188 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303265909 2022-03-05 22:03:50.715584 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-15 09:30:00 obsr1544235 S22361121 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288521624 2018-08-04 16:52:31 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 4 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-01-02 14:12:00 obsr502830 S21144330 Traveling P22 EBIRD 78.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314994422 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 06:25:00 obsr2514491 S23182158 Traveling P22 EBIRD 413.0 8.047 4.0 1 G1247369 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312638405 2021-03-19 16:02:45.308962 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Broome US-NY-007 28.0 murphys pit L3587710 P 42.101771 -76.0039705 2015-04-24 10:00:00 obsr1573028 S23037592 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291592705 2018-08-04 16:53:31 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-17 15:00:00 obsr620377 S21392489 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309617135 2021-03-26 08:14:57.071052 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-04-11 09:15:00 obsr2918150 S22834169 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309538710 2021-03-24 19:35:34.045988 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-12 09:31:00 obsr2324853 S22829039 Traveling P22 EBIRD 270.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314558708 2021-04-01 11:30:42.037277 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 06:30:00 obsr2598985 S23157116 Traveling P22 EBIRD 150.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314374712 2021-03-30 19:37:33.521815 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP, Sodus L712218 H 43.2673188 -77.0297813 2015-04-28 17:33:00 obsr408487 S23145107 Traveling P22 EBIRD 45.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288249215 2021-11-09 21:56:49.41688 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Ulster US-NY-111 US-NY_816 13.0 Ashokan Reservoir L3254278 P 41.95032 -74.20728 2015-01-01 15:15:00 obsr1482758 S21121698 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311831740 2021-03-24 20:33:47.533911 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-21 12:50:00 obsr1655171 S22982763 Traveling P22 EBIRD 16.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300005303 2021-03-30 19:37:33.521815 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Wayne US-NY-117 West Port Bay, point L499899 H 43.3036947 -76.8433571 2015-02-17 13:03:00 obsr1721609 S22103748 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321236776 2018-08-04 17:27:59 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 1 United States US New York US-NY Fulton US-NY-035 13.0 Montana rd. Fulton, N.Y. L2960889 P 43.0620842 -74.679147 2015-05-19 11:45:00 obsr2590001 S23533250 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS798334185 2019-08-25 22:35:21 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 12 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-C L3288894 P 40.16935 -73.1073 2015-01-11 10:00:00 obsr2686964 S59266080 Traveling P22 EBIRD 60.0 16.254 44.0 1 G1108335 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310091781 2021-04-01 11:30:42.037277 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-14 15:18:00 obsr150865 S22868531 Traveling P22 EBIRD 221.0 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289960999 2021-03-26 07:07:10.758746 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N 6 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-01-08 01:52:00 obsr1032565 S21260707 Traveling P22 EBIRD 91.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216020 2021-03-19 16:06:54.047432 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 10 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr1655171 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302137390 2021-04-01 11:15:31.646886 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-09 17:30:00 obsr1382841 S22266714 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316472620 2021-03-26 07:56:20.588749 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota N 5 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-06 08:45:00 obsr2172113 S23264864 Traveling P22 EBIRD 120.0 3.219 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315223194 2021-11-09 18:34:29.37445 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Dutchess Rail Trail--Lake Walton L2605402 H 41.5916805 -73.8271787 2015-05-03 07:30:00 obsr2452484 S23195131 Traveling P22 EBIRD 100.0 2.414 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313100190 2021-03-22 09:17:32.016297 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-26 07:25:00 obsr666964 S23066137 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289356688 2021-11-09 19:48:28.372144 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region L2435862 P 41.3374945 -74.4715548 2015-01-05 09:30:00 obsr444155 S21212725 Traveling P22 EBIRD 270.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290583703 2018-08-04 16:53:11 447 species avibase-C235A4D7 Gadwall Mareca strepera 60 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-01-11 15:40:00 obsr528918 S21311189 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319149066 2018-08-04 17:12:13 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 30 United States US New York US-NY Jefferson US-NY-045 US-NY_778 13.0 Perch River WMA L253293 H 44.0861979 -75.9664464 2015-04-25 13:30:00 obsr585290 S23415397 Traveling P22 EBIRD 60.0 22.531 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312562449 2021-04-01 12:14:19.266649 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-24 08:00:00 obsr247620 S23031980 Traveling P22 EBIRD 210.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321624965 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-05-19 11:25:00 obsr2259263 S23556923 Traveling P22 EBIRD 45.0 1.609 2.0 1 G1281359 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319657377 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 19 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 05:50:00 obsr150865 S23444413 Traveling P22 EBIRD 360.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308208262 2018-08-04 17:06:19 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 8 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-07 07:03:00 obsr1222746 S22734969 Rusty Blackbird Spring Migration Blitz P41 EBIRD 77.0 1.046 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299655275 2020-09-05 16:15:36 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-01-31 07:45:00 obsr2409011 S22076959 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294322311 2022-02-18 10:47:29.953615 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 5 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-02-01 08:46:00 obsr1062070 S21627838 Stationary P21 EBIRD 84.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308963399 2021-12-08 07:58:41.562209 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-04 13:25:00 obsr756196 S22791811 Traveling P22 EBIRD 80.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311235264 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park L139800 H 43.0211215 -77.5739871 2015-04-19 08:00:00 obsr137150 S22943868 Traveling P22 EBIRD 130.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291400273 2022-02-17 14:32:23.002448 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-17 07:30:00 obsr2152799 S21377226 Traveling P22 EBIRD 69.0 1.609 1.0 1 G1113759 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292540015 2019-05-29 16:43:27 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 16 United States US New York US-NY Tompkins US-NY-109 13.0 Salt Point Natural Area L353038 H 42.5394116 -76.5496267 2015-01-21 14:50:00 obsr881968 S21487056 Stationary P21 EBIRD 10.0 3.0 1 G1118988 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311301140 2021-03-30 18:54:05.959583 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.8768877 -73.7898123 2015-04-19 07:40:00 obsr876649 S22947881 Traveling P22 EBIRD 220.0 4.828 3.0 1 G1226792 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314063088 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-29 07:56:00 obsr152435 S23126268 Traveling P22 EBIRD 286.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298635071 2021-04-01 12:32:15.282601 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-20 14:35:00 obsr2902954 S21993598 Traveling P22 EBIRD 40.0 1.609 2.0 1 G1154238 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307136109 2015-04-03 11:21:51 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Steuben US-NY-101 28.0 Home L211141 P 42.1402153 -76.97072 2015-04-03 09:30:00 obsr562284 S22657853 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304963686 2021-04-01 11:15:31.646886 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 4 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-03-23 14:30:00 obsr2448957 S22492122 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320373529 2021-03-30 19:07:52.958398 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus N 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 09:17:00 obsr150415 S23483050 Traveling P22 EBIRD 170.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319947873 2015-05-15 18:54:22 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Genesee US-NY-037 13.0 US-NY-Batavia-9299-9399 Cone Dorman Rd L1586160 P 42.958858 -78.203547 2015-05-15 13:50:00 obsr393804 S23460660 Traveling P22 EBIRD 80.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309667219 2021-11-09 19:49:09.316529 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 90 United States US New York US-NY Orange US-NY-071 28.0 Montgomery L2680387 P 41.5263147 -74.2366791 2015-04-10 14:15:00 obsr564905 S22837523 Incidental P20 EBIRD 2.0 0 G1218112 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290976633 2021-04-01 11:30:42.037277 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Cedar Hill L5197378 H 40.7770344 -73.9654146 2015-01-14 08:28:00 obsr1548221 S21342792 Traveling P22 EBIRD 8.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312806006 2021-03-24 20:33:47.533911 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 5 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-25 11:20:00 obsr59643 S23048658 Traveling P22 EBIRD 100.0 1.609 2.0 1 G1235120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316686442 2021-11-09 17:43:05.347258 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Dutchess US-NY-027 28.0 Brothers Rd - Depot Hill L1034813 P 41.5944317 -73.6783826 2015-05-04 16:30:00 obsr1732267 S23277439 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290221150 2017-11-08 15:12:44 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Suffolk US-NY-103 Cedar Beach, Town of Brookhaven L834922 H 40.9648162 -73.039813 2015-01-10 10:45:00 obsr2448785 S21281961 Stationary P21 EBIRD 20.0 2.0 1 G1103548 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302826700 2021-04-01 10:57:06.520339 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-03-13 07:37:00 obsr2420101 S22326562 Traveling P22 EBIRD 95.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312430930 2021-11-09 18:32:19.761913 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Dutchess US-NY-027 13.0 Montgomery Place L2260390 P 42.0129612 -73.9184618 2015-04-22 09:00:00 obsr2753438 S23022560 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295824736 2021-03-26 06:17:19.712573 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 5 United States US New York US-NY Erie US-NY-029 13.0 Home L2093742 P 42.7338768 -78.7242615 2015-02-09 15:30:00 obsr916033 S21747021 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291814504 2021-03-26 07:52:59.845315 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-16 08:07:00 obsr316199 S21409673 Area P23 EBIRD 85.0 2.59 2.0 1 G1114850 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294422525 2021-04-01 11:30:42.037277 657 species avibase-B7B1A5DD Black Scoter Melanitta americana X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-01 10:30:00 obsr609516 S21635720 Traveling P22 EBIRD 210.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304761860 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-03-22 15:40:00 obsr2206421 S22476618 Traveling P22 EBIRD 80.0 1.609 2.0 1 G1189345 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309536036 2021-03-30 19:43:32.881136 456 species avibase-D201EB72 American Wigeon Mareca americana 18 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-04-12 15:00:00 obsr1160328 S22828898 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292948050 2021-03-24 20:33:47.533911 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 3 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-01-24 15:17:00 obsr730231 S21519255 Stationary P21 EBIRD 29.0 2.0 1 G1121223 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304242164 2018-08-04 17:02:07 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Saratoga US-NY-091 13.0 Saratoga Spa SP L283793 H 43.0507487 -73.8046006 2015-03-20 13:30:00 obsr1121454 S22438112 Traveling P22 EBIRD 120.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301032871 2019-07-23 17:27:38 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-03-04 16:10:00 obsr2914424 S22181519 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309377091 2022-03-05 22:03:50.715584 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 8 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-12 08:00:00 obsr2219590 S22818792 Traveling P22 EBIRD 210.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312940663 2021-03-24 19:24:40.212356 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 10 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 16:02:00 obsr1655171 S23056438 Stationary P21 EBIRD 75.0 3.0 1 G1240632 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318299357 2021-03-19 16:27:31.421791 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Onondaga Trail L157279 H 43.12222 -78.36889 2015-05-10 11:25:00 obsr916033 S23367067 Traveling P22 EBIRD 219.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289892318 2021-10-03 11:22:58.518171 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--scrub W of maint. bldgs L1350743 H 40.512992 -74.2150962 2015-01-08 16:08:00 obsr1958124 S21255290 Traveling P22 EBIRD 3.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295502325 2021-03-23 17:00:13.087107 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-02-08 07:01:00 obsr1092576 S21722357 Traveling P22 EBIRD 28.0 0.161 1.0 1 G1138712 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323249930 2021-03-19 16:44:35.607263 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 3 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-05-26 15:25:00 obsr934639 S23656116 Traveling P22 EBIRD 24.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318106964 2021-03-24 19:57:24.612804 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-10 09:12:00 obsr2313260 S23356955 Traveling P22 EBIRD 190.0 1.609 20.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313310537 2022-03-05 22:03:50.715584 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-26 08:30:00 obsr2211514 S23078668 Traveling P22 EBIRD 270.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319497170 2021-03-24 19:35:34.045988 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-14 06:58:00 obsr502830 S23435391 Traveling P22 EBIRD 97.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311244200 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-19 05:45:00 obsr478499 S22944423 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302395190 2021-03-26 07:56:20.588749 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-07 14:55:00 obsr856524 S22293743 Traveling P22 EBIRD 50.0 0.483 3.0 1 G1634057 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870236 2015-03-08 21:09:52 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Cayuga US-NY-011 28.0 US-NY-Cortland-1309-1311 E Lake Rd L1892323 P 42.679629 -76.301994 2015-01-11 10:47:00 obsr34822 S22246830 Stationary P21 EBIRD 20.0 3.0 1 G1106107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312799917 2015-04-25 13:00:39 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 7 United States US New York US-NY Suffolk US-NY-103 30.0 Big Fresh Pond L3589148 P 40.9221306 -72.4212635 2015-04-25 11:10:00 obsr1864342 S23048314 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306948491 2021-04-01 12:18:57.910168 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 3 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: home to Cayuga L: Cass Pk - AHTreman SMP L365140 P 42.4586739 -76.5173721 2015-04-02 09:04:00 obsr2760150 S22643571 Traveling P22 EBIRD 173.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297624328 2021-03-24 20:33:47.533911 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 2 United States US New York US-NY Tompkins US-NY-109 13.0 Commonland L3386224 P 42.4250974 -76.4682481 2015-02-14 14:15:00 obsr919918 S21904837 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316810499 2021-04-01 11:24:19.637193 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Hamlin-1026-1046 County Rd 211 L3619477 P 43.350623 -77.948858 2015-05-07 07:00:00 obsr334398 S23284450 Traveling P22 EBIRD 48.0 0.451 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319893338 2021-04-28 04:45:49.288633 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Jamaica Bay Wildlife Refuge West Pond (Kings Co.) L2181169 P 40.6167378 -73.8346267 2015-05-15 10:30:00 obsr1407710 S23457755 Traveling P22 EBIRD 135.0 3.219 2.0 1 G1272074 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308095580 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Kings US-NY-047 Brooklyn Army Terminal Pier 4 L2598864 H 40.646519 -74.026074 2015-04-06 11:30:00 obsr263005 S22726130 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295460297 2021-03-23 16:45:39.358281 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY St. Lawrence US-NY-089 US-NY_802 13.0 Robert Moses SP, Massena L664990 H 44.9950405 -74.7988701 2015-02-06 15:10:00 obsr199715 S21718969 Stationary P21 EBIRD 60.0 2.0 1 G1138274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314147574 2018-08-04 17:12:42 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-04-29 09:52:00 obsr2756208 S23131304 Traveling P22 EBIRD 91.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306911650 2021-03-26 08:14:57.071052 505 species avibase-C732CB10 American Black Duck Anas rubripes N 3 United States US New York US-NY Westchester US-NY-119 30.0 Wilton L963070 P 41.0891766 -73.8526082 2015-02-03 14:00:00 obsr1538953 S22640713 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307375500 2021-04-01 12:18:57.910168 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 23 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-04-04 09:32:00 obsr1696616 S22675081 Traveling P22 EBIRD 17.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS413655411 2018-07-18 09:17:46 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Washington US-NY-115 13.0 number one* L4474356 P 43.0320392 -73.3304465 2015-03-22 15:10:00 obsr2664629 S30354517 Stationary P21 EBIRD 15.0 4.0 0 G3350045 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307759287 2021-03-30 19:29:33.633096 11494 species avibase-20C2214E American Kestrel Falco sparverius 8 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-05 12:30:00 obsr247620 S22701767 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292528074 2021-03-23 16:48:08.60516 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Main Pool L99388 H 42.9796604 -76.7437077 2015-01-21 16:20:00 obsr2744341 S21486071 Stationary P21 EBIRD 75.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308722232 2021-03-23 16:39:03.255227 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 20 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-04-09 11:25:00 obsr155915 S22774344 Traveling P22 EBIRD 17.0 0.644 2.0 1 G1212577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292112814 2022-02-17 14:32:23.002448 26890 species avibase-94A44032 European Starling Sturnus vulgaris 23 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-20 08:22:00 obsr1605975 S21433100 Traveling P22 EBIRD 180.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319531590 2015-05-14 11:11:58 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Albany US-NY-001 US-NY_863 13.0 Voorheesville, 54-98 Meadowdale Road L3534490 P 42.66238 -73.98421 2015-05-14 07:00:00 obsr777630 S23437394 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313715478 2017-08-16 17:09:26 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-27 09:00:00 obsr979921 S23104363 Stationary P21 EBIRD 420.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288955306 2021-03-23 17:00:13.087107 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 85 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-01 08:00:00 obsr39511 S21181251 Stationary P21 EBIRD 210.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300004495 2021-03-26 07:30:35.289997 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 8 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-28 09:20:00 obsr800690 S22103661 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299609538 2021-04-01 11:24:19.637193 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) X United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-02-25 17:15:00 obsr2223307 S22073588 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312478866 2021-03-23 16:30:20.514143 11528 species avibase-F3DA111C Merlin Falco columbarius 1 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3586351 P 43.429016 -75.903778 2015-04-24 08:00:00 obsr1477887 S23025840 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290909757 2018-08-04 16:53:11 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 17:00:00 obsr2918150 S21337430 Traveling P22 EBIRD 30.0 4.828 44.0 1 G1108343 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313494046 2015-04-27 12:00:56 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 Mashomack Preserve L122936 H 41.0562576 -72.2896713 2015-04-27 11:15:00 obsr613775 S23090476 Traveling P22 EBIRD 42.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300133994 2021-04-01 12:11:50.996293 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Seneca US-NY-099 13.0 Seybolt Road, N of Bait Ponds L882643 H 42.8684157 -76.7654228 2015-02-28 16:05:00 obsr606693 S22114609 Traveling P22 EBIRD 45.0 7.966 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306421271 2021-03-23 17:22:05.708166 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 23 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-26 07:17:00 obsr316199 S22603421 Area P23 EBIRD 75.0 2.59 2.0 1 G1198836 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304581633 2021-03-26 06:39:43.334073 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-03-21 15:15:00 obsr1548221 S22463383 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297807719 2021-11-09 22:45:30.412639 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 40 United States US New York US-NY Sullivan US-NY-105 28.0 Wayne county, Pennsylvania, US L3384108 P 41.8143142 -74.74823 2015-02-16 07:30:00 obsr2845684 S21922366 Stationary P21 EBIRD 300.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310553268 2021-03-19 16:19:20.977326 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-16 14:05:00 obsr319738 S22900507 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310536808 2021-03-30 19:39:10.250398 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-04-16 08:00:00 obsr1494607 S22899395 Traveling P22 EBIRD 145.0 1.609 17.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291450041 2015-01-17 13:48:08 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-17 13:38:00 obsr1958124 S21381378 Traveling P22 EBIRD 2.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312076412 2021-03-23 17:20:04.546757 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-04-21 10:30:00 obsr2475075 S22998563 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306057008 2015-03-29 14:58:19 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Rensselaer US-NY-083 13.0 West Sand Lake, NY 1 L1766939 P 42.6226389 -73.6175931 2015-03-29 14:20:00 obsr2186523 S22575542 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300023445 2021-04-01 11:42:15.525388 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Niagara US-NY-063 13.0 Niagara Falls SP L918348 H 43.0863978 -79.0690431 2015-02-28 10:31:00 obsr2497657 S22105428 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319420311 2021-04-01 11:15:31.646886 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 3 United States US New York US-NY Kings US-NY-047 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L3640607 P 40.6155949 -73.8359737 2015-05-12 07:51:00 obsr2363365 S23430781 Traveling P22 EBIRD 190.0 4.023 4.0 1 G1269800 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319092183 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-12 06:31:00 obsr2595828 S23412311 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384317 2021-03-26 06:07:26.162322 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-01-11 08:30:00 obsr2700440 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290410597 2021-03-26 07:56:20.588749 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 25 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-11 11:28:00 obsr2394424 S21297305 Traveling P22 EBIRD 106.0 3.219 2.0 1 G1105520 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315852398 2021-11-09 17:58:40.313796 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-04 08:30:00 obsr1917973 S23228793 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300116271 2021-03-24 19:42:42.07177 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-28 09:05:00 obsr2908667 S22113417 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316127004 2021-04-01 11:30:42.037277 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 09:30:00 obsr2387618 S23244680 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294925995 2015-02-04 17:40:00 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Columbia US-NY-021 14.0 Taconic State Park near Rte 22 X Rte 3 L3338624 P 42.0757372 -73.5326743 2015-02-04 10:10:00 obsr2855945 S21676970 Traveling P22 EBIRD 80.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290723659 2021-03-26 06:59:15.841579 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 4 United States US New York US-NY Oswego US-NY-075 13.0 Fulton L194313 T 43.32287 -76.41716 2015-01-11 10:30:00 obsr438598 S21322677 Stationary P21 EBIRD 200.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288559266 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-01-02 13:00:00 obsr1489009 S21147711 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289084546 2022-03-06 12:39:33.700954 11371 species avibase-75600969 Northern Flicker Colaptes auratus 40 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-01-03 14:00:00 obsr1494607 S21191589 Traveling P22 EBIRD 20.0 0.322 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324566310 2021-03-26 06:52:34.887371 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-04-21 10:00:00 obsr2141910 S23744956 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313583572 2021-03-26 07:20:31.408164 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-04-26 07:00:00 obsr1592950 S23095819 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307954083 2021-11-09 21:19:57.847424 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Ulster US-NY-111 28.0 Tricor Ave L1153679 P 41.7441655 -74.0853979 2015-04-05 17:00:00 obsr2434888 S22716200 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309409818 2021-04-01 12:18:57.910168 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Tompkins US-NY-109 13.0 Newman Municipal Golf Course L2158758 H 42.4561318 -76.5052153 2015-04-12 13:48:00 obsr1655171 S22820800 Traveling P22 EBIRD 5.0 0.322 2.0 1 G1219989 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312825341 2021-03-24 20:49:55.752669 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-04-25 13:45:00 obsr1721609 S23049662 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305684113 2015-03-27 20:53:18 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Almond-2771 Karr Valley Rd L3518995 P 42.299904 -77.88355 2015-03-27 16:52:00 obsr1092576 S22548219 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308144429 2021-11-20 09:27:15.03549 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Creekwalk, Hiawatha Blvd. to lake L3077756 H 43.0668233 -76.1751186 2015-02-06 12:30:00 obsr786804 S22729724 Stationary P21 EBIRD 60.0 20.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298598869 2021-03-30 19:39:10.250398 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-02-20 12:00:00 obsr1102914 S21990856 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295313583 2021-03-26 07:07:10.758746 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-07 07:10:00 obsr1958124 S21706889 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290029737 2015-01-09 15:26:55 26278 species avibase-A381417F House Wren Troglodytes aedon 3 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3279851 P 43.429016 -75.903778 2015-01-09 15:07:00 obsr1477887 S21266273 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314420928 2021-03-26 08:05:20.615241 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Stewardship Garden L2227469 P 43.0410348 -76.2129699 2015-04-30 17:31:00 obsr1698011 S23148005 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306079746 2021-04-01 11:58:54.966271 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 72 United States US New York US-NY St. Lawrence US-NY-089 13.0 Waddington Town Boat Ramp L1016787 H 44.8679831 -75.1937395 2015-03-29 09:36:00 obsr1558090 S22577289 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322962166 2018-08-04 17:30:10 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Herkimer US-NY-043 US-NY_864 14.0 ALC - Chambers/Second Bisby L3673123 P 43.5938195 -74.9396324 2015-05-24 11:00:00 obsr2369945 S23637503 Traveling P22 EBIRD 120.0 1.609 2.0 1 G1289886 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293226139 2021-04-01 10:55:39.308231 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-01-25 11:41:00 obsr916033 S21540970 Stationary P21 EBIRD 22.0 14.0 1 G1123069 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308641088 2021-03-30 12:05:58.533651 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-09 09:30:00 obsr2750470 S22767754 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291964728 2021-03-30 19:06:31.183757 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) X United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP--Beaver Island L1781444 H 42.9603249 -78.9603013 2015-01-19 13:20:00 obsr1092576 S21421364 Traveling P22 EBIRD 40.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313568380 2021-11-09 19:13:30.171485 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 12 United States US New York US-NY Dutchess US-NY-027 28.0 Home Acre, Fishkill L763458 P 41.5211579 -73.8836306 2015-04-27 12:00:00 obsr1259654 S23094875 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288895105 2021-04-01 12:32:15.282601 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 15 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-02 15:10:00 obsr1615708 S21176722 Traveling P22 EBIRD 25.0 3.219 2.0 1 G1094189 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307945351 2015-04-06 09:45:44 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Jefferson US-NY-045 US-NY_759 13.0 town of Henderson L2581573 P 43.8398738 -76.2979889 2015-04-05 14:15:00 obsr585290 S22715503 Traveling P22 EBIRD 20.0 12.875 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318178398 2021-03-24 19:48:44.880783 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Durand-Eastman Park--Zoo Rd. L139792 H 43.2279443 -77.557404 2015-05-10 06:55:00 obsr302343 S23360541 Traveling P22 EBIRD 170.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317635159 2021-11-09 18:47:10.142806 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Dutchess US-NY-027 13.0 off Kansas Rd, Clinton L3617395 P 41.8924253 -73.8331997 2015-04-27 08:15:00 obsr191447 S23331563 Traveling P22 EBIRD 195.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315645221 2021-03-26 07:20:31.408164 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_766 30.0 Caumsett State Park L1289051 P 40.9301152 -73.4676361 2015-04-25 09:00:00 obsr2934754 S23217604 Traveling P22 EBIRD 240.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303655792 2020-03-15 09:14:53 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-03-15 15:00:00 obsr319738 S22392224 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307400124 2015-04-04 11:32:11 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Westchester US-NY-119 30.0 27 Lower Trinity Pass Road L2848325 P 41.1858142 -73.5501737 2015-04-04 09:21:00 obsr2844530 S22676971 Stationary P21 EBIRD 131.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288794010 2021-04-01 12:32:15.282601 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--West Bath House L807105 H 40.5936046 -73.5142422 2015-01-03 07:20:00 obsr2505956 S21166606 Traveling P22 EBIRD 240.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311730708 2021-03-26 07:30:35.289997 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-04-20 09:00:00 obsr2137468 S22976058 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316198531 2021-04-01 12:32:15.282601 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Lido Beach Passive Nature Area L723695 H 40.5923663 -73.5957384 2015-05-05 14:00:00 obsr547602 S23248700 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322782957 2021-11-09 18:56:49.988387 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 5 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies L428335 H 41.7861111 -73.7397222 2015-05-25 07:43:00 obsr1433400 S23626283 Traveling P22 EBIRD 45.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294027952 2021-11-09 17:43:04.343771 303 species avibase-B59E1863 Canada Goose Branta canadensis 18 United States US New York US-NY Dutchess US-NY-027 28.0 Red Wing Pond, Beekman L1034656 H 41.6005643 -73.7231211 2015-01-30 13:45:00 obsr1732267 S21604707 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309948960 2021-04-01 11:14:02.420281 454 species avibase-15EE0D36 Eurasian Wigeon Mareca penelope N 1 United States US New York US-NY Jefferson US-NY-045 13.0 West Carthage, NY ( vicinity) L1579261 P 43.9691016 -75.645775 2015-02-22 08:00:00 obsr2251037 S22858447 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324283255 2020-06-27 08:18:11 11371 species avibase-75600969 Northern Flicker Colaptes auratus 3 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.3458884 -76.710341 2015-05-31 09:40:00 obsr979921 S23726108 Stationary P21 EBIRD 125.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321448278 2021-03-26 06:12:17.833181 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot--Lighthouse L404931 H 42.4929459 -79.3538404 2015-05-16 14:00:00 obsr2155111 S23546198 Traveling P22 EBIRD 150.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313719362 2021-03-19 16:02:45.308962 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 6 United States US New York US-NY Broome US-NY-007 28.0 Tri-City Airport L2347159 H 42.08439 -76.093867 2015-04-28 06:23:00 obsr1764243 S23104600 Traveling P22 EBIRD 25.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310385882 2021-03-24 20:03:01.953443 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Niagara US-NY-063 13.0 Krull County Park L1248204 H 43.3349979 -78.7086467 2015-04-12 07:35:00 obsr1243175 S22888659 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302149835 2021-03-19 16:44:35.607263 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-03-08 09:00:00 obsr1245041 S22267534 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299408208 2015-05-28 16:01:22 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Schoharie US-NY-095 28.0 42.5771x-74.2781 - Schoharie Co NY L3436890 P 42.577099 -74.278122 2015-02-18 12:57:00 obsr2268588 S22057783 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309868012 2021-03-31 04:04:22.116638 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Peconic river,calverton L2770249 P 40.902258 -72.7517653 2015-04-13 15:00:00 obsr2011512 S22852604 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288741188 2021-03-24 20:23:39.258075 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Suffolk US-NY-103 30.0 Staller Drive L2618497 P 40.8661125 -72.6181121 2015-01-03 13:00:00 obsr1736113 S21162324 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320893299 2018-08-06 22:30:28 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-18 07:30:00 obsr1830659 S23511085 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311902075 2020-06-20 20:01:51 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Chenango US-NY-017 US-NY_2780 28.0 Long Pond SF--Rt. 41 fishing access L3074026 H 42.422518 -75.851062 2015-04-21 11:27:00 obsr1303581 S22987124 Stationary P21 EBIRD 25.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319789729 2021-11-09 17:50:20.071794 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook School Road, Millbrook, NY L1098111 P 41.8453963 -73.6169815 2015-05-15 06:15:00 obsr2175245 S23452289 Traveling P22 EBIRD 150.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298722343 2015-02-21 17:47:30 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Bradfield Hall, Tower Road, Cornell University L3404422 P 42.44763 -76.47596 2015-02-21 10:02:00 obsr1062070 S22001773 Traveling P22 EBIRD 33.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292259926 2015-01-21 09:32:16 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Erie US-NY-029 13.0 Pleasant Ave L1817453 P 42.7266285 -78.8960089 2015-01-21 09:29:00 obsr548442 S21443977 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309932892 2021-03-26 08:14:57.071052 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 16 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-04-13 08:20:00 obsr206659 S22857291 Traveling P22 EBIRD 150.0 2.414 20.0 1 G1218134 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310987474 2021-11-09 18:46:28.080147 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY Dutchess US-NY-027 13.0 pond- intersection of Gretna Rd. and Netherwood Rd. Hyde Park, N L3573745 P 41.7864491 -73.8488317 2015-04-18 16:57:00 obsr1442681 S22928659 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313882352 2018-08-04 17:12:39 591 species avibase-1929E1E1 Canvasback Aythya valisineria 4 United States US New York US-NY Chautauqua US-NY-013 13.0 College Lodge SUNY L2220962 H 42.3440743 -79.4279337 2015-04-28 17:45:00 obsr2343764 S23115075 Traveling P22 EBIRD 90.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311232926 2021-11-15 03:06:58.889978 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-19 10:00:00 obsr585997 S22943730 Traveling P22 EBIRD 105.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309544262 2021-11-09 18:33:30.126308 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Salt Point Turnpike L2464748 P 41.8167451 -73.7772918 2015-04-12 11:00:00 obsr1917973 S22829427 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295442009 2021-11-09 20:12:16.773384 406 species avibase-27B2749A Wood Duck Aix sponsa 1 Male, Adult (1) United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-02-07 07:42:00 obsr1912104 S21717497 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310495256 2021-03-24 19:35:34.045988 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island Marsh L3568350 P 42.9622229 -78.9626992 2015-04-16 14:30:00 obsr2082724 S22896431 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310038521 2021-03-23 17:38:38.809066 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Schuyler US-NY-097 US-NY_845 13.0 Finger Lakes NF--Ballard Pond L782293 H 42.5279345 -76.7877173 2015-04-14 14:10:00 obsr2260025 S22864726 Traveling P22 EBIRD 45.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303084690 2015-03-14 16:20:43 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 50 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-03-14 13:30:00 obsr2893884 S22347244 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291199528 2021-04-01 12:35:52.669792 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N X United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--Liverpool Marina L837889 H 43.1007479 -76.2093687 2015-01-15 14:45:00 obsr979921 S21360942 Traveling P22 EBIRD 25.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315905970 2021-03-19 16:19:20.977326 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo--Mirror Lake L2809120 H 42.9268351 -78.8632295 2015-05-04 08:00:00 obsr1054748 S23231890 Traveling P22 EBIRD 129.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292672721 2021-03-19 16:19:20.977326 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Erie US-NY-029 13.0 Lakeside Cemetery L3328549 P 42.757102 -78.8730705 2015-01-22 15:05:00 obsr916033 S21497543 Stationary P21 EBIRD 48.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332427235 2021-04-27 11:51:18.575108 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--South Marina L458871 H 43.3060838 -77.7083373 2015-04-26 17:13:00 obsr334398 S24314401 Traveling P22 EBIRD 9.0 0.241 2.0 1 G6615586 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310956174 2021-03-26 07:42:06.558742 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 4 United States US New York US-NY Washington US-NY-115 13.0 New Swamp Rd. L3805899 H 43.3275378 -73.5075903 2015-04-18 12:51:00 obsr1222746 S22926770 Traveling P22 EBIRD 36.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301853743 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-03-08 15:30:00 obsr152435 S22245540 Traveling P22 EBIRD 60.0 1.207 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298964323 2017-03-04 12:52:49 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 10 United States US New York US-NY Yates US-NY-123 13.0 Canandaigua Lake, Vine Valley L845804 H 42.723056 -77.327013 2015-02-22 10:15:00 obsr2979658 S22021369 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299067467 2021-04-01 12:32:15.282601 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-22 16:25:00 obsr1488063 S22031593 Traveling P22 EBIRD 80.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313459178 2021-03-30 19:43:32.881136 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 2 United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-04-27 08:00:00 obsr2924527 S23088409 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291866694 2017-09-06 17:53:41 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Wayne US-NY-117 13.0 Chimney Bluffs SP L217010 H 43.28386 -76.9222569 2015-01-18 14:00:00 obsr642516 S21413629 Traveling P22 EBIRD 28.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1201348109 2021-07-15 20:52:33.500659 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 13 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-26 13:20:00 obsr2155450 S91810093 Traveling P22 EBIRD 105.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295074118 2021-03-26 06:29:56.44369 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-02-02 08:30:00 obsr2759466 S21689539 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309130403 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 06:15:00 obsr876649 S22802746 Traveling P22 EBIRD 465.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309677691 2018-08-04 17:09:00 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-04-13 09:39:00 obsr1958124 S22838969 Traveling P22 EBIRD 8.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298480823 2021-03-24 20:16:00.852773 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Richmond US-NY-085 Spanish Camp, Former L2020727 H 40.5244998 -74.1713405 2015-02-19 11:12:00 obsr1893950 S21980820 Traveling P22 EBIRD 10.0 0.322 2.0 1 G1153096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292123602 2021-03-23 17:00:13.087107 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-01-20 12:45:00 obsr1092576 S21433966 Stationary P21 EBIRD 13.0 2.0 1 G1117544 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324178193 2021-11-15 03:06:58.889978 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-30 09:00:00 obsr1734972 S23719327 Traveling P22 EBIRD 90.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315881937 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 06:04:00 obsr150415 S23230526 Traveling P22 EBIRD 419.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304061230 2021-03-30 19:07:52.958398 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-19 08:00:00 obsr2363365 S22424011 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315739685 2021-12-08 07:58:41.562209 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-04 07:11:00 obsr2054320 S23222759 Traveling P22 EBIRD 349.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316132357 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-05-05 13:30:00 obsr1223279 S23244943 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320715082 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 11:30:00 obsr1706920 S23501093 Area P23 EBIRD 220.0 14.5687 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312005452 2021-07-29 22:35:11.278451 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-21 obsr1220115 S22993999 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313347052 2018-08-04 17:12:16 7662 species avibase-5F8E7CA8 Golden Eagle Aquila chrysaetos 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-25 16:05:00 obsr34822 S23080926 Traveling P22 EBIRD 16.0 4.828 3.0 1 G1238407 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296687818 2019-10-25 15:51:29 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY St. Lawrence US-NY-089 13.0 home L1850306 P 44.6162578 -74.8236293 2015-02-14 10:00:00 obsr2834886 S21821042 Stationary P21 EBIRD 15.0 2.0 1 G1145490 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324240247 2021-04-01 11:15:31.646886 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 2 H C2 H Male, Adult (2) United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-31 08:24:00 obsr924076 S23723330 Traveling P22 EBIRD 270.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307018761 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-04-02 17:24:00 obsr1154 S22649056 Traveling P22 EBIRD 78.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311275534 2015-04-19 14:43:19 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 12 United States US New York US-NY Warren US-NY-113 13.0 Hudson Pointe Nature Preserve L747069 H 43.2806421 -73.6998081 2015-04-08 10:10:00 obsr2019190 S22946424 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311173333 2021-03-26 07:17:57.136956 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Meadows Wetland Preserve ADA Trail L1041887 P 42.9425384 -76.8184662 2015-04-19 08:30:00 obsr204036 S22940148 Traveling P22 EBIRD 20.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318057276 2018-08-04 17:13:08 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 10 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery L3630355 P 42.9238118 -78.8653994 2015-04-30 09:00:00 obsr1470817 S23354430 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311925170 2021-03-26 08:13:27.160698 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Tioga US-NY-107 28.0 Day Hollow Rd. pond, Owego L2347084 H 42.107698 -76.183497 2015-04-21 07:25:00 obsr1318356 S22988699 Traveling P22 EBIRD 9.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323396451 2021-11-09 19:19:19.10935 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Dutchess US-NY-027 13.0 Ferncliff Forest L912597 H 41.9581817 -73.9246845 2015-05-06 07:00:00 obsr1339050 S23665856 Traveling P22 EBIRD 300.0 4.828 17.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313426200 2021-11-09 20:16:57.783257 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Orange US-NY-071 28.0 Kenridge Farm L616768 H 41.4216515 -74.0352345 2015-04-26 10:30:00 obsr2546791 S23086410 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319500011 2020-03-15 09:14:53 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-12 17:25:00 obsr736608 S23435590 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307938666 2021-04-01 11:30:42.037277 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-06 06:47:00 obsr1433400 S22714934 Traveling P22 EBIRD 110.0 4.345 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288750789 2021-11-09 18:17:28.944709 483 species avibase-85625D75 Mallard Anas platyrhynchos N 8 United States US New York US-NY Dutchess US-NY-027 13.0 Stissing Pond L1363612 H 41.9692413 -73.670132 2015-01-03 11:30:00 obsr237150 S21163082 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310066189 2018-08-04 17:09:10 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 9 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-New Haven- Kibby Rd - Home (Private) L5185742 P 43.449899 -76.30402 2015-04-14 16:11:00 obsr2945658 S22866726 Traveling P22 EBIRD 142.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323630002 2021-11-09 18:13:18.910524 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Dutchess US-NY-027 28.0 I-84 -westbound ramp/US 9 L1292357 P 41.5255195 -73.891232 2015-05-28 15:00:00 obsr1259654 S23681862 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320575286 2018-08-06 22:30:12 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Albany US-NY-001 13.0 Deer Mt. Nature Trail L561077 H 42.4965307 -73.8529566 2015-05-16 11:51:00 obsr2512689 S23493760 Traveling P22 EBIRD 54.0 1.609 2.0 1 G1276036 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289176172 2021-03-30 19:39:10.250398 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Nassau US-NY-059 30.0 Saint Johns Pond Sanctuary L123034 H 40.85417 -73.46333 2015-01-04 15:45:00 obsr1488063 S21198652 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311103444 2021-03-30 19:43:32.881136 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Westchester US-NY-119 30.0 Bronx River Pkwy Reservation--Crestwood Lake L1813563 H 40.9564597 -73.8252433 2015-04-18 09:00:00 obsr258560 S22936117 Traveling P22 EBIRD 90.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308908498 2021-03-24 20:33:47.533911 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Beebe Lake/Mundy Wildflower Garden L2357812 P 42.450265 -76.473142 2015-04-10 12:15:00 obsr2137468 S22787776 Traveling P22 EBIRD 70.0 5.729 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309173567 2021-03-30 19:07:52.958398 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 07:15:00 obsr2078092 S22805701 Traveling P22 EBIRD 360.0 4.828 25.0 1 G1214819 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292937961 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-24 12:00:00 obsr2105033 S21518431 Traveling P22 EBIRD 70.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307054828 2021-04-01 10:44:41.995232 11371 species avibase-75600969 Northern Flicker Colaptes auratus 4 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-04-02 07:45:00 obsr2700440 S22651780 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318052384 2021-04-01 11:30:42.037277 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 2 United States US New York US-NY New York US-NY-061 30.0 High Line Park--30th-34th St. L2823726 H 40.7555387 -74.0056057 2015-05-10 09:32:00 obsr1364812 S23354141 Traveling P22 EBIRD 61.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309712398 2021-11-09 19:49:09.316529 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 5 United States US New York US-NY Orange US-NY-071 28.0 Montgomery L2680387 P 41.5263147 -74.2366791 2015-04-10 13:28:00 obsr1987335 S22841186 Stationary P21 EBIRD 42.0 3.0 1 G1218113 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308017331 2018-08-04 17:05:41 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Suffolk US-NY-103 30.0 Bay Shore--Home L3172551 P 40.7209654 -73.279742 2015-04-06 07:00:00 obsr1987335 S22720328 Stationary P21 EBIRD 120.0 2.0 1 G1208137 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291636303 2021-03-26 07:52:40.224846 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 1 United States US New York US-NY Fulton US-NY-035 13.0 8 Vanwyck St., Gloversville,N.Y.home L2979968 P 43.0465382 -74.339983 2015-01-18 11:20:00 obsr2590001 S21396167 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309723114 2018-12-20 18:41:52 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-04-13 08:00:00 obsr214789 S22841889 Traveling P22 EBIRD 90.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316781706 2021-03-19 16:54:27.713469 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 4 United States US New York US-NY Montgomery US-NY-057 13.0 Touareuna Rd, west L3555994 P 42.9209407 -74.0884018 2015-05-07 06:20:00 obsr1918430 S23282955 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307585252 2021-03-23 17:00:13.087107 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Tompkins US-NY-109 13.0 932-934 East Shore Drive, 904-1048 New York 34 L3539191 P 42.46623 -76.49996 2015-04-04 18:14:00 obsr2632928 S22689792 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311187740 2021-03-26 06:21:54.883933 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 10:16:00 obsr152435 S22941051 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288542903 2015-01-02 17:00:20 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Delaware US-NY-025 28.0 Franklin Mt. L3070813 P 42.42539 -75.04694 2015-01-02 12:00:00 obsr1049575 S21146289 Stationary P21 EBIRD 165.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319704178 2021-03-26 06:29:56.44369 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas N 2 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-14 09:09:00 obsr2595828 S23447141 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320538158 2021-03-26 07:56:20.588749 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-15 09:45:00 obsr2129334 S23491756 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302918527 2018-08-04 16:59:52 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP--Lakeshore E of Creek L633467 H 42.5451843 -76.5957087 2015-03-13 15:00:00 obsr2260025 S22333759 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320563964 2021-11-09 18:47:29.90468 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Shunpike (RT57) from Rt44 to Rt 82 L3650369 P 41.829305 -73.7041426 2015-05-16 14:40:00 obsr2175245 S23493127 Traveling P22 EBIRD 85.0 13.679 3.0 1 G1275186 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312472429 2021-04-01 11:49:53.573686 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 1 United States US New York US-NY Queens US-NY-081 30.0 Ridgewood Reservoir L393007 H 40.688969 -73.8863182 2015-04-24 06:35:00 obsr2574755 S23025404 Traveling P22 EBIRD 39.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307494252 2021-04-01 11:24:19.637193 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-04-02 07:57:00 obsr2173269 S22683395 Traveling P22 EBIRD 294.0 1.609 3.0 1 G1202288 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299115754 2021-12-03 21:50:44.732892 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-02-21 11:55:00 obsr1032565 S22035691 Traveling P22 EBIRD 115.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312083317 2021-03-23 17:00:13.087107 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-22 12:48:00 obsr2001485 S22998979 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309939391 2015-04-14 09:36:29 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla X United States US New York US-NY Onondaga US-NY-067 13.0 Long Branch Park L985141 H 43.1175253 -76.2495911 2015-04-14 09:00:00 obsr2172593 S22857788 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296547578 2021-11-09 19:34:18.590596 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 23 Female, Unknown Age (10); Male, Unknown Age (13) United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-02-13 14:30:00 obsr1665312 S21808644 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324526210 2021-03-23 17:22:05.708166 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 3 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-30 08:35:00 obsr1000124 S23742062 Area P23 EBIRD 70.0 2.59 2.0 1 G1299632 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321191481 2021-03-19 16:02:45.308962 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L195519 P 42.0961408 -76.0479164 2015-05-19 09:00:00 obsr1947568 S23530427 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314884135 2015-05-02 11:15:07 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-02 08:50:00 obsr1764243 S23176339 Traveling P22 EBIRD 143.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292809404 2021-04-01 10:44:41.995232 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 15 Female, Adult (7); Male, Adult (8) United States US New York US-NY Allegany US-NY-003 28.0 Island Park, Wellsville L3479880 H 42.116922 -77.9449514 2015-01-23 16:05:00 obsr2700440 S21508312 Traveling P22 EBIRD 7.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305684651 2021-12-23 15:00:47.137144 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-03-26 19:15:00 obsr1598543 S22548250 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305206442 2018-08-04 17:02:42 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_808 Jamesport Town Beach L1156958 P 40.9417378 -72.5690317 2015-03-23 19:05:00 obsr2528068 S22511006 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1068491700 2021-04-01 10:55:39.308231 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-16 08:30:00 obsr2155450 S80650147 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317607071 2018-08-04 17:15:28 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 07:00:00 obsr376929 S23330088 Traveling P22 EBIRD 210.0 4.828 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332421919 2021-03-30 19:13:38.458673 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-16 07:07:00 obsr334398 S24314079 Traveling P22 EBIRD 185.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304476283 2021-03-30 19:29:33.633096 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 28 United States US New York US-NY Suffolk US-NY-103 30.0 Chandler Estate L1355478 H 40.9559916 -73.0192018 2015-03-21 16:00:00 obsr2338506 S22455630 Traveling P22 EBIRD 60.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300678502 2021-03-24 19:47:16.07498 11431 issf avibase-ABF6C3C4 Crested Caracara Caracara plancus Crested Caracara (Northern) Caracara plancus [cheriway Group] 2 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-02-27 07:39:00 obsr589593 S22154822 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312776225 2017-08-16 17:08:46 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus X United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 11:55:00 obsr1092576 S23046771 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311004461 2021-03-24 20:33:47.533911 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 7 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--F.R. Newman Arboretum L799199 H 42.4520722 -76.4572692 2015-04-18 17:02:00 obsr1092576 S22929761 Traveling P22 EBIRD 54.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290436306 2021-04-01 12:14:19.266649 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Suffolk US-NY-103 30.0 Avalon Gardens and East Farm Preserve L525770 H 40.9118667 -73.1454921 2015-01-11 09:40:00 obsr1848026 S21299338 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316198127 2015-05-05 18:04:24 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Pond House L3573738 P 42.6579532 -74.0361866 2015-05-05 06:30:00 obsr1635947 S23248680 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314650916 2021-04-01 12:32:15.282601 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-01 08:20:00 obsr904434 S23162385 Traveling P22 EBIRD 130.0 2.253 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313346182 2018-08-04 17:12:17 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Knox-Marsellus Marsh L1280877 H 43.0076202 -76.7529774 2015-04-25 16:47:00 obsr2255296 S23080872 Stationary P21 EBIRD 49.0 3.0 1 G1238403 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310645704 2021-03-26 06:20:10.658048 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Headquarters L153039 H 43.112325 -78.4048443 2015-04-17 11:13:00 obsr2588479 S22906641 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS925703287 2021-03-26 06:39:43.334073 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 07:00:00 obsr1012618 S69257740 Historical P62 EBIRD 600.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307965835 2021-04-01 11:47:43.260314 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Oswego US-NY-075 13.0 Oswego Harbor/neighborhood area L3543189 P 43.4618834 -76.5094113 2015-04-04 14:40:00 obsr1321679 S22717016 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319881234 2021-04-01 11:30:42.037277 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-15 09:56:00 obsr2802585 S23457123 Traveling P22 EBIRD 230.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292264207 2021-03-26 07:16:36.956617 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 6 United States US New York US-NY Schenectady US-NY-093 13.0 Niskayuna Railroad Station at Lions Park L505923 H 42.7776374 -73.823356 2015-01-21 09:15:00 obsr2321296 S21444353 Traveling P22 EBIRD 52.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314474238 2018-04-16 15:51:00 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-30 20:04:00 obsr589593 S23151706 Stationary P21 EBIRD 10.0 3.0 1 G1245675 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304390886 2021-03-26 07:07:10.758746 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Richmond US-NY-085 30.0 Lemon Creek, bridge at Hylan Blvd. L916052 H 40.517649 -74.2011237 2015-03-21 09:57:00 obsr1958124 S22449418 Traveling P22 EBIRD 5.0 0.322 2.0 1 G1186869 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312251099 2021-03-26 06:09:25.361188 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-04-23 07:40:00 obsr879105 S23010402 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310484008 2015-04-16 17:16:35 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 5 United States US New York US-NY Columbia US-NY-021 13.0 Omi L3568248 P 42.342492 -73.6793804 2015-04-16 08:00:00 obsr349211 S22895639 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302471514 2021-11-15 03:06:58.889978 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-10 17:00:00 obsr2072398 S22299420 Traveling P22 EBIRD 75.0 1.609 2.0 1 G1175051 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290959655 2021-11-09 18:20:17.959026 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Dutchess US-NY-027 28.0 Poughquag L1423725 P 41.6253863 -73.6893688 2015-01-01 10:20:00 obsr2343626 S21341485 Traveling P22 EBIRD 5.0 4.828 2.0 1 G1108979 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295053471 2015-02-05 19:16:42 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 25 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-02-05 15:36:00 obsr2343764 S21687795 Stationary P21 EBIRD 35.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295766321 2015-02-09 11:02:37 681 species avibase-407E2CA8 Common Merganser Mergus merganser 15 United States US New York US-NY Washington US-NY-115 13.0 Granville L131798 T 43.4078712 -73.259552 2015-02-09 06:30:00 obsr2196530 S21742511 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307148425 2018-10-06 16:50:39 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 6 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--East Rd. L99686 H 43.009646 -76.7582003 2015-04-03 12:02:00 obsr613775 S22658713 Stationary P21 EBIRD 13.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307032075 2021-03-23 16:48:08.60516 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Seneca US-NY-099 13.0 US-NY-Seneca Falls-2168-2178 Lake Rd L2713634 P 42.920063 -76.749082 2015-04-02 18:34:00 obsr1092576 S22650015 Stationary P21 EBIRD 12.0 3.0 1 G1202713 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319395241 2021-03-23 17:21:37.486392 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 3 United States US New York US-NY Fulton US-NY-035 13.0 County Rte. - 120 L641872 P 43.073026 -74.7566414 2015-05-13 08:04:00 obsr1000124 S23429303 Traveling P22 EBIRD 6.0 3.219 3.0 1 G1269949 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301280017 2021-03-26 06:12:17.833181 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-03-05 12:00:00 obsr479109 S22199919 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308978817 2021-11-09 19:57:48.795138 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 1 United States US New York US-NY Orange US-NY-071 28.0 River Rd., Montgomery L3555349 H 41.5441694 -74.2160477 2015-04-10 13:55:00 obsr1181085 S22792870 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305783063 2021-04-01 12:32:15.282601 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-28 10:30:00 obsr2207991 S22555571 Traveling P22 EBIRD 120.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302142978 2021-03-23 17:21:08.587586 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Delaware US-NY-025 28.0 Cannonsville Reservoir, below dam L2384574 H 42.0740489 -75.3954708 2015-03-09 08:26:00 obsr1788273 S22267083 Traveling P22 EBIRD 41.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323570495 2021-04-01 11:15:31.646886 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-28 10:00:00 obsr2363365 S23677990 Traveling P22 EBIRD 110.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292704850 2021-03-30 19:29:33.633096 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus X United States US New York US-NY Suffolk US-NY-103 30.0 Hook Pond L283133 H 40.9461611 -72.1907833 2015-01-22 16:15:00 obsr1488063 S21500069 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304137838 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 14 Male, Adult (11); Female, Adult (3) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-16 08:19:00 obsr1548221 S22429844 Traveling P22 EBIRD 61.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288562258 2021-04-01 12:32:15.282601 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N 45 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-02 13:30:00 obsr544268 S21147949 Traveling P22 EBIRD 90.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304364599 2015-03-21 11:14:58 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Chenango US-NY-017 28.0 Rogers Environmental Center, Sherbur L389586 P 42.6822461 -75.5122948 2015-03-21 10:30:00 obsr259062 S22447390 Traveling P22 EBIRD 40.0 0.402 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303514710 2021-03-26 07:53:57.664705 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Livingston US-NY-051 13.0 Twin Cedars Environmental Area (DEC pond), Avon L800055 H 42.9002384 -77.6689625 2015-03-16 13:20:00 obsr1060479 S22381592 Traveling P22 EBIRD 24.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289099573 2021-03-26 06:29:14.715704 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis N 2 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-01-03 09:30:00 obsr589593 S21192747 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308251577 2018-08-04 17:04:45 303 species avibase-B59E1863 Canada Goose Branta canadensis 20 United States US New York US-NY Oswego US-NY-075 13.0 Oneida Broadhead Dr L1897957 P 43.1814187 -75.9979981 2015-03-30 09:15:00 obsr2290617 S22738394 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304097127 2019-07-23 17:28:02 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Rich Marine L1366985 H 42.9392357 -78.9087525 2015-03-19 18:20:00 obsr2189267 S22426718 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301956753 2021-04-01 11:47:43.260314 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Oswego US-NY-075 13.0 Oswego River, Lock 6 L1883838 H 43.4443141 -76.4956891 2015-03-08 16:32:00 obsr2887137 S22252968 Stationary P21 EBIRD 35.0 1.0 1 G1171923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314259265 2021-03-22 09:17:32.016297 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Oneida US-NY-065 13.0 2480 rt 49 blossvale L1583204 P 43.228321 -75.7079151 2015-04-29 08:00:00 obsr2197275 S23138432 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309890358 2021-03-23 17:15:00.080143 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP, Sodus L712218 H 43.2673188 -77.0297813 2015-04-13 15:48:00 obsr528918 S22854242 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310427638 2021-11-09 19:51:09.255083 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-04-15 08:30:00 obsr186871 S22891331 Traveling P22 EBIRD 180.0 4.828 17.0 1 G1221890 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298712772 2015-02-21 09:34:06 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-02-21 08:50:00 obsr2377251 S22000889 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309219236 2021-11-09 19:57:49.426253 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 120 United States US New York US-NY Orange US-NY-071 28.0 Riverside Park, Montgomery L3556362 P 41.54179 -74.20921 2015-04-11 11:02:00 obsr1655171 S22808803 Stationary P21 EBIRD 8.0 2.0 1 G1219968 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307125791 2021-03-24 20:33:47.533911 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-03 09:12:00 obsr1764243 S22657115 Traveling P22 EBIRD 81.0 0.161 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315495706 2021-03-26 06:17:19.712573 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-05-03 obsr2096529 S23209443 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293225271 2018-08-04 16:55:15 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-01-25 13:38:00 obsr2756208 S21540903 Stationary P21 EBIRD 16.0 14.0 1 G1123052 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS331317108 2022-02-17 14:32:23.002448 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-02 08:30:00 obsr117100 S24231683 Traveling P22 EBIRD 150.0 1.931 5.0 1 G1247128 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319131580 2021-03-19 16:25:42.617988 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-12 07:31:00 obsr2693145 S23414450 Traveling P22 EBIRD 510.0 1.609 2.0 1 G1268391 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314353292 2021-04-01 12:32:15.282601 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 11 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park /Hendr.Park L365070 P 40.6787341 -73.6936927 2015-04-30 08:15:00 obsr916370 S23143740 Traveling P22 EBIRD 210.0 6.759 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323973923 2018-08-06 22:31:24 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor9 L3513951 H 42.73125 -76.0049915 2015-05-30 06:02:00 obsr1042912 S23706458 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316037292 2021-11-09 18:47:09.952469 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Dutchess US-NY-027 13.0 US-NY-Rhinebeck-86 Boice Rd L3614767 P 41.930431 -73.823038 2015-05-05 08:01:00 obsr1442681 S23239800 Traveling P22 EBIRD 84.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312242935 2015-04-23 07:17:59 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Oneida US-NY-065 13.0 Spring Farm Nature Sanctuary L2242703 P 43.0239766 -75.331192 2015-04-22 09:00:00 obsr1796652 S23009901 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309568076 2021-03-26 06:39:43.334073 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-04-12 11:50:00 obsr1706920 S22830970 Traveling P22 EBIRD 35.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304523990 2020-05-16 18:10:37 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Otsego US-NY-077 28.0 Lake Front Park L302037 H 42.7028363 -74.9225244 2015-03-21 17:30:00 obsr131845 S22459144 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311881976 2021-03-23 16:48:08.60516 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 12 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Montezuma (NMWMA)--Cayuga Lake Unit L1280430 H 42.9378719 -76.7503166 2015-04-21 12:00:00 obsr2258053 S22985829 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323254982 2021-03-19 16:44:35.607263 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-26 10:50:00 obsr528918 S23656419 Traveling P22 EBIRD 55.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310617928 2020-07-20 09:16:51 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-17 07:38:00 obsr2224244 S22904938 Traveling P22 EBIRD 147.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288784713 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 72 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-03 07:08:00 obsr1107696 S21165870 Traveling P22 EBIRD 300.0 9.656 1.0 1 G1095329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312304359 2021-03-26 06:09:25.361188 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 1 United States US New York US-NY Broome US-NY-007 28.0 3665 River Rd Endicott L1466336 P 42.108244 -76.008055 2015-04-23 08:45:00 obsr1826325 S23013811 Traveling P22 EBIRD 30.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308628854 2021-12-19 10:32:19.574298 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 1 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-04-09 07:00:00 obsr2691562 S22766829 Traveling P22 EBIRD 90.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320671334 2021-03-23 17:26:08.495143 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Bethpage SP L550233 H 40.7539542 -73.470726 2015-05-17 17:10:00 obsr1601967 S23498918 Traveling P22 EBIRD 65.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1006523699 2021-04-01 11:30:42.037277 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 Female, Unknown Age (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-16 obsr562303 S75771120 Historical P62 EBIRD 2.0 1 G5871575 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298776318 2021-03-26 06:39:43.334073 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L2701210 P 40.87138 -73.92629 2015-02-21 12:27:00 obsr1348614 S22006166 Traveling P22 EBIRD 132.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313429972 2019-07-23 17:28:28 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 3 United States US New York US-NY Oneida US-NY-065 13.0 Godfrey Point DEC Boat Launch L1570638 H 43.2235924 -75.8505869 2015-04-27 05:57:00 obsr666964 S23086630 Stationary P21 EBIRD 62.0 1.0 1 G1239030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303262047 2019-07-23 17:27:57 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-14 10:13:00 obsr140280 S22360811 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319532559 2021-03-26 07:56:20.588749 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-14 08:40:00 obsr916370 S23437459 Traveling P22 EBIRD 110.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311505404 2018-04-16 15:51:00 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-18 10:28:00 obsr589593 S22960458 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293406226 2021-04-01 12:18:57.910168 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 700 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-01-26 14:40:00 obsr2673845 S21555552 Stationary P21 EBIRD 15.0 2.0 1 G1125124 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307954673 2021-12-03 21:50:44.732892 11371 species avibase-75600969 Northern Flicker Colaptes auratus 4 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-04-06 09:57:00 obsr1958124 S22716237 Traveling P22 EBIRD 21.0 0.805 2.0 1 G1208446 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310781391 2021-11-09 19:51:09.255083 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus X United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-04-15 11:23:00 obsr1912104 S22915611 Traveling P22 EBIRD 20.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302017766 2018-08-04 16:59:10 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Queens US-NY-081 US-NY_1722 Queens County Location L2485808 P 40.6316723 -73.8032341 2015-03-09 14:00:00 obsr2436774 S22257560 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309172522 2021-04-01 11:49:53.573686 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-11 09:45:00 obsr2277801 S22805632 Historical P62 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318668307 2021-03-19 16:32:34.732091 7429 species avibase-1327AC55 Osprey Pandion haliaetus 5 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-09 15:10:00 obsr876649 S23387358 Traveling P22 EBIRD 30.0 1.0 6.0 1 G1265608 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298766671 2021-03-26 07:30:35.289997 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Tompkins US-NY-109 13.0 my back yard Trumansburg L2594789 P 42.5410818 -76.6596392 2015-02-21 13:30:00 obsr2260025 S22005340 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320739740 2021-04-01 12:26:53.827486 592 species avibase-3072CC16 Redhead Aythya americana N 3 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-05-16 07:50:00 obsr2855945 S23502544 Traveling P22 EBIRD 175.0 2.414 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311044895 2021-03-26 07:07:10.758746 7011 species avibase-534FB490 Northern Gannet Morus bassanus N 25 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-18 13:22:00 obsr155915 S22932303 Traveling P22 EBIRD 85.0 2.414 3.0 1 G1224790 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319374086 2015-05-13 22:08:37 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 Male, Adult (1) United States US New York US-NY Montgomery US-NY-057 13.0 Mindenville Drive & Lock 16 L822650 P 42.9916253 -74.7108239 2015-05-13 10:53:00 obsr1000124 S23428037 Traveling P22 EBIRD 57.0 0.966 3.0 1 G1269952 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311863841 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 07:25:00 obsr1711339 S22984602 Traveling P22 EBIRD 448.0 8.047 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297280847 2021-04-01 11:49:53.573686 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 2 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-02-10 08:47:00 obsr1982614 S21874277 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316075345 2021-04-01 11:30:42.037277 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 07:51:00 obsr2883074 S23241931 Traveling P22 EBIRD 200.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305970472 2021-03-24 20:58:53.646623 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 11 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3522377 P 42.693501 -77.711644 2015-03-29 07:26:00 obsr682121 S22569495 Stationary P21 EBIRD 89.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303313009 2021-03-24 21:12:31.336509 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 15 United States US New York US-NY Tioga US-NY-107 28.0 Spencer Lake L2347622 H 42.2473269 -76.5017509 2015-03-15 13:25:00 obsr2683910 S22364661 Stationary P21 EBIRD 12.0 2.0 1 G1180909 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311563822 2021-04-01 10:47:08.851048 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Broome US-NY-007 28.0 Water St. River Walk L2455810 H 42.1064931 -75.9110038 2015-04-20 11:48:00 obsr1764243 S22964260 Traveling P22 EBIRD 21.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290164478 2021-03-24 19:27:13.077399 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 12 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-10 08:34:00 obsr1334267 S21277196 Stationary P21 EBIRD 41.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309849123 2021-03-30 19:38:34.358823 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 1 United States US New York US-NY Albany US-NY-001 28.0 Sikule Pond L3563890 H 42.4487161 -74.1250777 2015-04-13 16:10:00 obsr2855945 S22851178 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318753959 2021-03-26 07:56:20.588749 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 20 United States US New York US-NY Nassau US-NY-059 30.0 Hofstra University L639147 H 40.7145119 -73.6003128 2015-05-11 18:23:00 obsr904434 S23392333 Traveling P22 EBIRD 28.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288993763 2015-01-04 11:43:05 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Richmond US-NY-085 Arden Ave. Beach L635901 H 40.5276639 -74.1605043 2015-01-04 11:42:00 obsr155915 S21184444 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1289970037 2021-12-05 15:34:03.334752 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 1 United States US New York US-NY Erie US-NY-029 13.0 University at Buffalo (North Campus) L6275102 H 43.0008539 -78.7889698 2015-05-05 07:45:00 obsr2155450 S98513436 Traveling P22 EBIRD 30.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303213058 2021-03-23 16:39:03.255227 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-03-15 09:16:00 obsr1958124 S22356956 Traveling P22 EBIRD 4.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320198226 2021-11-09 18:47:29.474046 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Dutchess US-NY-027 13.0 Poughkeepsie, Wright Trail L3647587 P 41.67748 -73.89683 2015-05-16 10:05:00 obsr590008 S23474136 Traveling P22 EBIRD 180.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317116861 2018-08-04 17:15:16 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 Male, Adult (1) United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-08 07:30:00 obsr2843748 S23301712 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299013182 2021-04-01 12:11:50.996293 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Seneca US-NY-099 13.0 Canoga area (Martin/Seybolt/Hoster) L3446818 P 42.8619989 -76.7848206 2015-02-22 12:41:00 obsr1655171 S22025332 Traveling P22 EBIRD 49.0 9.656 3.0 1 G1156981 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321694986 2021-03-19 16:27:31.421791 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Tonawanda WMA--Meadville Rd. L152121 H 43.1145 -78.4563 2015-05-21 11:36:00 obsr2588479 S23561067 Traveling P22 EBIRD 32.0 0.322 1.0 1 G1281682 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311199996 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-19 05:36:00 obsr1189028 S22941705 Traveling P22 EBIRD 283.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292670546 2018-10-06 16:50:39 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 9 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--East Rd. L99686 H 43.009646 -76.7582003 2015-01-21 13:00:00 obsr2406179 S21497351 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291402044 2019-01-03 10:54:11 11371 species avibase-75600969 Northern Flicker Colaptes auratus 11 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Shinnecock Inlet, west L3087424 H 40.8421473 -72.4781388 2015-01-17 08:04:00 obsr613775 S21377371 Stationary P21 EBIRD 24.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307142566 2021-04-01 11:49:53.573686 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 8 United States US New York US-NY Queens US-NY-081 US-NY_1727 Rockaway Beach--Edgemere (Beach 32nd-56th St.) L2466964 H 40.5905359 -73.7753534 2015-04-03 11:43:00 obsr2574755 S22658323 Traveling P22 EBIRD 9.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322866502 2021-04-01 11:15:31.646886 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 7 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 07:29:00 obsr1077730 S23631311 Traveling P22 EBIRD 300.0 3.219 14.0 1 G1289314 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288379027 2021-04-01 12:30:15.438381 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 2 United States US New York US-NY Herkimer US-NY-043 13.0 Dillenbeck Rd L3255941 P 42.9952783 -74.7785282 2015-01-01 13:00:00 obsr1708031 S21132443 Traveling P22 EBIRD 40.0 12.875 2.0 1 G1105367 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310833399 2021-04-01 12:18:57.910168 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-18 06:45:00 obsr1696616 S22918956 Stationary P21 EBIRD 31.0 2.0 1 G1223870 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288754931 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-03 11:41:00 obsr1189028 S21163381 Traveling P22 EBIRD 35.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325710297 2021-03-19 16:19:20.977326 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L3705268 P 42.8462143 -78.8590693 2015-05-20 06:30:00 obsr2221755 S23823463 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310616345 2021-03-24 20:33:47.533911 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-17 09:10:00 obsr1418810 S22904837 Stationary P21 EBIRD 5.0 2.0 1 G1222698 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313117247 2021-11-15 03:06:58.889978 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-26 07:06:00 obsr642993 S23067075 Traveling P22 EBIRD 212.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304546221 2021-03-19 16:10:30.527219 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY Chemung US-NY-015 28.0 Orthopedic Associates L364650 P 42.0871719 -76.8088746 2015-03-21 16:39:00 obsr1587816 S22460891 Stationary P21 EBIRD 13.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310428985 2021-03-26 07:17:57.136956 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Towpath Rd. L266832 H 43.0038224 -76.7457005 2015-04-16 10:45:00 obsr204036 S22891537 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318676864 2021-04-01 11:15:31.646886 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:30:00 obsr1077730 S23387808 Traveling P22 EBIRD 300.0 3.0 6.0 1 G1265613 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303785228 2021-03-26 07:52:59.845315 26890 species avibase-94A44032 European Starling Sturnus vulgaris 13 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-17 07:30:00 obsr1000124 S22402216 Area P23 EBIRD 126.0 2.59 2.0 1 G1183748 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318488583 2021-03-19 16:32:34.732091 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 18:30:00 obsr1348614 S23377646 Traveling P22 EBIRD 60.0 1.0 6.0 1 G1265606 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307159232 2021-03-26 07:07:10.758746 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Richmond US-NY-085 Conference House Park L302089 H 40.4995098 -74.2516756 2015-04-03 09:12:00 obsr155915 S22659464 Traveling P22 EBIRD 36.0 0.966 2.0 1 G1202540 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301414240 2021-03-23 16:39:03.255227 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-03-07 07:05:00 obsr1893950 S22211496 Traveling P22 EBIRD 16.0 0.483 2.0 1 G1169029 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298856291 2021-04-26 04:57:02.963704 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-21 08:14:00 obsr150415 S22012572 Traveling P22 EBIRD 111.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291559826 2021-03-24 20:23:39.258075 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Suffolk US-NY-103 30.0 Roosevelt Estate County Park L7273270 H 40.7386078 -73.0728777 2015-01-17 10:12:00 obsr1107696 S21390167 Traveling P22 EBIRD 39.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321484203 2021-11-09 18:47:30.139396 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Dutchess US-NY-027 28.0 US-NY-Pawling-150 Old Rte 55 L3659441 P 41.586836 -73.652992 2015-05-20 07:46:00 obsr2175245 S23548129 Traveling P22 EBIRD 217.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298451519 2021-11-09 18:34:57.804398 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-02-19 14:30:00 obsr1264675 S21978474 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318269492 2021-03-26 07:56:20.588749 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-10 09:00:00 obsr2562662 S23365516 Traveling P22 EBIRD 120.0 0.805 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291293832 2021-11-09 18:43:18.378649 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Dutchess US-NY-027 13.0 Upton Lake Christian School L3271185 P 41.833243 -73.7613273 2015-01-16 07:30:00 obsr2862523 S21369046 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323353009 2018-08-06 22:31:15 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-27 08:28:00 obsr879105 S23663019 Traveling P22 EBIRD 150.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309487329 2021-03-26 07:07:10.758746 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 1 United States US New York US-NY Richmond US-NY-085 Lemon Creek Park L508340 H 40.5121298 -74.198581 2015-04-12 12:05:00 obsr41879 S22825482 Stationary P21 EBIRD 15.0 6.0 1 G1216709 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314272493 2021-03-26 06:17:19.712573 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-30 07:16:00 obsr502830 S23139321 Traveling P22 EBIRD 82.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298819035 2021-04-01 11:15:31.646886 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 16 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-21 13:00:00 obsr1536880 S22009682 Traveling P22 EBIRD 45.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289123980 2021-04-01 11:30:42.037277 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens N 73 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-01-04 11:00:00 obsr1135516 S21194721 Traveling P22 EBIRD 150.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322323397 2021-04-01 11:14:02.420281 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum L467369 H 44.0669903 -75.7229233 2015-05-23 07:00:00 obsr790491 S23599457 Traveling P22 EBIRD 420.0 24.14 2.0 1 G1303491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310809155 2015-04-17 23:50:52 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 5 United States US New York US-NY Fulton US-NY-035 13.0 Rockwood Lake @ Rt 10 L1489012 P 43.0654998 -74.506604 2015-04-17 16:29:00 obsr1000124 S22917359 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314266534 2021-03-24 20:33:47.533911 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-30 06:49:00 obsr455249 S23138925 Traveling P22 EBIRD 9.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314267777 2018-08-04 17:13:03 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Franklin US-NY-033 13.0 Private Property - Alderon Marsh L3601092 P 44.9946705 -74.5498753 2015-04-29 18:00:00 obsr568671 S23139005 Traveling P22 EBIRD 180.0 1.609 8.0 1 G1243686 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310085854 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-14 13:56:00 obsr139757 S22868119 Traveling P22 EBIRD 207.0 4.023 2.0 1 G1219940 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314161082 2015-04-29 19:28:37 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-28 15:03:00 obsr2683910 S23132166 Traveling P22 EBIRD 12.0 0.483 2.0 1 G1243197 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294325917 2021-03-26 07:07:10.758746 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 2 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-01 08:59:00 obsr1893950 S21628128 Traveling P22 EBIRD 94.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314307518 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Erie Station Village L2334326 P 43.04309 -77.66408 2015-04-30 07:00:00 obsr1097423 S23141456 Traveling P22 EBIRD 10.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298723590 2019-07-23 17:27:24 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 7 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-02-21 10:16:00 obsr502830 S22001886 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295105487 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-02-05 08:15:00 obsr334398 S21691213 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310251535 2021-03-19 16:19:20.977326 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 5 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-15 11:15:00 obsr2871264 S22879270 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303728605 2021-11-09 20:57:59.897006 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Rockland US-NY-087 30.0 Middle School L2071490 P 41.0894596 -74.0013957 2015-03-17 16:10:00 obsr1932005 S22397746 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313720060 2022-03-05 22:03:50.715584 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 5 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-27 16:00:00 obsr444155 S23098581 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320961719 2021-11-09 19:01:40.008558 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-18 07:30:00 obsr2700041 S23515565 Traveling P22 EBIRD 420.0 6.437 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308050819 2021-03-31 04:06:27.28709 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 Plum Rd., Ft. Edward L2442258 H 43.2555882 -73.5463616 2015-04-06 07:58:00 obsr1222746 S22722611 Traveling P22 EBIRD 33.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317434932 2021-03-19 16:25:42.617988 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 2 United States US New York US-NY Essex US-NY-031 13.0 Mt. Defiance L2814714 H 43.8313207 -73.406589 2015-05-09 06:10:00 obsr822321 S23319899 Traveling P22 EBIRD 176.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307458108 2021-03-26 06:39:43.334073 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-04-03 16:10:00 obsr1439545 S22680889 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304308985 2021-03-24 19:23:17.886063 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-03-19 obsr1395007 S22443273 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301660579 2021-04-01 10:49:39.496318 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 40 United States US New York US-NY Cayuga US-NY-011 13.0 Belltown Dairy, King Ferry L1340503 H 42.626498 -76.5946378 2015-03-08 12:48:00 obsr2001485 S22229336 Traveling P22 EBIRD 38.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308859081 2021-04-01 11:49:53.573686 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Queens US-NY-081 30.0 Kew Gardens L3552766 P 40.7075799 -73.8294983 2015-04-10 13:00:00 obsr1578888 S22784287 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288100674 2021-03-26 06:29:56.44369 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Durand-Eastman Park--Hoffman Rd. L818008 H 43.223715 -77.56868 2015-01-01 07:30:00 obsr991026 S21109276 Traveling P22 EBIRD 62.0 0.805 2.0 1 G1087837 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316798503 2015-05-07 09:39:32 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Rochester-irondequoit 14622 yard L3146197 P 43.22078 -77.556809 2015-05-05 14:15:00 obsr140077 S23283859 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291688605 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-18 08:50:00 obsr856524 S21399871 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293191642 2020-02-18 11:48:33 3543 species avibase-8D3E8871 Chuck-will's-widow Antrostomus carolinensis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_842 30.0 William Floyd Estate L3166430 H 40.7677057 -72.8242053 2015-01-25 09:30:00 obsr1592950 S21538279 Traveling P22 EBIRD 150.0 4.828 4.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS304082286 2015-03-19 17:31:20 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Schoharie US-NY-095 28.0 288 Mace Hill road L1953670 P 42.4840296 -74.291954 2015-03-18 13:00:00 obsr1524949 S22425598 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312010944 2015-04-22 07:31:58 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 10 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Research Ponds Unit I (restricted access) L758796 H 42.5046294 -76.4657396 2015-04-22 07:27:00 obsr817830 S22994418 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299631216 2021-11-09 21:57:18.791794 303 species avibase-B59E1863 Canada Goose Branta canadensis N 1 Male, Adult (1) United States US New York US-NY Ulster US-NY-111 28.0 Route 7, Ulster L3440165 P 41.7393611 -74.1117525 2015-02-25 16:20:00 obsr1189028 S22075110 Incidental P20 EBIRD 2.0 0 G1159958 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302678131 2018-08-04 16:59:46 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 9 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-03-12 14:40:00 obsr1222746 S22315260 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300235784 2021-03-30 19:29:33.633096 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-03-01 09:51:00 obsr2485753 S22122929 Traveling P22 EBIRD 100.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310198230 2021-03-23 17:41:09.545385 16790 species avibase-178B8955 Cassin's Kingbird Tyrannus vociferans 1 United States US New York US-NY Westchester US-NY-119 US-NY_871 30.0 Ward Pound Ridge Reservation L746022 H 41.2455683 -73.5888076 2015-04-15 07:30:00 obsr1336375 S22875828 Traveling P22 EBIRD 30.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300240301 2016-01-27 15:21:38 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Tompkins US-NY-109 28.0 125C Yellow Barn Rd. L1044911 P 42.4758637 -76.3421112 2015-03-01 07:00:00 obsr2001485 S22123273 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316966373 2021-03-26 07:56:20.588749 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-07 16:57:00 obsr870166 S23293091 Traveling P22 EBIRD 94.0 2.253 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307002009 2018-08-04 17:05:06 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Knox-Marsellus Marsh L1280877 H 43.0076202 -76.7529774 2015-04-02 14:00:00 obsr1446358 S22647861 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288544298 2021-04-01 12:35:52.669792 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 Unknown Sex, Adult (1) United States US New York US-NY Onondaga US-NY-067 13.0 730 Banner Rd, Tully, N.Y. L1036489 P 42.8066969 -76.1280817 2015-01-02 07:52:00 obsr1178949 S21146431 Area P23 EBIRD 105.0 3.53 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316302715 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-05-05 15:45:00 obsr1555046 S23255570 Traveling P22 EBIRD 30.0 0.966 2.0 1 G1254078 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307426802 2021-04-01 12:18:57.910168 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Tompkins US-NY-109 13.0 Nate's Patch--Bluegrass to Hanshaw to Freese L1006570 P 42.4655757 -76.4526987 2015-04-04 09:36:00 obsr1062070 S22678785 Traveling P22 EBIRD 208.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299589680 2021-11-09 22:04:47.967972 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-25 15:30:00 obsr1787323 S22071960 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300853184 2021-03-23 17:00:13.087107 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY Tompkins US-NY-109 28.0 ***Fitzpatrick home L124872 P 42.42879 -76.395065 2015-02-28 07:40:00 obsr2124298 S22168006 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308741791 2021-11-09 19:48:27.2595 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 22 United States US New York US-NY Orange US-NY-071 US-NY_853 28.0 Harriman SP--Silver Mine Lake L2429448 H 41.2945762 -74.0590062 2015-04-09 12:45:00 obsr2346161 S22775903 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319034376 2021-03-26 06:39:43.334073 32949 species avibase-15EB3000 Hooded Warbler Setophaga citrina 2 Male, Adult (2) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Greywacke Arch L2179946 H 40.7792619 -73.9657742 2015-05-12 08:17:00 obsr1548221 S23408743 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306916279 2019-04-19 13:17:53 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-02 09:45:00 obsr1918430 S22641066 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322816508 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-25 08:34:00 obsr745890 S23628254 Traveling P22 EBIRD 45.0 0.644 1.0 1 G1289062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295645133 2021-11-09 22:04:47.967972 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-07 09:48:00 obsr66097 S21733737 Traveling P22 EBIRD 90.0 8.047 2.0 1 G1139762 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289874780 2015-01-08 14:16:25 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southold Town Beach L142618 H 41.0892334 -72.4137115 2015-01-08 13:52:00 obsr2485753 S21253758 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288121660 2021-03-24 05:37:45.927792 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-01-01 09:52:00 obsr2497657 S21110968 Stationary P21 EBIRD 12.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307415066 2015-04-04 12:28:27 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-04-04 12:25:00 obsr1349676 S22678048 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307410279 2021-11-15 03:06:58.889978 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-04 09:30:00 obsr585997 S22677725 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307639958 2021-03-24 20:33:47.533911 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 8 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-05 07:17:00 obsr455249 S22693419 Traveling P22 EBIRD 11.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315703508 2021-11-09 17:58:40.313796 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 2 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-04 06:55:00 obsr1446126 S23220737 Traveling P22 EBIRD 260.0 6.116 23.0 1 G1251189 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288501818 2018-08-04 16:52:28 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-01-02 10:00:00 obsr1079517 S21142656 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310119770 2021-03-26 08:13:27.160698 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 25 United States US New York US-NY Tioga US-NY-107 28.0 Lockheed Martin Pond L2347076 H 42.097235 -76.221474 2015-04-14 07:47:00 obsr1318356 S22870494 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294896763 2021-03-23 17:26:08.495143 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 18 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 JFK Memorial Wildlife Sanctuary L194386 H 40.6105495 -73.4519033 2015-02-04 12:00:00 obsr247620 S21674088 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317349623 2021-08-17 17:04:49.632547 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-08 20:00:00 obsr1243175 S23314372 Traveling P22 EBIRD 60.0 0.644 2.0 1 G1258210 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309848741 2021-04-01 11:54:40.172593 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 3 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-04-13 18:00:00 obsr1958124 S22851142 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299381107 2022-03-05 22:03:50.715584 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-24 12:00:00 obsr444155 S22055921 Traveling P22 EBIRD 60.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314856716 2021-12-24 11:02:14.483178 27616 species avibase-D77E4B41 American Robin Turdus migratorius 15 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-02 07:39:00 obsr934639 S23174952 Traveling P22 EBIRD 125.0 3.219 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297847092 2021-01-10 16:39:54.759182 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Warren US-NY-113 13.0 Pine View Cemetery, Queensbury L2128813 H 43.3335429 -73.6702341 2015-02-16 12:01:00 obsr1222746 S21926082 Traveling P22 EBIRD 17.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310168154 2021-04-01 11:30:42.037277 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-04-14 10:30:00 obsr1481512 S22873796 Traveling P22 EBIRD 50.0 0.483 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322589807 2021-03-24 20:58:04.794277 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-05-22 06:00:00 obsr2694889 S23614456 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318359312 2021-03-26 06:29:56.44369 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-10 05:29:00 obsr2595828 S23370432 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298075462 2018-08-04 16:56:31 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-14 14:30:00 obsr1780608 S21945857 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312693487 2021-03-19 16:08:39.161312 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-24 17:31:00 obsr991026 S23041453 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300258108 2021-11-09 19:01:40.008558 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-03-01 10:05:00 obsr798742 S22124702 Traveling P22 EBIRD 105.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319659223 2021-03-19 16:10:30.527219 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Chemung US-NY-015 28.0 42.2246x-76.6738 - May 14, 2015, 4:48 PM L3643355 P 42.224625 -76.673782 2015-05-14 16:48:00 obsr2430746 S23444534 Traveling P22 EBIRD 69.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311170185 2021-03-24 20:33:47.533911 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-04-19 08:44:00 obsr2211210 S22939839 Traveling P22 EBIRD 38.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309990536 2015-04-14 13:50:03 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Stillwater, NY 52 county route 76 L1926398 P 42.933103 -73.680332 2015-04-14 13:43:00 obsr2564462 S22861277 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324383247 2021-03-23 17:20:04.546757 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegheny State Park L2896905 P 42.0892718 -78.7218704 2015-05-30 09:00:00 obsr1239415 S23732814 Traveling P22 EBIRD 330.0 12.875 22.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289396290 2021-04-01 11:30:42.037277 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N X United States US New York US-NY New York US-NY-061 30.0 Bleecker Playground L3238741 H 40.7363767 -74.0055963 2015-01-03 11:00:00 obsr647628 S21215814 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299240500 2021-04-01 11:42:50.317679 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 Female, Adult (1) United States US New York US-NY Oneida US-NY-065 13.0 Delta Lake Dam L3440985 H 43.2736746 -75.4303479 2015-02-23 15:17:00 obsr1640315 S22045269 Stationary P21 EBIRD 70.0 2.0 1 G1157975 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS323188049 2021-04-01 10:47:08.851048 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-05-26 06:40:00 obsr646558 S23652211 Traveling P22 EBIRD 25.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315566575 2021-03-26 06:39:43.334073 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-03 07:50:00 obsr856524 S23213141 Stationary P21 EBIRD 65.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292123354 2021-12-28 15:50:27.785498 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 3 Female, Adult (2); Male, Adult (1) United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-01-20 12:22:00 obsr606693 S21433947 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322866531 2021-04-01 11:15:31.646886 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 6 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 07:29:00 obsr1077730 S23631311 Traveling P22 EBIRD 300.0 3.219 14.0 1 G1289314 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220307 2021-03-26 07:46:52.994574 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-01-01 07:01:00 obsr2321296 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301771586 2021-03-23 17:37:19.520785 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Saratoga US-NY-091 13.0 Lenox Blvd--Jacobie's Pig Farm L2524192 P 43.2689352 -73.6354324 2015-03-08 13:29:00 obsr1222746 S22239325 Traveling P22 EBIRD 17.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311305299 2020-03-15 18:48:35 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Ontario US-NY-069 13.0 Ontario Pathways--NY 96, Phelps L348453 H 42.9580206 -77.0920904 2015-04-19 13:10:00 obsr983655 S22948125 Traveling P22 EBIRD 80.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310377306 2021-04-01 11:30:42.037277 11494 species avibase-20C2214E American Kestrel Falco sparverius 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 06:10:00 obsr1433400 S22888054 Traveling P22 EBIRD 90.0 4.088 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309464478 2021-04-01 12:32:15.282601 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 10 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-12 10:15:00 obsr2505956 S22823913 Rusty Blackbird Spring Migration Blitz P41 EBIRD 150.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296094371 2018-08-04 16:56:04 668 species avibase-9456DEDF Barrow's Goldeneye Bucephala islandica 55 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-02-11 09:31:00 obsr2321296 S21768634 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314275371 2018-08-04 17:13:06 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Iroquois NWR--Swallow Hollow Trail L771567 H 43.1254425 -78.3256102 2015-04-30 07:47:00 obsr2588479 S23139501 Traveling P22 EBIRD 52.0 2.092 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321683013 2021-03-19 16:44:35.607263 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 9 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-20 09:00:00 obsr2364166 S23560381 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313156843 2021-09-21 05:59:49.772911 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-26 09:03:00 obsr2519357 S23069355 Traveling P22 EBIRD 260.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307933980 2018-08-04 17:05:42 32955 species avibase-41062654 Northern Parula Setophaga americana 1 United States US New York US-NY Tompkins US-NY-109 13.0 CLO Office-2M15 L1313831 P 42.4800694 -76.4515024 2015-04-06 08:40:00 obsr2074043 S22714648 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297295793 2021-03-26 07:30:35.289997 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-02-15 07:10:00 obsr2137468 S21875595 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316749940 2021-03-26 06:17:19.712573 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-06 10:30:00 obsr1379161 S23280952 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311924945 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 12 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-04-21 08:45:00 obsr2759466 S22988679 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306350635 2015-03-30 16:39:01 33061 species avibase-E36325FA Prairie Warbler Setophaga discolor 11 United States US New York US-NY Suffolk US-NY-103 30.0 Great Pond L137722 P 41.0666122 -72.4558716 2015-03-30 16:33:00 obsr2485753 S22597910 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307381664 2021-03-23 17:32:20.03109 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 25 United States US New York US-NY Onondaga US-NY-067 13.0 No. 2 Rd W and Pompey Center Rd, Manlius L3537091 P 42.9549777 -75.9586573 2015-04-04 09:25:00 obsr724731 S22675586 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303707291 2021-03-26 07:30:35.289997 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 120 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-16 17:13:00 obsr1655171 S22396103 Traveling P22 EBIRD 58.0 0.805 2.0 1 G1187684 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293991124 2021-03-24 20:21:40.993321 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Seneca US-NY-099 13.0 Cove L678244 P 42.6487254 -76.8698493 2015-01-30 obsr2731440 S21601659 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312752501 2021-04-01 11:54:40.172593 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-25 08:00:00 obsr1620361 S23045380 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316892155 2018-08-04 17:15:05 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Broome US-NY-007 28.0 Aquaterra Park L209925 H 42.032165 -75.939463 2015-05-07 06:20:00 obsr646558 S23288774 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309157441 2021-03-24 19:48:44.880783 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-11 16:00:00 obsr2933610 S22804607 Traveling P22 EBIRD 62.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299679938 2021-03-26 06:59:15.841579 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Oswego-33 W Albany St L2797344 P 43.451014 -76.511183 2015-02-26 09:47:00 obsr2700277 S22078788 Stationary P21 EBIRD 63.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289180418 2021-03-26 08:14:57.071052 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 20 United States US New York US-NY Westchester US-NY-119 30.0 Rye Playland L283594 H 40.9664172 -73.6734963 2015-01-03 08:15:00 obsr1788273 S21198945 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313737580 2021-03-30 19:07:52.958398 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-27 17:45:00 obsr2476180 S23105840 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309168179 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-08 09:15:00 obsr2277801 S22805323 Historical P62 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318009300 2021-03-19 16:19:20.977326 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 8 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-10 06:50:00 obsr48167 S23351863 Traveling P22 EBIRD 100.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303751893 2021-03-19 16:32:34.732091 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-03-17 13:00:00 obsr2448957 S22399616 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298627156 2021-03-30 19:04:34.869795 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 120 United States US New York US-NY Columbia US-NY-021 13.0 Elizaville Diner pond L2606186 P 42.0462441 -73.8040581 2015-02-20 13:10:00 obsr2954986 S21992976 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256872 2021-11-09 21:29:36.23688 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Ulster US-NY-111 13.0 Esopus Meadows Lighthouse Park L1396701 H 41.8684798 -73.9511925 2015-01-01 13:30:00 obsr2862523 S21122366 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291875349 2019-10-24 20:10:38 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 10 United States US New York US-NY Suffolk US-NY-103 US-NY_2800 Napeague Harbor L283128 H 41.0084776 -72.0499114 2015-01-19 09:28:00 obsr431494 S21414372 Traveling P22 EBIRD 19.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288981359 2018-08-04 16:52:42 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Podell Boardwalk (0.08 km) L1075029 P 42.4782515 -76.4511698 2015-01-04 09:27:00 obsr2307843 S21183403 Traveling P22 EBIRD 5.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313401285 2021-04-01 11:24:19.637193 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 13.0 Lucien Morin Park L1745769 H 43.1666318 -77.5274502 2015-04-26 13:54:00 obsr408487 S23084770 Traveling P22 EBIRD 40.0 0.805 2.0 1 G1238810 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318931264 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-12 06:30:00 obsr1088395 S23402690 Traveling P22 EBIRD 240.0 4.828 3.0 1 G1267388 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303684907 2022-03-05 22:03:50.715584 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 8 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-17 10:00:00 obsr444155 S22394502 Traveling P22 EBIRD 120.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303464486 2021-03-26 07:30:35.289997 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-16 08:08:00 obsr1655171 S22377130 Traveling P22 EBIRD 39.0 0.644 2.0 1 G1187672 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313810431 2021-03-19 16:42:57.886401 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N 1 United States US New York US-NY Lewis US-NY-049 13.0 Location H L4611970 P 43.940282 -75.401446 2015-04-28 07:43:00 obsr417887 S23110443 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308756904 2021-11-09 21:50:48.44865 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-09 17:05:00 obsr2862523 S22776966 Traveling P22 EBIRD 50.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320457674 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis N 4 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park--Pier 6 L2965855 H 40.6923437 -74.0012088 2015-05-17 09:30:00 obsr1434651 S23487639 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323523205 2018-08-06 22:31:17 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Great Dune L1279825 H 42.7096964 -73.8888052 2015-05-28 08:08:00 obsr1119101 S23674837 Traveling P22 EBIRD 110.0 1.609 101.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761140 2021-03-26 07:56:20.588749 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-03 09:00:00 obsr2218212 S22629510 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309031995 2020-03-22 07:58:01 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-11 09:26:00 obsr730231 S22796652 Stationary P21 EBIRD 26.0 2.0 1 G1214148 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296082547 2015-02-11 06:04:35 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 70 United States US New York US-NY Richmond US-NY-085 SI-Miller Field L291643 P 40.5674475 -74.0939199 2015-02-10 14:57:00 obsr1032565 S21767632 Traveling P22 EBIRD 38.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314946792 2018-08-04 17:14:00 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-02 06:05:00 obsr1044068 S23179568 Traveling P22 EBIRD 100.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289995808 2018-08-04 16:52:54 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-07 15:45:00 obsr2233270 S21263535 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307917399 2018-08-04 17:05:40 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 Unknown Sex, Juvenile (2) United States US New York US-NY Saratoga US-NY-091 13.0 Wrights Loop L691715 H 42.9902551 -73.6132237 2015-04-05 17:58:00 obsr1647272 S22713536 Rusty Blackbird Spring Migration Blitz P41 EBIRD 43.0 1.77 2.0 1 G1207213 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289395155 2021-04-01 12:14:19.266649 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Kmart woods (behind/right side of holtsville kmart) L3115533 P 40.82598 -73.0244172 2015-01-05 12:30:00 obsr1325561 S21215722 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321746178 2021-03-26 06:21:54.883933 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-21 07:20:00 obsr1152226 S23564240 Traveling P22 EBIRD 270.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322633732 2021-03-26 06:29:56.44369 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 20 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-24 12:15:00 obsr1561508 S23617028 Stationary P21 EBIRD 60.0 2.0 1 G1287996 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304402903 2021-12-03 21:50:44.732892 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 40 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-03-21 10:43:00 obsr1893950 S22450267 Traveling P22 EBIRD 17.0 0.805 2.0 1 G1186866 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306324214 2015-03-30 14:35:16 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-03-30 14:21:00 obsr1792012 S22595882 Traveling P22 EBIRD 15.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312491279 2021-03-30 19:43:32.881136 662 species avibase-FB738385 Bufflehead Bucephala albeola 5 United States US New York US-NY Westchester US-NY-119 30.0 Tarrytown Lakes Park L302456 H 41.0829631 -73.8426401 2015-04-22 12:20:00 obsr1932005 S23026646 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306097587 2021-04-01 10:57:06.520339 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-03-29 15:50:00 obsr2693145 S22578665 Traveling P22 EBIRD 80.0 1.931 2.0 1 G1196693 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298806290 2021-03-26 07:30:35.289997 11494 species avibase-20C2214E American Kestrel Falco sparverius N 6 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca -- East Hill Recreation Way, Maple Avenue South L2205694 P 42.4348832 -76.4708519 2015-02-20 12:15:00 obsr2350357 S22008610 Traveling P22 EBIRD 45.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302141314 2021-03-26 07:30:35.289997 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 NY:TOM:Lansing: Myers Pt, lighthouse L1036392 P 42.5356943 -76.5498269 2015-03-08 09:40:00 obsr2760150 S22266974 Traveling P22 EBIRD 36.0 0.483 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296566505 2021-01-26 11:55:27.787322 660 spuh avibase-CB56BEF1 scoter sp. Melanitta sp. 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. N1, sharp bend E to CR 27 [Palmyra_SE] L977011 P 43.0085543 -77.1591604 2015-02-13 15:25:00 obsr606693 S21810247 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309466417 2021-03-23 16:52:36.900075 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Suffolk US-NY-103 30.0 Crab Meadow Beach Park L3558538 P 40.9290001 -73.3250016 2015-04-12 10:05:00 obsr1848026 S22824038 Traveling P22 EBIRD 35.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1222186734 2021-08-22 08:16:58.605997 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 110 United States US New York US-NY Erie US-NY-029 13.0 University at Buffalo (North Campus) L6275102 H 43.0008539 -78.7889698 2015-04-19 10:35:00 obsr2155450 S93573460 Traveling P22 EBIRD 35.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303054750 2021-12-23 12:03:28.93033 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Syracuse Airport L585802 H 43.1123833 -76.1141395 2015-03-14 13:30:00 obsr1955779 S22344969 Traveling P22 EBIRD 15.0 2.993 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312804875 2021-04-01 11:15:31.646886 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 07:25:00 obsr1711339 S23048617 Traveling P22 EBIRD 349.0 5.633 18.0 1 G1235092 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310373430 2018-08-04 17:08:42 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Onondaga US-NY-067 28.0 Fabius NY Waters Rd L901277 P 42.8470866 -75.9362125 2015-04-12 08:10:00 obsr2290617 S22887752 Stationary P21 EBIRD 365.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306031048 2021-11-09 18:34:57.804398 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-03-29 07:30:00 obsr1264675 S22573672 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298919172 2021-03-30 19:28:38.115458 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-02-22 08:44:00 obsr1092576 S22017830 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299705706 2021-04-26 04:57:02.963704 31430 species avibase-D23A3F75 Hoary Redpoll Acanthis hornemanni 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-26 12:13:00 obsr2906952 S22080624 Traveling P22 EBIRD 50.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301343992 2021-03-30 19:22:51.561415 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 30 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-03-07 07:33:00 obsr2574755 S22205842 Traveling P22 EBIRD 81.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312536054 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 08:41:00 obsr2142124 S23029625 Traveling P22 EBIRD 251.0 6.437 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288808849 2021-04-01 12:32:15.282601 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 16 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Plains Preserve L1575568 H 40.7240849 -73.5844534 2015-01-03 11:05:00 obsr904434 S21167803 Traveling P22 EBIRD 30.0 1.287 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307660229 2021-03-24 19:48:44.880783 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-04-05 08:26:00 obsr334398 S22694926 Traveling P22 EBIRD 54.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307947145 2021-04-01 11:54:40.172593 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Richmond US-NY-085 Arden Ave. Beach L635901 H 40.5276639 -74.1605043 2015-04-06 09:44:00 obsr1958124 S22715717 Stationary P21 EBIRD 5.0 2.0 1 G1208447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311214741 2021-04-01 11:43:48.927316 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 3 United States US New York US-NY Ontario US-NY-069 13.0 Outlet Creek at Fisher Rd., Phelps L3504661 H 42.9576794 -76.9893336 2015-04-16 17:30:00 obsr2983460 S22942605 Area P23 EBIRD 45.0 2.0234 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310041367 2021-03-19 16:19:20.977326 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-14 15:00:00 obsr783450 S22864912 Traveling P22 EBIRD 90.0 1.609 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317104396 2021-03-23 17:23:45.772216 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake - Inlet L723215 P 42.7139754 -77.7105045 2015-05-08 07:07:00 obsr72341 S23301067 Traveling P22 EBIRD 60.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299389154 2021-03-24 20:16:00.852773 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 3 United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-02-24 08:17:00 obsr1893950 S22056429 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293893521 2021-11-15 03:06:58.889978 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-28 08:34:00 obsr1548221 S21594220 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300494565 2018-12-30 09:49:47 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 150 United States US New York US-NY Saratoga US-NY-091 13.0 Crescent Park L502438 H 42.822394 -73.7358221 2015-03-02 10:09:00 obsr2321296 S22141245 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309763439 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-04-13 13:30:00 obsr211892 S22845347 Traveling P22 EBIRD 75.0 0.805 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310934949 2015-04-18 14:12:57 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--Snyder Rd. L763841 H 42.4976053 -76.4600587 2015-04-18 08:02:00 obsr2307843 S22925340 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311672123 2021-03-26 07:17:57.136956 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 10 United States US New York US-NY Seneca US-NY-099 13.0 Rt. 89 near Schuyler Creek L805638 H 42.803374 -76.7630877 2015-04-20 17:30:00 obsr620377 S22972344 Traveling P22 EBIRD 67.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS703656472 2019-01-27 17:19:53 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 4 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-04-12 15:40:00 obsr2858292 S52110988 Traveling P22 EBIRD 50.0 1.609 2.0 1 G3804189 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300702067 2021-03-30 19:07:52.958398 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 40 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-03 09:47:00 obsr1711339 S22156743 Stationary P21 EBIRD 84.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309962970 2021-03-24 20:33:47.533911 7429 species avibase-1327AC55 Osprey Pandion haliaetus 5 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom36 L3513978 H 42.4167743 -76.3513288 2015-04-14 08:32:00 obsr2871406 S22859383 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316451895 2018-12-30 10:00:33 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-06 06:20:00 obsr2321296 S23263791 Traveling P22 EBIRD 268.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313668573 2021-03-30 19:07:52.958398 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 07:20:00 obsr1152226 S23101382 Rusty Blackbird Spring Migration Blitz P41 EBIRD 330.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305273260 2021-11-09 21:05:39.574432 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 2 United States US New York US-NY Rockland US-NY-087 30.0 Reed Pond, Pfizer Campus L3457488 P 41.0781219 -74.0227246 2015-03-25 07:30:00 obsr2346161 S22516276 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761692 2021-03-26 07:56:20.588749 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 5 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-21 09:00:00 obsr2218212 S22629532 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317204390 2015-12-09 22:03:06 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 30.0 South St. Seaport L1793018 H 40.7042389 -74.0021634 2015-05-08 14:32:00 obsr2179748 S23306142 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304407224 2022-02-17 14:32:23.002448 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-21 11:40:00 obsr152435 S22450555 Traveling P22 EBIRD 166.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301947184 2021-04-01 11:54:40.172593 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-04 13:13:00 obsr1032565 S22252211 Traveling P22 EBIRD 102.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291524857 2021-04-01 12:14:19.266649 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Suffolk US-NY-103 Iron Pier Beach L1052496 H 40.9878717 -72.6161528 2015-01-17 13:30:00 obsr2207991 S21387407 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310547503 2019-11-29 20:50:43 6339 species avibase-8535345B Herring Gull Larus argentatus 23 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 NY:SEN:Tyre: NYS-31: mucklands: E end, N side L3568833 P 43.0201917 -76.7178297 2015-04-12 09:08:00 obsr2760150 S22900141 Traveling P22 EBIRD 67.0 0.402 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317591425 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-09 08:15:00 obsr1045844 S23329252 Traveling P22 EBIRD 240.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305197934 2021-03-26 07:30:35.289997 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-25 07:10:00 obsr869999 S22510317 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291403684 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 12 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-17 08:49:00 obsr2574755 S21377516 Traveling P22 EBIRD 21.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288603298 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-02 12:50:00 obsr979921 S21151226 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1091951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301878476 2021-03-26 07:30:35.289997 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-01 12:15:00 obsr2683910 S22247360 Traveling P22 EBIRD 113.0 0.644 2.0 1 G1171260 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290871816 2015-01-13 17:20:43 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-13 10:00:00 obsr247620 S21334509 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318129237 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 09:30:00 obsr2633969 S23358133 Traveling P22 EBIRD 300.0 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304569905 2021-12-23 15:00:47.137144 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-03-21 08:32:00 obsr730231 S22462558 Stationary P21 EBIRD 56.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296260250 2021-03-26 07:30:35.289997 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 2 United States US New York US-NY Tompkins US-NY-109 13.0 my back yard Trumansburg L2594789 P 42.5410818 -76.6596392 2015-02-12 12:00:00 obsr2260025 S21781807 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307381360 2021-03-24 21:09:00.82373 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Rensselaer US-NY-083 13.0 Herrington Pond L1007930 H 42.7531258 -73.6282253 2015-04-04 10:05:00 obsr2211210 S22675556 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307830064 2019-04-19 13:17:53 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 25 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-05 19:00:00 obsr777630 S22706939 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304721082 2021-04-01 11:30:42.037277 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-03-22 14:15:00 obsr1555046 S22473740 Traveling P22 EBIRD 45.0 0.402 2.0 1 G1190691 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296787410 2015-02-14 15:15:39 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 Female, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 Oak Leaf Ln L1952075 P 43.0583843 -77.488085 2015-02-14 10:00:00 obsr2223307 S21830184 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386311228 2021-12-08 07:58:41.562209 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-12 13:23:00 obsr1559830 S28587963 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305712585 2021-03-30 19:29:01.097416 681 species avibase-407E2CA8 Common Merganser Mergus merganser 18 United States US New York US-NY Steuben US-NY-101 28.0 Hammondsport Inlet area L3519295 P 42.4049764 -77.2183084 2015-03-27 15:50:00 obsr2700440 S22550270 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309770489 2021-03-24 05:37:45.927792 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-13 13:35:00 obsr502830 S22845781 Traveling P22 EBIRD 132.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312069516 2018-08-04 17:09:38 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Onondaga US-NY-067 US-NY_2803 13.0 Minoa Oxbow rd L2833954 P 43.1208386 -75.9688497 2015-04-18 07:40:00 obsr2290617 S22998180 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311176116 2018-08-04 17:10:23 681 species avibase-407E2CA8 Common Merganser Mergus merganser 9 United States US New York US-NY Oswego US-NY-075 13.0 Oswego County Airport--Howard Rd. L1814858 H 43.3553061 -76.3795964 2015-04-18 14:23:00 obsr2700277 S22940317 Stationary P21 EBIRD 22.0 2.0 1 G1225676 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296571247 2021-03-23 16:48:08.60516 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake @ Tommy Creek L917386 P 42.6328182 -76.8732744 2015-02-13 15:30:00 obsr475746 S21810651 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304910646 2021-03-30 19:07:52.958398 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 50 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-03-23 15:16:00 obsr2692140 S22487592 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295850398 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-02-09 15:47:00 obsr1723318 S21749069 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319789715 2021-11-09 17:50:20.071794 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook School Road, Millbrook, NY L1098111 P 41.8453963 -73.6169815 2015-05-15 06:15:00 obsr2175245 S23452289 Traveling P22 EBIRD 150.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323943128 2018-08-06 22:31:25 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Cortland US-NY-023 28.0 AviCor6 L3513948 H 42.5284473 -75.9639848 2015-05-30 07:26:00 obsr2173269 S23704651 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293032952 2015-01-24 21:16:14 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 12 United States US New York US-NY Nassau US-NY-059 US-NY_1727 point lookout L1049583 P 40.589971 -73.5740662 2015-01-23 09:30:00 obsr1494607 S21525508 Traveling P22 EBIRD 60.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313375769 2017-09-15 17:52:17 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, Onanda Park (Upland Trails) L760662 H 42.7845197 -77.3181295 2015-04-26 09:28:00 obsr278057 S23082605 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320133769 2021-03-19 16:02:45.308962 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-16 06:05:00 obsr290506 S23470939 Traveling P22 EBIRD 254.0 3.219 2.0 1 G1273111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294579601 2020-09-05 16:11:49 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-01-16 07:30:00 obsr2409011 S21648131 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292458854 2021-04-01 12:45:19.712958 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Playland Lake Overlook (Hawk Watch Site) L92440 H 40.9683291 -73.6664001 2015-01-21 10:00:00 obsr363163 S21480626 Traveling P22 EBIRD 120.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340107152 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 30.0 Hendrix Creek L821734 H 40.6482804 -73.8749027 2015-01-11 13:05:00 obsr294325 S24873704 Traveling P22 EBIRD 80.0 1.609 3.0 1 G1395741 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311725865 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-17 18:43:00 obsr1548221 S22975821 Traveling P22 EBIRD 38.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322234409 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-23 08:15:00 obsr420385 S23594471 Traveling P22 EBIRD 255.0 4.828 2.0 1 G1285706 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302048856 2022-02-17 14:32:23.002448 303 species avibase-B59E1863 Canada Goose Branta canadensis 20 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-08 18:00:00 obsr609516 S22260047 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310647552 2021-03-26 06:39:43.334073 27380 species avibase-E53FC25C Swainson's Thrush Catharus ustulatus 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-17 08:08:00 obsr756196 S22906737 Traveling P22 EBIRD 115.0 1.127 2.0 1 G1222883 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310882675 2021-04-01 10:45:00.916278 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 8 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-17 10:55:00 obsr128156 S22922218 Traveling P22 EBIRD 28.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306083479 2021-03-23 16:45:39.358281 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY St. Lawrence US-NY-089 Rt. 131 just east of Wilson Hill Causeway L1405319 P 44.9295461 -75.0063764 2015-03-29 10:49:00 obsr1558090 S22577582 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304985832 2015-05-09 11:58:16 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-03-23 14:30:00 obsr1978185 S22493795 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304087645 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 7 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach State Park L359878 P 40.5898488 -73.5531744 2015-03-19 12:10:00 obsr916370 S22426002 Traveling P22 EBIRD 95.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289459747 2021-03-26 06:29:56.44369 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-01-06 08:18:00 obsr745890 S21220722 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300370083 2015-03-29 19:41:29 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 Unknown Sex, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-03-01 15:30:00 obsr2774749 S22133234 Stationary P21 EBIRD 30.0 2.0 1 G1197053 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313614005 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Lions L2803969 P 42.772447 -73.80926 2015-04-27 15:56:00 obsr648176 S23097852 Traveling P22 EBIRD 178.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311803133 2018-08-04 17:11:26 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Westchester US-NY-119 30.0 Angle Fly Preserve Somers L926434 P 41.2951314 -73.7167811 2015-04-21 08:00:00 obsr2078798 S22980743 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292052277 2021-03-30 19:29:33.633096 337 species avibase-694C127A Mute Swan Cygnus olor N X United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-19 08:15:00 obsr2206421 S21425141 Stationary P21 EBIRD 40.0 2.0 1 G1120210 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308692282 2021-04-01 12:32:15.282601 668 species avibase-9456DEDF Barrow's Goldeneye Bucephala islandica 4 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-09 11:30:00 obsr1693806 S22771967 Traveling P22 EBIRD 60.0 1.207 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304096116 2021-04-01 12:18:57.910168 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla N 6 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-03-19 16:58:00 obsr2683910 S22426662 Traveling P22 EBIRD 92.0 0.161 3.0 1 G1185375 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317611276 2015-05-09 15:06:34 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Allegany US-NY-003 28.0 Hawks Rd- Independence, NY L2894838 P 42.0672294 -77.7844048 2015-05-09 10:20:00 obsr2700440 S23330214 Traveling P22 EBIRD 65.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289640146 2015-03-24 20:01:59 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, 212 Tareyton L252844 P 42.4724094 -76.4601243 2015-01-07 07:43:00 obsr2307843 S21235398 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321080600 2021-03-26 06:29:56.44369 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 1 United States US New York US-NY Monroe US-NY-055 13.0 Backyard Webster Village L2521930 P 43.203862 -77.427156 2015-05-18 18:30:00 obsr302343 S23523219 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310840810 2021-11-09 19:57:48.990233 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-18 07:38:00 obsr749440 S22919461 Stationary P21 EBIRD 33.0 2.0 1 G1225461 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305667313 2021-04-01 12:18:57.910168 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis X United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-03-27 11:45:00 obsr2493328 S22546941 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001675 2021-03-26 07:56:20.588749 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-28 16:00:00 obsr2218212 S23775943 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309319674 2015-04-12 09:08:26 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 1 United States US New York US-NY Westchester US-NY-119 30.0 Trail By Lake L1499484 P 41.179245 -73.61007 2015-04-12 07:40:00 obsr1276920 S22815292 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314223350 2018-08-04 17:12:44 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 4 Female, Adult (2); Male, Adult (2) United States US New York US-NY Herkimer US-NY-043 14.0 Jerseyfield Rd - Curtiss Corners to end of blacktop (north) L1487291 P 43.1857179 -74.8114091 2015-04-29 14:42:00 obsr1000124 S23136086 Traveling P22 EBIRD 26.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299529076 2021-03-26 07:07:10.758746 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-02-24 16:43:00 obsr1893950 S22067146 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309687927 2021-04-01 12:26:53.827486 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 6 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-04-13 06:45:00 obsr2512689 S22839646 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301652476 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius 33 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-08 09:00:00 obsr2319444 S22228794 Traveling P22 EBIRD 240.0 3.219 11.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288277491 2021-03-30 19:07:52.958398 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 25 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-01 13:00:00 obsr1407710 S21124245 Traveling P22 EBIRD 30.0 0.805 2.0 1 G1088784 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304648805 2021-04-01 12:32:15.282601 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-22 08:30:00 obsr2207991 S22468126 Traveling P22 EBIRD 240.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316688355 2021-03-19 16:08:39.161312 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-05-06 19:22:00 obsr2497657 S23277533 Traveling P22 EBIRD 84.0 4.426 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312718688 2021-03-23 16:51:24.016808 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Steuben US-NY-101 28.0 Keuka Lake, Champlin Beach L745394 H 42.4022754 -77.2142529 2015-04-25 06:58:00 obsr1092576 S23043114 Traveling P22 EBIRD 17.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320324485 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 06:06:00 obsr2404047 S23480566 Traveling P22 EBIRD 480.0 4.828 3.0 1 G1274913 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295843898 2021-04-01 12:45:19.712958 6616 species avibase-7E022378 Common Loon Gavia immer 5 Male, Adult (3); Female, Adult (2) United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-08 13:15:00 obsr369788 S21748583 Stationary P21 EBIRD 59.0 13.0 1 G1141367 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS306761764 2021-03-26 07:56:20.588749 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-24 16:00:00 obsr2218212 S22629535 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320683212 2022-01-20 09:38:40.245267 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-17 06:15:00 obsr86161 S23499536 Traveling P22 EBIRD 373.0 4.023 20.0 1 G1275330 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304425695 2015-04-18 13:27:28 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 6 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-03-21 10:05:00 obsr2321296 S22451782 Stationary P21 EBIRD 10.0 4.0 1 G1187014 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325450815 2021-11-09 19:56:29.393767 23383 species avibase-F5C181CA Cliff Swallow Petrochelidon pyrrhonota 2 United States US New York US-NY Orange US-NY-071 28.0 My spot L3350343 P 41.2308311 -74.3717122 2015-04-16 17:42:00 obsr1603513 S23806220 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289119792 2021-03-26 07:56:20.588749 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-01-04 12:05:00 obsr2206421 S21194357 Stationary P21 EBIRD 35.0 2.0 1 G1095766 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309568318 2021-04-01 11:24:19.637193 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 1 United States US New York US-NY Monroe US-NY-055 13.0 LaSalle's Landing Park L140438 H 43.1763487 -77.5259313 2015-04-12 15:55:00 obsr302343 S22830991 Traveling P22 EBIRD 35.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297781230 2021-03-26 06:58:34.561206 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Orleans US-NY-073 13.0 US-NY-Medina-300 Mead Ave L2656564 P 43.22252 -78.374915 2015-02-13 08:00:00 obsr274914 S21919885 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314556647 2016-09-12 10:37:46 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP L246469 H 42.055 -78.7661111 2015-04-30 09:20:00 obsr1380963 S23157010 Traveling P22 EBIRD 10.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297627986 2021-03-26 08:14:57.071052 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Westchester US-NY-119 30.0 Backyard L3386318 P 41.1962232 -73.6736298 2015-02-16 15:00:00 obsr2804319 S21905186 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311514020 2021-03-23 17:26:08.495143 406 species avibase-27B2749A Wood Duck Aix sponsa X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-10 11:40:00 obsr2233270 S22961003 Traveling P22 EBIRD 115.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319348072 2021-03-19 16:44:35.607263 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-13 09:20:00 obsr2289693 S23426567 Traveling P22 EBIRD 60.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309591622 2021-03-23 17:15:00.080143 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Wayne US-NY-117 13.0 Casey Park, Town of Ontario L2933674 H 43.2352297 -77.2896552 2015-04-12 15:10:00 obsr528918 S22832537 Traveling P22 EBIRD 85.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304210515 2021-03-24 20:33:47.533911 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-20 12:55:00 obsr436489 S22435695 Stationary P21 EBIRD 20.0 2.0 1 G1185958 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303391766 2021-03-26 06:29:56.44369 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 5 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-03-15 08:20:00 obsr2595828 S22371303 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1277039594 2021-11-14 11:47:45.874564 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-04-16 08:20:00 obsr2155450 S97571155 Traveling P22 EBIRD 80.0 2.012 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296794328 2021-03-23 16:39:03.255227 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 15 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-02-14 07:45:00 obsr1958124 S21830824 Traveling P22 EBIRD 2.0 0.322 2.0 1 G1145914 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291162502 2021-03-23 17:23:45.772216 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Livingston US-NY-051 13.0 NY Livingston: Lee Rd 6 mi nne Groveland L3294137 P 42.74883 -77.74538 2015-01-15 13:50:00 obsr39511 S21357896 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289066615 2021-04-01 11:15:31.646886 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-04 13:15:00 obsr150415 S21190001 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303212189 2020-03-22 07:58:01 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 3 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-03-15 08:15:00 obsr1696616 S22356881 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310232800 2018-08-04 17:06:16 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area - NCAW L473419 P 43.091096 -77.3856997 2015-04-06 15:40:00 obsr2113616 S22877965 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311159846 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 16:30:00 obsr1077730 S22939310 Traveling P22 EBIRD 90.0 3.219 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309377045 2022-03-05 22:03:50.715584 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-12 08:00:00 obsr2219590 S22818792 Traveling P22 EBIRD 210.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314465399 2016-03-08 21:31:55 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-24 10:00:00 obsr2331937 S23151114 Traveling P22 EBIRD 30.0 0.805 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304835371 2022-02-18 10:47:29.953615 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 8 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-23 07:09:00 obsr1062070 S22481707 Stationary P21 EBIRD 97.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309284695 2015-04-12 00:25:01 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 2 United States US New York US-NY Onondaga US-NY-067 13.0 ISR 90 - between Exits 39 & 40. L1519744 P 43.0868318 -76.4068112 2015-04-11 19:19:00 obsr316199 S22813036 Incidental P20 EBIRD 0 G1215531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332434914 2021-04-27 11:51:24.07805 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 23 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Irondequoit-162 Harwick Rd L3800402 P 43.174059 -77.55393 2015-04-26 11:53:00 obsr334398 S24314952 Traveling P22 EBIRD 175.0 1.609 15.0 1 G6615593 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312769785 2021-03-19 16:44:35.607263 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-04-25 07:51:00 obsr749440 S23046422 Traveling P22 EBIRD 229.0 6.437 31.0 1 G1235125 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311527415 2021-03-24 20:33:47.533911 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-04-20 09:14:00 obsr1655171 S22961888 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323572690 2018-08-04 17:30:31 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-28 11:50:00 obsr2504709 S23678157 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292641049 2021-03-26 06:29:56.44369 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 30 United States US New York US-NY Monroe US-NY-055 13.0 Jeffords Road L3310183 P 43.01 -77.62 2015-01-19 14:00:00 obsr1463039 S21494895 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316265301 2021-04-01 12:18:57.910168 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Beebe Lake L281786 H 42.4512932 -76.4767515 2015-04-26 08:35:00 obsr1725472 S23253435 Traveling P22 EBIRD 65.0 0.161 3.0 1 G1239951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313801943 2021-04-01 12:24:14.132004 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 NE of Ft Ed L2785662 P 43.288771 -73.52378 2015-04-28 06:57:00 obsr648176 S23109869 Traveling P22 EBIRD 429.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318493307 2021-03-26 06:09:25.361188 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-05-11 07:00:00 obsr879105 S23377883 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319875544 2021-03-19 16:44:35.607263 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-15 10:00:00 obsr1991824 S23456809 Traveling P22 EBIRD 90.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291038209 2022-02-17 14:32:23.002448 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-14 14:30:00 obsr2448957 S21347841 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS295290155 2021-03-23 17:14:01.933181 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Washington US-NY-115 13.0 River Rd., Ft. Miller L2742155 H 43.1343397 -73.5892952 2015-02-01 10:49:00 obsr1222746 S21704994 Traveling P22 EBIRD 38.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310661166 2021-03-26 07:07:10.758746 255 species avibase-466E9077 Greater White-fronted Goose Anser albifrons 1 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-246 Downes Ave L3570063 P 40.536328 -74.186852 2015-04-17 13:07:00 obsr1958124 S22907638 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313459363 2021-04-01 12:44:06.475065 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Warren US-NY-113 14.0 Loon Lake Camp L3594831 P 43.6637614 -73.8404503 2015-04-26 13:00:00 obsr2841967 S23088419 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301977948 2021-03-23 16:48:08.60516 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-03-09 08:30:00 obsr204036 S22254573 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288758784 2017-01-04 20:36:38 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-01-03 08:33:00 obsr986025 S21162184 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315742196 2021-03-24 19:47:16.07498 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Madison US-NY-053 13.0 Cazenovia Lake L389358 P 42.9261372 -75.8702946 2015-05-04 12:15:00 obsr2290617 S23222886 Traveling P22 EBIRD 35.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312350421 2019-01-07 15:34:50 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-04-23 15:15:00 obsr408487 S23016956 Stationary P21 EBIRD 25.0 4.0 1 G1232925 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298855595 2021-11-09 21:57:18.616613 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Ulster US-NY-111 28.0 Southern Ulster L3406206 P 41.62807 -74.21404 2015-02-21 09:30:00 obsr1482758 S22012514 Traveling P22 EBIRD 218.0 32.186 2.0 1 G1155504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291935050 2018-08-04 16:54:01 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Onondaga US-NY-067 13.0 Carpenters Brook Fish Hatchery L982090 H 43.0161953 -76.3897419 2015-01-19 12:00:00 obsr2279567 S21418854 Traveling P22 EBIRD 11.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311443486 2021-04-01 11:15:31.646886 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 08:30:00 obsr2603801 S22956658 Traveling P22 EBIRD 330.0 6.437 2.0 1 G1227456 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308429810 2021-12-03 21:50:44.732892 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 10 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-04-08 09:41:00 obsr1958124 S22751810 Traveling P22 EBIRD 10.0 0.805 2.0 1 G1211601 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305556126 2021-03-24 20:33:47.533911 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 3 United States US New York US-NY Tompkins US-NY-109 13.0 105 Eastern Heights Dr., Ithaca L2724192 P 42.425089 -76.455526 2015-03-27 07:21:00 obsr1318356 S22538229 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315266727 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 18:05:00 obsr1433400 S23197412 Traveling P22 EBIRD 80.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289318982 2015-05-07 17:02:31 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-01-03 10:51:00 obsr455249 S21209769 Traveling P22 EBIRD 9.0 0.209 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295460303 2021-03-23 16:45:39.358281 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 12 United States US New York US-NY St. Lawrence US-NY-089 US-NY_802 13.0 Robert Moses SP, Massena L664990 H 44.9950405 -74.7988701 2015-02-06 15:10:00 obsr199715 S21718969 Stationary P21 EBIRD 60.0 2.0 1 G1138274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297962136 2021-03-26 06:29:56.44369 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 2 United States US New York US-NY Monroe US-NY-055 13.0 Fairport L193537 T 43.09866 -77.44192 2015-02-16 07:00:00 obsr1578491 S21935895 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313081458 2020-07-20 09:16:51 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 61 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-26 06:49:00 obsr2224244 S23065063 Traveling P22 EBIRD 179.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288319847 2021-04-01 11:30:42.037277 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-01 09:00:00 obsr1102914 S21127993 Traveling P22 EBIRD 150.0 3.219 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307587794 2015-04-20 20:03:44 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Greene US-NY-039 13.0 south mountain palenville L3533498 P 42.1933333 -74.026486 2015-04-04 07:30:00 obsr594889 S22689962 Stationary P21 EBIRD 150.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310539123 2021-03-26 06:29:56.44369 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-04-16 06:30:00 obsr2449897 S22899552 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316145057 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L785945 P 40.783661 -73.9633942 2015-05-05 07:30:00 obsr2883401 S23245574 Traveling P22 EBIRD 420.0 6.437 16.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290020915 2015-01-18 10:49:21 6616 species avibase-7E022378 Common Loon Gavia immer 1 Male, Adult (1) United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-01-09 07:40:00 obsr2377251 S21265572 Stationary P21 EBIRD 20.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS322012871 2021-03-26 06:21:54.883933 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-22 07:50:00 obsr1516787 S23581515 Traveling P22 EBIRD 190.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309962504 2015-04-14 11:37:00 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Tompkins US-NY-109 28.0 US-NY-Ithaca-1986-2168 Co Rd 164 L3563318 P 42.411315 -76.37246 2015-04-14 08:24:00 obsr2871406 S22859346 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306525709 2021-11-15 03:06:58.889978 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-31 11:30:00 obsr585997 S22611659 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310059866 2021-04-01 11:30:42.037277 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 3 United States US New York US-NY New York US-NY-061 30.0 Washington Square Park L1628412 H 40.7311385 -73.9972788 2015-04-14 17:45:00 obsr152435 S22866270 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311049118 2021-03-31 04:01:10.517395 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 07:35:00 obsr41879 S22932586 Traveling P22 EBIRD 320.0 8.047 16.0 1 G1224971 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318704541 2018-08-06 22:29:41 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Monroe US-NY-055 13.0 Widener Park L1916813 P 43.0788096 -77.763505 2015-05-11 13:24:00 obsr745890 S23389372 Traveling P22 EBIRD 45.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308292591 2021-03-23 17:41:09.545385 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve--Buttermilk Hill area L2724302 H 41.1067994 -73.8138199 2015-04-07 09:30:00 obsr1742994 S22741187 Traveling P22 EBIRD 210.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289500564 2015-01-06 15:04:04 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Oswego US-NY-075 13.0 Fulton, Lock 3 L2506485 P 43.3223283 -76.4172506 2015-01-06 15:01:00 obsr642516 S21224218 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498488 2021-01-02 20:17:06.602961 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 17 United States US New York US-NY Tompkins US-NY-109 13.0 Allan H. Treman State Marine Park--marina (not lakeshore or woods) L159024 H 42.4571425 -76.5143238 2015-01-17 14:30:00 obsr887540 S21385305 Stationary P21 EBIRD 102.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS412925696 2020-08-24 20:20:03 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Warren US-NY-113 14.0 Warner Pond, RT9 L3578982 P 43.7135149 -73.8332212 2015-04-19 obsr2943723 S30299380 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317923707 2021-04-01 11:15:31.646886 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 07:30:00 obsr2908667 S23346971 Traveling P22 EBIRD 420.0 8.047 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291195912 2019-01-12 21:32:01 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Spafford, 2040 East Lake Road L3294511 P 42.86698 -76.35372 2015-01-15 07:53:00 obsr800690 S21360598 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS298087678 2018-11-05 19:35:07 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps X United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-15 16:20:00 obsr1092576 S21946884 Historical P62 EBIRD 1.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309210052 2022-02-21 13:41:55.027797 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons 20 United States US New York US-NY New York US-NY-061 30.0 Fort Tryon Park L591127 H 40.8629374 -73.9327457 2015-04-11 19:30:00 obsr200707 S22808200 Traveling P22 EBIRD 30.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294325676 2015-03-24 20:01:59 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, 212 Tareyton L252844 P 42.4724094 -76.4601243 2015-02-01 08:02:00 obsr2307843 S21628110 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311263830 2021-03-19 16:19:20.977326 32578 species avibase-000482C9 Orchard Oriole Icterus spurius N 7 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-19 08:20:00 obsr502830 S22945643 Traveling P22 EBIRD 245.0 2.414 3.0 1 G1226244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294599838 2022-02-17 14:32:23.002448 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-21 10:30:00 obsr1152226 S21649809 Traveling P22 EBIRD 120.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290471354 2021-03-30 19:29:33.633096 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1500 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-11 08:00:00 obsr1615708 S21302230 Traveling P22 EBIRD 49.0 0.322 2.0 1 G1105518 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323062686 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-26 06:17:00 obsr152435 S23643949 Traveling P22 EBIRD 130.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315019679 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 13.0 University of Rochester--River Front and Pedestrian Bridge L899443 H 43.1310098 -77.6327848 2015-05-02 08:20:00 obsr302343 S23183539 Traveling P22 EBIRD 115.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312281016 2021-03-19 16:12:42.877422 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-04-23 10:00:00 obsr2766625 S23012319 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320217701 2019-04-02 20:15:47 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-16 08:00:00 obsr879105 S23475088 Traveling P22 EBIRD 60.0 0.402 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299197137 2015-02-23 13:15:04 592 species avibase-3072CC16 Redhead Aythya americana 45 United States US New York US-NY Suffolk US-NY-103 30.0 Goldsmiths Inlet L138043 H 41.0541647 -72.4740449 2015-02-23 13:06:00 obsr2485753 S22041846 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312385951 2021-03-30 19:25:27.212017 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-23 08:55:00 obsr396989 S23019531 Traveling P22 EBIRD_NJ 315.0 7.886 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306414558 2021-03-26 07:56:20.588749 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 80 United States US New York US-NY Nassau US-NY-059 Stepping Stone Park L1403484 H 40.8177813 -73.7565535 2015-03-30 19:00:00 obsr676630 S22602913 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321008215 2021-04-01 11:30:42.037277 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 1 United States US New York US-NY New York US-NY-061 30.0 Riverside Park--North of 96th St. L1018490 H 40.8073616 -73.9684904 2015-05-17 10:00:00 obsr794187 S23519167 Traveling P22 EBIRD 150.0 2.414 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317072481 2018-08-04 17:15:06 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 15 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College--Visitor Interpretive Center L212478 H 44.4486136 -74.2594002 2015-05-07 07:05:00 obsr2818734 S23299236 Traveling P22 EBIRD 210.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS343724655 2015-09-22 10:11:03 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY New York US-NY-061 30.0 American Museum of Natural History L3550197 P 40.7811264 -73.9744395 2015-04-08 12:00:00 obsr2293838 S22766485 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306388119 2021-04-01 12:14:19.266649 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2796 USFWS_480 Seatuck National Wildlife Refuge L2497290 P 40.7141276 -73.2085836 2015-03-30 16:30:00 obsr2902954 S22600846 Traveling P22 EBIRD 120.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308027713 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-04-06 09:00:00 obsr247620 S22721104 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289626505 2021-04-26 05:03:09.627903 483 species avibase-85625D75 Mallard Anas platyrhynchos 20 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-06 13:33:00 obsr564905 S21234163 Traveling P22 EBIRD 50.0 0.483 3.0 1 G1099709 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303294085 2021-03-30 19:29:33.633096 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 1 United States US New York US-NY Suffolk US-NY-103 30.0 Sagg Bridge L505854 H 40.9185757 -72.2912621 2015-03-15 13:31:00 obsr598381 S22363255 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137350 2021-03-19 16:06:54.047432 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-01 10:41:00 obsr800690 S21112166 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317151270 2018-08-06 22:29:10 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-08 07:00:00 obsr1472872 S23303443 Traveling P22 EBIRD 225.0 9.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312993892 2021-11-15 03:06:58.889978 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-25 13:30:00 obsr1008756 S23059704 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293113079 2021-06-13 05:18:24.710376 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Kings US-NY-047 30.0 Wyckoff Street Home L903070 P 40.683806 -73.9857732 2015-01-25 11:35:00 obsr2883698 S21532196 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290870880 2015-01-13 17:15:30 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-13 09:20:00 obsr1334267 S21334430 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321208492 2021-04-01 11:30:42.037277 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-16 07:30:00 obsr2802585 S23531489 Traveling P22 EBIRD 300.0 9.656 2.0 1 G1279192 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314664317 2021-11-15 03:06:58.889978 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-01 08:30:00 obsr139757 S23163177 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291028527 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-01-14 11:45:00 obsr2855945 S21346986 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312865128 2015-04-30 10:51:03 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica X United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.4220913 -79.4281205 2015-04-25 15:30:00 obsr1092576 S23051953 Traveling P22 EBIRD 39.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306087541 2018-08-04 17:04:35 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-03-29 09:00:00 obsr1848026 S22577910 Traveling P22 EBIRD 121.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313730564 2018-02-01 15:11:46 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor27 L3513969 H 42.6604171 -76.149084 2015-04-28 08:27:00 obsr620377 S23105372 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311550714 2021-11-15 03:06:58.889978 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-12 11:00:00 obsr2735715 S22963349 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320817244 2021-03-19 16:02:45.308962 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 3 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-05-18 06:40:00 obsr1830659 S23507752 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299477182 2018-08-04 16:58:01 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-02-22 10:25:00 obsr2700277 S22063102 Stationary P21 EBIRD 24.0 3.0 1 G1159216 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308348533 2015-04-07 19:42:18 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 28.0 Tri-City Airport L2347159 H 42.08439 -76.093867 2015-04-07 19:23:00 obsr1764243 S22745458 Traveling P22 EBIRD 18.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300691333 2018-01-07 20:13:45 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-03-03 06:29:00 obsr2420101 S22155926 Stationary P21 EBIRD 17.0 2.0 1 G1165624 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310235051 2016-09-15 22:03:48 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 4 Unknown Sex, Adult (4) United States US New York US-NY Allegany US-NY-003 28.0 5541 Jericho Hill Rd L2230290 P 42.2385979 -77.7931671 2015-04-14 09:15:00 obsr2911979 S22878118 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304425099 2018-08-04 17:02:20 406 species avibase-27B2749A Wood Duck Aix sponsa 60 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-03-21 14:40:00 obsr1418810 S22451731 Stationary P21 EBIRD 15.0 2.0 1 G1186999 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311163296 2021-03-24 20:23:39.258075 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_847 30.0 Long beach Nissequogue NY L2431204 P 40.9196256 -73.1704259 2015-04-18 09:00:00 obsr725344 S22939534 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305230462 2021-04-01 12:31:09.823741 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Livingston US-NY-051 US-NY_1760 13.0 US20 between 5 and Greenway L961048 P 42.9179036 -77.7740192 2015-03-25 12:31:00 obsr1060479 S22512905 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305735459 2021-04-01 11:49:53.573686 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 20 United States US New York US-NY Queens US-NY-081 30.0 Rockaway Community Park L298364 H 40.5984323 -73.7870095 2015-03-28 08:07:00 obsr2574755 S22551996 Traveling P22 EBIRD 20.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298480744 2017-02-17 11:45:59 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Richmond US-NY-085 Miller Field--Beach L2480167 H 40.564872 -74.0928776 2015-02-19 13:11:00 obsr1893950 S21980813 Traveling P22 EBIRD 14.0 0.322 2.0 1 G1153089 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298879067 2021-11-09 21:17:58.494129 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 6 United States US New York US-NY Ulster US-NY-111 28.0 Lippincott Rd., Wallkill L1097498 H 41.6194441 -74.1931401 2015-02-21 13:20:00 obsr350767 S22014409 Stationary P21 EBIRD 5.0 4.0 1 G1155617 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293250025 2018-08-04 16:55:16 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 4 United States US New York US-NY Essex US-NY-031 13.0 Essex Ferry Dock L794629 H 44.3109228 -73.3510002 2015-01-25 15:00:00 obsr822321 S21542753 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301887967 2021-03-24 21:10:11.310781 6043 species avibase-2C7A2673 Lesser Yellowlegs Tringa flavipes 3 United States US New York US-NY Saratoga US-NY-091 13.0 36 Curt Blvd L2229955 P 43.0492325 -73.8315735 2015-03-07 14:15:00 obsr907769 S22248081 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312775695 2021-03-26 06:39:43.334073 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Shakespeare Garden L1673419 H 40.7798887 -73.9697911 2015-04-25 11:10:00 obsr613775 S23046740 Traveling P22 EBIRD 46.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308210521 2017-03-01 21:48:28 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-07 08:00:00 obsr544268 S22735148 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325151125 2019-07-23 17:28:19 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip G L3559870 P 40.435667 -73.336683 2015-04-11 15:00:00 obsr109265 S23786941 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310216776 2021-03-24 19:23:17.886063 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-04-15 08:35:00 obsr2871406 S22876977 Traveling P22 EBIRD 18.0 0.161 3.0 1 G1220765 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291179464 2018-08-04 16:53:20 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Saratoga US-NY-091 13.0 Hudson River @ Bunce Lane, Stillwater L2738236 P 42.9363913 -73.6592692 2015-01-15 08:20:00 obsr2855945 S21359291 Stationary P21 EBIRD 10.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300036267 2021-03-26 07:30:35.289997 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-28 11:05:00 obsr1895507 S22106374 Traveling P22 EBIRD 15.0 0.322 5.0 1 G1161716 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298807227 2021-03-30 19:43:32.881136 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-21 11:15:00 obsr1334704 S22008680 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307107930 2015-04-03 08:58:46 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 5 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-02 06:30:00 obsr2716320 S22655770 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317735276 2021-03-26 07:46:52.994574 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 05:40:00 obsr119187 S23336978 Traveling P22 EBIRD 290.0 4.828 1.0 1 G1258875 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308160865 2015-04-06 22:42:05 6339 species avibase-8535345B Herring Gull Larus argentatus 1 Male, Adult (1) United States US New York US-NY Fulton US-NY-035 13.0 Co Rt 151 - Town of Oppenheim L622995 P 43.0672575 -74.7324371 2015-04-05 17:06:00 obsr316199 S22730920 Traveling P22 EBIRD 7.0 1.77 4.0 1 G1209044 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308215610 2021-04-01 12:31:09.823741 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake - Inlet L723215 P 42.7139754 -77.7105045 2015-04-07 08:07:00 obsr72341 S22735565 Traveling P22 EBIRD 68.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293838530 2018-08-04 16:55:19 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 6 United States US New York US-NY Jefferson US-NY-045 13.0 Kelsey Creek, Watertown L273304 H 43.9906455 -75.9170911 2015-01-27 09:00:00 obsr585290 S21589675 Traveling P22 EBIRD 420.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322767135 2018-08-06 22:31:04 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-25 06:40:00 obsr1830659 S23625284 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307615504 2021-03-30 19:13:38.458673 456 species avibase-D201EB72 American Wigeon Mareca americana 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Burger Park L390594 H 43.3099074 -77.7326596 2015-04-04 09:55:00 obsr408487 S22691912 Traveling P22 EBIRD 40.0 0.483 2.0 1 G1205184 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300069054 2021-03-24 20:16:00.852773 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-02-28 07:18:00 obsr1893950 S22108993 Traveling P22 EBIRD 14.0 0.644 2.0 1 G1161961 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310089951 2021-03-31 04:02:52.909278 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula N 1 United States US New York US-NY Orleans US-NY-073 13.0 Posson Rd., Medina L1474052 H 43.1612053 -78.3321027 2015-04-14 19:16:00 obsr2588479 S22868394 Stationary P21 EBIRD 66.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291296687 2021-11-09 21:05:38.512979 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY Rockland US-NY-087 28.0 US-NY-GE Crotonville L3291925 P 41.199082 -73.959177 2015-01-16 14:15:00 obsr385096 S21369292 Traveling P22 EBIRD 75.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323118113 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach Field 2 L1211085 P 40.5921871 -73.5207224 2015-05-23 10:00:00 obsr352522 S23647581 Stationary P21 EBIRD 420.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306775409 2021-11-15 03:06:58.889978 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-01 16:00:00 obsr1175815 S22630679 Traveling P22 EBIRD 62.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317177845 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 17:25:00 obsr822430 S23304791 Traveling P22 EBIRD 130.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292990065 2021-03-26 07:30:35.289997 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 140 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-24 14:28:00 obsr1655171 S21522340 Stationary P21 EBIRD 69.0 2.0 1 G1122004 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322391622 2015-05-23 23:13:12 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Erie US-NY-029 13.0 DL&W Terminal, Buffalo L2181339 P 42.8735424 -78.8761497 2015-05-23 19:00:00 obsr2537615 S23603523 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324150316 2018-08-04 17:30:42 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-30 19:29:00 obsr589593 S23717677 Traveling P22 EBIRD 20.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309339509 2021-03-26 07:20:31.408164 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos N 10 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-04-12 08:00:00 obsr2011512 S22816504 Traveling P22 EBIRD 90.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320668487 2021-03-26 07:56:20.588749 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N 2 United States US New York US-NY Nassau US-NY-059 30.0 Lakeville Road, Lake Success L2875240 P 40.7672816 -73.7075329 2015-05-17 13:00:00 obsr676630 S23498759 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307764945 2018-08-04 17:05:36 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 350 United States US New York US-NY Kings US-NY-047 Coney Island Creek Park L614792 H 40.5813224 -74.0052688 2015-04-05 11:45:00 obsr1807494 S22702124 Traveling P22 EBIRD 30.0 0.402 2.0 1 G1205851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290879811 2021-03-30 19:39:10.250398 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-13 10:10:00 obsr916370 S21335173 Traveling P22 EBIRD 120.0 7.725 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324041527 2021-04-01 11:30:42.037277 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY New York US-NY-061 30.0 W Village Backyards and Airspace L974907 P 40.7366845 -74.0071853 2015-05-30 17:32:00 obsr128156 S23710527 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313104660 2021-03-23 17:23:45.772216 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 10 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake Park L792637 H 42.7759994 -77.6113701 2015-04-26 10:32:00 obsr2588479 S23066410 Traveling P22 EBIRD 74.0 0.404 1.0 1 G1237474 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317976069 2021-03-23 17:21:37.486392 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Fulton US-NY-035 13.0 Tillboro rd st johnsville L2255286 P 43.0266198 -74.5724702 2015-05-09 16:52:00 obsr1683226 S23350150 Traveling P22 EBIRD 159.0 4.828 2.0 1 G1261081 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS725736301 2019-03-17 16:38:40 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Essex US-NY-031 14.0 Chapamini Residence L2506431 P 43.820419 -73.493089 2015-05-17 02:15:00 obsr265018 S53947572 Traveling P22 EBIRD 93.0 1.609 2.0 1 G3954751 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294826082 2021-03-23 17:23:45.772216 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N 4 United States US New York US-NY Livingston US-NY-051 13.0 Doran Rd., Lima L786732 H 42.8561713 -77.5703269 2015-02-03 15:22:00 obsr528918 S21668240 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304005508 2021-03-26 08:12:51.35913 303 species avibase-B59E1863 Canada Goose Branta canadensis 40 United States US New York US-NY Schuyler US-NY-097 13.0 Seneca Harbor Park L150677 H 42.383846 -76.873375 2015-03-19 08:55:00 obsr1828453 S22419372 Stationary P21 EBIRD 15.0 3.0 1 G1184991 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308803623 2021-03-22 09:17:32.016297 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 22 F C1 F United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-10 07:06:00 obsr666964 S22780439 Stationary P21 EBIRD 42.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288350167 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 8 United States US New York US-NY New York US-NY-061 30.0 West 4th St and 11th St L3255395 P 40.7362446 -74.0034049 2015-01-01 14:05:00 obsr2684600 S21130489 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312546463 2021-04-01 11:30:42.037277 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 09:00:00 obsr2706811 S23030992 Traveling P22 EBIRD 120.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308688715 2021-03-30 19:19:56.775388 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 10 United States US New York US-NY Ontario US-NY-069 28.0 Canandaigua Lake, Woodville Boat Launch (Ontario Co.) L729068 H 42.6685886 -77.3638478 2015-04-09 13:00:00 obsr983655 S22771643 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305148301 2021-03-24 20:23:39.258075 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Elizabeth A Morton National wildlife refuge L3512847 P 40.989382 -72.371825 2015-03-07 08:30:00 obsr2654038 S22506687 Traveling P22 EBIRD 180.0 4.828 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318143699 2021-03-30 19:39:10.250398 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-05-08 17:00:00 obsr2207991 S23358810 Traveling P22 EBIRD 210.0 6.437 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310499990 2021-04-01 11:30:42.037277 7940 spuh avibase-CA08045E Accipiter sp. Accipiter sp. 2 United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--145th-155th St. L2594366 H 40.8303434 -73.952501 2015-04-16 13:40:00 obsr215694 S22896762 Traveling P22 EBIRD 85.0 0.805 19.0 1 G1222106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312856640 2021-11-09 17:48:39.818677 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Dutchess US-NY-027 13.0 104 Bedell Rd, Poughkeepsie L10910414 P 41.7239345 -73.8816366 2015-04-24 07:30:00 obsr788817 S23051459 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291327666 2015-01-16 18:23:24 681 species avibase-407E2CA8 Common Merganser Mergus merganser 8 United States US New York US-NY Westchester US-NY-119 28.0 Georges Island Park L374054 H 41.2407495 -73.943342 2015-01-14 15:00:00 obsr238853 S21371643 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313670759 2021-04-01 11:49:53.573686 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Queens US-NY-081 30.0 Ridgewood Reservoir L393007 H 40.688969 -73.8863182 2015-04-26 08:40:00 obsr2908667 S23101508 Traveling P22 EBIRD 270.0 4.828 8.0 1 G1238523 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312331915 2018-08-04 17:11:50 21291 species avibase-68887DE7 Boreal Chickadee Poecile hudsonicus 1 Male, Adult (1) United States US New York US-NY Hamilton US-NY-041 14.0 Indian Lake - Vicinity of Lewey Lake Outlet L1794410 P 43.6532637 -74.3854055 2015-04-22 15:55:00 obsr1000124 S23015748 Traveling P22 EBIRD 15.0 0.322 4.0 1 G1232854 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312866064 2021-03-19 16:02:45.308962 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-25 13:02:00 obsr800690 S23052013 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292158099 2021-03-30 19:39:10.250398 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 28 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-20 11:15:00 obsr247620 S21436672 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318407662 2017-04-17 15:09:56 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-05-09 06:30:00 obsr2909248 S23373056 Stationary P21 EBIRD 300.0 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305281351 2021-04-01 11:54:40.172593 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-03-25 08:55:00 obsr396989 S22516954 Traveling P22 EBIRD_NJ 375.0 7.725 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315472474 2021-03-26 06:29:56.44369 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-03 10:36:00 obsr334398 S23208121 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312221566 2018-08-04 17:11:50 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cayuga Nature Center L295619 H 42.5180742 -76.5573263 2015-04-22 15:45:00 obsr2260025 S23008394 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320359148 2021-03-26 07:52:59.845315 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-16 17:30:00 obsr1000124 S23482301 Area P23 EBIRD 150.0 2.59 1.0 1 G1274062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300200862 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-02-28 08:00:00 obsr1245041 S22119731 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304083831 2019-07-23 17:28:02 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-03-19 16:45:00 obsr2485753 S22425712 Traveling P22 EBIRD 55.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317123999 2018-08-06 22:29:09 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-08 06:00:00 obsr1165633 S23302073 Traveling P22 EBIRD 274.0 7.081 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302064523 2019-10-25 15:54:28 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 3 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-03-09 17:20:00 obsr2211750 S22261372 Stationary P21 EBIRD 20.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332422320 2021-03-19 16:44:35.607263 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Scottsville-700 Ballantyne Rd L2999964 P 43.076147 -77.731112 2015-05-15 19:22:00 obsr334398 S24314108 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298039834 2021-11-09 18:34:57.804398 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-02-17 13:30:00 obsr1264675 S21942654 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288895577 2021-04-01 12:32:15.282601 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 34 United States US New York US-NY Nassau US-NY-059 30.0 Twin Lakes Preserve L279979 H 40.6788694 -73.5147682 2015-01-03 13:00:00 obsr1615708 S21176780 Traveling P22 EBIRD 44.0 2.414 3.0 1 G1094199 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306417278 2021-03-30 19:03:28.117389 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon X United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.7298675 2015-03-29 12:56:00 obsr34822 S22603125 Stationary P21 EBIRD 34.0 4.0 1 G1197069 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316310209 2021-11-15 03:06:58.889978 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 12:50:00 obsr516108 S23256009 Traveling P22 EBIRD 385.0 2.414 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310622630 2015-04-17 15:07:35 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 Tracy Rd. Swamps L590801 H 42.4957279 -73.872267 2015-04-17 10:30:00 obsr2321296 S22905264 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319933597 2018-02-01 15:11:46 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor26 L3513968 H 42.5409476 -76.1192138 2015-05-09 05:20:00 obsr2535282 S23459946 Stationary P21 EBIRD 13.0 2.0 1 G1272257 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310287575 2016-09-12 10:28:01 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-04-13 10:00:00 obsr2475075 S22881715 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301222483 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-06 11:05:00 obsr481595 S22195492 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301369593 2021-04-01 12:35:52.669792 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Onondaga US-NY-067 13.0 US-NY-Phoenix-9434 Pendergast Rd L3460935 P 43.229934 -76.30642 2015-03-07 10:45:00 obsr184660 S22207944 Stationary P21 EBIRD 38.0 4.0 1 G1168728 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305645965 2021-04-01 12:18:57.910168 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 22 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-03-27 16:32:00 obsr2074043 S22545168 Traveling P22 EBIRD 34.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289113709 2021-03-24 21:01:50.671145 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 10 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-04 08:50:00 obsr2206421 S21193888 Traveling P22 EBIRD 110.0 1.609 2.0 1 G1095708 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321247721 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-19 12:00:00 obsr2706811 S23533873 Traveling P22 EBIRD 120.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303230650 2021-03-26 07:07:10.758746 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 1 United States US New York US-NY Richmond US-NY-085 30.0 In the yard L2520422 P 40.6384529 -74.1069876 2015-03-15 10:30:00 obsr656097 S22358412 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294811950 2021-04-01 12:11:50.996293 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Seneca US-NY-099 13.0 Geneva Waterfront - Seneca Lake L1187906 P 42.8739513 -76.9593143 2015-02-03 14:30:00 obsr2744341 S21667130 Traveling P22 EBIRD 120.0 3.219 1.0 1 G1134862 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295611318 2018-08-04 16:55:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Zachs Bay L610793 H 40.6014415 -73.4918618 2015-02-08 13:10:00 obsr87415 S21730887 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295798457 2021-03-23 16:52:36.900075 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 12 United States US New York US-NY Suffolk US-NY-103 30.0 USFWS_636 Elizabeth A. Morton National Wildlife Refuge L3349403 P 40.9879284 -72.3688102 2015-02-07 07:00:00 obsr2934754 S21744878 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320817633 2021-07-23 18:22:55.653138 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 4 United States US New York US-NY Kings US-NY-047 Coney Island Creek Park L614792 H 40.5813224 -74.0052688 2015-05-18 06:02:00 obsr187432 S23507775 Traveling P22 EBIRD 74.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322532038 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 07:00:00 obsr2514491 S23611291 Traveling P22 EBIRD 330.0 8.047 3.0 1 G1287465 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300462800 2018-08-04 16:58:28 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 19 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-02-28 15:28:00 obsr1982614 S22139574 Traveling P22 EBIRD 45.0 0.306 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292600221 2021-03-23 17:00:13.087107 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 200 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-01-22 08:34:00 obsr2683910 S21491884 Stationary P21 EBIRD 25.0 2.0 1 G1119384 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314123133 2021-04-01 10:45:00.916278 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx, Boston Road L3600216 P 40.84975 -73.8762 2015-04-29 10:03:00 obsr325436 S23129833 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320428503 2021-03-24 19:40:51.185319 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Jefferson US-NY-045 13.0 Westcott Beach SP L461146 H 43.9006445 -76.1264133 2015-05-16 17:25:00 obsr1547157 S23486006 Traveling P22 EBIRD 145.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315900317 2021-04-01 11:24:19.637193 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-04 06:53:00 obsr745890 S23231553 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311678242 2021-03-30 19:43:32.881136 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Westchester US-NY-119 30.0 Hommocks Conservation Area L3579314 P 40.93184 -73.74206 2015-04-20 18:15:00 obsr1348614 S22972769 Traveling P22 EBIRD 41.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300151739 2021-03-23 16:21:52.613913 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 Male, Adult (1) United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-02-28 08:00:00 obsr606693 S22116127 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314408600 2015-04-30 16:50:15 32955 species avibase-41062654 Northern Parula Setophaga americana 1 United States US New York US-NY Oswego US-NY-075 US-NY_798 14.0 Camp Zerbe L1584392 P 43.4606173 -75.9605495 2015-04-30 15:57:00 obsr1477887 S23147246 Traveling P22 EBIRD 51.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317075272 2021-03-26 06:17:19.712573 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-07 07:50:00 obsr736608 S23299398 Traveling P22 EBIRD 130.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293605300 2021-04-01 12:14:19.266649 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 4 United States US New York US-NY Suffolk US-NY-103 Lake Montauk Inlet L1036512 H 41.076981 -71.937511 2015-01-25 09:25:00 obsr1987335 S21571356 Stationary P21 EBIRD 5.0 2.0 0 G1126999 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296377109 2021-03-26 07:56:20.588749 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Nassau US-NY-059 30.0 001home, bethpage, ny L1333196 P 40.719284 -73.4770712 2015-02-13 07:30:00 obsr547602 S21792692 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307925246 2021-03-24 20:33:47.533911 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-06 06:58:00 obsr455249 S22714069 Traveling P22 EBIRD 7.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314854969 2021-12-24 11:02:14.483178 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-02 07:40:00 obsr991026 S23174835 Traveling P22 EBIRD 128.0 3.219 1.0 1 G1247727 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290810544 2015-01-13 10:20:35 483 species avibase-85625D75 Mallard Anas platyrhynchos 50 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-01-13 09:00:00 obsr1092576 S21329058 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305827915 2021-03-23 16:39:03.255227 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Richmond US-NY-085 Newark Bay at Richmond Terr. & Western Ave. L880326 H 40.6410787 -74.1796194 2015-03-28 09:54:00 obsr1958124 S22558846 Stationary P21 EBIRD 18.0 2.0 1 G1195292 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317678851 2015-05-09 16:57:36 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-09 14:39:00 obsr2774009 S23333933 Traveling P22 EBIRD 35.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307754760 2015-04-15 22:30:39 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Clinton US-NY-019 13.0 Cumberland Head Ferry Dock L2753012 H 44.6984258 -73.3806843 2015-04-05 15:08:00 obsr1154385 S22701463 Traveling P22 EBIRD 43.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313689537 2021-04-01 12:45:19.712958 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Westchester US-NY-119 30.0 Nature Study Woods, New Rochelle L1821247 H 40.9320867 -73.801016 2015-04-27 11:00:00 obsr2266808 S23102604 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298037516 2021-03-26 06:55:00.227271 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 1 United States US New York US-NY Ontario US-NY-069 13.0 Shortsville Rd. X Payne Rd., Farmington L800361 H 42.9615545 -77.3038334 2015-02-17 14:14:00 obsr749440 S21942439 Traveling P22 EBIRD 22.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297088389 2021-03-26 07:07:10.758746 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus N 6 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-15 12:15:00 obsr1958124 S21856570 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310171467 2021-12-08 07:58:41.562209 11371 species avibase-75600969 Northern Flicker Colaptes auratus 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-15 06:36:00 obsr2206421 S22874031 Traveling P22 EBIRD 37.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306466858 2021-11-09 18:56:49.988387 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies L428335 H 41.7861111 -73.7397222 2015-03-30 18:30:00 obsr1835267 S22607381 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289512497 2015-01-06 16:07:08 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-01-06 15:45:00 obsr2074043 S21225118 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303734393 2021-03-30 03:50:45.179409 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Suffolk US-NY-103 30.0 Farm L137715 P 41.0795555 -72.4394913 2015-03-17 16:20:00 obsr2485753 S22398179 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322268414 2015-05-23 16:33:08 431 species avibase-90E2543E Blue-winged Teal Spatula discors X United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Onondaga Trail L157279 H 43.12222 -78.36889 2015-05-23 12:30:00 obsr303203 S23596327 Traveling P22 EBIRD 90.0 4.828 2.0 1 G1285850 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308058092 2021-04-01 11:30:42.037277 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-03-29 13:40:00 obsr2072398 S22723147 Traveling P22 EBIRD 30.0 0.805 3.0 1 G1208370 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294756226 2021-04-01 11:54:40.172593 526 species avibase-56CCA717 Northern Pintail Anas acuta N 12 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-03 15:19:00 obsr1958124 S21662310 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309094065 2021-03-26 06:20:10.658048 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Genesee US-NY-037 13.0 Francis Road, Batavia, NY L1421017 P 42.9423971 -78.1622197 2015-04-11 08:15:00 obsr393804 S22800500 Traveling P22 EBIRD 82.0 1.931 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310377541 2015-05-07 17:06:12 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm creek trail transect L2272449 P 42.3462003 -76.3006094 2015-04-16 07:26:00 obsr455249 S22888069 Traveling P22 EBIRD 7.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293022255 2017-11-14 12:02:04 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-01-24 16:03:00 obsr1828453 S21524671 Traveling P22 EBIRD 35.0 0.805 2.0 1 G1121744 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305996936 2021-03-24 20:33:47.533911 486 domestic avibase-07FFC1E5 Mallard (Domestic type) Anas platyrhynchos (Domestic type) 6 United States US New York US-NY Tompkins US-NY-109 28.0 7 Creek Road L1974357 P 42.4824155 -76.3883686 2015-02-13 08:30:00 obsr984859 S22571463 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320945497 2015-09-03 08:52:28 18439 species avibase-D97F93CC White-eyed Vireo Vireo griseus 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-03 15:18:00 obsr2504709 S23514638 Traveling P22 EBIRD 80.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310780118 2021-03-19 16:43:17.120646 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Madison US-NY-053 28.0 Home to Coulter walkabout L790370 P 42.8733852 -75.8207703 2015-04-17 16:01:00 obsr2716320 S22915542 Traveling P22 EBIRD 97.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288871297 2022-03-06 12:39:33.700954 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-01-03 12:15:00 obsr1160328 S21174969 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319437906 2021-03-26 06:17:19.712573 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Erie US-NY-029 13.0 JP's - Harvey Dr. L499698 P 42.8905864 -78.6831808 2015-05-13 17:30:00 obsr780938 S23431738 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312863628 2021-04-01 10:55:39.308231 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-25 11:30:00 obsr303203 S23051875 Traveling P22 EBIRD 45.0 2.414 2.0 1 G1235267 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320393345 2021-03-26 06:17:19.712573 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-16 14:45:00 obsr1379161 S23484108 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307879012 2018-08-04 17:05:37 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 6 United States US New York US-NY Queens US-NY-081 30.0 Forest Park--Strack Pond L1767018 H 40.6995216 -73.855254 2015-04-05 13:50:00 obsr186539 S22710349 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299887334 2021-03-24 20:33:47.533911 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 48 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-02-27 09:30:00 obsr2074043 S22095256 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316062215 2021-11-15 03:06:58.889978 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-22 12:56:00 obsr1552744 S23241183 Traveling P22 EBIRD 54.0 1.77 2.0 1 G1252938 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299086557 2022-02-17 14:32:23.002448 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-22 16:15:00 obsr2363365 S22033518 Traveling P22 EBIRD 105.0 1.609 2.0 0 G1157081 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS322269546 2021-03-19 16:29:59.503892 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum L467369 H 44.0669903 -75.7229233 2015-05-23 07:00:00 obsr724731 S23596396 Traveling P22 EBIRD 330.0 40.234 17.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290941823 2021-03-24 20:33:47.533911 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-01-13 07:49:00 obsr2377251 S21340049 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317591424 2021-03-26 06:29:56.44369 6616 species avibase-7E022378 Common Loon Gavia immer 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-09 08:15:00 obsr1045844 S23329252 Traveling P22 EBIRD 240.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305806687 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-28 09:25:00 obsr876649 S22557292 Traveling P22 EBIRD 110.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305931612 2021-03-26 07:30:35.289997 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-03-28 07:45:00 obsr2137468 S22566624 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309425106 2021-03-23 17:18:00.959502 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Albany US-NY-001 13.0 Stanton Pond L273495 H 42.5094164 -73.9012973 2015-04-12 09:02:00 obsr119187 S22821645 Stationary P21 EBIRD 17.0 3.0 1 G1215974 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314831443 2021-03-19 16:14:11.035882 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor24 L3513966 H 42.634037 -76.1144502 2015-05-02 05:51:00 obsr620377 S23173427 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307244228 2021-04-01 11:54:40.172593 7229 species avibase-AA7901D8 Snowy Egret Egretta thula N 10 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-03 16:40:00 obsr496520 S22665492 Traveling P22 EBIRD 75.0 2.575 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310190806 2021-03-26 06:39:43.334073 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-15 09:40:00 obsr599682 S22875368 Traveling P22 EBIRD 10.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321113061 2018-08-06 22:30:31 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-18 18:10:00 obsr1778524 S23525112 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307740734 2021-04-01 11:15:31.646886 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 08:00:00 obsr41879 S22700458 Traveling P22 EBIRD 345.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324128881 2017-12-12 11:24:35 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-05-29 12:30:00 obsr1778524 S23716230 Traveling P22 EBIRD 15.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290234081 2015-01-10 16:43:41 32973 species avibase-10C601D3 Bay-breasted Warbler Setophaga castanea 40 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-10 13:00:00 obsr816020 S21283137 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310158689 2015-05-07 17:05:30 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm sugar shack field transect L2272444 P 42.346503 -76.2992924 2015-04-15 07:23:00 obsr455249 S22873143 Traveling P22 EBIRD 11.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312445550 2021-04-01 10:51:06.899622 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 10 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-23 16:10:00 obsr408487 S23023579 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323500337 2021-03-24 20:58:04.794277 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-05-27 05:30:00 obsr2694889 S23673186 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310021602 2021-11-15 03:06:58.889978 7200 species avibase-49D9148A Great Egret Ardea alba 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-14 13:00:00 obsr1223279 S22863393 Historical P62 EBIRD_CAN 120.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322488591 2021-03-26 06:38:32.090082 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Montgomery US-NY-057 13.0 Rothmeyer Road L3668471 P 42.9010558 -74.2827702 2015-05-24 09:30:00 obsr286403 S23608932 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308212796 2018-08-04 17:07:53 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-04-07 09:18:00 obsr1958124 S22735355 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313504972 2021-03-30 19:29:33.633096 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 8 United States US New York US-NY Suffolk US-NY-103 30.0 Cove Hollow Farm L786267 P 40.9400884 -72.2210312 2015-04-26 13:02:00 obsr2226147 S23091174 Traveling P22 EBIRD 60.0 1.609 4.0 1 G1239103 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312252513 2021-11-09 18:31:39.191483 591 species avibase-1929E1E1 Canvasback Aythya valisineria 2 United States US New York US-NY Dutchess US-NY-027 28.0 Depot Hill L224581 H 41.5702552 -73.6727579 2015-04-23 08:13:00 obsr1732267 S23010502 Traveling P22 EBIRD 26.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296347618 2015-02-12 23:14:17 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 7 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-12 12:20:00 obsr114791 S21790436 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304448169 2021-11-09 21:35:18.646328 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 9 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-03-21 08:00:00 obsr2862523 S22453396 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305100416 2021-04-01 12:24:45.865424 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Wayne US-NY-117 13.0 43.2740 X -76.9745Sodus Point SP L3512187 P 43.27405 -76.97449 2015-03-21 11:02:00 obsr1386068 S22502934 Stationary P21 EBIRD 55.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320729726 2018-08-06 22:30:12 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Deer Mt. Nature Trail L561077 H 42.4965307 -73.8529566 2015-05-16 11:51:00 obsr2321296 S23502000 Traveling P22 EBIRD 54.0 1.609 2.0 1 G1276036 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294451043 2016-07-31 19:46:53 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Westchester US-NY-119 28.0 Charles Point, Peekskill L651242 H 41.2780121 -73.9418079 2015-02-01 09:10:00 obsr2206421 S21637862 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304400042 2015-03-23 17:49:32 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Steuben US-NY-101 13.0 US-NY-Hammondsport-8796 County Route 87 L3503410 P 42.411608 -77.179624 2015-03-21 13:41:00 obsr1092576 S22450070 Traveling P22 EBIRD 14.0 0.161 2.0 1 G1190535 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303877038 2021-04-01 11:49:53.573686 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Queens US-NY-081 30.0 Queens College L2994245 H 40.7363804 -73.820286 2015-03-17 09:40:00 obsr2233270 S22409494 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311737483 2021-11-15 03:06:58.889978 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-18 10:04:00 obsr1548221 S22976432 Traveling P22 EBIRD 215.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299323740 2021-12-10 08:21:29.396662 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 25 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-23 08:25:00 obsr1869834 S22051596 Traveling P22 EBIRD 120.0 1.609 9.0 1 G1157696 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324135642 2021-03-26 06:29:56.44369 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-30 09:47:00 obsr2595828 S23716701 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313010067 2021-04-01 11:15:31.646886 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 11 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 09:40:00 obsr150415 S23060610 Traveling P22 EBIRD 165.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311265585 2021-03-19 16:19:20.977326 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-19 08:20:00 obsr2189267 S22945759 Traveling P22 EBIRD 245.0 2.414 3.0 1 G1226244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321274497 2021-03-23 17:26:08.495143 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-19 11:30:00 obsr706483 S23535421 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316435040 2022-01-20 09:38:40.245267 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-06 07:08:00 obsr896341 S23262720 Traveling P22 EBIRD 153.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291628659 2021-04-01 10:55:39.308231 26890 species avibase-94A44032 European Starling Sturnus vulgaris 21 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-01-18 10:29:00 obsr502830 S21395512 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298223244 2018-08-04 16:57:22 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Chenango US-NY-017 28.0 Chenango River off Anthony Rd, Oxford L3396673 P 42.3681375 -75.6463006 2015-02-18 11:25:00 obsr1303581 S21958183 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313146957 2015-04-26 13:39:39 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY Greene US-NY-039 28.0 Ashland Yard: Greene County L2082214 P 42.3292669 -74.3436134 2015-04-24 obsr407134 S23068789 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317665509 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 11:40:00 obsr609516 S23333251 Traveling P22 EBIRD 180.0 4.506 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292179260 2021-03-23 17:23:45.772216 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Livingston US-NY-051 13.0 County Route 71 L730552 P 42.7069197 -77.6757324 2015-01-20 09:12:00 obsr72341 S21438251 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307957882 2021-04-01 11:49:53.573686 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca N 10 United States US New York US-NY Queens US-NY-081 30.0 Rockaway Community Park L298364 H 40.5984323 -73.7870095 2015-04-06 09:59:00 obsr2574755 S22716452 Traveling P22 EBIRD 34.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288501390 2021-03-30 19:29:33.633096 23291 species avibase-58C502EA Barn Swallow Hirundo rustica N 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Gilgo Beach L499715 H 40.6172753 -73.3947659 2015-01-01 11:09:00 obsr1987335 S21142615 Traveling P22 EBIRD 11.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316991092 2021-03-23 17:18:00.959502 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-05-07 18:01:00 obsr2270510 S23294515 Traveling P22 EBIRD 16.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS674210957 2021-03-26 06:07:45.516082 6339 species avibase-8535345B Herring Gull Larus argentatus 5 Male, Adult (3); Female, Adult (2) United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-02-19 14:30:00 obsr1492685 S49740081 Traveling P22 EBIRD 135.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305612700 2021-03-26 08:11:28.0353 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 3 United States US New York US-NY Saratoga US-NY-091 13.0 Water's Edge Condos L3518134 P 43.0464767 -73.7337928 2015-03-27 13:30:00 obsr907769 S22542712 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311482997 2021-03-26 08:14:57.071052 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Westchester US-NY-119 30.0 Sandy's Yard Birds L8198356 P 41.0139001 -73.8196024 2015-04-19 09:30:00 obsr258560 S22959109 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292006541 2018-08-04 16:54:44 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca X United States US New York US-NY Essex US-NY-031 13.0 Westport Boat Launch L479943 H 44.1887912 -73.4342089 2015-01-19 15:50:00 obsr822321 S21424700 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295562344 2018-08-04 16:55:57 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-08 13:35:00 obsr155915 S21727028 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310180410 2021-11-09 17:47:17.381431 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Dutchess US-NY-027 13.0 * Ring Road, Salt Point, NY L1084767 P 41.7968319 -73.8318479 2015-04-08 07:00:00 obsr763723 S22874698 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS434500946 2017-04-12 10:18:53 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-01-14 09:00:00 obsr1517674 S31919697 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300875001 2022-02-18 10:47:29.953615 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-04 07:01:00 obsr1062070 S22169855 Stationary P21 EBIRD 111.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309136369 2018-08-04 17:08:35 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 8 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-04-11 15:36:00 obsr1008519 S22803146 Traveling P22 EBIRD 25.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298710114 2021-04-01 12:18:57.910168 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 250 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-02-18 12:46:00 obsr1655171 S22000626 Traveling P22 EBIRD 11.0 0.966 2.0 1 G1171293 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319175545 2015-05-13 00:47:05 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Essex US-NY-031 14.0 Hardy Rd L3639677 P 44.3847593 -73.7889004 2015-05-06 10:00:00 obsr1626631 S23416749 Traveling P22 EBIRD 60.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300294136 2021-03-26 07:00:33.333856 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 4 United States US New York US-NY Queens US-NY-081 30.0 Home L2599534 P 40.6692463 -73.7323165 2015-02-28 08:25:00 obsr2505956 S22127589 Stationary P21 EBIRD 15.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291496332 2018-08-04 16:53:31 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-17 14:45:00 obsr2001485 S21385102 Stationary P21 EBIRD 45.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308054670 2021-03-23 16:52:36.900075 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 70 United States US New York US-NY Suffolk US-NY-103 30.0 Montauk L1051370 P 41.0550198 -71.8984795 2015-04-04 09:25:00 obsr1987335 S22722907 Stationary P21 EBIRD 10.0 4.0 1 G1208334 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551654 2021-03-24 20:53:39.352228 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.8729471 2015-01-02 08:30:00 obsr2837502 S21147085 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297808446 2015-02-16 20:52:04 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Saratoga US-NY-091 13.0 River Rd, Waterford, NY L1944876 P 42.8332723 -73.6684283 2015-02-16 13:30:00 obsr1321713 S21922443 Traveling P22 EBIRD 120.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302993269 2021-03-26 06:29:56.44369 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-03-14 07:15:00 obsr745890 S22339808 Traveling P22 EBIRD 29.0 0.016 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322554845 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-24 05:30:00 obsr2233143 S23612590 Area P23 EBIRD 510.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307660433 2021-03-24 19:27:13.077399 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 5 United States US New York US-NY Chemung US-NY-015 28.0 Sperr Memorial Park L7578475 H 42.1465676 -76.9144776 2015-04-05 09:28:00 obsr1092576 S22694938 Traveling P22 EBIRD 28.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288558364 2021-04-01 12:14:19.266649 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Cedar Beach Marina L283643 H 40.6342526 -73.3447755 2015-01-02 10:00:00 obsr2207991 S21147646 Stationary P21 EBIRD 60.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308226464 2021-03-26 07:07:10.758746 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris N 4 United States US New York US-NY Richmond US-NY-085 30.0 In the yard L2520422 P 40.6384529 -74.1069876 2015-04-07 10:40:00 obsr656097 S22736399 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319971879 2018-08-06 22:29:57 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-15 05:43:00 obsr1410564 S23461979 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324125241 2018-08-06 22:31:28 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 S C2 S United States US New York US-NY Hamilton US-NY-041 14.0 Blue Mountain Trail L3684897 P 43.8708 -74.42096 2015-05-30 10:10:00 obsr1461370 S23715977 Traveling P22 EBIRD 341.0 3.219 3.0 1 G1296977 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318629323 2021-03-24 20:11:57.676649 11494 species avibase-20C2214E American Kestrel Falco sparverius 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-03-19 07:30:00 obsr2409011 S23385209 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317033753 2021-03-26 06:21:54.883933 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 13:00:00 obsr1807494 S23296989 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300298681 2019-07-23 17:27:35 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-03-01 11:00:00 obsr67057 S22127982 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302337832 2016-02-07 21:13:47 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 2 United States US New York US-NY Ontario US-NY-069 13.0 Shortsville Rd. X Payne Rd., Farmington L800361 H 42.9615545 -77.3038334 2015-03-10 16:49:00 obsr1243175 S22289259 Traveling P22 EBIRD 5.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319931399 2018-02-01 15:11:46 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Cortland US-NY-023 28.0 AviCor21 L3513963 H 42.6488131 -76.0917255 2015-05-09 15:44:00 obsr2535282 S23459828 Stationary P21 EBIRD 15.0 2.0 1 G1272230 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291306376 2021-03-26 06:39:43.334073 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-16 12:45:00 obsr150865 S21370053 Traveling P22 EBIRD 195.0 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319932840 2018-02-01 15:11:46 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Cortland US-NY-023 28.0 AviCor7 L3513949 H 42.7456225 -75.9943152 2015-05-09 07:57:00 obsr2535282 S23459905 Stationary P21 EBIRD 13.0 2.0 1 G1272250 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305048118 2021-03-26 07:20:31.408164 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 2 United States US New York US-NY Suffolk US-NY-103 30.0 Stony Brook University L2350778 H 40.9146933 -73.1215687 2015-03-23 15:40:00 obsr758734 S22498934 Traveling P22 EBIRD 9.0 0.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314881833 2019-01-07 15:35:23 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.4220913 -79.4281205 2015-05-02 09:45:00 obsr2497657 S23176229 Traveling P22 EBIRD 82.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301893741 2018-08-04 16:59:07 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-03-08 18:50:00 obsr2846677 S22248552 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321641760 2021-03-23 17:18:00.959502 32842 spuh avibase-D572AE1C blackbird sp. Icteridae sp. 1 United States US New York US-NY Albany US-NY-001 13.0 Ann Lee Pond L213238 H 42.7376342 -73.813757 2015-05-21 06:55:00 obsr2321296 S23557951 Traveling P22 EBIRD 11.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310443263 2021-05-13 19:31:54.715042 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Inlet WMA--Sliker Hill Rd. dike & wetlands L674319 H 42.7145597 -77.7100646 2015-04-16 08:04:00 obsr1060479 S22892414 Traveling P22 EBIRD 30.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307193657 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-03 10:30:00 obsr1135516 S22661738 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304722839 2021-03-30 19:07:52.958398 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 25 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-22 14:15:00 obsr1407710 S22473866 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319815474 2018-08-06 22:29:57 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Jefferson US-NY-045 US-NY_778 13.0 US-NY-La Fargeville-31029 Miller Rd L3644671 P 44.118198 -76.020553 2015-05-15 05:11:00 obsr1547157 S23453672 Traveling P22 EBIRD 378.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319886097 2021-04-01 10:45:00.916278 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 6 United States US New York US-NY Bronx US-NY-005 30.0 Ethical Culture Fieldston School Campus L8904086 H 40.8897431 -73.90637 2015-05-15 12:40:00 obsr2793388 S23457360 Traveling P22 EBIRD 120.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299925333 2021-03-26 07:30:35.289997 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 4 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-02-27 07:57:00 obsr1318356 S22097428 Traveling P22 EBIRD 24.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921786 2021-03-26 07:56:20.588749 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-20 16:00:00 obsr2218212 S22173336 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294815013 2021-11-09 17:45:49.139535 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Dutchess US-NY-027 14.0 Downey Road, Millerton L1078842 P 41.9287189 -73.5165167 2015-02-03 13:45:00 obsr1917973 S21667384 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298775780 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-02-21 09:24:00 obsr648176 S22006122 Stationary P21 EBIRD 327.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315646253 2015-05-04 08:14:47 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Broome US-NY-007 28.0 Lamoureux Yard list L1160914 P 42.0812478 -75.9837198 2015-05-04 07:50:00 obsr1044068 S23217663 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314474329 2021-03-23 17:15:00.080143 30494 species avibase-240E3390 House Sparrow Passer domesticus 17 United States US New York US-NY Wayne US-NY-117 13.0 US-NY-WAY Arcadia--Erie Canal Trail opposite Wide Waters Co. Park [Palmyra_CE] L4837510 P 43.0515325 -77.1324395 2015-04-30 19:23:00 obsr606693 S23151612 Traveling P22 EBIRD 32.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307960267 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-06 07:50:00 obsr454647 S22716636 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310548962 2022-03-05 22:03:50.715584 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-15 18:00:00 obsr890053 S22900232 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301551339 2021-12-10 08:21:29.396662 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-07 14:00:00 obsr1489009 S22221316 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324065924 2022-03-06 22:19:43.839237 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Hamilton US-NY-041 14.0 Ferd's Bog L109141 H 43.7886933 -74.749732 2015-05-30 09:00:00 obsr660214 S23711983 Traveling P22 EBIRD 70.0 1.207 2.0 1 G1296160 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319644466 2021-03-26 06:39:43.334073 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-05-14 17:00:00 obsr2796494 S23443699 Traveling P22 EBIRD 75.0 0.322 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320372372 2021-04-01 10:55:39.308231 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 20 Queens Drive L1383581 P 43.0393001 -78.946665 2015-05-16 18:45:00 obsr502830 S23483001 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311338626 2021-03-26 07:17:57.136956 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Towpath Rd. L266832 H 43.0038224 -76.7457005 2015-04-19 10:50:00 obsr1655171 S22950134 Traveling P22 EBIRD 74.0 3.219 2.0 1 G1230121 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305106226 2021-11-09 21:50:48.44865 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 10 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-24 14:00:00 obsr1303376 S22503388 Traveling P22 EBIRD 75.0 1.931 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314109361 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-04-29 06:00:00 obsr2233143 S23129051 Area P23 EBIRD 420.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314346078 2015-04-30 13:03:38 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-04-30 12:13:00 obsr2678807 S23143339 Traveling P22 EBIRD 49.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314033507 2021-03-23 17:39:28.36772 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-04-29 08:55:00 obsr1565981 S23124471 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296259784 2021-04-01 12:32:15.282601 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 3 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-02-12 08:00:00 obsr547602 S21781764 Traveling P22 EBIRD 120.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308844282 2018-08-04 17:08:20 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Albany US-NY-001 13.0 Ann Lee Pond L213238 H 42.7376342 -73.813757 2015-04-10 10:15:00 obsr777630 S22783347 Rusty Blackbird Spring Migration Blitz P41 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313069803 2015-05-13 20:19:57 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA, Baldwinsville, NY L1462062 P 43.1963229 -76.3252222 2015-04-26 07:30:00 obsr2172593 S23064360 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295650186 2022-02-17 14:32:23.002448 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-08 15:00:00 obsr2448957 S21734150 Traveling P22 EBIRD 170.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309828050 2021-12-08 07:58:41.562209 6616 species avibase-7E022378 Common Loon Gavia immer 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-13 16:30:00 obsr2105033 S22849843 Traveling P22 EBIRD 90.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305746675 2015-03-28 10:09:20 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Westchester US-NY-119 30.0 Kensico Lake, Cat-In L3351091 P 41.1177712 -73.7479913 2015-03-28 08:45:00 obsr2022298 S22553009 Traveling P22 EBIRD 83.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305653114 2018-08-04 17:03:46 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-27 14:15:00 obsr916370 S22545728 Traveling P22 EBIRD 80.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288557445 2015-01-02 21:55:20 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-01-02 09:30:00 obsr2207991 S21147561 Stationary P21 EBIRD 20.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320753009 2021-03-19 16:44:35.607263 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-17 10:00:00 obsr302343 S23503309 Traveling P22 EBIRD 80.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317302688 2021-11-09 18:34:57.804398 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-05-08 13:00:00 obsr1264675 S23311721 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309011609 2021-04-01 11:47:43.260314 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-10 09:00:00 obsr2224244 S22795248 Stationary P21 EBIRD 388.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS440146987 2021-12-08 07:58:41.562209 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-18 obsr2036618 S32346334 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314267711 2021-03-24 19:23:17.886063 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus N 4 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Genoa-3880 Goose St L3601453 P 42.654319 -76.48625 2015-04-30 08:00:00 obsr1092576 S23138999 Stationary P21 EBIRD 6.0 2.0 1 G1244197 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316462721 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 07:30:00 obsr1077730 S23264411 Traveling P22 EBIRD 270.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322382022 2021-03-19 16:06:54.047432 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-05-23 obsr1395007 S23602982 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304487777 2021-04-01 11:54:40.172593 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 5 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-03-21 18:30:00 obsr1958124 S22456485 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293734305 2018-08-04 16:55:23 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-01-28 15:55:00 obsr502830 S21581176 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310938621 2021-11-15 03:06:58.889978 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-18 10:15:00 obsr323457 S22925577 Traveling P22 EBIRD 247.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313768417 2021-04-01 11:24:19.637193 32952 species avibase-DB20CB6B Cape May Warbler Setophaga tigrina X United States US New York US-NY Monroe US-NY-055 13.0 Harwick Rd., Irondequoit (Varied Thrush 2015) L3592824 H 43.1740003 -77.5539672 2015-04-28 07:30:00 obsr2223307 S23107765 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310798364 2021-11-09 21:30:09.663073 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 2 United States US New York US-NY Ulster US-NY-111 28.0 Nyquist-Harcourt Wildlife Sanctuary L1412659 H 41.7555313 -74.091749 2015-04-05 10:20:00 obsr1303376 S22916724 Traveling P22 EBIRD 90.0 1.609 5.0 1 G1223600 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291633405 2021-04-01 12:29:50.209479 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 60 United States US New York US-NY Fulton US-NY-035 13.0 wemple & edicks L3054121 P 42.9865045 -74.4326735 2015-01-18 10:15:00 obsr2590001 S21395884 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313352028 2019-10-25 16:04:19 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY St. Lawrence US-NY-089 US-NY_802 13.0 Jacques Cartier State Park L2441084 H 44.555858 -75.6810667 2015-04-26 07:25:00 obsr1558090 S23081201 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306249781 2021-04-01 12:18:57.910168 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 25 United States US New York US-NY Tompkins US-NY-109 13.0 AviTom44 L3513986 H 42.5797472 -76.5504828 2015-03-29 09:33:00 obsr2683910 S22590264 Stationary P21 EBIRD 23.0 2.0 1 G1197855 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311318375 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 12:05:00 obsr876649 S22948898 Traveling P22 EBIRD 110.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308683191 2021-11-09 22:37:20.108383 5948 species avibase-A47B0BD4 Least Sandpiper Calidris minutilla 75 United States US New York US-NY Sullivan US-NY-105 28.0 Bashakill L1566572 P 41.5241759 -74.5163684 2015-04-09 09:30:00 obsr2219590 S22771200 Traveling P22 EBIRD 240.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306057011 2015-03-29 14:58:19 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Rensselaer US-NY-083 13.0 West Sand Lake, NY 1 L1766939 P 42.6226389 -73.6175931 2015-03-29 14:20:00 obsr2186523 S22575542 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296511747 2021-03-26 07:52:59.845315 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-13 07:05:00 obsr316199 S21805255 Area P23 EBIRD 95.0 2.59 2.0 1 G1144857 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309963865 2018-08-04 17:09:06 622 species avibase-50566E50 Lesser Scaup Aythya affinis 6 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-14 07:13:00 obsr1222746 S22859450 Rusty Blackbird Spring Migration Blitz P41 EBIRD 79.0 1.046 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318617700 2021-04-01 10:47:08.851048 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-05-11 11:00:00 obsr800690 S23384659 Traveling P22 EBIRD 30.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289354511 2021-03-26 06:39:43.334073 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-05 15:00:00 obsr1135516 S21212562 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312068830 2015-04-22 12:46:29 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Onondaga US-NY-067 13.0 Oneida Lakeshore Rd Yacht Club L1321673 P 43.2002332 -76.0528135 2015-04-18 09:15:00 obsr2290617 S22998148 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295535963 2021-03-22 09:15:15.32301 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Niagara--Lewiston (NY) L356887 H 43.174301 -79.04921 2015-02-08 11:14:00 obsr502830 S21724994 Stationary P21 EBIRD 11.0 3.0 1 G1140234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300120679 2021-04-01 11:15:31.646886 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 2 United States US New York US-NY Kings US-NY-047 BJs Wholesale Club Waterfront (Brooklyn) L3311662 H 40.5917716 -73.9990756 2015-02-28 13:55:00 obsr420385 S22113766 Stationary P21 EBIRD 15.0 2.0 1 G1162317 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302942194 2020-05-16 18:06:57 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Otsego US-NY-077 28.0 Glimmerglass SP L1179700 H 42.7883464 -74.8642731 2015-03-13 15:33:00 obsr1861127 S22335868 Traveling P22 EBIRD 17.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317059887 2021-03-26 06:17:19.712573 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-07 14:15:00 obsr1379161 S23298495 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324094055 2018-08-06 22:29:15 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods - Lake Plains side L2376829 P 43.2738894 -77.6598215 2015-05-08 09:45:00 obsr2966702 S23713865 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312568761 2021-08-05 15:12:08.31456 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Heckscher SP, East Islip L547888 H 40.7129149 -73.1650615 2015-04-24 13:50:00 obsr706483 S23032477 Traveling P22 EBIRD 65.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302999236 2021-03-26 07:07:10.758746 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 10 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-11 16:23:00 obsr1032565 S22340317 Traveling P22 EBIRD 130.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323751564 2018-08-06 22:31:21 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Madison US-NY-053 28.0 Community Mem Hosp Parking Lot L909358 P 42.8124505 -75.5448461 2015-05-29 08:25:00 obsr589593 S23691719 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS768271822 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-04 obsr192641 S56880477 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297577879 2021-03-26 06:52:34.887371 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-01-15 10:00:00 obsr2141910 S21900579 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292791604 2021-03-26 06:29:56.44369 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 2 United States US New York US-NY Monroe US-NY-055 13.0 stakeout Yellow-headed Blackbird, Jeffords Rd., Rush (2015) L3304693 H 43.00988 -77.62134 2015-01-23 15:10:00 obsr749440 S21506796 Stationary P21 EBIRD 74.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312481300 2015-05-04 14:54:01 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 07:10:00 obsr2313260 S23026009 Traveling P22 EBIRD 86.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288763795 2021-03-30 19:25:27.212017 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 35 United States US New York US-NY Richmond US-NY-085 Seaside Wildlife Nature Park L1869424 H 40.5402701 -74.1419807 2015-01-03 12:59:00 obsr1893950 S21164068 Traveling P22 EBIRD 12.0 0.032 2.0 1 G1093018 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309500467 2021-11-09 19:57:48.990233 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-12 07:27:00 obsr870166 S22826448 Traveling P22 EBIRD 19.0 0.402 2.0 1 G1216683 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316924071 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-07 06:40:00 obsr745890 S23290389 Stationary P21 EBIRD 15.0 2.0 1 G1256222 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288265095 2021-03-30 19:29:33.633096 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Suffolk US-NY-103 30.0 Setauket Harbor L3246513 P 40.9686872 -73.1122971 2015-01-01 08:45:00 obsr2700876 S21123093 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314500087 2021-03-26 07:30:35.289997 3441 species avibase-24E39ACD Common Nighthawk Chordeiles minor 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Stewart Park and Renwick Woods L1131448 H 42.4589608 -76.5055355 2015-04-30 18:53:00 obsr2673845 S23153334 Traveling P22 EBIRD 90.0 0.322 6.0 1 G1244946 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308704171 2017-09-02 21:27:43 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Essex US-NY-031 13.0 Ticonderoga, open areas L2501405 H 43.8675281 -73.4258312 2015-04-09 15:30:00 obsr2693145 S22772927 Traveling P22 EBIRD 24.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317212341 2021-11-09 17:58:40.313796 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-08 07:00:00 obsr671490 S23306606 Traveling P22 EBIRD 210.0 4.828 3.0 1 G1258381 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294218501 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-01-31 14:17:00 obsr1655171 S21619453 Stationary P21 EBIRD 20.0 2.0 1 G1131445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294551071 2021-03-30 06:01:28.020715 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X 4 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-01 16:30:00 obsr620377 S21645905 Stationary P21 EBIRD 33.0 2.0 1 G1132920 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303996587 2021-03-24 21:12:00.789723 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Schuyler US-NY-097 13.0 Hector Falls Marsh L2354312 H 42.4547794 -76.7754114 2015-03-19 07:10:00 obsr2871406 S22418573 Stationary P21 EBIRD 6.0 3.0 1 G1184879 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS313069280 2021-03-26 06:52:34.887371 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Niagara US-NY-063 13.0 my house L2567813 P 43.1456811 -78.6897147 2015-04-26 09:40:00 obsr621285 S23064333 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304233252 2021-11-09 21:57:27.696856 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Ulster US-NY-111 13.0 41.9332 X -74.0281 L3501526 P 41.93316 -74.02807 2015-03-20 15:32:00 obsr1588136 S22437446 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304483560 2021-03-23 17:21:37.486392 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio 2 United States US New York US-NY Fulton US-NY-035 13.0 Youkers bush Rd L3380002 P 43.0382893 -74.703759 2015-03-21 17:53:00 obsr1708031 S22456197 Traveling P22 EBIRD 5.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313721481 2021-04-01 12:11:16.886124 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Schoharie US-NY-095 28.0 1353 State Route 7 L863903 P 42.6528008 -74.5260626 2015-04-28 06:30:00 obsr119187 S23104750 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302010463 2021-04-01 12:31:09.823741 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Livingston US-NY-051 US-NY_1760 13.0 Nations Road L799182 P 42.8579487 -77.8129005 2015-03-09 09:04:00 obsr72341 S22256990 Traveling P22 EBIRD 78.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314877303 2016-12-22 20:17:37 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 6 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hoag Ave. (Townline to Lick) L2205949 H 42.6656022 -76.3560855 2015-05-02 08:46:00 obsr1655171 S23175989 Traveling P22 EBIRD 48.0 1.287 2.0 1 G1247594 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313206269 2021-08-05 15:12:08.31456 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 7 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Heckscher SP, East Islip L547888 H 40.7129149 -73.1650615 2015-04-26 08:45:00 obsr706483 S23072261 Traveling P22 EBIRD 130.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292760702 2021-03-26 06:07:45.516082 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 22 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 09:30:00 obsr128156 S21504340 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216820 2021-11-09 18:35:59.249164 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Dutchess US-NY-027 14.0 Reagan Road, Indian Lake Rd & Coleman Station Rd, Millerton, NY L2724266 P 41.9079144 -73.507247 2015-01-14 09:00:00 obsr1339050 S21619339 Traveling P22 EBIRD 210.0 4.345 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288890808 2021-04-01 12:32:15.282601 6526 species avibase-4D2FF6F1 Common Tern Sterna hirundo 15 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-03 08:00:00 obsr1895507 S21176408 Traveling P22 EBIRD 183.0 6.437 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319606025 2018-08-06 22:29:54 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor20 L3513962 H 42.7170586 -76.0855457 2015-05-14 08:08:00 obsr1042912 S23441508 Stationary P21 EBIRD 47.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS354457520 2021-03-26 06:29:56.44369 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-23 14:08:00 obsr2276013 S25925915 Traveling P22 EBIRD 57.0 0.644 3.0 1 G1472365 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS768271860 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-04 obsr192641 S56880477 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312794172 2021-03-19 16:02:45.308962 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-04-25 07:10:00 obsr646558 S23047783 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307652299 2018-08-04 17:05:25 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-04 14:12:00 obsr1503076 S22694380 Traveling P22 EBIRD 100.0 1.915 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296321100 2021-04-01 11:24:19.637193 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-02-10 09:30:00 obsr1782363 S21788393 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314509295 2021-03-24 19:23:17.886063 6616 species avibase-7E022378 Common Loon Gavia immer X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-04-30 obsr1395007 S23153890 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321421822 2022-02-17 14:32:23.002448 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-20 07:55:00 obsr1605975 S23544452 Traveling P22 EBIRD 71.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308071012 2021-03-23 16:52:36.900075 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 2 United States US New York US-NY Suffolk US-NY-103 south Shore Nature Center, suffolk ny L3544035 P 40.7136305 -73.1934071 2015-04-06 13:45:00 obsr2534001 S22724118 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314481502 2021-03-30 19:07:52.958398 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 08:45:00 obsr2363365 S23152169 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296240562 2015-02-12 09:53:21 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Tompkins US-NY-109 13.0 130 Fieldstone Cir L3355330 P 42.3762477 -76.4875084 2015-02-08 09:15:00 obsr722208 S21780083 Stationary P21 EBIRD 15.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298599676 2021-03-31 04:00:11.782872 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Columbia US-NY-021 13.0 Eichybush Rd. Grassland, Kinderhook L1005087 H 42.4251355 -73.7352347 2015-02-07 11:30:00 obsr2766625 S21990916 Traveling P22 EBIRD 50.0 0.805 10.0 1 G1143002 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1201348119 2021-07-15 20:52:33.578429 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 6 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-26 13:20:00 obsr2155450 S91810093 Traveling P22 EBIRD 105.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319498561 2021-11-09 18:36:27.898762 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-05-14 06:40:00 obsr1835267 S23435485 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316671567 2021-11-09 18:41:50.421844 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Dutchess US-NY-027 13.0 Roeliff Jansen Kill MUA L3121099 H 42.0079918 -73.7374895 2015-05-06 11:00:00 obsr237150 S23276588 Traveling P22 EBIRD 90.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315875892 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 11:50:00 obsr1516787 S23230155 Traveling P22 EBIRD 185.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297775865 2015-02-16 19:51:20 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Oswego US-NY-075 13.0 Central Square L2053322 T 43.28677 -76.14605 2015-02-16 13:50:00 obsr797977 S21919358 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304176766 2021-03-26 07:30:35.289997 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-20 07:51:00 obsr1092576 S22432894 Stationary P21 EBIRD 39.0 2.0 1 G1185810 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308645751 2018-08-04 17:08:12 7127 species avibase-13E9F9B4 American Bittern Botaurus lentiginosus 5 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-09 10:37:00 obsr2750671 S22768077 Traveling P22 EBIRD 20.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322500701 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus 5 United States US New York US-NY Kings US-NY-047 Four Sparrow Marsh L510138 H 40.6000729 -73.9085591 2015-05-24 07:09:00 obsr1189028 S23609619 Traveling P22 EBIRD 153.0 4.023 2.0 1 G1399437 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319328032 2021-11-15 03:06:58.889978 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-13 12:30:00 obsr1578741 S23425475 Traveling P22 EBIRD 236.0 8.69 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311453179 2015-04-30 21:12:19 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Tompkins US-NY-109 13.0 Arrowwood Dr. trails L306973 H 42.4787045 -76.4623654 2015-04-19 19:37:00 obsr1655171 S22957270 Traveling P22 EBIRD 5.0 0.322 2.0 1 G1230708 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322855933 2021-04-01 11:15:31.646886 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 11 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 07:29:00 obsr1407710 S23630655 Traveling P22 EBIRD 300.0 3.219 14.0 1 G1289314 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290425371 2021-04-01 12:14:19.266649 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 3 United States US New York US-NY Suffolk US-NY-103 30.0 Patchogue Lake L852362 H 40.7684842 -73.0212522 2015-01-11 11:00:00 obsr2534001 S21298458 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311210845 2021-03-23 16:52:36.900075 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Road L1441004 P 40.8197608 -72.5580335 2015-04-19 09:20:00 obsr2528068 S22942336 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293203174 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-01-25 15:00:00 obsr1407710 S21539234 Traveling P22 EBIRD 60.0 1.609 4.0 1 G1122931 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308442195 2021-03-30 12:05:58.533651 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-08 08:00:00 obsr1801902 S22752712 Traveling P22 EBIRD 60.0 46.67 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307974571 2021-03-26 07:20:31.408164 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Bay Shore--Home L3172551 P 40.7209654 -73.279742 2015-04-05 07:00:00 obsr564905 S22717609 Stationary P21 EBIRD 550.0 2.0 1 G1208139 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313173587 2021-03-26 06:29:56.44369 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Varied Thrush Neighborhood L3592260 P 43.174057 -77.553607 2015-04-26 13:13:00 obsr1958774 S23070391 Traveling P22 EBIRD 34.0 0.483 3.0 1 G1238812 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313726827 2021-03-26 06:20:10.658048 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Genesee US-NY-037 13.0 Roberts Road, Basom, NY L1383329 P 43.1089883 -78.3658174 2015-04-28 08:00:00 obsr2588479 S23105094 Traveling P22 EBIRD 6.0 4.023 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309922873 2021-03-23 16:30:20.514143 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Oswego US-NY-075 13.0 Oswego County Airport--Howard Rd. L1814858 H 43.3553061 -76.3795964 2015-04-14 06:15:00 obsr642516 S22856558 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299742031 2021-11-09 18:34:57.804398 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 1 United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-02-26 15:30:00 obsr1264675 S22083466 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313041712 2015-04-26 06:33:40 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-25 11:20:00 obsr856524 S23062615 Traveling P22 EBIRD 35.0 0.241 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS362500494 2021-03-23 17:17:06.468947 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY Wyoming US-NY-121 28.0 2700 Centerline Road, Varysburg L11026787 P 42.736555 -78.3020117 2015-03-08 08:00:00 obsr2888451 S26582571 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303474210 2022-02-08 17:27:20.632176 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Steuben US-NY-101 13.0 42.4840x-77.1667 - Mar 16, 2015, 9:15 AM L3492314 P 42.484001 -77.166687 2015-03-16 09:15:00 obsr749440 S22378358 Traveling P22 EBIRD 33.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321008537 2015-05-18 17:39:33 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L2861705 P 42.8899133 -78.7164241 2015-05-16 17:00:00 obsr1464134 S23519185 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315001429 2021-11-15 03:06:58.889978 23242 species avibase-94A1C447 Bank Swallow Riparia riparia 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 14:30:00 obsr1135516 S23182528 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307443424 2021-04-01 12:26:53.827486 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-04-03 16:37:00 obsr119187 S22679924 Stationary P21 EBIRD 97.0 2.0 1 G1204089 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330202562 2018-08-06 22:30:41 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Jefferson US-NY-045 US-NY_762 13.0 Fort Drum: Flick Road south of pond (restricted access) L1748350 P 44.1006973 -75.6268064 2015-05-21 06:43:00 obsr1558090 S24148270 Traveling P22 EBIRD 82.0 0.95 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322028863 2018-08-06 22:30:50 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Essex US-NY-031 13.0 Noblewood Park L191517 H 44.3548774 -73.356574 2015-05-22 11:30:00 obsr2105231 S23582455 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302902649 2015-03-13 16:57:46 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 40.6576x-73.9732 - Mar 13, 2015, 16:55 L3485411 P 40.65766 -73.972734 2015-03-13 16:56:00 obsr2692140 S22332420 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306821864 2018-08-04 17:04:56 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-04-01 11:10:00 obsr319738 S22634073 Traveling P22 EBIRD 55.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310644404 2018-08-04 17:09:30 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Tompkins US-NY-109 28.0 143 Howland Road L3442761 P 42.2876594 -76.4194393 2015-04-17 08:40:00 obsr2430746 S22906553 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311403444 2018-08-04 17:10:23 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-18 14:11:00 obsr955789 S22954218 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291633406 2021-04-01 12:29:50.209479 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Fulton US-NY-035 13.0 wemple & edicks L3054121 P 42.9865045 -74.4326735 2015-01-18 10:15:00 obsr2590001 S21395884 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310605718 2021-03-24 19:27:13.077399 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chemung US-NY-015 28.0 Harris Hill Park L164401 H 42.12472 -76.8983 2015-04-17 08:40:00 obsr2871406 S22904055 Traveling P22 EBIRD 17.0 1.127 3.0 1 G1222661 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315713438 2021-04-01 11:30:42.037277 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 05:55:00 obsr1433400 S23221225 Traveling P22 EBIRD 240.0 5.407 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS346805164 2021-12-08 07:58:41.562209 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-12 14:00:00 obsr189780 S25345776 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309740878 2021-11-02 20:32:06.137153 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-04-13 12:40:00 obsr317968 S22843889 Traveling P22 EBIRD 35.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306004477 2018-08-04 17:04:38 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-03-29 11:08:00 obsr59643 S22571972 Stationary P21 EBIRD 15.0 4.0 1 G1197072 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299020564 2018-08-04 16:58:05 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 8 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-02-22 15:33:00 obsr1655171 S22025902 Stationary P21 EBIRD 12.0 3.0 1 G1156988 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322763497 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-25 07:41:00 obsr334398 S23625071 Traveling P22 EBIRD 107.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323643929 2021-03-26 07:56:20.588749 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 3 United States US New York US-NY Nassau US-NY-059 US-NY_859 30.0 Theodore Roosevelt Memorial Park (Nassau Co.) L476189 H 40.8775043 -73.5343266 2015-05-27 17:00:00 obsr2008637 S23682999 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313305709 2021-03-26 07:52:40.224846 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-04-26 17:15:00 obsr1708031 S23078373 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313103085 2019-05-07 15:30:03 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Stadlen and Hoyt-Pileated Trail L1498735 H 42.4777154 -76.4481604 2015-04-26 09:43:00 obsr1655171 S23066310 Traveling P22 EBIRD 22.0 0.402 3.0 1 G1236739 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309983248 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 3665 River Rd Endicott L1466336 P 42.108244 -76.008055 2015-04-14 08:00:00 obsr1826325 S22860831 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305530196 2021-03-26 07:52:59.845315 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Herkimer US-NY-043 13.0 Little Falls L192376 T 43.04337 -74.8596 2015-03-25 17:05:00 obsr1708031 S22536264 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309070801 2021-03-26 07:30:35.289997 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-04-11 10:43:00 obsr59643 S22799113 Traveling P22 EBIRD 15.0 0.161 2.0 1 G1214327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293090947 2021-04-01 11:49:53.573686 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 6 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-01-25 06:10:00 obsr187432 S21530293 Traveling P22 EBIRD 209.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320090811 2022-01-12 18:14:50.403512 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 4 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail L212481 H 44.4128015 -74.121715 2015-05-16 06:00:00 obsr1154 S23468745 Traveling P22 EBIRD 242.0 1.931 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311052554 2021-03-23 16:39:03.255227 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 23 United States US New York US-NY Richmond US-NY-085 SI-Sawmill Creek/River Road/Old Place L274655 P 40.6134278 -74.1902816 2015-04-18 09:42:00 obsr1032565 S22932809 Traveling P22 EBIRD 77.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312362657 2015-04-23 17:10:56 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Essex US-NY-031 14.0 Old Fort Mt overlook L3585200 P 43.830547 -73.50473 2015-04-23 15:19:00 obsr2693145 S23017822 Traveling P22 EBIRD 101.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302011005 2022-02-17 14:32:23.002448 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-09 09:30:00 obsr1284279 S22257035 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310946238 2021-03-23 16:39:03.255227 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 2 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-04-18 12:40:00 obsr1958124 S22926121 Traveling P22 EBIRD 12.0 0.805 3.0 1 G1224791 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293224940 2018-08-04 16:55:16 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Niagara US-NY-063 US-NY_1724 13.0 Niagara Falls SP--Goat Island L207766 H 43.080477 -79.0683617 2015-01-25 14:16:00 obsr916033 S21540873 Traveling P22 EBIRD 58.0 0.161 14.0 1 G1123049 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304846511 2021-03-26 06:07:45.516082 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 Unknown Sex, Adult (2) United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-03-23 09:25:00 obsr128156 S22482618 Rusty Blackbird Spring Migration Blitz P41 EBIRD 37.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294125324 2021-03-30 19:13:38.458673 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-18 14:30:00 obsr334398 S21612326 Traveling P22 EBIRD 56.0 0.241 2.0 1 G1132729 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314287890 2021-03-19 16:29:59.503892 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Jefferson US-NY-045 Kring Point SP L787951 H 44.378098 -75.8550806 2015-04-29 11:25:00 obsr1016945 S23140326 Traveling P22 EBIRD 30.0 4.828 2.0 1 G1244064 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314454476 2020-01-27 21:36:43 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 4 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-30 18:15:00 obsr2350357 S23150392 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299015217 2021-03-26 07:20:31.408164 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 2 United States US New York US-NY Suffolk US-NY-103 30.0 21 Kew Dr. (yard) L2379429 P 40.9582898 -72.9690624 2015-02-22 14:37:00 obsr2712298 S22025500 Stationary P21 EBIRD 18.0 2.0 1 G1156499 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322730970 2021-03-30 19:13:38.458673 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Monroe US-NY-055 13.0 Turning Point Park L473126 H 43.2299768 -77.6170778 2015-05-25 06:54:00 obsr1696616 S23623136 Traveling P22 EBIRD 51.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306195508 2015-03-29 22:26:21 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons 2 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-03-29 08:00:00 obsr1708031 S22586240 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298546851 2021-03-19 16:29:59.503892 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 4 United States US New York US-NY Jefferson US-NY-045 13.0 Kelsey Creek, Watertown L273304 H 43.9906455 -75.9170911 2015-02-13 09:00:00 obsr585290 S21985940 Traveling P22 EBIRD 480.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305659822 2015-03-27 18:32:10 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Essex US-NY-031 13.0 102 Racetrack Rd, Ticonderoga, NY L2849942 P 43.8534847 -73.441565 2015-03-27 18:28:00 obsr2693145 S22546299 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320844401 2021-03-19 15:59:05.496822 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Allegany US-NY-003 28.0 Cuba Lake L1326387 H 42.2508599 -78.2923025 2015-05-18 08:22:00 obsr1092576 S23509300 Traveling P22 EBIRD 51.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302269390 2021-04-01 12:35:52.669792 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 160 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-10 13:32:00 obsr2224244 S22280846 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315257471 2022-02-17 14:32:23.002448 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-03 08:50:00 obsr1605975 S23196940 Traveling P22 EBIRD 152.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318054592 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-10 07:00:00 obsr870166 S23354272 Traveling P22 EBIRD 217.0 6.598 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317137035 2021-11-09 18:24:59.618229 486 domestic avibase-07FFC1E5 Mallard (Domestic type) Anas platyrhynchos (Domestic type) 9 United States US New York US-NY Dutchess US-NY-027 13.0 Clinton Nature Trail L1639228 H 41.8844174 -73.8038808 2015-04-18 10:00:00 obsr1339050 S23302760 Traveling P22 EBIRD 120.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300615350 2021-04-01 12:26:53.827486 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 20 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-02 09:30:00 obsr777630 S22150411 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291195217 2019-12-02 12:56:14 26278 species avibase-A381417F House Wren Troglodytes aedon X United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: E Shore Pk L1301335 P 42.4713636 -76.5036245 2015-01-15 10:14:00 obsr2760150 S21360537 Stationary P21 EBIRD 16.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296128757 2019-07-23 17:27:20 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 13 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-11 12:55:00 obsr1092576 S21771288 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS412796080 2021-03-24 21:10:11.310781 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Saratoga US-NY-091 13.0 4 Windy Lane South Glens Falls, NY L2987201 P 43.28493 -73.66279 2015-02-01 obsr2943723 S30287970 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322168142 2021-11-09 17:58:40.313796 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-23 08:53:00 obsr1732267 S23591039 Traveling P22 EBIRD 106.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302075228 2021-04-01 12:32:15.282601 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 10 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-08 16:00:00 obsr531522 S22262247 Traveling P22 EBIRD 150.0 3.219 4.0 1 G1171966 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318112897 2021-03-26 06:29:56.44369 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Monroe US-NY-055 13.0 744 Plank Rd., Penfield, NY L747676 P 43.1829034 -77.4731022 2015-05-10 11:44:00 obsr1545618 S23357261 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313117214 2021-11-15 03:06:58.889978 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-26 07:06:00 obsr642993 S23067075 Traveling P22 EBIRD 212.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313884744 2016-08-07 13:01:41 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 Male, Adult (1) United States US New York US-NY Westchester US-NY-119 30.0 Angle Fly Preserve L1184284 H 41.2947905 -73.7167871 2015-04-28 16:35:00 obsr858943 S23115228 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323073115 2021-03-26 07:46:52.994574 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-26 08:35:00 obsr2113222 S23644633 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289255866 2021-03-23 17:39:28.36772 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-01-04 09:00:00 obsr1839967 S21204525 Traveling P22 EBIRD 360.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323444115 2021-03-26 06:29:56.44369 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-27 07:16:00 obsr2595828 S23669469 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322874153 2021-11-09 18:47:56.975033 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Dutchess US-NY-027 28.0 Fishkill Ridge Conservation Area, Old Albany Post Rd. L3672138 P 41.4912492 -73.9161229 2015-05-25 12:15:00 obsr2770696 S23631743 Traveling P22 EBIRD 135.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305903720 2021-03-26 07:53:57.664705 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-03-27 07:30:00 obsr72341 S22564630 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311576283 2021-03-31 04:04:13.35072 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Seneca US-NY-099 13.0 Sampson SP L356616 H 42.7288824 -76.9038166 2015-04-20 09:00:00 obsr983655 S22965144 Traveling P22 EBIRD 150.0 8.047 3.0 1 G1229927 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316998300 2015-05-07 20:28:09 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-05-07 19:28:00 obsr648176 S23294934 Stationary P21 EBIRD 59.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309993360 2015-04-14 14:04:38 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-04-14 10:30:00 obsr2515158 S22861471 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311239818 2015-04-19 13:02:26 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-04-19 12:05:00 obsr887540 S22944115 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319929792 2021-04-01 11:15:31.646886 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-15 08:38:00 obsr2363365 S23459738 Traveling P22 EBIRD 390.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292458825 2021-04-01 12:45:19.712958 6339 species avibase-8535345B Herring Gull Larus argentatus 8 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Playland Lake Overlook (Hawk Watch Site) L92440 H 40.9683291 -73.6664001 2015-01-21 10:00:00 obsr363163 S21480626 Traveling P22 EBIRD 120.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317306778 2021-03-30 19:13:38.458673 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-08 11:20:00 obsr1886281 S23311935 Stationary P21 EBIRD 40.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295540855 2021-04-01 11:15:31.646886 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 2 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-08 11:06:00 obsr152435 S21725367 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298315987 2021-11-09 21:57:10.426083 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Ulster US-NY-111 28.0 Shawangunk grasslands L3398125 P 41.5999116 -74.1771126 2015-02-18 10:30:00 obsr634484 S21966021 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322266238 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:15:00 obsr1711339 S23596212 Traveling P22 EBIRD 420.0 8.047 20.0 1 G1285843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310489438 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-10 16:00:00 obsr2598985 S22895976 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315851763 2021-03-30 19:39:10.250398 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Nassau US-NY-059 30.0 Leeds Pond Preserve L1413893 H 40.8148604 -73.7008044 2015-05-04 14:00:00 obsr676630 S23228763 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312921065 2021-04-01 11:30:42.037277 636 species avibase-B77377EE Common Eider Somateria mollissima 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 10:00:00 obsr2105033 S23055199 Traveling P22 EBIRD 150.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310939709 2021-04-01 12:28:44.297881 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Chenango US-NY-017 28.0 Cincinnatus Lake (Chenango Co.) L2404270 H 42.4306156 -75.8623123 2015-04-18 07:36:00 obsr2211210 S22925642 Traveling P22 EBIRD 48.0 0.805 2.0 1 G1224234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317489277 2018-08-06 22:29:18 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-09 05:45:00 obsr290506 S23323639 Traveling P22 EBIRD 240.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307404899 2021-11-15 03:06:58.889978 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-04 11:20:00 obsr1889800 S22677330 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289951420 2021-11-09 22:39:08.424847 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Sullivan US-NY-105 28.0 Duck Harbor Pond CBC - NY L2516210 P 41.7898387 -75.0069237 2015-01-07 06:45:00 obsr1624964 S21259901 Traveling P22 EBIRD 120.0 28.164 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309354472 2015-04-12 11:24:07 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY Saratoga US-NY-091 13.0 1 NY, Home, Luther Rd L596378 P 42.9901931 -73.7209976 2015-04-06 14:30:00 obsr1119101 S22817448 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288522445 2021-11-09 18:33:57.444892 30494 species avibase-240E3390 House Sparrow Passer domesticus 17 United States US New York US-NY Dutchess US-NY-027 28.0 Hillside Road, Poughquag, NY L2501868 P 41.6243291 -73.6680937 2015-01-01 11:50:00 obsr763723 S21144420 Traveling P22 EBIRD 20.0 0.644 3.0 1 G1091102 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309521793 2016-05-06 20:55:39 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 20 United States US New York US-NY Yates US-NY-123 13.0 Marcus Whitman Townline Road Property L4536617 H 42.7608104 -77.2698701 2015-04-12 13:00:00 obsr696564 S22827908 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295369910 2021-04-28 05:26:15.958627 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-07 09:02:00 obsr2404047 S21711694 Traveling P22 EBIRD 329.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307942529 2020-06-26 08:42:37 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Tompkins US-NY-109 13.0 Etna Fringed Gentian Area--north L1415501 H 42.4975895 -76.4302433 2015-04-06 07:49:00 obsr1655171 S22715204 Stationary P21 EBIRD 7.0 2.0 1 G1212800 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312784261 2021-03-26 06:39:43.334073 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-04-25 11:20:00 obsr431494 S23047214 Traveling P22 EBIRD 59.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290852985 2019-07-23 17:26:47 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 1 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-B L3288880 P 40.21933 -73.19694 2015-01-11 09:00:00 obsr2546612 S21332774 Traveling P22 EBIRD 60.0 15.289 44.0 1 G1108334 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS322780722 2021-03-24 19:48:44.880783 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-25 09:24:00 obsr730231 S23626153 Traveling P22 EBIRD 60.0 1.207 2.0 1 G1288857 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310161469 2015-04-15 14:42:55 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-15 07:55:00 obsr2211210 S22873338 Traveling P22 EBIRD 26.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320147844 2021-03-19 16:44:35.607263 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-16 09:00:00 obsr1991824 S23471584 Traveling P22 EBIRD 90.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312306360 2018-08-04 17:11:55 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Carncross Rd. L99688 H 43.0787739 -76.7080184 2015-04-23 12:39:00 obsr354090 S23013927 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314635981 2021-04-01 11:30:42.037277 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 14:00:00 obsr2514491 S23161546 Traveling P22 EBIRD 220.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304172215 2015-03-20 09:16:52 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail and West Trail intersection shelter L301128 P 42.47736 -76.45312 2015-03-20 08:03:00 obsr2307843 S22432516 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309173474 2018-08-04 17:08:37 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Knox-Marsellus Marsh L1280877 H 43.0076202 -76.7529774 2015-04-11 17:39:00 obsr2945658 S22805695 Stationary P21 EBIRD 17.0 2.0 1 G1225651 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314571547 2021-11-09 22:38:28.34697 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Sullivan US-NY-105 28.0 Rubin Road, Monticello L2103359 P 41.6307447 -74.7296047 2015-04-28 07:26:00 obsr1788273 S23157936 Traveling P22 EBIRD 3.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316808880 2021-03-30 19:13:38.458673 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--East Spit L256061 H 43.3107525 -77.7073288 2015-05-07 09:57:00 obsr1958774 S23284378 Traveling P22 EBIRD 15.0 0.161 2.0 1 G1291697 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307379552 2015-05-09 11:58:16 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-03-28 13:30:00 obsr2059841 S22675376 Traveling P22 EBIRD 90.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297583056 2021-03-26 06:52:34.887371 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-01-25 10:00:00 obsr2141910 S21901057 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316212071 2021-03-30 19:39:10.250398 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Nassau US-NY-059 30.0 Saint Johns Pond Sanctuary L123034 H 40.85417 -73.46333 2015-05-05 07:29:00 obsr1107696 S23250218 Traveling P22 EBIRD 44.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315369169 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 08:00:00 obsr822430 S23202543 Traveling P22 EBIRD 385.0 6.437 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306545590 2021-03-30 19:29:33.633096 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-03-29 08:35:00 obsr1987335 S22613230 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323949746 2018-08-06 22:31:19 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L692296 H 42.8874107 -78.7166119 2015-05-28 16:50:00 obsr2597186 S23705090 Traveling P22 EBIRD 200.0 2.012 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310747244 2018-08-04 17:09:33 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Warren US-NY-113 13.0 Crandall Park L1504751 H 43.3194382 -73.662484 2015-04-17 13:14:00 obsr1222746 S22913413 Traveling P22 EBIRD 50.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303541791 2021-03-24 19:48:44.880783 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-03-16 08:21:00 obsr745890 S22383581 Traveling P22 EBIRD 40.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311177383 2021-04-01 10:53:25.818871 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 16 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Homer-6134-6370 US-11 L3574842 P 42.707889 -76.142146 2015-04-19 09:54:00 obsr2683805 S22940399 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317706255 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:40:00 obsr2514491 S23335356 Traveling P22 EBIRD 560.0 15.771 6.0 1 G1259504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300104314 2022-02-17 14:32:23.002448 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 9 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-28 13:00:00 obsr1605975 S22112356 Traveling P22 EBIRD 125.0 4.023 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS302455133 2021-04-01 11:42:50.317679 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-03-09 08:00:00 obsr1195517 S22298247 Stationary P21 EBIRD 180.0 2.0 1 G1174877 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314610293 2021-04-01 11:15:31.646886 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-01 09:15:00 obsr2883698 S23160183 Traveling P22 EBIRD 180.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309925757 2021-04-01 11:15:31.646886 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 32 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-14 06:27:00 obsr2404047 S22856742 Traveling P22 EBIRD 37.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303498341 2021-04-01 11:30:42.037277 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 13 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-15 09:00:00 obsr2319444 S22380258 Traveling P22 EBIRD 240.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310239739 2021-03-23 16:21:52.613913 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--Bunker Hill Rd. X Coleman Rd. [Clifton Springs_NE] L978886 P 42.9842756 -77.1518862 2015-04-15 09:07:00 obsr606693 S22878451 Traveling P22 EBIRD 4.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293787710 2021-03-30 19:07:52.958398 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-19 10:15:00 obsr2182516 S21585479 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312443803 2021-03-23 17:15:00.080143 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 4 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Rd. L508804 H 43.0489452 -76.7335796 2015-04-22 15:24:00 obsr528918 S23023458 Traveling P22 EBIRD 45.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297574503 2021-03-26 06:52:34.887371 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-01-08 10:00:00 obsr2141910 S21900260 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313755485 2021-03-24 20:33:47.533911 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Tompkins US-NY-109 28.0 Thomas Rd., south (Six Mile Creek ponds & marsh) L388439 H 42.4020377 -76.3778114 2015-04-28 09:50:00 obsr1655171 S23106948 Traveling P22 EBIRD 14.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290816569 2015-01-13 11:08:25 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 2 United States US New York US-NY Franklin US-NY-033 14.0 Oseetah Lake L1088519 P 44.2824867 -74.1330803 2015-01-13 07:30:00 obsr422472 S21329580 Traveling P22 EBIRD 205.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313199748 2021-04-01 11:30:42.037277 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 11:40:00 obsr2934428 S23071911 Traveling P22 EBIRD_VINS 170.0 3.219 2.0 1 G1239566 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308077552 2016-04-04 12:12:12 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 Letchworth SP--Mount Morris Dam L810179 H 42.7332385 -77.9072016 2015-04-06 14:00:00 obsr54384 S22724592 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310161461 2015-04-15 14:42:55 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 Female, Unknown Age (1); Male, Immature (1) United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-15 07:55:00 obsr2211210 S22873338 Traveling P22 EBIRD 26.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305478822 2021-03-24 20:58:53.646623 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-03-25 09:00:00 obsr72341 S22532403 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315478183 2021-03-24 20:57:48.241391 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-05-02 15:45:00 obsr1708031 S23208417 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308358082 2022-02-17 14:32:23.002448 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-07 14:00:00 obsr2448957 S22746171 Traveling P22 EBIRD 210.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319762471 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 06:15:00 obsr1088395 S23450815 Traveling P22 EBIRD 180.0 4.828 3.0 1 G1271579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299852462 2021-03-26 07:30:35.289997 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Tompkins US-NY-109 13.0 my back yard Trumansburg L2594789 P 42.5410818 -76.6596392 2015-02-27 12:10:00 obsr2260025 S22092204 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311684857 2021-03-26 08:05:20.615241 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Onondaga US-NY-067 13.0 Erie Canal, Fayetteville L723439 H 43.0433627 -76.0207558 2015-04-14 12:30:00 obsr786804 S22973245 Traveling P22 EBIRD 120.0 2.414 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322640044 2021-09-03 19:22:31.034431 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-05-24 18:19:00 obsr2497657 S23617412 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297239216 2015-02-15 18:10:51 337 species avibase-694C127A Mute Swan Cygnus olor 8 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-02-15 12:40:00 obsr2343764 S21870464 Stationary P21 EBIRD 90.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288492387 2015-01-02 13:53:55 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 10 United States US New York US-NY Warren US-NY-113 14.0 6 Vanare Lane lake luzerne ny L1615171 P 43.3733902 -73.7825699 2015-01-02 13:00:00 obsr2685359 S21141880 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294322310 2022-02-18 10:47:29.953615 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 6 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-02-01 08:46:00 obsr1062070 S21627838 Stationary P21 EBIRD 84.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300005402 2021-11-09 18:44:40.055594 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 5 United States US New York US-NY Dutchess US-NY-027 13.0 US-NY-Millbrook-543 N Mabbettsville Rd L3444795 P 41.832578 -73.657963 2015-02-28 09:49:00 obsr1442681 S22103758 Traveling P22 EBIRD 20.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291426609 2021-04-01 10:47:08.851048 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689 2015-01-15 09:45:00 obsr998593 S21379489 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315588664 2021-11-15 03:06:58.889978 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 16 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 12:20:00 obsr1555046 S23214400 Traveling P22 EBIRD 180.0 4.828 2.0 1 G1250420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322018458 2021-04-01 11:30:42.037277 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-22 11:43:00 obsr2149836 S23581846 Traveling P22 EBIRD 98.0 0.644 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305905473 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris 25 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-28 12:30:00 obsr1489009 S22564764 Traveling P22 EBIRD 120.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318352761 2021-04-01 12:32:15.282601 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Florence Ave, Oyster Bay L3483063 P 40.8748272 -73.525089 2015-05-10 13:45:00 obsr93451 S23370044 Traveling P22 EBIRD 75.0 64.374 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322241332 2018-08-04 17:28:33 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 200 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-23 10:45:00 obsr2855945 S23594860 Stationary P21 EBIRD 30.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307003609 2021-11-09 20:55:57.449413 662 species avibase-FB738385 Bufflehead Bucephala albeola 40 United States US New York US-NY Rockland US-NY-087 30.0 St. Agatha's L1294038 P 41.0875836 -74.0277886 2015-04-02 17:00:00 obsr1932005 S22647992 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302858362 2021-04-01 11:24:19.637193 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-13 10:45:00 obsr2933610 S22329011 Traveling P22 EBIRD 120.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324471548 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 28.0 Southwestern Albany County Area L3689866 P 42.4206687 -74.2051148 2015-05-30 13:55:00 obsr1987335 S23738273 Traveling P22 EBIRD 12.0 3.219 2.0 1 G1299199 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307786271 2021-11-09 21:57:39.739056 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Ulster US-NY-111 13.0 black creek preserve L3541148 P 41.8208606 -73.9587005 2015-04-05 08:50:00 obsr187701 S22703854 Traveling P22 EBIRD 60.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290508253 2021-03-23 16:52:36.900075 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus N 100 United States US New York US-NY Suffolk US-NY-103 30.0 Reeves Ave. and Roanoake Ave. vicinity L2691333 H 40.9544584 -72.6921648 2015-01-11 15:00:00 obsr271871 S21305350 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS434709083 2016-10-07 17:16:13 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 3 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 hbsp L4973617 P 43.3614338 -77.9584774 2015-03-15 08:00:00 obsr1517674 S31934196 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296543341 2021-04-01 11:58:54.966271 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 2 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-02-12 15:37:00 obsr2211750 S21808260 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315269552 2021-11-15 03:06:58.889978 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 06:47:00 obsr642993 S23197558 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302697843 2019-07-23 17:27:55 27616 species avibase-D77E4B41 American Robin Turdus migratorius 32 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-03-12 15:55:00 obsr502830 S22316915 Traveling P22 EBIRD 113.0 1.609 2.0 1 G1177003 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308719217 2021-03-19 16:32:34.732091 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-04-09 13:00:00 obsr2078092 S22774158 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300099046 2021-04-01 12:11:50.996293 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Seneca US-NY-099 13.0 US-NY-Seneca Falls-3435 Seybolt Rd L3446075 P 42.857798 -76.766047 2015-02-28 13:49:00 obsr2588479 S22111948 Traveling P22 EBIRD 229.0 8.047 2.0 1 G1162107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310274479 2015-04-15 17:48:24 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Orleans US-NY-073 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Forrestall Flats L899770 H 43.1460255 -78.3854771 2015-04-14 11:02:00 obsr393804 S22880788 Stationary P21 EBIRD 18.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306968168 2021-11-09 21:35:18.646328 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 5 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-02 14:08:00 obsr1636520 S22645035 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319502574 2021-04-01 12:32:15.282601 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-14 06:15:00 obsr547602 S23435774 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314725233 2021-11-09 20:12:16.773384 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-04-30 14:00:00 obsr1912104 S23166766 Stationary P21 EBIRD 211.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314572464 2021-04-01 11:15:31.646886 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 5 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-01 06:50:00 obsr1731572 S23157999 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309404636 2021-03-19 16:14:11.035882 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 7 United States US New York US-NY Cortland US-NY-023 28.0 AviCor12 L3513954 H 42.6608589 -76.0406123 2015-04-12 09:44:00 obsr1318356 S22820479 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292588956 2015-01-22 09:33:18 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Jefferson US-NY-045 13.0 Karen S. L3309622 P 43.8545441 -76.1898422 2015-01-22 07:15:00 obsr801794 S21490926 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306349213 2021-03-23 16:52:36.900075 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Heckscher SP, East Islip L547888 H 40.7129149 -73.1650615 2015-03-29 10:06:00 obsr1987335 S22597798 Traveling P22 EBIRD 27.0 4.828 2.0 1 G1198391 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290156901 2021-04-01 12:14:19.266649 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 3 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-01-09 09:30:00 obsr105122 S21276417 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308336143 2021-03-26 06:13:28.501496 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Holiday Inn L160744 H 42.08827 -76.79419 2015-04-07 18:34:00 obsr1828453 S22744540 Stationary P21 EBIRD 14.0 4.0 1 G1210647 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289192798 2021-03-24 19:35:34.045988 447 species avibase-C235A4D7 Gadwall Mareca strepera 3 United States US New York US-NY Erie US-NY-029 13.0 Alden - Crittenden Rd. L586154 P 42.9165364 -78.4935379 2015-01-04 11:15:00 obsr2871264 S21199893 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314054149 2021-11-15 03:06:58.889978 242 species avibase-D3A260BC Snow Goose Anser caerulescens 4 Male, Adult (4) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 07:30:00 obsr599682 S23125646 Area P23 EBIRD 180.0 8.9031 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294536302 2021-12-03 21:50:44.732892 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 14 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-02-01 13:26:00 obsr1032565 S21644663 Traveling P22 EBIRD 99.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308524168 2016-09-12 10:28:01 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-04-07 10:30:00 obsr2475075 S22758966 Stationary P21 EBIRD 540.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298469910 2021-03-30 19:39:10.250398 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 10 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-02-19 09:00:00 obsr247620 S21980006 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306386547 2021-04-01 10:47:08.851048 23291 species avibase-58C502EA Barn Swallow Hirundo rustica N 7 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-30 17:11:00 obsr800690 S22600713 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315262613 2021-03-23 17:18:00.959502 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-03 08:15:00 obsr1154 S23197199 Traveling P22 EBIRD 130.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303574200 2021-03-24 20:11:57.676649 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-16 11:00:00 obsr979921 S22385922 Stationary P21 EBIRD 330.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323170704 2021-06-10 13:58:54.983373 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Badgerow Park L140440 H 43.2569008 -77.6433029 2015-05-26 11:15:00 obsr2504709 S23651156 Traveling P22 EBIRD 45.0 0.161 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313628181 2019-07-23 17:28:19 526 species avibase-56CCA717 Northern Pintail Anas acuta 2 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip G L3559870 P 40.435667 -73.336683 2015-04-11 15:00:00 obsr1481512 S23098727 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221333 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288295132 2021-03-26 06:17:19.712573 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N X United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-01-01 obsr2096529 S21125871 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288450714 2015-01-02 11:20:42 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Tioga US-NY-107 28.0 Waterman Conservation Education Center L212836 H 42.0812805 -76.1694748 2015-01-02 08:30:00 obsr2001289 S21138307 Traveling P22 EBIRD 130.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310100511 2018-08-04 17:09:10 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-14 15:15:00 obsr2406624 S22869139 Traveling P22 EBIRD 50.0 0.805 2.0 1 G1220064 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314568113 2021-03-26 06:09:25.361188 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Parsons Rd. L1497949 H 42.2404567 -75.8516071 2015-05-01 09:34:00 obsr800690 S23157703 Traveling P22 EBIRD 25.0 1.609 1.0 1 G1249244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313164633 2018-08-04 17:12:26 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-04-26 13:30:00 obsr1092576 S23069848 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299382680 2020-05-16 18:11:44 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Otsego US-NY-077 28.0 207 Stoller Hill Rd L3359197 P 42.7034192 -75.0299799 2015-02-24 08:43:00 obsr131845 S22055967 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305415594 2021-03-26 07:20:31.408164 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-03-21 08:00:00 obsr1592950 S22527391 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306155722 2021-11-09 21:50:48.44865 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-29 11:30:00 obsr2862523 S22583144 Traveling P22 EBIRD 100.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS498959556 2021-03-26 07:07:10.758746 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 1 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-04-12 12:25:00 obsr2391236 S36815889 Traveling P22 EBIRD 90.0 0.483 6.0 1 G1216761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369674646 2021-03-26 07:56:20.588749 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Nassau US-NY-059 Garvies Point Preserve L1770439 H 40.8600466 -73.6510118 2015-05-06 09:30:00 obsr1815722 S27204918 Traveling P22 EBIRD 120.0 1.609 12.0 1 G1254776 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311847337 2021-04-01 12:24:45.865424 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 6 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-21 11:49:00 obsr1721609 S22983707 Traveling P22 EBIRD 125.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332970951 2015-07-23 10:17:18 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 6 United States US New York US-NY Nassau US-NY-059 US-NY_786 Lighthouse Road L3807690 P 40.8625762 -73.7298059 2015-04-05 11:45:00 obsr1140261 S24354365 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304099125 2021-03-23 17:23:45.772216 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-03-19 15:15:00 obsr72341 S22426875 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309962234 2015-04-14 12:46:48 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Chenango US-NY-017 28.0 Home woods L3452888 P 42.3471065 -75.6650519 2015-04-14 08:00:00 obsr1303581 S22859330 Traveling P22 EBIRD 150.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297463720 2017-03-30 13:04:27 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Woodleton boardwalk (0.17km) L250377 P 42.47638 -76.44913 2015-02-16 08:23:00 obsr2307843 S21890129 Traveling P22 EBIRD 10.0 0.1 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292718859 2021-03-26 07:52:59.845315 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-22 09:25:00 obsr1000124 S21501108 Area P23 EBIRD 100.0 2.59 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310572825 2021-03-23 17:22:05.708166 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-16 09:15:00 obsr316199 S22901774 Area P23 EBIRD 90.0 2.59 2.0 1 G1222484 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310890900 2021-03-19 16:19:20.977326 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2146060 H 42.756017 -78.862009 2015-04-18 09:40:00 obsr1603345 S22922725 Traveling P22 EBIRD 138.0 0.483 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314224962 2015-04-29 22:48:47 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-29 18:00:00 obsr1325561 S23136189 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309704392 2015-04-13 11:40:47 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-04-13 08:20:00 obsr1334267 S22840645 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1018226002 2021-03-26 06:17:19.712573 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Erie US-NY-029 13.0 Maple st L3373566 P 42.9426227 -78.684243 2015-02-15 08:00:00 obsr1427970 S76722421 Incidental P20 EBIRD 2.0 0 G5942645 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310705309 2021-03-30 19:22:51.561415 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 14 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr248226 S22910465 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292604345 2021-03-26 07:52:40.224846 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Fulton US-NY-035 13.0 mom's place L1207546 P 42.9963298 -74.371047 2015-01-22 07:30:00 obsr2590001 S21492224 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313981284 2021-04-01 11:54:40.172593 33034 species avibase-6283E61E Pine Warbler Setophaga pinus N 10 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-29 06:50:00 obsr1958124 S23121265 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1133749727 2021-04-27 11:51:30.641073 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Monroe US-NY-055 13.0 Priem Road L830367 P 43.3470587 -77.9353809 2015-04-26 07:53:00 obsr1181085 S86492680 Stationary P21 EBIRD 2.0 2.0 1 G6615597 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317475496 2021-03-26 06:17:19.712573 8829 species avibase-8F123A11 Short-eared Owl Asio flammeus N X United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Buffalo and Erie Co. Naval and Military Park L3299181 H 42.8776565 -78.8792379 2015-05-09 07:20:00 obsr2071643 S23322237 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322748527 2018-08-06 22:31:06 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Herkimer US-NY-043 13.0 Frankfort, 629 Joslin Hill Road - Reservoir L3670961 P 43.02026 -75.08079 2015-05-25 07:38:00 obsr378453 S23624165 Traveling P22 EBIRD 102.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316170668 2015-05-05 16:37:00 647 species avibase-BCBD2EAE Harlequin Duck Histrionicus histrionicus 1 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-05-05 16:30:00 obsr1349676 S23246928 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313776118 2021-03-19 16:19:20.977326 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-28 10:00:00 obsr2939916 S23108229 Traveling P22 EBIRD 139.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289145882 2021-03-23 17:37:19.520785 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 Unknown Sex, Immature (1); Unknown Sex, Adult (1) United States US New York US-NY Saratoga US-NY-091 13.0 Mohawk River @ end of Flightlock Rd L3266678 P 42.8069724 -73.7144744 2015-01-03 12:25:00 obsr2855945 S21196491 Stationary P21 EBIRD 35.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290858551 2019-01-03 10:54:11 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-F L3288992 P 40.00252 -72.50312 2015-01-11 13:00:00 obsr800463 S21333314 Traveling P22 EBIRD 60.0 20.6 44.0 1 G1108339 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS304262609 2021-03-24 20:33:47.533911 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-20 16:30:00 obsr1655171 S22439778 Stationary P21 EBIRD 20.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340185814 2021-03-19 16:19:20.977326 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Erie US-NY-029 13.0 Stiglmeier Park L965034 H 42.8821636 -78.7297356 2015-04-25 19:00:00 obsr1020013 S24880271 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304830867 2015-05-07 17:03:00 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-03-23 07:03:00 obsr455249 S22481345 Traveling P22 EBIRD 8.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295004754 2022-02-21 13:41:55.027797 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas X United States US New York US-NY New York US-NY-061 30.0 Fort Tryon Park L591127 H 40.8629374 -73.9327457 2015-02-04 08:30:00 obsr200707 S21683594 Traveling P22 EBIRD 30.0 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306622423 2021-04-01 12:45:19.712958 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Westchester US-NY-119 30.0 Tarrytown Lakes-Large Lake L1768711 P 41.0827417 -73.8344288 2015-03-31 12:15:00 obsr1932005 S22619384 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313193470 2021-04-01 10:57:06.520339 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-04-26 14:00:00 obsr2769235 S23071584 Traveling P22 EBIRD 101.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307681650 2021-03-24 20:33:47.533911 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-05 06:56:00 obsr1476346 S22696337 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313762552 2018-08-04 17:12:34 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-28 07:30:00 obsr2843748 S23107364 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305099634 2021-11-09 22:39:47.565044 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Sullivan US-NY-105 28.0 Rondout Reservoir (Sullivan Co.) L2693079 H 41.8604243 -74.5100577 2015-03-24 10:00:00 obsr662396 S22502888 Traveling P22 EBIRD 20.0 3.219 2.0 1 G1191445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309831930 2018-08-04 17:08:59 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-04-13 07:48:00 obsr2071643 S22839613 Traveling P22 EBIRD 97.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309323662 2021-04-01 11:24:19.637193 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 85 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-12 08:40:00 obsr334398 S22815543 Traveling P22 EBIRD 44.0 0.032 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317293656 2022-02-17 14:32:23.002448 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-08 15:30:00 obsr1801902 S23311235 Traveling P22 EBIRD 80.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303259510 2021-03-30 19:29:33.633096 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 15 United States US New York US-NY Suffolk US-NY-103 US-NY_2798 30.0 Mecox Inlet L445366 H 40.89444 -72.32924 2015-03-15 12:30:00 obsr598381 S22360603 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313925650 2021-03-24 20:33:47.533911 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--F.R. Newman Arboretum L799199 H 42.4520722 -76.4572692 2015-04-26 11:00:00 obsr1444651 S23117819 Traveling P22 EBIRD 60.0 1.207 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314973780 2021-03-24 19:48:44.880783 279 species avibase-3E04020B Brant Branta bernicla 4 United States US New York US-NY Monroe US-NY-055 13.0 Webster Park L164450 H 43.2575016 -77.4515302 2015-05-02 09:55:00 obsr2966702 S23180985 Traveling P22 EBIRD 120.0 2.897 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303159011 2021-04-01 11:24:19.637193 16291 slash avibase-92771AAF Alder/Willow Flycatcher (Traill's Flycatcher) Empidonax alnorum/traillii 101 United States US New York US-NY Monroe US-NY-055 13.0 stakeout Yellow-headed Blackbird, Jeffords Rd., Rush (2015) L3304693 H 43.00988 -77.62134 2015-01-24 08:46:00 obsr334398 S22353068 Stationary P21 EBIRD 137.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321208523 2021-04-01 11:30:42.037277 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-16 07:30:00 obsr2802585 S23531489 Traveling P22 EBIRD 300.0 9.656 2.0 1 G1279192 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306796065 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-01 16:15:00 obsr2207991 S22632182 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319050151 2021-04-01 12:32:15.282601 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-05-12 06:30:00 obsr1348614 S23409874 Traveling P22 EBIRD 300.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306019589 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-03-29 08:00:00 obsr827632 S22573020 Traveling P22 EBIRD 225.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135919 2021-03-26 07:56:20.588749 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-10 16:00:00 obsr2218212 S23589183 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312579381 2021-03-26 06:09:25.361188 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 18 United States US New York US-NY Broome US-NY-007 28.0 SUNY Broome Community College L3583220 H 42.1353684 -75.9091816 2015-04-24 14:30:00 obsr1889889 S23033290 Traveling P22 EBIRD 65.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288610142 2021-03-26 07:56:20.588749 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 5 United States US New York US-NY Nassau US-NY-059 30.0 Tackapausha Museum and Preserve L617756 H 40.6685464 -73.482399 2015-01-02 10:45:00 obsr352522 S21151711 Traveling P22 EBIRD 60.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304295247 2021-03-19 16:29:59.503892 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Jefferson US-NY-045 US-NY_759 13.0 Stony Point: Nutting Street Road_2 L3502173 P 43.8270696 -76.2547195 2015-03-20 11:08:00 obsr1558090 S22442326 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306991870 2021-03-23 16:29:02.691496 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-02 09:55:00 obsr408487 S22646792 Stationary P21 EBIRD 230.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS395739862 2016-04-27 17:30:58 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Erie US-NY-029 13.0 East Hill L1537450 P 42.65489 -78.70496 2015-05-10 08:26:00 obsr1905321 S29245592 Traveling P22 EBIRD 45.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311430668 2015-04-19 21:20:58 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-19 19:40:00 obsr2855945 S22955889 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302965715 2021-03-26 07:30:35.289997 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Tompkins US-NY-109 13.0 206 Tareyton Drive, Ithaca L141039 P 42.471756 -76.4603653 2015-02-28 10:00:00 obsr620377 S22337812 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317391856 2021-11-09 17:58:40.313796 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-08 08:00:00 obsr445356 S23317125 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288236126 2021-03-26 07:20:31.408164 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Backyard L2676240 P 40.6918651 -73.3055341 2015-01-01 16:15:00 obsr1489009 S21120590 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316304748 2021-03-26 06:17:19.712573 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-05 11:00:00 obsr1379161 S23255669 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298281833 2021-04-01 11:30:42.037277 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY New York US-NY-061 30.0 Washington Square Park L1628412 H 40.7311385 -73.9972788 2015-02-18 17:06:00 obsr2493447 S21963212 Traveling P22 EBIRD 13.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311851042 2021-04-01 11:24:19.637193 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-20 08:10:00 obsr1782363 S22983932 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316197189 2021-04-01 12:32:15.282601 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Nassau US-NY-059 30.0 US-NY-Uniondale-1130 RXR Plaza L1783829 P 40.720079 -73.583733 2015-05-05 09:45:00 obsr2918150 S23248610 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291800168 2021-01-30 10:27:08.559792 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-I L3289026 P 40.29866 -73.31405 2015-01-11 16:00:00 obsr751942 S21408697 Traveling P22 EBIRD 60.0 10.622 44.0 1 G1108342 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318532046 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-05-11 07:50:00 obsr2796494 S23379875 Traveling P22 EBIRD 80.0 0.161 25.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS314869197 2021-03-26 06:29:56.44369 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-02 05:26:00 obsr745890 S23175646 Traveling P22 EBIRD 50.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317784297 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 07:30:00 obsr2078092 S23339443 Traveling P22 EBIRD 480.0 4.828 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319023670 2021-03-19 16:02:45.308962 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Broome US-NY-007 28.0 Parsons Rd. L1497949 H 42.2404567 -75.8516071 2015-05-12 06:15:00 obsr1044068 S23407855 Traveling P22 EBIRD 45.0 5.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288522730 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-01-01 13:00:00 obsr1491144 S21144460 Traveling P22 EBIRD 120.0 1.0 16.0 1 G1091108 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300195597 2021-03-26 06:09:25.361188 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Tioughnioga River, below dam L3193015 H 42.3370316 -75.9696758 2015-02-28 11:24:00 obsr1318356 S22119307 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301534545 2021-03-23 17:22:05.708166 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 17 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-07 07:35:00 obsr316199 S22219956 Area P23 EBIRD 125.0 2.59 2.0 1 G1169435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300697047 2021-04-01 10:51:50.668112 30494 species avibase-240E3390 House Sparrow Passer domesticus 35 United States US New York US-NY Chemung US-NY-015 28.0 Dann Blvd L1030485 H 42.239432 -76.8013752 2015-02-28 10:47:00 obsr1334267 S22156344 Stationary P21 EBIRD 24.0 12.0 1 G1173117 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312172474 2021-04-01 11:47:43.260314 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-22 08:30:00 obsr979921 S23005033 Stationary P21 EBIRD 510.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321809394 2021-03-26 06:19:47.07548 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Essex US-NY-031 13.0 Lower La Chute River & Ticonderoga Marsh L4910422 H 43.8448239 -73.4016323 2015-05-21 15:44:00 obsr2420101 S23568047 Traveling P22 EBIRD 104.0 6.437 3.0 1 G1282463 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308825476 2021-03-19 16:10:30.527219 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Chemung US-NY-015 28.0 Sperr Memorial Park L7578475 H 42.1465676 -76.9144776 2015-04-09 15:18:00 obsr1334267 S22782066 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309530225 2021-03-26 06:20:37.302746 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 4 United States US New York US-NY Greene US-NY-039 13.0 wildwing park catskill L749524 P 42.2294707 -73.8825417 2015-04-12 10:15:00 obsr2515158 S22828478 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303944252 2021-03-24 21:06:05.39641 32955 species avibase-41062654 Northern Parula Setophaga americana 11 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson River Park (private) L3498350 H 43.2032416 -76.2825651 2015-03-18 17:44:00 obsr2224244 S22414751 Stationary P21 EBIRD 126.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314651586 2021-11-09 18:35:59.966837 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 4 United States US New York US-NY Dutchess US-NY-027 14.0 Millerton, Reagan Road L2729718 P 41.90801 -73.50683 2015-05-01 14:45:00 obsr1732267 S23162423 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290613465 2021-11-09 19:43:18.424387 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 25 United States US New York US-NY Orange US-NY-071 28.0 Irus Rd. L2022849 P 41.3408604 -74.4497108 2015-01-11 12:20:00 obsr1665312 S21313081 Traveling P22 EBIRD 45.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289518448 2021-11-09 20:12:16.773384 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-01-04 14:19:00 obsr1912104 S21225592 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317840371 2017-03-08 20:24:10 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Jefferson US-NY-045 US-NY_759 13.0 Robert Wehle SP--Snakefoot Trail L1457175 H 43.8768141 -76.2719339 2015-05-09 08:35:00 obsr1558090 S23342560 Traveling P22 EBIRD 90.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312091188 2018-08-04 17:11:49 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-04-22 14:16:00 obsr1958124 S22999513 Traveling P22 EBIRD 2.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310639099 2015-05-08 13:56:18 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm sugarbush transect L3270338 P 42.3482684 -76.2983322 2015-04-17 07:18:00 obsr455249 S22906215 Traveling P22 EBIRD 11.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303502288 2015-03-16 12:31:04 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.5747387 -74.1554202 2015-03-16 07:48:00 obsr1165633 S22380568 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313089714 2018-12-30 09:57:47 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-04-26 07:15:00 obsr1154 S23065518 Traveling P22 EBIRD 155.0 1.931 3.0 1 G1236704 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292038493 2015-01-19 21:47:39 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake @ Tommy Creek L917386 P 42.6328182 -76.8732744 2015-01-19 09:15:00 obsr475746 S21427136 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322361303 2018-08-04 17:30:06 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Fulton US-NY-035 13.0 Cline Rd., marsh (east) L1144401 H 43.061062 -74.6492232 2015-05-23 19:22:00 obsr1708031 S23601638 Traveling P22 EBIRD 20.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298557366 2021-03-26 06:17:19.712573 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-02-20 10:28:00 obsr502830 S21987067 Traveling P22 EBIRD 53.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296384270 2021-03-26 06:29:56.44369 636 species avibase-B77377EE Common Eider Somateria mollissima 3 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-02-12 08:20:00 obsr1245041 S21793362 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310728716 2018-08-04 17:09:33 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-17 14:00:00 obsr1044068 S22911980 Stationary P21 EBIRD 60.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316949735 2021-03-26 07:56:20.588749 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-07 08:00:00 obsr2534001 S23292189 Traveling P22 EBIRD 75.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317444971 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-09 05:42:00 obsr1189028 S23320481 Traveling P22 EBIRD 84.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305753823 2018-08-04 17:04:27 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Dam Pond L137721 P 41.1336632 -72.3326111 2015-03-28 10:15:00 obsr2485753 S22553622 Traveling P22 EBIRD 40.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305465325 2021-03-19 16:10:30.527219 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-03-26 11:30:00 obsr142874 S22531275 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295554549 2015-02-08 12:53:32 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 7 United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-02-08 12:31:00 obsr152435 S21726413 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292994995 2021-11-09 19:42:29.255347 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Orange US-NY-071 13.0 Unico Park-Torches on the Hudson, Newburgh waterfront L1965787 H 41.5045459 -74.0047914 2015-01-24 15:00:00 obsr1872991 S21522739 Stationary P21 EBIRD 75.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319509214 2020-08-03 19:51:47 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-14 07:44:00 obsr1097423 S23436162 Traveling P22 EBIRD 75.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323122809 2021-04-01 11:47:43.260314 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 1 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-04-15 06:30:00 obsr2409011 S23647875 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313982506 2021-11-09 21:57:19.605717 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Ulster US-NY-111 13.0 Rondout-Kingston L3465160 P 41.91695 -73.98631 2015-04-29 06:40:00 obsr1482758 S23121352 Traveling P22 EBIRD 20.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315733111 2021-03-19 16:19:20.977326 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-04 09:50:00 obsr2939916 S23222498 Traveling P22 EBIRD 161.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312818854 2018-08-04 17:12:09 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Tompkins US-NY-109 28.0 Lindsay-Parsons Biodiversity Preserve (FLLT) L109055 H 42.3101677 -76.5216895 2015-04-25 10:54:00 obsr887540 S23049313 Traveling P22 EBIRD 128.0 2.414 3.0 1 G1238410 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308437516 2021-03-23 17:18:00.959502 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 20 United States US New York US-NY Albany US-NY-001 13.0 Nott Rd. Park L5202023 P 42.68518 -73.9100504 2015-04-07 16:15:00 obsr30103 S22752373 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316488080 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-06 09:58:00 obsr150415 S23265629 Traveling P22 EBIRD 168.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308694146 2021-11-09 00:38:34.069905 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-04-08 09:40:00 obsr1832377 S22772119 Traveling P22 EBIRD 90.0 0.805 2.0 1 G1212446 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1005379297 2021-03-30 19:13:38.458673 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-15 11:30:00 obsr1386682 S75670193 Traveling P22 EBIRD 60.0 0.805 2.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308215048 2018-08-04 17:07:54 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 12 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-04-07 09:25:00 obsr1092576 S22735524 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315190338 2021-03-26 07:53:57.664705 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-05-03 07:21:00 obsr1060479 S23193271 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309165270 2018-08-04 17:08:34 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Washington US-NY-115 13.0 Towpath Rd--off Crowley Rd L2588719 P 43.3212043 -73.5277605 2015-04-11 14:52:00 obsr1222746 S22805123 Rusty Blackbird Spring Migration Blitz P41 EBIRD 41.0 3.862 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308732621 2021-03-30 19:13:38.458673 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 28 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-04-09 10:56:00 obsr2774009 S22775182 Traveling P22 EBIRD 50.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288844487 2021-03-23 16:52:36.900075 616 species avibase-25C94A8F Greater Scaup Aythya marila 9 United States US New York US-NY Suffolk US-NY-103 30.0 Farm L137715 P 41.0795555 -72.4394913 2015-01-03 10:14:00 obsr2485753 S21172979 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294466447 2021-03-26 06:39:43.334073 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-31 obsr2277801 S21639074 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319149312 2021-04-01 12:32:15.282601 681 species avibase-407E2CA8 Common Merganser Mergus merganser 8 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-12 10:00:00 obsr1494607 S23415410 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309925276 2021-07-29 22:14:40.225806 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-11 obsr1220115 S22856712 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301982396 2021-03-26 06:07:45.516082 27616 species avibase-D77E4B41 American Robin Turdus migratorius 14 M C3 M United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-03-09 09:30:00 obsr128156 S22254907 Rusty Blackbird Spring Migration Blitz P41 EBIRD 35.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291495784 2021-04-01 12:14:19.266649 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-17 08:30:00 obsr547602 S21385063 Traveling P22 EBIRD 60.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309922295 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-13 14:20:00 obsr145923 S22856506 Traveling P22 EBIRD 125.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316149707 2021-03-19 16:32:34.732091 622 species avibase-50566E50 Lesser Scaup Aythya affinis 4 United States US New York US-NY Kings US-NY-047 30.0 Brooklyn Botanic Garden L297912 H 40.6680222 -73.96367 2015-05-05 12:30:00 obsr2677000 S23245825 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289115612 2018-08-04 16:52:46 23187 species avibase-ACB9D1C6 Purple Martin Progne subis 12 United States US New York US-NY Suffolk US-NY-103 30.0 Crab Meadow Beach L772429 H 40.9290128 -73.3249855 2015-01-04 15:00:00 obsr752620 S21194026 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311551220 2021-03-26 06:14:19.776945 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Columbia US-NY-021 13.0 Mud Creek Environmental Learning Center L2793575 H 42.2806092 -73.7101454 2015-04-19 07:30:00 obsr2766625 S22963384 Traveling P22 EBIRD 150.0 1.609 12.0 1 G1228299 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319964312 2015-05-15 19:55:54 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.3458884 -76.710341 2015-05-15 08:30:00 obsr979921 S23461567 Traveling P22 EBIRD 55.0 0.644 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332267492 2021-04-01 11:15:31.646886 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 25 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-31 11:25:00 obsr1987335 S24303094 Traveling P22 EBIRD 110.0 1.609 2.0 1 G1349853 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288826691 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-01 08:30:00 obsr145923 S21171347 Traveling P22 EBIRD 225.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294697903 2015-02-03 08:13:05 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-02-03 07:59:00 obsr2211210 S21657268 Traveling P22 EBIRD 13.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316949335 2021-04-01 11:15:31.646886 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 07:20:00 obsr1932533 S23292181 Traveling P22 EBIRD 400.0 40.233 1.0 1 G1261215 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308021302 2021-04-01 11:24:19.637193 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 33 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-04-06 08:28:00 obsr745890 S22720603 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1208218 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291331804 2021-04-01 12:14:19.266649 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Suffolk US-NY-103 30.0 Railroad Walk - Laurel Lane to South Jamesport Ave. L3296409 P 40.956358 -72.567821 2015-01-16 13:45:00 obsr2528068 S21371946 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300293062 2021-03-26 07:20:31.408164 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Suffolk US-NY-103 30.0 45 griffing ave, amityville ny 11701 L3448874 P 40.6822418 -73.3763123 2015-02-15 13:30:00 obsr2442436 S22127494 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302396883 2021-03-26 06:39:43.334073 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-03-10 14:00:00 obsr856524 S22293859 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293682570 2019-07-23 17:27:13 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Steuben US-NY-101 13.0 East Lake Road, Hammondsport L2757940 P 42.4200013 -77.1839333 2015-01-28 08:20:00 obsr1602357 S21577273 Traveling P22 EBIRD 62.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290230371 2021-11-09 22:37:20.108383 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 10 United States US New York US-NY Sullivan US-NY-105 28.0 Bashakill L1566572 P 41.5241759 -74.5163684 2015-01-10 09:00:00 obsr2219590 S21282760 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309089622 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-10 16:00:00 obsr145923 S22800234 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289564267 2021-03-30 19:39:10.250398 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-03 07:41:00 obsr1000553 S21229173 Traveling P22 EBIRD 266.0 3.219 3.0 1 G1094198 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308026400 2018-08-04 17:05:45 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris 1 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-04-06 11:00:00 obsr1565981 S22721011 Traveling P22 EBIRD 58.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310280248 2016-09-12 10:28:01 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-04-10 10:30:00 obsr2475075 S22881168 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290989643 2021-03-30 19:29:33.633096 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Suffolk US-NY-103 30.0 Mill Pond Sayville NY L365645 P 40.7437455 -73.0761623 2015-01-14 13:00:00 obsr706483 S21343706 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305039513 2018-08-04 17:02:42 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 16 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-03-24 07:45:00 obsr258431 S22498271 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320108640 2021-03-26 07:46:52.994574 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 2 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-16 09:33:00 obsr1885846 S23469632 Traveling P22 EBIRD 91.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306147189 2019-07-23 17:28:05 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-03-22 17:26:00 obsr334398 S22582489 Traveling P22 EBIRD 21.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315426272 2021-11-15 03:06:58.889978 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 11:00:00 obsr2361317 S23205576 Traveling P22 EBIRD 150.0 4.828 2.0 1 G1249580 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303832529 2021-03-19 16:19:20.977326 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Erie US-NY-029 13.0 Delaware Park--Rumsey Woods L1348448 H 42.9307931 -78.8698229 2015-03-16 11:00:00 obsr736608 S22406111 Traveling P22 EBIRD 23.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321485892 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Nassau US-NY-059 30.0 Dog Park, Thomaston L2381643 H 40.7907188 -73.7106302 2015-05-20 09:40:00 obsr676630 S23548230 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306081938 2021-03-26 08:14:57.071052 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N 5 United States US New York US-NY Westchester US-NY-119 28.0 Lake Rd, Westchester County, NY L2503678 P 41.2635206 -73.8820481 2015-03-29 15:40:00 obsr572503 S22577469 Traveling P22 EBIRD 35.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292023153 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-10 12:45:00 obsr189780 S21426002 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293871192 2021-04-22 12:55:05.75868 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Oneida US-NY-065 13.0 Waterville Home Grounds L1257983 P 42.9688865 -75.3351134 2015-01-29 14:30:00 obsr2139704 S21592578 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305246448 2021-03-26 07:56:20.588749 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-03-25 09:00:00 obsr916370 S22514211 Traveling P22 EBIRD 95.0 3.058 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291881522 2021-03-26 07:56:20.588749 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Nassau US-NY-059 Baxter Pond Park L1813627 H 40.8338411 -73.6990004 2015-01-19 08:45:00 obsr676630 S21414787 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316071865 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 06:00:00 obsr1760429 S23241741 Traveling P22 EBIRD 309.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293212829 2015-01-25 18:28:26 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-25 07:00:00 obsr290506 S21539972 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313180999 2017-06-27 13:23:58 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Oak Orchard WMA L210241 H 43.1197312 -78.2993656 2015-04-26 14:59:00 obsr1092576 S23070824 Traveling P22 EBIRD 7.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321268388 2021-04-01 12:32:15.282601 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Nassau US-NY-059 30.0 Lynbrook L3091077 P 40.6511413 -73.6801529 2015-05-19 15:00:00 obsr358492 S23535099 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310681210 2021-03-24 20:11:57.676649 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 2 United States US New York US-NY Oswego US-NY-075 13.0 Sunset Bay Park L250628 H 43.5211406 -76.3839446 2015-04-17 11:00:00 obsr1633923 S22908802 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001908 2021-03-26 07:56:20.588749 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-31 16:00:00 obsr2218212 S23775949 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296671447 2015-02-14 11:50:13 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 1158 Lake Road L823133 P 43.2617179 -77.4438447 2015-02-14 07:30:00 obsr2943214 S21819487 Stationary P21 EBIRD 120.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300044231 2021-12-10 08:21:29.396662 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-27 13:30:00 obsr1917973 S22107017 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307053419 2021-04-01 11:24:19.637193 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-04-02 11:29:00 obsr1545618 S22651665 Stationary P21 EBIRD 52.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311010121 2021-03-24 20:58:53.646623 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-18 08:30:00 obsr72341 S22930110 Stationary P21 EBIRD 570.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298383759 2021-03-26 08:12:51.35913 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 7 United States US New York US-NY Schuyler US-NY-097 13.0 My Feeders Watkins Glen L1963544 P 42.380251 -76.8692163 2015-02-19 09:10:00 obsr198847 S21971856 Stationary P21 EBIRD 80.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317680087 2020-03-15 09:14:53 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-09 09:50:00 obsr2597186 S23333994 Traveling P22 EBIRD 80.0 1.207 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297029423 2021-03-30 19:07:52.958398 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 Female, Adult (2); Male, Adult (1) United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-15 08:30:00 obsr454647 S21851184 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS323838308 2018-08-06 22:31:23 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 1 United States US New York US-NY Chenango US-NY-017 28.0 Sherburne Playground L3683035 P 42.67545 -75.48947 2015-05-29 18:39:00 obsr378453 S23697470 Traveling P22 EBIRD 33.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306363179 2021-03-30 19:19:45.072558 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 45 United States US New York US-NY Oneida US-NY-065 13.0 Lakeport Bay L838290 P 43.1520371 -75.8640289 2015-03-30 15:45:00 obsr979921 S22598817 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314377542 2021-05-10 10:56:13.990983 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 15 United States US New York US-NY Orleans US-NY-073 13.0 Peter Smith Rd. (Kendall) L3602276 P 43.3423461 -78.0956268 2015-04-30 08:45:00 obsr408487 S23145275 Traveling P22 EBIRD 8.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316315351 2021-11-09 18:34:57.804398 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 Female, Adult (1) United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-05-05 12:00:00 obsr1264675 S23256337 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311922622 2021-03-24 20:33:47.533911 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N, n. branch of split (0.15km)) L1372136 P 42.4805343 -76.4524385 2015-04-21 18:27:00 obsr2307843 S22988487 Traveling P22 EBIRD 5.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305398472 2015-03-26 18:44:49 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2737378 P 42.7558333 -78.8616667 2015-03-25 08:00:00 obsr436899 S22526129 Stationary P21 EBIRD 270.0 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303657077 2021-03-30 19:40:59.354574 20384 species avibase-69A6E32F Canada Jay Perisoreus canadensis 20 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-17 08:30:00 obsr2172593 S22392328 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306119656 2021-03-26 06:39:43.334073 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-03-29 17:00:00 obsr1135516 S22580307 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309594454 2021-03-19 16:44:35.607263 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-12 18:55:00 obsr2933610 S22832702 Traveling P22 EBIRD 100.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309288592 2021-04-01 10:58:47.067498 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-04-11 12:50:00 obsr528918 S22813274 Traveling P22 EBIRD 65.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306938027 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--SW from 65th St. transv.-Center Dr. L2805113 H 40.7692507 -73.9779139 2015-04-01 11:00:00 obsr2228257 S22642748 Traveling P22 EBIRD 15.0 1.207 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311007672 2018-08-04 17:10:25 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas X United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Beebe Lake L281786 H 42.4512932 -76.4767515 2015-04-18 18:02:00 obsr1092576 S22929961 Traveling P22 EBIRD 5.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299867 2021-03-26 07:46:52.994574 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr1885846 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307641521 2021-03-26 07:30:35.289997 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-04 18:55:00 obsr1092576 S22693529 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306925679 2021-03-26 06:20:10.658048 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 2 United States US New York US-NY Genesee US-NY-037 13.0 Francis Road, Batavia, NY L1421017 P 42.9423971 -78.1622197 2015-04-02 08:45:00 obsr393804 S22641757 Traveling P22 EBIRD 11.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312008285 2021-04-01 11:54:40.172593 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 15 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-22 06:49:00 obsr1958124 S22994211 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291095999 2021-03-23 16:48:08.60516 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 3 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR - Visitor's Pool & Auto Route L2132160 P 42.9604427 -76.7559814 2015-01-14 16:10:00 obsr983655 S21352525 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323057467 2018-08-06 22:31:03 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Delaware US-NY-025 28.0 13783 Hancock L189611 PC 41.95415 -75.2823 2015-05-24 13:50:00 obsr1032565 S23643551 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292731358 2021-03-26 07:20:31.408164 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-01-20 07:30:00 obsr1592950 S21501944 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319330269 2021-03-24 05:37:45.927792 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-13 13:20:00 obsr319738 S23425597 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321870986 2021-03-19 16:19:20.977326 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-20 15:30:00 obsr1379161 S23572298 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323358707 2022-02-17 14:32:23.002448 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-27 09:15:00 obsr2078092 S23663365 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310302681 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-12 14:15:00 obsr968874 S22882754 Traveling P22 EBIRD 120.0 6.437 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309587537 2021-11-15 03:06:58.889978 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-12 17:00:00 obsr2190210 S22832265 Traveling P22 EBIRD 60.0 1.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308316504 2021-03-30 19:07:52.958398 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-07 15:40:00 obsr2908667 S22742991 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323727709 2021-03-26 06:29:56.44369 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-28 07:15:00 obsr2449897 S23690132 Traveling P22 EBIRD 90.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298265008 2021-03-23 17:41:09.545385 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Westchester US-NY-119 30.0 Hunt-Parker Sanctuary--Bylane Farm L786456 H 41.2827085 -73.6707115 2015-02-18 15:45:00 obsr1937157 S21961811 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299497561 2015-05-07 17:03:00 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-02-25 07:07:00 obsr455249 S22064589 Traveling P22 EBIRD 9.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322653774 2017-12-31 19:16:14 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Alison Wells Ney Nature Trail, Bliss Rd.-Thayer Rd. L2438197 H 42.3269987 -79.5051483 2015-05-24 11:00:00 obsr479109 S23618253 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311775124 2021-03-23 16:30:20.514143 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-20 10:45:00 obsr979921 S22978853 Stationary P21 EBIRD 375.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304085641 2021-11-09 20:58:37.907104 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Rockland US-NY-087 28.0 Stony Point SP L2550812 H 41.2416315 -73.9734417 2015-03-19 14:50:00 obsr1121454 S22425838 Traveling P22 EBIRD 100.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306092217 2021-03-30 12:05:58.533651 592 species avibase-3072CC16 Redhead Aythya americana 8 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-29 09:50:00 obsr41879 S22578276 Traveling P22 EBIRD 180.0 6.437 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290507529 2021-03-24 19:20:00.696534 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.8978678 -73.9124419 2015-01-11 09:30:00 obsr2796494 S21305292 Traveling P22 EBIRD 90.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305564059 2021-03-26 07:43:12.52294 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-03-26 08:45:00 obsr211814 S22538910 Stationary P21 EBIRD 214.0 3.0 1 G1193972 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302840792 2015-03-13 11:07:26 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-03-13 10:48:00 obsr2871406 S22327705 Traveling P22 EBIRD 17.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299194420 2021-12-10 08:21:29.396662 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 13 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-23 08:25:00 obsr2133003 S22041629 Traveling P22 EBIRD 120.0 1.609 9.0 1 G1157696 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320247427 2021-03-30 19:07:52.958398 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 07:30:00 obsr1152226 S23476590 Traveling P22 EBIRD 270.0 3.219 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310719589 2018-08-04 17:09:34 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-17 16:17:00 obsr749440 S22911389 Stationary P21 EBIRD 64.0 2.0 1 G1223350 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303772755 2015-03-17 20:32:54 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Oneida US-NY-065 13.0 Holland Patent L190029 T 43.24177 -75.25681 2015-03-15 09:00:00 obsr388852 S22401162 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291549893 2021-04-01 12:39:55.985714 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Rensselaer US-NY-083 13.0 US-NY-East Greenbush-341 Waters Rd L2438595 P 42.598296 -73.68364 2015-01-17 07:30:00 obsr712039 S21389419 Stationary P21 EBIRD 120.0 2.0 1 G1112727 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306086964 2021-03-30 19:07:52.958398 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-29 13:30:00 obsr1807494 S22577852 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1196641 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310878987 2021-03-23 17:00:13.087107 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 28.0 Caswell Road Grasslands L212250 H 42.5066218 -76.3754458 2015-04-18 10:52:00 obsr1696616 S22921998 Traveling P22 EBIRD 23.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292947963 2021-03-24 20:33:47.533911 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-01-24 15:17:00 obsr1696616 S21519247 Stationary P21 EBIRD 29.0 2.0 1 G1121223 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295546168 2021-03-26 06:11:29.8335 30494 species avibase-240E3390 House Sparrow Passer domesticus 35 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-02-08 11:55:00 obsr2871406 S21725739 Stationary P21 EBIRD 3.0 3.0 1 G1138996 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308267550 2015-04-07 13:43:05 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 4 United States US New York US-NY Suffolk US-NY-103 30.0 Stony Brook South P L1927737 P 40.8963705 -73.1284547 2015-04-07 13:37:00 obsr1228860 S22739408 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306135688 2021-03-22 09:17:32.016297 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Oneida US-NY-065 13.0 County Rd 50A Fields, Blossvale., NY L2872798 P 43.233688 -75.698887 2015-03-29 18:45:00 obsr666964 S22581618 Stationary P21 EBIRD 5.0 2.0 1 G1196944 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298228627 2021-04-01 12:32:15.282601 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-02-18 08:00:00 obsr247620 S21958663 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291651605 2021-04-01 11:47:43.260314 6040 species avibase-E7A14E91 Willet Tringa semipalmata 18 United States US New York US-NY Oswego US-NY-075 US-NY_759 13.0 US-NY-Oswego County-Winter Waterfowl Survey - L2570693 P 43.67099 -76.186785 2015-01-18 07:25:00 obsr2945658 S21397436 Traveling P22 EBIRD 330.0 48.279 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302878484 2018-08-04 16:59:45 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Oswego US-NY-075 13.0 Oswego River in Phoenix north of Culvert St and Lock L3485145 P 43.2296756 -76.3036323 2015-03-12 11:30:00 obsr1303581 S22330535 Traveling P22 EBIRD 35.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290451568 2021-03-26 06:38:32.090082 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 1 United States US New York US-NY Montgomery US-NY-057 13.0 Otsquago Club Rd L2578072 P 42.9487583 -74.6281636 2015-01-01 11:50:00 obsr1683226 S21300598 Traveling P22 EBIRD 28.0 6.437 2.0 1 G1105365 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296641701 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 8 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-02-13 07:35:00 obsr2595828 S21816587 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304570393 2015-09-22 15:34:09 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-03-22 08:49:00 obsr1958124 S22462583 Traveling P22 EBIRD 12.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300404481 2019-10-25 16:14:46 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 5 United States US New York US-NY St. Lawrence US-NY-089 13.0 Canton: Sykes Road 2 L3449894 P 44.6751763 -75.1612473 2015-03-01 08:30:00 obsr1558090 S22135310 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313113189 2021-11-09 21:57:48.345205 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) X United States US New York US-NY Ulster US-NY-111 13.0 US-NY-Saugerties-100-140 W Camp Rd L3591942 P 42.134371 -73.943537 2015-04-26 08:15:00 obsr1482758 S23066866 Stationary P21 EBIRD 223.0 14.0 0 G1236777 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309316977 2021-03-19 16:27:31.421791 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-04-12 07:42:00 obsr1603345 S22815108 Stationary P21 EBIRD 53.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294398709 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 18 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-01 08:15:00 obsr2406624 S21633799 Traveling P22 EBIRD 210.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302902023 2015-09-13 11:57:51 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 2 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-03-13 09:30:00 obsr1079517 S22332372 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS798334470 2021-04-01 11:30:42.037277 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 7 United States US New York US-NY New York US-NY-061 Randalls Island--saltmarsh and backstop 42 vicinity L1781022 H 40.7964152 -73.9152148 2015-01-01 10:50:00 obsr2686964 S59266104 Traveling P22 EBIRD 50.0 0.483 2.0 1 G4460191 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288718863 2018-08-04 16:52:38 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, City Pier L357819 H 42.871907 -77.2725534 2015-01-03 11:55:00 obsr1547947 S21160568 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1093373 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312930751 2021-03-30 19:29:33.633096 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Suffolk US-NY-103 30.0 Frank Melville Memorial Park and Mill Pond L1114075 H 40.946195 -73.1156445 2015-04-25 12:00:00 obsr54384 S23055782 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307382068 2021-03-23 16:39:03.255227 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-04 09:20:00 obsr1958124 S22675619 Traveling P22 EBIRD 28.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301004219 2021-03-26 07:30:35.289997 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-03-05 06:38:00 obsr1696616 S22179373 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304888474 2021-04-01 11:15:31.646886 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-23 10:00:00 obsr263005 S22485850 Traveling P22 EBIRD 165.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS298186457 2021-03-26 06:11:29.8335 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Cayuga US-NY-011 13.0 The Farm L3377073 P 42.9586268 -76.4751756 2015-02-18 07:30:00 obsr2639433 S21954861 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305422115 2021-04-26 04:57:02.963704 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-26 09:00:00 obsr2906952 S22525019 Traveling P22 EBIRD 48.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305927824 2021-03-30 19:13:38.458673 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-03-28 19:20:00 obsr745890 S22566350 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295653754 2021-03-23 16:52:36.900075 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 19 United States US New York US-NY Suffolk US-NY-103 US-NY_839 South Ferry Channel, Shelter Island L1655288 P 41.0414924 -72.3162484 2015-02-08 09:05:00 obsr613775 S21734412 Traveling P22 EBIRD 161.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303459409 2021-03-26 06:21:54.883933 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field, Kings Co. L1341687 P 40.5925957 -73.8870594 2015-03-15 11:15:00 obsr827632 S22376574 Traveling P22 EBIRD 45.0 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033036 2021-01-02 20:17:06.602961 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 13.0 Allan H. Treman State Marine Park--marina (not lakeshore or woods) L159024 H 42.4571425 -76.5143238 2015-01-19 10:30:00 obsr1544235 S21426735 Stationary P21 EBIRD 90.0 2.0 1 G1116519 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308130556 2021-03-24 05:37:45.927792 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-06 11:07:00 obsr319738 S22728721 Traveling P22 EBIRD 60.0 3.879 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308237782 2022-02-17 14:32:23.002448 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-07 08:27:00 obsr1605975 S22737407 Traveling P22 EBIRD 157.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316771508 2021-03-26 06:14:19.776945 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Columbia US-NY-021 13.0 Columbia-Greene Community College L2429955 P 42.2165679 -73.8188553 2015-05-07 07:20:00 obsr481595 S23282358 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302496093 2021-04-01 11:24:19.637193 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 42 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-11 10:10:00 obsr1376838 S22301209 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308322043 2019-04-19 13:17:53 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-07 16:45:00 obsr1918430 S22743439 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318091856 2018-08-06 22:29:32 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Albany US-NY-001 13.0 Mohawk-Hudson Bike-Hike Trail, Mohawk Riverside Landing Park L2584161 H 42.7739949 -73.816349 2015-05-10 06:45:00 obsr777630 S23356197 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317657610 2021-03-19 16:27:31.421791 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 6 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Tonawanda WMA--Meadville Rd. L152121 H 43.1145 -78.4563 2015-05-09 12:11:00 obsr408487 S23332806 Traveling P22 EBIRD 18.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322721842 2021-03-19 16:44:35.607263 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Monroe US-NY-055 13.0 Kirkwood Rd. south to Slater Creek L823860 H 43.26855 -77.6372024 2015-05-25 05:36:00 obsr1696616 S23622549 Traveling P22 EBIRD 31.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294963305 2022-02-17 14:32:23.002448 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-04 13:00:00 obsr1711339 S21679591 Traveling P22 EBIRD 180.0 1.609 2.0 1 G1135526 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322445404 2018-08-06 22:31:00 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Clinton US-NY-019 13.0 Ausable Marsh WMA L1672642 H 44.5704068 -73.4418894 2015-05-24 07:45:00 obsr2937317 S23606572 Traveling P22 EBIRD 103.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312733763 2021-03-24 20:33:47.533911 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Mulholland Wildflower Preserve L124514 H 42.431675 -76.48283 2015-04-25 08:39:00 obsr34822 S23044119 Traveling P22 EBIRD 31.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313729294 2022-02-18 10:47:29.953615 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 3 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-28 06:56:00 obsr1062070 S23105273 Stationary P21 EBIRD 97.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306363911 2021-05-13 19:31:54.715042 32578 species avibase-000482C9 Orchard Oriole Icterus spurius 3 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Inlet WMA--Sliker Hill Rd. dike & wetlands L674319 H 42.7145597 -77.7100646 2015-03-30 11:20:00 obsr1962379 S22598890 Stationary P21 EBIRD 10.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311951425 2015-04-30 21:12:19 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 13.0 Arrowwood Dr. trails L306973 H 42.4787045 -76.4623654 2015-04-19 20:47:00 obsr2683910 S22990511 Traveling P22 EBIRD 3.0 0.483 2.0 1 G1230712 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310165798 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-14 06:10:00 obsr1433400 S22873620 Traveling P22 EBIRD 130.0 4.506 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316119962 2021-11-15 03:06:58.889978 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 12:45:00 obsr2033754 S23244300 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309052115 2021-03-23 16:30:20.514143 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-11 08:18:00 obsr2945658 S22797995 Stationary P21 EBIRD 181.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306098996 2021-03-23 16:52:36.900075 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-03-29 14:30:00 obsr2534001 S22578769 Traveling P22 EBIRD 80.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310289055 2018-08-04 17:09:06 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Oneida US-NY-065 13.0 8741 Maple Flats Rd., Cleveland, NY. 13042 L3215241 P 43.2874926 -75.8489975 2015-04-14 08:00:00 obsr1248598 S22881813 Stationary P21 EBIRD 495.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297158962 2021-04-01 11:49:53.573686 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 1 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-02-15 14:50:00 obsr2574755 S21863153 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306026475 2019-01-07 15:31:51 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-03-29 12:40:00 obsr2497657 S22573514 Stationary P21 EBIRD 34.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289833686 2015-01-08 09:27:28 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Podell Boardwalk (0.08 km) L1075029 P 42.4782515 -76.4511698 2015-01-08 08:29:00 obsr2307843 S21250228 Traveling P22 EBIRD 5.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135042 2021-03-26 07:56:20.588749 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-22 09:00:00 obsr2218212 S23589153 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479887 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis N 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80947 2015-01-17 08:30:00 obsr876649 S21383798 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322735552 2015-05-25 08:17:14 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Chenango US-NY-017 28.0 Rte 206, Greene (V) L2709114 P 42.3308332 -75.7720399 2015-05-24 09:35:00 obsr2855945 S23623437 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314330538 2020-03-19 18:56:44 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 13.0 Tareyton Drive yard L1133152 P 42.4712343 -76.4592433 2015-04-30 06:38:00 obsr2683910 S23142431 Stationary P21 EBIRD 3.0 2.0 1 G1244168 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296254860 2021-03-26 06:07:45.516082 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-02-12 10:00:00 obsr369788 S21781337 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292598501 2021-04-01 11:24:19.637193 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-01-22 09:00:00 obsr2223307 S21491728 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292151452 2015-01-20 16:04:12 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Broome US-NY-007 28.0 Harold Moore Park L1464971 H 42.099743 -76.0129688 2015-01-20 16:00:00 obsr1764243 S21436140 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311595704 2021-03-23 17:15:00.080143 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-04-20 12:50:00 obsr2914424 S22966889 Traveling P22 EBIRD 89.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290236034 2018-08-28 21:10:38 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Nassau US-NY-059 30.0 Shu Swamp Nature Preserve L503050 H 40.8803597 -73.5648394 2015-01-10 11:00:00 obsr247620 S21283326 Traveling P22 EBIRD 120.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321865097 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-21 07:15:00 obsr2083114 S23571949 Traveling P22 EBIRD 155.0 4.828 10.0 1 G1282738 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS376882241 2019-07-23 17:26:39 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach State Park L230716 P 41.1295147 -72.2665183 2015-01-01 13:15:00 obsr1214394 S27808234 Traveling P22 EBIRD 18.0 3.219 1.0 1 G1100194 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314365494 2021-03-26 07:07:10.758746 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 1 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-5154-5180 Amboy Rd L3602138 P 40.535279 -74.182801 2015-04-30 14:12:00 obsr1958124 S23144415 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320392207 2021-03-19 16:06:54.047432 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-05-16 obsr1395007 S23484055 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311775110 2021-03-23 16:30:20.514143 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-20 10:45:00 obsr979921 S22978853 Stationary P21 EBIRD 375.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309939315 2021-11-02 20:32:06.137153 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-04-14 08:23:00 obsr2683805 S22857778 Traveling P22 EBIRD 65.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305540657 2021-04-01 12:18:57.910168 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-03-25 13:30:00 obsr528918 S22537090 Traveling P22 EBIRD 15.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320219316 2021-03-24 20:53:39.352228 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 9 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Karner Barrens East L553196 H 42.7184131 -73.8640168 2015-05-16 12:31:00 obsr2270510 S23475164 Traveling P22 EBIRD 95.0 4.667 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321729624 2018-08-06 22:30:44 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Iroquois NWR--Swallow Hollow Trail L771567 H 43.1254425 -78.3256102 2015-05-21 13:15:00 obsr2588479 S23563105 Traveling P22 EBIRD 83.0 3.219 2.0 1 G1281890 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320605191 2018-08-04 17:27:49 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Oak Orchard WMA--Windmill Marsh L811481 H 43.1182772 -78.2930374 2015-05-17 14:55:00 obsr2588479 S23495345 Stationary P21 EBIRD 30.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310088388 2018-08-04 17:09:00 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Jefferson US-NY-045 13.0 Kelsey Creek, Watertown L273304 H 43.9906455 -75.9170911 2015-04-13 09:00:00 obsr585290 S22868306 Traveling P22 EBIRD 480.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317573350 2021-03-24 19:48:44.880783 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-09 07:53:00 obsr2817239 S23328310 Traveling P22 EBIRD 102.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306448364 2021-03-24 21:12:31.336509 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Tioga US-NY-107 28.0 Cannon Hole (Barton Landing) L3319362 H 42.0246104 -76.4646721 2015-03-25 08:20:00 obsr1318356 S22605844 Traveling P22 EBIRD 36.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296642089 2021-03-24 20:33:47.533911 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-02-14 08:07:00 obsr2377251 S21816627 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311560826 2021-03-30 19:37:33.521815 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 6 United States US New York US-NY Wayne US-NY-117 Sodus Bay L867215 H 43.2572057 -76.9688416 2015-04-20 09:04:00 obsr1721609 S22964036 Traveling P22 EBIRD 177.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296787773 2021-03-23 17:00:13.087107 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-14 10:26:00 obsr2683910 S21830213 Traveling P22 EBIRD 24.0 0.805 2.0 1 G1145774 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306153461 2021-03-26 06:21:54.883933 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Kings US-NY-047 30.0 DH L487342 P 40.6123918 -74.0094442 2015-03-29 15:00:00 obsr1189028 S22582954 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323760509 2021-03-26 06:29:56.44369 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia N 2 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Park West L1756090 H 43.1831991 -77.5278997 2015-05-29 09:30:00 obsr302343 S23692300 Traveling P22 EBIRD 65.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309040476 2021-03-26 06:21:54.883933 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Kings US-NY-047 Coney Island Beach--35th St. Overlook L1373631 H 40.5717813 -74.0006958 2015-04-11 09:30:00 obsr454647 S22797216 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS920854274 2020-05-13 10:56:06 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Jefferson US-NY-045 13.0 US-NY-Watertown - 44.0016x-75.8060 - Apr 27, 2015, 9:18 AM L3594949 P 44.001569 -75.805958 2015-04-27 09:18:00 obsr2720788 S68975094 Traveling P22 EBIRD 87.0 6.437 2.0 1 G5326516 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298786611 2021-04-01 12:32:15.282601 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-02-21 11:45:00 obsr247620 S22006984 Traveling P22 EBIRD 135.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304440407 2021-03-26 06:13:28.501496 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 30 United States US New York US-NY Chemung US-NY-015 28.0 Elmira WTP Outflow L509652 H 42.0717075 -76.7755187 2015-03-21 09:05:00 obsr1092576 S22452819 Stationary P21 EBIRD 20.0 2.0 1 G1187057 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321654547 2018-08-06 22:30:40 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-21 06:08:00 obsr1165633 S23558628 Traveling P22 EBIRD 152.0 5.472 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317196190 2018-08-04 17:05:09 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Cayuga US-NY-011 US-NY_1726 13.0 USFWS_268 Kipp Island Fields (SW of SR 90 and I-90 Thruway) L516187 H 42.9971145 -76.7189991 2015-04-03 08:30:00 obsr533086 S23305749 International Shorebird Survey (ISS) P74 EBIRD 20.0 0.064 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316426688 2017-08-16 17:13:40 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-06 08:28:00 obsr2595828 S23262255 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309843998 2021-11-01 23:11:19.414929 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Kings US-NY-047 Coney Island Beach & Boardwalk L845817 H 40.5719793 -73.9778996 2015-04-13 13:15:00 obsr2448957 S22850810 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318143704 2021-03-30 19:39:10.250398 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-05-08 17:00:00 obsr2207991 S23358810 Traveling P22 EBIRD 210.0 6.437 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310525783 2021-03-24 20:23:39.258075 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Suffolk US-NY-103 US-NY_847 30.0 West Meadow Wetlands Reserve L1166126 H 40.9327414 -73.1451702 2015-04-16 15:14:00 obsr1848026 S22898614 Traveling P22 EBIRD 156.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318518401 2021-04-01 11:30:42.037277 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-11 05:50:00 obsr150865 S23379218 Traveling P22 EBIRD 180.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314710731 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-01 09:40:00 obsr827632 S23165912 Traveling P22 EBIRD 205.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298557364 2021-03-26 06:17:19.712573 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-02-20 10:28:00 obsr502830 S21987067 Traveling P22 EBIRD 53.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319025079 2018-08-04 17:26:48 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-05-12 08:30:00 obsr1044068 S23407960 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291521327 2018-08-04 16:53:27 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Clapper Road L1347463 P 42.554835 -73.7793058 2015-01-17 08:40:00 obsr1154 S21387122 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310126202 2021-03-19 16:19:20.977326 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Unity Island (aka Squaw Is.)--North End L2036486 H 42.9321075 -78.9062977 2015-04-10 12:15:00 obsr2597186 S22856885 Traveling P22 EBIRD 35.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295406759 2021-04-01 12:32:15.282601 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-07 10:20:00 obsr916370 S21714552 Traveling P22 EBIRD 300.0 9.173 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315320677 2018-08-04 17:13:57 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 Male, Unknown Age (4) United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-01 15:00:00 obsr2729089 S23200029 Historical P62 EBIRD 165.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311072101 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Southern Meadow and environs L1816707 H 40.8533174 -73.8219978 2015-04-18 09:35:00 obsr599682 S22934212 Traveling P22 EBIRD 100.0 3.219 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288255721 2015-01-01 17:14:43 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Arthur Ross Pinetum L826628 H 40.7835168 -73.9667 2015-01-01 10:30:00 obsr794187 S21122248 Traveling P22 EBIRD 30.0 0.644 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310507431 2015-04-16 18:56:59 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Wolf Swamp Preserve L122954 H 40.92306 -72.42278 2015-04-16 14:45:00 obsr1864342 S22897380 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306417008 2021-04-01 10:49:39.496318 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 40 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-03-21 10:10:00 obsr34822 S22603103 Stationary P21 EBIRD 28.0 10.0 1 G1198796 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303136069 2018-08-04 16:59:54 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 2 United States US New York US-NY Essex US-NY-031 13.0 Maple Meadows L4115608 P 44.0422008 -73.4797356 2015-03-14 07:30:00 obsr2769235 S22351245 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307861331 2018-08-04 17:05:19 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-04 08:00:00 obsr1160328 S22709081 Stationary P21 EBIRD 135.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310833668 2018-08-04 17:09:33 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Greene US-NY-039 13.0 breezy L2519173 P 42.2819381 -73.7938102 2015-04-17 13:30:00 obsr41861 S22918972 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289145190 2021-04-26 05:03:09.627903 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 15 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-04 12:40:00 obsr187432 S21196426 Traveling P22 EBIRD 93.0 2.414 3.0 1 G1098176 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303011813 2021-03-26 06:17:19.712573 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-03-14 obsr2096529 S22341342 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313728859 2021-04-01 11:24:19.637193 30494 species avibase-240E3390 House Sparrow Passer domesticus 100 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-04-27 08:34:00 obsr745890 S23105250 Traveling P22 EBIRD 45.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317013788 2021-03-23 17:22:05.708166 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 35 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-07 08:55:00 obsr316199 S23295793 Area P23 EBIRD 65.0 2.59 2.0 1 G1256610 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299034578 2021-03-24 20:13:27.613389 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-02-22 09:30:00 obsr2645443 S22027641 Traveling P22 EBIRD 45.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294631043 2021-04-01 11:30:42.037277 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 18 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-02 15:15:00 obsr1135516 S21652295 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290225275 2021-04-26 05:03:09.627903 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 3 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-10 10:00:00 obsr152435 S21282299 Traveling P22 EBIRD 420.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308279851 2018-08-04 17:06:20 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Ontario US-NY-069 13.0 Risser Rd. Swamp, Canandaigua L771877 H 42.9382814 -77.29738 2015-04-07 08:09:00 obsr1243175 S22740282 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311297046 2021-03-19 16:19:20.977326 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Erie US-NY-029 13.0 Home L2093742 P 42.7338768 -78.7242615 2015-04-19 07:22:00 obsr916033 S22947630 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322432616 2018-08-06 22:31:00 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-05-24 08:00:00 obsr646558 S23605880 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299557190 2021-11-09 22:04:47.967972 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis N 450 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-22 15:05:00 obsr1732267 S22069282 Traveling P22 EBIRD 45.0 1.609 26.0 1 G1159576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322763628 2015-05-25 10:25:26 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Blueberry Hill East and West L782514 H 42.7004751 -73.8682283 2015-05-25 09:15:00 obsr119187 S23625079 Traveling P22 EBIRD 35.0 0.322 2.0 1 G1288768 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306093787 2021-03-23 16:52:36.900075 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-03-29 09:30:00 obsr1137265 S22578395 Rusty Blackbird Spring Migration Blitz P41 EBIRD 180.0 4.828 3.0 1 G1196667 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320689952 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-05-17 13:30:00 obsr1555046 S23499930 Traveling P22 EBIRD 75.0 1.609 2.0 1 G1275793 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313799066 2018-08-26 19:46:48 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 10 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-28 12:57:00 obsr1655171 S23109676 Traveling P22 EBIRD 25.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305065063 2016-03-11 08:58:42 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - West Trail intersect spur trail to Winston Court L301740 P 42.4781834 -76.4567368 2015-03-24 07:55:00 obsr2307843 S22500327 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310397340 2021-03-26 06:39:43.334073 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Oven and The Point L1480317 H 40.7756262 -73.9700541 2015-04-16 08:15:00 obsr1034702 S22889465 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS770472518 2021-03-24 21:13:42.099821 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Westchester US-NY-119 30.0 Rockefeller SP Preserve--Rockwood Hall L2724279 H 41.1158745 -73.8650465 2015-01-01 08:35:00 obsr363553 S57032818 Traveling P22 EBIRD 135.0 1.609 26.0 1 G1088062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292657998 2021-03-23 16:39:03.255227 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Richmond US-NY-085 Lemon Creek Pier L673443 H 40.5108301 -74.2097712 2015-01-22 16:01:00 obsr1958124 S21496384 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301387427 2018-02-25 19:32:48 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 9 United States US New York US-NY Columbia US-NY-021 13.0 Ancram, New York US L3461149 P 42.0520383 -73.6925125 2015-02-15 11:45:00 obsr2185843 S22209354 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312174885 2020-07-20 09:16:51 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-22 18:00:00 obsr660214 S23005204 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307977557 2021-11-09 21:35:18.646328 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-06 10:25:00 obsr1636520 S22717813 Traveling P22 EBIRD 78.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319836234 2021-03-19 16:19:20.977326 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-15 11:00:00 obsr2324853 S23454849 Traveling P22 EBIRD 90.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291502044 2021-11-09 20:53:17.759253 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Rockland US-NY-087 30.0 Nanuet L1293607 P 41.0931306 -74.0298271 2015-01-17 11:15:00 obsr1932005 S21385570 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307493904 2015-04-04 16:48:50 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Niagara US-NY-063 US-NY_1729 13.0 Tonawanda WMA--Wood Marsh (West) L811484 H 43.1120117 -78.4883881 2015-04-04 16:10:00 obsr1195275 S22683379 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292218815 2021-04-01 11:15:31.646886 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 6 United States US New York US-NY Kings US-NY-047 30.0 Hendrix Creek L821734 H 40.6482804 -73.8749027 2015-01-20 13:22:00 obsr187432 S21440957 Traveling P22 EBIRD 79.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761919 2021-03-26 07:56:20.588749 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-28 16:00:00 obsr2218212 S22629541 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298857052 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 13 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-02-21 10:25:00 obsr150415 S22012627 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304442550 2021-04-01 12:12:56.033907 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 5 United States US New York US-NY Steuben US-NY-101 28.0 Chemung River at Corning WWTP L619480 H 42.1360014 -77.0319942 2015-03-21 11:24:00 obsr1092576 S22452972 Traveling P22 EBIRD 17.0 0.322 2.0 1 G1187068 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304683044 2021-11-09 18:45:10.50824 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Wappingers Creek at Market Street, Wappingers Falls, NY L3506904 P 41.5938946 -73.9263142 2015-03-22 11:10:00 obsr1062217 S22470857 Stationary P21 EBIRD 27.0 3.0 1 G1188625 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307559909 2021-04-01 11:24:19.637193 662 species avibase-FB738385 Bufflehead Bucephala albeola N 2 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-04 11:10:00 obsr1782363 S22687979 Stationary P21 EBIRD 480.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288481040 2021-04-01 12:11:50.996293 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Mays Point Lock 25 L481733 P 42.9993744 -76.7625904 2015-01-02 10:15:00 obsr204036 S21140960 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310018852 2021-04-01 11:30:42.037277 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris N X United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-04-14 13:45:00 obsr401055 S22863214 Traveling P22 EBIRD 75.0 0.805 18.0 1 G1220053 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291670410 2021-03-26 06:58:34.561206 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-01-18 10:36:00 obsr2588479 S21398674 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305442389 2015-03-26 15:16:06 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-26 08:00:00 obsr454647 S22529605 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299092111 2021-04-01 10:51:06.899622 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-02-22 14:00:00 obsr479109 S22033918 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320496178 2018-08-04 17:27:41 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-17 06:00:00 obsr2149313 S23489670 Traveling P22 EBIRD 130.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325132551 2019-07-23 17:28:22 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr2326114 S23785647 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293725014 2022-01-30 05:59:21.134541 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Feeders Only L1037405 H 40.6580479 -73.9676857 2015-01-28 14:49:00 obsr1821546 S21580432 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289328761 2021-04-01 11:15:31.646886 649 species avibase-624078BA Surf Scoter Melanitta perspicillata N 6 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-01-05 13:30:00 obsr2448957 S21210612 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299144767 2021-03-26 06:39:43.334073 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-23 06:20:00 obsr1135516 S22037789 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317087666 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 06:00:00 obsr1135516 S23300165 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311910003 2021-03-23 17:40:24.452972 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Warren US-NY-113 14.0 6 Vanare Lane lake luzerne ny L1615171 P 43.3733902 -73.7825699 2015-04-15 18:45:00 obsr2685359 S22987659 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319497202 2021-03-24 19:35:34.045988 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-14 06:58:00 obsr502830 S23435391 Traveling P22 EBIRD 97.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1194693100 2021-12-29 19:49:13.406804 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Erie US-NY-029 13.0 University at Buffalo (North Campus) L6275102 H 43.0008539 -78.7889698 2015-05-13 16:15:00 obsr2155450 S91218597 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313056960 2021-03-26 06:20:10.658048 505 species avibase-C732CB10 American Black Duck Anas rubripes N 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Oak Orchard WMA--Goose Pond overlook L294791 H 43.1245968 -78.2729208 2015-04-26 08:35:00 obsr2588479 S23063558 Stationary P21 EBIRD 8.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297556568 2021-04-01 12:32:15.282601 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 14 United States US New York US-NY Nassau US-NY-059 30.0 west hempstead L1040566 P 40.6900103 -73.6729431 2015-02-15 13:00:00 obsr1494607 S21898641 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317038541 2018-08-04 17:15:05 636 species avibase-B77377EE Common Eider Somateria mollissima 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-07 06:10:00 obsr1778524 S23297293 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298077097 2021-04-01 11:15:31.646886 11371 species avibase-75600969 Northern Flicker Colaptes auratus 113 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-02-17 16:35:00 obsr1821546 S21945938 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612087 2021-03-24 20:33:47.533911 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-01-18 08:04:00 obsr730231 S21394043 Stationary P21 EBIRD 32.0 2.0 1 G1113264 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306760711 2022-03-07 20:38:22.363139 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 10 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup West L1244607 P 41.9128946 -73.6813465 2015-04-01 08:00:00 obsr1339050 S22629464 Traveling P22 EBIRD 180.0 3.219 23.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306048194 2021-04-01 11:49:53.573686 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis X United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Little Alley Pond L877936 H 40.7401052 -73.7404704 2015-03-29 08:30:00 obsr2207991 S22574954 Traveling P22 EBIRD 210.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295020380 2021-04-01 12:14:19.266649 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 9 United States US New York US-NY Suffolk US-NY-103 US-NY_2796 East Islip Marina, Islip NY L2161200 P 40.7025915 -73.1857681 2015-02-04 12:05:00 obsr2534001 S21684979 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294874128 2021-03-19 16:44:35.607263 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-02-03 08:50:00 obsr334398 S21672239 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304018376 2021-03-26 07:46:52.994574 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 10 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-03-19 08:39:00 obsr2512689 S22420310 Traveling P22 EBIRD 76.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303940389 2015-03-18 20:01:08 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-18 09:15:00 obsr1334267 S22414479 Traveling P22 EBIRD 26.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298879056 2021-11-09 21:17:58.494129 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Ulster US-NY-111 28.0 Lippincott Rd., Wallkill L1097498 H 41.6194441 -74.1931401 2015-02-21 13:20:00 obsr350767 S22014409 Stationary P21 EBIRD 5.0 4.0 1 G1155617 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299745011 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-26 12:30:00 obsr547602 S22083737 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315027846 2021-03-26 06:11:29.8335 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Owasco Lake inlet area L302042 H 42.7542393 -76.4637132 2015-05-02 07:03:00 obsr1655171 S23184009 Traveling P22 EBIRD 83.0 0.805 2.0 1 G1247590 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309214202 2021-03-30 19:43:32.881136 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-04-11 09:30:00 obsr2924527 S22808483 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291005340 2021-03-23 16:33:05.415158 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Queens US-NY-081 US-NY_1722 Queens County Location L2485808 P 40.6316723 -73.8032341 2015-01-14 11:30:00 obsr2436774 S21345006 Traveling P22 EBIRD 80.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290529859 2021-04-01 12:14:19.266649 10654 species avibase-448D91B7 Red-headed Woodpecker Melanerpes erythrocephalus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-11 14:30:00 obsr2207991 S21306981 Stationary P21 EBIRD 165.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288448392 2019-04-19 13:17:53 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-01-02 08:30:00 obsr481595 S21138094 Traveling P22 EBIRD 135.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311653973 2021-03-26 07:30:35.289997 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-20 07:30:00 obsr1318356 S22971087 Traveling P22 EBIRD 69.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289101853 2022-02-17 14:32:23.002448 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-03 08:35:00 obsr2502574 S21192930 Traveling P22 EBIRD 120.0 1.931 6.0 1 G1095047 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323745640 2022-02-17 14:32:23.002448 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-29 07:52:00 obsr1605975 S23691328 Traveling P22 EBIRD 148.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298849722 2021-04-01 11:15:31.646886 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-02-21 08:05:00 obsr1408339 S22012072 Historical P62 EBIRD 130.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300599590 2021-11-09 19:32:09.664889 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 20 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region--Mission Land Rd. L1276461 H 41.2952799 -74.4947528 2015-02-21 10:00:00 obsr271871 S22149306 Traveling P22 EBIRD 60.0 8.047 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323939098 2018-08-06 22:31:26 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 12 United States US New York US-NY Broome US-NY-007 28.0 Aquaterra Park L209925 H 42.032165 -75.939463 2015-05-30 07:51:00 obsr1764243 S23704401 Traveling P22 EBIRD 187.0 3.219 20.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305302140 2022-02-13 06:32:05.759346 483 species avibase-85625D75 Mallard Anas platyrhynchos 800 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-03-25 10:20:00 obsr1318356 S22518526 Traveling P22 EBIRD 88.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291528160 2021-04-01 11:15:31.646886 7429 species avibase-1327AC55 Osprey Pandion haliaetus 8 United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-01-17 09:15:00 obsr350767 S21387690 Stationary P21 EBIRD 21.0 4.0 1 G1112433 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313204329 2021-03-30 19:25:27.212017 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 20 United States US New York US-NY Richmond US-NY-085 30.0 Wolfe's Pond Park--Acme Pond L1131894 H 40.5222942 -74.1931951 2015-04-26 12:30:00 obsr1605975 S23072151 Traveling P22 EBIRD 120.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291450271 2021-03-23 16:39:03.255227 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Richmond US-NY-085 Lemon Creek Pier L673443 H 40.5108301 -74.2097712 2015-01-17 10:33:00 obsr1958124 S21381393 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324203307 2021-04-01 11:47:43.260314 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-04-22 obsr2409011 S23720872 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305854342 2021-03-26 06:39:43.334073 7429 species avibase-1327AC55 Osprey Pandion haliaetus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-03-28 15:00:00 obsr93451 S22560719 Traveling P22 EBIRD 120.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318297662 2021-03-26 06:39:43.334073 32433 spuh avibase-E6552A7D sparrow sp. Passerellidae sp. (sparrow sp.) 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Triplets Br. area (btwn 77th-79th St. transv.) L4525727 H 40.779838 -73.9724077 2015-05-08 12:05:00 obsr1548221 S23366749 Traveling P22 EBIRD 195.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294754777 2021-03-26 07:20:31.408164 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 16 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-02-03 08:00:00 obsr2011512 S21662155 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317403160 2021-04-01 12:32:15.282601 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Plains Preserve L1575568 H 40.7240849 -73.5844534 2015-05-09 05:30:00 obsr2823378 S23317982 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS434706954 2016-11-20 13:12:00 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Monroe US-NY-055 13.0 Beach Ave., Lake Ontario L4101604 P 43.2700909 -77.6278571 2015-03-08 09:00:00 obsr1517674 S31934031 Traveling P22 EBIRD 135.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322269571 2021-03-19 16:29:59.503892 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum L467369 H 44.0669903 -75.7229233 2015-05-23 07:00:00 obsr724731 S23596396 Traveling P22 EBIRD 330.0 40.234 17.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306760098 2021-03-26 07:56:20.588749 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-01 14:50:00 obsr1488063 S22629407 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289485203 2021-04-01 11:30:42.037277 662 species avibase-FB738385 Bufflehead Bucephala albeola 45 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-06 12:00:00 obsr259298 S21222951 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308835056 2021-11-09 20:37:49.117197 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Putnam US-NY-079 28.0 Manitou Point Preserve L1070091 H 41.3373022 -73.96174 2015-04-10 09:45:00 obsr2188716 S22782712 Traveling P22 EBIRD 83.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361322634 2018-08-04 17:08:20 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Saratoga US-NY-091 13.0 Saratoga Lake L457113 H 43.0222196 -73.7374878 2015-04-10 10:00:00 obsr1620448 S26472879 Traveling P22 EBIRD 140.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294335119 2017-08-27 19:59:28 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Armitage Road, fields and impoundments (Wayne Co.) L366214 H 43.0223451 -76.7845631 2015-02-01 11:00:00 obsr2914424 S21628898 Traveling P22 EBIRD 14.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308956954 2021-03-23 17:37:19.520785 242 species avibase-D3A260BC Snow Goose Anser caerulescens X United States US New York US-NY Saratoga US-NY-091 13.0 River Rd., Stillwater L503597 H 43.0191009 -73.5936989 2015-04-10 10:10:00 obsr2533499 S22791402 Traveling P22 EBIRD 10.0 16.093 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289176220 2015-03-08 15:21:17 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Fort Niagara SP L210265 H 43.2638703 -79.0567981 2015-01-01 07:25:00 obsr2965498 S21198656 Traveling P22 EBIRD 120.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307585721 2021-11-09 22:37:59.030687 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Main Boat Launch, Bashakill L1742095 P 41.5168244 -74.5381774 2015-04-03 16:46:00 obsr1788273 S22689819 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312221363 2021-03-26 08:14:57.071052 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-06 08:40:00 obsr2973651 S23008380 Traveling P22 EBIRD 140.0 3.621 18.0 1 G1207928 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309469065 2021-11-09 18:37:28.581198 7127 species avibase-13E9F9B4 American Bittern Botaurus lentiginosus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Farm View Road, Wappingers Falls, NY L2770006 P 41.6466849 -73.8395405 2015-04-12 15:15:00 obsr2103727 S22824187 Stationary P21 EBIRD 75.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311965792 2021-11-15 03:06:58.889978 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 Male, Adult (4); Female, Adult (2) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-19 09:01:00 obsr1548221 S22991388 Traveling P22 EBIRD 157.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309668534 2021-04-01 12:18:57.910168 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-13 08:18:00 obsr1696616 S22837603 Stationary P21 EBIRD 55.0 5.0 1 G1218226 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288900757 2021-03-24 20:58:53.646623 6472 species avibase-BE78E765 Least Tern Sternula antillarum N 83 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-01-03 15:10:00 obsr72341 S21177146 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291330296 2022-02-17 14:32:23.002448 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-16 13:30:00 obsr2448957 S21371843 Traveling P22 EBIRD 210.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305577563 2021-03-24 20:11:57.676649 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon N 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-26 08:32:00 obsr2262082 S22539975 Stationary P21 EBIRD 70.0 2.0 1 G1194042 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292647245 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-22 13:15:00 obsr454647 S21495401 Traveling P22 EBIRD 165.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312316440 2021-03-23 16:39:03.255227 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-23 13:44:00 obsr1958124 S23014642 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312081523 2021-03-30 06:01:28.020715 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-04-22 08:12:00 obsr879105 S22998873 Traveling P22 EBIRD 30.0 2.414 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296115400 2021-03-23 17:26:08.495143 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-02-11 09:45:00 obsr247620 S21770221 Traveling P22 EBIRD 105.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306289294 2021-04-01 10:55:39.308231 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Erie US-NY-029 13.0 Alden - Crittenden Rd. L586154 P 42.9165364 -78.4935379 2015-03-30 08:20:00 obsr2871264 S22593332 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300775246 2015-03-03 18:01:47 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Wayne US-NY-117 13.0 Huron, 8001-8081 East Bay Road L3453742 P 43.29075 -76.90646 2015-03-02 15:58:00 obsr1721609 S22162351 Stationary P21 EBIRD 11.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308120535 2021-04-02 13:20:09.513046 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY US-NY_1729 13.0 USFWS_219 Iroquois NWR (NYS, general area) L1031252 H 43.1307943 -78.3728455 2015-04-06 12:00:00 obsr786804 S22728016 Traveling P22 EBIRD 210.0 8.047 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301631444 2022-02-21 13:41:55.027797 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 30.0 Fort Tryon Park L591127 H 40.8629374 -73.9327457 2015-03-08 09:30:00 obsr781996 S22227313 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307996695 2021-03-26 07:53:57.664705 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Livingston US-NY-051 13.0 Twin Cedars Environmental Area (DEC pond), Avon L800055 H 42.9002384 -77.6689625 2015-04-06 12:33:00 obsr1060479 S22719021 Traveling P22 EBIRD 9.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313637479 2018-08-04 17:12:33 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-04-27 18:30:00 obsr2796494 S23099339 Traveling P22 EBIRD 30.0 0.402 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322725362 2018-08-06 22:31:00 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Delaware US-NY-025 28.0 E. Handsome Brook Road, Franklin L3542646 P 42.3027811 -75.0653958 2015-05-24 08:00:00 obsr2200827 S23622775 Traveling P22 EBIRD 150.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311989573 2021-03-23 16:48:08.60516 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Knox-Marsellus Marsh L1280877 H 43.0076202 -76.7529774 2015-04-20 15:16:00 obsr528918 S22992981 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303246235 2021-03-19 16:32:34.732091 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-15 10:30:00 obsr1801902 S22359676 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298639445 2021-03-24 20:21:40.993321 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 5 United States US New York US-NY Seneca US-NY-099 13.0 Cove L678244 P 42.6487254 -76.8698493 2015-02-20 obsr2731440 S21993932 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293180568 2021-04-01 12:32:15.282601 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-25 09:00:00 obsr544268 S21537380 Traveling P22 EBIRD 90.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308214827 2021-03-24 20:23:39.258075 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Suffolk US-NY-103 30.0 Staller Drive L2618497 P 40.8661125 -72.6181121 2015-04-07 09:00:00 obsr1736113 S22735508 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316216081 2021-04-01 11:30:42.037277 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 16:30:00 obsr2031586 S23250469 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298459492 2021-11-09 18:09:08.212564 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Dutchess US-NY-027 US-NY_870 13.0 Thompson Pond Preserve L123019 H 41.9677583 -73.6819272 2015-02-11 09:00:00 obsr1339050 S21979163 Traveling P22 EBIRD 180.0 3.219 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306416942 2020-05-05 16:54:28 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-21 08:00:00 obsr34822 S22603099 Stationary P21 EBIRD 33.0 10.0 1 G1198792 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308824955 2018-08-04 17:08:20 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Oneida US-NY-065 14.0 Beaver Dam, Howd Rd, Camden, New York L2094585 P 43.3120796 -75.7817173 2015-04-10 09:57:00 obsr666964 S22782029 Stationary P21 EBIRD 14.0 1.0 1 G1213234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305890672 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 80 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-03-28 12:25:00 obsr1807494 S22563512 Traveling P22 EBIRD 110.0 2.012 11.0 1 G1195436 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS320355135 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 10:00:00 obsr2363365 S23482095 Traveling P22 EBIRD 360.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317726981 2021-04-01 11:15:31.646886 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:40:00 obsr2519357 S23336511 Traveling P22 EBIRD 560.0 15.771 6.0 1 G1259504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1068491695 2021-04-01 10:55:39.308231 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 4 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-16 08:30:00 obsr2155450 S80650147 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298934460 2015-02-22 10:39:02 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Queens US-NY-081 ROCKAWAY BEACH L1094857 P 40.5821492 -73.8085556 2015-02-22 10:05:00 obsr2189493 S22019032 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313650269 2021-12-10 08:21:29.396662 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 2 ON C4 ON United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-04-27 08:15:00 obsr1198912 S23100188 Traveling P22 EBIRD 225.0 4.506 25.0 1 G1239686 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321258886 2018-08-06 22:30:26 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-17 14:00:00 obsr1561508 S23534504 Traveling P22 EBIRD 45.0 0.322 2.0 1 G1279596 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312530220 2022-02-17 14:32:23.002448 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 6 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-24 10:00:00 obsr1284279 S23029240 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294372566 2018-08-04 16:55:33 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Nassau US-NY-059 30.0 Tackapausha Museum and Preserve L617756 H 40.6685464 -73.482399 2015-02-01 09:10:00 obsr2871735 S21631709 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317201474 2021-03-26 06:29:56.44369 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-08 10:20:00 obsr334398 S23305997 Traveling P22 EBIRD 33.0 0.161 2.0 1 G1257532 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314286079 2021-03-19 16:44:35.607263 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-04-30 08:00:00 obsr1245041 S23140199 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322860227 2021-03-19 16:44:35.607263 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Monroe US-NY-055 13.0 Hamlin, 43-175 Cook Road L2674016 P 43.35949 -77.97068 2015-05-25 15:10:00 obsr2595828 S23630910 Traveling P22 EBIRD 5.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289849075 2021-03-26 06:58:34.561206 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 20 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-01-08 11:12:00 obsr2588479 S21251614 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309230575 2015-04-11 20:53:03 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Lewis US-NY-049 13.0 Location F L1847764 P 43.936171 -75.505298 2015-04-11 14:48:00 obsr417887 S22809547 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306833733 2021-03-30 19:07:52.958398 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-01 13:30:00 obsr2078092 S22635040 Traveling P22 EBIRD 300.0 4.828 2.0 1 G1201046 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS837139044 2021-03-19 16:27:31.421791 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 13 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kanyoo Trail L152120 H 43.1168988 -78.430624 2015-05-15 14:30:00 obsr2405299 S62231666 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290853126 2021-01-30 10:27:08.559792 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-I L3289026 P 40.29866 -73.31405 2015-01-11 16:00:00 obsr2310825 S21332791 Traveling P22 EBIRD 60.0 10.622 44.0 1 G1108342 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300869017 2021-03-26 07:30:35.289997 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 9 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-04 08:29:00 obsr1655171 S22169370 Traveling P22 EBIRD 23.0 0.644 2.0 1 G1178160 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313042565 2021-03-23 16:39:03.255227 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-04-26 06:42:00 obsr1958124 S23062665 Traveling P22 EBIRD 7.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082750 2021-03-24 19:27:13.077399 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 5 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-17 15:28:00 obsr1334267 S21430583 Traveling P22 EBIRD 18.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310688627 2016-12-20 11:44:11 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-04-17 15:07:00 obsr2270510 S22909289 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294050613 2021-03-26 06:07:26.162322 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-01-30 08:30:00 obsr2700440 S21606578 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313046152 2021-03-24 20:16:00.852773 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-26 06:58:00 obsr1958124 S23062869 Traveling P22 EBIRD 31.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308466399 2021-04-01 12:32:15.282601 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 3 United States US New York US-NY Nassau US-NY-059 30.0 East Shore Rd, Great Neck L1414428 P 40.7977755 -73.7126586 2015-04-07 18:45:00 obsr676630 S22754452 International Shorebird Survey (ISS) P74 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314322771 2018-08-04 17:13:07 26278 species avibase-A381417F House Wren Troglodytes aedon X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-30 08:04:00 obsr34822 S23142026 Traveling P22 EBIRD 43.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312853715 2021-03-19 16:19:20.977326 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 8 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-25 08:30:00 obsr2406623 S23051306 Traveling P22 EBIRD 240.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295949825 2021-11-09 22:04:47.967972 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-07 09:10:00 obsr2816169 S21757342 Traveling P22 EBIRD 172.0 56.327 2.0 1 G1516811 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305772072 2021-04-01 10:47:08.851048 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-03-28 12:03:00 obsr1764243 S22554970 Traveling P22 EBIRD 17.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308027544 2021-04-01 11:24:19.637193 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 57 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-04-06 09:44:00 obsr745890 S22721087 Traveling P22 EBIRD 35.0 0.805 2.0 1 G1208219 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313243065 2021-03-31 04:01:10.517395 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-26 08:42:00 obsr1807494 S23074442 Traveling P22 EBIRD 89.0 1.609 4.0 1 G1237518 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296235675 2017-08-16 16:35:35 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Gilgo Beach--bay side (parking lot) L2026478 H 40.6194672 -73.3941026 2015-02-12 09:02:00 obsr1228860 S21779712 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312723631 2018-08-04 17:12:05 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 6 United States US New York US-NY Steuben US-NY-101 28.0 Almond Lake L268790 H 42.3492255 -77.7133725 2015-04-25 07:53:00 obsr1092576 S23043473 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298410241 2021-04-01 11:42:50.317679 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 25 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-02-17 10:45:00 obsr1195517 S21974174 Stationary P21 EBIRD 150.0 2.0 1 G1152652 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295769515 2021-03-26 07:43:12.52294 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 20 United States US New York US-NY Wayne US-NY-117 13.0 2155 Evergreen Circle, Ontario, NY L1847173 P 43.2480127 -77.2772876 2015-02-09 08:00:00 obsr2914424 S21742706 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309305305 2021-03-30 19:29:33.633096 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Suffolk US-NY-103 30.0 Terrell River L242050 P 40.7886068 -72.7801338 2015-04-11 10:27:00 obsr2963457 S22814335 Traveling P22 EBIRD 70.0 4.506 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300004447 2015-08-31 22:40:57 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Wayne US-NY-117 13.0 Savannah, Tallman Rd L2745278 P 43.12332 -76.72464 2015-02-11 15:38:00 obsr1721609 S22103654 Stationary P21 EBIRD 110.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318259574 2021-03-26 06:29:56.44369 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 WS+MBP+DEC L3631915 P 43.3198077 -77.7154183 2015-05-10 07:50:00 obsr2504709 S23365030 Traveling P22 EBIRD 130.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312045755 2015-04-22 11:02:39 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Rensselaer US-NY-083 14.0 Webster Road, Petersburgh L2995274 P 42.8125725 -73.3311197 2015-04-22 07:15:00 obsr362655 S22996721 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305755510 2021-04-01 11:49:53.573686 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata N 2 United States US New York US-NY Queens US-NY-081 30.0 Kissena Park L491873 H 40.7462409 -73.8080852 2015-03-28 08:40:00 obsr186539 S22553761 Traveling P22 EBIRD 140.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306982361 2021-11-09 21:05:07.751154 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Rockland US-NY-087 US-NY_843 28.0 Bear Mountain SP--Doodletown Rd. L316486 H 41.3011999 -73.9869576 2015-04-02 10:00:00 obsr1121454 S22646042 Traveling P22 EBIRD 170.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301295646 2021-03-26 07:52:59.845315 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 5 United States US New York US-NY Herkimer US-NY-043 13.0 Little Falls - South L1114999 P 43.0389088 -74.8589945 2015-03-06 15:34:00 obsr316199 S22201097 Incidental P20 EBIRD 3.0 0 G1168446 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314406499 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-30 15:54:00 obsr2149836 S23147126 Traveling P22 EBIRD 35.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303941875 2021-03-30 19:03:54.667077 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-18 11:00:00 obsr1792012 S22414565 Stationary P21 EBIRD 70.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297275969 2021-04-01 12:32:15.282601 662 species avibase-FB738385 Bufflehead Bucephala albeola 6 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-02-15 13:00:00 obsr247620 S21873872 Traveling P22 EBIRD 90.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308683192 2021-11-09 22:37:20.108383 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 30 United States US New York US-NY Sullivan US-NY-105 28.0 Bashakill L1566572 P 41.5241759 -74.5163684 2015-04-09 09:30:00 obsr2219590 S22771200 Traveling P22 EBIRD 240.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289903985 2021-03-24 19:19:28.646223 616 species avibase-25C94A8F Greater Scaup Aythya marila 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-08 14:57:00 obsr955789 S21256243 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322459546 2018-08-06 22:31:01 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Kings US-NY-047 US-NY_1722 Jamaica Bay Wildlife Refuge--Terrapin Point (Brooklyn) L3668252 P 40.61576 -73.835 2015-05-24 08:47:00 obsr152435 S23607374 Traveling P22 EBIRD 90.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291036882 2021-04-01 11:14:02.420281 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. N X United States US New York US-NY Jefferson US-NY-045 13.0 Cape Vincent Grasslands L1030143 P 44.1344206 -76.2652016 2015-01-14 12:30:00 obsr979921 S21347716 Traveling P22 EBIRD 180.0 32.187 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289176255 2021-09-19 18:57:52.903665 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY New York US-NY-061 30.0 Morningside Park, Manhattan L1799559 H 40.8067376 -73.9580993 2015-01-04 13:50:00 obsr1706920 S21198659 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321482065 2021-03-19 16:02:45.308962 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-05-20 10:00:00 obsr1830659 S23547008 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293787687 2021-03-30 19:07:52.958398 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-19 10:15:00 obsr2182516 S21585479 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297202505 2021-11-09 20:57:58.716651 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 3 United States US New York US-NY Rockland US-NY-087 28.0 11 Stella CT L1939782 P 41.2230846 -74.012146 2015-02-15 15:00:00 obsr1803303 S21867006 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313677844 2021-03-24 19:24:40.212356 1806 species avibase-32DCEC14 Eared Grebe Podiceps nigricollis 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 13:10:00 obsr2937317 S23101927 Stationary P21 EBIRD 33.0 3.0 1 G1240628 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308427360 2021-03-23 17:00:13.087107 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-08 07:33:00 obsr1655171 S22751575 Traveling P22 EBIRD 42.0 0.966 2.0 1 G1212820 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308135263 2015-05-31 12:15:46 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Genesee US-NY-037 13.0 Genesee County Park and Forest L319865 H 42.8771248 -78.1243096 2015-04-04 10:00:00 obsr786804 S22729056 Traveling P22 EBIRD 90.0 8.047 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303996779 2021-03-24 20:23:39.258075 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Suffolk US-NY-103 30.0 21 Kew Dr. (yard) L2379429 P 40.9582898 -72.9690624 2015-03-18 11:33:00 obsr2633969 S22418590 Incidental P20 EBIRD 5.0 0 G1184877 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311070218 2015-04-18 21:13:54 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 6 United States US New York US-NY Saratoga US-NY-091 13.0 Lake Lonely Trail L1543910 P 43.0648266 -73.7328985 2015-04-18 14:40:00 obsr907769 S22934074 Traveling P22 EBIRD 55.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311482998 2021-03-26 08:14:57.071052 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Westchester US-NY-119 30.0 Sandy's Yard Birds L8198356 P 41.0139001 -73.8196024 2015-04-19 09:30:00 obsr258560 S22959109 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295395773 2021-03-26 07:07:10.758746 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 5 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-07 16:20:00 obsr1958124 S21713696 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289683810 2021-11-09 18:13:40.429909 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook School L1315112 P 41.8447829 -73.6174469 2015-01-07 09:00:00 obsr1339050 S21238525 Traveling P22 EBIRD 150.0 2.736 7.0 1 G1109139 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310554407 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 07:00:00 obsr1220115 S22900586 Traveling P22 EBIRD 120.0 2.414 9.0 1 G1223745 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316669020 2021-11-09 18:36:27.898762 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-05-06 09:00:00 obsr1917973 S23276431 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320899761 2015-05-18 12:17:33 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 1 United States US New York US-NY Albany US-NY-001 13.0 Tracy Rd. Swamps L590801 H 42.4957279 -73.872267 2015-05-18 11:44:00 obsr1201479 S23512296 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296794722 2021-03-26 07:07:10.758746 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Richmond US-NY-085 Mill Creek L1302294 H 40.5198919 -74.2406809 2015-02-14 08:48:00 obsr1958124 S21830864 Stationary P21 EBIRD 15.0 2.0 1 G1145909 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297123713 2021-03-26 06:39:43.334073 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-15 12:06:00 obsr2493447 S21859807 Traveling P22 EBIRD 91.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313244725 2018-08-04 17:12:23 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 7 United States US New York US-NY Tompkins US-NY-109 28.0 143 Howland Road L3442761 P 42.2876594 -76.4194393 2015-04-26 09:30:00 obsr2430746 S23074546 Traveling P22 EBIRD 170.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297530578 2021-11-09 22:04:47.967972 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-15 14:00:00 obsr1872263 S21896362 Traveling P22 EBIRD 165.0 2.414 2.0 1 G1149059 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303391764 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-03-15 08:20:00 obsr2595828 S22371303 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299401867 2021-11-09 21:05:39.566545 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Rockland US-NY-087 US-NY_843 28.0 Iona Island rd. L3436825 P 41.3030284 -73.9787257 2015-02-24 13:30:00 obsr1259654 S22057287 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310845 2021-03-23 17:18:00.959502 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.8729471 2015-01-16 08:05:00 obsr2837502 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310170511 2021-04-01 12:32:15.282601 31530 species avibase-B48335B1 Pine Siskin Spinus pinus N X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-14 17:00:00 obsr544268 S22873972 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319324065 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 14:14:00 obsr2448505 S23425279 Traveling P22 EBIRD 120.0 3.219 2.0 1 G1273002 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290401537 2015-01-15 09:26:57 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 5 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-01-05 16:30:00 obsr1859630 S21296611 Traveling P22 EBIRD 40.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294350926 2021-03-24 20:33:47.533911 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis N 11 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail L1498729 H 42.4795201 -76.4551642 2015-01-31 14:20:00 obsr1262885 S21630135 Traveling P22 EBIRD 65.0 1.207 81.0 1 G1130610 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319430878 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-13 13:00:00 obsr547602 S23431333 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304365680 2021-03-26 07:52:19.474233 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Delaware US-NY-025 28.0 Home L150688 P 42.248363 -74.82349 2015-03-21 07:47:00 obsr2582087 S22447466 Stationary P21 EBIRD 212.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315508107 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 08:10:00 obsr150415 S23210105 Traveling P22 EBIRD 225.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307814484 2021-11-09 17:43:05.347258 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 10 United States US New York US-NY Dutchess US-NY-027 28.0 Brothers Rd - Depot Hill L1034813 P 41.5944317 -73.6783826 2015-04-05 16:00:00 obsr1732267 S22705779 Stationary P21 EBIRD 90.0 2.0 1 G1207105 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315216929 2021-03-19 16:29:59.503892 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-03 08:51:00 obsr1302604 S23194805 Stationary P21 EBIRD 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321155242 2021-03-23 17:23:45.772216 11528 species avibase-F3DA111C Merlin Falco columbarius X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-17 07:00:00 obsr72341 S23528182 Stationary P21 EBIRD 660.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320856881 2022-01-20 09:38:40.245267 447 species avibase-C235A4D7 Gadwall Mareca strepera 3 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-17 06:15:00 obsr2966702 S23509944 Traveling P22 EBIRD 373.0 4.023 20.0 1 G1275330 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315073369 2017-12-21 12:25:41 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Columbia US-NY-021 13.0 Olana State Historic Site L357372 H 42.2183005 -73.8287207 2015-05-02 07:59:00 obsr440908 S23186633 Traveling P22 EBIRD 303.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320254827 2021-12-29 17:37:07.163452 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Dutchess US-NY-027 13.0 Old Post Rd N Red Hook L859826 P 42.0237536 -73.8463211 2015-05-16 12:00:00 obsr2954986 S23476974 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321035037 2021-04-01 11:23:28.992084 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Lewis US-NY-049 13.0 Location H L4611970 P 43.940282 -75.401446 2015-05-18 07:37:00 obsr417887 S23520639 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309943004 2021-03-19 16:19:20.977326 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-04-14 09:00:00 obsr1079517 S22858064 Area P23 EBIRD 45.0 40.4686 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306388905 2021-03-24 19:48:44.880783 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-03-30 08:45:00 obsr2759466 S22600920 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311085843 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-03-22 14:15:00 obsr1555046 S22473740 Traveling P22 EBIRD 45.0 0.402 2.0 1 G1190691 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311173046 2021-03-19 16:08:39.161312 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 College Lodge SUNY L2220962 H 42.3440743 -79.4279337 2015-04-19 07:55:00 obsr2497657 S22940137 Traveling P22 EBIRD 106.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315383452 2015-05-03 16:07:37 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-03 07:28:00 obsr1044068 S23203298 Traveling P22 EBIRD 85.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302590195 2021-05-10 13:35:55.973042 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Schuyler US-NY-097 13.0 Catharine Creek WMA--Rock Cabin Rd. L1359885 H 42.369661 -76.8471749 2015-03-11 17:47:00 obsr2173269 S22308941 Traveling P22 EBIRD 29.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298794047 2021-11-09 21:57:10.550757 11494 species avibase-20C2214E American Kestrel Falco sparverius 4 United States US New York US-NY Ulster US-NY-111 28.0 Red Mill Rd. L3405397 P 41.6481847 -74.2452579 2015-02-21 09:33:00 obsr2919472 S22007569 Incidental P20 EBIRD 2.0 0 G1155116 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294973858 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-04 09:00:00 obsr1160328 S21680359 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295551558 2021-04-01 11:54:40.172593 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius N 4 United States US New York US-NY Richmond US-NY-085 30.0 40.5417x-74.1775 - Feb 8, 2015, 12:36 PM L3346671 P 40.541669 -74.177496 2015-02-08 12:36:00 obsr1958124 S21726170 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318061547 2021-03-19 16:44:35.607263 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Monroe US-NY-055 13.0 Greater Rochester International Airport, Greater Rochester International Airport L3630429 P 43.1166 -77.67333 2015-05-10 10:29:00 obsr2456345 S23354663 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305497159 2021-03-26 06:12:17.833181 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-03-26 08:00:00 obsr479109 S22533754 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306737605 2021-04-01 11:15:31.646886 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-01 09:46:00 obsr1711339 S22628003 Traveling P22 EBIRD 270.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297671565 2021-03-26 06:39:43.334073 505 species avibase-C732CB10 American Black Duck Anas rubripes 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-02-16 15:15:00 obsr2466108 S21909265 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305697291 2021-04-01 11:43:48.927316 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, City Pier L357819 H 42.871907 -77.2725534 2015-03-27 08:30:00 obsr736608 S22549219 Traveling P22 EBIRD 83.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296138103 2021-03-19 16:44:35.607263 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 Unknown Sex, Adult (2) United States US New York US-NY Monroe US-NY-055 13.0 Mill Seat Landfill L3279893 P 43.0631189 -77.9339755 2015-02-11 11:50:00 obsr2504709 S21772012 Stationary P21 EBIRD 110.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302339772 2021-03-24 19:20:44.053843 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 1 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95502 2015-03-10 15:45:00 obsr1830659 S22289420 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303364293 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-15 07:15:00 obsr547602 S22369214 Traveling P22 EBIRD 120.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311186224 2021-04-01 10:57:06.520339 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-04-19 08:21:00 obsr2693145 S22940974 Traveling P22 EBIRD 119.0 1.609 2.0 1 G1225740 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340805511 2021-04-01 11:15:31.646886 456 species avibase-D201EB72 American Wigeon Mareca americana N 2 United States US New York US-NY Kings US-NY-047 Four Sparrow Marsh L510138 H 40.6000729 -73.9085591 2015-05-24 07:09:00 obsr2538893 S24923905 Traveling P22 EBIRD 153.0 4.023 2.0 1 G1399437 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311779027 2021-03-24 20:33:47.533911 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 east hill recreation trail south L2816554 P 42.433197 -76.468891 2015-04-21 08:07:00 obsr241086 S22979124 Traveling P22 EBIRD 28.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316726090 2021-04-01 11:30:42.037277 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 09:00:00 obsr2319444 S23279633 Traveling P22 EBIRD 180.0 3.219 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314363522 2016-09-12 10:37:53 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 10 United States US New York US-NY Cattaraugus US-NY-009 28.0 Gargoyle Park L2835884 P 42.0676099 -78.4688884 2015-04-30 09:00:00 obsr2943524 S23144304 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298321678 2021-03-26 06:07:26.162322 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 39 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-02-18 15:30:00 obsr1210649 S21966550 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317317361 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-08 17:55:00 obsr904434 S23312539 Traveling P22 EBIRD 108.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309751901 2018-08-04 17:09:00 30494 species avibase-240E3390 House Sparrow Passer domesticus 20 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Tschache Pool L99391 H 42.9892318 -76.7711279 2015-04-13 09:49:00 obsr1655171 S22844628 Stationary P21 EBIRD 6.0 2.0 1 G1220003 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310390249 2021-04-01 12:18:57.910168 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY Tompkins US-NY-109 28.0 Goetchius Wetland Preserve (FLLT)--Flat Iron L109054 H 42.3860243 -76.3019298 2015-04-16 08:09:00 obsr1655171 S22888994 Traveling P22 EBIRD 15.0 0.805 4.0 1 G1221710 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322489510 2021-03-19 16:25:42.617988 399 domestic avibase-994AC3D9 Muscovy Duck (Domestic type) Cairina moschata (Domestic type) 4 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-24 07:47:00 obsr822321 S23608978 Traveling P22 EBIRD 254.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306553517 2015-03-31 16:06:20 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 25 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Iroquois NWR--Swallow Hollow Trail L771567 H 43.1254425 -78.3256102 2015-03-31 15:30:00 obsr2939916 S22613915 Traveling P22 EBIRD 34.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311162986 2021-11-01 23:11:19.414929 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Kings US-NY-047 Coney Island Beach & Boardwalk L845817 H 40.5719793 -73.9778996 2015-04-19 08:20:00 obsr2404047 S22939512 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291624714 2021-03-23 16:52:36.900075 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Road L552975 P 40.8179665 -72.5592041 2015-01-17 13:00:00 obsr2654038 S21395162 Traveling P22 EBIRD 150.0 16.093 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295478308 2015-02-07 23:04:17 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Delaware US-NY-025 28.0 NY, Del, 3991 Betty Brook Road L3343067 P 42.3992857 -74.7326826 2015-02-06 12:30:00 obsr2216678 S21720387 Stationary P21 EBIRD 5.0 3.0 1 G1138453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321804685 2021-04-01 11:30:42.037277 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Arthur Ross Pinetum L826628 H 40.7835168 -73.9667 2015-05-21 19:30:00 obsr2277801 S23567804 Historical P62 EBIRD 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304194522 2021-04-01 11:30:42.037277 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 4 United States US New York US-NY New York US-NY-061 East River, Brooklyn Bridge to S.I. Ferry L3339003 H 40.7039737 -74.0059423 2015-03-20 11:32:00 obsr2179748 S22434433 Traveling P22 EBIRD 21.0 1.175 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290426043 2021-03-26 07:20:31.408164 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Suffolk US-NY-103 30.0 Reeves Ave. and Roanoake Ave. vicinity L2691333 H 40.9544584 -72.6921648 2015-01-11 14:00:00 obsr2588479 S21298516 Traveling P22 EBIRD 16.0 0.161 4.0 1 G1106036 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311012647 2015-04-18 18:22:37 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Rensselaer US-NY-083 13.0 Tomhannock Reservoir L213216 H 42.8487622 -73.548707 2015-04-18 11:15:00 obsr979921 S22930290 Traveling P22 EBIRD 30.0 8.047 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314369297 2021-03-19 16:44:35.607263 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-04-30 12:15:00 obsr1962295 S23144642 Traveling P22 EBIRD 45.0 0.805 2.0 1 G1244319 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310839446 2021-03-23 17:00:13.087107 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Tompkins US-NY-109 28.0 Herman Rd. wetlands L1108700 H 42.5157265 -76.3355194 2015-04-07 08:41:00 obsr2683910 S22919364 Traveling P22 EBIRD 11.0 0.322 2.0 1 G1223894 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296197333 2021-03-19 16:08:39.161312 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-02-11 10:10:00 obsr1155621 S21776715 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296117849 2021-03-26 07:20:31.408164 20829 species avibase-B9B272F4 Common Raven Corvus corax 3 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-02-11 08:00:00 obsr2011512 S21770416 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309035397 2021-11-09 22:45:50.145486 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 25 United States US New York US-NY Sullivan US-NY-105 28.0 Roscoe rest area route 17 L3554604 P 41.925983 -74.864085 2015-04-11 10:08:00 obsr979921 S22796911 Stationary P21 EBIRD 5.0 1.0 1 G1214803 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309509606 2021-11-09 00:38:34.069905 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-04-12 11:00:00 obsr2516765 S22827083 Traveling P22 EBIRD 50.0 1.609 3.0 1 G1216022 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298275529 2021-06-01 05:02:49.814488 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 7 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-18 10:15:00 obsr1135516 S21962680 Traveling P22 EBIRD 195.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292027951 2017-08-15 16:58:27 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-01-19 07:20:00 obsr2716320 S21426329 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292644806 2021-03-30 19:43:32.881136 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-01-22 13:00:00 obsr772156 S21495215 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294124969 2021-03-26 06:21:54.883933 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 30 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-31 10:30:00 obsr431494 S21612295 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297008621 2021-11-09 18:44:17.968152 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Dutchess US-NY-027 13.0 Rowe Road feeders L3366463 P 41.965541 -73.780186 2015-02-15 08:50:00 obsr1433400 S21849157 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291522235 2021-03-23 16:52:36.900075 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-01-17 09:45:00 obsr247620 S21387212 Traveling P22 EBIRD 105.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313253553 2021-03-30 19:43:32.881136 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 8 United States US New York US-NY Westchester US-NY-119 30.0 Tarrytown Lakes Park L302456 H 41.0829631 -73.8426401 2015-04-26 17:37:00 obsr1055148 S23075091 Traveling P22 EBIRD 40.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303036613 2021-03-30 19:25:27.212017 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Richmond US-NY-085 30.0 Cameron Lake L1441085 H 40.6004365 -74.0804102 2015-03-14 07:55:00 obsr1893950 S22343525 Traveling P22 EBIRD 10.0 0.322 2.0 1 G1178976 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304509130 2021-11-02 20:32:06.137153 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-03-21 07:17:00 obsr2279567 S22458016 Traveling P22 EBIRD 130.0 0.483 2.0 1 G1188092 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323593729 2017-02-06 15:17:24 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L692296 H 42.8874107 -78.7166119 2015-05-28 13:15:00 obsr2149313 S23677316 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291461025 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 35 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-17 14:40:00 obsr934639 S21382309 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303286108 2021-03-23 17:00:13.087107 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 2 United States US New York US-NY Tompkins US-NY-109 13.0 Burns Rd.--upper L2852650 P 42.4123678 -76.452527 2015-03-15 11:15:00 obsr1655171 S22362667 Traveling P22 EBIRD 30.0 0.322 2.0 1 G1180904 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291765263 2019-07-23 17:27:04 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-18 08:40:00 obsr1124114 S21405914 Traveling P22 EBIRD 180.0 2.414 2.0 1 G1114302 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310077390 2021-04-01 10:55:39.308231 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Times Beach Nature Preserve L811486 H 42.8742747 -78.8825647 2015-04-14 10:20:00 obsr916033 S22867529 Traveling P22 EBIRD 95.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303880899 2021-03-30 19:29:33.633096 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 Unknown Sex, Immature (1) United States US New York US-NY Suffolk US-NY-103 US-NY_780 30.0 Hard's Lake L2061939 P 40.80422 -72.8872 2015-03-18 12:30:00 obsr613775 S22409977 Traveling P22 EBIRD 150.0 3.541 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297126624 2021-03-26 06:29:56.44369 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-15 12:20:00 obsr934639 S21860103 Traveling P22 EBIRD 50.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322608479 2018-08-06 22:30:59 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Delaware US-NY-025 28.0 Emmons Pond Bog Preserve L123020 H 42.4237205 -75.0141896 2015-05-24 06:22:00 obsr1885846 S23615493 Traveling P22 EBIRD 85.0 2.414 2.0 1 G1287857 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315468067 2015-05-09 11:58:16 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 5 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-03 10:10:00 obsr2071643 S23207844 Traveling P22 EBIRD 105.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319659228 2021-03-19 16:10:30.527219 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Chemung US-NY-015 28.0 42.2246x-76.6738 - May 14, 2015, 4:48 PM L3643355 P 42.224625 -76.673782 2015-05-14 16:48:00 obsr2430746 S23444534 Traveling P22 EBIRD 69.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316075182 2021-04-01 10:51:06.899622 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Canadaway Creek Preserve L122937 H 42.47417 -79.36528 2015-05-05 10:49:00 obsr2497657 S23241923 Traveling P22 EBIRD 46.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321120187 2018-08-06 22:30:25 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Whalen Memorial SF L1217557 H 42.1285297 -79.5270681 2015-05-17 12:05:00 obsr2418 S23525487 Traveling P22 EBIRD 55.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312999279 2021-03-30 19:07:52.958398 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 12:15:00 obsr2448957 S23060013 Traveling P22 EBIRD 465.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290764482 2021-03-26 07:53:57.664705 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 1 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-01-12 11:40:00 obsr72341 S21325751 Stationary P21 EBIRD 335.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309454649 2015-04-12 16:02:53 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Chautauqua US-NY-013 13.0 South Ripley, Miller Road L3360057 P 42.21902 -79.75516 2015-04-12 11:30:00 obsr37369 S22823289 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313334445 2021-11-15 03:06:58.889978 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-26 16:59:00 obsr856524 S23080171 Traveling P22 EBIRD 32.0 0.966 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001226 2021-03-26 07:56:20.588749 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 8 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-21 09:00:00 obsr2218212 S23775930 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305882365 2021-11-15 03:06:58.889978 7200 species avibase-49D9148A Great Egret Ardea alba 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-28 13:30:00 obsr2310825 S22562788 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319456413 2021-11-15 03:06:58.889978 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-13 15:40:00 obsr516108 S23432786 Traveling P22 EBIRD 205.0 1.931 4.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310972780 2021-03-30 19:29:33.633096 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Sagg Bridge L505854 H 40.9185757 -72.2912621 2015-04-18 16:05:00 obsr598381 S22927783 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304878548 2022-01-30 05:59:21.134541 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 12 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Feeders Only L1037405 H 40.6580479 -73.9676857 2015-03-23 12:49:00 obsr2313216 S22485134 Stationary P21 EBIRD 10.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294343469 2022-02-17 14:32:23.002448 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 8 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-01 09:40:00 obsr1605975 S21629548 Traveling P22 EBIRD 95.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295399597 2021-12-10 08:21:29.396662 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 4 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-07 11:00:00 obsr258431 S21713991 Traveling P22 EBIRD 240.0 0.805 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289944067 2021-03-26 06:29:56.44369 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-01-07 07:30:00 obsr2449897 S21259365 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323351943 2021-03-19 16:25:42.617988 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-27 11:35:00 obsr2769235 S23662945 Traveling P22 EBIRD 103.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293926965 2021-11-09 20:12:16.773384 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 Female, Adult (2); Male, Adult (2) United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-01-29 14:04:00 obsr1912104 S21596646 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310447931 2021-11-09 18:31:39.191483 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Dutchess US-NY-027 28.0 Depot Hill L224581 H 41.5702552 -73.6727579 2015-04-16 11:00:00 obsr1732267 S22892747 Traveling P22 EBIRD 62.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310058926 2021-11-09 19:57:48.990233 406 species avibase-27B2749A Wood Duck Aix sponsa 4 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-14 14:00:00 obsr1121454 S22866199 Stationary P21 EBIRD 120.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304346882 2021-03-19 16:29:59.503892 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 Female, Adult (2); Male, Adult (3) United States US New York US-NY Jefferson US-NY-045 13.0 Kelsey Creek, Watertown L273304 H 43.9906455 -75.9170911 2015-03-19 09:00:00 obsr585290 S22446010 Traveling P22 EBIRD 480.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312831604 2015-04-25 14:32:32 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 10 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Bird Song Trail L290845 H 43.0202323 -77.5809949 2015-04-25 14:05:00 obsr934639 S23050024 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324390049 2018-08-06 22:31:17 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_1726 13.0 Duck Lake L3047142 P 43.1493445 -76.6843987 2015-05-28 07:45:00 obsr2050665 S23733182 Traveling P22 EBIRD 75.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295852352 2015-02-09 18:33:49 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-02-09 16:55:00 obsr1958124 S21749263 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305261477 2021-11-15 03:06:58.889978 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-25 11:30:00 obsr93451 S22515370 Traveling P22 EBIRD 120.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302917697 2021-03-23 17:00:13.087107 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 3 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-13 17:23:00 obsr1696616 S22333685 Traveling P22 EBIRD 40.0 0.563 2.0 1 G1178129 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317433594 2021-03-30 19:13:38.458673 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-09 07:42:00 obsr195244 S23319825 Traveling P22 EBIRD 81.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317737257 2021-11-09 18:12:46.706914 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N X United States US New York US-NY Dutchess US-NY-027 13.0 Franklin D. Roosevelt National Historic Site L1283015 H 41.7654542 -73.938117 2015-05-09 11:05:00 obsr979921 S23337072 Traveling P22 EBIRD 55.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312769093 2021-11-09 21:48:00.131772 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Ulster US-NY-111 13.0 Franny Reese SP L2657553 H 41.7044358 -73.9565511 2015-04-25 07:30:00 obsr2700041 S23046380 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316686437 2021-11-09 17:43:05.347258 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Dutchess US-NY-027 28.0 Brothers Rd - Depot Hill L1034813 P 41.5944317 -73.6783826 2015-05-04 16:30:00 obsr1732267 S23277439 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291704754 2021-03-30 19:29:33.633096 11371 species avibase-75600969 Northern Flicker Colaptes auratus 5 United States US New York US-NY Suffolk US-NY-103 30.0 Williams - Shore Rd L3300932 P 40.872385 -73.4651577 2015-01-18 08:15:00 obsr1107696 S21401127 Stationary P21 EBIRD 5.0 2.0 1 G1113885 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311779757 2020-04-10 19:07:28 11371 species avibase-75600969 Northern Flicker Colaptes auratus 103 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 09:03:00 obsr2561576 S22979169 Stationary P21 EBIRD 466.0 20.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292812588 2015-01-23 18:33:06 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-01-23 07:15:00 obsr2812831 S21508573 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293775156 2021-03-24 21:10:11.310781 337 species avibase-694C127A Mute Swan Cygnus olor N 3 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-01-28 08:30:00 obsr1664745 S21584590 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308539409 2021-11-09 17:55:37.57866 32952 species avibase-DB20CB6B Cape May Warbler Setophaga tigrina 10 United States US New York US-NY Dutchess US-NY-027 13.0 Ryder Pond L1133987 H 41.8665248 -73.6488891 2015-04-08 15:30:00 obsr1917973 S22760224 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307227266 2021-03-26 06:55:00.227271 6616 species avibase-7E022378 Common Loon Gavia immer 2 United States US New York US-NY Ontario US-NY-069 13.0 Finger Lakes Community College (Ontario Co.) L661673 H 42.8692335 -77.2442722 2015-04-03 13:17:00 obsr1243175 S22664249 Traveling P22 EBIRD 42.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311657573 2021-03-23 17:00:13.087107 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 51 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-04-20 17:23:00 obsr455249 S22971344 Traveling P22 EBIRD 8.0 0.435 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317201143 2021-03-30 19:13:38.458673 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-08 06:32:00 obsr334398 S23305985 Traveling P22 EBIRD 156.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302156703 2018-11-05 19:36:15 681 species avibase-407E2CA8 Common Merganser Mergus merganser 10 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-03-07 09:20:00 obsr2871406 S22268004 Traveling P22 EBIRD 46.0 0.483 4.0 1 G1168660 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294502791 2021-03-26 07:20:31.408164 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 8 United States US New York US-NY Suffolk US-NY-103 30.0 Springs (40 Hog Creek Lane) [ACW] L994020 P 41.0478128 -72.1558146 2015-02-01 08:30:00 obsr598381 S21641966 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322136302 2021-03-26 07:56:20.588749 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-19 09:00:00 obsr2218212 S23589197 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322382033 2021-03-19 16:06:54.047432 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-05-23 obsr1395007 S23602982 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291618011 2021-03-19 16:32:34.732091 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Kings US-NY-047 Van Brunt St. Pier, Red Hook L2656198 H 40.6727793 -74.0177375 2015-01-17 13:05:00 obsr2514491 S21394580 Traveling P22 EBIRD 27.0 0.241 4.0 1 G1112440 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310329711 2021-03-24 19:48:44.880783 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Monroe US-NY-055 13.0 Ellison Park L392124 H 43.1491253 -77.5175571 2015-04-15 18:48:00 obsr1545618 S22884703 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310845629 2021-04-01 12:18:57.910168 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Tompkins US-NY-109 13.0 AviTom44 L3513986 H 42.5797472 -76.5504828 2015-04-18 08:41:00 obsr620377 S22919816 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305889887 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Kings US-NY-047 30.0 Hendrix Creek L821734 H 40.6482804 -73.8749027 2015-03-28 10:45:00 obsr1807494 S22563464 Traveling P22 EBIRD 50.0 0.644 11.0 1 G1195438 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308195104 2021-03-30 19:22:51.561415 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 36 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-04-06 08:00:00 obsr1160328 S22733992 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311897785 2018-08-04 17:11:19 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Erie US-NY-029 13.0 NY - Reinstein Nature Preserve, Cheektowaga L719252 P 42.8876622 -78.7202168 2015-04-19 16:00:00 obsr2965835 S22986830 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307410850 2021-04-01 11:47:43.260314 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 200 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-03 12:00:00 obsr1633923 S22677768 Stationary P21 EBIRD 340.0 2.0 1 G1203977 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299008559 2021-03-26 07:17:57.136956 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Seneca US-NY-099 13.0 Wyers Point and Wyers Point Rd. L285461 H 42.6736408 -76.7156979 2015-02-22 13:15:00 obsr1227417 S22024917 Traveling P22 EBIRD 60.0 6.437 5.0 1 G1156312 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298457736 2018-08-04 16:57:26 406 species avibase-27B2749A Wood Duck Aix sponsa 3 United States US New York US-NY Suffolk US-NY-103 30.0 Quantuck Creek off S Country Rd. L3400763 H 40.8327316 -72.6180303 2015-02-19 16:15:00 obsr1736113 S21979038 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314141262 2021-03-26 06:29:56.44369 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-04-29 07:30:00 obsr1534851 S23130897 Traveling P22 EBIRD 150.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311050869 2021-11-09 18:46:28.051316 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Dutchess US-NY-027 28.0 Blueberry Swamp L3573729 P 41.5662543 -73.5680902 2015-04-18 16:00:00 obsr1058852 S22932703 Traveling P22 EBIRD 45.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299493993 2021-03-26 07:07:10.758746 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-25 06:35:00 obsr1958124 S22064274 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303999295 2021-03-26 06:09:25.361188 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-03-19 07:40:00 obsr879105 S22418820 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312297905 2021-03-23 17:35:23.829899 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 6 United States US New York US-NY Otsego US-NY-077 28.0 Agricultural Field, Colliersville, NY L3584577 P 42.4887508 -74.9710786 2015-04-16 18:00:00 obsr789570 S23013371 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319267536 2021-03-26 07:53:57.664705 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 Male, Unknown Age (2); Female, Unknown Age (2) United States US New York US-NY Livingston US-NY-051 13.0 Groveland, NY L2623278 P 42.7113986 -77.7185619 2015-05-09 09:40:00 obsr1743566 S23422089 Stationary P21 EBIRD 200.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317975166 2019-01-02 12:14:37 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Monroe US-NY-055 13.0 10 Parkview Drive yard birds L690404 P 43.1565179 -77.5146952 2015-05-10 06:28:00 obsr2817239 S23350092 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921894 2021-03-26 07:56:20.588749 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 57 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-26 09:00:00 obsr2218212 S22173340 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298666428 2021-11-09 18:43:18.378649 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 17 United States US New York US-NY Dutchess US-NY-027 13.0 Upton Lake Christian School L3271185 P 41.833243 -73.7613273 2015-02-18 07:30:00 obsr2862523 S21996508 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304165903 2018-08-04 17:02:02 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 4 United States US New York US-NY Kings US-NY-047 BJs Wholesale Club Waterfront (Brooklyn) L3311662 H 40.5917716 -73.9990756 2015-03-20 07:38:00 obsr1821546 S22431880 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309322755 2019-05-07 15:30:03 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Stadlen and Hoyt-Pileated Trail L1498735 H 42.4777154 -76.4481604 2015-04-12 09:14:00 obsr2211210 S22815477 Traveling P22 EBIRD 10.0 0.08 1.0 1 G1215804 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323523004 2018-08-04 17:30:22 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 6 United States US New York US-NY Fulton US-NY-035 14.0 North Rd Condo L3679328 P 43.0990944 -74.656055 2015-05-26 07:10:00 obsr2694889 S23674825 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306902737 2021-03-19 16:19:20.977326 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 5 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-04-01 10:15:00 obsr1079517 S22639936 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309977155 2021-03-19 16:19:20.977326 31268 issf avibase-95F9C840 Purple Finch Haemorhous purpureus Purple Finch (Eastern) Haemorhous purpureus purpureus 23 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2146060 H 42.756017 -78.862009 2015-04-14 12:13:00 obsr488746 S22860425 Stationary P21 EBIRD 39.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317236894 2015-07-19 10:30:31 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Finch Hollow Nature Center L1006547 H 42.1610683 -75.9833262 2015-05-08 14:30:00 obsr1889889 S23308013 Traveling P22 EBIRD 90.0 2.414 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314965258 2022-02-17 14:32:23.002448 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-02 14:25:00 obsr2404047 S23180494 Traveling P22 EBIRD 26.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307430834 2022-02-18 10:47:29.953615 6339 species avibase-8535345B Herring Gull Larus argentatus 12 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-04 13:07:00 obsr1062070 S22679072 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322302282 2021-03-19 16:44:35.607263 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-23 15:26:00 obsr334398 S23598213 Traveling P22 EBIRD 44.0 0.483 2.0 1 G1472366 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308693771 2018-08-04 17:08:00 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Westchester US-NY-119 28.0 Brinton Brook Sanctuary L893096 H 41.2268584 -73.8992411 2015-04-07 15:00:00 obsr1832377 S22772079 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302212512 2022-02-17 14:32:23.002448 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 6 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-10 08:32:00 obsr1605975 S22274173 Traveling P22 EBIRD 150.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296386003 2018-08-04 16:56:10 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 65 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-12 17:28:00 obsr1318356 S21793546 Traveling P22 EBIRD 33.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288910874 2015-01-03 22:12:01 30494 species avibase-240E3390 House Sparrow Passer domesticus 2000 United States US New York US-NY Suffolk US-NY-103 30.0 Riverhead Sod Farms--Doctors Path L588228 H 40.9613311 -72.6676512 2015-01-03 13:30:00 obsr2883401 S21178040 Incidental P20 EBIRD 2.0 0 G1094330 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293988793 2021-03-24 20:33:47.533911 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-01-30 12:03:00 obsr2211210 S21601472 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288254712 2021-04-01 11:15:31.646886 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 4 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park L3254292 P 40.5829314 -73.9956665 2015-01-01 12:15:00 obsr827632 S21122153 Traveling P22 EBIRD 60.0 1.5 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288535001 2021-11-09 18:18:59.735531 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 5 United States US New York US-NY Dutchess US-NY-027 13.0 Greig Farm L1398659 P 42.0238868 -73.8620972 2015-01-02 14:15:00 obsr671490 S21145588 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315905991 2021-03-19 16:19:20.977326 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 12 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo--Mirror Lake L2809120 H 42.9268351 -78.8632295 2015-05-04 08:00:00 obsr1054748 S23231890 Traveling P22 EBIRD 129.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302905430 2021-03-26 07:30:35.289997 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-13 08:08:00 obsr241086 S22332659 Traveling P22 EBIRD 43.0 0.161 2.0 1 G1178064 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323936636 2021-04-01 11:24:19.637193 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-05-29 10:30:00 obsr1782363 S23704252 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301512630 2021-11-09 18:34:59.455843 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Separate Road, Amenia, NY L2644093 P 41.8733317 -73.6026907 2015-03-07 12:15:00 obsr1917973 S22218243 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311589083 2021-03-26 07:30:35.289997 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-16 07:27:00 obsr1696616 S22966438 Stationary P21 EBIRD 58.0 4.0 1 G1227832 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298158668 2021-04-01 11:54:40.172593 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia N 8 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-02-17 15:58:00 obsr1032565 S21952671 Traveling P22 EBIRD 109.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317261561 2018-08-06 22:29:09 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Broome US-NY-007 28.0 Foley Rd. L2164136 H 42.0452135 -75.9670258 2015-05-08 06:30:00 obsr1044068 S23309453 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315182018 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-02 06:30:00 obsr827632 S23192708 Traveling P22 EBIRD 315.0 4.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294468660 2021-04-01 11:49:53.573686 26109 species avibase-BAC33609 Brown Creeper Certhia americana N X United States US New York US-NY Queens US-NY-081 30.0 Riis Landing L2721494 H 40.5676631 -73.8842089 2015-02-01 14:30:00 obsr2796494 S21639228 Traveling P22 EBIRD 45.0 0.161 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS550608757 2021-04-01 11:14:02.420281 483 species avibase-85625D75 Mallard Anas platyrhynchos 25 United States US New York US-NY Jefferson US-NY-045 13.0 2800–2908 Favret Rd, Cape Vincent US-NY (44.1114,-76.3142) surrogate two for roadsides torn of Cape Vincent L6479881 P 44.111423 -76.314217 2015-03-27 11:45:00 obsr2188450 S40595989 Traveling P22 EBIRD 165.0 56.327 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317096189 2021-03-19 16:25:42.617988 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-05-08 07:35:00 obsr2420101 S23300629 Traveling P22 EBIRD 58.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309848950 2015-04-13 20:33:27 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA, Baldwinsville, NY L1503507 P 43.201116 -76.3066806 2015-04-13 19:40:00 obsr2172593 S22851159 Stationary P21 EBIRD 30.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299925817 2021-11-09 20:12:16.773384 636 species avibase-B77377EE Common Eider Somateria mollissima 2 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-02-27 08:21:00 obsr1912104 S22097462 Stationary P21 EBIRD 43.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320572584 2015-05-17 14:57:01 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Jefferson US-NY-045 13.0 Stony Point: Lighthouse Road near Whitney Road L3650463 P 43.8508465 -76.2344098 2015-05-16 09:05:00 obsr1558090 S23493597 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307171680 2018-08-04 17:05:07 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Schenectady US-NY-093 13.0 Mohawk-Hudson Bike-Hike Trail, Ferry Rd. L2584191 H 42.7876687 -73.8359056 2015-04-02 16:52:00 obsr119187 S22660312 Traveling P22 EBIRD 97.0 1.931 2.0 1 G1202620 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318361970 2018-11-19 00:13:30 32953 species avibase-D00EC2C9 Cerulean Warbler Setophaga cerulea 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-10 13:00:00 obsr1417967 S23370573 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316563482 2021-04-01 10:55:39.308231 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-06 08:15:00 obsr2096529 S23270361 Traveling P22 EBIRD 360.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321640536 2021-03-24 20:11:57.676649 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-03-31 13:10:00 obsr2409011 S23557866 Stationary P21 EBIRD 200.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314542677 2021-04-01 11:24:19.637193 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Monroe US-NY-055 13.0 Lucien Morin Park L1745769 H 43.1666318 -77.5274502 2015-04-30 07:50:00 obsr1534851 S23156132 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298042135 2021-11-09 18:44:19.573201 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Dutchess US-NY-027 13.0 side yard L3393892 P 41.625492 -73.8724512 2015-02-17 08:00:00 obsr2449011 S21942861 Stationary P21 EBIRD 180.0 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312472413 2021-04-01 11:49:53.573686 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Queens US-NY-081 30.0 Ridgewood Reservoir L393007 H 40.688969 -73.8863182 2015-04-24 06:35:00 obsr2574755 S23025404 Traveling P22 EBIRD 39.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288234487 2021-04-01 12:35:52.669792 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--West Shore Trail, Visitor's Center to Lakeview Point L2975271 H 43.0804886 -76.2126732 2015-01-01 16:06:00 obsr2561576 S21120458 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312457287 2021-04-01 11:15:31.646886 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 08:40:00 obsr1601967 S23024348 Traveling P22 EBIRD 295.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294961604 2021-03-22 08:58:29.008072 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-03 obsr2277801 S21679449 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308506483 2021-01-12 19:50:23.677101 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 8 United States US New York US-NY Warren US-NY-113 14.0 Warren County Bikeway--Ash Dr, Queensbury, NY L2588444 P 43.356634 -73.6842245 2015-04-08 11:45:00 obsr1222746 S22757718 Traveling P22 EBIRD 56.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313750767 2021-03-23 17:39:28.36772 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-04-28 09:07:00 obsr1565981 S23106614 Traveling P22 EBIRD 62.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290995220 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-08 07:21:00 obsr259298 S21344190 Stationary P21 EBIRD 31.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS302380502 2015-03-10 22:03:33 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-10 08:08:00 obsr1334267 S22292710 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315746965 2021-12-08 07:58:41.562209 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-04 06:34:00 obsr119481 S23223138 Traveling P22 EBIRD 128.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302458464 2022-03-05 22:03:50.715584 11371 species avibase-75600969 Northern Flicker Colaptes auratus 5 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-11 11:00:00 obsr444155 S22298464 Traveling P22 EBIRD 60.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306888737 2021-03-30 19:13:38.458673 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 8 United States US New York US-NY Monroe US-NY-055 Hamlin, Lake Ontario State Parkway L3531900 P 43.34096 -77.81946 2015-04-02 07:45:00 obsr2211210 S22638859 Traveling P22 EBIRD 7.0 3.219 1.0 1 G1202326 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313581223 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-27 06:30:00 obsr2908667 S23095677 Traveling P22 EBIRD 300.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295478303 2015-02-07 23:04:12 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 2 United States US New York US-NY Delaware US-NY-025 28.0 NY, Del, 1794 Hobart Hill Road L3343062 P 42.40337 -74.704 2015-02-06 12:15:00 obsr2216678 S21720385 Stationary P21 EBIRD 5.0 4.0 1 G1138451 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323492858 2021-11-09 18:11:17.700944 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 6 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook L123705 T 41.78509 -73.69397 2015-05-23 06:00:00 obsr445356 S23672679 Traveling P22 EBIRD 240.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297507882 2021-03-26 07:53:57.664705 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 3 United States US New York US-NY Livingston US-NY-051 13.0 Groveland, NY L2623278 P 42.7113986 -77.7185619 2015-02-16 09:15:00 obsr1743566 S21894233 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310671396 2021-03-24 20:33:47.533911 483 species avibase-85625D75 Mallard Anas platyrhynchos N 5 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--Comstock Knoll L290965 H 42.4498398 -76.4723566 2015-04-17 13:24:00 obsr2255296 S22908222 Traveling P22 EBIRD 25.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309372388 2021-03-22 09:17:32.016297 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Oneida US-NY-065 13.0 Sylvan Beach L509883 H 43.1939135 -75.731163 2015-04-12 10:10:00 obsr666964 S22818508 Stationary P21 EBIRD 21.0 3.0 1 G1215941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320646539 2018-08-04 17:27:49 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Jefferson US-NY-045 US-NY_852 Wellesley Island SP--Nature Center L1058189 H 44.3062533 -76.0333729 2015-05-17 15:57:00 obsr1302604 S23497606 Traveling P22 EBIRD 126.0 3.701 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291100292 2021-03-24 20:53:39.352228 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Albany US-NY-001 13.0 Waldenmaier Road, Delmar L3110574 P 42.5925848 -73.8740015 2015-01-15 09:01:00 obsr1201479 S21352891 Traveling P22 EBIRD 6.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS925755187 2020-05-18 09:47:14 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-11 obsr1012618 S69261145 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312490565 2021-03-24 20:33:47.533911 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-24 07:05:00 obsr2001485 S23026604 Traveling P22 EBIRD 90.0 0.644 3.0 1 G1233636 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322953025 2021-03-26 06:17:19.712573 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-05-25 obsr2096529 S23636836 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310119771 2021-03-26 08:13:27.160698 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 1 United States US New York US-NY Tioga US-NY-107 28.0 Lockheed Martin Pond L2347076 H 42.097235 -76.221474 2015-04-14 07:47:00 obsr1318356 S22870494 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309395458 2015-04-12 13:28:47 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard to Garden L332946 P 42.3697437 -76.3665764 2015-04-12 12:14:00 obsr2074043 S22819861 Traveling P22 EBIRD 70.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309740885 2021-11-02 20:32:06.137153 681 species avibase-407E2CA8 Common Merganser Mergus merganser 8 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-04-13 12:40:00 obsr317968 S22843889 Traveling P22 EBIRD 35.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309134610 2021-04-01 11:15:31.646886 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 07:20:00 obsr1152226 S22803012 Rusty Blackbird Spring Migration Blitz P41 EBIRD 360.0 3.219 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS379411313 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-14 13:20:00 obsr1477666 S28009497 Traveling P22 EBIRD 40.0 0.805 3.0 1 G1634067 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300444623 2021-04-01 10:45:00.916278 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-02-28 11:00:00 obsr407754 S22138192 Traveling P22 EBIRD 120.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306162692 2021-11-09 20:53:17.759253 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Rockland US-NY-087 30.0 Nanuet L1293607 P 41.0931306 -74.0298271 2015-03-29 18:15:00 obsr1932005 S22583654 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309043357 2022-02-18 10:47:29.953615 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-11 10:24:00 obsr1062070 S22797415 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303558799 2015-03-16 17:32:57 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Suffolk US-NY-103 30.0 Arshamomaque Preserve L273407 H 41.0956498 -72.3911698 2015-03-16 16:36:00 obsr2485753 S22384841 Traveling P22 EBIRD 56.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299016401 2019-02-02 17:17:05 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-02-22 13:00:00 obsr1135516 S22025604 Traveling P22 EBIRD 60.0 4.828 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312769062 2021-11-09 21:48:00.131772 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Ulster US-NY-111 13.0 Franny Reese SP L2657553 H 41.7044358 -73.9565511 2015-04-25 07:30:00 obsr2700041 S23046380 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761743 2021-03-26 07:56:20.588749 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 17 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-24 09:00:00 obsr2218212 S22629534 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292990856 2021-11-15 03:06:58.889978 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-24 11:20:00 obsr585997 S21522399 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320916883 2021-04-01 11:30:42.037277 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-18 09:15:00 obsr1668936 S23513126 Traveling P22 EBIRD 70.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321542812 2021-03-24 19:23:17.886063 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 The Farm L3377073 P 42.9586268 -76.4751756 2015-04-29 15:45:00 obsr2639433 S23551676 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312987249 2021-04-01 11:30:42.037277 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 15:00:00 obsr2369927 S23059302 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303212597 2021-03-26 07:07:10.758746 616 species avibase-25C94A8F Greater Scaup Aythya marila 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-03-15 09:11:00 obsr1958124 S22356911 Traveling P22 EBIRD 4.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291288765 2021-11-09 19:43:18.424387 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Orange US-NY-071 28.0 Irus Rd. L2022849 P 41.3408604 -74.4497108 2015-01-16 07:40:00 obsr1665312 S21368561 Traveling P22 EBIRD 100.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290406444 2020-04-10 19:37:26 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Madison US-NY-053 28.0 US-NY-New Woodstock-2949 E Rd L3284296 P 42.860887 -75.854162 2015-01-11 09:32:00 obsr2950436 S21293595 Stationary P21 EBIRD 5.0 3.0 1 G1105119 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS313457818 2021-03-30 19:29:33.633096 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 8 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 USFWS_636 Elizabeth A. Morton NWR L208927 H 40.9909126 -72.3699903 2015-04-26 08:00:00 obsr2846902 S23088321 Traveling P22 EBIRD 180.0 1.609 10.0 1 G1252981 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297913378 2021-11-09 18:27:18.873475 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 15 United States US New York US-NY Dutchess US-NY-027 13.0 Allen Road yard list, Salt Point L1943130 P 41.8350253 -73.8021156 2015-02-17 07:20:00 obsr2175245 S21931711 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304575760 2017-08-16 16:52:48 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-20 14:30:00 obsr334398 S22462963 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290858593 2017-04-17 13:02:17 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 Unknown Sex, Adult (1) United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-H L3289015 P 40.16753 -73.15285 2015-01-11 15:00:00 obsr800463 S21333321 Traveling P22 EBIRD 60.0 33.523 44.0 1 G1108341 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS318340883 2018-08-06 22:29:26 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Albany US-NY-001 13.0 Normans Kill Preserve East L3632587 P 42.6335856 -73.8022149 2015-05-09 09:30:00 obsr2190222 S23369357 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304830865 2015-05-07 17:03:00 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 3 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-03-23 07:03:00 obsr455249 S22481345 Traveling P22 EBIRD 8.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305027276 2017-08-02 19:52:11 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-03-24 05:55:00 obsr2505956 S22497281 Rusty Blackbird Spring Migration Blitz P41 EBIRD 35.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310600920 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus N 6 United States US New York US-NY Kings US-NY-047 30.0 Dyker Beach Park L1044216 H 40.6123885 -74.0192327 2015-04-17 06:58:00 obsr1189028 S22903730 Traveling P22 EBIRD 61.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316054657 2021-04-01 11:30:42.037277 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis N 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-28 08:47:00 obsr363953 S23240777 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311355543 2021-03-24 20:33:47.533911 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Arrowwood Drive-Tareyton Park L2393851 P 42.4770939 -76.4614749 2015-04-19 17:15:00 obsr620377 S22951160 Traveling P22 EBIRD 27.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324327413 2021-04-01 11:30:42.037277 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata N 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Great Hill L559908 H 40.7969094 -73.9588827 2015-05-31 10:00:00 obsr1706920 S23728989 Traveling P22 EBIRD 45.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300316335 2021-03-26 06:29:56.44369 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-01 11:48:00 obsr934639 S22129417 Traveling P22 EBIRD 130.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324563839 2015-06-01 23:41:08 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Broome US-NY-007 28.0 917 grant street L1861629 P 42.1114312 -76.0806034 2015-05-05 10:00:00 obsr1947568 S23744770 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305905470 2021-04-01 12:32:15.282601 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-28 12:30:00 obsr1489009 S22564764 Traveling P22 EBIRD 120.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297941575 2021-03-26 07:30:35.289997 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 8 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-02-17 08:45:00 obsr1655171 S21934226 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298817646 2016-01-25 18:00:10 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Ontario US-NY-069 13.0 Taft Rd. X Wesley Rd. (N end), West Bloomfield L827467 H 42.8850314 -77.5301079 2015-01-24 17:15:00 obsr2955569 S22009548 Stationary P21 EBIRD 20.0 4.0 1 G1133881 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS550099815 2021-08-07 08:49:17.844936 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Warren US-NY-113 14.0 Harrisburg Rd L6480465 P 43.4401673 -74.0242481 2015-01-29 obsr455725 S40555808 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320435528 2021-03-24 20:58:04.794277 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Soncody Road (between Albany and Foster) L2875073 P 42.9502624 -75.1736069 2015-05-16 18:30:00 obsr1680059 S23486399 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307077190 2021-03-30 19:13:38.458673 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Cranberry Pond, Greece L139798 H 43.3003006 -77.6968002 2015-04-02 16:10:00 obsr408487 S22653452 Stationary P21 EBIRD 20.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS298429287 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-18 08:00:00 obsr2207991 S21976440 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303656449 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 Female, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-03-16 09:30:00 obsr1245041 S22392275 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314481861 2018-12-15 15:57:31 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 28.0 Beezamer L2957441 P 42.3907709 -76.407305 2015-04-30 17:50:00 obsr140280 S23152204 Traveling P22 EBIRD 60.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314163461 2021-03-19 16:02:45.308962 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-29 18:30:00 obsr800690 S23132328 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289136005 2021-03-23 17:00:13.087107 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-04 08:00:00 obsr241086 S21195667 Traveling P22 EBIRD 15.0 0.322 6.0 1 G1095928 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310602945 2021-03-24 19:27:13.077399 32952 species avibase-DB20CB6B Cape May Warbler Setophaga tigrina 2 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Elmira-183-291 County Rd 55 L3569489 P 42.114269 -76.907853 2015-04-17 08:05:00 obsr1092576 S22903862 Traveling P22 EBIRD 10.0 0.805 3.0 1 G1222651 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315262925 2021-04-01 11:30:42.037277 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-02 07:30:00 obsr717528 S23197215 Traveling P22 EBIRD 360.0 6.0 3.0 1 G1248853 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292911784 2021-03-23 16:39:03.255227 303 species avibase-B59E1863 Canada Goose Branta canadensis 40 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-24 12:53:00 obsr1958124 S21516482 Traveling P22 EBIRD 9.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321434887 2021-03-19 16:54:27.713469 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-05-20 06:45:00 obsr286403 S23545356 Traveling P22 EBIRD 135.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294007661 2021-04-01 12:26:53.827486 7429 species avibase-1327AC55 Osprey Pandion haliaetus 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-01-30 14:45:00 obsr2186523 S21603025 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298489835 2021-04-01 12:32:15.282601 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-02-19 08:00:00 obsr1160328 S21981624 Area P23 EBIRD 120.0 30.3514 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301254693 2021-03-30 06:01:28.020715 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 1 United States US New York US-NY Suffolk US-NY-103 30.0 Avon Lake, Amityville L3265581 H 40.6748285 -73.4134072 2015-03-06 17:15:00 obsr544268 S22198027 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683519 2018-08-04 16:53:08 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-11 12:20:00 obsr67057 S21319413 Stationary P21 EBIRD 15.0 12.0 1 G1105496 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303822850 2021-04-01 11:54:40.172593 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-03-15 09:00:00 obsr666331 S22405213 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322433947 2015-05-24 08:28:12 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 2 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-05-24 07:52:00 obsr1792012 S23605953 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310263961 2021-04-01 11:54:40.172593 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-15 16:45:00 obsr1958124 S22880059 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325020993 2015-09-13 11:57:51 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-31 09:35:00 obsr1079517 S23777446 Area P23 EBIRD 35.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309350655 2021-03-26 07:30:35.289997 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Research Ponds Unit II (restricted access) L266582 H 42.5034956 -76.4374457 2015-04-12 10:36:00 obsr1655171 S22817223 Stationary P21 EBIRD 29.0 2.0 1 G1219984 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317448653 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-09 07:17:00 obsr1189028 S23320700 Traveling P22 EBIRD 108.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313358825 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-26 09:30:00 obsr2938039 S23081613 Traveling P22 EBIRD 135.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293757252 2021-03-26 06:21:54.883933 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 40 United States US New York US-NY Kings US-NY-047 30.0 Home L468661 P 40.6361565 -73.9647943 2015-01-27 09:20:00 obsr187432 S21583314 Stationary P21 EBIRD 420.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318678576 2021-03-19 16:32:34.732091 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 18:30:00 obsr454647 S23387899 Traveling P22 EBIRD 60.0 1.0 6.0 1 G1265606 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314480294 2015-04-30 21:33:52 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-29 13:45:00 obsr72341 S23152096 Stationary P21 EBIRD 195.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309317200 2021-03-23 17:00:13.087107 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 50 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-12 08:41:00 obsr2211210 S22815125 Traveling P22 EBIRD 16.0 0.016 1.0 1 G1215803 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308814594 2021-04-01 12:32:15.282601 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-10 08:12:00 obsr2574755 S22781256 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299831021 2021-04-01 12:18:57.910168 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Milliken Station L99617 H 42.59868 -76.6335418 2015-02-27 08:13:00 obsr1655171 S22090532 Traveling P22 EBIRD 57.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321597130 2021-03-26 07:56:20.588749 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-17 13:30:00 obsr391865 S23555107 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297587853 2015-02-16 13:38:48 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 3 United States US New York US-NY Steuben US-NY-101 28.0 US-NY-Painted Post-3108 Knoll Rd L1826322 P 42.165969 -77.119302 2015-02-16 13:29:00 obsr2537623 S21901513 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306926491 2021-03-26 06:39:43.334073 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-02 09:00:00 obsr800463 S22641831 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311671696 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 14 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-20 15:30:00 obsr1668936 S22972309 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318944659 2021-04-01 12:26:53.827486 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 4 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-05-12 11:44:00 obsr1154 S23403363 Traveling P22 EBIRD 30.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303076147 2019-07-23 17:27:58 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 210 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-14 13:42:00 obsr730231 S22346580 Traveling P22 EBIRD 51.0 1.287 2.0 1 G1179145 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306136011 2021-04-01 12:32:15.282601 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-29 15:38:00 obsr87415 S22581647 Traveling P22 EBIRD 20.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313341233 2021-04-01 11:30:42.037277 32973 species avibase-10C601D3 Bay-breasted Warbler Setophaga castanea 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 08:25:00 obsr2105033 S23080562 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310945719 2021-03-26 07:07:10.758746 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-18 13:22:00 obsr1958124 S22926012 Traveling P22 EBIRD 85.0 2.414 3.0 1 G1224790 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318009288 2021-03-19 16:19:20.977326 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 4 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-10 06:50:00 obsr48167 S23351863 Traveling P22 EBIRD 100.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289591041 2022-01-30 05:59:21.134541 505 species avibase-C732CB10 American Black Duck Anas rubripes 14 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Feeders Only L1037405 H 40.6580479 -73.9676857 2015-01-06 16:15:00 obsr2908667 S21231086 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312600388 2021-11-09 22:38:24.637382 681 species avibase-407E2CA8 Common Merganser Mergus merganser 25 United States US New York US-NY Sullivan US-NY-105 28.0 Kiamesha Lake L1787103 H 41.6720017 -74.6661486 2015-04-24 10:40:00 obsr2219590 S23034959 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316822978 2015-05-26 18:14:05 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-07 10:40:00 obsr1958774 S23285108 Traveling P22 EBIRD 7.0 0.322 2.0 1 G1291702 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321210133 2018-08-06 22:29:30 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Albany US-NY-001 13.0 Backyard L2686875 P 42.7188154 -74.1154861 2015-05-09 17:30:00 obsr1800473 S23531602 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323119647 2021-03-19 16:44:35.607263 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-26 08:10:00 obsr2364166 S23647671 Traveling P22 EBIRD 80.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291497832 2021-04-01 11:24:19.637193 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-01-17 08:41:00 obsr2595828 S21385242 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314674530 2021-04-01 11:30:42.037277 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-01 15:35:00 obsr2574755 S23163790 Traveling P22 EBIRD 52.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303767339 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-17 15:45:00 obsr2750470 S22400764 Traveling P22 EBIRD 120.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316006199 2019-10-17 11:31:36 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-05-04 15:45:00 obsr307268 S23237985 Stationary P21 EBIRD 30.0 1.0 1 G1252667 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316889478 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 12:00:00 obsr2706811 S23288634 Traveling P22 EBIRD 60.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304742817 2021-04-01 11:54:40.172593 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N 1 United States US New York US-NY Richmond US-NY-085 30.0 Bayonne Bridge, Staten Island L302697 P 40.6405201 -74.1429125 2015-03-22 10:05:00 obsr1032565 S22475317 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298768976 2021-03-26 07:07:10.758746 32955 species avibase-41062654 Northern Parula Setophaga americana 40 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-02-21 08:10:00 obsr1958124 S22005535 Stationary P21 EBIRD 21.0 2.0 1 G1155367 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322817930 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-25 08:34:00 obsr1243175 S23628365 Traveling P22 EBIRD 45.0 0.644 1.0 1 G1289062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298718168 2021-03-24 05:37:45.927792 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 18 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-02-21 09:49:00 obsr1603345 S22001391 Traveling P22 EBIRD 18.0 0.483 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310756504 2021-03-26 06:39:43.334073 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 obsr2277801 S22913973 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303661511 2017-08-16 02:23:57 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-14 11:35:00 obsr2887137 S22392657 Stationary P21 EBIRD 10.0 3.0 1 G1183168 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309409901 2015-04-12 14:10:44 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-04-12 10:33:00 obsr1334267 S22820804 Traveling P22 EBIRD 48.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428663 2015-01-17 12:04:54 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Broome US-NY-007 28.0 Treadwell Rd. L3297707 P 42.20824 -75.9356546 2015-01-15 12:30:00 obsr998593 S21379674 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307661765 2021-11-09 19:56:29.393767 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Orange US-NY-071 28.0 My spot L3350343 P 41.2308311 -74.3717122 2015-03-28 09:00:00 obsr1603513 S22695023 Stationary P21 EBIRD 195.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321274500 2021-03-23 17:26:08.495143 505 species avibase-C732CB10 American Black Duck Anas rubripes N 12 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-19 11:30:00 obsr706483 S23535421 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317148147 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 05:45:00 obsr1433400 S23303280 Traveling P22 EBIRD 180.0 4.619 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310485947 2021-04-01 12:32:15.282601 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-07 11:02:00 obsr1828047 S22895748 Traveling P22 EBIRD 90.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290188590 2021-03-30 19:29:33.633096 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Suffolk US-NY-103 US-NY_766 30.0 Caumsett SP L259743 H 40.9308721 -73.4720876 2015-01-10 12:00:00 obsr16685 S21279156 Traveling P22 EBIRD 75.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299615487 2021-03-30 19:43:32.881136 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-25 11:30:00 obsr1832377 S22074059 Stationary P21 EBIRD 25.0 2.0 1 G1159867 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308057488 2021-04-01 11:30:42.037277 16788 species avibase-0A76713F Couch's Kingbird Tyrannus couchii X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-04-05 17:25:00 obsr2072398 S22723112 Stationary P21 EBIRD 29.0 3.0 1 G1208360 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301161185 2021-03-26 07:30:35.289997 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-03-05 10:00:00 obsr2137468 S22190662 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321434897 2021-03-19 16:54:27.713469 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-05-20 06:45:00 obsr286403 S23545356 Traveling P22 EBIRD 135.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302145545 2021-04-01 12:14:19.266649 447 species avibase-C235A4D7 Gadwall Mareca strepera 3 United States US New York US-NY Suffolk US-NY-103 Montauk - L. Montauk CG Station L3391934 P 41.0717162 -71.9343567 2015-03-07 14:40:00 obsr2934754 S22267277 Traveling P22 EBIRD 30.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320386745 2021-03-19 16:08:39.161312 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Cheney Point, Chautauqua Lake L2853116 H 42.1319065 -79.3897203 2015-05-13 08:30:00 obsr2418 S23483763 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310838913 2021-03-26 07:30:35.289997 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 30 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-17 07:04:00 obsr2683910 S22919328 Traveling P22 EBIRD 70.0 0.644 2.0 1 G1223891 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753277 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY New York US-NY-061 30.0 Bleecker Playground L3238741 H 40.7363767 -74.0055963 2015-01-03 12:15:00 obsr128156 S21163267 Stationary P21 EBIRD 5.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS295390965 2021-04-01 11:54:40.172593 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 2 United States US New York US-NY Richmond US-NY-085 Midland Beach L468389 H 40.571686 -74.0854025 2015-02-07 11:13:00 obsr1958124 S21713341 Traveling P22 EBIRD 12.0 0.322 2.0 1 G1137892 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316937330 2021-03-30 06:01:28.020715 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-07 16:20:00 obsr749440 S23291457 Traveling P22 EBIRD 38.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301332642 2021-03-22 09:17:32.016297 7127 species avibase-13E9F9B4 American Bittern Botaurus lentiginosus N 3 United States US New York US-NY Oneida US-NY-065 13.0 Whitestown L210157 P 43.17351 -75.4187135 2015-03-06 obsr1384380 S22204915 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298343604 2021-04-01 12:32:15.282601 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 16 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-18 13:00:00 obsr1494607 S21968505 Traveling P22 EBIRD 84.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317011698 2021-04-01 11:30:42.037277 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-05-06 12:00:00 obsr1253931 S23295693 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319958889 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-05-15 08:05:00 obsr646558 S23461282 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303620092 2021-03-30 19:13:38.458673 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-23 12:30:00 obsr319738 S22389497 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314417199 2021-11-09 21:05:07.751154 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 Male, Adult (2) United States US New York US-NY Rockland US-NY-087 US-NY_843 28.0 Bear Mountain SP--Doodletown Rd. L316486 H 41.3011999 -73.9869576 2015-04-30 11:00:00 obsr2770696 S23147772 Traveling P22 EBIRD 190.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171838 2021-04-01 12:35:52.669792 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 Female, Adult (1) United States US New York US-NY Onondaga US-NY-067 13.0 Baldwinsville L279746 P 43.1571108 -76.3292023 2015-01-24 08:00:00 obsr1167884 S21536689 Stationary P21 EBIRD 60.0 10.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS324153733 2021-11-09 18:37:59.328981 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays, Cruger Island Road L2826031 P 42.0290854 -73.9156294 2015-05-09 08:22:00 obsr2228949 S23717887 Traveling P22 EBIRD 170.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308525291 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-08 15:45:00 obsr1135516 S22759076 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313979248 2015-04-29 06:28:23 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Essex US-NY-031 13.0 McConley Rd L3599252 P 44.125734 -73.486678 2015-04-28 08:49:00 obsr2420101 S23121118 Traveling P22 EBIRD 160.0 9.656 2.0 1 G1242232 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320605091 2015-05-17 17:23:41 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 US-NY-Oakfield-6322 Co Rd 9 L3482655 P 43.107845 -78.282618 2015-05-17 15:27:00 obsr2588479 S23495340 Stationary P21 EBIRD 13.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300116864 2021-04-01 10:57:06.520339 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Essex US-NY-031 13.0 Middle Road north L2688675 P 44.3413454 -73.3885431 2015-02-28 15:10:00 obsr2769235 S22113469 Traveling P22 EBIRD 20.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301395312 2021-03-26 07:07:10.758746 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Richmond US-NY-085 Mill Creek L1302294 H 40.5198919 -74.2406809 2015-03-07 08:10:00 obsr1958124 S22210010 Stationary P21 EBIRD 10.0 2.0 1 G1169021 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322461329 2021-03-19 16:02:45.308962 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-24 07:00:00 obsr1044068 S23607475 Traveling P22 EBIRD 170.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294811959 2021-04-01 12:11:50.996293 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 35 United States US New York US-NY Seneca US-NY-099 13.0 Geneva Waterfront - Seneca Lake L1187906 P 42.8739513 -76.9593143 2015-02-03 14:30:00 obsr2744341 S21667130 Traveling P22 EBIRD 120.0 3.219 1.0 1 G1134862 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311195702 2015-04-19 10:54:01 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Fulton US-NY-035 14.0 HOME L2580910 P 43.1207486 -74.5033795 2015-04-19 10:30:00 obsr117560 S22941477 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320460638 2021-04-01 10:51:06.899622 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus X United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-05-17 07:01:00 obsr2497657 S23487817 Traveling P22 EBIRD 165.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313105340 2020-05-16 18:11:44 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Otsego US-NY-077 28.0 207 Stoller Hill Rd L3359197 P 42.7034192 -75.0299799 2015-04-26 09:00:00 obsr131845 S23066440 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311061627 2021-04-01 12:14:19.266649 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Avalon Gardens and East Farm Preserve L525770 H 40.9118667 -73.1454921 2015-04-17 15:15:00 obsr1848026 S22933437 Traveling P22 EBIRD 135.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305202330 2021-03-26 08:05:20.615241 8773 species avibase-7AA076EF Barred Owl Strix varia 2 United States US New York US-NY Onondaga US-NY-067 13.0 Skan - 5 E. Lake St L631480 P 42.9468657 -76.4167383 2015-03-25 07:54:00 obsr2279567 S22510684 Stationary P21 EBIRD 63.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288966593 2021-04-01 12:32:15.282601 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-03 08:00:00 obsr352522 S21182176 Traveling P22 EBIRD 180.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323896360 2021-04-01 10:51:50.668112 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Dam L160699 H 42.0864692 -76.8096739 2015-04-18 18:43:00 obsr1587816 S23701589 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320499874 2020-07-27 15:41:41 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 S C2 S United States US New York US-NY Columbia US-NY-021 14.0 Harlem Valley Rail Trail--Copake Falls to Under Mountain Rd. L5803911 H 42.0757413 -73.5303798 2015-05-16 08:25:00 obsr798742 S23489874 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312590061 2021-03-23 16:39:03.255227 616 species avibase-25C94A8F Greater Scaup Aythya marila 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-24 16:05:00 obsr1958124 S23034157 Traveling P22 EBIRD 25.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316133293 2021-04-01 10:47:08.851048 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-05-05 08:55:00 obsr1044068 S23244999 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302564234 2021-03-26 06:29:56.44369 16284 species avibase-33808812 Alder Flycatcher Empidonax alnorum N 1 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-03-10 08:20:00 obsr2449897 S22306942 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298287663 2021-03-26 06:07:45.516082 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-02-18 10:30:00 obsr1659461 S21963700 Traveling P22 EBIRD 300.0 16.093 2.0 1 G1152399 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304637126 2021-03-26 06:29:56.44369 7011 species avibase-534FB490 Northern Gannet Morus bassanus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Manitou Beach, Ontario Blvd. L667384 H 43.3241521 -77.7162155 2015-03-21 15:53:00 obsr730231 S22467349 Stationary P21 EBIRD 8.0 2.0 1 G1188313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310165759 2021-04-01 11:30:42.037277 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-14 06:10:00 obsr1433400 S22873620 Traveling P22 EBIRD 130.0 4.506 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293090956 2021-04-01 11:49:53.573686 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 12 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-01-25 06:10:00 obsr187432 S21530293 Traveling P22 EBIRD 209.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295530023 2021-03-26 07:30:35.289997 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-02-08 08:10:00 obsr2871406 S21724571 Stationary P21 EBIRD 12.0 3.0 1 G1138945 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307227264 2021-03-26 06:55:00.227271 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Ontario US-NY-069 13.0 Finger Lakes Community College (Ontario Co.) L661673 H 42.8692335 -77.2442722 2015-04-03 13:17:00 obsr1243175 S22664249 Traveling P22 EBIRD 42.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300512301 2021-03-26 08:14:04.726922 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Warren US-NY-113 13.0 Shermantown Rd. Portage Trail L960269 H 43.3064521 -73.6251848 2015-03-02 09:03:00 obsr1222746 S22142638 Traveling P22 EBIRD 31.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318667847 2021-12-24 11:02:14.483178 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-11 07:00:00 obsr2504709 S23387325 Traveling P22 EBIRD 130.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS725380888 2021-03-30 19:13:38.458673 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-17 obsr1577090 S53920001 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302856334 2019-07-23 17:27:55 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-12 17:57:00 obsr2700277 S22328858 Stationary P21 EBIRD 42.0 4.0 1 G1177755 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322531872 2021-04-01 11:30:42.037277 7200 species avibase-49D9148A Great Egret Ardea alba 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-24 08:05:00 obsr822430 S23611285 Traveling P22 EBIRD 240.0 4.828 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320334638 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-16 18:15:00 obsr30103 S23481088 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314306491 2022-01-20 09:38:40.245267 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 4 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-04-30 08:45:00 obsr443017 S23141393 Traveling P22 EBIRD 140.0 2.414 20.0 1 G1244118 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289939109 2021-03-26 06:29:56.44369 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus 2 United States US New York US-NY Monroe US-NY-055 13.0 374 Cromwell L1952255 P 43.1326227 -77.5253892 2015-01-03 09:00:00 obsr1463039 S21258944 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322733307 2021-04-01 10:51:06.899622 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 North Harmony State Forest L2805512 P 42.093555 -79.5126696 2015-05-24 07:00:00 obsr2910282 S23623290 Traveling P22 EBIRD 115.0 3.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310056910 2021-03-24 20:21:02.634125 622 species avibase-50566E50 Lesser Scaup Aythya affinis 4 Female, Adult (2); Male, Adult (2) United States US New York US-NY Schoharie US-NY-095 28.0 Franklinton Vlaie L876603 H 42.5407577 -74.2995715 2015-04-14 14:30:00 obsr2268588 S22866068 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321892889 2021-03-26 06:09:25.361188 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-05-22 07:30:00 obsr879105 S23573745 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320639159 2021-04-01 12:32:15.282601 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-05-17 14:30:00 obsr2823378 S23497150 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298417244 2015-02-19 13:48:34 242 species avibase-D3A260BC Snow Goose Anser caerulescens 3 United States US New York US-NY Herkimer US-NY-043 13.0 Peckville Road - West L650164 P 43.1017976 -74.8326874 2015-01-08 08:45:00 obsr2694889 S21974831 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304410613 2015-03-26 09:39:55 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Upper Loop L214381 P 42.3717347 -76.3653982 2015-03-21 13:41:00 obsr2074043 S22450778 Traveling P22 EBIRD 59.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309425645 2015-04-12 14:49:27 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Tioga US-NY-107 28.0 Brick Pond Wetland Preserve L1005329 H 42.1067239 -76.2456751 2015-04-12 14:45:00 obsr1839967 S22821668 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321459741 2016-09-12 10:28:02 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-15 09:30:00 obsr2475075 S23546788 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298054007 2021-04-01 11:49:53.573686 681 species avibase-407E2CA8 Common Merganser Mergus merganser 150 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-02-17 12:58:00 obsr1348614 S21943905 Traveling P22 EBIRD 155.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306616897 2021-04-01 12:31:09.823741 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2000 United States US New York US-NY Livingston US-NY-051 13.0 Home--Geneseo L2865813 P 42.8460168 -77.8164196 2015-03-31 10:30:00 obsr1513934 S22619023 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313014897 2021-03-30 19:29:33.633096 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Bayard Cutting Arboretum SP L715580 H 40.7355391 -73.1629871 2015-04-25 10:00:00 obsr391865 S23060890 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291109883 2020-08-19 23:19:03 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Suffolk US-NY-103 30.0 Uplands Farm Sanctuary L123000 H 40.8574672 -73.4535553 2015-01-15 09:58:00 obsr1107696 S21353831 Traveling P22 EBIRD 36.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305869903 2018-08-04 17:04:32 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Holiday Inn L160744 H 42.08827 -76.79419 2015-03-28 17:18:00 obsr1334267 S22561880 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308979912 2021-03-26 07:52:59.845315 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-10 07:53:00 obsr316199 S22792951 Area P23 EBIRD 75.0 2.59 2.0 1 G1213922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301945374 2021-03-26 07:53:57.664705 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Livingston US-NY-051 13.0 Groveland, NY L2623278 P 42.7113986 -77.7185619 2015-02-16 13:35:00 obsr1743566 S22252054 Stationary P21 EBIRD 215.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310820663 2021-04-01 10:45:00.916278 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 21 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-04-17 17:05:00 obsr538462 S22918099 Traveling P22 EBIRD 141.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305594914 2021-03-31 04:03:32.881251 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 3 United States US New York US-NY Richmond US-NY-085 30.0 Freshkills Park L910281 H 40.5775746 -74.1861379 2015-03-27 10:28:00 obsr155915 S22541356 Traveling P22 EBIRD 140.0 8.047 2.0 1 G2151601 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304499632 2019-07-23 17:27:59 16788 species avibase-0A76713F Couch's Kingbird Tyrannus couchii 4 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-03-15 16:00:00 obsr2084521 S22457285 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311638545 2021-03-26 06:09:25.361188 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 8 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-04-20 06:50:00 obsr646558 S22969930 Traveling P22 EBIRD 20.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309075632 2021-04-01 10:45:00.916278 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.8929476 2015-04-11 08:00:00 obsr2054320 S22799387 Traveling P22 EBIRD 180.0 2.414 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295887483 2021-11-09 21:17:58.494129 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Ulster US-NY-111 28.0 Lippincott Rd., Wallkill L1097498 H 41.6194441 -74.1931401 2015-02-08 11:00:00 obsr890053 S21752293 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322428494 2018-08-06 22:30:58 242 species avibase-D3A260BC Snow Goose Anser caerulescens 3 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-05-23 14:30:00 obsr777630 S23605650 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303513409 2021-03-26 06:55:00.227271 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-03-16 10:48:00 obsr606693 S22381493 Traveling P22 EBIRD 11.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303050999 2021-03-26 06:29:56.44369 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 15 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Yanty Creek Marsh L139805 H 43.3576374 -77.9375696 2015-03-14 09:40:00 obsr934639 S22344669 Traveling P22 EBIRD 50.0 1.609 14.0 1 G1624290 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315406326 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:00:00 obsr2555972 S23204507 Traveling P22 EBIRD 360.0 6.437 20.0 1 G1249497 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310947999 2021-03-23 17:00:13.087107 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 ON C4 ON United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, Farmer's Market pier L1740920 P 42.4512124 -76.5097131 2015-04-18 10:14:00 obsr2307843 S22926246 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321908890 2021-03-26 07:46:52.994574 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-22 06:21:00 obsr2113222 S23574753 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318648743 2021-03-24 20:11:57.676649 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-03-23 07:00:00 obsr2409011 S23386221 Stationary P21 EBIRD 210.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305981616 2021-04-01 12:18:57.910168 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Tompkins US-NY-109 13.0 AviTom44 L3513986 H 42.5797472 -76.5504828 2015-03-29 09:33:00 obsr1655171 S22570266 Stationary P21 EBIRD 23.0 2.0 1 G1197855 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303676789 2021-04-01 12:18:57.910168 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Libe Slope L1483567 H 42.44786 -76.48595 2015-03-16 14:26:00 obsr1581960 S22393910 Stationary P21 EBIRD 26.0 3.0 1 G1183202 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299499136 2015-02-25 08:21:07 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 Unknown Sex, Adult (1) United States US New York US-NY Onondaga US-NY-067 13.0 ManliusCenterRd L3438016 P 43.0578256 -76.0076666 2015-02-25 07:45:00 obsr735566 S22064741 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291109230 2019-01-03 10:54:11 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-A L3288843 P 40.26648 -73.25628 2015-01-11 08:00:00 obsr598381 S21353761 Traveling P22 EBIRD 60.0 12.392 44.0 1 G1108331 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS306425198 2021-11-09 21:05:39.574432 592 species avibase-3072CC16 Redhead Aythya americana 6 United States US New York US-NY Rockland US-NY-087 30.0 Reed Pond, Pfizer Campus L3457488 P 41.0781219 -74.0227246 2015-03-30 12:40:00 obsr2346161 S22603763 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323405582 2021-04-01 10:47:08.851048 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-05-27 06:45:00 obsr646558 S23666600 Traveling P22 EBIRD 20.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292474494 2018-08-04 16:54:48 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY New York US-NY-061 Randalls Island--saltmarsh and backstop 42 vicinity L1781022 H 40.7964152 -73.9152148 2015-01-21 10:00:00 obsr429592 S21481825 Traveling P22 EBIRD 120.0 7.242 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312173491 2021-03-26 06:39:43.334073 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-22 16:00:00 obsr2277801 S23005107 Historical P62 EBIRD 180.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292457519 2021-11-09 20:12:16.773384 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 Female, Adult (1) United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-01-21 11:54:00 obsr1912104 S21480510 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318708994 2021-11-09 18:47:27.824992 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Dutchess US-NY-027 13.0 Rombout Road, Pleasant Valley, NY L3635743 P 41.7126545 -73.8317406 2015-04-27 08:30:00 obsr2786327 S23389647 Traveling P22 EBIRD 165.0 6.437 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295548162 2017-04-18 11:27:41 303 species avibase-B59E1863 Canada Goose Branta canadensis 55 United States US New York US-NY Kings US-NY-047 Brooklyn Army Terminal Pier 4 L2598864 H 40.646519 -74.026074 2015-02-08 12:02:00 obsr152435 S21725894 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320570354 2018-08-06 22:30:03 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Jefferson US-NY-045 Snowshoe Rd. L1564994 H 43.8755609 -76.2282763 2015-05-16 06:00:00 obsr1558090 S23493472 Traveling P22 EBIRD 110.0 1.448 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308668634 2021-11-02 20:32:06.137153 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 15 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-04-09 12:45:00 obsr317968 S22769882 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309526880 2021-03-23 17:37:19.520785 7429 species avibase-1327AC55 Osprey Pandion haliaetus 2 United States US New York US-NY Saratoga US-NY-091 13.0 Old Gick Rd., Saratoga L3110814 P 43.112183 -73.7420368 2015-04-12 17:30:00 obsr2037491 S22828242 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301807882 2015-03-08 17:55:08 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tioga US-NY-107 28.0 42.0158x-76.4659 - Mar 8, 2015, 9:36 AM L3466817 P 42.015829 -76.465923 2015-03-08 09:34:00 obsr2173269 S22242038 Stationary P21 EBIRD 2.0 2.0 1 G1170839 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290374676 2021-03-30 19:40:59.354574 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--Liverpool Marina L837889 H 43.1007479 -76.2093687 2015-01-11 10:34:00 obsr642516 S21294409 Stationary P21 EBIRD 20.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320833687 2021-08-17 17:05:27.916366 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Essex US-NY-031 14.0 Corner of Bull Rock and Shattuck L3026671 P 43.815311 -73.498596 2015-05-16 20:05:00 obsr2398987 S23508685 Traveling P22 EBIRD 70.0 0.966 4.0 1 G1274035 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303278988 2021-04-26 04:57:02.963704 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-15 10:39:00 obsr1605975 S22362168 Traveling P22 EBIRD 130.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315010885 2016-10-17 20:45:46 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 Letchworth SP--Trail No. 16 (Bear Hollow) L3574643 H 42.6712793 -77.9397905 2015-05-01 05:30:00 obsr1962379 S23183062 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308857954 2021-12-08 07:58:41.562209 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-10 10:50:00 obsr2105033 S22784224 Historical P62 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318286313 2018-08-06 22:29:34 337 species avibase-694C127A Mute Swan Cygnus olor 12 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-10 09:05:00 obsr983655 S23366393 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308906589 2021-03-24 19:24:40.212356 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 South Ripley, Miller Road L3360057 P 42.21902 -79.75516 2015-04-10 16:00:00 obsr37369 S22787624 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320373481 2021-03-30 19:07:52.958398 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 09:17:00 obsr150415 S23483050 Traveling P22 EBIRD 170.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293812887 2021-03-26 06:09:25.361188 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-29 08:00:00 obsr879105 S21587553 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299476716 2021-04-01 11:23:42.170869 591 species avibase-1929E1E1 Canvasback Aythya valisineria X United States US New York US-NY Madison US-NY-053 28.0 US-NY-DeRuyter-1385 E Lake Rd L3437709 P 42.793398 -75.877508 2015-02-24 15:20:00 obsr2945658 S22063065 Stationary P21 EBIRD 20.0 2.0 1 G1159215 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304126316 2015-03-19 21:20:30 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven National Laboratory (restricted access) L2808445 H 40.8710034 -72.880066 2015-03-19 18:35:00 obsr1954215 S22428969 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319320618 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 07:30:00 obsr2369927 S23425047 Traveling P22 EBIRD 360.0 9.656 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296260583 2021-03-30 19:29:33.633096 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Suffolk US-NY-103 30.0 Fire Island--Wilderness East L253315 H 40.7325463 -72.8669289 2015-01-12 obsr1954215 S21781847 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308722136 2021-03-23 16:39:03.255227 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 10 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-09 12:55:00 obsr155915 S22774339 Traveling P22 EBIRD 15.0 0.483 2.0 1 G1212573 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309959902 2021-04-01 11:30:42.037277 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-14 06:49:00 obsr1668936 S22859169 Traveling P22 EBIRD 130.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317247086 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 08:10:00 obsr800463 S23308635 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322643354 2018-08-04 17:30:13 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 4 United States US New York US-NY Chemung US-NY-015 28.0 Tanglewood Nature Center and Museum L1134359 H 42.1063498 -76.8769491 2015-05-24 18:29:00 obsr256142 S23617603 Traveling P22 EBIRD 114.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316140682 2021-04-01 12:31:09.823741 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Inlet WMA--south section L674323 H 42.6874829 -77.7060413 2015-05-05 12:12:00 obsr1060479 S23245355 Traveling P22 EBIRD 32.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308012341 2021-03-26 07:07:10.758746 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Richmond US-NY-085 30.0 Goethals Bridge Pond--Observation Platform L884460 H 40.6281787 -74.1741575 2015-04-06 13:19:00 obsr1958124 S22719993 Stationary P21 EBIRD 12.0 2.0 1 G1208439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311314552 2018-08-04 17:10:31 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-19 09:20:00 obsr290506 S22948663 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319715202 2015-05-14 22:05:30 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus-Back Woods L698393 P 42.6703198 -77.6733398 2015-05-14 17:50:00 obsr72341 S23447746 Traveling P22 EBIRD 55.0 2.092 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320730176 2021-03-19 16:19:20.977326 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-17 08:30:00 obsr319738 S23502023 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312350416 2019-01-07 15:34:50 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-04-23 15:15:00 obsr408487 S23016956 Stationary P21 EBIRD 25.0 4.0 1 G1232925 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293377958 2021-03-26 07:07:10.758746 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N 20 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-26 13:08:00 obsr1958124 S21552615 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306093366 2015-05-07 17:00:47 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Cabin L327724 P 42.34994 -76.30034 2015-03-29 13:57:00 obsr455249 S22578356 Stationary P21 EBIRD 133.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312058530 2022-03-05 22:03:50.715584 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 4 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-22 08:50:00 obsr2219590 S22997498 Traveling P22 EBIRD 150.0 4.361 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322147988 2021-08-03 19:42:20.673171 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 06:58:00 obsr1726069 S23589899 Traveling P22 EBIRD 133.0 6.502 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302708592 2021-03-30 19:42:59.457579 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Saratoga US-NY-091 13.0 Hudson River @ Stillwater Dental Center L3442252 P 42.9318286 -73.6646806 2015-03-12 08:20:00 obsr2855945 S22317791 Stationary P21 EBIRD 15.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315097474 2021-03-26 06:29:14.715704 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Madison US-NY-053 13.0 Great Swamp Conservancy L1583231 P 43.0642589 -75.7422093 2015-05-02 08:00:00 obsr2197275 S23187952 Traveling P22 EBIRD 120.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308613721 2021-03-26 08:14:57.071052 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 22 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-04-09 07:20:00 obsr258431 S22765717 Traveling P22 EBIRD 95.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296868690 2022-01-11 08:10:21.3534 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Suffolk US-NY-103 30.0 Yard Birds L1961108 P 40.9286562 -73.1061172 2015-02-14 14:30:00 obsr1848026 S21837473 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313882271 2021-04-01 11:15:31.646886 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 22 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-28 16:57:00 obsr152435 S23115071 Traveling P22 EBIRD 139.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291450386 2021-03-23 16:39:03.255227 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-01-17 09:50:00 obsr1958124 S21381403 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS398702628 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 15:45:00 obsr1552744 S29427797 Traveling P22 EBIRD 49.0 0.241 1.0 1 G1735847 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313077606 2015-04-26 10:17:03 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Severinghaus & West trails westmost intersect (boardwalk) L301739 P 42.4767262 -76.4552146 2015-04-26 07:30:00 obsr2307843 S23064838 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310704856 2021-03-30 19:29:33.633096 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Suffolk US-NY-103 US-NY_842 30.0 William Floyd Estate L3166430 H 40.7677057 -72.8242053 2015-04-12 09:00:00 obsr1592950 S22910430 Traveling P22 EBIRD 150.0 4.023 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309092276 2021-04-01 11:30:42.037277 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-11 09:00:00 obsr2313260 S22800396 Traveling P22 EBIRD 240.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313640040 2019-01-19 10:59:37 23187 species avibase-ACB9D1C6 Purple Martin Progne subis 4 United States US New York US-NY Madison US-NY-053 28.0 Eden Hollow x Eaton Brook Rds L1946107 P 42.8544488 -75.7253265 2015-04-08 20:00:00 obsr2240720 S23099498 Traveling P22 EBIRD 20.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299999217 2018-01-07 20:13:45 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 11 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-02-28 08:06:00 obsr2420101 S22103221 Stationary P21 EBIRD 60.0 2.0 1 G1161612 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296783476 2021-11-09 21:36:59.310849 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Ulster US-NY-111 13.0 rosendale, ny L1465355 P 41.8499692 -74.081765 2015-02-14 07:00:00 obsr187701 S21829848 Traveling P22 EBIRD 360.0 43.452 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308231990 2019-07-23 17:28:15 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 14 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-07 08:50:00 obsr2480606 S22736870 Traveling P22 EBIRD 140.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300453221 2021-03-24 19:48:44.880783 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-03-01 08:28:00 obsr2595828 S22138828 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291622984 2021-03-23 17:00:13.087107 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Tompkins US-NY-109 13.0 Eliana's L1376065 P 42.468118 -76.5266105 2015-01-18 08:45:00 obsr887540 S21395019 Stationary P21 EBIRD 69.0 7.0 1 G1171077 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324262991 2018-08-06 22:31:23 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L692296 H 42.8874107 -78.7166119 2015-05-29 15:10:00 obsr2871264 S23724758 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313743050 2021-03-23 17:00:13.087107 11494 species avibase-20C2214E American Kestrel Falco sparverius 2 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, 212 Tareyton L252844 P 42.4724094 -76.4601243 2015-04-28 07:17:00 obsr2307843 S23106148 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314050301 2021-04-01 10:47:08.851048 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Broome US-NY-007 28.0 Jones Park L1180843 P 42.0166518 -75.9677124 2015-04-29 08:00:00 obsr1826325 S23125443 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312722839 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 18:40:00 obsr609516 S23043420 Traveling P22 EBIRD 75.0 4.184 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299720655 2021-04-01 12:35:52.669792 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-26 11:04:00 obsr2224244 S22081633 Traveling P22 EBIRD 62.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309805833 2021-03-24 20:11:57.676649 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 8 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 07:20:00 obsr979921 S22848259 Stationary P21 EBIRD 605.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323809408 2018-08-06 22:31:23 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 US-NY-Salamanca - 42.1261x-78.7049 - May 29, 2015, 2:50 PM L3682733 P 42.126149 -78.70494 2015-05-29 14:50:00 obsr2588479 S23695616 Traveling P22 EBIRD 95.0 6.437 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304390832 2021-03-26 07:07:10.758746 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 150 United States US New York US-NY Richmond US-NY-085 Lemon Creek Park L508340 H 40.5121298 -74.198581 2015-03-21 09:51:00 obsr1958124 S22449415 Stationary P21 EBIRD 5.0 2.0 1 G1186870 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322316270 2021-12-24 11:02:14.483178 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-23 16:33:00 obsr730231 S23599005 Traveling P22 EBIRD 103.0 2.414 2.0 1 G1286135 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312212523 2015-08-03 08:20:54 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 2 United States US New York US-NY Cortland US-NY-023 28.0 Taylor Valley SF--Mt Roderick Rd. crossing L3195390 H 42.645263 -75.982069 2015-04-22 16:29:00 obsr2279567 S23007789 Traveling P22 EBIRD 33.0 0.563 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290142677 2022-02-18 10:47:29.953615 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-01-10 07:16:00 obsr1062070 S21275193 Stationary P21 EBIRD 146.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312535994 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 07:30:00 obsr717528 S23029622 Traveling P22 EBIRD 280.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317183789 2021-04-01 11:24:19.637193 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Monroe US-NY-055 13.0 University of Rochester--River Front and Pedestrian Bridge L899443 H 43.1310098 -77.6327848 2015-05-08 11:58:00 obsr2678807 S23305084 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314379264 2021-03-24 20:11:19.423282 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana X United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-30 09:35:00 obsr408487 S23145402 Traveling P22 EBIRD 67.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306134648 2021-04-01 12:32:15.282601 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-29 12:45:00 obsr1160328 S22581530 Traveling P22 EBIRD 150.0 24.14 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308208065 2021-04-01 12:18:57.910168 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom34 L3513976 H 42.5522945 -76.3229178 2015-04-07 08:48:00 obsr1696616 S22734948 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299676958 2021-03-30 19:13:38.458673 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N 11 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-02-24 15:20:00 obsr1534851 S22078540 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288812703 2021-04-01 12:14:19.266649 26890 species avibase-94A44032 European Starling Sturnus vulgaris 21 United States US New York US-NY Suffolk US-NY-103 30.0 Sag Harbor Area - Orient CBC L3261248 P 41.0014072 -72.3072052 2015-01-03 07:00:00 obsr2692002 S21168087 Traveling P22 EBIRD 210.0 8.047 2.0 1 G1093503 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307308788 2015-04-04 19:34:16 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-03 18:19:00 obsr1092576 S22670097 Traveling P22 EBIRD 34.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298959925 2021-03-24 19:35:34.045988 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 94 Colonial Drive L1878143 P 43.0350183 -78.9616725 2015-02-22 11:30:00 obsr1187276 S22021011 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310326052 2015-04-16 07:46:02 27616 species avibase-D77E4B41 American Robin Turdus migratorius 32 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip B L3559783 P 40.3217 -73.6129 2015-04-11 08:00:00 obsr238853 S22884444 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308017390 2021-03-26 07:56:20.588749 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 7 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-05 11:29:00 obsr1987335 S22720332 Traveling P22 EBIRD 60.0 1.127 2.0 1 G1208138 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312053927 2021-03-19 16:27:31.421791 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 6 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Feeder Rd. Trail (Genesee Co.) L153041 H 43.1242469 -78.429129 2015-04-22 08:40:00 obsr137150 S22997222 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319654701 2021-03-26 07:52:59.845315 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 3 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-05-14 08:30:00 obsr1680059 S23444255 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309368616 2021-03-26 06:58:34.561206 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Orleans US-NY-073 US-NY_1729 13.0 USFWS_219 US-NY-Medina-11780 Tibbits Rd L1602704 P 43.141436 -78.360281 2015-04-12 11:44:00 obsr2588479 S22818278 Traveling P22 EBIRD 25.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306092230 2021-03-30 12:05:58.533651 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-29 09:50:00 obsr41879 S22578276 Traveling P22 EBIRD 180.0 6.437 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308836585 2021-03-26 07:43:12.52294 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-04-10 09:09:00 obsr2914424 S22782811 Traveling P22 EBIRD 143.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319852686 2021-04-01 11:30:42.037277 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 06:00:00 obsr1433400 S23455639 Traveling P22 EBIRD 210.0 4.844 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317570285 2018-02-01 15:11:46 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor11 L3513953 H 42.5527608 -76.0336385 2015-05-09 13:04:00 obsr620377 S23328143 Stationary P21 EBIRD 7.0 2.0 1 G1272240 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292805788 2021-04-01 12:32:15.282601 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 12 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-01-23 09:00:00 obsr247620 S21508044 Traveling P22 EBIRD 240.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313115948 2021-03-26 07:30:35.289997 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-02-22 11:45:00 obsr2955569 S23067002 Stationary P21 EBIRD 20.0 3.0 1 G1159218 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296787785 2021-03-23 17:00:13.087107 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 50 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-14 10:26:00 obsr2683910 S21830213 Traveling P22 EBIRD 24.0 0.805 2.0 1 G1145774 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306926486 2021-03-26 06:39:43.334073 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-02 09:00:00 obsr800463 S22641831 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311358357 2021-04-01 11:30:42.037277 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-19 07:06:00 obsr642993 S22951339 Traveling P22 EBIRD 200.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322855950 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 07:29:00 obsr1407710 S23630655 Traveling P22 EBIRD 300.0 3.219 14.0 1 G1289314 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305873223 2018-08-04 17:04:31 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 6 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Environmental Center L1476823 H 40.7621022 -73.7535993 2015-03-28 15:00:00 obsr1801902 S22562134 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290003269 2021-06-13 05:18:24.710376 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Kings US-NY-047 30.0 Wyckoff Street Home L903070 P 40.683806 -73.9857732 2015-01-09 12:25:00 obsr2883698 S21264152 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314933170 2021-04-01 10:53:25.818871 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Cortland US-NY-023 28.0 AviCor1 L3513941 H 42.6076737 -75.8867458 2015-05-02 11:42:00 obsr620377 S23178849 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322595431 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-24 17:11:00 obsr1696616 S23614769 Traveling P22 EBIRD 54.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308114793 2021-04-01 12:14:19.266649 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 Mashomack Preserve red and yellow trails L1130683 P 41.0570585 -72.3148012 2015-04-04 09:30:00 obsr1257101 S22727558 Traveling P22 EBIRD 90.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289012726 2021-11-09 21:56:49.555782 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Ulster US-NY-111 28.0 JBNHS Wallkill Valley Raptors L3261415 P 41.7190555 -74.1366005 2015-01-03 08:00:00 obsr727579 S21185923 Traveling P22 EBIRD 300.0 24.14 37.0 1 G1093120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320912523 2021-03-26 07:56:20.588749 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Nassau US-NY-059 30.0 Bayview Avenue, Manhasset Bay L1416657 P 40.7950657 -73.7090564 2015-05-18 11:00:00 obsr676630 S23512927 Traveling P22 EBIRD 35.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308204411 2021-04-01 12:18:57.910168 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 4 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-07 07:20:00 obsr1696616 S22734684 Traveling P22 EBIRD 67.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295660067 2021-04-01 12:18:57.910168 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Tompkins US-NY-109 13.0 Black Diamond Trail, Ithaca (southern end) L3300863 H 42.4524707 -76.517061 2015-02-08 09:22:00 obsr2683910 S21734830 Traveling P22 EBIRD 97.0 3.541 2.0 1 G1139913 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309121518 2021-11-09 21:30:58.952293 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Ulster US-NY-111 13.0 Esopus Bend Nature Preserve L1422709 H 42.069482 -73.9586939 2015-04-11 13:59:00 obsr2214649 S22802181 Traveling P22 EBIRD 74.0 2.414 2.0 1 G1214571 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313287313 2021-11-09 21:35:18.646328 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-26 14:30:00 obsr1110743 S23077208 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290402153 2021-03-26 07:56:20.588749 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 10 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-11 09:43:00 obsr2756208 S21296660 Traveling P22 EBIRD 115.0 0.966 6.0 1 G1105090 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302324333 2021-04-01 12:32:15.282601 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 40 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-10 08:40:00 obsr2416285 S22285953 Traveling P22 EBIRD 270.0 4.828 3.0 1 G1174182 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315311253 2021-12-08 07:58:41.562209 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-03 08:17:00 obsr2206421 S23199545 Traveling P22 EBIRD 253.0 3.219 2.0 1 G1249071 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303101887 2021-04-01 10:47:08.851048 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.0905225 2015-03-14 10:35:00 obsr1626739 S22348511 Traveling P22 EBIRD 46.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312280463 2021-04-01 11:15:31.646886 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 15:00:00 obsr2182516 S23012292 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305440026 2016-11-16 15:26:38 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Schoharie US-NY-095 28.0 42.594816,-74.275308 L3358128 P 42.5944804 -74.2745304 2015-03-25 11:00:00 obsr2161435 S22529407 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305849252 2021-03-23 16:39:03.255227 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus N 15 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-28 08:55:00 obsr1893950 S22560353 Traveling P22 EBIRD 10.0 0.483 2.0 1 G1195295 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314430592 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 16:25:00 obsr822430 S23148653 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307763663 2021-03-26 06:55:00.227271 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-05 15:38:00 obsr606693 S22702016 Traveling P22 EBIRD 15.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312210975 2018-04-16 15:51:00 668 species avibase-9456DEDF Barrow's Goldeneye Bucephala islandica 5 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-21 17:44:00 obsr589593 S23007690 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290554807 2020-09-09 12:39:49 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 15 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--West Shore Trail, Visitor's Center to Lakeview Point L2975271 H 43.0804886 -76.2126732 2015-01-11 10:30:00 obsr643238 S21308809 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322514149 2021-04-01 11:24:19.637193 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-24 06:18:00 obsr334398 S23610310 Traveling P22 EBIRD 51.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314262733 2021-04-01 11:30:42.037277 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 07:30:00 obsr1102914 S23138654 Traveling P22 EBIRD 240.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318987445 2021-04-01 12:32:15.282601 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-12 07:00:00 obsr547602 S23405799 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299662632 2021-03-24 21:06:05.39641 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Onondaga US-NY-067 13.0 US-NY-Baldwinsville-8341 E Mud Lake Rd L3440645 P 43.174212 -76.398002 2015-02-26 08:41:00 obsr2172593 S22077590 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301209968 2021-03-30 19:07:52.958398 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-06 09:00:00 obsr1801902 S22194516 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318600469 2021-11-09 17:58:40.313796 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 3 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-11 07:00:00 obsr763723 S23383557 Traveling P22 EBIRD 180.0 4.731 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293959283 2021-03-26 07:07:10.758746 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-30 08:34:00 obsr1958124 S21599173 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308891418 2018-08-04 17:08:23 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, City Pier L357819 H 42.871907 -77.2725534 2015-04-10 15:28:00 obsr354090 S22786533 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307131807 2021-03-30 19:29:33.633096 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Frank Melville Memorial Park and Mill Pond L1114075 H 40.946195 -73.1156445 2015-04-03 09:30:00 obsr54384 S22657544 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318686164 2021-03-26 06:39:43.334073 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Greywacke Arch L2179946 H 40.7792619 -73.9657742 2015-05-11 08:18:00 obsr1548221 S23388306 Traveling P22 EBIRD 17.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307827219 2021-04-01 11:47:43.260314 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 37 United States US New York US-NY Oswego US-NY-075 13.0 Oneida Lake, Brewerton L2690668 H 43.2368243 -76.1249542 2015-04-05 09:02:00 obsr979921 S22706743 Traveling P22 EBIRD 63.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324130156 2018-08-04 17:30:42 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Stow Fishing Access Site L605934 H 42.1462514 -79.4006959 2015-05-31 06:51:00 obsr1092576 S23716306 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288242905 2017-06-19 21:13:38 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-01-01 16:11:00 obsr1958124 S21121165 Traveling P22 EBIRD 26.0 0.483 2.0 1 G1088885 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289487732 2022-03-06 12:39:33.700954 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-01-06 10:00:00 obsr676630 S21222860 Traveling P22 EBIRD 90.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290721283 2018-08-04 16:53:06 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-11 09:50:00 obsr1534851 S21322482 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301612800 2021-03-26 07:30:35.289997 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-08 08:30:00 obsr59643 S22225873 Stationary P21 EBIRD 45.0 11.0 1 G1170861 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310215547 2021-03-24 21:13:42.099821 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Westchester US-NY-119 30.0 Home L3194169 P 41.1740736 -73.6296415 2015-04-15 11:50:00 obsr2962893 S22876894 Traveling P22 EBIRD 75.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318587993 2015-05-11 12:34:05 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-11 11:00:00 obsr991026 S23382772 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289139369 2015-01-04 19:00:55 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Saratoga US-NY-091 13.0 Mohawk River S of Fulton St L3266626 P 42.7823176 -73.6937772 2015-01-03 11:00:00 obsr2855945 S21195962 Traveling P22 EBIRD 15.0 0.483 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290213586 2021-03-23 16:48:08.60516 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-01-10 15:23:00 obsr887540 S21281315 Stationary P21 EBIRD 9.0 3.0 1 G1106103 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306374645 2021-03-26 06:39:43.334073 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 17 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-30 15:15:00 obsr1135516 S22599761 Traveling P22 EBIRD 105.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290957379 2019-01-03 10:54:11 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 Unknown Sex, Immature (1); Unknown Sex, Adult (1) United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-G L3289012 P 40.06773 -73.02048 2015-01-11 14:00:00 obsr1889800 S21341277 Traveling P22 EBIRD 60.0 26.554 44.0 1 G1108340 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS317719970 2021-03-19 16:29:59.503892 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Jefferson US-NY-045 13.0 Cape Vincent park/boat launch L3627274 P 44.134282 -76.3151711 2015-05-09 13:10:00 obsr1001029 S23336121 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300900789 2021-04-01 10:47:08.851048 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-04 11:10:00 obsr2024068 S22171745 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305267227 2021-04-01 10:55:39.308231 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Erie US-NY-029 13.0 UB North Campus L1560817 P 43.0080012 -78.7856713 2015-03-25 07:45:00 obsr2597186 S22515784 Traveling P22 EBIRD 35.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310084515 2021-03-26 08:05:20.615241 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 3 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-04-14 16:55:00 obsr2964544 S22868016 Traveling P22 EBIRD 30.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305194112 2021-03-26 08:05:20.615241 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata N 1 United States US New York US-NY Onondaga US-NY-067 13.0 Baldwinsville - Mercer Park L3513401 P 43.1584628 -76.3376105 2015-03-09 11:33:00 obsr2279567 S22510005 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316671330 2015-05-06 20:01:52 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Monroe US-NY-055 13.0 Ellison Park L392124 H 43.1491253 -77.5175571 2015-05-06 18:54:00 obsr2774009 S23276571 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294237928 2021-03-26 06:19:47.07548 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 3 United States US New York US-NY Essex US-NY-031 13.0 The Magic Triangle L1798473 P 44.2551202 -73.3731229 2015-01-31 13:00:00 obsr877361 S21621287 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307177466 2016-11-16 15:26:38 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 6 United States US New York US-NY Schoharie US-NY-095 28.0 42.594816,-74.275308 L3358128 P 42.5944804 -74.2745304 2015-04-03 07:30:00 obsr2161435 S22660690 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000834 2021-03-26 07:56:20.588749 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-13 16:00:00 obsr2218212 S23775919 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315739088 2021-03-26 07:56:20.588749 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-04 08:30:00 obsr1693806 S23222742 Traveling P22 EBIRD 180.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293022536 2021-03-26 06:29:56.44369 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-01-23 08:00:00 obsr2449897 S21524702 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295365250 2018-08-04 16:55:44 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-06 11:19:00 obsr2279567 S21711331 Traveling P22 EBIRD 104.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306857343 2021-04-01 12:18:57.910168 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 10 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-01 17:35:00 obsr620377 S22636687 Traveling P22 EBIRD 90.0 1.609 5.0 1 G1202314 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310245184 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 50 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-15 06:30:00 obsr1580729 S22878804 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295456975 2021-03-26 07:56:20.588749 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-07 11:30:00 obsr1668936 S21718736 Traveling P22 EBIRD 90.0 0.805 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289249145 2021-03-19 16:19:20.977326 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 West Side Rowing Club L1822426 P 42.90086 -78.90172 2015-01-04 12:15:00 obsr2155111 S21204043 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299018042 2015-02-22 17:06:12 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Livingston US-NY-051 13.0 Home - Trails - Lima, NY L3408262 P 42.9316676 -77.6076794 2015-02-22 14:15:00 obsr912022 S22025716 Traveling P22 EBIRD 70.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322827857 2018-08-06 22:31:08 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Onondaga Trail L157279 H 43.12222 -78.36889 2015-05-25 11:13:00 obsr2939916 S23628944 Traveling P22 EBIRD 137.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310063647 2021-03-30 19:39:10.250398 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-14 15:00:00 obsr2534001 S22866548 Traveling P22 EBIRD 60.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310595699 2018-02-01 15:11:46 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom31 L3513973 H 42.4442101 -76.280451 2015-04-17 07:04:00 obsr620377 S22903366 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299765046 2021-03-26 06:21:54.883933 6554 spuh avibase-7701002A Sterna sp. Sterna sp. 5 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-26 09:45:00 obsr2363365 S22085441 Traveling P22 EBIRD 75.0 0.805 2.0 1 G1160546 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308436506 2021-04-01 12:26:53.827486 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 3 United States US New York US-NY Albany US-NY-001 13.0 Watervliet Reservoir L452992 H 42.7326396 -73.9795303 2015-04-07 15:00:00 obsr30103 S22752290 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311175530 2018-08-04 17:10:23 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Oswego US-NY-075 13.0 Peter Scott Swamp L248391 H 43.2444498 -76.2705344 2015-04-18 15:12:00 obsr2700277 S22940272 Traveling P22 EBIRD 27.0 0.805 2.0 1 G1225649 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315288687 2017-01-08 08:50:20 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College L1485004 H 44.4375537 -74.2530447 2015-05-03 08:10:00 obsr2376028 S23198489 Traveling P22 EBIRD 35.0 0.644 2.0 1 G1248939 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322740732 2021-03-26 06:11:29.8335 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-05-25 08:36:00 obsr2001485 S23623736 Traveling P22 EBIRD 15.0 1.609 2.0 1 G1289536 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS638259711 2021-03-19 16:19:20.977326 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-09 obsr219053 S47080219 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289658748 2021-04-01 10:58:31.765174 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Franklin US-NY-033 14.0 US-NY-Saranac Lake-35 James St L2839009 P 44.331237 -74.139357 2015-01-07 11:15:00 obsr2630526 S21236559 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297165293 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-15 12:00:00 obsr2534001 S21863700 Traveling P22 EBIRD 60.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313119739 2021-04-01 11:30:42.037277 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 08:20:00 obsr2206421 S23067199 Traveling P22 EBIRD 190.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312360450 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus 13 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 07:13:00 obsr41879 S23017666 Traveling P22 EBIRD 290.0 6.437 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313482388 2021-11-15 03:06:58.889978 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-27 06:19:00 obsr33221 S23089788 Traveling P22 EBIRD 120.0 1.996 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309373983 2018-08-04 17:08:51 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 6 United States US New York US-NY Oneida US-NY-065 13.0 Maple Flats Rd. L808866 P 43.2888396 -75.8489485 2015-04-12 11:45:00 obsr666964 S22818614 Traveling P22 EBIRD 10.0 1.609 3.0 1 G1215938 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305746227 2021-04-28 05:22:52.046239 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-03-28 08:09:00 obsr2404047 S22552969 Traveling P22 EBIRD 231.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310198186 2021-11-09 19:57:48.990233 3441 species avibase-24E39ACD Common Nighthawk Chordeiles minor 5 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-15 11:00:00 obsr2152799 S22875823 Stationary P21 EBIRD 46.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309734308 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-13 06:25:00 obsr1154 S22842737 Traveling P22 EBIRD 165.0 2.414 2.0 1 G1218383 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS350365300 2015-10-28 19:38:50 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Broome US-NY-007 28.0 Private Land - LV L3617659 P 42.210179 -75.877423 2015-05-06 08:15:00 obsr2001289 S23266946 Traveling P22 EBIRD 170.0 2.414 6.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1044135424 2021-03-26 06:39:43.334073 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-03-07 14:30:00 obsr1609486 S78651239 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316039008 2021-03-26 07:56:20.588749 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Nassau US-NY-059 Morgan Memorial Park L1440142 H 40.8649583 -73.6531285 2015-05-05 08:45:00 obsr1296638 S23239895 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304388796 2022-03-05 22:03:50.715584 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-21 08:00:00 obsr2219590 S22449251 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305694412 2021-03-30 19:29:33.633096 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Suffolk US-NY-103 30.0 Wading River Marsh Preserve inlet L3519081 P 40.9648544 -72.8635082 2015-03-26 11:45:00 obsr1954215 S22549006 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316579039 2021-04-01 10:47:08.851048 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-05-06 16:30:00 obsr800690 S23271282 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291723281 2021-04-01 12:18:57.910168 591 species avibase-1929E1E1 Canvasback Aythya valisineria 250 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-18 11:50:00 obsr1062070 S21402625 Stationary P21 EBIRD 151.0 3.0 1 G1114002 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307532279 2021-03-30 19:13:38.458673 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-04 17:00:00 obsr934639 S22685898 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318346400 2015-05-10 20:22:14 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Jefferson US-NY-045 13.0 Pleasant Road woodcock survey 1_2 L3632648 P 44.1241323 -75.6963587 2015-04-29 20:28:00 obsr1558090 S23369662 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314289529 2015-04-30 10:02:28 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Oneida US-NY-065 13.0 Carpenter Road at Drum Creek L3601634 P 43.1669381 -75.6062794 2015-04-30 09:10:00 obsr545221 S23140418 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311002330 2021-04-01 11:30:42.037277 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 14:36:00 obsr2493447 S22929625 Traveling P22 EBIRD 194.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317771395 2021-03-19 16:44:35.607263 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 13.0 Black Creek Park L1175542 H 43.0844986 -77.8050041 2015-05-09 18:27:00 obsr745890 S23338854 Traveling P22 EBIRD 20.0 0.644 2.0 1 G1260035 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318550733 2021-03-19 16:44:35.607263 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-11 10:30:00 obsr334398 S23380848 Traveling P22 EBIRD 10.0 0.048 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311154933 2021-03-24 20:53:39.352228 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-04-19 07:45:00 obsr2798912 S22939005 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308688759 2015-04-09 15:47:32 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Schoharie US-NY-095 28.0 42.4805x-74.2560 - Apr 6, 2015, 11:12 AM L3550996 P 42.480537 -74.256042 2015-04-06 11:12:00 obsr2268588 S22771647 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306935527 2016-01-21 21:56:15 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Chenango US-NY-017 28.0 CR32 & Cahoon Rd L3532330 P 42.3463252 -75.6901789 2015-04-02 11:45:00 obsr1303581 S22642534 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312484844 2018-08-04 17:11:57 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-24 07:03:00 obsr1165633 S23026259 Traveling P22 EBIRD 119.0 5.954 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298198418 2021-04-01 12:11:50.996293 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 2 United States US New York US-NY Seneca US-NY-099 US-NY_764 13.0 89 HW-128 Cayuga_Lake L3396313 P 42.7646879 -76.7691404 2015-02-04 04:16:00 obsr2377251 S21955939 Traveling P22 EBIRD 35.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302673756 2021-03-24 21:06:05.39641 7200 species avibase-49D9148A Great Egret Ardea alba 2 United States US New York US-NY Onondaga US-NY-067 13.0 Old Erie Canal--Schaap Rd to MacDonald Rd L446332 P 43.073653 -76.4304256 2015-03-11 14:14:00 obsr2279567 S22314926 Traveling P22 EBIRD 65.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299499783 2018-01-07 20:13:45 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-02-25 08:02:00 obsr2693145 S22064804 Stationary P21 EBIRD 26.0 2.0 1 G1159351 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292255458 2015-01-21 08:50:14 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail and West Trail intersection shelter L301128 P 42.47736 -76.45312 2015-01-21 07:54:00 obsr2307843 S21443641 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308818066 2021-03-26 07:07:10.758746 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-04-10 08:58:00 obsr1958124 S22781501 Traveling P22 EBIRD 38.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317261571 2018-08-06 22:29:09 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Broome US-NY-007 28.0 Foley Rd. L2164136 H 42.0452135 -75.9670258 2015-05-08 06:30:00 obsr1044068 S23309453 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307367949 2021-03-26 07:30:35.289997 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-04 07:25:00 obsr800690 S22674575 Traveling P22 EBIRD 113.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288779740 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach Bay Islands L1904830 H 40.6113808 -73.5494848 2015-01-03 08:00:00 obsr1832543 S21165409 Traveling P22 EBIRD 360.0 6.437 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310225351 2018-08-04 17:09:15 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 20 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-15 09:30:00 obsr983655 S22877504 Traveling P22 EBIRD 50.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292620069 2021-03-23 17:00:13.087107 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 C C3 C United States US New York US-NY Tompkins US-NY-109 13.0 Eastern Heights dog walk L2954455 P 42.425232 -76.456589 2015-01-20 08:03:00 obsr1318356 S21493520 Traveling P22 EBIRD 12.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312930540 2021-03-23 17:15:00.080143 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 1 United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP, Sodus L712218 H 43.2673188 -77.0297813 2015-04-25 08:07:00 obsr2827982 S23055769 Traveling P22 EBIRD 135.0 1.931 13.0 1 G1235657 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319862824 2021-03-19 16:06:54.047432 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.3458884 -76.710341 2015-05-15 12:10:00 obsr2744341 S23456113 Traveling P22 EBIRD 110.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325079211 2021-11-09 19:57:48.990233 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 2 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-16 11:29:00 obsr334398 S23781641 Traveling P22 EBIRD 166.0 0.402 4.0 1 G1395530 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292218164 2021-04-01 11:49:53.573686 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 700 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-01-20 07:20:00 obsr187432 S21440920 Traveling P22 EBIRD 200.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291532534 2021-04-01 12:39:55.985714 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Rensselaer US-NY-083 13.0 US-NY-East Greenbush-341 Waters Rd L2438595 P 42.598296 -73.68364 2015-01-17 07:30:00 obsr1648329 S21388021 Stationary P21 EBIRD 120.0 2.0 1 G1112727 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310400457 2021-04-01 12:14:19.266649 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Stony Brook University L2350778 H 40.9146933 -73.1215687 2015-04-13 12:49:00 obsr758734 S22889659 Traveling P22 EBIRD 60.0 2.3 2.0 1 G1221831 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298072306 2021-03-26 06:29:56.44369 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Monroe US-NY-055 13.0 backyard feeders L2638641 P 43.0690813 -77.5043084 2015-02-16 09:30:00 obsr1287924 S21945583 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311441516 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-19 15:30:00 obsr1488063 S22956536 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303146164 2021-03-30 19:13:38.458673 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-02 08:23:00 obsr334398 S22352094 Traveling P22 EBIRD 49.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304565280 2021-03-26 06:09:25.361188 32955 species avibase-41062654 Northern Parula Setophaga americana 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-03-22 07:40:00 obsr879105 S22462176 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306371581 2021-03-19 16:02:45.308962 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-30 17:43:00 obsr1764243 S22599540 Traveling P22 EBIRD 21.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295810247 2021-04-01 11:54:40.172593 32757 species avibase-EF47E15D Boat-tailed Grackle Quiscalus major N 10 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-09 14:22:00 obsr1958124 S21745832 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308060141 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-06 12:38:00 obsr1243175 S22723292 Traveling P22 EBIRD 60.0 1.127 2.0 1 G1208381 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303880783 2021-04-01 11:47:43.260314 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-03-18 12:23:00 obsr2224244 S22409969 Traveling P22 EBIRD 34.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318103961 2021-03-19 16:44:35.607263 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Manitou Beach Preserve L2105165 H 43.3211034 -77.7145064 2015-05-10 07:11:00 obsr1124114 S23354016 Traveling P22 EBIRD 170.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318197880 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-10 07:15:00 obsr544268 S23361632 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308145762 2018-08-04 17:06:13 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 100 United States US New York US-NY Chenango US-NY-017 28.0 Rt. 39 Susquehanna Floodplain L3544896 P 42.2976069 -75.4552174 2015-04-06 12:10:00 obsr2211210 S22729827 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS502599563 2021-11-15 03:06:58.889978 7200 species avibase-49D9148A Great Egret Ardea alba N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-28 08:03:00 obsr320411 S37023590 Area P23 EBIRD 555.0 0.0 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305103461 2015-08-25 20:25:54 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 4 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Reservoir L2133605 H 42.4125738 -76.4588892 2015-03-24 15:36:00 obsr887540 S22503172 Traveling P22 EBIRD 68.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317608316 2018-02-01 15:11:46 7011 species avibase-534FB490 Northern Gannet Morus bassanus 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor8 L3513950 H 42.6887382 -76.003704 2015-05-09 14:39:00 obsr620377 S23330144 Stationary P21 EBIRD 11.0 1.0 1 G1272235 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322251614 2021-11-08 14:31:23.798607 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Cayuga US-NY-011 US-NY_1726 13.0 Montezuma (NMWMA)--Howland Island--West L318895 H 43.0781 -76.69762 2015-05-23 12:35:00 obsr2279567 S23595384 Traveling P22 EBIRD 160.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318054255 2021-04-01 11:15:31.646886 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 6 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-09 05:17:00 obsr1821546 S23354251 Traveling P22 EBIRD 73.0 1.609 4.0 1 G1260406 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309318278 2021-04-01 10:53:25.818871 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor10 L3513952 H 42.5109495 -76.0097765 2015-04-12 07:16:00 obsr1318356 S22815200 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324436747 2021-11-09 18:37:59.213196 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY Dutchess US-NY-027 28.0 Cricket Hill Road L2823155 P 41.66373 -73.56602 2015-05-16 15:58:00 obsr2343626 S23736176 Traveling P22 EBIRD 12.0 0.805 2.0 1 G1298915 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302881085 2019-01-27 11:09:05 662 species avibase-FB738385 Bufflehead Bucephala albeola 10 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-12 13:40:00 obsr798742 S22330731 Traveling P22 EBIRD 95.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317459593 2021-03-19 16:10:30.527219 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 6 United States US New York US-NY Chemung US-NY-015 28.0 Tanglewood Nature Center--Personius Woods L826647 H 42.1149378 -76.8878603 2015-05-09 08:01:00 obsr1334267 S23321315 Traveling P22 EBIRD 87.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300026523 2021-03-26 07:30:35.289997 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-02-28 10:25:00 obsr1376641 S22105653 Stationary P21 EBIRD 30.0 5.0 1 G1161713 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314321615 2021-03-30 19:07:52.958398 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:15:00 obsr2152799 S23141976 Traveling P22 EBIRD 240.0 6.437 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323085224 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-23 06:00:00 obsr1481464 S23645508 Stationary P21 EBIRD 240.0 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318666840 2018-08-04 17:11:58 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma National Wildlife Refuge L3635305 P 42.967752 -76.740521 2015-04-24 08:30:00 obsr1780608 S23387247 Traveling P22 EBIRD 300.0 8.047 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307834517 2018-07-15 22:55:44 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Greene US-NY-039 13.0 River Road L7715121 P 42.2855575 -73.7940744 2015-04-05 15:50:00 obsr1181085 S22707222 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314286613 2021-03-26 07:46:52.994574 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-30 06:26:00 obsr2321296 S23140229 Traveling P22 EBIRD 200.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317295601 2021-11-15 03:06:58.889978 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 06:00:00 obsr2927515 S23311345 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314069447 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 12:05:00 obsr41879 S23126639 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303025676 2019-07-23 17:27:57 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 9 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-14 10:17:00 obsr1092576 S22342527 Stationary P21 EBIRD 45.0 2.0 1 G1182540 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308039881 2019-07-23 17:28:15 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 4 United States US New York US-NY Wayne US-NY-117 13.0 Pultneyville Harbor L489590 H 43.2821007 -77.1852019 2015-04-06 14:50:00 obsr2914424 S22721942 Traveling P22 EBIRD 27.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292913778 2019-07-23 17:27:11 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Steuben US-NY-101 13.0 US-NY-Hammondsport-12215 E Lake Rd L3313829 P 42.466944 -77.15971 2015-01-24 11:23:00 obsr1092576 S21516655 Stationary P21 EBIRD 25.0 2.0 1 G1121010 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295829457 2015-02-09 16:23:00 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 1 United States US New York US-NY Ontario US-NY-069 13.0 The Swamp L1660257 P 42.8848133 -77.0413991 2015-02-09 09:25:00 obsr572658 S21747387 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302042126 2021-04-01 12:14:19.266649 662 species avibase-FB738385 Bufflehead Bucephala albeola 12 United States US New York US-NY Suffolk US-NY-103 East Islip Marina Park L2299860 P 40.7061485 -73.189888 2015-03-09 11:30:00 obsr2534001 S22259484 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321189034 2021-03-19 16:29:59.503892 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons 1 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-19 10:28:00 obsr1302604 S23530260 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321099340 2015-05-18 21:53:26 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Bronner Rd 1 L3577293 P 43.0806548 -74.8361421 2015-05-18 14:20:00 obsr592357 S23524323 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303950586 2021-03-24 21:10:11.310781 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-03-14 08:30:00 obsr1664745 S22415220 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292662865 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-01-22 07:52:00 obsr2595828 S21496778 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302264572 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-03-10 08:30:00 obsr247620 S22280479 Traveling P22 EBIRD 270.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288784699 2021-04-01 12:32:15.282601 242 species avibase-D3A260BC Snow Goose Anser caerulescens 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-03 07:08:00 obsr1107696 S21165870 Traveling P22 EBIRD 300.0 9.656 1.0 1 G1095329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302972869 2021-03-30 12:05:58.533651 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-13 11:20:00 obsr1821546 S22338365 Traveling P22 EBIRD 400.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312956016 2021-03-23 17:00:13.087107 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 50 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-25 19:40:00 obsr1418810 S23057372 Traveling P22 EBIRD 45.0 1.0 2.0 1 G1237114 0 1 0 diff --git a/tests/mocked/small2.txt b/tests/mocked/small2.txt new file mode 100644 index 0000000..5fdea5c --- /dev/null +++ b/tests/mocked/small2.txt @@ -0,0 +1,10001 @@ +global_unique_identifier last_edited_date taxonomic_order category taxon_concept_id common_name scientific_name subspecies_common_name subspecies_scientific_name exotic_code observation_count breeding_code breeding_category behavior_code age_sex country country_code state state_code county county_code iba_code bcr_code usfws_code atlas_block locality locality_id locality_type latitude longitude observation_date time_observations_started observer_id sampling_event_identifier protocol_type protocol_code project_code duration_minutes effort_distance_km effort_area_ha number_observers all_species_reported group_identifier has_media approved reviewed reason trip_comments species_comments +URN:CornellLabOfOrnithology:EBIRD:OBS304254986 2021-04-01 12:32:15.282601 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-20 09:00:00 obsr916370 S22439088 Rusty Blackbird Spring Migration Blitz P41 EBIRD 125.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307291169 2021-03-26 06:29:56.44369 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 7 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-04-03 19:05:00 obsr934639 S22668817 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310413829 2021-12-28 15:50:27.785498 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 S C2 S United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-16 08:50:00 obsr606693 S22890532 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295315838 2021-03-26 07:00:33.333856 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-02-06 07:00:00 obsr1982614 S21707097 Traveling P22 EBIRD 200.0 0.998 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315761745 2021-04-01 11:15:31.646886 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-04 10:00:00 obsr263005 S23223925 Traveling P22 EBIRD 165.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306802465 2015-04-01 20:19:29 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-04-01 18:51:00 obsr1764243 S22632640 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292514090 2021-03-30 19:29:33.633096 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris X United States US New York US-NY Suffolk US-NY-103 30.0 Hook Pond L283133 H 40.9461611 -72.1907833 2015-01-21 12:30:00 obsr1160328 S21485128 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314472269 2021-03-30 19:29:33.633096 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-30 15:20:00 obsr2448785 S23151591 Traveling P22 EBIRD 100.0 3.219 2.0 1 G1245153 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308095575 2021-04-01 11:15:31.646886 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 12 United States US New York US-NY Kings US-NY-047 Brooklyn Army Terminal Pier 4 L2598864 H 40.646519 -74.026074 2015-04-06 11:30:00 obsr263005 S22726130 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317721805 2018-08-06 22:29:29 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Albany US-NY-001 28.0 Partridge Run, Kingfisher Rd and trail to lake on west L3627291 P 42.5738644 -74.1397405 2015-05-09 12:50:00 obsr777630 S23336232 Traveling P22 EBIRD 100.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308068005 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-06 08:00:00 obsr2319444 S22723892 Traveling P22 EBIRD 300.0 4.828 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313288259 2021-11-15 03:11:49.507437 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Rockland US-NY-087 30.0 Rockland Lake SP L283611 H 41.1468757 -73.9234741 2015-04-26 12:20:00 obsr1932005 S23077270 Traveling P22 EBIRD 80.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318706136 2021-03-19 16:19:20.977326 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-11 08:40:00 obsr1996460 S23389486 Traveling P22 EBIRD 420.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316179733 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 07:30:00 obsr454647 S23247475 Traveling P22 EBIRD 510.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319860232 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 Male, Adult (2) United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-15 08:05:00 obsr647628 S23455968 Traveling P22 EBIRD 125.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294845242 2015-02-04 08:00:42 406 species avibase-27B2749A Wood Duck Aix sponsa 7 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-02-04 07:40:00 obsr879105 S21669741 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294925738 2015-02-04 17:38:15 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3338626 P 42.693501 -77.711644 2015-02-04 14:41:00 obsr682121 S21676949 Stationary P21 EBIRD 106.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305321249 2021-04-01 11:47:43.260314 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 12 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-25 09:00:00 obsr1633923 S22519960 Stationary P21 EBIRD 540.0 2.0 1 G1192464 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS306091358 2021-03-23 16:52:36.900075 31424 issf avibase-71C8DB80 Common Redpoll Acanthis flammea Common Redpoll (flammea) Acanthis flammea flammea 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-03-29 09:00:00 obsr2852365 S22578209 Rusty Blackbird Spring Migration Blitz P41 EBIRD 210.0 6.437 3.0 1 G1196667 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318121294 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-10 05:55:00 obsr1154 S23357688 Traveling P22 EBIRD 195.0 2.414 3.0 1 G1262140 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292538180 2021-04-01 12:14:19.266649 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Shinnecock Inlet, west L3087424 H 40.8421473 -72.4781388 2015-01-20 13:00:00 obsr777692 S21486920 Stationary P21 EBIRD 90.0 3.0 1 G1521798 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290487891 2021-03-30 19:20:58.73591 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY Orleans US-NY-073 Point Breeze (Orleans Co.) L469835 H 43.3716945 -78.1916691 2015-01-11 16:20:00 obsr2223307 S21303645 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324291608 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-29 11:30:00 obsr2883698 S23726700 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312804104 2018-12-13 12:10:26 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-25 08:00:00 obsr646558 S23048582 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311582106 2015-07-09 21:50:33 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-20 13:11:00 obsr1062070 S22965512 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311150785 2021-04-01 11:58:54.966271 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 4 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-415-609 NY-11C L3505304 P 44.784185 -74.803031 2015-04-18 07:30:00 obsr2211750 S22938688 Stationary P21 EBIRD 120.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313232933 2015-04-26 20:24:12 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Fuller Wetlands L1544410 H 42.4812919 -76.4510491 2015-04-26 15:30:00 obsr1005220 S23073825 Traveling P22 EBIRD 25.0 0.161 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290794888 2017-01-02 17:56:08 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Colonial Springs Golf Club (private) L1847450 H 40.7445934 -73.3891588 2015-01-10 14:00:00 obsr840949 S21327742 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1111218 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322300563 2018-08-06 22:30:55 6616 species avibase-7E022378 Common Loon Gavia immer 3 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College--Visitor Interpretive Center L212478 H 44.4486136 -74.2594002 2015-05-23 09:30:00 obsr2818734 S23598126 Traveling P22 EBIRD 135.0 3.219 5.0 1 G1325875 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300111236 2018-08-04 16:58:25 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven National Laboratory (restricted access) L2808445 H 40.8710034 -72.880066 2015-02-28 11:10:00 obsr1954215 S22112985 Traveling P22 EBIRD 65.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303865757 2021-03-30 19:29:33.633096 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 60 United States US New York US-NY Suffolk US-NY-103 30.0 Patchogue Lake L852362 H 40.7684842 -73.0212522 2015-03-16 14:00:00 obsr1987335 S22408626 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315634111 2021-03-19 16:44:35.607263 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Monroe US-NY-055 13.0 Backyard, Chili, NY L2620623 P 43.120305 -77.7220488 2015-05-03 07:00:00 obsr2084521 S23216941 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315131541 2021-03-26 06:17:19.712573 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-02 07:25:00 obsr736608 S23189820 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320561318 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-15 05:30:00 obsr150865 S23492982 Traveling P22 EBIRD 252.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302055775 2021-03-24 20:16:00.852773 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 4 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-09 16:45:00 obsr496520 S22260650 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314144253 2017-02-03 16:52:32 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-04-26 06:30:00 obsr2475075 S23131089 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317556127 2017-01-09 20:25:08 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Manitou Beach Preserve L2105165 H 43.3211034 -77.7145064 2015-05-09 05:47:00 obsr1545618 S23327374 Traveling P22 EBIRD 14.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317162179 2019-01-07 15:36:23 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Chautauqua US-NY-013 13.0 College Lodge SUNY L2220962 H 42.3440743 -79.4279337 2015-05-08 10:01:00 obsr2497657 S23304057 Traveling P22 EBIRD 151.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309345721 2021-04-01 10:55:39.308231 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 La Salle Park L478203 H 42.89139 -78.89472 2015-04-12 10:25:00 obsr502830 S22816916 Traveling P22 EBIRD 31.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314538293 2021-03-30 19:29:33.633096 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-30 15:20:00 obsr2406624 S23155832 Traveling P22 EBIRD 100.0 3.219 2.0 1 G1245153 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314994936 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 08:30:00 obsr1102914 S23182182 Traveling P22 EBIRD 240.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304248525 2015-03-21 03:00:48 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 25 United States US New York US-NY Cayuga US-NY-011 13.0 Great Gully Rd. Rt. 90 Field L387159 P 42.8147958 -76.7005348 2015-03-20 16:50:00 obsr1696616 S22438584 Traveling P22 EBIRD 1.0 1.609 2.0 1 G1186533 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304041438 2015-03-19 13:20:47 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Genesee US-NY-037 13.0 Genesee County Airport (GVQ) L2486434 H 43.0306505 -78.1733465 2015-03-19 12:37:00 obsr1310178 S22422453 Traveling P22 EBIRD 42.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310648562 2021-03-19 16:08:39.161312 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-04-17 11:41:00 obsr2497657 S22906802 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288804141 2021-03-30 19:29:33.633096 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 8 United States US New York US-NY Suffolk US-NY-103 30.0 Coopers Neck Pond L1314522 H 40.8665357 -72.4021339 2015-01-03 13:40:00 obsr598381 S21167520 Stationary P21 EBIRD 12.0 2.0 1 G1093536 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305850737 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-28 16:08:00 obsr2493447 S22560458 Traveling P22 EBIRD 76.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295660801 2021-04-01 10:45:00.916278 505 species avibase-C732CB10 American Black Duck Anas rubripes N 10 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-02-08 07:45:00 obsr1160328 S21734884 Stationary P21 EBIRD 210.0 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309362099 2021-03-19 15:59:05.496822 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Allegany US-NY-003 28.0 Genesee Valley Greenway, Cuba (Bull St) L3012979 P 42.216602 -78.283251 2015-04-12 10:41:00 obsr955789 S22817907 Traveling P22 EBIRD 66.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316550194 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-06 08:31:00 obsr363953 S23269519 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871571 2021-03-26 07:56:20.588749 11371 species avibase-75600969 Northern Flicker Colaptes auratus 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-31 09:00:00 obsr2218212 S21672051 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303139018 2021-03-24 20:33:47.533911 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail L1498729 H 42.4795201 -76.4551642 2015-03-14 13:10:00 obsr2487430 S22351495 Traveling P22 EBIRD 55.0 0.805 78.0 1 G1179586 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305049136 2021-03-30 19:29:33.633096 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 2 United States US New York US-NY Suffolk US-NY-103 Mt. Sinai Harbor L834919 H 40.9604561 -73.0357361 2015-03-24 09:18:00 obsr2712298 S22499113 Stationary P21 EBIRD 15.0 2.0 1 G1191178 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291101066 2021-03-24 20:33:47.533911 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 S C2 S United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Road (Sanctuary) L1011608 P 42.4772168 -76.4504993 2015-01-15 08:53:00 obsr1062070 S21352965 Traveling P22 EBIRD 24.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291770615 2021-03-30 19:37:33.521815 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Point L929415 P 43.2714248 -76.9817591 2015-01-18 11:00:00 obsr195058 S21406355 Traveling P22 EBIRD 45.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313230219 2015-04-28 19:23:55 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 2 United States US New York US-NY Montgomery US-NY-057 13.0 Yatesville Falls State Forest L1507524 P 42.8673322 -74.4484418 2015-04-26 06:30:00 obsr777630 S23073658 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303036524 2021-03-26 07:07:10.758746 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Richmond US-NY-085 30.0 Arbutus Lake L1096289 H 40.5227091 -74.1783006 2015-03-14 09:25:00 obsr1893950 S22343517 Traveling P22 EBIRD 11.0 0.322 2.0 1 G1178972 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318054793 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 07:00:00 obsr870166 S23354280 Traveling P22 EBIRD 176.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315336593 2021-03-30 06:01:28.020715 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-24 08:20:00 obsr753816 S23200871 Traveling P22 EBIRD 68.0 1.931 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315021353 2015-05-02 17:23:53 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Lewis US-NY-049 14.0 Field east of Lowville Forestry Area L3607549 P 43.8124816 -75.4642725 2015-05-02 11:20:00 obsr979921 S23183636 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317099129 2021-03-26 06:29:56.44369 33049 species avibase-136451CF Yellow-throated Warbler Setophaga dominica 1 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-05-06 15:30:00 obsr1245041 S23300803 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289367761 2021-11-09 20:38:40.141528 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Putnam US-NY-079 28.0 Croton Falls Reservoir, Stoneleigh Ave. overlook L1354697 H 41.3716305 -73.6618434 2015-01-03 07:14:00 obsr1666581 S21213581 Stationary P21 EBIRD 13.0 2.0 1 G1097920 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307556544 2021-03-19 16:14:11.035882 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 7 United States US New York US-NY Cortland US-NY-023 28.0 Tully Lake, south end L508613 H 42.76418 -76.13746 2015-04-04 08:40:00 obsr931232 S22687702 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318571568 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-09 06:30:00 obsr1033228 S23381977 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289594469 2021-11-09 21:56:59.045559 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Ulster US-NY-111 28.0 Wallkill Valley L3272266 P 41.719536 -74.1389608 2015-01-03 08:00:00 obsr1110743 S21231313 Traveling P22 EBIRD 300.0 24.14 35.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292895873 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Monroe US-NY-055 13.0 374 Cromwell L1952255 P 43.1326227 -77.5253892 2015-01-16 11:00:00 obsr1463039 S21515181 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322490956 2021-11-09 19:02:27.638861 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-05-24 09:10:00 obsr1732267 S23609051 Traveling P22 EBIRD 173.0 2.736 1.0 1 G1291337 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294135488 2015-02-01 08:39:57 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Monroe US-NY-055 13.0 Riga, Brew Road L3328795 P 43.05758 -77.93295 2015-01-31 11:05:00 obsr745890 S21613108 Traveling P22 EBIRD 24.0 0.805 2.0 1 G1129980 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290571854 2021-03-26 07:20:31.408164 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Suffolk US-NY-103 30.0 Miller Place, Suffolk County, NY L3286845 P 40.9590301 -73.0179262 2015-01-11 13:00:00 obsr1760429 S21310214 Stationary P21 EBIRD 105.0 3.0 1 G1111156 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS412798759 2021-03-26 08:11:28.0353 7429 species avibase-1327AC55 Osprey Pandion haliaetus X United States US New York US-NY Saratoga US-NY-091 13.0 4 Windy Lane South Glens Falls, NY L2987201 P 43.28493 -73.66279 2015-01-04 obsr2943723 S30288278 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313882191 2019-10-25 16:18:46 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 Gouverneur: Intersection Welch Road & CR 11 L3598359 P 44.3911076 -75.4527283 2015-04-28 05:05:00 obsr1558090 S23115067 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312297739 2015-04-23 12:27:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Cortland US-NY-023 28.0 Dryden, 300-360 New York 392 L3571729 P 42.48674 -76.25348 2015-04-23 06:06:00 obsr1828453 S23013360 Stationary P21 EBIRD 6.0 2.0 1 G1232712 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921293 2021-03-26 07:56:20.588749 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 12 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-06 16:00:00 obsr2218212 S22173316 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295466881 2021-11-09 18:43:49.061486 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Dutchess US-NY-027 28.0 Purgatory Hill L3345412 P 41.5670731 -73.566159 2015-02-07 10:00:00 obsr1058852 S21719480 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292952971 2018-08-04 16:55:09 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-24 13:42:00 obsr2074043 S21519585 Stationary P21 EBIRD 30.0 1.0 1 G1121272 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313209288 2018-08-04 17:12:14 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Richmond US-NY-085 30.0 Neck Creek Preserve L958581 H 40.5964133 -74.1930269 2015-04-25 13:53:00 obsr155915 S23072433 Stationary P21 EBIRD 3.0 3.0 1 G1237318 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312034872 2021-03-23 17:00:13.087107 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Tompkins US-NY-109 13.0 AviTom49 L3513991 H 42.5112342 -76.6349423 2015-04-22 08:56:00 obsr2173269 S22996028 Stationary P21 EBIRD 5.0 3.0 1 G1231225 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309966566 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-14 08:45:00 obsr1289811 S22859652 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295970983 2021-03-26 06:07:45.516082 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-02-10 10:00:00 obsr369788 S21758772 Traveling P22 EBIRD 120.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303419704 2022-03-05 22:03:50.715584 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-15 14:00:00 obsr1545384 S22373409 Traveling P22 EBIRD 75.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292955807 2021-03-24 20:33:47.533911 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 14 United States US New York US-NY Tompkins US-NY-109 13.0 Portland Point Rd. and Overlook L270445 H 42.5285274 -76.5272433 2015-01-24 10:18:00 obsr730231 S21519827 Traveling P22 EBIRD 17.0 0.966 2.0 1 G1121471 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308436499 2021-04-01 12:26:53.827486 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 5 United States US New York US-NY Albany US-NY-001 13.0 Watervliet Reservoir L452992 H 42.7326396 -73.9795303 2015-04-07 15:00:00 obsr30103 S22752290 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305170566 2021-05-10 13:35:55.973042 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 600 United States US New York US-NY Schuyler US-NY-097 13.0 Catharine Creek WMA--Rock Cabin Rd. L1359885 H 42.369661 -76.8471749 2015-03-24 19:09:00 obsr2173269 S22508260 Traveling P22 EBIRD 50.0 0.483 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312804909 2021-04-01 11:15:31.646886 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 20 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 07:25:00 obsr1711339 S23048617 Traveling P22 EBIRD 349.0 5.633 18.0 1 G1235092 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309440357 2018-08-04 17:08:33 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 3 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-11 13:20:00 obsr2154746 S22822396 Traveling P22 EBIRD 130.0 6.437 87.0 1 G1216338 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316531166 2018-08-04 17:14:58 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 16 United States US New York US-NY Herkimer US-NY-043 13.0 Comstock / Military Road L1843319 P 43.1872918 -74.9081396 2015-05-06 07:55:00 obsr1000124 S23268300 Traveling P22 EBIRD 85.0 2.253 3.0 1 G1254760 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS333666768 2021-03-19 16:27:31.421791 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 178 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Mohawk Pool L3816606 P 43.1186217 -78.4204102 2015-04-18 19:45:00 obsr2155111 S24406093 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322741577 2021-11-09 18:09:06.55827 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Dutchess US-NY-027 28.0 Pawling Nature Reserve L122964 H 41.61833 -73.55833 2015-05-25 07:05:00 obsr1732267 S23623791 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318065937 2015-05-10 10:59:06 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Iroquois NWR--Swallow Hollow Trail L771567 H 43.1254425 -78.3256102 2015-05-10 08:02:00 obsr1097423 S23354888 Traveling P22 EBIRD 65.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307519049 2018-08-04 17:05:21 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo X United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-04-04 09:05:00 obsr98313 S22684895 Traveling P22 EBIRD 45.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318395472 2018-08-06 22:29:34 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea X United States US New York US-NY Broome US-NY-007 28.0 Triangle SF L2913510 H 42.3886616 -75.8853455 2015-05-10 08:55:00 obsr1044068 S23372398 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313553303 2021-03-26 06:29:56.44369 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-04-27 13:35:00 obsr934639 S23093944 Traveling P22 EBIRD 80.0 1.207 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311519832 2021-11-09 19:47:29.45622 6408 spuh avibase-E8FAD0BB Larus sp. Larus sp. 2 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Winding Waters Trail (NY) L2393335 H 41.2878143 -74.5339547 2015-04-19 11:15:00 obsr272939 S22961366 Traveling P22 EBIRD 120.0 3.219 5.0 1 G1229263 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310568677 2019-07-24 17:29:37 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 325 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr870166 S22901507 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289248390 2018-08-04 16:52:42 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 2 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-01-04 09:45:00 obsr2827982 S21203979 Traveling P22 EBIRD 20.0 0.805 2.0 1 G1097874 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305101395 2021-03-26 07:46:52.994574 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-03-24 16:00:00 obsr2113222 S22503011 Traveling P22 EBIRD 40.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292024700 2019-07-23 17:27:06 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Jefferson US-NY-045 US-NY_759 13.0 Ray's Bay from Ray's Bay Road L2033164 P 43.8370149 -76.2650621 2015-01-19 00:27:00 obsr1558090 S21426106 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311831646 2021-03-23 17:00:13.087107 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-21 12:15:00 obsr2001485 S22982759 Traveling P22 EBIRD 40.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256003 2021-03-26 06:29:56.44369 5922 species avibase-06B9BD24 Sanderling Calidris alba N 8 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-01-01 08:50:00 obsr2595828 S21122272 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310765120 2021-04-01 11:13:31.816805 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Hamilton US-NY-041 14.0 Indian lake, NY L2115225 P 43.782506 -74.265308 2015-04-17 10:55:00 obsr2177751 S22914545 Traveling P22 EBIRD 360.0 16.093 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292235262 2021-03-26 07:52:59.845315 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-19 07:05:00 obsr1000124 S21442105 Area P23 EBIRD 74.0 2.59 2.0 1 G1119004 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309059727 2021-04-01 12:30:15.438381 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Van Buren St. ,Dolgeville L2827820 P 43.0946402 -74.7678798 2015-04-11 07:47:00 obsr2694889 S22798439 Traveling P22 EBIRD 13.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298194735 2021-03-24 05:37:45.927792 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-02-18 09:20:00 obsr502830 S21955598 Traveling P22 EBIRD 34.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322499474 2018-08-04 17:30:10 7200 species avibase-49D9148A Great Egret Ardea alba 15 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-24 10:42:00 obsr991026 S23609556 Traveling P22 EBIRD 115.0 10.3 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312787078 2021-03-23 16:48:08.60516 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Towpath Rd. L266832 H 43.0038224 -76.7457005 2015-04-25 10:50:00 obsr204036 S23047362 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321954565 2015-05-22 13:00:32 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Genesee US-NY-037 13.0 smith/marsh rd L3631295 P 42.8891191 -78.1497002 2015-05-22 11:33:00 obsr393804 S23577471 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312577886 2021-03-26 07:45:44.030579 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 4 United States US New York US-NY Wyoming US-NY-121 13.0 Silver Lake (Wyoming Co.), south L811463 H 42.6814259 -78.0434418 2015-04-24 10:50:00 obsr660214 S23033192 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305850734 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-28 16:08:00 obsr2493447 S22560458 Traveling P22 EBIRD 76.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292918561 2021-04-01 12:18:57.910168 447 species avibase-C235A4D7 Gadwall Mareca strepera N 5 United States US New York US-NY Tompkins US-NY-109 28.0 Mount Pleasant, east hill L693939 H 42.4591964 -76.3726723 2015-01-24 10:20:00 obsr2724574 S21517031 Traveling P22 EBIRD 10.0 0.805 4.0 1 G1121044 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312474936 2021-04-01 10:55:39.308231 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-04-24 07:20:00 obsr502830 S23025567 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293681636 2015-01-28 10:08:36 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-01-28 09:45:00 obsr666964 S21577207 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306335715 2018-08-04 17:04:47 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 Male, Adult (2) United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-03-30 14:40:00 obsr2908667 S22596717 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306051854 2021-11-09 19:38:27.588139 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Orange US-NY-071 28.0 Circle Drive, Tuxedo, NY L1457834 P 41.188319 -74.1869493 2015-03-29 07:00:00 obsr2346161 S22575182 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307307582 2021-03-30 19:07:52.958398 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-03 17:31:00 obsr2519357 S22670008 Traveling P22 EBIRD 109.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305053486 2021-03-24 19:39:17.849721 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Essex US-NY-031 13.0 Boat Launch on Lake George outlet. L2702253 P 43.822134 -73.427088 2015-03-24 07:05:00 obsr2420101 S22499443 Stationary P21 EBIRD 25.0 2.0 1 G1191200 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871280 2021-03-26 07:56:20.588749 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 7 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-20 16:00:00 obsr2218212 S21672039 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290978405 2021-11-09 18:28:50.133002 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 10 United States US New York US-NY Dutchess US-NY-027 13.0 Home, Millbrook, NY L2119013 P 41.7923452 -73.6592703 2015-01-04 07:00:00 obsr1062217 S21342911 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308467032 2018-08-04 17:05:35 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Cortland US-NY-023 28.0 North Marathon Flats - NYS Rte 11 L3548446 P 42.4717603 -76.0553241 2015-04-05 10:41:00 obsr931232 S22754500 Traveling P22 EBIRD 14.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311453179 2015-04-30 21:12:19 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Tompkins US-NY-109 13.0 Arrowwood Dr. trails L306973 H 42.4787045 -76.4623654 2015-04-19 19:37:00 obsr1655171 S22957270 Traveling P22 EBIRD 5.0 0.322 2.0 1 G1230708 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312761622 2021-04-01 11:30:42.037277 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps N 19 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 10:23:00 obsr2493447 S23045915 Traveling P22 EBIRD 47.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301279858 2021-03-24 19:20:44.053843 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-03-06 16:20:00 obsr1626739 S22199903 Traveling P22 EBIRD 36.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288725096 2015-01-03 16:29:34 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Ontario US-NY-069 13.0 US-NY-Canandaigua-3856-3898 Co Rd 16 L3260902 P 42.836718 -77.282179 2015-01-03 12:30:00 obsr1547947 S21161073 Incidental P20 EBIRD 2.0 1 G1093370 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303594793 2015-03-16 20:20:50 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 8 United States US New York US-NY Cortland US-NY-023 28.0 Route 38 (Cortland Co. segment) L3493591 P 42.4274898 -76.2296963 2015-03-16 13:09:00 obsr1310178 S22387505 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306439581 2021-05-01 05:40:50.213405 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 95 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-28 18:20:00 obsr2796494 S22605100 Traveling P22 EBIRD 120.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306902028 2021-03-24 19:23:17.886063 31591 spuh avibase-B20C6C46 finch sp. Fringillidae sp. X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-04-01 obsr1395007 S22639883 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298096936 2021-03-30 19:13:38.458673 20829 species avibase-B9B272F4 Common Raven Corvus corax N 6 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-02-17 14:00:00 obsr934639 S21947618 Traveling P22 EBIRD 20.0 0.402 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288624126 2015-02-01 08:53:49 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 200 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Hamlin-400-580 Jacobs Rd L3193363 P 43.342882 -77.955051 2015-01-02 16:00:00 obsr2504709 S21153040 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293615396 2021-04-01 11:54:40.172593 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-01-23 09:00:00 obsr666331 S21572115 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314664313 2021-11-15 03:06:58.889978 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-01 08:30:00 obsr139757 S23163177 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288459692 2021-03-23 16:39:03.255227 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-02 11:43:00 obsr1958124 S21139187 Traveling P22 EBIRD 12.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301630839 2021-03-30 19:07:52.958398 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-07 11:30:00 obsr1077730 S22227266 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319191288 2021-03-23 17:22:05.708166 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-05-12 06:10:00 obsr2694889 S23417745 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296543337 2021-04-01 11:58:54.966271 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-02-12 15:37:00 obsr2211750 S21808260 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317198107 2018-08-06 22:29:16 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Canadaway Creek WMA L2266749 H 42.367272 -79.2358312 2015-05-08 12:51:00 obsr2497657 S23305892 Traveling P22 EBIRD 87.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320362450 2021-03-23 17:23:45.772216 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-16 06:40:00 obsr72341 S23482478 Stationary P21 EBIRD 560.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289499934 2021-11-09 18:43:18.378649 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 5 United States US New York US-NY Dutchess US-NY-027 13.0 Upton Lake Christian School L3271185 P 41.833243 -73.7613273 2015-01-06 08:00:00 obsr2862523 S21224162 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305241529 2021-04-01 11:24:19.637193 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N X United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-24 17:00:00 obsr2223307 S22513789 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290446630 2021-03-30 19:29:33.633096 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-11 08:00:00 obsr444155 S21300144 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1105411 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315226250 2021-03-26 06:13:28.501496 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 8 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.1752556 -76.8558787 2015-01-02 09:30:00 obsr2736418 S23195318 Stationary P21 EBIRD 100.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310686225 2021-03-26 07:56:20.588749 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Nassau US-NY-059 30.0 Sands Point Preserve L293460 H 40.8591053 -73.6970283 2015-04-16 14:00:00 obsr676630 S22909123 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300229481 2021-11-09 20:12:16.773384 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-03-01 10:00:00 obsr1912104 S22122407 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315187674 2015-05-03 06:55:56 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 Male, Adult (1) United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-05-02 06:05:00 obsr2716320 S23193097 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303594948 2021-03-26 08:14:57.071052 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY Westchester US-NY-119 30.0 Upper Mount Hope, Hastings-on-Hudson L3493532 P 40.9961499 -73.8749993 2015-03-13 08:45:00 obsr641553 S22387513 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315906078 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Summit Rock L1150654 H 40.7832 -73.9700467 2015-05-04 07:15:00 obsr2277801 S23231900 Historical P62 EBIRD 35.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311973004 2021-03-30 19:07:52.958398 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 09:35:00 obsr1821546 S22991830 Traveling P22 EBIRD 245.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294870777 2021-03-26 07:56:20.588749 11536 issf avibase-139C813E Merlin Falco columbarius Merlin (Taiga) Falco columbarius columbarius 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-30 09:00:00 obsr2218212 S21672015 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297785965 2021-03-26 06:58:34.561206 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 11 United States US New York US-NY Orleans US-NY-073 13.0 US-NY-Medina-300 Mead Ave L2656564 P 43.22252 -78.374915 2015-02-16 08:00:00 obsr274914 S21920413 Stationary P21 EBIRD 510.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322451037 2021-03-23 17:22:05.708166 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Herkimer US-NY-043 13.0 Russell Park, Ilion, NY L2878207 P 43.00117 -75.03557 2015-05-24 06:41:00 obsr378453 S23606892 Traveling P22 EBIRD 181.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289714234 2019-07-23 17:26:39 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach State Park L230716 P 41.1295147 -72.2665183 2015-01-01 13:15:00 obsr535265 S21240574 Traveling P22 EBIRD 18.0 3.219 1.0 1 G1100194 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291454726 2021-11-09 22:30:28.160331 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Sullivan US-NY-105 28.0 Dr. Duggan Road L1128918 P 41.660473 -74.8697662 2015-01-17 09:30:00 obsr444155 S21381782 Traveling P22 EBIRD 20.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309356850 2021-03-24 20:33:47.533911 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail L1498729 H 42.4795201 -76.4551642 2015-04-11 17:10:00 obsr2154746 S22817596 Traveling P22 EBIRD 70.0 1.207 78.0 1 G1215876 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309816634 2020-02-27 07:29:03 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Cattaraugus US-NY-009 13.0 Conewango Swamp WMA L246473 H 42.1794444 -78.9861111 2015-04-12 15:12:00 obsr2756208 S22849033 Stationary P21 EBIRD 90.0 8.0 1 G1218582 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306219106 2020-05-13 10:58:43 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Pulaski-36 Windcrest Dr L3099636 P 43.574895 -76.136795 2015-03-29 18:27:00 obsr1351949 S22588035 Stationary P21 EBIRD 60.0 2.0 1 G5326538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302266526 2021-03-26 06:07:45.516082 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo--Cope Lake L3153083 H 40.855577 -73.8789371 2015-03-10 13:09:00 obsr128156 S22280628 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317196460 2021-03-19 16:44:35.607263 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-08 11:30:00 obsr2223307 S23305768 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400045 2015-01-26 15:40:50 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 95 United States US New York US-NY Oneida US-NY-065 13.0 Marshall Road near Stone Rd L3320145 P 42.9468717 -75.2323494 2015-01-25 10:45:00 obsr1680059 S21554946 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318376666 2021-03-30 19:39:10.250398 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve, North of Sunrise Hwy L3632850 P 40.680474 -73.4630382 2015-05-10 18:12:00 obsr798147 S23371367 Traveling P22 EBIRD 75.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300266698 2021-03-26 08:05:20.615241 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 8 United States US New York US-NY Onondaga US-NY-067 13.0 US-NY-5968 Kester Rd L1868648 P 43.056356 -76.381717 2015-03-01 11:30:00 obsr2172593 S22125403 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290376504 2021-03-26 07:20:31.408164 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Hortons Point L158149 H 41.0852163 -72.4456862 2015-01-11 10:34:00 obsr2485753 S21294589 Traveling P22 EBIRD 13.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306970557 2021-03-30 19:29:33.633096 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 9 United States US New York US-NY Suffolk US-NY-103 30.0 Frank Melville Memorial Park and Mill Pond L1114075 H 40.946195 -73.1156445 2015-03-28 13:05:00 obsr2320781 S22645201 Traveling P22 EBIRD 50.0 1.3 6.0 1 G1201641 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316578095 2021-11-09 21:57:47.849558 23242 species avibase-94A1C447 Bank Swallow Riparia riparia 2 United States US New York US-NY Ulster US-NY-111 US-NY_854 28.0 Frost Valley YMCA 2000 Frost Valley Road, Claryville, NY 12725, L3572205 P 41.9892074 -74.505634 2015-04-27 07:00:00 obsr1707088 S23271226 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291451914 2019-07-23 17:27:02 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 60 United States US New York US-NY Suffolk US-NY-103 Iron Pier Beach L1052496 H 40.9878717 -72.6161528 2015-01-17 10:00:00 obsr2448785 S21381547 Stationary P21 EBIRD 15.0 2.0 1 G1112052 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318830447 2021-03-23 17:22:05.708166 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-10 07:26:00 obsr1000124 S23396746 Area P23 EBIRD 66.0 2.59 2.0 1 G1266722 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320098441 2021-11-09 18:47:29.366198 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Dutchess US-NY-027 14.0 Harlem Valley Rail Trail-Sharon Sta. Road Section L3646878 P 41.8678843 -73.5242414 2015-05-15 08:00:00 obsr445356 S23469162 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300278171 2021-04-01 12:14:19.266649 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 300 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Oak Beach L267998 H 40.63923 -73.28832 2015-03-01 09:00:00 obsr2555972 S22126293 Traveling P22 EBIRD 120.0 0.805 2.0 1 G1163548 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300132650 2019-07-23 17:27:35 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 Female, Adult (1) United States US New York US-NY Westchester US-NY-119 28.0 Georges Island Park L374054 H 41.2407495 -73.943342 2015-02-28 17:00:00 obsr258431 S22114650 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316671328 2015-05-06 20:01:52 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Monroe US-NY-055 13.0 Ellison Park L392124 H 43.1491253 -77.5175571 2015-05-06 18:54:00 obsr2774009 S23276571 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306079061 2021-11-15 03:06:58.889978 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-29 14:15:00 obsr1555046 S22577230 Traveling P22 EBIRD 45.0 0.805 3.0 1 G1208369 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311980451 2015-04-21 23:56:58 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field- Runways L2057165 P 40.59131 -73.891566 2015-04-20 08:35:00 obsr1821546 S22992345 Traveling P22 EBIRD 90.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305750828 2021-03-30 19:07:52.958398 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY Kings US-NY-047 Coney Island Beach--35th St. Overlook L1373631 H 40.5717813 -74.0006958 2015-03-28 09:09:00 obsr152435 S22553391 Stationary P21 EBIRD 89.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313113977 2021-03-30 19:22:51.561415 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons 16 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-26 07:30:00 obsr150865 S23066908 Traveling P22 EBIRD 169.0 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312130030 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-22 14:40:00 obsr1731572 S23002054 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321963238 2021-03-26 06:21:54.883933 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-22 06:30:00 obsr1407710 S23578111 Traveling P22 EBIRD 120.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309664056 2021-11-09 18:33:58.039151 406 species avibase-27B2749A Wood Duck Aix sponsa X United States US New York US-NY Dutchess US-NY-027 13.0 Cobb Ridge L2517475 P 42.0382655 -73.8797092 2015-04-13 08:00:00 obsr671490 S22837321 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310755018 2021-03-23 17:00:13.087107 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 9 United States US New York US-NY Tompkins US-NY-109 13.0 Buttermilk Falls SP--Lower L518712 H 42.417659 -76.5186596 2015-04-17 18:29:00 obsr1318356 S22913892 Traveling P22 EBIRD 85.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306515792 2016-03-08 21:31:55 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-31 08:30:00 obsr369788 S22610935 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305560949 2021-03-26 07:30:35.289997 456 species avibase-D201EB72 American Wigeon Mareca americana N X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-27 08:09:00 obsr59643 S22538638 Stationary P21 EBIRD 16.0 2.0 1 G1194006 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317275616 2021-04-01 11:30:42.037277 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 09:30:00 obsr111994 S23310174 Traveling P22 EBIRD 360.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313427653 2021-03-23 17:15:00.080143 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Rd. L508804 H 43.0489452 -76.7335796 2015-04-25 12:06:00 obsr1569772 S23086502 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1239012 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295418456 2021-03-24 20:33:47.533911 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail L1498729 H 42.4795201 -76.4551642 2015-02-07 14:05:00 obsr2154746 S21715475 Traveling P22 EBIRD 95.0 1.207 77.0 1 G1137924 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296810162 2022-02-17 14:32:23.002448 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-14 13:30:00 obsr1801902 S21832176 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307922633 2021-03-24 20:53:39.352228 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Albany US-NY-001 13.0 Backyard L2686875 P 42.7188154 -74.1154861 2015-04-05 09:15:00 obsr1800473 S22713920 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290997795 2021-04-01 11:54:40.172593 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-01-13 09:13:00 obsr1032565 S21344423 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289722350 2022-02-08 17:27:20.632176 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 30.0 Riverhead Sod Farms--South of Northville Turnpike L586718 H 40.9559674 -72.6501846 2015-01-07 16:03:00 obsr2595828 S21241168 Stationary P21 EBIRD 50.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303769491 2021-04-22 12:55:05.75868 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Oneida US-NY-065 13.0 Waterville Home Grounds L1257983 P 42.9688865 -75.3351134 2015-03-17 08:30:00 obsr2139704 S22400923 Stationary P21 EBIRD 195.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305670126 2021-11-09 21:57:19.605717 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Ulster US-NY-111 13.0 Rondout-Kingston L3465160 P 41.91695 -73.98631 2015-03-27 17:45:00 obsr1482758 S22547153 Traveling P22 EBIRD 90.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314459623 2021-04-01 11:54:40.172593 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-04-30 18:30:00 obsr1958124 S23150758 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288888223 2021-04-01 12:32:15.282601 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-03 07:30:00 obsr676630 S21169447 Traveling P22 EBIRD 240.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317271801 2021-03-30 19:13:38.458673 242 species avibase-D3A260BC Snow Goose Anser caerulescens 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-08 17:37:00 obsr991026 S23310007 Traveling P22 EBIRD 31.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316171883 2018-08-04 17:13:11 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Suffolk US-NY-103 30.0 Lakeland County Park L2680286 H 40.8044899 -73.1562702 2015-04-30 14:00:00 obsr1987335 S23246999 Traveling P22 EBIRD 15.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296131691 2021-04-01 12:40:54.473014 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY Saratoga US-NY-091 13.0 Grange Hall Road, Northumberland L650014 H 43.1212981 -73.6020604 2015-02-11 12:50:00 obsr1222746 S21771502 Traveling P22 EBIRD 12.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308478259 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Nassau US-NY-059 30.0 US-NY-Old Bethpage-700 Old Bethpage Rd L3548627 P 40.764815 -73.454053 2015-04-08 14:12:00 obsr839844 S22755430 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292934332 2021-03-26 07:56:20.588749 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Nassau US-NY-059 Jones Beach West End to Field 6 L1521543 P 40.5754609 -73.4896668 2015-01-24 12:05:00 obsr547602 S21518119 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301369173 2018-08-04 16:58:53 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-07 09:30:00 obsr881968 S22207907 Stationary P21 EBIRD 75.0 5.0 1 G1168730 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312082904 2018-08-04 17:11:44 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Broome US-NY-007 28.0 Route 26 L3067974 P 42.1827411 -76.0631561 2015-04-22 09:13:00 obsr879105 S22998956 Traveling P22 EBIRD 15.0 12.875 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311635382 2021-03-24 20:11:57.676649 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 1 United States US New York US-NY Oswego US-NY-075 13.0 Sunset Bay Park L250628 H 43.5211406 -76.3839446 2015-04-20 09:10:00 obsr2700277 S22969721 Traveling P22 EBIRD 61.0 6.437 2.0 1 G1228845 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314793880 2021-03-26 06:39:43.334073 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Summit Rock L1150654 H 40.7832 -73.9700467 2015-05-01 07:40:00 obsr1706920 S23171098 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314822133 2021-03-23 17:22:05.708166 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Tricot Trail L2853643 P 43.0934052 -74.7768438 2015-05-01 09:35:00 obsr2694889 S23172803 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296926475 2017-08-16 02:23:57 5923 species avibase-15369E8E Dunlin Calidris alpina X United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-02-14 13:23:00 obsr1626739 S21842402 Traveling P22 EBIRD 26.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS894931092 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 10 United States US New York US-NY Kings US-NY-047 Main St. Park (Brooklyn) L2987656 H 40.704402 -73.9897981 2015-05-28 13:00:00 obsr47698 S67182357 Traveling P22 EBIRD 60.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308853393 2021-04-01 12:26:53.827486 5962 species avibase-4A3B2CFF Short-billed Dowitcher Limnodromus griseus 7 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-04-10 11:45:00 obsr1154 S22783935 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294674299 2021-03-24 20:33:47.533911 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 21 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-02-02 10:15:00 obsr2137468 S21655598 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291397961 2015-01-17 08:11:49 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 Union-Endicott High School L1122310 H 42.0978721 -76.0479641 2015-01-16 17:00:00 obsr879105 S21377031 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320355136 2021-04-01 11:15:31.646886 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 10:00:00 obsr2363365 S23482095 Traveling P22 EBIRD 360.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307729360 2021-03-23 17:18:00.959502 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Albany US-NY-001 13.0 Stanton Pond L273495 H 42.5094164 -73.9012973 2015-04-05 13:53:00 obsr2321296 S22699686 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305369726 2021-04-01 11:54:40.172593 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 10 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-03-23 08:00:00 obsr666331 S22523797 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310849858 2021-03-26 07:30:35.289997 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Tompkins US-NY-109 13.0 AviTom43 L3513985 H 42.5762079 -76.5107421 2015-04-18 09:02:00 obsr620377 S22920073 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289589751 2021-04-01 12:18:57.910168 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: Christmas Bird Count: City W Hill: N loop L1865630 P 42.4531697 -76.5219756 2015-01-01 12:07:00 obsr2760150 S21230989 Traveling P22 EBIRD 153.0 4.506 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319539230 2021-04-01 11:30:42.037277 636 species avibase-B77377EE Common Eider Somateria mollissima X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 07:11:00 obsr2313260 S23437832 Traveling P22 EBIRD 261.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310622632 2015-04-17 15:07:35 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 Tracy Rd. Swamps L590801 H 42.4957279 -73.872267 2015-04-17 10:30:00 obsr2321296 S22905264 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302598902 2015-03-12 10:18:46 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N. & W. Trail intersection L250375 P 42.4790392 -76.4547486 2015-03-12 08:00:00 obsr2307843 S22309655 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304205659 2021-03-23 16:30:20.514143 27616 species avibase-D77E4B41 American Robin Turdus migratorius 16 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-20 09:15:00 obsr1633923 S22435315 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294043358 2021-11-09 17:43:05.347258 279 species avibase-3E04020B Brant Branta bernicla 3 United States US New York US-NY Dutchess US-NY-027 28.0 Brothers Rd - Depot Hill L1034813 P 41.5944317 -73.6783826 2015-01-30 15:15:00 obsr1732267 S21606059 Stationary P21 EBIRD 92.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS335956726 2021-03-23 16:52:36.900075 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 18 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven National Laboratory (restricted access) L2808445 H 40.8710034 -72.880066 2015-04-27 06:07:00 obsr2137822 S24576712 Traveling P22 EBIRD 97.0 4.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324240254 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 S C2 S United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-31 08:24:00 obsr924076 S23723330 Traveling P22 EBIRD 270.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319771983 2021-11-02 20:32:06.137153 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-14 17:00:00 obsr317968 S23451317 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320769734 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 05:55:00 obsr876649 S23504233 Traveling P22 EBIRD 390.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315347620 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 08:00:00 obsr2635084 S23201447 Traveling P22 EBIRD 240.0 4.023 10.0 1 G1249433 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316144926 2015-05-05 15:24:20 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Erie US-NY-029 13.0 Pleasant Ave L1817453 P 42.7266285 -78.8960089 2015-05-05 15:23:00 obsr548442 S23245570 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300571836 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 11 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-03-02 17:06:00 obsr259298 S22147185 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317004282 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 H C2 H United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 15:30:00 obsr609516 S23295286 Traveling P22 EBIRD 246.0 2.414 3.0 1 G1256574 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288821156 2022-01-30 05:59:21.134541 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 2 Female, Adult (2) United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Feeders Only L1037405 H 40.6580479 -73.9676857 2015-01-03 10:10:00 obsr1289811 S21170620 Stationary P21 EBIRD 20.0 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312167838 2021-03-23 17:00:13.087107 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata X United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: Stewart Pk: E pkg lot + lg pavilion circle L1008272 P 42.4624811 -76.502974 2015-04-22 07:43:00 obsr2760150 S23004730 Traveling P22 EBIRD 11.0 0.29 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323179610 2021-04-01 11:30:42.037277 337 species avibase-694C127A Mute Swan Cygnus olor 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-26 07:30:00 obsr139757 S23651704 Traveling P22 EBIRD 240.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312899009 2021-04-01 11:15:31.646886 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 11:00:00 obsr2319444 S23053905 Traveling P22 EBIRD 270.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315389807 2021-04-01 12:32:15.282601 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Nassau US-NY-059 30.0 East Meadow L2579132 P 40.71788 -73.5637665 2015-05-03 16:00:00 obsr2207991 S23203645 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300889685 2021-11-09 20:12:16.773384 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-03-04 11:51:00 obsr1912104 S22171014 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295670877 2021-03-23 17:22:05.708166 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Herkimer US-NY-043 13.0 Rt 170A - between Rt 29 and Thompson Road L1176935 P 43.1252624 -74.8427939 2015-02-08 14:58:00 obsr2694889 S21735646 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312282971 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-23 07:15:00 obsr827632 S23012429 Traveling P22 EBIRD 210.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293205150 2021-11-09 19:01:40.008558 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-01-25 11:45:00 obsr671490 S21539368 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311550713 2021-11-15 03:06:58.889978 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-12 11:00:00 obsr2735715 S22963349 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291439437 2018-08-04 16:53:30 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 120 United States US New York US-NY Tompkins US-NY-109 28.0 Fall Creek at Etna bridge L3256899 P 42.485595 -76.385035 2015-01-17 12:39:00 obsr2001485 S21380555 Traveling P22 EBIRD 13.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309954744 2021-04-01 11:24:19.637193 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay L83 H 43.3130395 -77.7153471 2015-04-14 09:00:00 obsr2933610 S22858850 Stationary P21 EBIRD 115.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295533199 2021-03-24 19:23:17.886063 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-King Ferry-1190-1192 County Rte 45A L3346406 P 42.703777 -76.659847 2015-02-08 09:28:00 obsr1092576 S21724748 Stationary P21 EBIRD 7.0 3.0 1 G1138938 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316563537 2021-04-01 10:55:39.308231 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 6 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-06 08:15:00 obsr2096529 S23270361 Traveling P22 EBIRD 360.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316584993 2021-04-01 10:55:39.308231 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-06 12:36:00 obsr916033 S23271612 Traveling P22 EBIRD 184.0 1.609 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319010713 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 09:12:00 obsr186539 S23407048 Traveling P22 EBIRD 100.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323676480 2018-08-06 22:31:12 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 4 United States US New York US-NY Essex US-NY-031 14.0 Schroon river L3680867 P 43.897911 -73.744598 2015-05-26 14:59:00 obsr2420101 S23685033 Traveling P22 EBIRD 120.0 6.437 2.0 1 G1294405 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294754567 2021-04-01 11:54:40.172593 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N X United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-03 15:08:00 obsr1958124 S21662129 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291759735 2021-03-19 16:44:35.607263 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 12 United States US New York US-NY Monroe US-NY-055 13.0 Rush Dam L1066995 H 42.9928613 -77.6449406 2015-01-17 13:26:00 obsr1828453 S21405489 Stationary P21 EBIRD 23.0 1.0 1 G1112434 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288205501 2021-03-24 19:27:13.077399 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-01 10:11:00 obsr1334267 S21117997 Stationary P21 EBIRD 48.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313054761 2021-11-09 20:51:06.773494 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY Rockland US-NY-087 28.0 Kakiat County Park L1023278 H 41.1461171 -74.11466 2015-04-26 07:09:00 obsr1253931 S23063425 Traveling P22 EBIRD 82.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319633425 2018-08-06 22:29:52 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 06:30:00 obsr2348610 S23443086 Traveling P22 EBIRD 270.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313119147 2018-08-04 17:12:24 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 4 United States US New York US-NY Tompkins US-NY-109 28.0 Roy H. Park Preserve--north (FLLT) L2219181 H 42.4339256 -76.3209647 2015-04-26 11:02:00 obsr241086 S23067168 Traveling P22 EBIRD 25.0 0.322 2.0 1 G1236793 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289238545 2015-01-05 14:22:37 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Nassau US-NY-059 30.0 Baldwin L193543 T 40.6565 -73.60927 2015-01-03 11:10:00 obsr564905 S21203219 Traveling P22 EBIRD 70.0 0.966 4.0 0 G1096948 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306497486 2015-03-31 11:14:00 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-03-31 09:45:00 obsr2172593 S22609575 Traveling P22 EBIRD 87.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302213969 2015-04-18 13:58:52 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Schenectady US-NY-093 13.0 Mohawk River SP L2896090 H 42.8022799 -73.8512206 2015-03-10 09:55:00 obsr2851090 S22274279 Traveling P22 EBIRD 55.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320169776 2021-04-01 11:15:31.646886 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 06:28:00 obsr1189028 S23472638 Traveling P22 EBIRD 276.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300253326 2021-03-24 20:49:55.752669 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Wayne US-NY-117 13.0 Huron, 6900 Clapper Road L3448366 P 43.2512 -76.83572 2015-03-01 13:05:00 obsr1721609 S22124341 Stationary P21 EBIRD 4.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317151271 2018-08-06 22:29:10 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-08 07:00:00 obsr1472872 S23303443 Traveling P22 EBIRD 225.0 9.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307202349 2021-03-26 06:39:43.334073 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-03 13:45:00 obsr1135516 S22662357 Traveling P22 EBIRD 75.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308067385 2021-03-23 16:39:03.255227 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 40 United States US New York US-NY Richmond US-NY-085 Oakwood Beach--tidal marshes, NW to Mill Rd. L2167041 H 40.5494903 -74.1131688 2015-04-06 10:23:00 obsr155915 S22723837 Traveling P22 EBIRD 10.0 0.322 2.0 1 G1208445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309337199 2022-02-17 14:32:23.002448 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-12 09:12:00 obsr152435 S22816354 Traveling P22 EBIRD 73.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307925795 2021-04-01 11:54:40.172593 662 species avibase-FB738385 Bufflehead Bucephala albeola N X United States US New York US-NY Richmond US-NY-085 30.0 Stately Richman Manor L2489256 P 40.6333994 -74.104638 2015-04-05 08:00:00 obsr2904420 S22714107 Stationary P21 EBIRD 420.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316008896 2021-11-15 03:06:58.889978 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 12:54:00 obsr1702057 S23238151 Traveling P22 EBIRD 123.0 0.805 3.0 1 G1252520 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305109854 2021-11-09 20:39:07.387799 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 2 United States US New York US-NY Putnam US-NY-079 28.0 Paul A. Camarda Park L1354733 H 41.4031816 -73.6813005 2015-03-24 12:30:00 obsr1458092 S22503641 Traveling P22 EBIRD 90.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320470736 2021-04-01 12:30:15.438381 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 1 United States US New York US-NY Herkimer US-NY-043 13.0 Eysaman Rd L3649039 P 43.0523792 -74.842279 2015-05-16 10:00:00 obsr1683226 S23488320 Traveling P22 EBIRD 60.0 8.047 4.0 1 G1274650 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319825410 2021-11-15 03:06:58.889978 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 08:30:00 obsr2797341 S23454286 Traveling P22 EBIRD 210.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310537613 2021-03-26 06:12:17.833181 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-04-16 08:00:00 obsr479109 S22899444 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306998552 2015-04-02 17:58:27 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 7 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-02 17:15:00 obsr800690 S22647614 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311722093 2021-04-01 11:15:31.646886 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 8 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-20 15:30:00 obsr2750470 S22975577 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305242795 2019-07-23 17:28:07 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-25 13:35:00 obsr2497657 S22513889 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290681487 2021-03-30 19:29:33.633096 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 15 United States US New York US-NY Suffolk US-NY-103 30.0 Southaven County Park L2117422 H 40.8157861 -72.8972683 2015-01-11 15:15:00 obsr564905 S21319254 Stationary P21 EBIRD 101.0 2.0 1 G1107122 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306322536 2015-03-30 14:26:26 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Essex US-NY-031 14.0 home L1914193 P 44.2164782 -73.7556839 2015-03-29 08:00:00 obsr2105231 S22595754 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309082027 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 09:20:00 obsr263005 S22799773 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320624230 2021-11-15 03:06:58.889978 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 08:15:00 obsr1258494 S23496233 Traveling P22 EBIRD 300.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319557245 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-14 08:00:00 obsr1693806 S23438898 Traveling P22 EBIRD 75.0 3.219 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316808564 2021-03-26 07:46:52.994574 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-07 05:55:00 obsr2512689 S23284359 Traveling P22 EBIRD 65.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291540651 2021-11-09 20:59:08.238638 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 5 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-01-17 16:30:00 obsr1055148 S21388675 Stationary P21 EBIRD 30.0 3.0 1 G1112615 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304457412 2021-03-30 19:13:38.458673 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 35 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Buck Pond L139795 H 43.2809982 -77.6672974 2015-03-21 16:30:00 obsr1598543 S22454113 Traveling P22 EBIRD 60.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296260904 2021-04-01 11:49:53.573686 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Queens US-NY-081 30.0 Kissena Park L491873 H 40.7462409 -73.8080852 2015-02-12 10:30:00 obsr676630 S21781887 Traveling P22 EBIRD 25.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295601558 2015-02-08 20:01:31 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cherry Rd. E of Warren, Lansing L1767510 P 42.50136 -76.46841 2015-02-08 15:24:00 obsr1655171 S21730043 Stationary P21 EBIRD 2.0 2.0 1 G1139923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298847357 2021-03-23 16:39:03.255227 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-02-21 07:22:00 obsr1893950 S22011873 Traveling P22 EBIRD 13.0 0.483 2.0 1 G1155374 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293225260 2019-10-28 20:59:32 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Erie US-NY-029 13.0 Aqua Lane Park--Sheridan Boat Launch L8676009 H 42.9653675 -78.9243042 2015-01-25 13:38:00 obsr916033 S21540902 Stationary P21 EBIRD 16.0 14.0 1 G1123052 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323517787 2021-03-30 19:07:52.958398 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 10 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-28 07:14:00 obsr1605975 S23674400 Traveling P22 EBIRD 117.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294736833 2021-03-23 17:00:13.087107 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-03 08:30:00 obsr1655171 S21660588 Traveling P22 EBIRD 21.0 0.966 2.0 1 G1134410 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291528258 2021-04-01 11:15:31.646886 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 11 United States US New York US-NY Kings US-NY-047 Brooklyn Army Terminal Pier 4 L2598864 H 40.646519 -74.026074 2015-01-17 09:45:00 obsr350767 S21387696 Traveling P22 EBIRD 47.0 0.805 4.0 1 G1112435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300208934 2021-04-01 12:43:36.236969 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Tioga US-NY-107 28.0 Confluence Park, Owego L2011248 H 42.0957386 -76.2724543 2015-03-01 08:37:00 obsr1092576 S22120550 Stationary P21 EBIRD 24.0 3.0 1 G1163150 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305729254 2021-11-09 21:41:38.795423 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-03-27 07:30:00 obsr1588136 S22551511 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315384069 2021-11-12 01:03:10.880975 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Chenango US-NY-017 28.0 Rogers Environmental Center L304770 H 42.682466 -75.5154433 2015-05-03 13:13:00 obsr378453 S23203329 Traveling P22 EBIRD 175.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305797831 2017-08-16 16:55:45 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Gilgo Beach L499715 H 40.6172753 -73.3947659 2015-03-28 10:45:00 obsr247620 S22556660 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306487047 2021-09-19 18:52:22.654948 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY New York US-NY-061 The Battery, Manhattan L288752 H 40.7035452 -74.0159751 2015-03-28 14:36:00 obsr2054320 S22608826 Stationary P21 EBIRD 31.0 2.0 1 G1199299 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311505205 2021-04-01 11:23:42.170869 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-04-18 08:04:00 obsr589593 S22960445 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316803202 2021-03-19 16:44:35.607263 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-07 09:04:00 obsr1958774 S23284097 Traveling P22 EBIRD 46.0 0.402 2.0 1 G1291694 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311868874 2021-03-26 07:20:31.408164 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 S C2 S United States US New York US-NY Suffolk US-NY-103 30.0 Stony Brook University L2350778 H 40.9146933 -73.1215687 2015-04-21 13:04:00 obsr2939887 S22984961 Traveling P22 EBIRD 7.0 0.6 2.0 1 G1230249 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310641360 2021-03-24 21:06:05.39641 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--Liverpool Marina L837889 H 43.1007479 -76.2093687 2015-04-17 08:45:00 obsr660214 S22906359 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319268778 2019-04-02 20:14:27 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park--Basset Rd. L3134836 H 42.4079263 -75.9690476 2015-05-13 08:40:00 obsr879105 S23422162 Traveling P22 EBIRD 60.0 0.805 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308500344 2021-03-24 21:10:11.310781 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Saratoga US-NY-091 13.0 Betar Byway L1528567 H 43.2984602 -73.6411847 2015-04-08 08:39:00 obsr1222746 S22757159 Traveling P22 EBIRD 51.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315187716 2021-03-19 16:25:42.617988 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Essex US-NY-031 13.0 Noblewood Park L191517 H 44.3548774 -73.356574 2015-05-02 15:28:00 obsr822321 S23193099 Traveling P22 EBIRD 83.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312071550 2021-03-19 16:44:35.607263 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Monroe US-NY-055 13.0 LaSalle's Landing Park L140438 H 43.1763487 -77.5259313 2015-04-21 17:55:00 obsr1962295 S22998288 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298038682 2021-03-26 07:52:40.224846 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Fulton US-NY-035 13.0 Rt 67 - between Rt 334 & Fulton Co. Solid Waste L3259465 P 43.0073547 -74.4421889 2015-02-17 11:25:00 obsr1000124 S21942527 Traveling P22 EBIRD 92.0 7.081 3.0 1 G1150890 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291401461 2015-01-17 20:56:06 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 5 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-01-17 08:46:00 obsr2321296 S21377332 Stationary P21 EBIRD 6.0 2.0 1 G1112759 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312341370 2018-08-04 17:11:52 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Westchester US-NY-119 US-NY_871 30.0 Ward Pound Ridge Reservation L746022 H 41.2455683 -73.5888076 2015-04-23 07:30:00 obsr1336375 S23016372 Traveling P22 EBIRD 30.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298619744 2021-11-09 22:04:47.967972 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-20 16:02:00 obsr2568221 S21992400 Incidental P20 EBIRD 4.0 0 G1156474 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314185884 2021-03-26 07:52:59.845315 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-29 07:45:00 obsr1000124 S23133748 Area P23 EBIRD 95.0 2.59 2.0 1 G1243714 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315345902 2021-03-19 16:44:35.607263 5770 species avibase-95E28A57 Semipalmated Plover Charadrius semipalmatus 6 United States US New York US-NY Monroe US-NY-055 13.0 Whiting Rd. Nature Preserve L524399 H 43.251267 -77.4698353 2015-05-03 06:40:00 obsr302343 S23201356 Traveling P22 EBIRD 170.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304029117 2021-03-24 20:33:47.533911 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 2 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-03-18 08:42:00 obsr1655171 S22421506 Traveling P22 EBIRD 10.0 0.483 2.0 1 G1187731 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313982918 2016-02-16 11:54:50 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 Female, Adult (1) United States US New York US-NY Madison US-NY-053 28.0 2275 Alexis Avenue, Hamilton, NY 13346 L2618579 P 42.8287667 -75.5174392 2015-04-29 07:00:00 obsr2843748 S23121386 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319799684 2021-12-24 11:02:14.483178 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 12 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-15 08:47:00 obsr991026 S23452805 Traveling P22 EBIRD 103.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296473703 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek--Leon S. Kaiser Park L1312993 H 40.5806115 -73.9979002 2015-02-13 13:30:00 obsr454647 S21801560 Traveling P22 EBIRD 80.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299373913 2022-02-17 14:32:23.002448 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-22 14:41:00 obsr2502574 S22055289 Traveling P22 EBIRD 160.0 4.023 4.0 1 G1158699 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309350638 2021-03-26 07:30:35.289997 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Research Ponds Unit II (restricted access) L266582 H 42.5034956 -76.4374457 2015-04-12 10:36:00 obsr1655171 S22817223 Stationary P21 EBIRD 29.0 2.0 1 G1219984 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305680182 2021-03-30 19:07:52.958398 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-27 16:45:00 obsr1659461 S22547935 Traveling P22 EBIRD 60.0 3.219 2.0 1 G1194698 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306143210 2015-03-29 19:39:25 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 Unknown Sex, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-01 17:00:00 obsr1778524 S22582210 Stationary P21 EBIRD 20.0 2.0 1 G1197049 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309578555 2018-03-31 23:09:13 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 1 United States US New York US-NY Delaware US-NY-025 28.0 Beaverkill Valley Road (Delaware County) L7152184 P 41.9671413 -74.8916316 2015-04-11 06:10:00 obsr1788273 S22831734 Traveling P22 EBIRD 14.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290408568 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-11 11:55:00 obsr1536880 S21297158 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293226398 2021-11-09 19:56:27.431631 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 20 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt - Celery Ave L3301185 P 41.3685209 -74.4191498 2015-01-25 11:30:00 obsr1544235 S21540997 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316949504 2021-03-26 07:56:20.588749 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-07 08:00:00 obsr2534001 S23292189 Traveling P22 EBIRD 75.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297224342 2021-04-28 05:26:15.958627 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-15 12:30:00 obsr1659461 S21869071 Traveling P22 EBIRD 150.0 4.828 2.0 1 G1147541 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS302031876 2021-03-26 07:43:12.52294 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Wayne US-NY-117 13.0 ***US-NY-WAY Newark--Wegman's Plaza [Newark_CW] L986247 P 43.0450144 -77.1128279 2015-03-09 12:08:00 obsr606693 S22258672 Stationary P21 EBIRD 13.0 0.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302075881 2015-03-09 19:46:50 32101 issf avibase-873DDCD2 White-crowned Sparrow Zonotrichia leucophrys White-crowned Sparrow (leucophrys) Zonotrichia leucophrys leucophrys 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-03-09 08:14:00 obsr2426404 S22262303 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303272159 2021-04-01 11:12:52.834774 20829 species avibase-B9B272F4 Common Raven Corvus corax 4 United States US New York US-NY Greene US-NY-039 13.0 Coxsackie Boat Launch L474746 H 42.3533746 -73.7957346 2015-03-15 07:50:00 obsr481595 S22361629 Stationary P21 EBIRD 85.0 8.0 1 G1180645 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312007468 2015-04-22 06:44:03 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-04-22 05:49:00 obsr455249 S22994162 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291631951 2021-03-26 06:29:56.44369 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-18 11:06:00 obsr934639 S21395783 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290837885 2015-01-13 13:41:55 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 50 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-01-13 13:40:00 obsr1958124 S21331393 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322445921 2018-08-06 22:31:00 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-24 07:47:00 obsr1097423 S23606598 Traveling P22 EBIRD 104.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301377749 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 120 United States US New York US-NY Kings US-NY-047 Gravesend Bay, middle parking lot L1843449 H 40.6040297 -74.0243731 2015-03-07 10:28:00 obsr1189028 S22208583 Traveling P22 EBIRD 45.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319289953 2021-03-26 07:56:20.588749 526 species avibase-56CCA717 Northern Pintail Anas acuta N 34 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-13 09:30:00 obsr647628 S23423366 Traveling P22 EBIRD 205.0 4.023 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290371682 2021-03-26 06:29:14.715704 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-01-10 09:46:00 obsr589593 S21294186 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307082053 2021-03-26 07:52:59.845315 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-02 08:45:00 obsr316199 S22653769 Area P23 EBIRD 80.0 2.59 2.0 1 G1202223 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316771249 2022-02-17 14:32:23.002448 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-06 16:19:00 obsr2404047 S23282338 Traveling P22 EBIRD 101.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311803117 2018-08-04 17:11:26 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 United States US New York US-NY Westchester US-NY-119 30.0 Angle Fly Preserve Somers L926434 P 41.2951314 -73.7167811 2015-04-21 08:00:00 obsr2078798 S22980743 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313811697 2021-03-19 16:06:54.047432 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.7320406 -76.7083025 2015-04-28 14:15:00 obsr887540 S23110510 Traveling P22 EBIRD 17.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304561388 2021-03-23 16:39:03.255227 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-03-22 07:24:00 obsr1958124 S22461916 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307423484 2021-03-23 17:37:19.520785 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 17 United States US New York US-NY Saratoga US-NY-091 13.0 Fenimore Bridge, Hudson Falls, NY L1476893 P 43.2979263 -73.5901746 2015-04-04 09:14:00 obsr1222746 S22678540 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313399926 2021-04-01 10:58:47.067498 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Genesee US-NY-037 13.0 BOS section 10b L1304590 P 43.0252315 -78.3232498 2015-04-12 08:30:00 obsr1296884 S23084681 Area P23 EBIRD 420.0 3500.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304441135 2021-03-24 19:27:13.077399 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Chemung US-NY-015 28.0 Elmira, 86 Harris Hill Road L3502857 P 42.10246 -76.90616 2015-03-21 10:12:00 obsr1092576 S22452869 Traveling P22 EBIRD 4.0 2.736 2.0 1 G1187063 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303498103 2021-03-30 19:13:38.458673 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 70 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--East Spit L256061 H 43.3107525 -77.7073288 2015-03-16 10:26:00 obsr1124114 S22380248 Stationary P21 EBIRD 103.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318055799 2022-02-17 14:32:23.002448 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-09 18:14:00 obsr1821546 S23354345 Traveling P22 EBIRD 67.0 1.609 4.0 1 G1260335 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310017745 2021-03-26 08:05:20.615241 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Onondaga US-NY-067 13.0 Butternut Creek Trail L2843858 H 43.0416533 -76.0491657 2015-04-13 11:20:00 obsr1167884 S22863137 Traveling P22 EBIRD 36.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295073784 2021-11-09 19:25:18.807401 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 25 United States US New York US-NY Orange US-NY-071 28.0 Mission Lands Road L1108093 P 41.2930275 -74.5012093 2015-02-05 11:00:00 obsr444155 S21689511 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306674345 2021-03-24 20:33:47.533911 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 17 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-01 07:13:00 obsr455249 S22623304 Traveling P22 EBIRD 15.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305615676 2021-03-19 16:02:45.308962 526 species avibase-56CCA717 Northern Pintail Anas acuta 25 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-27 13:59:00 obsr800690 S22542963 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290157178 2021-03-26 06:29:56.44369 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 5 United States US New York US-NY Monroe US-NY-055 13.0 Redfern Drive L3281377 P 43.1173061 -77.6193094 2015-01-10 11:20:00 obsr2065230 S21276440 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289085143 2021-04-01 11:15:31.646886 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 2 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-01-04 12:39:00 obsr1189028 S21191646 Traveling P22 EBIRD 153.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303650792 2021-03-23 17:23:45.772216 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-03-16 11:30:00 obsr72341 S22391817 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295061783 2018-08-04 16:55:43 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-02-05 16:37:00 obsr502830 S21688509 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312718990 2021-03-26 07:07:10.758746 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Richmond US-NY-085 30.0 Mission of Immaculate Virgin, Mt. Loretto L890042 H 40.511334 -74.2196149 2015-04-25 07:13:00 obsr1958124 S23043140 Traveling P22 EBIRD 6.0 0.483 2.0 1 G1237338 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322940454 2021-03-30 19:13:38.458673 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-25 07:23:00 obsr302343 S23636087 Traveling P22 EBIRD 186.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304830546 2015-05-07 17:02:31 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-03-23 07:40:00 obsr455249 S22481326 Traveling P22 EBIRD 13.0 0.402 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304005712 2021-03-26 08:12:51.35913 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Schuyler US-NY-097 13.0 Seneca Harbor Park L150677 H 42.383846 -76.873375 2015-03-19 08:55:00 obsr1092576 S22419382 Stationary P21 EBIRD 15.0 3.0 1 G1184991 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301208996 2021-03-24 21:01:50.671145 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-27 08:20:00 obsr2497229 S22194415 Traveling P22 EBIRD 120.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300177409 2021-03-30 19:43:32.881136 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-28 15:30:00 obsr1055148 S22117950 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312812330 2021-03-26 07:30:35.289997 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, Farmer's Market pond L1164581 P 42.4499971 -76.5090962 2015-04-25 09:26:00 obsr2307843 S23048980 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294388874 2021-04-26 04:57:02.963704 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-01 07:19:00 obsr1189028 S21633056 Traveling P22 EBIRD 260.0 4.023 2.0 1 G1399425 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340184831 2018-08-04 17:12:12 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Erie US-NY-029 13.0 Stiglmeier Park L965034 H 42.8821636 -78.7297356 2015-04-25 13:00:00 obsr1020013 S24880187 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290808540 2021-03-24 21:09:00.82373 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Rensselaer US-NY-083 13.0 West Sand Lake, NY 1 L1766939 P 42.6226389 -73.6175931 2015-01-13 09:30:00 obsr2186523 S21328888 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302118702 2015-03-09 23:42:31 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Herkimer US-NY-043 13.0 Rt 28 from Sunny Island Bridge to Gravesville Road L849204 P 43.2417249 -75.1117444 2015-03-09 13:40:00 obsr1000124 S22265434 Traveling P22 EBIRD 7.0 1.609 3.0 1 G1173370 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296787575 2018-08-04 16:56:26 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Nassau US-NY-059 30.0 mill pond L3369449 P 40.664217 -73.5188556 2015-02-14 09:40:00 obsr2393688 S21830196 Traveling P22 EBIRD 15.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302744978 2015-03-12 22:41:48 27616 species avibase-D77E4B41 American Robin Turdus migratorius 11 United States US New York US-NY Westchester US-NY-119 28.0 Half Moon Bay home L3253911 P 41.1967264 -73.8883481 2015-03-12 08:00:00 obsr114791 S22320461 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316091342 2015-05-27 21:44:02 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Columbia US-NY-021 13.0 Hawthorne Valley L3615111 H 42.26937 -73.5922623 2015-05-05 08:30:00 obsr2766625 S23242788 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314853445 2021-03-19 16:44:35.607263 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 6 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area - NCAW L473419 P 43.091096 -77.3856997 2015-04-29 08:15:00 obsr2113616 S23174752 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302078417 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Long Beach L3470753 P 40.5856039 -73.6064243 2015-03-09 13:30:00 obsr531522 S22262503 Traveling P22 EBIRD 60.0 1.609 4.0 1 G1172906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289178165 2019-07-23 17:26:39 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 Fort Niagara SP--Boat Launch L1826607 H 43.2598935 -79.0581322 2015-01-01 09:30:00 obsr2965498 S21198784 Traveling P22 EBIRD 15.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288516536 2022-01-25 11:01:55.389129 32955 species avibase-41062654 Northern Parula Setophaga americana 20 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-01-02 14:35:00 obsr2595828 S21143860 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291301327 2021-03-19 16:19:20.977326 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Tonawanda, NY, Erie County, New York, US L3296059 P 42.9746828 -78.9420891 2015-01-16 13:30:00 obsr736608 S21369667 Traveling P22 EBIRD 35.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294142442 2017-08-16 16:29:26 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 JFK Memorial Wildlife Sanctuary L194386 H 40.6105495 -73.4519033 2015-01-31 13:05:00 obsr431494 S21613649 Traveling P22 EBIRD 8.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316149603 2015-05-05 15:38:54 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Ashley Schiff Forest Preserve L2350787 H 40.9078693 -73.1207192 2015-04-29 09:30:00 obsr758734 S23245813 Traveling P22 EBIRD 8.0 0.4 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306995850 2021-04-01 11:54:40.172593 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-01 15:50:00 obsr496520 S22647425 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313731733 2021-03-26 06:29:56.44369 526 species avibase-56CCA717 Northern Pintail Anas acuta 2 United States US New York US-NY Monroe US-NY-055 13.0 Harwick Rd., Irondequoit (Varied Thrush 2015) L3592824 H 43.1740003 -77.5539672 2015-04-27 12:40:00 obsr1929165 S23105446 Stationary P21 EBIRD 110.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309705595 2021-03-26 07:20:31.408164 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Suffolk US-NY-103 US-NY_766 30.0 Caumsett SP L259743 H 40.9308721 -73.4720876 2015-04-12 10:35:00 obsr2188716 S22840711 Traveling P22 EBIRD 135.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308689912 2018-08-04 17:08:13 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-09 14:00:00 obsr1472872 S22771777 Traveling P22 EBIRD 90.0 6.276 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293516355 2021-03-24 20:23:39.258075 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Amagansett L1052952 T 40.9737 -72.14372 2015-01-25 08:52:00 obsr564905 S21564157 Traveling P22 EBIRD 5.0 0.161 2.0 1 G1127002 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306382054 2021-03-30 19:07:52.958398 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-30 13:30:00 obsr2078092 S22600357 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302165773 2021-03-24 20:23:39.258075 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L635183 H 40.8348529 -72.6153374 2015-03-10 09:15:00 obsr717785 S22268736 Traveling P22 EBIRD 20.0 0.386 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313735199 2018-08-04 17:12:35 681 species avibase-407E2CA8 Common Merganser Mergus merganser 10 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-28 07:45:00 obsr544268 S23105683 Traveling P22 EBIRD 75.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296263951 2021-11-09 22:04:47.967972 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-11 07:45:00 obsr560391 S21782115 Stationary P21 EBIRD 540.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304082895 2015-03-19 17:35:57 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-03-19 14:10:00 obsr2233270 S22425643 Stationary P21 EBIRD 80.0 17.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318815470 2021-04-01 10:55:39.308231 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-11 13:45:00 obsr1379161 S23395879 Traveling P22 EBIRD 240.0 3.219 2.0 1 G1280580 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323074500 2022-01-12 18:15:23.330035 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--CR 55 to Bigelow Rd. L1432948 H 44.4167104 -74.1195601 2015-05-23 08:30:00 obsr544268 S23644728 Traveling P22 EBIRD 90.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312260910 2019-10-21 19:06:00 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-23 09:21:00 obsr2149836 S23011029 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308980922 2021-01-22 17:46:17.655478 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Washington US-NY-115 13.0 U.S. 4 Parking Area pond, Fort Miller, NY L3130391 P 43.1703268 -73.5776106 2015-04-10 12:07:00 obsr1222746 S22793017 Rusty Blackbird Spring Migration Blitz P41 EBIRD 20.0 0.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288225108 2015-10-09 10:13:41 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Fulton US-NY-035 13.0 Rt.29 and Hales Mills Rd.Ext. L2965092 P 43.0194389 -74.3366128 2015-01-01 13:30:00 obsr2590001 S21119659 Traveling P22 EBIRD 15.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291419175 2021-03-26 08:11:28.0353 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Stillwater, NY 52 county route 76 L1926398 P 42.933103 -73.680332 2015-01-17 09:00:00 obsr2564462 S21378799 Stationary P21 EBIRD 130.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290448744 2021-11-09 18:02:59.935226 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 15 United States US New York US-NY Dutchess US-NY-027 28.0 Madam Brett Park L1171361 H 41.4886892 -73.9742571 2015-01-11 14:30:00 obsr2770696 S21300359 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298419560 2021-04-01 12:24:14.132004 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 100 United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 Ft. Edward Grasslands IBA L358625 H 43.2650813 -73.5411072 2015-02-15 15:00:00 obsr2019190 S21975028 Traveling P22 EBIRD 90.0 16.093 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295595459 2021-03-26 06:11:29.8335 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 3 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-02-08 11:55:00 obsr1828453 S21729523 Stationary P21 EBIRD 3.0 3.0 1 G1138996 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288695157 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-02 13:00:00 obsr1353449 S21158416 Traveling P22 EBIRD 240.0 3.219 2.0 1 G1092604 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308688387 2021-04-01 12:11:16.886124 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 8 United States US New York US-NY Schoharie US-NY-095 28.0 US-NY-Schoharie-Lilac Hollow Feeders L2527683 P 42.624466 -74.205267 2015-04-07 11:35:00 obsr2268588 S22771616 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300263665 2021-03-26 06:39:43.334073 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-03-01 12:46:00 obsr2149836 S22125163 Stationary P21 EBIRD 64.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301793124 2021-04-01 12:43:36.236969 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata N 1 United States US New York US-NY Tioga US-NY-107 28.0 Candor Fire Department L3454101 P 42.2342529 -76.3370365 2015-03-08 14:17:00 obsr1318356 S22240945 Stationary P21 EBIRD 18.0 2.0 1 G1170818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290033113 2018-04-27 08:16:02 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Ontario US-NY-069 13.0 Finger Lakes Community College (Ontario Co.) L661673 H 42.8692335 -77.2442722 2015-01-09 13:40:00 obsr1243175 S21266542 Traveling P22 EBIRD 42.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292703312 2019-07-23 17:27:09 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point, lighthouse overlook L2451456 H 41.0709727 -71.8565091 2015-01-22 13:30:00 obsr1488063 S21499949 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314465393 2016-03-08 21:31:55 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-24 10:00:00 obsr2331937 S23151114 Traveling P22 EBIRD 30.0 0.805 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311918791 2021-11-09 21:52:20.351693 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Ulster US-NY-111 13.0 Kenneth Wilson Campground L2990318 H 42.0234926 -74.2267345 2015-04-21 16:30:00 obsr2862523 S22988239 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294120883 2015-01-31 11:00:02 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Orleans US-NY-073 13.0 US-NY-Kendall-975 Peter Smith Rd L3253439 P 43.368633 -78.095627 2015-01-31 10:46:00 obsr991026 S21611899 Traveling P22 EBIRD 13.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312821396 2021-03-26 07:30:35.289997 406 species avibase-27B2749A Wood Duck Aix sponsa N X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-25 07:43:00 obsr241086 S23049465 Traveling P22 EBIRD 60.0 0.161 2.0 1 G1235115 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308962859 2018-08-04 17:08:16 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-04-09 17:30:00 obsr777630 S22791784 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316934063 2021-03-30 19:39:10.250398 7346 species avibase-D4540F88 Glossy Ibis Plegadis falcinellus 2 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-05-03 09:00:00 obsr1494607 S23291253 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298818164 2021-11-09 22:04:47.967972 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N X United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-16 13:10:00 obsr2955569 S22009602 Traveling P22 EBIRD 69.0 4.828 3.0 1 G1155224 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298038680 2021-03-26 07:52:40.224846 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 Male, Adult (1) United States US New York US-NY Fulton US-NY-035 13.0 Rt 67 - between Rt 334 & Fulton Co. Solid Waste L3259465 P 43.0073547 -74.4421889 2015-02-17 11:25:00 obsr1000124 S21942527 Traveling P22 EBIRD 92.0 7.081 3.0 1 G1150890 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304384829 2021-03-23 17:15:00.080143 32973 species avibase-10C601D3 Bay-breasted Warbler Setophaga castanea 8 United States US New York US-NY Wayne US-NY-117 13.0 Lyons, 1080 Bauer Road L3503220 P 43.05008 -77.01264 2015-03-21 12:30:00 obsr1721609 S22448937 Traveling P22 EBIRD 18.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324383227 2021-03-23 17:20:04.546757 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegheny State Park L2896905 P 42.0892718 -78.7218704 2015-05-30 09:00:00 obsr1239415 S23732814 Traveling P22 EBIRD 330.0 12.875 22.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295256309 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-02-06 07:31:00 obsr745890 S21702335 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303212967 2015-03-15 09:25:38 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-03-15 08:57:00 obsr2871406 S22356942 Stationary P21 EBIRD 16.0 2.0 1 G1180293 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298335001 2022-02-04 06:14:13.892644 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-02-15 13:56:00 obsr1548221 S21967778 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314634685 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Albany US-NY-001 13.0 Rte 155 and Normanskill L3110282 P 42.6761668 -73.9061529 2015-05-01 12:40:00 obsr634484 S23161467 Traveling P22 EBIRD 60.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298427694 2021-04-01 12:32:15.282601 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-19 10:30:00 obsr2207991 S21976284 Traveling P22 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299312388 2021-03-26 06:11:29.8335 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-02-23 14:04:00 obsr528918 S22050912 Traveling P22 EBIRD 15.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319720229 2021-04-01 11:15:31.646886 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-14 15:00:00 obsr1731572 S23448072 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296838120 2021-11-09 17:43:05.347258 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 10 United States US New York US-NY Dutchess US-NY-027 28.0 Brothers Rd - Depot Hill L1034813 P 41.5944317 -73.6783826 2015-02-14 16:00:00 obsr1732267 S21834726 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309782052 2021-03-24 21:06:05.39641 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-04-13 07:30:00 obsr2143830 S22846562 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314269007 2021-04-01 11:30:42.037277 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 08:00:00 obsr2369927 S23139080 Traveling P22 EBIRD 240.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315292690 2021-12-08 07:58:41.562209 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-03 10:00:00 obsr1223279 S23198697 Historical P62 EBIRD_CAN 120.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322717451 2021-11-15 03:06:58.889978 26278 species avibase-A381417F House Wren Troglodytes aedon 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-24 11:30:00 obsr1555046 S23622307 Traveling P22 EBIRD 240.0 3.219 2.0 1 G1288561 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291632755 2019-07-23 17:27:05 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 20 United States US New York US-NY Suffolk US-NY-103 US-NY_839 Cedar Beach (bay waters) L2570319 P 41.03284 -72.387287 2015-01-18 11:02:00 obsr2485753 S21395834 Traveling P22 EBIRD 18.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288217081 2021-04-01 12:18:57.910168 5976 species avibase-F4829920 American Woodcock Scolopax minor 2 United States US New York US-NY Tompkins US-NY-109 13.0 CBC Area: Cherry St and South L1376808 P 42.4320547 -76.5170739 2015-01-01 08:30:00 obsr138678 S21119035 Traveling P22 EBIRD 270.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311848800 2021-04-01 11:30:42.037277 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-04-21 07:40:00 obsr599682 S22983818 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311449877 2021-03-24 20:33:47.533911 591 species avibase-1929E1E1 Canvasback Aythya valisineria 2 United States US New York US-NY Tompkins US-NY-109 13.0 206 Tareyton Drive, Ithaca L141039 P 42.471756 -76.4603653 2015-04-19 09:30:00 obsr620377 S22957023 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309511871 2021-04-01 12:45:19.712958 33216 species avibase-1F09CCCC Wilson's Warbler Cardellina pusilla 4 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve--Fergusons Lake Trail L2930491 H 41.1003343 -73.8233849 2015-04-12 14:30:00 obsr547602 S22827246 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340104792 2021-11-09 19:57:48.990233 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-16 11:29:00 obsr1181085 S24873532 Traveling P22 EBIRD 166.0 0.402 4.0 1 G1395530 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313513996 2018-08-04 17:12:30 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-27 07:47:00 obsr564905 S23091693 Traveling P22 EBIRD 30.0 1.127 2.0 1 G1239599 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315434295 2021-03-30 19:13:38.458673 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Durand-Eastman Park--Eastman Lake L139790 H 43.2341003 -77.5615005 2015-05-03 09:00:00 obsr2504709 S23206007 Traveling P22 EBIRD 67.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313014480 2021-04-01 11:15:31.646886 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-25 16:00:00 obsr1731572 S23060864 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319859121 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-05-15 12:15:00 obsr1962295 S23455919 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306830749 2021-03-23 17:23:45.772216 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-01 07:03:00 obsr72341 S22634781 Stationary P21 EBIRD 147.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301226698 2018-08-04 16:58:50 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-06 13:45:00 obsr2172593 S22195778 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304232378 2021-04-01 12:32:15.282601 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 100 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-20 11:00:00 obsr2505956 S22437359 Rusty Blackbird Spring Migration Blitz P41 EBIRD 130.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307205642 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-03 10:15:00 obsr2505956 S22662604 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309975996 2021-03-30 19:29:33.633096 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-14 11:00:00 obsr247620 S22860353 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306760740 2022-03-07 20:38:22.363139 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup West L1244607 P 41.9128946 -73.6813465 2015-04-01 08:00:00 obsr1339050 S22629464 Traveling P22 EBIRD 180.0 3.219 23.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319269477 2021-03-26 07:53:57.664705 11371 species avibase-75600969 Northern Flicker Colaptes auratus N 4 United States US New York US-NY Livingston US-NY-051 13.0 Groveland, NY L2623278 P 42.7113986 -77.7185619 2015-05-09 13:20:00 obsr1743566 S23422196 Stationary P21 EBIRD 295.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318668254 2021-04-01 11:15:31.646886 7011 species avibase-534FB490 Northern Gannet Morus bassanus N 5 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-09 16:30:00 obsr1673515 S23387354 Traveling P22 EBIRD 80.0 1.0 6.0 1 G1265607 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291306984 2021-03-23 16:33:05.415158 456 species avibase-D201EB72 American Wigeon Mareca americana X United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-01-16 13:20:00 obsr916370 S21370106 Traveling P22 EBIRD 120.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302876159 2021-03-30 19:29:33.633096 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 40 United States US New York US-NY Suffolk US-NY-103 US-NY_2798 30.0 Mecox Flats L1775817 P 40.8941808 -72.330637 2015-03-13 12:30:00 obsr1864342 S22330345 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315655192 2021-03-26 06:21:54.883933 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 06:00:00 obsr2750470 S23218189 Traveling P22 EBIRD 75.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300046643 2021-03-26 07:07:10.758746 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-02-28 07:06:00 obsr1958124 S22107189 Incidental P20 EBIRD 2.0 1 G1161965 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300864056 2021-03-23 17:00:13.087107 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-03-04 08:20:00 obsr1696616 S22168937 Stationary P21 EBIRD 10.0 2.0 1 G1167060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300290996 2021-03-26 07:20:31.408164 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus N 16 United States US New York US-NY Suffolk US-NY-103 30.0 45 griffing ave, amityville ny 11701 L3448874 P 40.6822418 -73.3763123 2015-02-13 12:00:00 obsr2442436 S22127313 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288718844 2021-12-19 10:32:19.574298 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-01-03 08:00:00 obsr2087436 S21160567 Traveling P22 EBIRD 195.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311245192 2021-03-26 07:07:10.758746 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 2 United States US New York US-NY Richmond US-NY-085 Oakwood Beach--tidal marshes, NW to Mill Rd. L2167041 H 40.5494903 -74.1131688 2015-04-19 11:05:00 obsr1958124 S22941822 Traveling P22 EBIRD 7.0 0.322 3.0 1 G1227504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316932095 2021-11-09 18:47:09.858917 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Dutchess US-NY-027 13.0 Pond Gut, Lagrange, NY L3611183 P 41.7229423 -73.7550026 2015-04-15 13:30:00 obsr2786327 S23291136 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313109220 2021-03-30 19:29:33.633096 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-26 06:20:00 obsr302343 S23066645 Traveling P22 EBIRD 125.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311184404 2021-03-23 17:00:13.087107 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 30 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - boardwalk to white barn pond (0.04km) L1287548 P 42.480817 -76.4502794 2015-04-18 19:54:00 obsr2307843 S22940869 Traveling P22 EBIRD 5.0 0.04 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293671536 2015-01-28 08:10:48 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-28 07:30:00 obsr879105 S21576361 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306558809 2021-03-26 06:53:58.593564 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Oneida US-NY-065 13.0 Schneibles, South Bay, Oneida Lake L3529803 P 43.1649505 -75.7373106 2015-03-31 13:42:00 obsr666964 S22614385 Stationary P21 EBIRD 44.0 1.0 1 G1199650 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306938912 2015-04-02 12:56:36 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Rensselaer US-NY-083 13.0 American Oil Road L1137088 P 42.6021254 -73.7550831 2015-04-02 12:00:00 obsr1735540 S22642822 Traveling P22 EBIRD 5.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321652371 2021-04-27 05:37:04.934789 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla N 10 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-21 05:59:00 obsr187432 S23558523 Traveling P22 EBIRD 145.0 1.046 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304338253 2021-03-24 20:58:04.794277 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-03-20 09:45:00 obsr1680059 S22445301 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312405071 2021-03-26 07:53:57.664705 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-04-18 14:05:00 obsr1060479 S23020791 Stationary P21 EBIRD 250.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290407306 2021-03-30 19:22:51.561415 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 10 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-01-10 16:00:00 obsr2363365 S21297062 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308863977 2021-03-23 17:00:13.087107 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--office 248 L286682 P 42.4804061 -76.4510196 2015-04-09 09:00:00 obsr2001485 S22784616 Incidental P20 EBIRD_CAMERICA 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293566649 2021-11-09 20:53:17.759253 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Rockland US-NY-087 30.0 Nanuet L1293607 P 41.0931306 -74.0298271 2015-01-27 14:15:00 obsr1932005 S21568141 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310121699 2021-11-15 03:06:58.889978 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-14 12:30:00 obsr93451 S22870628 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307099037 2022-02-04 06:14:13.892644 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 11 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-04-03 07:15:00 obsr1175815 S22655015 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295365866 2021-11-09 18:44:18.419661 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 60 United States US New York US-NY Dutchess US-NY-027 28.0 US-NY-Dover Plains L3369717 P 41.7405779 -73.5853958 2015-02-07 12:07:00 obsr1442681 S21711390 Traveling P22 EBIRD 124.0 8.851 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297208594 2021-03-23 17:37:19.520785 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 6 United States US New York US-NY Saratoga US-NY-091 14.0 Backyard, Greenfield, NY L1946142 P 43.1475128 -73.8316011 2015-02-15 15:15:00 obsr1321713 S21867575 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322670478 2015-11-20 20:21:55 7011 species avibase-534FB490 Northern Gannet Morus bassanus 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-18 08:32:00 obsr334398 S23619277 Traveling P22 EBIRD 24.0 0.805 2.0 0 G1472325 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302329623 2021-03-24 21:13:42.099821 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Westchester US-NY-119 30.0 Hunt-Parker Sanctuary--Bylane Farm L786456 H 41.2827085 -73.6707115 2015-03-10 16:45:00 obsr385524 S22286333 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295553036 2021-11-09 18:36:27.764873 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Dutchess US-NY-027 14.0 US-NY-Millerton-18 Reagan Rd L2743962 P 41.907949 -73.507452 2015-02-08 12:29:00 obsr1105011 S21726298 Traveling P22 EBIRD 16.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291697419 2022-02-17 14:32:23.002448 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-17 07:30:00 obsr152435 S21400493 Traveling P22 EBIRD 69.0 1.609 1.0 1 G1113759 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292612200 2021-11-09 18:43:47.649279 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Dutchess US-NY-027 28.0 Ten Mile River Preserve L3309910 P 41.7191442 -73.5645175 2015-01-20 14:45:00 obsr2274198 S21492878 Traveling P22 EBIRD 120.0 3.219 2.0 1 G5206809 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308373174 2021-04-26 04:57:02.963704 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-22 15:30:00 obsr1821546 S22747260 Traveling P22 EBIRD 20.0 0.805 1.0 1 G1210709 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309925354 2021-03-19 16:02:45.308962 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-14 07:34:00 obsr1764243 S22856721 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321214857 2021-04-01 12:26:53.827486 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-05-19 11:45:00 obsr1154 S23531918 Traveling P22 EBIRD 30.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS552844070 2018-03-15 22:53:12 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus X United States US New York US-NY Rensselaer US-NY-083 13.0 @Shaver Road L749649 P 42.6271702 -73.6113596 2015-03-10 obsr455725 S40770767 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291160965 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-01 10:00:00 obsr2422107 S21357766 Traveling P22 EBIRD 120.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288383324 2021-04-01 11:24:19.637193 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-01 10:30:00 obsr1782363 S21132712 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288286474 2021-04-01 11:15:31.646886 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps X United States US New York US-NY Kings US-NY-047 Floyd Bennett Field--Community Gardens L996212 H 40.5863861 -73.892777 2015-01-01 12:00:00 obsr2207991 S21125096 Traveling P22 EBIRD 180.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290687985 2021-03-23 16:52:36.900075 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Chandler Estate L1355478 H 40.9559916 -73.0192018 2015-01-10 12:10:00 obsr1987335 S21319766 Stationary P21 EBIRD 135.0 10.0 1 G1107139 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316144870 2016-01-28 21:57:37 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chenango US-NY-017 28.0 Home woods L3452888 P 42.3471065 -75.6650519 2015-05-05 10:24:00 obsr1303581 S23245565 Traveling P22 EBIRD 130.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322774862 2022-02-17 14:32:23.002448 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-23 08:30:00 obsr943380 S23625786 Traveling P22 EBIRD 180.0 1.77 5.0 1 G1288834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302309247 2018-08-04 16:58:58 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Kings US-NY-047 Manhattan Beach Park L852391 H 40.5762169 -73.9441681 2015-03-07 15:00:00 obsr2404047 S22284866 Stationary P21 EBIRD 60.0 2.0 1 G1174062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296794970 2021-03-23 16:39:03.255227 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 18 United States US New York US-NY Richmond US-NY-085 Sprague Ave. Waterfront L2167027 H 40.4999968 -74.2364216 2015-02-14 09:40:00 obsr1958124 S21830883 Stationary P21 EBIRD 16.0 2.0 1 G1145906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300026843 2017-04-18 11:27:41 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY Kings US-NY-047 Brooklyn Army Terminal Pier 4 L2598864 H 40.646519 -74.026074 2015-02-28 11:42:00 obsr1821546 S22105677 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317685754 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--145th-155th St. L2594366 H 40.8303434 -73.952501 2015-05-09 16:25:00 obsr259298 S23334335 Traveling P22 EBIRD 17.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311000976 2021-03-23 17:21:37.486392 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 2 United States US New York US-NY Fulton US-NY-035 13.0 Fulton County Airport, Johnstown L3572834 H 42.9972872 -74.3333352 2015-04-18 07:56:00 obsr119187 S22929544 Stationary P21 EBIRD 9.0 3.0 1 G1224391 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311377366 2015-04-19 19:03:09 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Steuben US-NY-101 28.0 Steele Park L212738 P 42.1416235 -76.970858 2015-04-17 09:30:00 obsr562284 S22952586 Traveling P22 EBIRD 35.0 0.901 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310866625 2021-03-26 07:07:10.758746 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-04-18 09:57:00 obsr1958124 S22921186 Traveling P22 EBIRD 27.0 0.805 3.0 1 G1224797 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315293703 2021-12-24 11:02:14.483178 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-03 10:40:00 obsr1962295 S23198760 Traveling P22 EBIRD 70.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288847821 2021-03-26 07:20:31.408164 6339 species avibase-8535345B Herring Gull Larus argentatus 7 United States US New York US-NY Suffolk US-NY-103 30.0 Farm L137715 P 41.0795555 -72.4394913 2015-01-03 11:46:00 obsr2485753 S21173207 Traveling P22 EBIRD 40.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310057855 2021-11-09 19:55:29.587179 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Orange US-NY-071 28.0 Six and a Half Station Rd. Sanctuary L306143 H 41.4025242 -74.3499176 2015-04-14 16:00:00 obsr186871 S22866133 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324065924 2022-03-06 22:19:43.839237 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Hamilton US-NY-041 14.0 Ferd's Bog L109141 H 43.7886933 -74.749732 2015-05-30 09:00:00 obsr660214 S23711983 Traveling P22 EBIRD 70.0 1.207 2.0 1 G1296160 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298613853 2021-04-01 12:14:19.266649 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 2 United States US New York US-NY Suffolk US-NY-103 30.0 40.8017x-72.6201 - Feb 20, 2015, 3:25 PM L3403087 P 40.801682 -72.620102 2015-02-20 15:23:00 obsr613775 S21992046 Traveling P22 EBIRD 83.0 14.967 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289585710 2021-11-15 03:06:58.889978 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-06 08:40:00 obsr1548221 S21230755 Traveling P22 EBIRD 37.0 0.805 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319498561 2021-11-09 18:36:27.898762 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-05-14 06:40:00 obsr1835267 S23435485 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316445154 2021-03-19 16:44:35.607263 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-06 10:05:00 obsr2595828 S23263389 Traveling P22 EBIRD 16.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312591173 2021-03-23 16:48:08.60516 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 20 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR - Visitor's Pool & Auto Route L2132160 P 42.9604427 -76.7559814 2015-04-24 12:00:00 obsr983655 S23034214 Traveling P22 EBIRD 90.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293943036 2021-04-01 11:24:19.637193 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Monroe US-NY-055 13.0 Williams Road L3307517 P 43.0237486 -77.5938606 2015-01-29 13:17:00 obsr528918 S21597732 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312153584 2017-12-21 02:39:07 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Tompkins US-NY-109 US-NY_791 28.0 Bull Hill Rd., Newfield L3133454 H 42.322864 -76.6350114 2015-04-17 18:40:00 obsr1311434 S23003620 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298245675 2021-04-01 11:47:43.260314 242 species avibase-D3A260BC Snow Goose Anser caerulescens 150 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-02-18 13:06:00 obsr2224244 S21960059 Stationary P21 EBIRD 59.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299630233 2021-11-09 22:04:47.967972 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-25 14:30:00 obsr1189028 S22075029 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1159947 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323277781 2021-04-01 11:15:31.646886 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-26 16:30:00 obsr1382841 S23657991 Traveling P22 EBIRD 210.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320495685 2018-08-06 22:30:24 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Essex US-NY-031 13.0 US-NY-Ticonderoga-7 Mccaughin Rd L3281545 P 43.856704 -73.403107 2015-05-17 10:56:00 obsr822321 S23489654 Traveling P22 EBIRD 38.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305099582 2021-11-09 22:28:29.839692 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Sullivan US-NY-105 28.0 Blue Hill rd L1087274 P 41.9072475 -74.6032619 2015-03-24 11:30:00 obsr662396 S22502886 Stationary P21 EBIRD 15.0 2.0 1 G1191444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316682667 2021-03-24 20:57:48.241391 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-05-06 16:05:00 obsr1708031 S23277213 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS355672663 2021-04-01 11:30:42.037277 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 Female, Unknown Age (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-16 obsr1387984 S26011776 Historical P62 EBIRD 2.0 1 G5871575 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290529867 2021-04-01 12:14:19.266649 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus N X United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-11 14:30:00 obsr2207991 S21306981 Stationary P21 EBIRD 165.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299163952 2021-11-09 22:04:47.967972 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-20 16:02:00 obsr1595836 S22039335 Incidental P20 EBIRD 4.0 0 G1156474 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319443698 2021-03-26 06:29:56.44369 592 species avibase-3072CC16 Redhead Aythya americana 6 United States US New York US-NY Monroe US-NY-055 13.0 Mt. Hope Cemetery L249453 H 43.1287817 -77.6206675 2015-05-13 17:10:00 obsr2796835 S23432052 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312195140 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-04-21 07:30:00 obsr2449897 S23006634 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300013289 2021-11-09 18:44:40.064195 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Dutchess US-NY-027 28.0 Dover Plains L3444894 P 41.719544 -73.558227 2015-02-28 09:26:00 obsr2184966 S22104569 Traveling P22 EBIRD 63.0 3.219 1.0 1 G1163061 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293872227 2021-03-30 19:43:32.881136 456 species avibase-D201EB72 American Wigeon Mareca americana 23 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-01-27 13:30:00 obsr2080607 S21592648 Traveling P22 EBIRD 240.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298881860 2021-03-24 19:27:13.077399 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 11 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-02-21 08:12:00 obsr1334267 S22014677 Stationary P21 EBIRD 44.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309953045 2016-10-11 17:04:08 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 50 United States US New York US-NY Kings US-NY-047 US-NY_1722 Rockaway Inlet (Brooklyn) L504943 H 40.5713274 -73.914299 2015-04-11 06:15:00 obsr870166 S22858746 Incidental P20 EBIRD 2.0 0 G1219424 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290612702 2021-03-26 07:07:10.758746 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-01-11 15:25:00 obsr1032565 S21313034 Traveling P22 EBIRD 85.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302459290 2018-08-04 16:59:17 526 species avibase-56CCA717 Northern Pintail Anas acuta 5 United States US New York US-NY Schuyler US-NY-097 13.0 Seneca Harbor Park L150677 H 42.383846 -76.873375 2015-03-10 18:58:00 obsr2173269 S22298537 Stationary P21 EBIRD 17.0 2.0 1 G1174914 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298072306 2021-03-26 06:29:56.44369 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Monroe US-NY-055 13.0 backyard feeders L2638641 P 43.0690813 -77.5043084 2015-02-16 09:30:00 obsr1287924 S21945583 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303298252 2021-03-24 19:27:13.077399 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-03-15 10:10:00 obsr142874 S22363644 Stationary P21 EBIRD 290.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS362506800 2021-03-26 07:45:44.030579 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Wyoming US-NY-121 28.0 2700 Centerline Road, Varysburg L11026787 P 42.736555 -78.3020117 2015-02-16 08:00:00 obsr2888451 S26583187 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306054266 2021-04-01 12:32:15.282601 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 36 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-29 13:00:00 obsr547602 S22575352 Traveling P22 EBIRD 45.0 2.414 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312053250 2021-04-01 12:10:56.762826 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville - Shady Lane L1545298 P 42.8613948 -73.9398946 2015-04-22 06:40:00 obsr2846677 S22997186 Traveling P22 EBIRD 50.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316038730 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 07:45:00 obsr2976 S23239883 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320827929 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-17 06:40:00 obsr2519357 S23508336 Traveling P22 EBIRD 680.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299096480 2018-08-04 16:58:05 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP--North Point L2721599 H 42.548268 -76.601241 2015-02-22 15:00:00 obsr2001485 S22034249 Stationary P21 EBIRD 17.0 3.0 1 G1156986 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316850352 2018-08-06 22:29:06 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Columbia US-NY-021 14.0 Taconic SP--Copake Falls Area L1259200 H 42.124201 -73.5012817 2015-05-07 09:35:00 obsr798742 S23286499 Traveling P22 EBIRD 100.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314295254 2021-04-01 11:30:42.037277 526 species avibase-56CCA717 Northern Pintail Anas acuta X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 06:22:00 obsr1433400 S23140782 Traveling P22 EBIRD 120.0 6.067 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313757105 2021-03-26 07:07:10.758746 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-28 08:00:00 obsr1620361 S23107035 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298068188 2021-04-01 12:32:15.282601 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-02-16 obsr2277801 S21945207 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310201122 2021-03-26 06:39:43.334073 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 14 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Triplets Br. area (btwn 77th-79th St. transv.) L4525727 H 40.779838 -73.9724077 2015-04-14 18:37:00 obsr1548221 S22876010 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320708930 2021-04-01 11:30:42.037277 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-11 07:15:00 obsr2235775 S23500892 Traveling P22 EBIRD 150.0 4.828 3.0 1 G1267396 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316266768 2021-03-26 06:39:43.334073 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 15:55:00 obsr822430 S23253504 Traveling P22 EBIRD 35.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307081998 2015-04-03 00:29:30 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 275 United States US New York US-NY Fulton US-NY-035 14.0 Cline Road Marsh/Forest Loop L2499202 P 43.0665479 -74.65976 2015-04-02 11:42:00 obsr316199 S22653763 Traveling P22 EBIRD 73.0 4.345 3.0 1 G1202219 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298493963 2021-11-09 22:04:47.967972 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-19 10:35:00 obsr647628 S21981961 Stationary P21 EBIRD 430.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320591044 2021-11-09 18:47:30.003269 32955 species avibase-41062654 Northern Parula Setophaga americana 2 United States US New York US-NY Dutchess US-NY-027 13.0 MaloneRdFoxRunClintonAveSpookyHollowRuskeyRdSodomRdBrowningRd L3650430 P 41.8161288 -73.8243055 2015-05-16 17:10:00 obsr1442681 S23494598 Traveling P22 EBIRD 55.0 8.69 3.0 1 G1275190 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288684777 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Nassau US-NY-059 30.0 US-NY-Hewlett-1295 Seawane Dr L1854570 P 40.633656 -73.689183 2015-01-03 08:45:00 obsr2906952 S21157529 Stationary P21 EBIRD 10.0 4.0 1 G1094310 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308052431 2021-03-23 17:00:13.087107 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-100 Christopher Cir L3543892 P 42.471798 -76.46726 2015-04-06 15:50:00 obsr887540 S22722727 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301522859 2015-03-07 18:25:47 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 9 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-03-07 07:00:00 obsr290506 S22219054 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309194385 2021-11-09 21:31:40.219848 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-11 15:00:00 obsr2700041 S22807107 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309054138 2021-03-26 06:39:43.334073 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-04-11 09:56:00 obsr2075771 S22798120 Traveling P22 EBIRD 87.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297451814 2021-03-26 06:17:19.712573 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Erie US-NY-029 13.0 Home L2093742 P 42.7338768 -78.7242615 2015-02-15 15:50:00 obsr916033 S21888950 Stationary P21 EBIRD 46.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303283961 2021-04-01 12:18:57.910168 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 700 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-03-15 10:28:00 obsr1655171 S22362521 Traveling P22 EBIRD 35.0 0.644 2.0 1 G1180902 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312176012 2021-03-30 19:43:32.881136 7429 species avibase-1327AC55 Osprey Pandion haliaetus 8 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-04-19 15:00:00 obsr2196583 S23005273 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322809109 2018-08-06 22:31:07 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-25 10:17:00 obsr1764243 S23627785 Traveling P22 EBIRD 147.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316491716 2015-05-06 12:58:07 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Chautauqua US-NY-013 13.0 South Ripley, Miller Road L3360057 P 42.21902 -79.75516 2015-05-06 11:45:00 obsr37369 S23265814 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322034611 2018-08-06 22:30:51 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-22 16:00:00 obsr646558 S23582791 Traveling P22 EBIRD 60.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293134381 2021-03-19 15:59:05.496822 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 9 United States US New York US-NY Allegany US-NY-003 28.0 86 between Alfred and Cuba L3316739 P 42.2929208 -77.9912567 2015-01-24 10:45:00 obsr1602357 S21533815 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311239795 2021-03-23 16:48:08.60516 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 5 United States US New York US-NY Seneca US-NY-099 13.0 East Varick pullout L3575348 P 42.775748 -76.769552 2015-04-19 12:24:00 obsr887540 S22944112 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315359746 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 06:27:00 obsr2514491 S23202049 Traveling P22 EBIRD 320.0 8.047 4.0 1 G1249270 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312482292 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-04-23 13:15:00 obsr958911 S23026082 Traveling P22 EBIRD 35.0 1.127 12.0 1 G1232894 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313201242 2021-04-01 11:24:19.637193 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Rochester-166 Harwick Rd L3592653 P 43.174157 -77.553755 2015-04-26 11:50:00 obsr1181085 S23071987 Traveling P22 EBIRD 200.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309013187 2021-04-01 11:49:53.573686 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 1 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-04-11 07:33:00 obsr2574755 S22795367 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315879657 2018-08-04 17:14:43 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Genesee US-NY-037 13.0 US-NY-Batavia-9299-9399 Cone Dorman Rd L1586160 P 42.958858 -78.203547 2015-05-04 10:15:00 obsr393804 S23230396 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300088707 2022-03-08 13:50:22.901821 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 18 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-02-28 13:30:00 obsr1872991 S22111058 Traveling P22 EBIRD 100.0 1.609 2.0 1 G1162068 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311179742 2021-11-02 20:32:06.137153 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-04-19 08:32:00 obsr1696616 S22940576 Traveling P22 EBIRD 94.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294325520 2015-02-01 10:43:00 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Ponquogue Bridge L593299 H 40.8400478 -72.4976635 2015-01-31 10:22:00 obsr41879 S21628097 Stationary P21 EBIRD 15.0 3.0 1 G1131304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311924916 2021-03-26 08:13:27.160698 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Tioga US-NY-107 28.0 Lockheed Martin Pond L2347076 H 42.097235 -76.221474 2015-04-21 07:37:00 obsr1318356 S22988677 Traveling P22 EBIRD 19.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306991849 2021-03-23 16:29:02.691496 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-02 09:55:00 obsr408487 S22646792 Stationary P21 EBIRD 230.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS320912517 2021-03-26 07:56:20.588749 11371 species avibase-75600969 Northern Flicker Colaptes auratus 4 United States US New York US-NY Nassau US-NY-059 30.0 Bayview Avenue, Manhasset Bay L1416657 P 40.7950657 -73.7090564 2015-05-18 11:00:00 obsr676630 S23512927 Traveling P22 EBIRD 35.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295821266 2021-04-01 11:24:19.637193 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-02-08 07:50:00 obsr745890 S21746703 Incidental P20 EBIRD 2.0 1 G1141257 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321485224 2021-03-26 07:56:20.588749 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Nassau US-NY-059 30.0 Sands Point Preserve L293460 H 40.8591053 -73.6970283 2015-05-20 11:00:00 obsr676630 S23548189 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308887994 2021-03-26 06:14:19.776945 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 2 United States US New York US-NY Columbia US-NY-021 14.0 Spencertown L2884205 P 42.3074669 -73.5266876 2015-04-10 12:00:00 obsr1901122 S22786264 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313236697 2018-08-04 17:12:28 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Orleans US-NY-073 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Mallard Overlook L153401 H 43.138336 -78.37112 2015-04-26 17:13:00 obsr2588479 S23074044 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305625922 2021-03-19 16:02:45.308962 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-03-27 15:23:00 obsr800690 S22543657 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302657738 2021-03-24 19:27:13.077399 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-03-12 09:55:00 obsr142874 S22313786 Stationary P21 EBIRD 305.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304413359 2015-03-21 15:09:20 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Beebe Lake L281786 H 42.4512932 -76.4767515 2015-03-21 11:28:00 obsr1655171 S22450965 Traveling P22 EBIRD 12.0 0.805 2.0 1 G1186931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319651356 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-05-14 17:58:00 obsr1760429 S23444064 Stationary P21 EBIRD 42.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323545486 2018-08-06 22:31:18 23187 species avibase-ACB9D1C6 Purple Martin Progne subis 2 United States US New York US-NY Chemung US-NY-015 28.0 Sullivanville Dam L312295 H 42.1930881 -76.7819872 2015-05-28 11:36:00 obsr1318356 S23676318 Traveling P22 EBIRD 15.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323385405 2021-04-01 11:15:31.646886 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 4 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-27 09:35:00 obsr2505956 S23665157 Traveling P22 EBIRD 120.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290156827 2021-04-01 12:35:52.669792 7011 species avibase-534FB490 Northern Gannet Morus bassanus 4 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--Liverpool Marina L837889 H 43.1007479 -76.2093687 2015-01-10 08:20:00 obsr660214 S21276408 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314388515 2021-04-01 11:30:42.037277 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus N X United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-04-30 13:15:00 obsr968874 S23146044 Traveling P22 EBIRD 35.0 1.127 14.0 1 G1244402 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317573398 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY New York US-NY-061 29.0 Battery Park City--Robert F. Wagner Jr. Park L458895 H 40.7049122 -74.0185565 2015-05-09 13:10:00 obsr259298 S23328312 Traveling P22 EBIRD 40.0 1.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293218147 2021-03-24 20:33:47.533911 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 4 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-01-25 10:18:00 obsr2760150 S21540350 Traveling P22 EBIRD 63.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301217133 2021-04-01 12:32:15.282601 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-03-06 10:30:00 obsr247620 S22195117 Traveling P22 EBIRD 90.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316075194 2021-04-01 10:51:06.899622 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Canadaway Creek Preserve L122937 H 42.47417 -79.36528 2015-05-05 10:49:00 obsr2497657 S23241923 Traveling P22 EBIRD 46.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305370373 2021-04-01 11:54:40.172593 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-03-25 09:00:00 obsr666331 S22523837 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306586593 2021-11-09 21:29:36.23688 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Ulster US-NY-111 13.0 Esopus Meadows Lighthouse Park L1396701 H 41.8684798 -73.9511925 2015-03-31 16:25:00 obsr2862523 S22616521 Traveling P22 EBIRD 65.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314493930 2021-11-09 17:58:40.313796 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-04-30 09:30:00 obsr1917973 S23152953 Traveling P22 EBIRD 135.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311541958 2021-03-30 19:29:33.633096 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-19 08:35:00 obsr1987335 S22962756 Rusty Blackbird Spring Migration Blitz P41 EBIRD 70.0 1.609 2.0 1 G1228234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289470254 2021-03-23 17:00:13.087107 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Tompkins US-NY-109 13.0 Lake van Leer (private) L524497 P 42.5196241 -76.6454744 2015-01-06 08:30:00 obsr1008519 S21221625 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316315343 2021-11-09 18:34:57.804398 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-05-05 12:00:00 obsr1264675 S23256337 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312752502 2021-04-01 11:54:40.172593 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 10 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-25 08:00:00 obsr1620361 S23045380 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS327575611 2021-04-01 11:15:31.646886 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus N 52 United States US New York US-NY Kings US-NY-047 30.0 McGolrick Park L2987624 H 40.7245046 -73.9433616 2015-05-16 08:05:00 obsr1644519 S23959301 Traveling P22 EBIRD 15.0 0.644 1.0 1 G1319494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303556020 2021-03-23 16:39:03.255227 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-03-16 11:25:00 obsr396989 S22384643 Traveling P22 EBIRD_NJ 225.0 7.725 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301813233 2022-02-13 06:32:05.759346 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 54 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-03-08 08:31:00 obsr1318356 S22242491 Traveling P22 EBIRD 24.0 0.483 2.0 1 G1170837 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311813978 2021-03-26 07:16:36.956617 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Schenectady US-NY-093 13.0 US-NY-Schenectady - 42.8176x-73.9253 - Apr 18, 2015, 6:52 PM L3580510 P 42.817564 -73.925258 2015-04-18 18:52:00 obsr2268588 S22981556 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322920182 2021-04-01 11:15:31.646886 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 07:30:00 obsr2078092 S23634706 Traveling P22 EBIRD 300.0 3.219 15.0 1 G1294128 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314794973 2015-05-01 23:22:55 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Chemung US-NY-015 28.0 Fitch Bridge Fishing Access L839621 H 42.0824462 -76.8655631 2015-05-01 14:20:00 obsr2430746 S23171154 Traveling P22 EBIRD 35.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318009662 2017-07-04 01:45:47 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Delaware US-NY-025 28.0 Green Flats Rd. L3630030 H 41.9521764 -75.2434487 2015-05-08 09:18:00 obsr1788273 S23351883 Traveling P22 EBIRD 32.0 3.862 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308755624 2015-04-09 21:08:06 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca - Triphammer Mall L1875287 P 42.4797303 -76.4820966 2015-04-07 18:01:00 obsr2683910 S22776867 Incidental P20 EBIRD 2.0 0 G1212815 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296396760 2021-03-24 20:33:47.533911 505 species avibase-C732CB10 American Black Duck Anas rubripes N 10 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-02-13 09:58:00 obsr1655171 S21794784 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305960779 2015-03-29 06:56:54 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Monroe US-NY-055 13.0 West Ridge Plaza, Greece L2998752 H 43.2040106 -77.6430658 2015-03-29 06:38:00 obsr749440 S22568745 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313984129 2015-04-29 07:31:43 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-04-29 07:20:00 obsr1792012 S23121485 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303019750 2021-04-01 12:14:19.266649 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 2 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-03-13 14:10:00 obsr1107696 S22342034 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310671986 2018-12-15 15:57:31 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Beezamer L2957441 P 42.3907709 -76.407305 2015-04-17 07:10:00 obsr140280 S22908258 Traveling P22 EBIRD 50.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293537945 2021-11-09 19:34:18.590596 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 2 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-01-27 08:40:00 obsr1665312 S21566000 Stationary P21 EBIRD 140.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316505750 2018-08-04 17:15:01 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Jefferson US-NY-045 US-NY_778 13.0 Perch River WMA--Vaadi Rd. L721316 H 44.094397 -75.9575415 2015-05-06 11:45:00 obsr544268 S23266734 Traveling P22 EBIRD 75.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305292457 2021-03-24 20:33:47.533911 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Reservoir L2133605 H 42.4125738 -76.4588892 2015-03-25 16:55:00 obsr887540 S22517781 Traveling P22 EBIRD 75.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308576252 2021-11-09 21:35:18.646328 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-08 07:50:00 obsr1636520 S22750419 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324053528 2021-03-19 16:54:27.713469 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Montgomery US-NY-057 13.0 Donato Road L3684466 P 42.82554 -74.52023 2015-05-30 12:30:00 obsr1181085 S23711282 Traveling P22 EBIRD 40.0 1.609 1.0 1 G1296400 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308450057 2015-04-08 11:59:24 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Westchester US-NY-119 30.0 81 Lake Street, Peach Lake, North Salem L141329 P 41.3594812 -73.5793018 2015-04-07 12:25:00 obsr1736921 S22753300 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316430313 2021-03-19 16:06:54.047432 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Owasco Lake inlet area L302042 H 42.7542393 -76.4637132 2015-05-06 08:04:00 obsr943683 S23262470 Traveling P22 EBIRD 77.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305236743 2021-04-01 10:49:39.496318 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 6 United States US New York US-NY Cayuga US-NY-011 13.0 Cornell Corn Fields L350644 H 42.7246746 -76.6526002 2015-03-08 10:15:00 obsr71667 S22513379 Traveling P22 EBIRD 45.0 0.161 11.0 1 G1192122 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316134994 2018-08-04 17:14:51 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-05 09:00:00 obsr1079517 S23245079 Area P23 EBIRD 35.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305734993 2021-03-30 19:13:38.458673 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-23 11:38:00 obsr745890 S22551953 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288536488 2019-10-24 20:10:38 616 species avibase-25C94A8F Greater Scaup Aythya marila 50 United States US New York US-NY Suffolk US-NY-103 US-NY_2800 Napeague Harbor L283128 H 41.0084776 -72.0499114 2015-01-02 11:30:00 obsr794187 S21145713 Stationary P21 EBIRD 40.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306598519 2021-03-26 08:05:20.615241 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Onondaga US-NY-067 13.0 Skan - 5 E. Lake St L631480 P 42.9468657 -76.4167383 2015-03-30 07:25:00 obsr2279567 S22617554 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320229468 2018-08-04 17:27:37 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Clay Pond WMA L745270 H 42.1168638 -79.1736603 2015-05-16 15:55:00 obsr1792012 S23475684 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315706164 2021-04-01 12:32:15.282601 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park /Hendr.Park L365070 P 40.6787341 -73.6936927 2015-05-04 08:25:00 obsr916370 S23220853 Traveling P22 EBIRD 125.0 3.541 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311903734 2021-04-01 12:18:57.910168 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Dubois Cottage (SbR) L2994397 P 42.4848288 -76.5484959 2015-04-18 17:14:00 obsr2867163 S22987222 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311950982 2021-03-19 16:19:20.977326 5976 species avibase-F4829920 American Woodcock Scolopax minor 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-21 16:45:00 obsr2071643 S22990475 Traveling P22 EBIRD 110.0 2.253 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290408571 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-11 11:55:00 obsr1536880 S21297158 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291276864 2021-11-09 22:33:07.565745 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Sullivan US-NY-105 28.0 Neversink River -Woodbourne north to Reservoir L1363573 P 41.7580474 -74.5985842 2015-01-16 09:30:00 obsr444155 S21367479 Traveling P22 EBIRD 30.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288945562 2015-01-11 16:06:03 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 4 United States US New York US-NY Fulton US-NY-035 13.0 Bowers Rd L2524776 P 43.0379051 -74.6983194 2015-01-03 12:35:00 obsr1708031 S21180554 Traveling P22 EBIRD 40.0 14.484 2.0 1 G1105364 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313012266 2021-03-30 19:07:52.958398 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 08:15:00 obsr1348614 S23060740 Traveling P22 EBIRD 360.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315378049 2021-03-19 16:44:35.607263 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 10 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-05-03 07:30:00 obsr934639 S23203009 Traveling P22 EBIRD 160.0 4.426 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311546660 2022-01-20 09:38:40.245267 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-04-19 16:00:00 obsr1882080 S22963070 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307689362 2021-03-26 08:11:28.0353 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Stillwater, NY 52 county route 76 L1926398 P 42.933103 -73.680332 2015-04-05 10:40:00 obsr2564462 S22696860 Stationary P21 EBIRD 81.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289231387 2021-04-01 12:14:19.266649 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 2 United States US New York US-NY Suffolk US-NY-103 30.0 Riverhead Sod Farms / 105 area L1741784 P 40.9584228 -72.6594854 2015-01-03 13:50:00 obsr2934754 S21202681 Traveling P22 EBIRD 60.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317809013 2021-11-09 18:46:29.098642 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 6 United States US New York US-NY Dutchess US-NY-027 13.0 Lagrange yard L3597754 P 41.6963841 -73.8455057 2015-04-21 16:30:00 obsr2786327 S23340820 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621343 2021-03-23 16:52:36.900075 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 35 United States US New York US-NY Suffolk US-NY-103 US-NY_766 30.0 USFWS_646 Target Rock NWR L1289048 H 40.9265987 -73.4334837 2015-02-08 14:50:00 obsr16685 S21731708 Traveling P22 EBIRD 115.0 4.426 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314069424 2021-11-09 18:47:28.0488 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook School Rd. L3637619 H 41.8493474 -73.6184591 2015-04-29 07:50:00 obsr1732267 S23126638 Traveling P22 EBIRD 249.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312076413 2021-03-23 17:20:04.546757 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-04-21 10:30:00 obsr2475075 S22998563 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324381939 2018-08-06 22:31:23 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegheny State Park L2896905 P 42.0892718 -78.7218704 2015-05-29 13:00:00 obsr1239415 S23732738 Traveling P22 EBIRD 225.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315236021 2021-04-01 11:30:42.037277 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-01 07:00:00 obsr2793388 S23195827 Traveling P22 EBIRD 157.0 4.023 6.0 1 G1248758 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301370530 2018-08-04 16:58:53 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 10 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-07 09:30:00 obsr71667 S22208020 Stationary P21 EBIRD 75.0 5.0 1 G1168730 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304600321 2021-11-09 20:53:17.759253 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Rockland US-NY-087 30.0 Nanuet L1293607 P 41.0931306 -74.0298271 2015-03-22 11:15:00 obsr1932005 S22464725 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310369571 2021-11-09 17:47:17.381431 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Dutchess US-NY-027 13.0 * Ring Road, Salt Point, NY L1084767 P 41.7968319 -73.8318479 2015-04-15 16:00:00 obsr763723 S22887427 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310568636 2021-11-09 18:32:20.227374 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Dutchess US-NY-027 13.0 2122 New Hackensack Road, Poughkeepsie, New York, US (41.66, -73.874) L233101 P 41.6600962 -73.8740462 2015-04-16 12:15:00 obsr842638 S22901503 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308426250 2021-04-01 11:54:40.172593 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 250 United States US New York US-NY Richmond US-NY-085 Arden Ave. Beach L635901 H 40.5276639 -74.1605043 2015-04-08 09:30:00 obsr1958124 S22751493 Stationary P21 EBIRD 5.0 2.0 1 G1211602 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310445347 2021-03-26 07:20:31.408164 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 2 United States US New York US-NY Suffolk US-NY-103 30.0 US-NY-Farmingdale-2269 Broad Hollow Rd L3567853 P 40.753678 -73.421676 2015-04-16 13:47:00 obsr839844 S22892548 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314026967 2021-03-26 06:21:54.883933 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Vale of Cashmere L1149386 H 40.6690561 -73.9683616 2015-04-29 08:03:00 obsr2476180 S23124100 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299007041 2015-02-22 16:19:49 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 10 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane L3408136 P 42.9610829 -78.9203525 2015-02-22 14:30:00 obsr1079517 S22024781 Stationary P21 EBIRD 15.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288129589 2021-04-01 11:24:19.637193 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 4 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-01 08:41:00 obsr991026 S21111473 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1087915 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312818880 2018-08-04 17:12:09 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Lindsay-Parsons Biodiversity Preserve (FLLT) L109055 H 42.3101677 -76.5216895 2015-04-25 10:54:00 obsr887540 S23049313 Traveling P22 EBIRD 128.0 2.414 3.0 1 G1238410 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308201971 2021-03-26 07:30:35.289997 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-06 17:16:00 obsr1092576 S22734516 Traveling P22 EBIRD 38.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302842762 2021-03-23 17:41:09.545385 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Westchester US-NY-119 30.0 27 Lower Trinity Pass Road L2848325 P 41.1858142 -73.5501737 2015-03-13 11:05:00 obsr2844530 S22327838 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301238821 2021-03-30 06:01:28.020715 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 5 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-06 12:40:00 obsr2224244 S22196749 Traveling P22 EBIRD 139.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310170005 2021-03-23 17:00:13.087107 636 species avibase-B77377EE Common Eider Somateria mollissima 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Owen's platform boardwalk (0.03km) L301741 P 42.4810062 -76.4511417 2015-04-15 08:18:00 obsr2307843 S22873939 Traveling P22 EBIRD 5.0 0.02 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317448664 2021-04-01 11:15:31.646886 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-09 07:17:00 obsr1189028 S23320700 Traveling P22 EBIRD 108.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306624211 2021-03-30 19:29:33.633096 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-03-31 16:33:00 obsr2448785 S22619534 Traveling P22 EBIRD 20.0 0.805 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292988170 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-24 14:30:00 obsr2793388 S21522175 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295924407 2018-01-07 20:13:45 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 4 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-02-10 07:32:00 obsr2420101 S21755169 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318045505 2021-12-24 11:02:14.483178 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-10 07:30:00 obsr991026 S23353819 Traveling P22 EBIRD 170.0 2.414 1.0 1 G1264080 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307783909 2022-02-27 09:35:49.066489 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-04-05 16:00:00 obsr545221 S22703680 Traveling P22 EBIRD 45.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313091527 2021-03-19 16:08:39.161312 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 12 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-26 07:15:00 obsr48167 S23065643 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301343510 2021-03-26 08:09:29.707251 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Otsego US-NY-077 28.0 5954 Cord 18 L2228745 P 42.78321 -75.248564 2015-02-16 08:30:00 obsr1311461 S22205798 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316711353 2021-11-15 03:06:58.889978 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 17 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 08:34:00 obsr1548221 S23278823 Traveling P22 EBIRD 64.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294320213 2015-02-01 09:56:26 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 US-NY-Savannah-13385 Seneca St L3328767 P 43.066515 -76.750186 2015-01-31 11:20:00 obsr800690 S21627616 Traveling P22 EBIRD 10.0 1.207 1.0 1 G1131257 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320408429 2021-03-31 04:01:57.961467 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-16 18:30:00 obsr1962295 S23484867 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1276357 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304038438 2018-08-04 17:01:58 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-03-19 12:54:00 obsr354090 S22422227 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291651597 2021-04-01 11:47:43.260314 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 7 United States US New York US-NY Oswego US-NY-075 US-NY_759 13.0 US-NY-Oswego County-Winter Waterfowl Survey - L2570693 P 43.67099 -76.186785 2015-01-18 07:25:00 obsr2945658 S21397436 Traveling P22 EBIRD 330.0 48.279 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291056792 2018-08-04 16:53:17 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park- Pier 4 ruins L1067640 P 40.6963717 -73.9989924 2015-01-13 11:30:00 obsr263005 S21349360 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294034976 2021-03-26 07:00:33.333856 6339 species avibase-8535345B Herring Gull Larus argentatus N 24 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--LIE (CIP Intersection) L621112 H 40.7549945 -73.7439895 2015-01-30 09:30:00 obsr1160328 S21605292 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308420374 2015-04-08 08:54:25 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 4 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA--viewing platform L2141318 H 43.209271 -76.326006 2015-04-08 08:36:00 obsr2561576 S22750956 Stationary P21 EBIRD 17.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317736566 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 07:30:00 obsr360223 S23337035 Traveling P22 EBIRD 240.0 6.437 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319113120 2022-02-04 06:14:13.892644 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-05-12 12:30:00 obsr2277801 S23413509 Historical P62 EBIRD 40.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311610360 2015-05-13 20:19:57 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 2 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-04-20 11:40:00 obsr2224244 S22967857 Traveling P22 EBIRD 77.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS370895197 2021-04-01 11:30:42.037277 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-01 07:30:00 obsr2254356 S27302246 Historical P62 EBIRD 210.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309957373 2021-03-24 20:33:47.533911 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 4 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail L1498729 H 42.4795201 -76.4551642 2015-04-14 10:30:00 obsr869999 S22859015 Traveling P22 EBIRD 35.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309458124 2021-11-09 22:04:59.499979 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 11 United States US New York US-NY Ulster US-NY-111 13.0 Saugerties Lighthouse L490267 H 42.0722249 -73.9367873 2015-04-12 04:59:00 obsr1181085 S22823487 Traveling P22 EBIRD 35.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288968653 2021-11-09 21:49:39.883428 303 species avibase-B59E1863 Canada Goose Branta canadensis N 1 United States US New York US-NY Ulster US-NY-111 13.0 Home L279922 P 42.0731875 -73.9420979 2015-01-03 09:30:00 obsr2546168 S21182376 Incidental P20 EBIRD 2.0 0 G1094966 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294051740 2021-04-01 12:39:55.985714 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Rensselaer US-NY-083 13.0 Schodack, NY, Eleanor Dr. L2591189 P 42.5019949 -73.6895514 2015-01-30 15:10:00 obsr712039 S21606651 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307016899 2021-03-19 16:26:51.561076 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 21 United States US New York US-NY Franklin US-NY-033 13.0 Dickinson L198982 T 44.74836 -74.56462 2015-04-02 09:15:00 obsr1672399 S22648942 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313833206 2021-03-23 17:00:13.087107 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-28 08:01:00 obsr34822 S23111845 Traveling P22 EBIRD 42.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290911548 2016-10-10 10:35:42 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 06:45:00 obsr2918150 S21337589 Traveling P22 EBIRD 75.0 18.99 44.0 1 G1108327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318199014 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-10 05:30:00 obsr2233143 S23361694 Area P23 EBIRD 510.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296751811 2021-03-23 16:47:03.540174 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Schenectady US-NY-093 13.0 2882 Touareuna Road L3368636 P 42.9321555 -74.0862114 2015-02-14 11:20:00 obsr481595 S21827136 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305807168 2021-03-26 07:16:36.956617 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Schenectady US-NY-093 13.0 Niskayuna Railroad Station at Lions Park L505923 H 42.7776374 -73.823356 2015-03-28 12:30:00 obsr481595 S22557319 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323271290 2021-03-26 06:17:19.712573 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-25 13:10:00 obsr1379161 S23657482 Traveling P22 EBIRD 410.0 1.609 1.0 1 G1292307 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318933637 2021-03-24 19:48:44.880783 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-12 08:00:00 obsr2240964 S23402806 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318895957 2021-04-01 11:24:19.637193 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa N 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-12 06:58:00 obsr1243175 S23400863 Traveling P22 EBIRD 15.0 0.016 2.0 1 G1267219 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309368088 2021-04-01 11:30:42.037277 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-11 17:30:00 obsr2793388 S22818252 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323741267 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-29 06:04:00 obsr1189028 S23690997 Traveling P22 EBIRD 165.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288606054 2021-04-01 11:49:53.573686 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-01-02 07:00:00 obsr352522 S21151408 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294405195 2018-08-04 16:55:36 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-King Ferry-1356-1398 County Rte 45A L3332402 P 42.700699 -76.646514 2015-02-01 15:20:00 obsr2001485 S21634300 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320121380 2018-08-06 22:30:11 505 species avibase-C732CB10 American Black Duck Anas rubripes 6 United States US New York US-NY Chemung US-NY-015 28.0 Sullivanville Dam L312295 H 42.1930881 -76.7819872 2015-05-16 11:22:00 obsr1318356 S23470269 Traveling P22 EBIRD 21.0 0.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310284533 2021-04-01 11:15:31.646886 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum N 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-15 07:50:00 obsr827632 S22881534 Traveling P22 EBIRD 205.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306907902 2018-02-01 15:11:46 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor28 L3513970 H 42.4979113 -76.1702413 2015-04-02 09:52:00 obsr1696616 S22640385 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311327906 2021-11-15 03:06:58.889978 5155 species avibase-4880DC55 Virginia Rail Rallus limicola X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-17 09:15:00 obsr98313 S22949448 Traveling P22 EBIRD 180.0 1.609 4.0 1 G1226609 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318652074 2021-04-01 12:32:15.282601 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 10 ON C4 ON United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-11 12:15:00 obsr647628 S23386429 Traveling P22 EBIRD 150.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313171507 2021-04-01 12:32:15.282601 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N X United States US New York US-NY Nassau US-NY-059 US-NY_872 30.0 Muttontown Preserve L250511 H 40.8315708 -73.5416646 2015-04-26 12:30:00 obsr2207991 S23070266 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309874108 2021-03-24 20:23:39.258075 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 2 United States US New York US-NY Suffolk US-NY-103 30.0 Uplands Farm Sanctuary L123000 H 40.8574672 -73.4535553 2015-04-13 11:00:00 obsr143739 S22853116 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303594951 2021-03-26 08:14:57.071052 5923 species avibase-15369E8E Dunlin Calidris alpina 1 United States US New York US-NY Westchester US-NY-119 30.0 Upper Mount Hope, Hastings-on-Hudson L3493532 P 40.9961499 -73.8749993 2015-03-13 08:45:00 obsr641553 S22387513 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522699 2018-08-04 17:08:07 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Richmond US-NY-085 30.0 Blue Heron Park--Butterfly Pond L2020749 H 40.5326241 -74.1732539 2015-04-08 13:18:00 obsr155915 S22758860 Rusty Blackbird Spring Migration Blitz P41 EBIRD 23.0 0.483 2.0 1 G1211593 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322249638 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-23 14:08:00 obsr334398 S23595287 Traveling P22 EBIRD 57.0 0.644 3.0 1 G1472365 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318587305 2015-05-11 12:34:05 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-11 11:00:00 obsr991026 S23382772 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300164536 2021-12-10 08:21:29.396662 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-28 08:45:00 obsr114791 S22116997 Stationary P21 EBIRD 75.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312007837 2021-04-01 12:40:54.473014 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Saratoga US-NY-091 13.0 Maple L2823815 P 42.999156 -73.674169 2015-04-21 15:17:00 obsr648176 S22994183 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314540117 2021-11-09 18:46:57.560295 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Dutchess US-NY-027 13.0 Jameson Hill Road, Clinton Corners (2.4miles) L3603804 P 41.8353805 -73.7465429 2015-04-30 09:20:00 obsr2175245 S23155951 Traveling P22 EBIRD 45.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305691771 2017-08-16 02:23:57 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 7 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-27 15:30:00 obsr1047534 S22548764 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310833011 2021-11-15 03:06:58.889978 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-11 12:40:00 obsr2072398 S22918928 Traveling P22 EBIRD 180.0 1.609 2.0 1 G1223862 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323754326 2021-03-19 16:19:20.977326 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Erie US-NY-029 13.0 Emery County Park L681419 H 42.7146691 -78.5970926 2015-05-29 10:27:00 obsr2939916 S23691887 Traveling P22 EBIRD 52.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302920997 2021-03-23 17:23:45.772216 6526 species avibase-4D2FF6F1 Common Tern Sterna hirundo X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-03-13 08:10:00 obsr72341 S22333962 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303042645 2021-03-26 07:20:31.408164 8806 species avibase-FC4D40D2 Long-eared Owl Asio otus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven, Old Stump Road L1796581 P 40.774188 -72.89986 2015-02-28 06:50:00 obsr613775 S22343994 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317222222 2021-11-09 18:49:29.473548 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA--Cruger Island Rd. L3840109 H 42.0303286 -73.9201355 2015-05-07 17:15:00 obsr671490 S23307162 Traveling P22 EBIRD 90.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304265294 2021-03-23 17:40:24.452972 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 4 Male, Adult (1); Female, Adult (3) United States US New York US-NY Warren US-NY-113 13.0 Shermantown Rd. Portage Trail L960269 H 43.3064521 -73.6251848 2015-03-20 17:29:00 obsr1222746 S22439994 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322933714 2018-08-06 22:31:06 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant--East L870144 H 42.990146 -78.2094383 2015-05-25 09:00:00 obsr393804 S23635646 Traveling P22 EBIRD 140.0 5.794 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137974 2021-03-24 21:13:42.099821 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 4 United States US New York US-NY Westchester US-NY-119 30.0 Rockefeller SP Preserve--Rockwood Hall L2724279 H 41.1158745 -73.8650465 2015-01-01 08:35:00 obsr258431 S21112231 Traveling P22 EBIRD 135.0 1.609 26.0 1 G1088062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319862824 2021-03-19 16:06:54.047432 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.3458884 -76.710341 2015-05-15 12:10:00 obsr2744341 S23456113 Traveling P22 EBIRD 110.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303139723 2021-03-23 16:33:05.415158 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi N 5 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Environmental Center L1476823 H 40.7621022 -73.7535993 2015-03-14 16:00:00 obsr676630 S22351564 Rusty Blackbird Spring Migration Blitz P41 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295256829 2019-07-23 17:27:16 592 species avibase-3072CC16 Redhead Aythya americana 4 Female, Adult (1); Male, Adult (3) United States US New York US-NY Suffolk US-NY-103 US-NY_782 PI--Route 1 L985254 P 41.1763283 -72.2099161 2015-02-06 11:36:00 obsr2485753 S21702377 Traveling P22 EBIRD 46.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316084460 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-05 10:46:00 obsr2321296 S23242423 Traveling P22 EBIRD 76.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311377178 2021-04-01 11:15:31.646886 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 11:48:00 obsr1982614 S22952574 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311447307 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-19 10:26:00 obsr574658 S22956861 Traveling P22 EBIRD 144.0 2.736 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317395792 2018-02-01 15:11:46 7235 species avibase-031409C7 Tricolored Heron Egretta tricolor 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor28 L3513970 H 42.4979113 -76.1702413 2015-05-09 05:04:00 obsr620377 S23317461 Stationary P21 EBIRD 6.0 2.0 1 G1272259 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306416715 2021-05-01 05:40:50.213405 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L3526134 P 40.59235 -73.89143 2015-03-28 17:11:00 obsr1348614 S22596347 Traveling P22 EBIRD 180.0 2.0 2.0 1 G1199300 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288494433 2021-12-10 08:21:29.396662 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-01-02 13:00:00 obsr2941109 S21142059 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304833002 2018-08-04 17:02:27 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Tioga US-NY-107 28.0 Confluence Park, Owego L2011248 H 42.0957386 -76.2724543 2015-03-22 12:45:00 obsr317968 S22481527 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293560786 2021-03-24 21:13:42.099821 23291 species avibase-58C502EA Barn Swallow Hirundo rustica N X United States US New York US-NY Westchester US-NY-119 30.0 27 Lower Trinity Pass Road L2848325 P 41.1858142 -73.5501737 2015-01-27 11:00:00 obsr2844530 S21567746 Stationary P21 EBIRD 177.0 2.0 1 G1126839 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324095870 2021-04-01 11:30:42.037277 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Harlem Meer L278127 H 40.7971185 -73.9523133 2015-05-25 16:25:00 obsr1548221 S23713987 Traveling P22 EBIRD 42.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310638971 2015-05-07 17:07:25 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-17 07:02:00 obsr455249 S22906210 Traveling P22 EBIRD 15.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304601060 2021-04-01 11:49:53.573686 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-03-22 10:12:00 obsr1765131 S22464782 Stationary P21 EBIRD 12.0 2.0 1 G1191065 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311453516 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 25 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-19 06:17:00 obsr924076 S22957285 Traveling P22 EBIRD 699.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308524690 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-08 10:35:00 obsr827632 S22759010 Traveling P22 EBIRD 215.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306328084 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-30 10:00:00 obsr263005 S22596146 Traveling P22 EBIRD 210.0 4.023 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS324406192 2021-03-19 16:08:39.161312 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 10 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 09:17:00 obsr2155111 S23734220 Traveling P22 EBIRD 112.0 0.08 6.0 1 G1298714 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315317141 2021-04-01 11:15:31.646886 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 08:30:00 obsr904434 S23199853 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294110731 2015-01-31 09:41:31 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-01-31 07:40:00 obsr666964 S21610951 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307522054 2015-04-04 18:14:07 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Rensselaer US-NY-083 13.0 Jensis Rd L998226 P 42.5520845 -73.7279069 2015-04-02 17:45:00 obsr489496 S22685193 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312896416 2021-03-26 06:39:43.334073 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY New York US-NY-061 30.0 Theodore Roosevelt Park, Manhattan L1338650 H 40.7819776 -73.9747551 2015-04-25 13:00:00 obsr1555046 S23053763 Traveling P22 EBIRD 5.0 0.402 2.0 1 G1235483 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319515124 2021-03-19 16:29:59.503892 27616 species avibase-D77E4B41 American Robin Turdus migratorius 8 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-14 09:43:00 obsr1302604 S23436456 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320761379 2021-03-31 04:01:57.961467 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-16 18:30:00 obsr1561508 S23503766 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1276357 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305077420 2021-11-09 19:56:56.856613 32853 species avibase-83F326C8 Golden-winged Warbler Vermivora chrysoptera 2 United States US New York US-NY Orange US-NY-071 28.0 Goshen Black Dirt L3373680 P 41.3426647 -74.3757248 2015-03-24 13:20:00 obsr186871 S22501172 Traveling P22 EBIRD 45.0 4.828 2.0 1 G1191360 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306134723 2021-11-09 19:46:28.039499 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 2 United States US New York US-NY Orange US-NY-071 28.0 Sterling Forest SP--Eagle Lake section L2206038 H 41.1523367 -74.23615 2015-03-29 16:20:00 obsr2346161 S22581538 Traveling P22 EBIRD 55.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310810227 2021-03-23 17:22:05.708166 591 species avibase-1929E1E1 Canvasback Aythya valisineria 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-17 07:00:00 obsr1000124 S22917426 Area P23 EBIRD 60.0 2.59 2.0 1 G1223671 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293887108 2015-01-29 17:43:36 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Monroe US-NY-055 13.0 Honeoye Creek at Sibley Road L3326097 P 42.9671162 -77.6135695 2015-01-29 13:30:00 obsr2504709 S21593750 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS371507545 2021-03-26 07:56:20.588749 27380 species avibase-E53FC25C Swainson's Thrush Catharus ustulatus 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-15 12:30:00 obsr1647452 S27352651 Traveling P22 EBIRD 60.0 0.805 3.0 1 G1279925 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306590102 2021-11-15 03:06:58.889978 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-31 12:45:00 obsr1555046 S22616803 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1208366 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310670994 2021-03-19 16:08:39.161312 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Saint Hyacinth Chapel and Cemetery L2057391 H 42.5051356 -79.3030071 2015-04-17 13:46:00 obsr2497657 S22908203 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314481032 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 10:30:00 obsr979921 S23152146 Traveling P22 EBIRD 180.0 5.633 2.0 1 G1244781 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325132274 2019-07-24 17:33:24 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr2326114 S23785634 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294318748 2021-04-01 11:47:43.260314 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-02-01 08:30:00 obsr2914424 S21627447 Traveling P22 EBIRD 74.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310384438 2021-03-30 19:07:52.958398 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-04-16 07:30:00 obsr1605975 S22888540 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301390659 2019-08-26 22:40:47 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Oswego-134-156 Water St L3461274 P 43.457613 -76.511124 2015-03-07 13:05:00 obsr1092576 S22209613 Stationary P21 EBIRD 5.0 4.0 1 G1168806 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309961246 2021-11-09 17:42:54.12862 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 2 United States US New York US-NY Dutchess US-NY-027 28.0 Sylvan Lake L1034653 H 41.6086902 -73.7405241 2015-04-14 08:05:00 obsr1732267 S22859253 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305091841 2021-03-30 19:07:52.958398 483 species avibase-85625D75 Mallard Anas platyrhynchos 63 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek L845821 H 40.5811388 -73.9927912 2015-03-24 14:55:00 obsr1821546 S22502284 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321885390 2015-05-22 06:56:41 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Jefferson US-NY-045 13.0 33114-34624 Martin Street Road, 34326-34624 New York 26 L3663048 P 44.01686 -75.68495 2015-05-22 06:55:00 obsr2983863 S23573286 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317275622 2021-04-01 11:30:42.037277 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 09:30:00 obsr111994 S23310174 Traveling P22 EBIRD 360.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320375909 2021-03-26 06:17:19.712573 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Erie US-NY-029 13.0 JP's - Harvey Dr. L499698 P 42.8905864 -78.6831808 2015-05-16 10:30:00 obsr780938 S23483171 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307690074 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-05 09:09:00 obsr1649154 S22696899 Traveling P22 EBIRD 173.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303462212 2018-08-04 17:00:42 1472 domestic avibase-05471785 Indian Peafowl (Domestic type) Pavo cristatus (Domestic type) 4 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-03-14 12:30:00 obsr317968 S22376829 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318675337 2021-11-02 20:32:06.137153 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-11 12:15:00 obsr317968 S23387730 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317686700 2018-08-04 17:15:40 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Erie US-NY-029 13.0 US-NY-Depew-98 Honorine Dr L3626955 P 42.889782 -78.718046 2015-05-09 15:49:00 obsr2052252 S23334379 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296492591 2015-02-13 16:02:48 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-02-13 15:40:00 obsr879105 S21803342 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316676633 2021-04-01 11:30:42.037277 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 07:30:00 obsr1102914 S23276879 Traveling P22 EBIRD 300.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300194615 2019-07-23 17:27:34 591 species avibase-1929E1E1 Canvasback Aythya valisineria 16 United States US New York US-NY Suffolk US-NY-103 Dune Road (Moriches Inlet to Shinnecock Inlet) L1057391 P 40.7992566 -72.615509 2015-02-28 14:30:00 obsr247620 S22119195 Traveling P22 EBIRD 75.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291933631 2018-08-04 16:54:03 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-01-19 14:00:00 obsr1893950 S21418715 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289110590 2021-04-01 12:14:19.266649 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-01-04 14:40:00 obsr2902954 S21193664 Traveling P22 EBIRD 80.0 2.414 2.0 1 G1095692 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289979138 2021-03-26 07:52:59.845315 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-08 07:43:00 obsr316199 S21262083 Area P23 EBIRD 80.0 2.59 2.0 1 G1101918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289394289 2015-01-05 21:00:14 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus 1 United States US New York US-NY Montgomery US-NY-057 13.0 Ford's Bush Road L1104720 P 42.959155 -74.7397757 2015-01-05 16:18:00 obsr1683226 S21215652 Traveling P22 EBIRD 2.0 0.966 3.0 1 G1097981 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307310954 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 101 S C2 S United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-03 13:23:00 obsr924076 S22670270 Traveling P22 EBIRD 380.0 6.437 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS300017072 2021-03-23 17:35:57.093178 431 species avibase-90E2543E Blue-winged Teal Spatula discors 4 United States US New York US-NY Rensselaer US-NY-083 13.0 East Poestenkill L3379546 P 42.682929 -73.4960439 2015-02-28 09:00:00 obsr510327 S22104911 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307514477 2021-03-30 19:29:33.633096 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-04 09:30:00 obsr544268 S22684689 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 1.609 2.0 1 G1204413 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314030309 2021-03-19 16:25:42.617988 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Essex US-NY-031 13.0 Sandy Beach, Bulwagga Bay L3040237 P 44.034141 -73.457923 2015-04-28 15:20:00 obsr2693145 S23124289 Traveling P22 EBIRD 56.0 0.483 2.0 1 G1242483 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308434119 2021-03-23 16:39:03.255227 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Richmond US-NY-085 Oakwood Beach--tidal marshes, NW to Mill Rd. L2167041 H 40.5494903 -74.1131688 2015-04-08 10:06:00 obsr1958124 S22752115 Traveling P22 EBIRD 7.0 0.322 2.0 1 G1211599 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306400602 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 30 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.9339927 -76.7278183 2015-03-29 14:21:00 obsr2683910 S22601838 Traveling P22 EBIRD 28.0 2.414 2.0 1 G1198688 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307830931 2021-04-01 11:30:42.037277 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-04 12:30:00 obsr237150 S22707006 Traveling P22 EBIRD 60.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319398544 2021-04-01 11:30:42.037277 27374 species avibase-B904BB22 Gray-cheeked Thrush Catharus minimus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 16:35:00 obsr609516 S23429503 Traveling P22 EBIRD 145.0 2.897 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292741442 2021-03-26 07:16:36.956617 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Schenectady US-NY-093 13.0 Niskayuna Railroad Station at Lions Park L505923 H 42.7776374 -73.823356 2015-01-23 09:05:00 obsr2321296 S21502843 Traveling P22 EBIRD 64.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321406407 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-17 11:00:00 obsr1780417 S23543479 Traveling P22 EBIRD 362.0 0.322 2.0 1 G1280415 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313722356 2021-03-23 17:00:13.087107 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--office 248 L286682 P 42.4804061 -76.4510196 2015-04-27 08:30:00 obsr2001485 S23104817 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290088279 2021-11-01 23:11:19.414929 11528 species avibase-F3DA111C Merlin Falco columbarius 72 United States US New York US-NY Kings US-NY-047 Coney Island Beach & Boardwalk L845817 H 40.5719793 -73.9778996 2015-01-09 14:30:00 obsr2448957 S21270928 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302594902 2021-04-01 12:41:58.738824 303 species avibase-B59E1863 Canada Goose Branta canadensis N 1 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-03-11 18:19:00 obsr2173269 S22309333 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS307458102 2021-03-26 06:39:43.334073 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-04-03 16:10:00 obsr1439545 S22680889 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324584704 2021-03-30 19:13:38.458673 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 43.2889x-77.6755 - May 10, 2015, 7:31 PM L3632623 P 43.288987 -77.675735 2015-05-10 18:30:00 obsr1598543 S23746269 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323992823 2022-02-17 14:32:23.002448 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-30 07:32:00 obsr1481464 S23707572 Traveling P22 EBIRD 103.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314150915 2021-11-15 03:06:58.889978 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 09:00:00 obsr139757 S23131479 Traveling P22 EBIRD 270.0 4.828 4.0 1 G1243147 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298158676 2021-04-01 11:54:40.172593 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-02-17 15:58:00 obsr1032565 S21952671 Traveling P22 EBIRD 109.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308450856 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-07 07:45:00 obsr2152799 S22753344 Traveling P22 EBIRD 240.0 8.047 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302661747 2015-03-12 15:29:58 6616 species avibase-7E022378 Common Loon Gavia immer 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Oneida US-NY-065 13.0 Mill Pond Way, Blossvale, NY L2660952 P 43.2747604 -75.6936818 2015-03-12 14:00:00 obsr1640315 S22314078 Stationary P21 EBIRD 2.0 2.0 1 G1176749 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306580965 2021-11-09 18:27:18.873475 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 25 United States US New York US-NY Dutchess US-NY-027 13.0 Allen Road yard list, Salt Point L1943130 P 41.8350253 -73.8021156 2015-03-31 08:40:00 obsr2175245 S22616064 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317977017 2021-04-01 12:30:15.438381 7261 species avibase-86D45B8F Green Heron Butorides virescens 1 United States US New York US-NY Herkimer US-NY-043 13.0 Mckoon's rd L2255319 P 42.922979 -75.0338745 2015-04-18 11:15:00 obsr1683226 S23350209 Stationary P21 EBIRD 30.0 2.0 1 G1261089 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291568979 2019-07-23 17:27:03 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-17 13:35:00 obsr1982614 S21390850 Stationary P21 EBIRD 70.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306283286 2021-11-20 09:30:27.481745 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake, end of Creekwalk L1331492 H 43.0680178 -76.1778662 2015-03-29 09:10:00 obsr1167884 S22592927 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309030838 2020-03-22 07:58:01 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-11 09:26:00 obsr1696616 S22796581 Stationary P21 EBIRD 26.0 2.0 1 G1214148 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318690624 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.3458884 -76.710341 2015-05-11 09:15:00 obsr1633923 S23388529 Traveling P22 EBIRD 210.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290806120 2022-02-18 10:47:29.953615 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-01-13 07:22:00 obsr1062070 S21328633 Stationary P21 EBIRD 124.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322763305 2018-08-06 22:31:05 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-25 07:33:00 obsr334398 S23625063 Traveling P22 EBIRD 8.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312871994 2018-08-04 17:12:12 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 14 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-04-25 12:45:00 obsr349211 S23052353 Traveling P22 EBIRD 165.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304099463 2021-04-01 11:47:43.260314 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 54 United States US New York US-NY Oswego US-NY-075 13.0 Oneida Lake, Brewerton L2690668 H 43.2368243 -76.1249542 2015-03-19 14:50:00 obsr979921 S22426905 Traveling P22 EBIRD 45.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305596190 2021-03-26 07:20:31.408164 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 44 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--Golf Course L507417 H 40.6235296 -73.2860184 2015-03-27 09:00:00 obsr247620 S22541469 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313818167 2021-04-01 11:30:42.037277 662 species avibase-FB738385 Bufflehead Bucephala albeola 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 08:51:00 obsr2792913 S23110933 Traveling P22 EBIRD 135.0 2.414 25.0 1 G1254869 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320508864 2021-03-26 06:21:54.883933 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 12 United States US New York US-NY Kings US-NY-047 Coney Island Creek Park L614792 H 40.5813224 -74.0052688 2015-05-17 11:20:00 obsr187432 S23490345 Traveling P22 EBIRD 39.0 0.129 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312160428 2015-04-22 19:09:29 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N Sherwood Pltform base - small brdg (0.15km) L1370979 P 42.4801875 -76.4541519 2015-04-22 18:14:00 obsr2307843 S23004144 Traveling P22 EBIRD 5.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312807366 2021-04-01 11:15:31.646886 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-25 08:45:00 obsr827632 S23048720 Traveling P22 EBIRD 195.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296396501 2016-02-04 19:35:06 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Onondaga US-NY-067 13.0 730 Banner Rd, Tully, N.Y. L1036489 P 42.8066969 -76.1280817 2015-02-13 07:51:00 obsr1178949 S21794761 Stationary P21 EBIRD 101.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300115119 2021-03-26 07:17:57.136956 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Seneca US-NY-099 13.0 Willard Town Park L356503 H 42.6813804 -76.8808201 2015-02-28 10:19:00 obsr1092576 S22113326 Traveling P22 EBIRD 11.0 0.402 2.0 1 G1162280 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315830457 2021-04-01 11:30:42.037277 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 Female, Adult (1) United States US New York US-NY New York US-NY-061 30.0 10034 New York L171669 PC 40.867027 -73.92021 2015-05-04 12:30:00 obsr1740835 S23227522 Traveling P22 EBIRD 150.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290177087 2015-01-10 13:03:18 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Suffolk US-NY-103 30.0 Arshamomaque Preserve L273407 H 41.0956498 -72.3911698 2015-01-10 12:25:00 obsr2485753 S21278246 Traveling P22 EBIRD 36.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307053431 2021-04-01 11:24:19.637193 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 21 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-04-02 11:29:00 obsr1545618 S22651665 Stationary P21 EBIRD 52.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290923194 2019-01-03 10:54:11 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-B L3288880 P 40.21933 -73.19694 2015-01-11 09:00:00 obsr143739 S21338587 Traveling P22 EBIRD 60.0 15.289 44.0 1 G1108334 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS295382002 2015-02-07 15:25:26 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Saratoga US-NY-091 13.0 Personal residence L1937009 P 42.9576788 -74.0717125 2015-02-07 07:30:00 obsr1557094 S21712657 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296769178 2019-07-23 17:27:21 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Suffolk US-NY-103 30.0 Goldsmiths Inlet L138043 H 41.0541647 -72.4740449 2015-02-14 14:19:00 obsr2485753 S21828683 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307755811 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 17 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 10:15:00 obsr2336264 S22701528 Traveling P22 EBIRD 285.0 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318377385 2021-03-30 06:01:28.020715 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 4 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 waterfront village/Irish Famine memorial L3546288 P 42.8828428 -78.8807631 2015-05-10 10:15:00 obsr2071643 S23371401 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290537585 2021-11-09 22:28:59.791993 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Sullivan US-NY-105 US-NY_796 28.0 Mongaup Valley WMA Eagle Blind L1097151 H 41.553811 -74.7868538 2015-01-11 15:30:00 obsr1015200 S21307564 Stationary P21 EBIRD 300.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323202794 2021-12-24 11:02:14.483178 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-26 10:20:00 obsr1534851 S23653111 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292027946 2021-03-23 17:26:08.495143 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Nassau US-NY-059 30.0 Sands Point Preserve L293460 H 40.8591053 -73.6970283 2015-01-19 09:50:00 obsr350767 S21426328 Traveling P22 EBIRD 84.0 0.402 2.0 1 G1116479 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319586408 2021-11-09 18:44:19.883702 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Dutchess US-NY-027 13.0 70 Daheim Rd, Millbrook L3404999 P 41.801007 -73.6622572 2015-05-14 06:15:00 obsr445356 S23440439 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310664790 2021-04-01 11:30:42.037277 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla X United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-17 11:33:00 obsr271498 S22907822 Stationary P21 EBIRD 63.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303948507 2021-11-09 19:57:10.225094 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region - Onion Ave area L3497692 P 41.3612904 -74.4362183 2015-03-18 17:00:00 obsr2816169 S22415053 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318491859 2018-08-06 22:29:38 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas X United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-11 06:55:00 obsr1044068 S23377801 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310982639 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 50 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 08:15:00 obsr822430 S22928374 Traveling P22 EBIRD 230.0 4.828 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288738859 2021-03-30 19:29:33.633096 11371 species avibase-75600969 Northern Flicker Colaptes auratus 13 United States US New York US-NY Suffolk US-NY-103 30.0 Patchogue Lake L852362 H 40.7684842 -73.0212522 2015-01-03 11:30:00 obsr2534001 S21162144 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308079116 2021-03-23 17:00:13.087107 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--Snyder Rd. L763841 H 42.4976053 -76.4600587 2015-04-06 16:59:00 obsr1828453 S22724725 Traveling P22 EBIRD 34.0 0.322 2.0 1 G1208554 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312297709 2015-04-23 12:28:17 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 3 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Dryden-1369–1417 Daisy Hollow Rd L3584187 P 42.477577 -76.230289 2015-04-23 06:25:00 obsr1828453 S23013357 Stationary P21 EBIRD 11.0 2.0 1 G1232710 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297451927 2021-04-01 11:15:31.646886 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 45 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach--West L519918 H 40.5830444 -73.93058 2015-02-15 10:30:00 obsr2078798 S21888961 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS336306550 2021-03-19 16:19:20.977326 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island Marsh L3568350 P 42.9622229 -78.9626992 2015-04-29 14:05:00 obsr2082724 S24603484 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317469276 2021-03-30 19:13:38.458673 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-09 09:45:00 obsr934639 S23321869 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313816284 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 07:12:00 obsr609516 S23110816 Traveling P22 EBIRD 297.0 7.242 30.0 1 G1241310 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306151659 2015-03-29 20:03:14 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Wayne US-NY-117 13.0 2155 Evergreen Circle, Ontario, NY L1847173 P 43.2480127 -77.2772876 2015-03-29 19:45:00 obsr2914424 S22582831 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322514131 2021-04-01 11:24:19.637193 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 14 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-24 06:18:00 obsr334398 S23610310 Traveling P22 EBIRD 51.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298076552 2021-03-30 19:43:32.881136 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia N X United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-17 14:00:00 obsr1780608 S21945895 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300156513 2016-12-25 21:01:53 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Seneca US-NY-099 13.0 Canoga Rd. W of Rt. 96 L3446791 P 42.85046 -76.85497 2015-02-28 10:40:00 obsr2683910 S22116476 Stationary P21 EBIRD 2.0 2.0 1 G1162632 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304442561 2021-04-01 12:12:56.033907 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 40 United States US New York US-NY Steuben US-NY-101 28.0 Chemung River at Corning WWTP L619480 H 42.1360014 -77.0319942 2015-03-21 11:24:00 obsr1092576 S22452972 Traveling P22 EBIRD 17.0 0.322 2.0 1 G1187068 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308541722 2021-11-09 00:38:34.069905 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-04-08 09:40:00 obsr1327349 S22760376 Traveling P22 EBIRD 90.0 0.805 2.0 1 G1212446 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311763566 2021-03-26 06:14:19.776945 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Columbia US-NY-021 13.0 Mud Creek Environmental Learning Center L2793575 H 42.2806092 -73.7101454 2015-04-19 07:30:00 obsr349211 S22978048 Traveling P22 EBIRD 150.0 1.609 12.0 1 G1228299 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300152053 2018-08-04 16:58:24 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-02-28 09:19:00 obsr1655171 S22116150 Stationary P21 EBIRD 7.0 2.0 1 G1162605 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312563083 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-24 10:11:00 obsr904434 S23032023 Traveling P22 EBIRD 33.0 0.483 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308084170 2021-04-01 11:15:31.646886 447 species avibase-C235A4D7 Gadwall Mareca strepera 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-06 14:15:00 obsr1135516 S22725196 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292766765 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 18 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-01-23 08:02:00 obsr2937317 S21504791 Traveling P22 EBIRD 124.0 1.127 2.0 1 G1120224 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311420424 2021-04-01 11:49:53.573686 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 11 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay, Big Egg Marsh L722804 H 40.5963256 -73.8252819 2015-04-18 08:00:00 obsr1982614 S22955266 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314063103 2021-04-01 11:15:31.646886 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-29 07:56:00 obsr152435 S23126268 Traveling P22 EBIRD 286.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289915318 2021-03-23 17:26:08.495143 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 21 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-06 08:45:00 obsr1160328 S21257169 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301343183 2022-02-18 10:47:29.953615 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-07 08:32:00 obsr1062070 S22205774 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302373189 2021-04-01 10:51:06.899622 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-10 10:15:00 obsr479109 S22292150 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320768436 2021-04-01 12:32:15.282601 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 4 United States US New York US-NY Nassau US-NY-059 Mill Pond, Port Washington L1813608 H 40.8367848 -73.6986976 2015-05-17 18:00:00 obsr2982024 S23504172 Traveling P22 EBIRD 30.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304039179 2021-03-22 09:15:15.32301 20829 species avibase-B9B272F4 Common Raven Corvus corax 6 United States US New York US-NY Niagara US-NY-063 13.0 Inducon Drive L1443511 P 43.1197583 -78.9185523 2015-03-13 18:45:00 obsr2082724 S22422286 Stationary P21 EBIRD 75.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310596319 2018-08-04 17:09:29 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-04-17 07:04:00 obsr2588479 S22903415 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295555409 2018-08-04 16:55:53 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-08 10:00:00 obsr2350357 S21726485 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305033894 2021-03-26 07:30:35.289997 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-24 08:40:00 obsr2001485 S22497827 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS374968844 2021-03-19 16:29:59.503892 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 5 United States US New York US-NY Jefferson US-NY-045 13.0 Western Parcel - Private L3615503 P 43.9956858 -76.0292745 2015-05-21 19:00:00 obsr544268 S27652029 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309561518 2021-03-26 06:55:00.227271 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Ontario US-NY-069 13.0 Finger Lakes Community College--Upper Trail (Ontario Co.) L429606 H 42.8683135 -77.2382855 2015-04-09 13:45:00 obsr1243175 S22830562 Traveling P22 EBIRD 26.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308075317 2021-04-01 11:30:42.037277 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 4 United States US New York US-NY New York US-NY-061 30.0 Highbridge Park--N of Alexander Hamilton Bridge L2741557 H 40.8528936 -73.926117 2015-04-06 14:05:00 obsr1706920 S22724428 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313214768 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 09:00:00 obsr2499879 S23072786 Traveling P22 EBIRD 165.0 7.242 2.0 1 G1237452 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291950590 2018-08-04 16:53:58 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Onondaga US-NY-067 13.0 Skan - country club launch L1066815 P 42.9306621 -76.4260483 2015-01-18 15:10:00 obsr2279567 S21420156 Traveling P22 EBIRD 30.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309496105 2021-11-15 03:06:58.889978 662 species avibase-FB738385 Bufflehead Bucephala albeola 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-12 15:30:00 obsr1927179 S22826145 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297192044 2016-02-17 16:24:36 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-15 12:00:00 obsr1535951 S21866057 Stationary P21 EBIRD 60.0 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305081307 2020-03-15 09:14:53 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-03-24 10:15:00 obsr2071643 S22501483 Traveling P22 EBIRD 60.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317635087 2021-11-09 18:45:27.272498 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Dutchess US-NY-027 13.0 near Verbank L3534485 P 41.7142739 -73.677063 2015-04-17 obsr191447 S23331553 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312663719 2018-08-04 17:11:20 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature Preserve, Rexford, NY L3587945 P 42.7923775 -73.7953484 2015-04-19 18:09:00 obsr325436 S23039306 Traveling P22 EBIRD 157.0 3.219 9.0 1 G1234677 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306973711 2022-03-05 22:03:50.715584 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-02 08:30:00 obsr2219590 S22645434 Traveling P22 EBIRD 300.0 10.461 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311331852 2021-03-30 19:29:33.633096 27616 species avibase-D77E4B41 American Robin Turdus migratorius 7 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-19 08:20:00 obsr1848026 S22949711 Traveling P22 EBIRD 290.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309811707 2021-04-01 11:30:42.037277 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-04-13 09:30:00 obsr1481512 S22848657 Traveling P22 EBIRD 180.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313879628 2016-04-27 14:00:45 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Town of Ithaca section L1488043 P 42.4768794 -76.4525088 2015-04-26 10:07:00 obsr2683910 S23114915 Traveling P22 EBIRD 7.0 0.644 2.0 1 G1241594 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310487197 2021-03-26 06:55:00.227271 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas N 4 United States US New York US-NY Ontario US-NY-069 13.0 Ontario Pathways - Alloquin to Stanley L1369951 P 42.846142 -77.122192 2015-04-16 09:00:00 obsr983655 S22895835 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311526960 2021-03-23 16:39:03.255227 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 8 United States US New York US-NY Richmond US-NY-085 30.0 Mariners Marsh L391227 H 40.638772 -74.1753101 2015-04-19 09:02:00 obsr1032565 S22961851 Traveling P22 EBIRD 135.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316924070 2021-03-26 06:29:56.44369 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula N 2 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-07 06:40:00 obsr745890 S23290389 Stationary P21 EBIRD 15.0 2.0 1 G1256222 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301983645 2021-03-23 17:41:09.545385 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 5 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-03-09 08:15:00 obsr258431 S22255018 Traveling P22 EBIRD 180.0 3.219 12.0 1 G1172167 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312170492 2021-04-01 10:47:08.851048 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-15 14:45:00 obsr1817738 S23004909 Traveling P22 EBIRD 75.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308935119 2021-12-03 21:50:44.732892 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 4 H C2 H United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-04-10 12:56:00 obsr1032565 S22789893 Traveling P22 EBIRD 214.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307494306 2021-04-01 11:24:19.637193 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-04-02 07:57:00 obsr1092576 S22683396 Traveling P22 EBIRD 294.0 1.609 3.0 1 G1202288 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871106 2021-03-30 19:39:10.250398 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 68 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-14 09:00:00 obsr2218212 S21672030 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303456287 2021-03-23 16:39:03.255227 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 30 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--eastern section L2867427 H 40.5141988 -74.2090684 2015-03-16 07:36:00 obsr1958124 S22376285 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306811230 2021-04-01 11:30:42.037277 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N X United States US New York US-NY New York US-NY-061 US-NY-New York-1 Liberty Island L3531199 P 40.688882 -74.044106 2015-04-01 11:33:00 obsr1961042 S22633318 Traveling P22 EBIRD 45.0 0.998 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312887767 2021-04-01 10:51:06.899622 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 11:41:00 obsr2945658 S23053301 Stationary P21 EBIRD 331.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319667715 2021-04-01 11:15:31.646886 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-14 08:00:00 obsr827632 S23445063 Traveling P22 EBIRD 270.0 7.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291113534 2022-02-17 14:32:23.002448 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 6 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-15 08:17:00 obsr1605975 S21354085 Traveling P22 EBIRD 150.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322127244 2021-12-23 15:00:47.137144 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-05-23 05:20:00 obsr1696616 S23588659 Traveling P22 EBIRD 19.0 0.032 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320513436 2021-06-10 13:56:09.754681 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 1 (Winter Lakewatch) L654004 H 43.3626297 -77.9489422 2015-05-17 11:17:00 obsr2937317 S23490560 Traveling P22 EBIRD 66.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314369344 2021-04-01 11:54:40.172593 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 12 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-30 07:15:00 obsr564905 S23144645 Traveling P22 EBIRD 85.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295880950 2021-03-26 07:52:59.845315 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-09 07:05:00 obsr1000124 S21751677 Area P23 EBIRD 130.0 2.59 2.0 1 G1143347 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307695005 2021-03-26 07:43:12.52294 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 2 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-04-03 10:24:00 obsr1721609 S22697237 Stationary P21 EBIRD 88.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310877641 2021-03-24 19:42:42.07177 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-18 09:51:00 obsr152435 S22921914 Stationary P21 EBIRD 79.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS584941421 2019-07-23 17:27:56 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 4 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-14 09:30:00 obsr967916 S43410927 Historical P62 EBIRD 45.0 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312124151 2021-03-26 07:30:35.289997 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Haber Ithaca Apartment L2127426 P 42.4862687 -76.4751273 2015-01-12 07:30:00 obsr1737482 S23001635 Stationary P21 EBIRD 30.0 1.0 1 G1231826 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322916687 2018-08-06 22:31:04 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Herkimer US-NY-043 US-NY_864 14.0 ALC - NE Boundary Logging Rd L3672552 P 43.7162171 -74.8859882 2015-05-25 06:40:00 obsr2369945 S23634456 Traveling P22 EBIRD 30.0 6.437 3.0 1 G1289667 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309866260 2021-03-22 09:17:32.016297 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Oneida US-NY-065 13.0 Utica Marsh WMA L129227 H 43.1183434 -75.2374573 2015-04-10 15:15:00 obsr2694889 S22852458 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295636715 2021-03-30 19:29:33.633096 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-02-08 15:00:00 obsr1137265 S21732999 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294777362 2021-03-23 17:00:13.087107 27616 species avibase-D77E4B41 American Robin Turdus migratorius 40 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-03 15:17:00 obsr1655171 S21664215 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301869938 2018-08-04 16:53:56 662 species avibase-FB738385 Bufflehead Bucephala albeola 440 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-01-18 10:55:00 obsr34822 S22246813 Stationary P21 EBIRD 20.0 7.0 1 G1171080 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299565039 2021-04-01 11:42:50.317679 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Oneida US-NY-065 13.0 Turin Rd., Rome, NY L3438822 P 43.2820714 -75.4704899 2015-02-25 15:55:00 obsr1842004 S22069916 Traveling P22 EBIRD 7.0 0.322 3.0 1 G1159665 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302549324 2017-01-31 14:52:47 20829 species avibase-B9B272F4 Common Raven Corvus corax X United States US New York US-NY Suffolk US-NY-103 30.0 Corner of Roanoke and Reeves; Goose Chase L3481768 P 40.954409 -72.691749 2015-03-11 09:30:00 obsr2416285 S22305706 Traveling P22 EBIRD 30.0 3.219 4.0 1 G1175648 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001110 2021-03-26 07:56:20.588749 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 4 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-19 09:00:00 obsr2218212 S23775926 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292162800 2021-03-26 06:29:56.44369 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-20 15:25:00 obsr934639 S21437009 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295373019 2015-02-07 14:44:30 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-11 06:45:00 obsr150865 S21711917 Traveling P22 EBIRD 60.0 15.0 44.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1198980148 2021-07-11 13:00:24.683786 5976 species avibase-F4829920 American Woodcock Scolopax minor 1 United States US New York US-NY Erie US-NY-029 13.0 Tillman Rd. WMA L260205 H 42.9656289 -78.6090731 2015-04-07 19:25:00 obsr2155450 S91601714 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311125806 2021-04-01 11:15:31.646886 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 75 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-18 07:48:00 obsr1706920 S22937434 Traveling P22 EBIRD 229.0 3.0 8.0 1 G1225342 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304588324 2021-03-30 19:29:33.633096 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Lotus Lake, Sayville L10183421 H 40.7450323 -73.0656674 2015-03-22 10:14:00 obsr1107696 S22463874 Rusty Blackbird Spring Migration Blitz P41 EBIRD 29.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302574364 2021-03-26 07:17:57.136956 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Yacht Club L357013 H 42.8673011 -76.9397813 2015-03-11 10:00:00 obsr528918 S22307704 Traveling P22 EBIRD 15.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308705959 2018-08-04 17:08:13 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Oneida US-NY-065 13.0 Rte. 31 Flow L3551193 P 43.1344812 -75.5902666 2015-04-09 13:15:00 obsr2139704 S22773074 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322855933 2021-04-01 11:15:31.646886 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 11 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 07:29:00 obsr1407710 S23630655 Traveling P22 EBIRD 300.0 3.219 14.0 1 G1289314 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307538081 2021-04-01 11:15:31.646886 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-04 12:15:00 obsr2078092 S22686305 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299212985 2021-03-26 08:14:57.071052 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Westchester US-NY-119 30.0 Home, Ossining L2584344 P 41.1621866 -73.8589355 2015-02-16 08:00:00 obsr2808729 S22043112 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306910600 2015-04-02 10:14:04 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Baldwinsville Farmers Co-op - parking lot L1392365 P 43.1599985 -76.3229164 2015-04-02 10:11:00 obsr2744341 S22640632 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302829912 2021-04-01 12:43:36.236969 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus N 3 United States US New York US-NY Tioga US-NY-107 28.0 Raish Hill Farm, Candor L2608316 P 42.194387 -76.362344 2015-03-13 07:25:00 obsr1318356 S22326843 Traveling P22 EBIRD 9.0 0.161 2.0 1 G1179994 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310749161 2021-04-01 11:15:31.646886 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 4 United States US New York US-NY Kings US-NY-047 30.0 23rd Street Backyards L3367258 P 40.6582107 -73.9907473 2015-04-13 18:20:00 obsr839844 S22913524 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300561451 2021-03-23 17:26:08.495143 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 20 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-21 13:00:00 obsr1987335 S22146438 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1165032 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311157686 2021-04-01 11:24:19.637193 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-04-18 07:17:00 obsr1243175 S22939179 Incidental P20 EBIRD 2.0 1 G1225553 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300092105 2022-02-17 14:32:23.002448 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 200 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-28 05:40:00 obsr41879 S22111327 Traveling P22 EBIRD 70.0 1.207 3.0 1 G1162648 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311824127 2016-03-11 08:58:42 32220 species avibase-AF49F890 Lincoln's Sparrow Melospiza lincolnii 1 Male, Adult (1) United States US New York US-NY Tompkins US-NY-109 13.0 SSW - West Trail intersect spur trail to Winston Court L301740 P 42.4781834 -76.4567368 2015-04-21 07:47:00 obsr2307843 S22982271 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308491906 2021-03-23 17:00:13.087107 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-27 08:57:00 obsr271498 S22756514 Stationary P21 EBIRD 30.0 4.0 1 G1211349 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314356806 2021-03-19 16:29:59.503892 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-04-30 13:16:00 obsr1302604 S23143932 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320102236 2021-04-01 10:58:31.765174 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Franklin US-NY-033 13.0 Dickinson L198982 T 44.74836 -74.56462 2015-05-16 06:00:00 obsr1672399 S23469348 Traveling P22 EBIRD 140.0 25.75 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306212964 2021-04-01 12:18:57.910168 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-23 16:10:00 obsr128366 S22587577 Traveling P22 EBIRD 57.0 0.483 3.0 1 G1197613 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313644511 2021-03-30 19:13:38.458673 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Durand-Eastman Park--Eastman Lake L139790 H 43.2341003 -77.5615005 2015-04-27 08:30:00 obsr2504709 S23099774 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304575335 2019-07-23 17:27:46 27616 species avibase-D77E4B41 American Robin Turdus migratorius 20 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 West Side Rowing Club L3505499 P 42.901615 -78.901459 2015-03-08 14:46:00 obsr334398 S22462926 Stationary P21 EBIRD 13.0 2.0 1 G1205438 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297009826 2021-11-09 22:04:47.967972 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 7 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-14 13:35:00 obsr2206421 S21849281 Stationary P21 EBIRD 135.0 2.0 1 G1150104 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295636706 2021-03-30 19:29:33.633096 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 14 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-02-08 15:00:00 obsr1137265 S21732999 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313874438 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-28 07:30:00 obsr2078092 S23114598 Traveling P22 EBIRD 330.0 6.437 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307970649 2021-04-01 11:54:40.172593 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Richmond US-NY-085 30.0 Miller Field L391319 H 40.5674723 -74.0990352 2015-04-06 10:54:00 obsr1958124 S22717322 Traveling P22 EBIRD 22.0 0.483 2.0 1 G1208443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299653730 2021-03-26 06:59:15.841579 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 Female, Adult (2); Male, Adult (1) United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-01-25 07:30:00 obsr2409011 S22076859 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316084461 2021-03-26 07:46:52.994574 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-05 10:46:00 obsr2321296 S23242423 Traveling P22 EBIRD 76.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301413902 2021-03-23 16:39:03.255227 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-03-07 10:07:00 obsr1893950 S22211472 Traveling P22 EBIRD 18.0 0.483 2.0 1 G1169012 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294114094 2021-03-23 16:48:08.60516 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Seneca US-NY-099 13.0 Rock River Rd., Ovid L1103973 H 42.647565 -76.7664528 2015-01-31 10:00:00 obsr2211210 S21611255 Traveling P22 EBIRD 7.0 1.287 1.0 1 G1130467 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310538618 2018-08-04 17:09:26 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-16 10:05:00 obsr1664745 S22899519 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316224440 2021-04-01 11:15:31.646886 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Kings US-NY-047 Owls Head Park L304833 H 40.6403687 -74.0322153 2015-05-05 14:15:00 obsr2448957 S23250985 Traveling P22 EBIRD 270.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308810761 2021-03-26 07:07:10.758746 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Richmond US-NY-085 Conference House Park L302089 H 40.4995098 -74.2516756 2015-04-10 08:09:00 obsr1958124 S22780977 Traveling P22 EBIRD 34.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297772468 2021-11-09 22:04:47.967972 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-15 14:15:00 obsr840949 S21919031 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298710052 2021-03-26 07:30:35.289997 681 species avibase-407E2CA8 Common Merganser Mergus merganser 45 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-21 08:18:00 obsr1655171 S22000619 Traveling P22 EBIRD 15.0 0.483 2.0 1 G1155008 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309128209 2021-03-23 17:00:13.087107 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-11 14:15:00 obsr881968 S22802596 Traveling P22 EBIRD 60.0 1.287 5.0 1 G1214478 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307136400 2015-04-03 11:23:06 616 species avibase-25C94A8F Greater Scaup Aythya marila 3 United States US New York US-NY Schenectady US-NY-093 13.0 Lock 7 State Canal Park, Niskayuna L469963 H 42.803871 -73.847909 2015-04-03 10:55:00 obsr2321296 S22657879 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312140191 2021-03-30 19:39:10.250398 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-22 12:15:00 obsr1489009 S23002732 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311564039 2021-03-26 07:20:31.408164 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Suffolk US-NY-103 30.0 Home L1977506 P 40.7250472 -73.2101333 2015-04-18 09:00:00 obsr391865 S22963762 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305565515 2021-03-23 17:00:13.087107 7261 species avibase-86D45B8F Green Heron Butorides virescens 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-27 08:57:00 obsr626755 S22539039 Stationary P21 EBIRD 30.0 4.0 1 G1211349 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308346872 2021-03-30 19:22:51.561415 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-04-02 13:40:00 obsr2233270 S22745331 Traveling P22 EBIRD 40.0 1.609 17.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294084851 2018-08-04 16:55:22 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-28 12:30:00 obsr2173269 S21609164 Stationary P21 EBIRD 37.0 4.0 1 G1129708 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS439748303 2016-12-12 09:10:21 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 obsr1381881 S32317848 Historical P62 EBIRD 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321349825 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-19 17:15:00 obsr609516 S23539855 Traveling P22 EBIRD 70.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304846465 2021-03-26 07:43:12.52294 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Wayne US-NY-117 13.0 East Palmyra L1156478 P 43.0839344 -77.1562529 2015-03-22 08:30:00 obsr2561613 S22482615 Area P23 EBIRD 480.0 0.8094 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323383135 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L3110905 P 40.5825892 -73.9176035 2015-05-27 09:45:00 obsr916370 S23665007 Traveling P22 EBIRD 120.0 4.506 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317563424 2018-02-01 15:11:46 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor22 L3513964 H 42.5801264 -76.092219 2015-05-09 13:24:00 obsr620377 S23327771 Stationary P21 EBIRD 9.0 2.0 1 G1272241 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320345311 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 S C2 S Male, Adult (1) United States US New York US-NY New York US-NY-061 30.0 Riverside Park--North of 96th St. L1018490 H 40.8073616 -73.9684904 2015-04-30 07:35:00 obsr2240960 S23481632 Traveling P22 EBIRD_WI 90.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305155643 2021-03-26 07:30:35.289997 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 65 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-24 07:46:00 obsr2683910 S22507252 Traveling P22 EBIRD 60.0 0.644 2.0 1 G1191720 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320443313 2018-08-06 22:30:14 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park L139800 H 43.0211215 -77.5739871 2015-05-16 14:40:00 obsr1991824 S23486885 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306622593 2021-03-23 17:22:05.708166 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 2 United States US New York US-NY Herkimer US-NY-043 13.0 Snells Bush Rd North L3495943 P 43.0699438 -74.791671 2015-03-29 19:03:00 obsr2694889 S22619406 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308693781 2018-08-04 17:08:00 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Westchester US-NY-119 28.0 Brinton Brook Sanctuary L893096 H 41.2268584 -73.8992411 2015-04-07 15:00:00 obsr1832377 S22772079 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313519051 2021-03-26 06:55:00.227271 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Honeoye Creek Trail Behind Library L3301565 P 42.7909235 -77.5149548 2015-04-27 11:50:00 obsr39511 S23091975 Traveling P22 EBIRD 55.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311803000 2021-03-23 16:30:20.514143 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3580184 P 43.429016 -75.903778 2015-04-21 07:29:00 obsr1477887 S22980731 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318948172 2021-04-01 11:30:42.037277 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-12 09:16:00 obsr2313260 S23403542 Traveling P22 EBIRD 192.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310837621 2018-08-04 17:09:36 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-18 07:00:00 obsr290506 S22919239 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312151512 2021-03-24 21:06:05.39641 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 N C3 N United States US New York US-NY Onondaga US-NY-067 28.0 Labrador Hollow Unique Area (Onondaga Co.) L271400 H 42.7902013 -76.053309 2015-04-22 13:17:00 obsr2279567 S23003486 Traveling P22 EBIRD 51.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310659606 2015-05-13 20:03:04 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 3 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3569499 P 43.429016 -75.903778 2015-04-17 08:01:00 obsr1477887 S22907514 Stationary P21 EBIRD 31.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308509078 2021-04-01 12:24:14.132004 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Washington US-NY-115 13.0 Fort Ann L3524202 P 43.3706789 -73.4468222 2015-04-08 10:00:00 obsr2196530 S22757917 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298451003 2015-02-19 16:42:44 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Madison US-NY-053 28.0 Linda's feeders L1900001 P 42.7960035 -75.8110164 2015-02-19 13:42:00 obsr2716320 S21978441 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323618248 2021-04-01 11:15:31.646886 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-28 11:00:00 obsr444155 S23681041 Traveling P22 EBIRD 120.0 1.609 2.0 1 G1294229 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298040176 2015-02-17 14:57:39 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-02-17 14:22:00 obsr2224244 S21942692 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312240363 2021-03-23 16:30:20.514143 7429 species avibase-1327AC55 Osprey Pandion haliaetus 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-03-03 obsr2409011 S23009684 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289866339 2021-03-26 06:53:58.593564 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-01-05 10:30:00 obsr2892286 S21253010 Stationary P21 EBIRD 120.0 2.0 1 G1101267 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293474463 2021-03-19 16:43:17.120646 32949 species avibase-15EB3000 Hooded Warbler Setophaga citrina 35 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditchbank Auto tour L1001436 P 43.1068108 -75.7973814 2015-01-26 15:18:00 obsr2716320 S21561084 Traveling P22 EBIRD 45.0 5.794 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321920311 2021-03-19 16:27:31.421791 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 North Marsh L1471146 P 43.1268851 -78.3203682 2015-05-22 10:08:00 obsr2588479 S23575440 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318358378 2021-04-01 10:55:39.308231 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 20 Queens Drive L1383581 P 43.0393001 -78.946665 2015-05-10 19:30:00 obsr502830 S23370374 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303429834 2017-01-08 08:51:25 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 1 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College--Visitor Interpretive Center L212478 H 44.4486136 -74.2594002 2015-03-09 17:00:00 obsr706340 S22374258 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290416124 2021-04-01 11:30:42.037277 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-11 09:30:00 obsr822430 S21297740 Traveling P22 EBIRD 170.0 4.828 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299011794 2021-11-09 22:04:47.967972 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina X United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-20 16:02:00 obsr341904 S22025210 Incidental P20 EBIRD 4.0 0 G1156474 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303493407 2021-04-01 10:58:47.067498 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-03-16 10:28:00 obsr2933610 S22379856 Traveling P22 EBIRD 73.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314668378 2021-03-23 17:18:00.959502 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.7628129 2015-05-01 15:04:00 obsr1154 S23163428 Traveling P22 EBIRD 56.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289639573 2021-03-24 19:19:28.646223 662 species avibase-FB738385 Bufflehead Bucephala albeola 5 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-06 15:03:00 obsr955789 S21235346 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289365525 2021-11-09 17:54:39.292468 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 300 United States US New York US-NY Dutchess US-NY-027 13.0 Hunns Lake L1131036 H 41.9032193 -73.6476231 2015-01-05 11:45:00 obsr1917973 S21213421 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316830311 2015-05-07 11:20:14 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Fulton US-NY-035 14.0 HOME L2580910 P 43.1207486 -74.5033795 2015-05-07 11:00:00 obsr117560 S23285515 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314152345 2021-04-01 12:11:50.996293 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 11 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Mays Point Pool and road L99392 H 42.9946205 -76.7637599 2015-04-28 10:48:00 obsr534615 S23131561 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301624247 2018-08-04 16:59:00 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Montgomery US-NY-057 13.0 Fultonville L1425886 P 42.9451148 -74.3934645 2015-03-08 09:00:00 obsr642516 S22226813 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312030812 2021-03-30 19:07:52.958398 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-22 08:55:00 obsr1536880 S22995802 Traveling P22 EBIRD 61.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293032955 2015-01-24 21:16:14 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 6 United States US New York US-NY Nassau US-NY-059 US-NY_1727 point lookout L1049583 P 40.589971 -73.5740662 2015-01-23 09:30:00 obsr1494607 S21525508 Traveling P22 EBIRD 60.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306393276 2017-08-16 16:56:31 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 Male, Adult (1) United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum: West and Pleasant Creeks (restricted access) L1878498 P 44.0338243 -75.8343879 2015-03-30 14:30:00 obsr1558090 S22601221 Traveling P22 EBIRD 20.0 0.25 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340588640 2021-03-26 06:13:28.501496 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 1 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.1752556 -76.8558787 2015-05-12 06:50:00 obsr2736418 S24908996 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317137033 2021-11-09 18:24:59.618229 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 5 United States US New York US-NY Dutchess US-NY-027 13.0 Clinton Nature Trail L1639228 H 41.8844174 -73.8038808 2015-04-18 10:00:00 obsr1339050 S23302760 Traveling P22 EBIRD 120.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291507701 2021-04-01 11:58:54.966271 681 species avibase-407E2CA8 Common Merganser Mergus merganser 20 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-01-17 08:48:00 obsr2211750 S21386069 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301990928 2021-04-01 11:54:40.172593 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-03-06 09:00:00 obsr666331 S22255543 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309769314 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 prospect park L2823866 P 40.6615313 -73.9686942 2015-04-13 10:00:00 obsr293770 S22845708 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305321141 2021-04-01 11:47:43.260314 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 50 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-25 09:00:00 obsr2744341 S22519955 Stationary P21 EBIRD 540.0 2.0 1 G1192464 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312259392 2015-04-23 09:23:34 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 5 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-22 06:25:00 obsr2716320 S23010941 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309402068 2021-11-09 19:58:20.126593 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Orange US-NY-071 28.0 Route 208 and Young Avenue, Walden, NY L3557993 P 41.5283081 -74.2003968 2015-04-12 10:10:00 obsr1062217 S22820254 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319492817 2015-05-14 08:13:57 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 2 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-05-14 08:00:00 obsr1349676 S23435130 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312326620 2021-04-01 12:32:15.282601 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-22 09:30:00 obsr1494607 S23015410 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291337468 2021-03-24 20:33:47.533911 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-01-16 10:30:00 obsr2137468 S21372318 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311141985 2021-04-01 11:49:53.573686 32101 issf avibase-873DDCD2 White-crowned Sparrow Zonotrichia leucophrys White-crowned Sparrow (leucophrys) Zonotrichia leucophrys leucophrys N 3 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge--Big Johns Pond L594699 H 40.6206631 -73.8238335 2015-04-18 14:22:00 obsr991026 S22938173 Traveling P22 EBIRD 49.0 1.609 2.0 1 G1225469 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321550992 2021-11-09 18:31:48.13381 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Dutchess US-NY-027 28.0 Nuclear Lake L225084 H 41.595318 -73.6477569 2015-05-20 08:00:00 obsr1339050 S23552180 Traveling P22 EBIRD 240.0 2.897 20.0 1 G1281053 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314108789 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 08:00:00 obsr2319444 S23129015 Traveling P22 EBIRD 240.0 3.219 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299328188 2021-03-23 16:52:36.900075 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Cedar Beach Marina L283643 H 40.6342526 -73.3447755 2015-02-23 12:30:00 obsr1489009 S22051987 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294349511 2021-03-26 07:07:10.758746 279 species avibase-3E04020B Brant Branta bernicla 50 United States US New York US-NY Richmond US-NY-085 Conference House Park L302089 H 40.4995098 -74.2516756 2015-02-01 09:20:00 obsr1958124 S21630008 Traveling P22 EBIRD 18.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313768815 2020-07-20 09:16:51 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 7 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-28 06:41:00 obsr2224244 S23107795 Traveling P22 EBIRD 70.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288871300 2022-03-06 12:39:33.700954 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-01-03 12:15:00 obsr1160328 S21174969 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299381122 2022-03-05 22:03:50.715584 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-24 12:00:00 obsr444155 S22055921 Traveling P22 EBIRD 60.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311234440 2021-11-09 18:40:19.746769 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--West L3002249 H 41.9197784 -73.6751747 2015-04-19 10:00:00 obsr1917973 S22943813 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323935964 2018-04-16 15:51:00 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-30 07:00:00 obsr2843748 S23704208 Traveling P22 EBIRD 140.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297573860 2021-03-26 06:52:34.887371 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-01-07 10:00:00 obsr2141910 S21900200 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313762241 2021-04-01 11:30:42.037277 26278 species avibase-A381417F House Wren Troglodytes aedon 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-27 16:30:00 obsr2031586 S23107350 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323080115 2018-08-06 22:30:53 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Albany US-NY-001 13.0 Polfleit House L3674379 P 42.719241 -74.0266031 2015-05-23 07:25:00 obsr568671 S23645152 Traveling P22 EBIRD 90.0 3.219 4.0 1 G1290985 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537237 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-01-02 09:00:00 obsr119187 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311154459 2021-12-23 15:00:47.137144 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-04-19 07:32:00 obsr730231 S22938971 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310094416 2021-03-26 07:30:35.289997 20829 species avibase-B9B272F4 Common Raven Corvus corax 8 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-13 07:01:00 obsr2683910 S22868734 Traveling P22 EBIRD 14.0 0.483 2.0 1 G1219995 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305417526 2021-04-01 11:30:42.037277 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-03-24 17:30:00 obsr1555046 S22527558 Traveling P22 EBIRD 45.0 1.609 2.0 1 G1208373 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303298248 2021-03-24 19:27:13.077399 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-03-15 10:10:00 obsr142874 S22363644 Stationary P21 EBIRD 290.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307361437 2018-08-04 17:05:18 11371 species avibase-75600969 Northern Flicker Colaptes auratus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-04 07:04:00 obsr1165633 S22674117 Traveling P22 EBIRD 98.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289082404 2018-08-04 16:52:43 505 species avibase-C732CB10 American Black Duck Anas rubripes 12 United States US New York US-NY Suffolk US-NY-103 30.0 Lily Pond, East Hampton L4345892 H 40.938415 -72.2129846 2015-01-04 10:30:00 obsr1460516 S21191419 Stationary P21 EBIRD 15.0 2.0 1 G1096504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306478245 2022-02-18 10:47:29.953615 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 S C2 S United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-31 08:37:00 obsr1062070 S22608130 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313840275 2015-04-28 16:37:44 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Columbia US-NY-021 13.0 3075 Upper Main St Valatie NY L1620378 P 42.4126309 -73.671052 2015-04-28 12:00:00 obsr2766625 S23112311 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288454377 2021-03-24 20:16:00.852773 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-01-02 11:04:00 obsr1958124 S21138662 Traveling P22 EBIRD 30.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308947818 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-02 07:00:00 obsr1312694 S22790779 Traveling P22 EBIRD 120.0 1.609 15.0 1 G1213685 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292969881 2021-03-24 20:33:47.533911 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 13.0 105 Eastern Heights Dr., Ithaca L2724192 P 42.425089 -76.455526 2015-01-20 08:00:00 obsr1318356 S21520915 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293383292 2022-02-04 06:14:13.892644 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-01-25 12:47:00 obsr1548221 S21553096 Traveling P22 EBIRD 102.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310778825 2021-03-26 07:20:31.408164 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-04-17 17:15:00 obsr2011512 S22915460 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324074529 2021-03-30 19:13:38.458673 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods - Lake Plains side L2376829 P 43.2738894 -77.6598215 2015-05-06 08:05:00 obsr2966702 S23712617 Traveling P22 EBIRD 50.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313099612 2021-11-09 19:57:48.990233 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-12 11:49:00 obsr2955569 S23066097 Stationary P21 EBIRD 66.0 3.0 1 G1225661 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316957099 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 08:30:00 obsr1353449 S23292599 Traveling P22 EBIRD 300.0 4.828 2.0 1 G1256415 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293354646 2015-01-26 10:54:30 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Nassau US-NY-059 30.0 Planting Fields Arboretum L517497 H 40.8638744 -73.5580158 2015-01-25 12:00:00 obsr143739 S21550694 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312487639 2021-03-24 20:33:47.533911 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-24 07:05:00 obsr711169 S23026456 Traveling P22 EBIRD 90.0 0.644 3.0 1 G1233636 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316079586 2021-11-09 18:42:19.628792 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-05 08:30:00 obsr1917973 S23242165 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319498564 2021-11-09 18:36:27.898762 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-05-14 06:40:00 obsr1835267 S23435485 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306240640 2021-03-24 20:53:39.352228 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-03-29 obsr1591201 S22589506 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299568644 2021-03-24 21:06:05.39641 431 species avibase-90E2543E Blue-winged Teal Spatula discors N 6 United States US New York US-NY Onondaga US-NY-067 13.0 Home L1479128 P 43.1502997 -76.3703906 2015-02-25 13:00:00 obsr2172593 S22070246 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320100659 2018-08-06 22:30:06 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-16 07:46:00 obsr1097423 S23469271 Traveling P22 EBIRD 156.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320097467 2021-03-19 16:02:45.308962 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 9 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-16 06:05:00 obsr800690 S23469117 Traveling P22 EBIRD 254.0 3.219 2.0 1 G1273111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323410338 2021-03-23 17:20:04.546757 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-21 10:30:00 obsr2475075 S23666937 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314214886 2021-11-15 03:06:58.889978 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 08:00:00 obsr1562881 S23135559 Traveling P22 EBIRD 120.0 2.0 2.0 1 G1243573 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310299459 2021-03-26 07:53:57.664705 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-04-15 18:09:00 obsr1060479 S22882508 Stationary P21 EBIRD 81.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299886230 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park-Pier 1 L1064703 P 40.7014636 -73.9971256 2015-02-26 14:30:00 obsr263005 S22095142 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307703385 2021-03-30 19:07:52.958398 27380 species avibase-E53FC25C Swainson's Thrush Catharus ustulatus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 08:06:00 obsr360223 S22697760 Traveling P22 EBIRD 180.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299333595 2021-03-26 08:14:57.071052 337 species avibase-694C127A Mute Swan Cygnus olor 3 United States US New York US-NY Westchester US-NY-119 30.0 NY - Yonkers - Kimble Ave L2432769 P 40.9168156 -73.8558269 2015-02-24 08:43:00 obsr1348614 S22052454 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316421751 2021-04-01 11:24:19.637193 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 2 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-05-04 07:10:00 obsr1782363 S23261957 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299324854 2021-03-26 07:07:10.758746 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-24 06:38:00 obsr1958124 S22051691 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309796400 2021-03-30 19:13:38.458673 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-04-13 10:15:00 obsr983655 S22847564 Stationary P21 EBIRD 225.0 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319074195 2021-03-19 16:44:35.607263 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-12 05:44:00 obsr1410564 S23411292 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295398580 2020-06-29 22:16:16 526 species avibase-56CCA717 Northern Pintail Anas acuta 10 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-07 15:00:00 obsr258431 S21713912 Stationary P21 EBIRD 15.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316726211 2021-04-01 11:30:42.037277 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 H C2 H United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 15:52:00 obsr924076 S23279638 Traveling P22 EBIRD 252.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321444042 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Monroe US-NY-055 13.0 Pittsford L113919 T 43.09066 -77.51502 2015-05-07 10:30:00 obsr1463039 S23545977 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300116742 2021-03-23 17:26:08.495143 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-02-28 13:30:00 obsr544268 S22113458 Traveling P22 EBIRD 30.0 0.805 2.0 1 G1162298 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309758349 2021-03-19 16:54:27.713469 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-04-13 11:00:00 obsr286403 S22845026 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306268258 2021-04-01 12:14:19.266649 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Suffolk US-NY-103 30.0 Mill Dam Park, Halesite L3577414 H 40.8856084 -73.4231741 2015-03-30 09:00:00 obsr1488063 S22591745 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316522100 2021-04-01 11:30:42.037277 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 2 United States US New York US-NY New York US-NY-061 30.0 Union Square Park L486424 H 40.7361632 -73.9901558 2015-05-06 08:15:00 obsr1481911 S23261965 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311772978 2021-03-24 20:33:47.533911 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-21 07:00:00 obsr455249 S22978708 Traveling P22 EBIRD 8.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS398702752 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 06:39:00 obsr1552744 S29427802 Traveling P22 EBIRD 294.0 5.15 3.0 1 G1735849 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299373643 2021-03-26 07:20:31.408164 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 6 United States US New York US-NY Suffolk US-NY-103 30.0 Sterling Creek L1565132 P 41.109688 -72.358618 2015-02-24 13:19:00 obsr2485753 S22055269 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297165292 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-15 12:00:00 obsr2534001 S21863700 Traveling P22 EBIRD 60.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS915608113 2020-05-23 07:09:52 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Allegany US-NY-003 28.0 Hanging Bog WMA L2218335 H 42.3107156 -78.2319904 2015-05-21 07:00:00 obsr2078055 S68635926 Incidental P20 EBIRD 21.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306001094 2021-03-30 19:13:38.458673 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY Monroe US-NY-055 13.0 Shore Acres L450209 H 43.3457792 -77.8455162 2015-03-29 11:24:00 obsr2595828 S22571768 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303264260 2018-08-04 16:59:53 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Herkimer US-NY-043 13.0 Rt 28 from Sunny Island Bridge to Gravesville Road L849204 P 43.2417249 -75.1117444 2015-03-13 16:05:00 obsr1000124 S22360991 Traveling P22 EBIRD 23.0 2.736 3.0 1 G1180568 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312891418 2021-11-09 19:13:28.211139 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 6 United States US New York US-NY Dutchess US-NY-027 13.0 Locust Grove L752319 H 41.673617 -73.9343405 2015-04-25 12:30:00 obsr2241630 S23053498 Traveling P22 EBIRD 195.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305564045 2021-03-26 07:43:12.52294 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-03-26 08:45:00 obsr211814 S22538910 Stationary P21 EBIRD 214.0 3.0 1 G1193972 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322265026 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:15:00 obsr1407710 S23596159 Traveling P22 EBIRD 420.0 8.047 20.0 1 G1285843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307471174 2017-08-16 16:57:42 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 150 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-02 10:30:00 obsr1167884 S22681753 Stationary P21 EBIRD 140.0 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302062384 2015-03-09 18:37:40 31530 species avibase-B48335B1 Pine Siskin Spinus pinus X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-03-09 08:45:00 obsr1044068 S22261202 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307205628 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-03 10:15:00 obsr2505956 S22662604 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298816873 2021-04-07 20:52:30.140558 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 Male, Adult (1); Male, Immature (1); Female, Adult (2) United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Mays Point Pool and road L99392 H 42.9946205 -76.7637599 2015-02-21 10:28:00 obsr1034751 S22009474 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289255870 2021-03-23 17:39:28.36772 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-01-04 09:00:00 obsr1839967 S21204525 Traveling P22 EBIRD 360.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921148 2021-03-26 07:56:20.588749 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 5 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-04 09:00:00 obsr2218212 S22173311 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320949033 2021-03-26 06:39:43.334073 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-18 14:10:00 obsr2883698 S23514824 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307877947 2021-07-29 22:13:08.471938 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-05 obsr1220115 S22710266 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291938067 2021-04-01 11:15:31.646886 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-19 13:25:00 obsr1711339 S21419098 Traveling P22 EBIRD 65.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309676397 2021-04-01 12:35:52.669792 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 1 United States US New York US-NY Onondaga US-NY-067 13.0 US-NY-Fayetteville-125 Feeder St L3499531 P 43.035063 -76.01239 2015-04-13 08:17:00 obsr1149420 S22838881 Traveling P22 EBIRD 83.0 1.931 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308920844 2022-02-04 06:14:13.892644 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-04-10 08:20:00 obsr800463 S22788681 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311844918 2021-03-22 08:58:29.008072 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-19 10:45:00 obsr2688919 S22983546 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313098478 2021-03-30 19:07:52.958398 483 species avibase-85625D75 Mallard Anas platyrhynchos 20 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 09:00:00 obsr652353 S23066026 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291200816 2020-04-10 18:41:08 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-15 14:25:00 obsr979921 S21361054 Stationary P21 EBIRD 35.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292454668 2021-03-01 11:20:54.007808 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-20 16:00:00 obsr2001485 S21439098 Incidental P20 EBIRD 5.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298451506 2021-11-09 18:34:57.804398 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-02-19 14:30:00 obsr1264675 S21978474 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308863981 2021-03-23 17:00:13.087107 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--office 248 L286682 P 42.4804061 -76.4510196 2015-04-09 09:00:00 obsr2001485 S22784616 Incidental P20 EBIRD_CAMERICA 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296867178 2021-04-01 12:14:19.266649 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 5 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree State Park L3344167 P 40.6370305 -73.2574046 2015-02-14 13:40:00 obsr1848026 S21837329 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312752508 2021-04-01 11:54:40.172593 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-25 08:00:00 obsr1620361 S23045380 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320496165 2018-08-04 17:27:41 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-17 06:00:00 obsr2149313 S23489670 Traveling P22 EBIRD 130.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310480296 2015-04-16 22:41:53 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Schenectady US-NY-093 13.0 US-NY-Scotia-102 Collins St L3568230 P 42.825484 -73.956695 2015-04-16 12:15:00 obsr2186523 S22895364 Traveling P22 EBIRD 45.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308620555 2022-01-30 05:40:13.589887 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 9 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-07 15:00:00 obsr2585137 S22766189 Traveling P22 EBIRD 60.0 1.609 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324133193 2021-04-01 11:12:52.834774 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 50 United States US New York US-NY Greene US-NY-039 13.0 wildwing park catskill L749524 P 42.2294707 -73.8825417 2015-05-30 07:00:00 obsr2515158 S23716524 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309043662 2021-11-09 21:31:40.219848 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-11 10:15:00 obsr1482758 S22797437 Traveling P22 EBIRD 30.0 0.805 15.0 1 G1214288 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300067749 2021-03-30 19:40:59.354574 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 7 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-02-28 14:15:00 obsr2964544 S22108898 Traveling P22 EBIRD 10.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313544894 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-27 10:15:00 obsr263005 S23093480 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302994566 2021-03-26 07:20:31.408164 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Stony Brook University L2350778 H 40.9146933 -73.1215687 2015-03-12 08:04:00 obsr758734 S22339925 Traveling P22 EBIRD 8.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290204235 2015-01-10 16:22:53 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 5 United States US New York US-NY Franklin US-NY-033 14.0 US-NY-Rochester-129 Hobart Rd L3281995 P 44.42327 -74.174123 2015-01-10 14:55:00 obsr835300 S21280447 Incidental P20 EBIRD 3.0 0 G1103471 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000830 2021-03-26 07:56:20.588749 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-13 16:00:00 obsr2218212 S23775919 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314282770 2015-04-30 09:27:07 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-30 09:19:00 obsr334398 S23139967 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306330948 2021-05-01 05:40:50.213405 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L3526134 P 40.59235 -73.89143 2015-03-28 17:11:00 obsr1348614 S22596347 Traveling P22 EBIRD 180.0 2.0 2.0 1 G1199300 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312602414 2021-03-26 06:21:54.883933 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-24 16:00:00 obsr1731572 S23035069 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306157152 2021-11-09 18:17:17.335499 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Strever Farm Road, Pine Plains L1363519 H 41.9457427 -73.6491438 2015-03-29 16:20:00 obsr2862523 S22583247 Stationary P21 EBIRD 10.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312308780 2022-03-05 22:03:50.715584 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-23 10:00:00 obsr444155 S23014085 Traveling P22 EBIRD 90.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312381117 2017-11-28 16:58:09 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 JB West End 2: Red Trail L2782119 P 40.5842677 -73.5518789 2015-04-23 09:10:00 obsr1761797 S23019184 International Shorebird Survey (ISS) P74 EBIRD 75.0 1.287 1.0 1 G1233133 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305638411 2021-03-26 08:11:28.0353 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 Male, Adult (2) United States US New York US-NY Saratoga US-NY-091 13.0 Betar Byway L1528567 H 43.2984602 -73.6411847 2015-03-27 10:59:00 obsr1222746 S22544610 Traveling P22 EBIRD 68.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315852795 2021-03-26 06:21:54.883933 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY Kings US-NY-047 30.0 McGolrick Park L2951334 P 40.7242992 -73.9432454 2015-05-03 11:00:00 obsr1289811 S23228814 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291094131 2021-11-09 19:34:18.590596 30494 species avibase-240E3390 House Sparrow Passer domesticus 11 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-01-15 07:00:00 obsr1665312 S21352359 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289178580 2018-08-04 16:52:39 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 20 United States US New York US-NY Westchester US-NY-119 30.0 Hommocks Conservation Park L3200061 P 40.9325936 -73.7411624 2015-01-03 12:00:00 obsr1788273 S21198818 Traveling P22 EBIRD 15.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311338577 2021-03-26 07:17:57.136956 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Towpath Rd. L266832 H 43.0038224 -76.7457005 2015-04-19 10:50:00 obsr1655171 S22950134 Traveling P22 EBIRD 74.0 3.219 2.0 1 G1230121 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316828838 2021-04-01 12:32:15.282601 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-07 07:45:00 obsr916370 S23285426 Traveling P22 EBIRD 150.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324502211 2018-08-04 17:30:24 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-26 12:00:00 obsr478499 S23740460 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290978942 2021-11-09 17:56:58.743752 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 3 United States US New York US-NY Dutchess US-NY-027 13.0 Haight Road, Millbrook, NY L1143777 P 41.8132907 -73.6437607 2015-01-04 09:00:00 obsr1062217 S21342931 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310153859 2015-04-15 07:04:02 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Onondaga US-NY-067 13.0 Oneida Lake - Short Point Bay Aero Marina L800554 P 43.2092266 -76.0786486 2015-04-11 09:30:00 obsr2290617 S22872735 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317859048 2018-08-06 22:29:25 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Cheney Point, Chautauqua Lake L2853116 H 42.1319065 -79.3897203 2015-05-09 08:30:00 obsr2418 S23343517 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302112392 2015-03-09 23:42:39 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 Unknown Sex, Immature (1); Unknown Sex, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Platform Road - Town of Fairfield L622941 P 43.1581106 -74.9605751 2015-03-09 11:35:00 obsr1000124 S22265017 Traveling P22 EBIRD 8.0 6.598 3.0 1 G1173374 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323162586 2021-04-01 10:49:39.496318 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Dorothy McIlroy Bird Sanctuary (FLLT) L295002 H 42.6700861 -76.2951639 2015-05-26 08:00:00 obsr2074001 S23650534 Traveling P22 EBIRD 180.0 3.219 9.0 1 G2524332 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296236077 2018-08-04 16:56:08 616 species avibase-25C94A8F Greater Scaup Aythya marila 75 United States US New York US-NY Kings US-NY-047 30.0 Fresh Creek Park L582117 H 40.6437706 -73.8831639 2015-02-12 09:04:00 obsr1821546 S21779748 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300457168 2021-03-30 19:07:52.958398 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-03-02 07:42:00 obsr1821546 S22139126 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314098461 2021-11-02 20:32:06.137153 32869 species avibase-D204A930 Tennessee Warbler Leiothlypis peregrina 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-04-29 12:30:00 obsr317968 S23128340 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302877467 2016-10-24 20:35:15 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Richmond US-NY-085 30.0 High Rock Park L300503 H 40.5840296 -74.1233772 2015-03-12 17:15:00 obsr496520 S22330451 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304580851 2021-11-02 20:32:06.137153 7261 species avibase-86D45B8F Green Heron Butorides virescens 20 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-03-21 07:17:00 obsr1318356 S22463332 Traveling P22 EBIRD 130.0 0.483 2.0 1 G1188092 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300762019 2021-12-10 08:21:29.396662 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-03 09:44:00 obsr247625 S22161078 Traveling P22 EBIRD 116.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306158266 2019-10-25 15:57:07 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY St. Lawrence US-NY-089 US-NY_802 13.0 Long Sault Dam L2015661 P 44.9992511 -74.8602819 2015-03-29 15:00:00 obsr2916201 S22583321 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292913291 2018-08-04 16:55:08 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Yates US-NY-123 13.0 US-NY-Penn Yan-573 E Lake Rd L3313822 P 42.582711 -77.083236 2015-01-24 12:36:00 obsr1828453 S21516601 Traveling P22 EBIRD 16.0 3.219 2.0 1 G1121002 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS913003546 2021-11-15 03:06:58.889978 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 obsr2697941 S68465180 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319440337 2021-04-01 12:30:15.438381 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus N 2 United States US New York US-NY Herkimer US-NY-043 13.0 Brockett Road - Town of Manheim L621897 P 43.0860824 -74.8197008 2015-05-13 14:00:00 obsr316199 S23431858 Traveling P22 EBIRD 9.0 3.219 3.0 1 G1269945 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288538498 2021-03-23 16:52:36.900075 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 10 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-01-02 14:30:00 obsr16685 S21145909 Traveling P22 EBIRD 100.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298238913 2021-04-01 12:14:19.266649 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree SP L283564 H 40.6394313 -73.2644575 2015-02-14 10:05:00 obsr1987335 S21959531 Traveling P22 EBIRD 18.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312821481 2021-03-31 04:01:57.961467 7011 species avibase-534FB490 Northern Gannet Morus bassanus 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Hundred Acre Pond L139802 H 43.0289001 -77.5643997 2015-04-25 10:30:00 obsr934639 S23049471 Traveling P22 EBIRD 190.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296646463 2021-03-26 06:11:29.8335 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 Montezuma L130483 T 43.0100708 -76.70327 2015-02-14 07:20:00 obsr1034751 S21817070 Stationary P21 EBIRD 70.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301348757 2021-03-26 06:15:05.840405 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Cortland US-NY-023 28.0 West River Rd., Marathon L2107039 H 42.511969 -76.0840988 2015-03-07 09:21:00 obsr1696616 S22206226 Traveling P22 EBIRD 10.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309649542 2021-03-19 16:32:34.732091 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Runway Fields L2749733 P 40.594399 -73.885813 2015-04-13 06:45:00 obsr1821546 S22836393 Traveling P22 EBIRD 29.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306766308 2021-03-23 16:52:36.900075 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Suffolk US-NY-103 US-NY_766 30.0 Caumsett SP L259743 H 40.9308721 -73.4720876 2015-04-01 08:45:00 obsr247620 S22629894 Traveling P22 EBIRD 330.0 9.656 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309425110 2021-03-23 17:18:00.959502 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 4 United States US New York US-NY Albany US-NY-001 13.0 Stanton Pond L273495 H 42.5094164 -73.9012973 2015-04-12 09:02:00 obsr119187 S22821645 Stationary P21 EBIRD 17.0 3.0 1 G1215974 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309302987 2021-03-19 16:19:20.977326 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Erie US-NY-029 13.0 US-NY-Hamburg-3097-3109 Lakeview Rd L3557162 P 42.715932 -78.876017 2015-04-12 06:44:00 obsr916033 S22814182 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324084194 2021-03-24 19:48:44.880783 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Monroe US-NY-055 13.0 Webster Park at lower lakeshore parking lot L1791482 P 43.2602752 -77.4516832 2015-05-11 14:35:00 obsr2966702 S23713251 Traveling P22 EBIRD 25.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289181191 2021-04-01 12:32:15.282601 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY Nassau US-NY-059 30.0 Smith Pond, Rockville Center L444839 H 40.6608056 -73.6545278 2015-01-03 10:30:00 obsr599682 S21199007 Traveling P22 EBIRD 30.0 0.805 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301882298 2021-03-24 20:58:53.646623 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis N X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-03-08 08:30:00 obsr72341 S22247612 Stationary P21 EBIRD 150.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292539966 2018-08-04 16:54:50 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 50 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-01-21 15:00:00 obsr2673845 S21487049 Stationary P21 EBIRD 15.0 3.0 1 G1118989 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307228311 2021-03-31 04:06:57.023771 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-03 15:03:00 obsr1721609 S22664327 Traveling P22 EBIRD 23.0 0.805 3.0 1 G1203141 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315453172 2021-12-24 11:02:14.483178 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-03 13:30:00 obsr1005220 S23207014 Traveling P22 EBIRD 55.0 0.805 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304445876 2021-11-21 20:10:12.576388 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Rockefeller Lane, Red Hook L1289036 H 42.0203642 -73.8634285 2015-03-21 15:00:00 obsr2862523 S22453237 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308303071 2021-03-26 07:46:52.994574 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 3 United States US New York US-NY Albany US-NY-001 28.0 Fairview Farm L2504189 P 42.4713688 -74.1246808 2015-04-07 16:05:00 obsr1363650 S22741983 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307375491 2021-04-01 12:18:57.910168 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-04-04 09:32:00 obsr1696616 S22675081 Traveling P22 EBIRD 17.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322130162 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 13.0 Slater Creek (Russell Station) L140439 H 43.2691002 -77.6264038 2015-05-23 06:12:00 obsr1696616 S23588856 Traveling P22 EBIRD 27.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300092348 2021-11-09 20:47:40.096315 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Putnam US-NY-079 28.0 yard list L749790 P 41.4653702 -73.6530304 2015-02-28 08:30:00 obsr159548 S22111349 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295313588 2021-03-26 07:07:10.758746 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-07 07:10:00 obsr1958124 S21706889 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305671325 2021-04-01 12:43:36.236969 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tioga US-NY-107 28.0 Blinn Rd., Candor L2368680 P 42.282899 -76.332858 2015-03-27 15:50:00 obsr1318356 S22547256 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312195105 2015-04-22 21:41:14 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-04-22 07:45:00 obsr2842267 S23006633 Traveling P22 EBIRD 210.0 0.805 13.0 1 G1232162 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289093485 2015-01-04 22:02:50 431 species avibase-90E2543E Blue-winged Teal Spatula discors 1 United States US New York US-NY Suffolk US-NY-103 30.0 Cove Hollow Farm L786267 P 40.9400884 -72.2210312 2015-01-04 08:00:00 obsr1460516 S21192302 Stationary P21 EBIRD 120.0 2.0 1 G1096506 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318945355 2018-08-06 22:29:46 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Kings Highway Barrens L2584384 H 42.7369323 -73.886095 2015-05-12 10:39:00 obsr2321296 S23403413 Traveling P22 EBIRD 100.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322316272 2021-12-24 11:02:14.483178 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-23 16:33:00 obsr730231 S23599005 Traveling P22 EBIRD 103.0 2.414 2.0 1 G1286135 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313460859 2021-03-26 07:30:35.289997 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 8 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-27 07:54:00 obsr1655171 S23088467 Traveling P22 EBIRD 27.0 0.483 2.0 1 G1243179 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310513577 2021-03-19 16:10:30.527219 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 8 United States US New York US-NY Chemung US-NY-015 28.0 Fitch Bridge Fishing Access L839621 H 42.0824462 -76.8655631 2015-04-16 07:00:00 obsr2430746 S22897682 Traveling P22 EBIRD 45.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288350843 2021-11-09 18:28:07.511478 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Dutchess US-NY-027 13.0 Baxter Road, Red Hook L1949312 P 41.9894809 -73.8689804 2015-01-01 10:00:00 obsr2573652 S21130540 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000261 2021-03-26 07:56:20.588749 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-02 09:00:00 obsr2218212 S23775900 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309449744 2021-03-22 09:17:32.016297 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Oneida US-NY-065 13.0 Schneibles, South Bay, Oneida Lake L3529803 P 43.1649505 -75.7373106 2015-04-12 14:23:00 obsr666964 S22822973 Traveling P22 EBIRD 32.0 2.414 1.0 1 G1216678 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306853945 2015-04-01 22:51:49 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-04-01 10:42:00 obsr1334267 S22636484 Traveling P22 EBIRD 43.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307622822 2021-09-21 06:02:26.969544 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-04 15:21:00 obsr2180607 S22692362 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321270000 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-18 07:15:00 obsr876649 S23535178 Traveling P22 EBIRD 260.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310491204 2018-08-04 17:09:28 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-16 16:15:00 obsr1764243 S22896122 Traveling P22 EBIRD 89.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325852320 2021-10-31 10:42:05.438185 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-28 09:00:00 obsr1500485 S23833232 Traveling P22 EBIRD 320.0 3.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294084678 2018-08-04 16:55:22 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-28 12:30:00 obsr1318356 S21609153 Stationary P21 EBIRD 37.0 4.0 1 G1129708 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543108 2021-03-24 20:33:47.533911 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 12 United States US New York US-NY Tompkins US-NY-109 13.0 Drake Rd., Lansing L366342 H 42.5309152 -76.5116 2015-01-10 09:22:00 obsr2255296 S21308003 Traveling P22 EBIRD 17.0 1.609 3.0 1 G1106091 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315678917 2021-03-19 16:27:31.421791 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Genesee US-NY-037 13.0 Francis Road, Batavia, NY L1421017 P 42.9423971 -78.1622197 2015-05-04 08:15:00 obsr393804 S23219463 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314078029 2018-08-04 17:12:41 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Feeder Rd. Trail (Genesee Co.) L153041 H 43.1242469 -78.429129 2015-04-29 08:40:00 obsr137150 S23127127 Traveling P22 EBIRD 210.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309205959 2019-07-24 17:29:37 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Queens US-NY-081 US-Rockaway Park-Queens L3556234 P 40.556925 -73.845348 2015-04-11 17:27:00 obsr1092576 S22807893 Incidental P20 EBIRD 2.0 0 G1222458 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305411616 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-26 09:30:00 obsr1693806 S22527062 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318489192 2021-12-08 07:58:41.562209 20829 species avibase-B9B272F4 Common Raven Corvus corax 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-11 06:15:00 obsr1828453 S23377679 Traveling P22 EBIRD 86.0 1.609 2.0 1 G1265670 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290471035 2021-03-30 19:29:33.633096 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Camp Hero SP--bluffs (parking lot) L2451856 H 41.0698744 -71.8587416 2015-01-10 10:30:00 obsr1615708 S21302196 Stationary P21 EBIRD 30.0 8.0 1 G1105513 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289055624 2019-07-23 17:26:40 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-03 07:00:00 obsr544268 S21189157 Stationary P21 EBIRD 80.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309118487 2018-08-04 17:08:29 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 9 United States US New York US-NY Genesee US-NY-037 13.0 Elba Mucklands L764353 H 43.1249884 -78.1941497 2015-04-11 10:30:00 obsr1104059 S22802012 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314160749 2021-03-30 19:29:33.633096 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Suffolk US-NY-103 30.0 West Creek L682890 P 40.9962897 -72.482729 2015-04-29 19:23:00 obsr2485753 S23132139 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322499068 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-24 06:40:00 obsr1189028 S23609531 Traveling P22 EBIRD 160.0 6.437 2.0 1 G1399438 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340184836 2018-08-04 17:12:12 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Erie US-NY-029 13.0 Stiglmeier Park L965034 H 42.8821636 -78.7297356 2015-04-25 13:00:00 obsr1020013 S24880187 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303925401 2021-03-26 08:09:53.772059 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Rensselaer US-NY-083 13.0 Yard & Feeders - South Schodack L3313941 P 42.5086853 -73.7018251 2015-03-18 17:45:00 obsr37875 S22413349 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288409774 2021-03-26 07:20:31.408164 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 5 United States US New York US-NY Suffolk US-NY-103 30.0 418 Jamaica Avenue L653849 P 40.8152383 -72.9672861 2015-01-01 09:20:00 obsr2934754 S21134708 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313589911 2021-03-26 06:21:54.883933 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 Female, Unknown Age (1) United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-27 12:30:00 obsr2078092 S23096292 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306929578 2021-03-26 06:29:56.44369 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 2 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-02 11:49:00 obsr334398 S22642091 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308084152 2021-04-01 11:15:31.646886 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-06 14:15:00 obsr1135516 S22725196 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386311280 2021-11-15 03:06:58.889978 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-22 13:48:00 obsr1559830 S28587965 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303959570 2021-04-01 11:49:53.573686 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 4 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-17 07:22:00 obsr1982614 S22415962 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310624440 2016-10-11 17:00:32 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 98 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip D L3559811 P 40.162933 -73.250983 2015-04-11 10:00:00 obsr1189028 S22905370 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221326 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306387360 2021-04-01 11:15:31.646886 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-03-30 10:30:00 obsr827632 S22600778 Traveling P22 EBIRD 180.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306346743 2021-03-19 16:02:45.308962 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-03-30 13:00:00 obsr1472872 S22597603 Traveling P22 EBIRD 148.0 6.92 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323079897 2021-03-26 07:46:52.994574 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-26 09:10:00 obsr1201479 S23645133 Stationary P21 EBIRD 47.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309040185 2018-08-04 17:08:27 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-11 09:00:00 obsr1044068 S22797202 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295874350 2019-07-23 17:27:18 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point SP L109151 H 41.0719093 -71.8838119 2015-02-08 07:50:00 obsr564905 S21751159 Traveling P22 EBIRD 90.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299663123 2021-03-23 17:00:13.087107 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 5 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, 212 Tareyton L252844 P 42.4724094 -76.4601243 2015-02-26 07:29:00 obsr2307843 S22077622 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292094934 2018-08-04 16:53:25 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Dead Horse Bay, Marina L151656 H 40.585205 -73.901276 2015-01-17 07:30:00 obsr1077730 S21431556 Traveling P22 EBIRD 203.0 4.828 1.0 1 G1113758 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311348110 2018-08-04 17:10:27 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata X United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-19 07:15:00 obsr634484 S22950722 Traveling P22 EBIRD 190.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320872455 2021-03-19 16:44:35.607263 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-18 08:40:00 obsr2364166 S23510765 Traveling P22 EBIRD 70.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308319142 2018-08-04 17:08:01 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Broome US-NY-007 28.0 West Corners Marsh L1513804 H 42.1169195 -76.0743913 2015-04-07 17:22:00 obsr1764243 S22743190 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315479113 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-01 07:06:00 obsr334398 S23208469 Traveling P22 EBIRD 11.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321889781 2018-08-06 22:30:47 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-22 06:20:00 obsr1830659 S23573560 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316458801 2021-11-15 03:06:58.889978 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-06 06:18:00 obsr642993 S23264183 Traveling P22 EBIRD 167.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291447681 2021-04-01 12:14:19.266649 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-01-17 09:15:00 obsr706483 S21381203 Traveling P22 EBIRD 120.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317200448 2021-12-24 11:02:14.483178 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-08 11:40:00 obsr334398 S23305948 Traveling P22 EBIRD 85.0 1.77 2.0 1 G1257587 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315760649 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-04 06:50:00 obsr1605975 S23223861 Traveling P22 EBIRD 350.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295050900 2021-11-09 17:44:58.165123 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Dutchess US-NY-027 13.0 Feeder/yard observations L1072689 P 41.8611874 -73.6756039 2015-02-05 08:00:00 obsr1917973 S21687566 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294040772 2021-03-23 16:52:36.900075 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-01-30 16:30:00 obsr544268 S21605821 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311509708 2018-08-04 17:10:30 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Hundred Acre Pond L139802 H 43.0289001 -77.5643997 2015-04-19 08:55:00 obsr2065230 S22960704 Traveling P22 EBIRD 120.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300411498 2021-11-15 03:06:58.889978 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-01 14:30:00 obsr2193510 S22135843 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310993479 2021-03-26 06:17:19.712573 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Erie US-NY-029 13.0 Birdsong Parklands L1352334 H 42.7530261 -78.7214375 2015-04-18 11:41:00 obsr916033 S22929062 Traveling P22 EBIRD 202.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309948375 2021-11-09 19:57:48.990233 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-13 08:45:00 obsr186871 S22858404 Stationary P21 EBIRD 30.0 5.0 1 G1219390 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301850545 2021-04-01 12:14:19.266649 242 species avibase-D3A260BC Snow Goose Anser caerulescens 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fire Island--Wilderness East L253315 H 40.7325463 -72.8669289 2015-03-08 14:40:00 obsr16685 S22245307 Traveling P22 EBIRD 125.0 5.681 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309082022 2021-04-01 11:15:31.646886 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 09:20:00 obsr263005 S22799773 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300047039 2019-07-23 17:27:32 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-02-28 07:49:00 obsr1958124 S22107230 Stationary P21 EBIRD 15.0 2.0 1 G1161957 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303863818 2015-03-18 13:11:52 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Jefferson US-NY-045 US-NY_778 13.0 US-NY-Dexter-27100-27714 County Rd 54 L3496825 P 44.069053 -76.009131 2015-03-18 08:10:00 obsr891847 S22408486 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312772232 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Washington Park (Albany Co.) L1657899 H 42.6560581 -73.7657327 2015-04-25 08:00:00 obsr2512689 S23046553 Traveling P22 EBIRD 135.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323080053 2018-08-06 22:30:53 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Albany US-NY-001 13.0 Polfleit House L3674379 P 42.719241 -74.0266031 2015-05-23 07:25:00 obsr1786066 S23645146 Traveling P22 EBIRD 90.0 3.219 4.0 1 G1290985 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291536409 2021-03-30 12:05:58.533651 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-01-17 14:40:00 obsr1189028 S21388321 Traveling P22 EBIRD 89.0 4.023 2.0 1 G1112557 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304682624 2021-11-09 18:25:59.444943 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Dutchess US-NY-027 13.0 Wappinger Lake L1829902 H 41.6070847 -73.9159704 2015-03-22 10:04:00 obsr2175245 S22470813 Stationary P21 EBIRD 46.0 3.0 1 G1188617 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308606853 2015-05-07 17:02:31 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-04-09 07:39:00 obsr455249 S22765164 Traveling P22 EBIRD 13.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309275059 2018-08-04 17:08:37 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Watervliet Reservoir L452992 H 42.7326396 -73.9795303 2015-04-11 17:45:00 obsr30103 S22812425 Traveling P22 EBIRD 45.0 0.531 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301440953 2021-03-24 19:27:13.077399 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-07 08:01:00 obsr1334267 S22213050 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306523119 2015-03-31 13:28:05 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-03-31 13:22:00 obsr1958124 S22611466 Stationary P21 EBIRD 3.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305761798 2015-03-28 11:36:30 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Franklin US-NY-033 14.0 Lake Colby Railroad Tracks L1509081 H 44.3364468 -74.1524597 2015-03-26 18:45:00 obsr2188170 S22554228 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423114 2021-03-30 19:13:38.458673 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-29 19:23:00 obsr1846130 S24163337 Stationary P21 EBIRD 25.0 2.0 1 G1337407 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301977210 2015-04-18 14:27:02 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Warren US-NY-113 14.0 Up Yonda Farm EEC L3469115 H 43.5761802 -73.6543977 2015-03-06 13:23:00 obsr1201479 S22254513 Stationary P21 EBIRD 5.0 3.0 1 G1178271 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304937522 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-03-23 10:30:00 obsr827632 S22490032 Traveling P22 EBIRD 180.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319438995 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:30:00 obsr294325 S23431785 Traveling P22 EBIRD 300.0 3.0 6.0 1 G1265613 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292201716 2018-08-04 16:54:03 30494 species avibase-240E3390 House Sparrow Passer domesticus 30 United States US New York US-NY Queens US-NY-081 30.0 Worlds Fair Marina, Flushing L1791669 H 40.7599179 -73.8530159 2015-01-19 14:00:00 obsr2976 S21439808 Stationary P21 EBIRD 15.0 2.0 1 G1118027 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316016498 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-05 06:00:00 obsr431494 S23238594 Traveling P22 EBIRD 123.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1319228725 2022-01-15 16:45:45.070972 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-12 07:53:00 obsr698943 S100799772 Traveling P22 EBIRD 232.0 4.828 2.0 1 G7719301 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS894931091 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 22 United States US New York US-NY Kings US-NY-047 Main St. Park (Brooklyn) L2987656 H 40.704402 -73.9897981 2015-05-28 13:00:00 obsr47698 S67182357 Traveling P22 EBIRD 60.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313562029 2021-03-30 19:37:33.521815 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Larkin Rd. L4342619 H 43.3037091 -76.7905645 2015-04-27 13:56:00 obsr1721609 S23094514 Traveling P22 EBIRD 127.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308754378 2021-04-01 12:18:57.910168 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-05 16:38:00 obsr2683910 S22776763 Traveling P22 EBIRD 21.0 0.483 2.0 1 G1212795 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295254994 2021-03-23 16:52:36.900075 32842 spuh avibase-D572AE1C blackbird sp. Icteridae sp. 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 PI--Route 11 L985275 P 41.1870839 -72.1865273 2015-02-06 09:50:00 obsr2485753 S21702257 Traveling P22 EBIRD 40.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303036394 2015-03-14 12:53:23 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-03-14 10:43:00 obsr1893950 S22343505 Stationary P21 EBIRD 9.0 2.0 1 G1178966 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289099552 2021-03-23 17:32:20.03109 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Skaneateles Lake, North Village Parks L276075 H 42.945145 -76.4294109 2015-01-04 15:55:00 obsr2279567 S21192746 Stationary P21 EBIRD 20.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308752756 2021-11-09 21:57:40.329584 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 15 United States US New York US-NY Ulster US-NY-111 13.0 Sojourner Truth Co. Park L3551662 P 42.0032592 -73.945241 2015-04-09 16:15:00 obsr2862523 S22776703 Traveling P22 EBIRD 30.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294527129 2015-02-02 08:10:09 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-02-02 07:56:00 obsr2211210 S21643872 Traveling P22 EBIRD 13.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308338171 2021-04-01 11:15:31.646886 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-07 10:15:00 obsr827632 S22744693 Traveling P22 EBIRD 180.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306154055 2018-11-04 19:15:23 26890 species avibase-94A44032 European Starling Sturnus vulgaris 300 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-29 10:30:00 obsr2276013 S22583014 Incidental P20 EBIRD 2.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS307410766 2021-04-01 11:47:43.260314 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-03 12:00:00 obsr2744341 S22677766 Stationary P21 EBIRD 340.0 2.0 1 G1203977 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298284863 2022-02-17 14:32:23.002448 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-18 13:00:00 obsr454647 S21963462 Traveling P22 EBIRD 200.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308725447 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis N 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Twin Islands L865061 H 40.8715659 -73.7853384 2015-04-09 16:31:00 obsr1348614 S22774062 Traveling P22 EBIRD 92.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290464871 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY New York US-NY-061 Randalls Island--Icahn Stadium and environs L1785377 H 40.7946445 -73.9263741 2015-01-11 11:00:00 obsr259298 S21301673 Traveling P22 EBIRD 60.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312425018 2018-08-04 17:11:55 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Inlet WMA--south section L674323 H 42.6874829 -77.7060413 2015-04-23 12:07:00 obsr393804 S23022143 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290234083 2015-01-10 16:43:41 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 Female, Unknown Age (1); Male, Unknown Age (1) United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-10 13:00:00 obsr816020 S21283137 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298419603 2015-02-19 14:03:44 636 species avibase-B77377EE Common Eider Somateria mollissima 1 United States US New York US-NY Columbia US-NY-021 13.0 Hollow Road L3344383 P 42.4188166 -73.7507486 2015-02-19 10:55:00 obsr349211 S21975034 Traveling P22 EBIRD 670.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316006192 2019-10-17 11:31:36 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-05-04 15:45:00 obsr307268 S23237985 Stationary P21 EBIRD 30.0 1.0 1 G1252667 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315952798 2018-08-04 17:14:44 6339 species avibase-8535345B Herring Gull Larus argentatus 14 Male, Adult (5); Female, Adult (4); Unknown Sex, Adult (5) United States US New York US-NY Fulton US-NY-035 13.0 Willie Marsh L2149327 P 43.0832214 -74.4475114 2015-05-04 13:55:00 obsr1000124 S23234500 Traveling P22 EBIRD 162.0 1.77 2.0 1 G1252392 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304337685 2021-03-30 19:13:38.458673 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-21 06:53:00 obsr1696616 S22445261 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289876692 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY New York US-NY-061 30.0 247 West 11th Street L3277966 P 40.7362465 -74.0032464 2015-01-08 11:50:00 obsr1585090 S21253941 Stationary P21 EBIRD 15.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301963604 2021-04-01 12:35:52.669792 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-09 09:45:00 obsr2172593 S22253475 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316914957 2021-03-24 19:30:07.33826 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 S C2 S United States US New York US-NY Cortland US-NY-023 28.0 AviCor30 L3513972 H 42.745 -76.2441865 2015-05-07 10:01:00 obsr2279567 S23290073 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323371401 2022-01-12 18:14:50.403512 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail L212481 H 44.4128015 -74.121715 2015-05-27 08:25:00 obsr2476032 S23664225 Traveling P22 EBIRD 212.0 12.875 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316909694 2021-03-26 06:12:17.833181 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-05-07 09:00:00 obsr1224512 S23289718 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309688129 2018-04-17 19:07:53 7429 species avibase-1327AC55 Osprey Pandion haliaetus 2 United States US New York US-NY Schoharie US-NY-095 28.0 1353 State Route 7 L863903 P 42.6528008 -74.5260626 2015-04-13 06:30:00 obsr119187 S22839658 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303262616 2021-12-28 15:50:27.785498 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-03-15 13:09:00 obsr606693 S22360855 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294792695 2021-04-01 12:11:50.996293 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Seneca US-NY-099 13.0 Geneva Waterfront - Seneca Lake L1187906 P 42.8739513 -76.9593143 2015-02-03 14:30:00 obsr1633923 S21665650 Traveling P22 EBIRD 120.0 3.219 1.0 1 G1134862 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311577929 2021-03-30 19:39:10.250398 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-16 07:49:00 obsr2233270 S22965250 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308690042 2021-03-22 09:17:32.016297 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Oneida US-NY-065 13.0 Schneibles, South Bay, Oneida Lake L3529803 P 43.1649505 -75.7373106 2015-04-09 14:06:00 obsr1842004 S22771792 Stationary P21 EBIRD 17.0 1.0 1 G1212349 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309341160 2018-08-04 17:08:40 27616 species avibase-D77E4B41 American Robin Turdus migratorius 60 United States US New York US-NY Oswego US-NY-075 13.0 Great Bear Recreation Area L664197 H 43.2666087 -76.3654238 2015-04-12 07:04:00 obsr2224244 S22816614 Traveling P22 EBIRD 106.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307287959 2021-03-23 16:30:20.514143 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-03 17:45:00 obsr2744341 S22668609 Stationary P21 EBIRD 100.0 2.0 1 G1203323 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293178900 2021-11-15 03:06:58.889978 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-25 13:45:00 obsr1659461 S21537249 Stationary P21 EBIRD 30.0 2.0 1 G1122803 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232649 2021-04-01 11:30:42.037277 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 12 United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Chelsea Piers (14th-22nd St.) L1789058 H 40.7454639 -74.008608 2015-01-01 10:45:00 obsr2505956 S21120290 Traveling P22 EBIRD 45.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314333537 2021-04-01 12:32:15.282601 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-30 10:30:00 obsr369788 S23142611 Traveling P22 EBIRD 30.0 0.805 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313801910 2021-04-01 12:45:19.712958 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 3 United States US New York US-NY Westchester US-NY-119 30.0 Sarah Lawrence College, Yonkers L2374154 H 40.9361988 -73.843399 2015-04-28 13:30:00 obsr1348614 S23109868 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307653941 2021-03-23 16:39:03.255227 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-05 09:14:00 obsr1958124 S22694488 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311431239 2021-04-01 11:30:42.037277 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 19 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-19 09:00:00 obsr2319444 S22955926 Traveling P22 EBIRD 180.0 2.414 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300030738 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Monroe US-NY-055 13.0 Private property L3358535 P 43.2067086 -77.8944933 2015-02-28 09:52:00 obsr1713903 S22105959 Traveling P22 EBIRD 28.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312195141 2021-03-26 06:29:56.44369 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-04-21 07:30:00 obsr2449897 S23006634 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319642472 2015-05-14 19:28:42 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 10 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-14 15:23:00 obsr1154 S23443597 Traveling P22 EBIRD 171.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316928972 2021-03-26 06:39:43.334073 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 15:30:00 obsr1220115 S23290944 Traveling P22 EBIRD 30.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302964879 2021-05-10 13:35:55.973042 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Schuyler US-NY-097 13.0 Catharine Creek WMA--Rock Cabin Rd. L1359885 H 42.369661 -76.8471749 2015-03-13 19:19:00 obsr2173269 S22337732 Traveling P22 EBIRD 29.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312734554 2015-04-25 09:13:17 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 12 United States US New York US-NY Franklin US-NY-033 14.0 US-NY-Saranac Lake-35 James St L2839009 P 44.331237 -74.139357 2015-04-25 08:00:00 obsr2630526 S23044158 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316421749 2021-04-01 11:24:19.637193 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-05-04 07:10:00 obsr1782363 S23261957 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313797433 2021-03-26 07:17:57.136956 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 5 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Knox-Marsellus Marsh L1280877 H 43.0076202 -76.7529774 2015-04-26 09:30:00 obsr1481464 S23109585 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288294139 2015-01-01 18:55:58 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Suffolk US-NY-103 30.0 53 Highview Lane L296117 P 40.9075594 -72.8885669 2015-01-01 15:00:00 obsr395994 S21125780 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315103696 2021-03-19 16:08:39.161312 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-05-02 06:30:00 obsr2909248 S23188277 Stationary P21 EBIRD 270.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309501468 2021-03-19 16:19:20.977326 30836 species avibase-8F268682 American Pipit Anthus rubescens N 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-12 09:28:00 obsr2071643 S22826529 Traveling P22 EBIRD 245.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298751102 2017-08-16 02:23:57 337 species avibase-694C127A Mute Swan Cygnus olor 12 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-02-20 18:00:00 obsr1826325 S22004050 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294659522 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-02-02 08:15:00 obsr2449897 S21654472 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290313359 2021-03-26 07:20:31.408164 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Suffolk US-NY-103 30.0 Lake Capri L1133165 H 40.6961927 -73.3003521 2015-01-10 15:20:00 obsr1228860 S21281808 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291799821 2016-09-20 11:51:12 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-C L3288894 P 40.16935 -73.1073 2015-01-11 10:00:00 obsr751942 S21408660 Traveling P22 EBIRD 60.0 16.254 44.0 1 G1108335 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292170889 2021-04-01 12:45:19.712958 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-01-19 10:00:00 obsr1780608 S21437673 Stationary P21 EBIRD 30.0 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289594486 2021-11-09 21:56:59.045559 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Ulster US-NY-111 28.0 Wallkill Valley L3272266 P 41.719536 -74.1389608 2015-01-03 08:00:00 obsr1110743 S21231313 Traveling P22 EBIRD 300.0 24.14 35.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309021346 2021-03-24 19:24:40.212356 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 1 United States US New York US-NY Chautauqua US-NY-013 13.0 South Ripley, Miller Road L3360057 P 42.21902 -79.75516 2015-04-11 07:30:00 obsr37369 S22795947 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307050053 2015-04-20 20:03:44 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Greene US-NY-039 13.0 south mountain palenville L3533498 P 42.1933333 -74.026486 2015-04-02 15:00:00 obsr594889 S22651405 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302150615 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 200 United States US New York US-NY New York US-NY-061 East River, Brooklyn Bridge to S.I. Ferry L3339003 H 40.7039737 -74.0059423 2015-03-10 06:54:00 obsr2179748 S22267585 Traveling P22 EBIRD 95.0 3.251 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310377476 2015-05-07 17:07:25 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-16 06:56:00 obsr455249 S22888065 Traveling P22 EBIRD 16.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291749612 2021-03-23 16:51:24.016808 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Steuben US-NY-101 28.0 Scott Rd T Erwin L371719 P 42.1130277 -77.1316624 2015-01-17 11:03:00 obsr1587816 S21404702 Traveling P22 EBIRD 24.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288908645 2021-04-01 12:32:15.282601 483 species avibase-85625D75 Mallard Anas platyrhynchos 12 United States US New York US-NY Nassau US-NY-059 30.0 US-NY-Hewlett-1295 Seawane Dr L1854570 P 40.633656 -73.689183 2015-01-03 08:45:00 obsr1220115 S21177888 Stationary P21 EBIRD 10.0 4.0 1 G1094310 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292962984 2021-04-01 11:15:31.646886 486 domestic avibase-07FFC1E5 Mallard (Domestic type) Anas platyrhynchos (Domestic type) 2 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-01-24 10:00:00 obsr1711339 S21520369 Stationary P21 EBIRD 180.0 3.0 1 G1121306 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312886203 2022-01-12 18:14:50.403512 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail L212481 H 44.4128015 -74.121715 2015-02-15 12:00:00 obsr443017 S23053225 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306913197 2021-03-23 17:00:13.087107 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 10 United States US New York US-NY Tompkins US-NY-109 13.0 Newman Golf Course L3521201 P 42.4558993 -76.507566 2015-04-01 17:30:00 obsr1183459 S22640813 Traveling P22 EBIRD 120.0 3.219 5.0 1 G1201359 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315823486 2015-05-05 09:28:48 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Erie US-NY-029 13.0 WNY Land Conservancy Office L2058573 P 42.7636185 -78.5480404 2015-05-04 09:00:00 obsr2537615 S23219206 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311690436 2020-07-20 09:16:51 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-19 11:56:00 obsr1167884 S22973627 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309569066 2021-03-24 20:33:47.533911 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-04-12 17:56:00 obsr455249 S22831049 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292873416 2018-06-11 23:06:13 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Herkimer US-NY-043 13.0 West Canada Creek, Route 28 Fishing Area, Newport L526136 H 43.1685031 -75.0052071 2015-01-23 10:55:00 obsr1680059 S21513176 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305391581 2021-03-23 17:00:13.087107 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-03-26 08:30:00 obsr2683805 S22525592 Traveling P22 EBIRD 30.0 0.161 9.0 1 G1192880 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310909042 2021-03-30 19:37:33.521815 447 species avibase-C235A4D7 Gadwall Mareca strepera X United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP, Sodus L712218 H 43.2673188 -77.0297813 2015-04-06 15:00:00 obsr2832110 S22923825 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304625658 2021-03-30 12:05:58.533651 32955 species avibase-41062654 Northern Parula Setophaga americana 60 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-22 09:40:00 obsr384772 S22466508 Traveling P22 EBIRD 190.0 4.023 2.0 1 G1188255 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321929700 2021-03-19 16:44:35.607263 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-22 07:15:00 obsr2223307 S23575859 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292655991 2021-03-30 19:29:33.633096 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Suffolk US-NY-103 30.0 Hook Pond L283133 H 40.9461611 -72.1907833 2015-01-22 13:00:00 obsr2534001 S21496239 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302126597 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-09 13:30:00 obsr516108 S22265991 Traveling P22 EBIRD 120.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318745015 2019-01-07 15:36:30 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Chautauqua US-NY-013 13.0 Canadaway Creek WMA L2266749 H 42.367272 -79.2358312 2015-05-11 17:43:00 obsr2497657 S23391773 Traveling P22 EBIRD 121.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294623897 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 13.0 374 Cromwell L1952255 P 43.1326227 -77.5253892 2015-02-02 15:00:00 obsr1463039 S21651692 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314699382 2021-09-03 19:22:31.034431 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-05-01 17:11:00 obsr2497657 S23165185 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870008 2019-07-23 17:27:05 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-01-18 10:32:00 obsr34822 S22246817 Stationary P21 EBIRD 18.0 7.0 1 G1171079 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS768271908 2021-03-30 19:07:52.958398 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 obsr192641 S56880481 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303542521 2015-03-16 16:08:09 7200 species avibase-49D9148A Great Egret Ardea alba 6 United States US New York US-NY Wayne US-NY-117 13.0 Wolcott, 9910 Howland Road L3493064 P 43.31877 -76.76694 2015-03-16 12:58:00 obsr1721609 S22383639 Traveling P22 EBIRD 10.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310915209 2015-07-10 19:12:17 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Schuyler US-NY-097 US-NY_791 28.0 Cayuta Gulf L2947274 H 42.3465081 -76.7309135 2015-04-18 08:10:00 obsr1042912 S22924158 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302311087 2018-08-04 16:59:16 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 22 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--CLW office L2388208 P 42.4799683 -76.4513107 2015-03-10 15:55:00 obsr1696616 S22284969 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312306991 2021-11-09 22:38:55.83044 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 6 Male, Adult (3); Female, Adult (3) United States US New York US-NY Sullivan US-NY-105 US-NY_2792 28.0 644 River Road L2326174 P 41.782401 -75.1017773 2015-04-23 11:30:00 obsr279522 S23013968 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294437184 2021-03-26 06:39:43.334073 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-01 13:00:00 obsr150865 S21636751 Traveling P22 EBIRD 195.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309505222 2021-03-26 06:07:45.516082 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.8978678 -73.9124419 2015-04-12 09:30:00 obsr2796494 S22826810 Traveling P22 EBIRD 130.0 1.207 30.0 1 G1216714 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296091167 2021-11-09 21:57:08.584829 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Ulster US-NY-111 28.0 Hoffman Rd, Wallkill, NY L3353243 P 41.632616 -74.189313 2015-02-11 08:56:00 obsr2568221 S21768366 Incidental P20 EBIRD 3.0 0 G1144507 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313463372 2021-11-09 20:00:00.127833 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Orange US-NY-071 28.0 Donahue Farm L3594859 P 41.4410535 -74.0076292 2015-04-27 08:45:00 obsr2546791 S23088604 Traveling P22 EBIRD 60.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315071371 2021-04-01 11:30:42.037277 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla N 2 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L3608007 P 40.8747785 -73.9286757 2015-05-02 07:00:00 obsr1137085 S23186527 Traveling P22 EBIRD 60.0 1.609 11.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS307822812 2021-11-09 18:40:19.746769 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--West L3002249 H 41.9197784 -73.6751747 2015-04-05 08:53:00 obsr1433400 S22706413 Traveling P22 EBIRD 90.0 3.476 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314749148 2015-05-01 20:39:34 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Delaware US-NY-025 28.0 Quail Ridge Area L2327396 P 42.2085425 -74.587276 2015-04-30 12:45:00 obsr883142 S23168242 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320619036 2022-02-17 14:32:23.002448 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-17 13:00:00 obsr2499879 S23496056 Traveling P22 EBIRD 180.0 6.437 2.0 1 G1278228 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921477 2021-03-26 07:56:20.588749 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 98 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-12 09:00:00 obsr2218212 S22173323 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290862934 2021-03-26 06:29:56.44369 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-13 15:45:00 obsr934639 S21333733 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300727131 2021-04-01 12:32:15.282601 483 species avibase-85625D75 Mallard Anas platyrhynchos 125 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-03-03 08:15:00 obsr247620 S22158580 Traveling P22 EBIRD 285.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310546114 2021-04-01 11:30:42.037277 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-16 09:28:00 obsr363953 S22900044 Traveling P22 EBIRD 200.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332420032 2021-03-19 16:44:35.607263 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-16 16:52:00 obsr334398 S24313950 Traveling P22 EBIRD 90.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318635232 2021-03-23 16:30:20.514143 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-03-21 07:15:00 obsr2409011 S23385528 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292118799 2021-03-26 06:29:56.44369 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Rush-375 Jeffords Rd L3302221 P 43.009819 -77.621631 2015-01-20 11:41:00 obsr991026 S21433574 Stationary P21 EBIRD 97.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653479 2021-04-01 11:24:19.637193 11494 species avibase-20C2214E American Kestrel Falco sparverius 15 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-18 12:25:00 obsr1097423 S21397592 Traveling P22 EBIRD 38.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309118259 2015-04-11 15:06:49 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-04-11 14:31:00 obsr2485753 S22801999 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300295960 2021-04-26 04:57:02.963704 32869 species avibase-D204A930 Tennessee Warbler Leiothlypis peregrina 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-01 08:55:00 obsr642993 S22127750 Traveling P22 EBIRD 190.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289564233 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 10 United States US New York US-NY Nassau US-NY-059 30.0 Twin Lakes Preserve L279979 H 40.6788694 -73.5147682 2015-01-03 13:00:00 obsr1000553 S21229169 Traveling P22 EBIRD 44.0 2.414 3.0 1 G1094199 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316958719 2022-02-21 13:41:55.027797 622 species avibase-50566E50 Lesser Scaup Aythya affinis N 5 United States US New York US-NY New York US-NY-061 30.0 Fort Tryon Park L591127 H 40.8629374 -73.9327457 2015-05-07 08:30:00 obsr781996 S23292696 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314028054 2018-08-26 19:48:32 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sweedler-Lick Brook FLLT Preserve L109058 H 42.3988596 -76.5358311 2015-04-29 07:19:00 obsr1655171 S23124166 Traveling P22 EBIRD 16.0 0.322 2.0 1 G1247176 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296074234 2016-09-12 10:40:03 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 8 United States US New York US-NY Cattaraugus US-NY-009 28.0 Home Feeder L3352970 P 42.1023937 -78.3841896 2015-02-10 11:30:00 obsr2811785 S21767047 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323991789 2021-11-09 18:42:19.628792 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 4 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-30 09:00:00 obsr1917973 S23707516 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307971606 2015-04-06 11:22:06 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Queens US-NY-081 US-NY_1722 Fort Tilden--Fishermans Parking Lot L1059216 H 40.5572434 -73.898989 2015-04-06 11:05:00 obsr2574755 S22717392 Traveling P22 EBIRD 16.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307122109 2015-04-04 23:28:26 26278 species avibase-A381417F House Wren Troglodytes aedon 7 United States US New York US-NY Kings US-NY-047 30.0 Prospect Park L3539397 P 40.6579828 -73.9622355 2015-04-03 09:40:00 obsr1956779 S22656840 Traveling P22 EBIRD 60.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309258678 2021-03-26 07:30:35.289997 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-04-11 08:00:00 obsr2137468 S22811368 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293287305 2021-03-26 06:17:19.712573 32955 species avibase-41062654 Northern Parula Setophaga americana X United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-01-25 obsr2096529 S21545580 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291211814 2021-04-01 12:32:15.282601 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 7 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-15 11:20:00 obsr1830659 S21362054 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307830933 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-04 12:30:00 obsr237150 S22707006 Traveling P22 EBIRD 60.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301549694 2021-11-09 20:39:07.000763 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Putnam US-NY-079 28.0 Fred Dill Wildlife Sanctuary--Carmel Marsh L1354703 H 41.4225272 -73.6721431 2015-03-07 13:50:00 obsr1458092 S22221041 Traveling P22 EBIRD 120.0 4.023 2.0 1 G1169529 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310413836 2021-12-28 15:50:27.785498 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 2 P C3 P Male, Adult (1); Female, Adult (1) United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-16 08:50:00 obsr606693 S22890532 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324449816 2018-08-06 22:31:22 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Franklin US-NY-033 14.0 Madawaska Pond L212482 H 44.5131889 -74.4025035 2015-05-29 09:00:00 obsr2357150 S23737007 Traveling P22 EBIRD 150.0 3.219 7.0 1 G1298998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309675020 2021-04-01 12:14:19.266649 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 9 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-13 06:50:00 obsr544268 S22838794 Rusty Blackbird Spring Migration Blitz P41 EBIRD 130.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288820841 2021-03-26 07:20:31.408164 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Suffolk US-NY-103 30.0 My Backyard L1767606 P 40.9186002 -72.3766669 2015-01-03 07:13:00 obsr1864342 S21170592 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320087604 2021-09-03 19:22:31.034431 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-05-16 07:17:00 obsr2497657 S23468590 Stationary P21 EBIRD 156.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322768894 2021-03-19 16:44:35.607263 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-25 10:33:00 obsr1696616 S23625393 Stationary P21 EBIRD 7.0 2.0 1 G1288858 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312007918 2021-03-19 16:44:35.607263 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-04-22 06:10:00 obsr934639 S22994188 Traveling P22 EBIRD 34.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292201715 2018-08-04 16:54:03 5891 species avibase-DC3050A9 Ruddy Turnstone Arenaria interpres 20 United States US New York US-NY Queens US-NY-081 30.0 Worlds Fair Marina, Flushing L1791669 H 40.7599179 -73.8530159 2015-01-19 14:00:00 obsr2976 S21439808 Stationary P21 EBIRD 15.0 2.0 1 G1118027 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308735829 2021-11-09 21:57:19.605717 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N X United States US New York US-NY Ulster US-NY-111 13.0 Rondout-Kingston L3465160 P 41.91695 -73.98631 2015-04-09 17:55:00 obsr1482758 S22775424 Traveling P22 EBIRD 95.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298634781 2021-03-30 19:43:32.881136 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-20 14:30:00 obsr1628992 S21993578 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315784903 2021-11-15 03:06:58.889978 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 06:39:00 obsr870166 S23225190 Traveling P22 EBIRD 294.0 5.15 3.0 1 G1735849 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313799978 2021-03-24 19:48:44.880783 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Turning Point Park L473126 H 43.2299768 -77.6170778 2015-04-28 12:00:00 obsr1545618 S23109728 Traveling P22 EBIRD 47.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315042633 2021-03-19 16:28:51.38749 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 7 United States US New York US-NY Greene US-NY-039 28.0 Moore Rd L1810817 P 42.3536934 -74.1764566 2015-05-02 07:15:00 obsr445187 S23184896 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300711100 2021-03-26 06:07:26.162322 303 species avibase-B59E1863 Canada Goose Branta canadensis N 10 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-03-03 12:05:00 obsr1210649 S22157365 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288472503 2021-04-26 05:03:09.627903 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-02 11:50:00 obsr1488063 S21140256 Traveling P22 EBIRD 55.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305009336 2021-03-26 07:15:58.375907 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY St. Lawrence US-NY-089 13.0 Remington Recreation Trail L270558 H 44.6127667 -75.1665791 2015-03-23 17:45:00 obsr2056110 S22495744 Traveling P22 EBIRD 20.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293871538 2017-08-16 16:28:24 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-29 14:28:00 obsr1885846 S21592605 Traveling P22 EBIRD 96.0 5.793 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308142571 2017-08-16 16:39:05 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 12 United States US New York US-NY Jefferson US-NY-045 US-NY_805 Point Peninsula Bird Conservation Area L1367385 H 43.9953255 -76.2449646 2015-02-15 12:00:00 obsr786804 S22729579 Traveling P22 EBIRD 90.0 3.219 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310939721 2021-04-01 12:28:44.297881 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 7 United States US New York US-NY Chenango US-NY-017 28.0 Cincinnatus Lake (Chenango Co.) L2404270 H 42.4306156 -75.8623123 2015-04-18 07:36:00 obsr2211210 S22925642 Traveling P22 EBIRD 48.0 0.805 2.0 1 G1224234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289714232 2019-07-23 17:26:39 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 6 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach State Park L230716 P 41.1295147 -72.2665183 2015-01-01 13:15:00 obsr535265 S21240574 Traveling P22 EBIRD 18.0 3.219 1.0 1 G1100194 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313677940 2021-04-01 10:51:06.899622 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-25 13:50:00 obsr1092576 S23101930 Traveling P22 EBIRD 74.0 3.219 4.0 1 G1240629 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313549279 2021-04-01 11:54:40.172593 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-27 14:30:00 obsr1958124 S23093723 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301826084 2021-12-10 08:21:29.396662 279 species avibase-3E04020B Brant Branta bernicla 5 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-08 14:15:00 obsr2635084 S22243485 Traveling P22 EBIRD 105.0 4.828 2.0 1 G1170993 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315495701 2021-03-26 06:17:19.712573 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-05-03 obsr2096529 S23209443 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301585071 2021-04-01 11:24:19.637193 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 24 United States US New York US-NY Monroe US-NY-055 13.0 390 near 104 L3463263 P 43.2054719 -77.6800346 2015-03-07 12:57:00 obsr528918 S22223784 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309236551 2022-02-17 14:32:23.002448 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-11 12:30:00 obsr2448957 S22809927 Traveling P22 EBIRD 420.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309512262 2021-01-12 19:50:23.677101 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Warren US-NY-113 14.0 Warren County Bikeway--Ash Dr, Queensbury, NY L2588444 P 43.356634 -73.6842245 2015-04-12 13:19:00 obsr1222746 S22827274 Traveling P22 EBIRD 27.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321705688 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-21 07:00:00 obsr827632 S23561682 Traveling P22 EBIRD 315.0 8.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291976824 2015-01-20 21:47:22 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2200 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field--Boat Launch L1058531 H 40.5960975 -73.8814259 2015-01-19 16:42:00 obsr187432 S21422348 Stationary P21 EBIRD 33.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308266189 2021-03-26 07:53:57.664705 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Livingston US-NY-051 13.0 Twin Cedars Environmental Area (DEC pond), Avon L800055 H 42.9002384 -77.6689625 2015-04-07 12:45:00 obsr1060479 S22739305 Traveling P22 EBIRD 49.0 0.563 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310501844 2021-03-26 06:39:43.334073 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 08:20:00 obsr800463 S22896894 Traveling P22 EBIRD 160.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300221115 2021-11-09 19:46:29.994987 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 3 United States US New York US-NY Orange US-NY-071 28.0 2 Landmark Dr L2229413 P 41.4236794 -74.0322342 2015-02-28 10:00:00 obsr671291 S22121658 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303108524 2021-03-24 20:52:47.158779 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Yates US-NY-123 13.0 Seneca Lake, Glenora Falls and Spit L463248 H 42.4907071 -76.9120216 2015-03-14 17:22:00 obsr1092576 S22349038 Traveling P22 EBIRD 21.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288964212 2021-04-01 12:32:15.282601 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Meadowbrook State Pkwy East L3264289 P 40.6226025 -73.5616636 2015-01-03 08:00:00 obsr118940 S21181970 Traveling P22 EBIRD 240.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290154865 2021-03-30 19:29:33.633096 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-10 09:36:00 obsr613775 S21276229 Traveling P22 EBIRD 88.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293188767 2021-04-01 12:18:57.910168 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 50 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-01-25 16:20:00 obsr2683910 S21538029 Traveling P22 EBIRD 30.0 1.287 2.0 1 G1122849 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000175 2021-03-26 07:56:20.588749 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 8 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-17 16:00:00 obsr2218212 S23775897 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320768430 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Nassau US-NY-059 Mill Pond, Port Washington L1813608 H 40.8367848 -73.6986976 2015-05-17 18:00:00 obsr2982024 S23504172 Traveling P22 EBIRD 30.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305888817 2021-11-09 21:42:39.625134 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus X United States US New York US-NY Ulster US-NY-111 13.0 My house L1857274 P 41.6862823 -73.9790679 2015-03-28 18:00:00 obsr342014 S22563385 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304233247 2021-11-09 21:57:27.696856 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Ulster US-NY-111 13.0 41.9332 X -74.0281 L3501526 P 41.93316 -74.02807 2015-03-20 15:32:00 obsr1588136 S22437446 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297830374 2021-12-10 08:21:29.396662 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 Unknown Sex, Immature (2) United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-16 08:30:00 obsr114791 S21924531 Traveling P22 EBIRD 120.0 3.621 12.0 1 G1149054 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293605309 2021-03-30 19:29:33.633096 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1000 United States US New York US-NY Suffolk US-NY-103 30.0 Hook Pond L283133 H 40.9461611 -72.1907833 2015-01-25 08:20:00 obsr1987335 S21571358 Stationary P21 EBIRD 20.0 2.0 1 G1127001 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS886502100 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 08:00:00 obsr251507 S66439180 Traveling P22 EBIRD 180.0 4.023 22.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301558907 2021-03-19 16:43:17.120646 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Madison US-NY-053 28.0 Linda's feeders L3462891 P 42.7979513 -75.8119512 2015-03-07 10:00:00 obsr1160328 S22221868 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308160880 2021-04-01 12:30:15.438381 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Herkimer US-NY-043 13.0 Black Creek Road L619427 P 43.2318451 -74.9248964 2015-04-05 15:50:00 obsr316199 S22730922 Traveling P22 EBIRD 5.0 6.598 4.0 1 G1209030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317100737 2021-11-15 03:06:58.889978 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 07:06:00 obsr1944212 S23300894 Traveling P22 EBIRD 123.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288977964 2021-03-26 08:14:57.071052 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-01-03 10:30:00 obsr2918150 S21183139 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302890433 2021-03-22 09:17:32.016297 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-03-13 11:45:00 obsr666964 S22331404 Stationary P21 EBIRD 8.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323179598 2021-04-01 11:30:42.037277 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-26 07:30:00 obsr139757 S23651704 Traveling P22 EBIRD 240.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307143103 2021-04-01 12:24:45.865424 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-02 09:23:00 obsr1721609 S22658364 Traveling P22 EBIRD 313.0 1.609 3.0 1 G1202494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319591222 2021-04-01 11:15:31.646886 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 07:15:00 obsr1407710 S23440697 Traveling P22 EBIRD 450.0 8.047 25.0 1 G1270550 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305762435 2018-08-04 17:04:29 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 200 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Long Pond, Greece L139797 H 43.2896996 -77.6911011 2015-03-28 11:37:00 obsr730231 S22554275 Traveling P22 EBIRD 4.0 0.322 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311736271 2021-03-26 06:39:43.334073 337 species avibase-694C127A Mute Swan Cygnus olor 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-18 09:09:00 obsr1548221 S22976362 Traveling P22 EBIRD 55.0 0.563 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303922140 2021-03-30 19:29:33.633096 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Suffolk US-NY-103 30.0 Forge River L2636000 P 40.7977194 -72.8315127 2015-03-12 11:00:00 obsr1592950 S22413093 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311941347 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-21 15:15:00 obsr454647 S22989827 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306031381 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-29 07:25:00 obsr642993 S22573697 Traveling P22 EBIRD 159.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303058587 2018-01-14 21:21:32 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-03-14 12:58:00 obsr1655171 S22345240 Stationary P21 EBIRD 3.0 2.0 1 G1181028 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315912285 2018-08-04 17:13:07 634 species avibase-F3D74914 King Eider Somateria spectabilis 4 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-30 08:00:00 obsr1160328 S23232213 Area P23 EBIRD 120.0 30.3514 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315288787 2018-08-04 17:14:32 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Franklin US-NY-033 14.0 Gabriels- Powerline Cut L3065122 P 44.4339024 -74.1888714 2015-05-03 09:00:00 obsr2376028 S23198493 Traveling P22 EBIRD 50.0 0.483 2.0 1 G1248941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307895641 2018-08-04 17:05:36 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Saratoga US-NY-091 13.0 Hudson Crossing Park L1476458 H 43.1155261 -73.577908 2015-04-05 12:46:00 obsr1222746 S22712032 Rusty Blackbird Spring Migration Blitz P41 EBIRD 67.0 0.483 2.0 1 G1207228 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300854271 2021-03-24 20:23:39.258075 26278 species avibase-A381417F House Wren Troglodytes aedon 3 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-03 14:45:00 obsr1137265 S22168079 Rusty Blackbird Spring Migration Blitz P41 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319239206 2021-11-15 03:06:58.889978 5664 species avibase-27903EF7 Black-bellied Plover Pluvialis squatarola 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-13 06:50:00 obsr1828453 S23420581 Traveling P22 EBIRD 200.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319726272 2021-03-19 16:10:30.527219 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 16 United States US New York US-NY Chemung US-NY-015 28.0 Tanglewood Nature Center, 443 Coleman Ave, Elmira, New York 14903 L1293857 P 42.1047222 -76.8652778 2015-05-02 08:50:00 obsr778043 S23448446 Traveling P22 EBIRD 170.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171840 2021-04-01 12:35:52.669792 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 50 United States US New York US-NY Onondaga US-NY-067 13.0 Baldwinsville L279746 P 43.1571108 -76.3292023 2015-01-24 08:00:00 obsr1167884 S21536689 Stationary P21 EBIRD 60.0 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311257357 2015-04-29 11:51:33 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Oneida US-NY-065 13.0 Graffenburg Walk L2221935 P 43.0606105 -75.2140331 2015-04-19 10:01:00 obsr1309825 S22945242 Traveling P22 EBIRD 176.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299776192 2021-03-24 19:24:40.212356 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-02-25 08:30:00 obsr479109 S22086355 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306468521 2015-05-07 17:05:30 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm sugar shack field transect L2272444 P 42.346503 -76.2992924 2015-03-31 07:30:00 obsr455249 S22607517 Traveling P22 EBIRD 11.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305387698 2021-03-23 17:32:20.03109 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-26 09:34:00 obsr2172593 S22525301 Traveling P22 EBIRD 36.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319440325 2021-03-23 17:22:05.708166 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 Male, Adult (2) United States US New York US-NY Herkimer US-NY-043 13.0 Castle Road - Ponds L742345 P 43.150683 -74.8973608 2015-05-13 15:15:00 obsr316199 S23431857 Traveling P22 EBIRD 51.0 0.483 3.0 1 G1269944 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313305565 2021-03-30 19:07:52.958398 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 08:00:00 obsr2363365 S23078368 Traveling P22 EBIRD 360.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318376858 2021-04-01 12:30:15.438381 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 8 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-05-09 06:00:00 obsr2694889 S23371372 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423509 2018-08-04 17:04:56 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 15 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Yanty Creek Marsh L139805 H 43.3576374 -77.9375696 2015-04-01 11:05:00 obsr1846130 S24163355 Traveling P22 EBIRD 5.0 0.161 3.0 1 G1337415 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321622746 2021-03-26 06:21:54.883933 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 US-NY-21-25 East Dr L3660808 P 40.66811 -73.96854 2015-05-20 08:30:00 obsr2666096 S23556790 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297920359 2015-02-17 08:35:18 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Oswego US-NY-075 13.0 Baum Road yard L266171 P 43.3412537 -76.1184204 2015-02-16 09:00:00 obsr979921 S21932311 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298598490 2021-01-16 10:09:45.715513 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 7 United States US New York US-NY Washington US-NY-115 13.0 Duer Rd, Greenwich, NY L3397812 P 43.1695793 -73.5507651 2015-02-20 13:02:00 obsr1222746 S21990825 Traveling P22 EBIRD 24.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311195701 2015-04-19 10:54:01 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Fulton US-NY-035 14.0 HOME L2580910 P 43.1207486 -74.5033795 2015-04-19 10:30:00 obsr117560 S22941477 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306785095 2021-03-19 16:27:31.421791 681 species avibase-407E2CA8 Common Merganser Mergus merganser 54 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant--East L870144 H 42.990146 -78.2094383 2015-04-01 08:52:00 obsr393804 S22631452 Traveling P22 EBIRD 93.0 4.345 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294668552 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Nassau US-NY-059 30.0 Hofstra University L639147 H 40.7145119 -73.6003128 2015-01-30 09:35:00 obsr1200152 S21655179 Traveling P22 EBIRD 80.0 2.414 9.0 1 G1133457 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310908030 2021-11-09 21:44:28.267324 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Ulster US-NY-111 13.0 Kenozia Lake L2142476 P 41.9926706 -74.1675854 2015-04-18 10:05:00 obsr1446126 S22923765 Stationary P21 EBIRD 15.0 2.0 1 G1224120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309056717 2021-12-08 07:58:41.562209 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-11 10:30:00 obsr2976 S22798253 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301017120 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 16 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-03 08:29:00 obsr1548221 S22180422 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316305528 2021-11-15 03:06:58.889978 7429 species avibase-1327AC55 Osprey Pandion haliaetus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 17:15:00 obsr2072398 S23255714 Traveling P22 EBIRD 105.0 1.609 2.0 1 G1254096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308573752 2022-03-05 22:03:50.715584 26890 species avibase-94A44032 European Starling Sturnus vulgaris 100 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-08 17:00:00 obsr890053 S22762753 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308436683 2018-08-04 17:08:06 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Onondaga US-NY-067 13.0 Van Buren Park L1756378 H 43.126446 -76.328913 2015-04-08 10:34:00 obsr2561576 S22752308 Stationary P21 EBIRD 5.0 2.0 1 G1211367 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313657670 2021-03-23 17:22:05.708166 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 4 Male, Adult (4) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-25 07:15:00 obsr1000124 S23100635 Area P23 EBIRD 80.0 2.59 2.0 1 G1240533 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309668543 2021-11-09 21:35:18.646328 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-13 06:40:00 obsr1110743 S22837605 Traveling P22 EBIRD 50.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320423462 2021-03-24 05:37:45.927792 622 species avibase-50566E50 Lesser Scaup Aythya affinis X 9 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-15 11:20:00 obsr319738 S23485754 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319893342 2021-04-28 04:45:49.288633 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 25 United States US New York US-NY Kings US-NY-047 US-NY_1722 Jamaica Bay Wildlife Refuge West Pond (Kings Co.) L2181169 P 40.6167378 -73.8346267 2015-05-15 10:30:00 obsr1407710 S23457755 Traveling P22 EBIRD 135.0 3.219 2.0 1 G1272074 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311187675 2015-04-19 10:31:47 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area - NCAW L473419 P 43.091096 -77.3856997 2015-04-18 09:50:00 obsr2113616 S22941045 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300291560 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Monroe US-NY-055 13.0 Private property L3358535 P 43.2067086 -77.8944933 2015-03-01 09:18:00 obsr1713903 S22127363 Traveling P22 EBIRD 34.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313730170 2021-03-24 20:53:39.352228 279 species avibase-3E04020B Brant Branta bernicla N 3 United States US New York US-NY Albany US-NY-001 13.0 NY, ALB, Normanskill Farm Parking Lo L446383 P 42.6345981 -73.8004339 2015-04-28 07:46:00 obsr1885846 S23105343 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301004593 2021-03-22 09:17:32.016297 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-03-05 06:45:00 obsr1640315 S22179408 Stationary P21 EBIRD 30.0 2.0 1 G1167077 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308116398 2021-03-19 16:43:17.120646 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 1 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-06 18:15:00 obsr589593 S22727687 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296385996 2018-08-04 16:56:10 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 15 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-12 17:28:00 obsr1318356 S21793546 Traveling P22 EBIRD 33.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317545334 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park, Manhattan L1305077 P 40.7756018 -73.968544 2015-05-09 07:15:00 obsr827632 S23326544 Traveling P22 EBIRD 215.0 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291944588 2021-04-01 12:32:15.282601 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi N X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-01-19 08:30:00 obsr2207991 S21419637 Traveling P22 EBIRD 90.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320365476 2021-03-19 16:44:35.607263 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-16 10:25:00 obsr528918 S23482634 Traveling P22 EBIRD 65.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304075453 2021-04-01 10:55:39.308231 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 14 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-03-19 15:49:00 obsr502830 S22425056 Traveling P22 EBIRD 61.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302613720 2021-03-23 17:00:13.087107 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southwest L879237 H 42.4634388 -76.4367664 2015-03-11 18:22:00 obsr1696616 S22310832 Traveling P22 EBIRD 13.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314056076 2021-03-19 16:19:20.977326 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 6 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-04-29 11:49:00 obsr2588479 S23125775 Traveling P22 EBIRD 65.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316449237 2018-08-06 22:29:01 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-06 06:23:00 obsr1165633 S23263653 Traveling P22 EBIRD 256.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307045191 2021-03-24 20:11:57.676649 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-02 08:10:00 obsr2914424 S22650997 Stationary P21 EBIRD 413.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309844576 2021-04-22 12:55:05.75868 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Oneida US-NY-065 13.0 Waterville Home Grounds L1257983 P 42.9688865 -75.3351134 2015-04-13 11:00:00 obsr2139704 S22850843 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307918039 2018-08-04 17:05:31 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Ridge Conservation Area--Randall Pond L2620481 H 40.8963874 -72.892051 2015-04-05 07:25:00 obsr1954215 S22713592 Traveling P22 EBIRD 45.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317254553 2021-03-26 07:56:20.588749 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 8 United States US New York US-NY Nassau US-NY-059 30.0 Hofstra University L639147 H 40.7145119 -73.6003128 2015-05-08 16:22:00 obsr904434 S23309081 Traveling P22 EBIRD 53.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303654513 2021-03-26 06:17:19.712573 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 West Side Backyard, Buffalo L3491162 P 42.92664 -78.8931012 2015-03-12 08:00:00 obsr319738 S22392118 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307796124 2021-03-23 16:47:03.540174 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-05 14:30:00 obsr1918430 S22704528 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292550817 2015-01-22 06:37:03 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 10 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Shinnecock County Park West L256572 H 40.82816 -72.53171 2015-01-19 10:30:00 obsr1633263 S21487980 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309322135 2018-08-04 17:08:44 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Onondaga Trail L157279 H 43.12222 -78.36889 2015-04-12 08:48:00 obsr2588479 S22815440 Traveling P22 EBIRD 33.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313117882 2021-04-01 11:24:19.637193 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 37 United States US New York US-NY Monroe US-NY-055 13.0 University of Rochester L1057695 H 43.1291149 -77.6293087 2015-04-26 08:45:00 obsr1958774 S23067108 Traveling P22 EBIRD 200.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313434378 2021-04-01 10:57:06.520339 11371 species avibase-75600969 Northern Flicker Colaptes auratus 4 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-04-27 07:00:00 obsr2420101 S23086908 Traveling P22 EBIRD 66.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320114744 2021-11-02 20:32:06.137153 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-16 07:11:00 obsr2683805 S23469929 Traveling P22 EBIRD 240.0 4.828 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290995211 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-08 07:21:00 obsr259298 S21344190 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310637501 2021-03-30 19:07:52.958398 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-17 08:15:00 obsr150415 S22906118 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307710166 2021-04-01 11:15:31.646886 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-05 09:08:00 obsr1189028 S22698212 Traveling P22 EBIRD 142.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313494038 2015-04-27 12:00:56 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 Mashomack Preserve L122936 H 41.0562576 -72.2896713 2015-04-27 11:15:00 obsr613775 S23090476 Traveling P22 EBIRD 42.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319334531 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 07:45:00 obsr2976 S23425834 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303043877 2021-11-20 09:30:27.481745 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 20 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake, end of Creekwalk L1331492 H 43.0680178 -76.1778662 2015-03-14 10:15:00 obsr1167884 S22344095 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302386510 2021-03-24 20:58:53.646623 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 2 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-03-09 13:10:00 obsr72341 S22293145 Stationary P21 EBIRD 235.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296861128 2021-11-09 21:57:09.307176 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris X United States US New York US-NY Ulster US-NY-111 28.0 search for Gyr roadside route L3371091 P 41.6264784 -74.2098141 2015-02-14 10:30:00 obsr1588136 S21836797 Traveling P22 EBIRD 360.0 56.327 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299386251 2019-09-10 13:56:02 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-02-22 12:23:00 obsr1092576 S22056243 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308283837 2021-04-01 11:30:42.037277 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-07 11:00:00 obsr2448505 S22740567 Traveling P22 EBIRD 240.0 4.828 2.0 1 G1209984 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320623769 2022-02-04 06:14:13.892644 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-05-17 16:51:00 obsr884514 S23496294 Traveling P22 EBIRD 25.0 0.402 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302829903 2021-04-01 12:43:36.236969 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Tioga US-NY-107 28.0 Raish Hill Farm, Candor L2608316 P 42.194387 -76.362344 2015-03-13 07:25:00 obsr1318356 S22326843 Traveling P22 EBIRD 9.0 0.161 2.0 1 G1179994 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307842583 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-05 09:00:00 obsr609516 S22707806 Rusty Blackbird Spring Migration Blitz P41 EBIRD 210.0 7.242 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295550916 2021-03-24 20:33:47.533911 11371 species avibase-75600969 Northern Flicker Colaptes auratus N X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-02-08 10:45:00 obsr59643 S21726121 Stationary P21 EBIRD 25.0 2.0 1 G1139185 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310100015 2021-03-26 08:14:57.071052 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Westchester US-NY-119 30.0 Sandy's Yard Birds L8198356 P 41.0139001 -73.8196024 2015-04-14 17:00:00 obsr258560 S22869113 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288933879 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek L845821 H 40.5811388 -73.9927912 2015-01-03 10:24:00 obsr1601967 S21179713 Traveling P22 EBIRD 150.0 2.897 12.0 1 G1093831 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313568930 2019-11-20 20:55:23 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 6 United States US New York US-NY Allegany US-NY-003 28.0 Cuba Lake L1326387 H 42.2508599 -78.2923025 2015-04-27 12:30:00 obsr1868960 S23094911 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307204074 2021-03-23 16:52:36.900075 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Suffolk US-NY-103 US-NY_847 30.0 West Meadow Wetlands Reserve L1166126 H 40.9327414 -73.1451702 2015-04-03 14:50:00 obsr1228860 S22662499 Traveling P22 EBIRD 69.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312876376 2018-03-28 07:13:34 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Towpath Rd. L266832 H 43.0038224 -76.7457005 2015-04-25 16:28:00 obsr887540 S23052650 Stationary P21 EBIRD 15.0 3.0 1 G1238412 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312030876 2021-03-19 16:44:35.607263 11494 species avibase-20C2214E American Kestrel Falco sparverius 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-04-16 14:44:00 obsr2774009 S22995809 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307380229 2015-07-12 16:51:07 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Erie US-NY-029 13.0 Knox Farm SP L160588 H 42.7715237 -78.636327 2015-04-03 09:00:00 obsr2059841 S22675457 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291727784 2017-04-28 16:25:25 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-01-18 11:33:00 obsr1565981 S21402923 Traveling P22 EBIRD 55.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290682612 2021-03-23 17:00:13.087107 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Portland Point Rd. and Overlook L270445 H 42.5285274 -76.5272433 2015-01-11 08:58:00 obsr67057 S21319343 Traveling P22 EBIRD 8.0 1.609 4.0 1 G1105487 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318529431 2021-03-19 16:19:20.977326 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 13 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-08 08:20:00 obsr1079517 S23379757 Area P23 EBIRD 45.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310220439 2021-03-19 16:06:54.047432 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Union Springs-1003-1005 County Rte 89 L3565718 P 42.810694 -76.678783 2015-04-15 07:53:00 obsr1092576 S22877185 Traveling P22 EBIRD 6.0 0.161 3.0 1 G1220762 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323815950 2021-04-01 11:15:31.646886 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 12 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-29 10:15:00 obsr827632 S23696075 Traveling P22 EBIRD 145.0 5.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319595633 2021-03-19 16:25:42.617988 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Essex US-NY-031 13.0 Crown Point, peninsula L906249 H 44.0044633 -73.4268522 2015-05-12 13:50:00 obsr2638097 S23440957 Stationary P21 EBIRD 125.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317438626 2015-05-09 09:22:24 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 3 United States US New York US-NY Livingston US-NY-051 13.0 US-NY-PORTAGE, 625 NY-436 L3579171 P 42.574927 -78.013591 2015-05-08 09:00:00 obsr731272 S23320111 Stationary P21 EBIRD 212.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302855958 2021-03-19 16:19:20.977326 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 3 United States US New York US-NY Erie US-NY-029 13.0 Green Lake L3484890 P 42.7577 -78.75024 2015-03-13 12:08:00 obsr488746 S22328830 Stationary P21 EBIRD 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299514373 2021-03-26 07:20:31.408164 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 3 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-02-18 07:00:00 obsr1592950 S22066055 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290921542 2021-02-04 13:11:09.63048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-E L3288970 P 39.52687 -72.39041 2015-01-11 12:00:00 obsr856524 S21338422 Traveling P22 EBIRD 60.0 19.795 44.0 1 G1108338 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295356271 2018-08-04 16:55:48 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-02-07 12:58:00 obsr887540 S21710675 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293189827 2015-01-25 17:10:42 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Pacific Blvd, Beach and Jetty L3317501 P 40.5826929 -73.6409497 2015-01-25 12:30:00 obsr547602 S21538107 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320261699 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-16 07:30:00 obsr2364166 S23477297 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310683090 2015-04-17 14:50:13 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Oswego US-NY-075 13.0 Sunset Bay Park L250628 H 43.5211406 -76.3839446 2015-04-17 14:09:00 obsr642516 S22908926 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308844276 2018-08-04 17:08:20 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 11 United States US New York US-NY Albany US-NY-001 13.0 Ann Lee Pond L213238 H 42.7376342 -73.813757 2015-04-10 10:15:00 obsr777630 S22783347 Rusty Blackbird Spring Migration Blitz P41 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315079487 2020-05-22 21:01:11 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Essex US-NY-031 13.0 Cook Mountain Preserve L11331426 P 43.817984 -73.442443 2015-05-02 06:50:00 obsr822321 S23186963 Traveling P22 EBIRD 50.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291781176 2021-03-26 06:29:56.44369 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-01-18 08:24:00 obsr2595828 S21407186 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306077472 2021-03-19 16:19:20.977326 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2146060 H 42.756017 -78.862009 2015-03-29 13:30:00 obsr2537615 S22577103 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313519041 2021-03-26 06:55:00.227271 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Honeoye Creek Trail Behind Library L3301565 P 42.7909235 -77.5149548 2015-04-27 11:50:00 obsr39511 S23091975 Traveling P22 EBIRD 55.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308427391 2021-03-23 17:00:13.087107 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-08 07:33:00 obsr1655171 S22751575 Traveling P22 EBIRD 42.0 0.966 2.0 1 G1212820 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306764957 2022-02-17 14:32:23.002448 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-01 09:10:00 obsr1605975 S22629781 Traveling P22 EBIRD 200.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295661333 2021-03-23 16:52:36.900075 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Road L1297365 P 40.8364114 -72.5046158 2015-02-08 07:45:00 obsr717785 S21734927 Traveling P22 EBIRD 120.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316974231 2021-03-19 16:02:45.308962 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Broome US-NY-007 28.0 SUNY Broome Community College L3583220 H 42.1353684 -75.9091816 2015-05-07 10:00:00 obsr1044068 S23293565 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310428527 2021-11-09 18:36:27.898762 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-04-16 09:05:00 obsr2175245 S22891509 Traveling P22 EBIRD 75.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289885983 2021-11-09 22:39:47.565044 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Sullivan US-NY-105 28.0 Rondout Reservoir (Sullivan Co.) L2693079 H 41.8604243 -74.5100577 2015-01-08 10:00:00 obsr444155 S21254736 Traveling P22 EBIRD 20.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299096552 2018-08-04 16:58:05 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 6 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-02-22 15:33:00 obsr2683910 S22034256 Stationary P21 EBIRD 12.0 3.0 1 G1156988 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312078477 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-22 07:55:00 obsr1516787 S22998674 Traveling P22 EBIRD 210.0 4.41 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302078414 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 40 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Long Beach L3470753 P 40.5856039 -73.6064243 2015-03-09 13:30:00 obsr531522 S22262503 Traveling P22 EBIRD 60.0 1.609 4.0 1 G1172906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288281585 2021-03-30 12:05:58.533651 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-01-01 14:00:00 obsr2448957 S21124626 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311499108 2021-03-26 06:07:45.516082 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Southern Meadow and environs L1816707 H 40.8533174 -73.8219978 2015-04-18 15:30:00 obsr538462 S22960077 Traveling P22 EBIRD 90.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292521543 2021-03-24 19:35:34.045988 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus X United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-01-20 obsr2096529 S21485584 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319218124 2015-09-17 17:22:25 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 2 United States US New York US-NY Jefferson US-NY-045 13.0 Kelsey Creek, Watertown L273304 H 43.9906455 -75.9170911 2015-05-04 09:00:00 obsr585290 S23419371 Traveling P22 EBIRD 540.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290858379 2019-01-03 10:54:11 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-A L3288843 P 40.26648 -73.25628 2015-01-11 08:00:00 obsr800463 S21333290 Traveling P22 EBIRD 60.0 12.392 44.0 1 G1108331 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS425079695 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-12 17:00:00 obsr2190210 S22832265 Traveling P22 EBIRD 60.0 1.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304650645 2018-08-04 17:02:29 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Suffolk US-NY-103 30.0 North Sea, 350-380 Towd Point Road L2182723 P 40.94628 -72.41517 2015-03-22 14:48:00 obsr613775 S22468265 Traveling P22 EBIRD 9.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314741634 2018-08-04 17:13:16 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Clinton US-NY-019 13.0 Point Au Roche SP L488947 H 44.7750114 -73.395195 2015-05-01 08:45:00 obsr1186840 S23167803 Traveling P22 EBIRD 200.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306106408 2021-03-23 17:39:28.36772 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tioga US-NY-107 28.0 Michigan Hollow Road L3523801 P 42.2643999 -76.4993477 2015-03-29 12:00:00 obsr2430746 S22579381 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314200016 2021-03-26 07:20:31.408164 255 species avibase-466E9077 Greater White-fronted Goose Anser albifrons 5 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-04-29 09:00:00 obsr2011512 S23134639 Traveling P22 EBIRD 120.0 0.402 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288257790 2017-08-15 16:56:48 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Ontario US-NY-069 13.0 Sand Rd L799746 P 42.8824974 -77.4887502 2015-01-01 16:27:00 obsr991026 S21122459 Traveling P22 EBIRD 41.0 4.828 2.0 1 G1088624 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305542322 2021-03-19 16:44:35.607263 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-03-25 17:51:00 obsr528918 S22537244 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307676186 2021-03-26 06:14:19.776945 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Columbia US-NY-021 13.0 Village of Kinderhook L3186994 P 42.3920266 -73.6940789 2015-04-05 08:45:00 obsr349211 S22695975 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302460461 2021-03-26 07:07:10.758746 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-03-11 13:21:00 obsr1958124 S22298614 Stationary P21 EBIRD 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303160165 2019-09-10 16:11:06 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 15 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake, N end from Lake St. L2728444 H 42.9102975 -76.7263699 2015-03-14 13:40:00 obsr1655171 S22353152 Traveling P22 EBIRD 8.0 1.609 2.0 1 G1181032 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288987257 2021-03-26 06:13:28.501496 33061 species avibase-E36325FA Prairie Warbler Setophaga discolor 5 United States US New York US-NY Chemung US-NY-015 28.0 Whennex rd Subdivision to Cohen School L3264692 P 42.1251792 -76.8276072 2015-01-03 09:40:00 obsr1602357 S21183782 Traveling P22 EBIRD 75.0 20.921 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310860378 2021-03-24 20:33:47.533911 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-18 09:19:00 obsr1696616 S22920757 Stationary P21 EBIRD 37.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288770927 2021-11-09 21:56:49.555782 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Ulster US-NY-111 28.0 JBNHS Wallkill Valley Raptors L3261415 P 41.7190555 -74.1366005 2015-01-03 08:00:00 obsr1446126 S21164690 Traveling P22 EBIRD 300.0 24.14 37.0 1 G1093120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311265631 2021-03-19 16:19:20.977326 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-19 08:20:00 obsr2189267 S22945759 Traveling P22 EBIRD 245.0 2.414 3.0 1 G1226244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317241089 2021-03-19 16:08:39.161312 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-05-08 15:46:00 obsr2497657 S23308263 Traveling P22 EBIRD 48.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318851102 2021-03-19 16:44:35.607263 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-11 15:09:00 obsr528918 S23398014 Traveling P22 EBIRD 185.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319654721 2021-03-26 07:52:59.845315 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-05-14 08:30:00 obsr1680059 S23444255 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288610140 2021-03-26 07:56:20.588749 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Nassau US-NY-059 30.0 Tackapausha Museum and Preserve L617756 H 40.6685464 -73.482399 2015-01-02 10:45:00 obsr352522 S21151711 Traveling P22 EBIRD 60.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294429344 2021-03-30 06:01:28.020715 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-01 16:30:00 obsr1318356 S21636226 Stationary P21 EBIRD 33.0 2.0 1 G1132920 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302141976 2021-03-30 19:28:38.115458 456 species avibase-D201EB72 American Wigeon Mareca americana X United States US New York US-NY Seneca US-NY-099 US-NY_764 13.0 NY:SEN:Ovid: CR-153 - Sheldrake Pt - Wyers Pt Rd: all lakefront L2514527 P 42.6638424 -76.6950417 2015-03-08 15:52:00 obsr2760150 S22267014 Traveling P22 EBIRD 71.0 6.26 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311910137 2021-04-01 11:15:31.646886 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 08:00:00 obsr139757 S22987669 Traveling P22 EBIRD 375.0 6.437 16.0 1 G1230491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289180411 2021-03-26 08:14:57.071052 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 4 United States US New York US-NY Westchester US-NY-119 30.0 Rye Playland L283594 H 40.9664172 -73.6734963 2015-01-03 08:15:00 obsr1788273 S21198945 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313040935 2021-03-23 17:15:00.080143 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP, Sodus L712218 H 43.2673188 -77.0297813 2015-04-25 08:07:00 obsr1569772 S23062566 Traveling P22 EBIRD 135.0 1.931 13.0 1 G1235657 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299371182 2017-08-31 22:54:27 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Richmond US-NY-085 30.0 Lemon Creek, bridge at Hylan Blvd. L916052 H 40.517649 -74.2011237 2015-02-24 13:08:00 obsr1958124 S22055096 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310102459 2021-04-01 11:15:31.646886 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 3 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-14 17:40:00 obsr41879 S22869273 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320287811 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 10:00:00 obsr2883698 S23478660 Traveling P22 EBIRD 220.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318886724 2018-08-06 22:29:43 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-05-12 06:50:00 obsr118701 S23400360 Traveling P22 EBIRD 86.0 3.219 2.0 1 G1267336 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319559308 2021-03-26 06:29:56.44369 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-14 11:40:00 obsr2595828 S23438991 Traveling P22 EBIRD 45.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS879182295 2021-03-26 07:51:35.34016 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Cattaraugus US-NY-009 28.0 USA - Ellicottville - Sugartown Rd. L10970863 P 42.2419492 -78.6246166 2015-03-16 16:30:00 obsr1728854 S65850188 Stationary P21 EBIRD_CAN 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310092646 2021-11-09 19:57:49.39749 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 1 United States US New York US-NY Orange US-NY-071 28.0 Brach's Dairy, River Rd. L3556353 P 41.53858 -74.22072 2015-04-11 11:30:00 obsr2683910 S22868588 Traveling P22 EBIRD 50.0 0.322 2.0 1 G1219969 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292667729 2021-11-09 19:34:18.590596 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-01-22 11:30:00 obsr1665312 S21497136 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319131994 2021-03-19 16:25:42.617988 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-12 07:31:00 obsr2420101 S23414468 Traveling P22 EBIRD 510.0 1.609 2.0 1 G1268391 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306233872 2021-12-19 10:32:19.574298 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 6 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-03-29 08:15:00 obsr1139818 S22589063 Traveling P22 EBIRD 150.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289667336 2021-11-15 03:06:58.889978 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-07 08:50:00 obsr794187 S21237346 Traveling P22 EBIRD 40.0 1.127 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316727733 2021-04-01 10:52:54.724403 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Columbia US-NY-021 14.0 Austerlitz L207556 P 42.3036668 -73.5189287 2015-05-06 10:00:00 obsr712039 S23279726 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315446242 2021-03-26 06:17:19.712573 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-03 14:15:00 obsr319738 S23206660 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291480642 2015-01-17 16:09:56 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Montgomery US-NY-057 13.0 Saint Johnsville L3298457 P 42.8266315 -74.356842 2015-01-17 15:00:00 obsr1092936 S21383853 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303616600 2021-04-01 11:30:42.037277 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-16 16:15:00 obsr2031586 S22389244 Traveling P22 EBIRD 75.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288424617 2021-03-24 19:48:44.880783 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps N 1 United States US New York US-NY Monroe US-NY-055 13.0 Home - 4 Fallbrook Circle L302597 P 43.157314 -77.4890289 2015-01-02 09:20:00 obsr1052071 S21136076 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316007766 2021-04-01 11:15:31.646886 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Kings US-NY-047 Shore Road Park L616218 H 40.6220738 -74.0406629 2015-05-05 06:00:00 obsr1821546 S23238084 Traveling P22 EBIRD 70.0 1.207 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS319267549 2021-03-26 07:53:57.664705 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 2 United States US New York US-NY Livingston US-NY-051 13.0 Groveland, NY L2623278 P 42.7113986 -77.7185619 2015-05-09 09:40:00 obsr1743566 S23422089 Stationary P21 EBIRD 200.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316793365 2021-03-19 16:44:35.607263 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 8 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-07 07:45:00 obsr1097423 S23283590 Traveling P22 EBIRD 65.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302222313 2021-03-26 06:21:54.883933 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Kings US-NY-047 Manhattan Beach Park L852391 H 40.5762169 -73.9441681 2015-03-10 11:53:00 obsr1821546 S22275207 Stationary P21 EBIRD 59.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320821386 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-18 05:35:00 obsr1135516 S23507988 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290755265 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 89 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-12 08:29:00 obsr1548221 S21325056 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310295725 2021-04-01 11:49:53.573686 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-04-09 07:10:00 obsr1982614 S22882254 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292836043 2021-04-01 12:30:15.438381 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 6 United States US New York US-NY Herkimer US-NY-043 13.0 Mohawk River - NYSOA Annual Waterfowl Count - between Moss Island, Little Falls & the POW/MIA Bridge, Herkimer NY. L2572036 P 43.0160909 -74.9084571 2015-01-21 10:26:00 obsr2694889 S21510312 Traveling P22 EBIRD 166.0 20.117 4.0 1 G1120547 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317407781 2018-02-01 15:11:46 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Cortland US-NY-023 28.0 AviCor20 L3513962 H 42.7170586 -76.0855457 2015-05-09 06:50:00 obsr620377 S23318294 Stationary P21 EBIRD 21.0 2.0 1 G1272252 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307263625 2021-04-01 11:24:19.637193 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 3 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-04-03 18:33:00 obsr1545618 S22666746 Traveling P22 EBIRD 41.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289198072 2021-03-26 07:52:59.845315 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 Female, Adult (2); Male, Adult (2) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-04 08:15:00 obsr1000124 S21200302 Area P23 EBIRD 90.0 2.59 2.0 1 G1100457 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304373828 2021-03-26 07:30:35.289997 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-21 08:25:00 obsr2307843 S22448140 Traveling P22 EBIRD 20.0 0.05 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296312598 2021-03-19 16:00:00.303051 483 species avibase-85625D75 Mallard Anas platyrhynchos N 15 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-02-10 10:30:00 obsr2534001 S21787672 Traveling P22 EBIRD 360.0 8.047 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314668294 2021-12-24 11:02:14.483178 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-01 08:40:00 obsr2504709 S23163422 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304099131 2021-03-23 17:23:45.772216 609 species avibase-67CEA1C1 Tufted Duck Aythya fuligula 2 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-03-19 15:15:00 obsr72341 S22426875 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314102963 2021-03-23 17:26:08.495143 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park L693342 P 40.6618894 -73.719635 2015-04-29 08:40:00 obsr2505956 S23128614 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320121446 2021-03-19 16:19:20.977326 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-16 07:08:00 obsr916033 S23470272 Traveling P22 EBIRD 275.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290716311 2021-11-09 18:28:50.133002 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 21 United States US New York US-NY Dutchess US-NY-027 13.0 Home, Millbrook, NY L2119013 P 41.7923452 -73.6592703 2015-01-12 07:15:00 obsr1062217 S21322048 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312807570 2015-04-25 13:22:23 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-25 09:55:00 obsr646558 S23048733 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302517804 2015-03-11 18:24:27 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-68 Hedgerow Dr L3481437 P 42.437738 -76.572437 2015-03-11 16:43:00 obsr887540 S22303044 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294730997 2021-04-01 12:35:52.669792 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-02-01 08:45:00 obsr2143830 S21660089 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301956550 2018-08-04 16:59:05 23291 species avibase-58C502EA Barn Swallow Hirundo rustica X United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-03-08 14:03:00 obsr2887137 S22252952 Stationary P21 EBIRD 14.0 1.0 1 G1171918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301663840 2022-03-08 13:50:22.901821 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 3 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-03-08 12:03:00 obsr1732267 S22229584 Traveling P22 EBIRD 60.0 2.414 2.0 1 G1171958 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311318380 2021-04-01 11:15:31.646886 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 12:05:00 obsr876649 S22948898 Traveling P22 EBIRD 110.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311413222 2021-03-30 19:22:51.561415 6339 species avibase-8535345B Herring Gull Larus argentatus 23 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-04-19 09:50:00 obsr1982614 S22954815 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299374801 2015-02-24 13:32:34 303 species avibase-B59E1863 Canada Goose Branta canadensis 11 United States US New York US-NY Suffolk US-NY-103 Gull Pond L516897 P 41.1110138 -72.3493695 2015-02-24 13:25:00 obsr2485753 S22055341 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313749752 2021-03-24 20:11:57.676649 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-25 11:45:00 obsr1190754 S23106557 Stationary P21 EBIRD 40.0 7.0 1 G1240112 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319225527 2021-03-19 16:02:45.308962 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-13 07:00:00 obsr1830659 S23419817 Traveling P22 EBIRD 195.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298070520 2021-04-01 10:45:00.916278 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-02-17 10:30:00 obsr1135516 S21945422 Traveling P22 EBIRD 270.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309814945 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Harlem Meer L278127 H 40.7971185 -73.9523133 2015-04-12 11:40:00 obsr1548221 S22848916 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307479388 2015-04-04 16:00:33 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 6 United States US New York US-NY Suffolk US-NY-103 Maidstone Park L1052939 H 41.0341756 -72.1825361 2015-04-04 14:30:00 obsr794187 S22682327 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311196419 2021-04-01 11:30:42.037277 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-19 08:30:00 obsr1135516 S22941519 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298041569 2021-03-30 19:43:32.881136 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 2 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-16 12:15:00 obsr1198912 S21942805 Stationary P21 EBIRD 20.0 4.0 1 G1149056 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313421880 2021-04-01 11:58:54.966271 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-415-609 NY-11C L3505304 P 44.784185 -74.803031 2015-04-26 07:24:00 obsr2211750 S23086106 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290994990 2021-11-09 21:05:38.512979 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Rockland US-NY-087 28.0 US-NY-GE Crotonville L3291925 P 41.199082 -73.959177 2015-01-14 13:30:00 obsr385096 S21344169 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306001089 2021-03-30 19:13:38.458673 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Monroe US-NY-055 13.0 Shore Acres L450209 H 43.3457792 -77.8455162 2015-03-29 11:24:00 obsr2595828 S22571768 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289186784 2018-08-04 16:52:43 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 5 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-04 10:45:00 obsr1962295 S21199451 Traveling P22 EBIRD 135.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302640276 2021-03-23 16:39:03.255227 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-03-12 14:13:00 obsr1958124 S22312815 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298964920 2021-04-01 10:57:06.520339 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 2 United States US New York US-NY Essex US-NY-031 13.0 La Chute - upper end L4910447 P 43.8423066 -73.4314156 2015-02-22 09:20:00 obsr2769235 S22021414 Stationary P21 EBIRD 8.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316436279 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-05 06:36:00 obsr363953 S23262793 Traveling P22 EBIRD 360.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290907246 2021-03-30 19:39:10.250398 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 17:00:00 obsr2574755 S21337229 Traveling P22 EBIRD 30.0 4.828 44.0 1 G1108343 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313995168 2021-03-22 09:17:32.016297 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 8 United States US New York US-NY Oneida US-NY-065 13.0 Godfrey Point DEC Boat Launch L1570638 H 43.2235924 -75.8505869 2015-04-29 05:51:00 obsr1640315 S23122255 Stationary P21 EBIRD 60.0 1.0 1 G1242295 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296021112 2016-01-27 10:55:31 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 6 United States US New York US-NY Saratoga US-NY-091 14.0 Town of Providence Private Home L2227285 P 43.0943112 -73.9951837 2015-01-13 11:30:00 obsr2660627 S21762791 Stationary P21 EBIRD 210.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289576825 2021-03-24 20:58:53.646623 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 15 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-01-06 07:45:00 obsr72341 S21230124 Stationary P21 EBIRD 495.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308011444 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-04-06 11:49:00 obsr454647 S22719924 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293705639 2021-04-01 11:42:50.317679 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-01-27 09:30:00 obsr2892286 S21579006 Stationary P21 EBIRD 150.0 2.0 1 G1127619 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312674000 2018-08-04 17:12:01 7200 species avibase-49D9148A Great Egret Ardea alba 2 United States US New York US-NY Tompkins US-NY-109 13.0 Lake van Leer (private) L524497 P 42.5196241 -76.6454744 2015-04-24 15:30:00 obsr1008519 S23040032 Stationary P21 EBIRD 220.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313910266 2021-03-19 16:19:20.977326 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-04-28 16:30:00 obsr736608 S23116832 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316452847 2021-03-19 16:43:17.120646 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Marsh Mill Road L1178579 P 43.1182772 -75.9305906 2015-05-06 09:15:00 obsr2087436 S23263847 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312378433 2021-03-30 19:07:52.958398 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 16:30:00 obsr2750470 S23019019 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317053292 2017-06-16 09:02:41 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 4 United States US New York US-NY Allegany US-NY-003 28.0 Hanging Bog GMA L1263719 P 42.3081651 -78.2502937 2015-05-07 10:30:00 obsr2366185 S23298134 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321903169 2021-03-19 16:06:54.047432 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 6 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-05-22 07:40:00 obsr2744341 S23574399 Traveling P22 EBIRD 100.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292499442 2021-03-26 07:07:10.758746 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 176 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-01-19 15:30:00 obsr1032565 S21483818 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309932028 2021-03-19 16:08:39.161312 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-04-14 08:18:00 obsr2497657 S22857223 Traveling P22 EBIRD 33.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308750290 2021-04-01 11:27:18.37144 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Montgomery US-NY-057 13.0 Mapletown Road - West of Donato Road L748877 P 42.8359158 -74.5500791 2015-04-09 10:25:00 obsr1000124 S22776547 Traveling P22 EBIRD 89.0 6.598 4.0 1 G1212753 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299999465 2018-08-04 16:58:24 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-02-28 09:03:00 obsr800690 S22103252 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316849665 2021-03-19 16:32:34.732091 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 07:45:00 obsr535703 S23286463 Traveling P22 EBIRD 105.0 2.414 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314703455 2021-03-26 07:56:20.588749 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-01 10:10:00 obsr916370 S23165458 Rusty Blackbird Spring Migration Blitz P41 EBIRD 95.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309921224 2021-04-01 11:24:19.637193 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-13 17:45:00 obsr1561508 S22856421 Stationary P21 EBIRD 45.0 2.0 1 G1219235 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316848512 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 06:58:00 obsr2105033 S23286405 Traveling P22 EBIRD 260.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310958065 2018-08-04 17:09:38 32860 species avibase-4D08EE7E Prothonotary Warbler Protonotaria citrea X United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-18 08:00:00 obsr1044068 S22926880 Traveling P22 EBIRD 180.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309010327 2018-08-04 17:08:14 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 2 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-09 15:30:00 obsr1174140 S22795170 Traveling P22 EBIRD 240.0 5.633 5.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312422718 2021-04-01 11:30:42.037277 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 New York, Turtle Pond Overlook L3585778 P 40.78047 -73.96806 2015-04-23 08:58:00 obsr2496391 S23021982 Traveling P22 EBIRD 180.0 3.219 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316435878 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY New York US-NY-061 30.0 Washington Square Park L1628412 H 40.7311385 -73.9972788 2015-05-06 08:00:00 obsr139757 S23262769 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296330950 2015-02-12 20:59:43 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Wayne US-NY-117 13.0 work L3356637 P 43.2815744 -77.0907898 2015-02-11 07:45:00 obsr1521144 S21789161 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295434854 2021-03-26 06:21:54.883933 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 30.0 Fresh Creek Park L582117 H 40.6437706 -73.8831639 2015-02-07 08:20:00 obsr1189028 S21716665 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288367621 2021-04-01 11:27:18.37144 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Montgomery US-NY-057 13.0 5S dump under Rt 90 L2675679 P 42.9302772 -74.2861819 2015-01-01 10:15:00 obsr1708031 S21131768 Traveling P22 EBIRD 20.0 4.828 2.0 1 G1105174 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291733717 2021-04-01 11:54:40.172593 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 2 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-01-16 09:00:00 obsr666331 S21403426 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313302648 2016-03-30 17:44:19 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 45 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-26 17:50:00 obsr1655171 S23078156 Traveling P22 EBIRD 2.0 0.322 2.0 1 G1241618 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316060376 2015-05-05 10:53:41 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY Monroe US-NY-055 13.0 Corbetts Glen Nature Park L1156808 H 43.1346897 -77.5257111 2015-05-05 07:15:00 obsr1534851 S23239681 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290162000 2021-03-26 06:29:56.44369 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Monroe US-NY-055 13.0 Shil's Backyard L242296 P 43.2591667 -77.6480556 2015-01-10 10:45:00 obsr991026 S21276978 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308266191 2021-03-26 07:53:57.664705 406 species avibase-27B2749A Wood Duck Aix sponsa 4 United States US New York US-NY Livingston US-NY-051 13.0 Twin Cedars Environmental Area (DEC pond), Avon L800055 H 42.9002384 -77.6689625 2015-04-07 12:45:00 obsr1060479 S22739305 Traveling P22 EBIRD 49.0 0.563 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307721110 2021-03-19 16:32:34.732091 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-05 09:21:00 obsr1605975 S22698872 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312381457 2021-03-23 17:37:19.520785 406 species avibase-27B2749A Wood Duck Aix sponsa 4 United States US New York US-NY Saratoga US-NY-091 13.0 Kelly Park L1952020 P 43.0098409 -73.8438535 2015-04-23 16:25:00 obsr907769 S23019208 Traveling P22 EBIRD 65.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303587186 2018-08-04 17:01:38 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N Sherwood Pltform base - small brdg (0.15km) L1370979 P 42.4801875 -76.4541519 2015-03-16 18:16:00 obsr2307843 S22386902 Traveling P22 EBIRD 5.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310069939 2021-03-23 17:32:20.03109 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Creekwalk (Franklin Square Section) L3098516 P 43.0557503 -76.1597049 2015-04-14 16:40:00 obsr2964544 S22866975 Traveling P22 EBIRD 15.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306153381 2021-04-01 11:54:40.172593 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 1 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-03-29 09:00:00 obsr666331 S22582950 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300871528 2015-03-04 10:00:49 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 8 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-03-04 08:55:00 obsr2172593 S22169558 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306157158 2021-11-09 18:17:17.335499 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Strever Farm Road, Pine Plains L1363519 H 41.9457427 -73.6491438 2015-03-29 16:20:00 obsr2862523 S22583247 Stationary P21 EBIRD 10.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292640600 2021-03-30 19:29:33.633096 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe N 62 United States US New York US-NY Suffolk US-NY-103 30.0 Setauket- East Setauket, 66 Shore Road L3290073 P 40.94831 -73.10312 2015-01-22 10:10:00 obsr1228860 S21494856 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323511101 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 09:48:00 obsr1982614 S23673930 Traveling P22 EBIRD 180.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317515399 2021-03-19 16:14:11.035882 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor1 L3513941 H 42.6076737 -75.8867458 2015-05-09 11:06:00 obsr620377 S23324987 Stationary P21 EBIRD 17.0 2.0 1 G1272245 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309680700 2015-04-15 08:31:16 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 11 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-04-13 08:00:00 obsr2172593 S22839188 Traveling P22 EBIRD 121.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322441698 2021-04-01 12:26:53.827486 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-05-23 10:00:00 obsr2841967 S23606358 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320187197 2021-04-01 12:32:15.282601 30836 species avibase-8F268682 American Pipit Anthus rubescens X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-14 15:30:00 obsr2207991 S23473594 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303248374 2015-03-15 12:29:13 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Oneida US-NY-065 13.0 US-NY-Rome-7803-7937 Ridge Mills Rd L3489701 P 43.244847 -75.442874 2015-03-15 12:09:00 obsr1092576 S22359840 Incidental P20 EBIRD 2.0 0 G1180510 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292589121 2016-03-11 09:00:40 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson trail west split n side main pond (on small bridge) L301742 P 42.4804482 -76.4531896 2015-01-22 08:35:00 obsr2307843 S21490944 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323014880 2021-04-01 12:26:53.827486 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-25 13:45:00 obsr30103 S23640838 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316460360 2021-11-15 03:06:58.889978 11371 species avibase-75600969 Northern Flicker Colaptes auratus 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 16:25:00 obsr642993 S23264279 Traveling P22 EBIRD 78.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313268080 2021-04-01 11:24:19.637193 526 species avibase-56CCA717 Northern Pintail Anas acuta X United States US New York US-NY Monroe US-NY-055 13.0 Harwick Rd., Irondequoit (Varied Thrush 2015) L3592824 H 43.1740003 -77.5539672 2015-04-26 13:00:00 obsr2223307 S23075981 Traveling P22 EBIRD 120.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288793992 2021-04-01 12:32:15.282601 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 29 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--West Bath House L807105 H 40.5936046 -73.5142422 2015-01-03 07:20:00 obsr2505956 S21166606 Traveling P22 EBIRD 240.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309376383 2021-04-01 12:18:57.910168 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Libe Slope L1483567 H 42.44786 -76.48595 2015-04-12 11:32:00 obsr2211210 S22818753 Stationary P21 EBIRD 62.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295599818 2021-04-01 12:18:57.910168 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-02-08 11:30:00 obsr1655171 S21729908 Stationary P21 EBIRD 33.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310091055 2021-03-26 07:30:35.289997 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Drake Rd., Lansing L366342 H 42.5309152 -76.5116 2015-04-10 08:31:00 obsr2683910 S22868474 Traveling P22 EBIRD 16.0 3.219 2.0 1 G1219954 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314259871 2018-08-04 17:13:05 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-04-30 06:40:00 obsr2074043 S23138468 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312736125 2021-03-23 16:39:03.255227 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-25 09:12:00 obsr1958124 S23044262 Traveling P22 EBIRD 8.0 0.483 2.0 1 G1237335 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319390100 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-12 19:00:00 obsr1310902 S23429015 Historical P62 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304847197 2021-04-01 12:32:15.282601 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe N 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-22 10:32:00 obsr564905 S22482671 Traveling P22 EBIRD 16.0 4.828 2.0 1 G1190122 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289380018 2021-03-23 16:30:20.514143 26890 species avibase-94A44032 European Starling Sturnus vulgaris 155 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-New Haven- Kibby Rd - Home (Private) L5185742 P 43.449899 -76.30402 2015-01-05 10:44:00 obsr2945658 S21214537 Stationary P21 EBIRD 242.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300311964 2019-07-23 17:27:36 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-01 16:20:00 obsr2001485 S22129079 Stationary P21 EBIRD 61.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332421857 2021-03-30 19:13:38.458673 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 7 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-16 07:07:00 obsr334398 S24314079 Traveling P22 EBIRD 185.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303661272 2018-08-04 17:01:40 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-17 09:28:00 obsr271498 S22392638 Stationary P21 EBIRD 30.0 3.0 1 G1183177 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307065148 2021-03-26 06:59:15.841579 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-02 09:44:00 obsr2756208 S22652588 Traveling P22 EBIRD 428.0 0.08 5.0 1 G1202058 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322308317 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-23 14:00:00 obsr2054320 S23598547 Traveling P22 EBIRD 180.0 2.092 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309855616 2021-03-31 04:02:52.909278 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 1 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-04-13 18:44:00 obsr2588479 S22851678 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309436882 2021-03-24 21:01:50.671145 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 4 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-04-12 14:00:00 obsr676630 S22822162 Rusty Blackbird Spring Migration Blitz P41 EBIRD 50.0 0.966 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288747362 2018-08-04 16:52:33 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 41 United States US New York US-NY Nassau US-NY-059 30.0 Point Lookout East Marina L3261255 P 40.592992 -73.58622 2015-01-03 07:12:00 obsr1982614 S21162783 Stationary P21 EBIRD 20.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295471421 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Kings US-NY-047 Brooklyn Army Terminal Pier 4 L2598864 H 40.646519 -74.026074 2015-02-07 11:15:00 obsr1407710 S21719848 Stationary P21 EBIRD 30.0 5.0 1 G1138402 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291179210 2021-03-30 19:39:10.250398 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-01-15 08:00:00 obsr1160328 S21359269 Area P23 EBIRD 105.0 30.3514 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290451574 2021-03-26 06:38:32.090082 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 9 United States US New York US-NY Montgomery US-NY-057 13.0 Otsquago Club Rd L2578072 P 42.9487583 -74.6281636 2015-01-01 11:50:00 obsr1683226 S21300598 Traveling P22 EBIRD 28.0 6.437 2.0 1 G1105365 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310153599 2015-04-15 06:55:49 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-04-15 06:50:00 obsr1349676 S22872700 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310161479 2015-04-15 14:42:55 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 5 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-15 07:55:00 obsr2211210 S22873338 Traveling P22 EBIRD 26.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318611940 2021-04-01 11:24:19.637193 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 13.0 Seneca Park L836388 H 43.2101643 -77.623546 2015-05-11 11:40:00 obsr1545618 S23384321 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294370569 2021-03-26 06:29:56.44369 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 La Casa Mocha L2517907 P 43.1025966 -77.429511 2015-01-30 10:33:00 obsr1638920 S21631537 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322601446 2018-08-06 22:31:03 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Albany US-NY-001 28.0 Holt Preserve (upper) L3669533 P 42.5426627 -73.9287212 2015-05-24 12:30:00 obsr2387108 S23615120 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288125234 2021-03-26 06:20:37.302746 483 species avibase-85625D75 Mallard Anas platyrhynchos N 2 United States US New York US-NY Greene US-NY-039 13.0 wildwing park catskill L749524 P 42.2294707 -73.8825417 2015-01-01 07:15:00 obsr2515158 S21111071 Stationary P21 EBIRD 135.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313285567 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 07:10:00 obsr186871 S23077085 Traveling P22 EBIRD 240.0 6.437 29.0 1 G1237822 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301793005 2018-08-04 16:59:04 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Tioga US-NY-107 28.0 Apalachin bridge L2702357 P 42.066434 -76.144268 2015-03-08 13:41:00 obsr1318356 S22240934 Stationary P21 EBIRD 6.0 2.0 1 G1170815 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306072576 2022-01-10 15:02:01.421713 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Kings US-NY-047 Verrazano Bridge Scenic View (N of bridge) L12657524 H 40.6117722 -74.0370814 2015-03-29 14:02:00 obsr1189028 S22576742 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS924138768 2020-05-16 16:25:56 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Times Beach Nature Preserve L811486 H 42.8742747 -78.8825647 2015-05-17 07:40:00 obsr318741 S69165857 Traveling P22 EBIRD 105.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305407922 2021-11-15 03:06:58.889978 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-26 11:27:00 obsr1889800 S22526789 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311478643 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-19 16:00:00 obsr2186523 S22958873 Traveling P22 EBIRD 120.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303265914 2022-03-05 22:03:50.715584 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 35 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-15 09:30:00 obsr1544235 S22361121 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317198113 2018-08-06 22:29:16 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Canadaway Creek WMA L2266749 H 42.367272 -79.2358312 2015-05-08 12:51:00 obsr2497657 S23305892 Traveling P22 EBIRD 87.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297872795 2015-03-12 13:59:19 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-02-16 10:45:00 obsr1488063 S21928441 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300543302 2018-08-04 16:58:24 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Schuyler US-NY-097 13.0 Seneca Lake, Lake St. L271672 H 42.53521 -76.88287 2015-02-28 09:03:00 obsr2211210 S22144934 Traveling P22 EBIRD 19.0 0.161 2.0 1 G1162254 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321445151 2021-03-19 16:08:39.161312 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 10 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie State Park L1792131 P 42.42209 -79.42812 2015-05-16 11:45:00 obsr2155111 S23546027 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288802653 2021-04-01 11:15:31.646886 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica N 1 Male, Adult (1) United States US New York US-NY Kings US-NY-047 Floyd Bennett Field--Community Gardens L996212 H 40.5863861 -73.892777 2015-01-03 09:14:00 obsr839844 S21167373 Traveling P22 EBIRD 36.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308933423 2021-04-01 12:31:09.823741 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Livingston US-NY-051 13.0 Rosebrugh Road L1022969 P 42.7197061 -77.735728 2015-04-10 11:51:00 obsr72341 S22789789 Traveling P22 EBIRD 6.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324003267 2018-08-04 17:30:41 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Durand Beach, Lake Shore Boulevard L3684876 P 43.2368 -77.55505 2015-05-30 12:10:00 obsr1243175 S23708192 Traveling P22 EBIRD 30.0 0.483 3.0 1 G1296125 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290151750 2022-01-09 18:48:43.534861 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe N X United States US New York US-NY New York US-NY-061 30.0 Greenwich Village (14th St.-Houston St.; Broadway-Hudson River) L3238737 H 40.7342063 -74.0027145 2015-01-04 10:20:00 obsr2797341 S21275994 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291933864 2018-08-04 16:54:03 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-01-19 13:58:00 obsr59643 S21418742 Stationary P21 EBIRD 30.0 2.0 1 G1117246 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288543826 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-01-02 13:45:00 obsr1548221 S21146383 Traveling P22 EBIRD 18.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306208221 2021-03-30 19:03:28.117389 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 8 United States US New York US-NY Cayuga US-NY-011 13.0 Harris Park, Cayuga L388115 H 42.917605 -76.7300177 2015-03-29 14:13:00 obsr1655171 S22587220 Stationary P21 EBIRD 3.0 2.0 1 G1198689 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313718545 2015-04-28 06:42:20 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-27 06:00:00 obsr2716320 S23104553 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317196463 2021-03-19 16:44:35.607263 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-08 11:30:00 obsr2223307 S23305768 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294864367 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus N 2 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek--23rd St. overlook L1847440 H 40.5793572 -73.9907261 2015-02-04 11:10:00 obsr454647 S21671501 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308494756 2017-08-16 17:00:25 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 20 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA--Duck Blind L3547992 P 43.210438 -76.338211 2015-04-08 08:57:00 obsr2172593 S22756721 Traveling P22 EBIRD 19.0 0.322 2.0 1 G1211360 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305502167 2015-03-26 20:32:09 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 100 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Main Pool (West Side Overlook) L767028 H 42.9747388 -76.7707336 2015-03-26 19:40:00 obsr204036 S22534197 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300513542 2021-04-01 12:24:14.132004 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Washington US-NY-115 13.0 Roger's Island L2464667 P 43.2621749 -73.5857069 2015-03-02 10:15:00 obsr1222746 S22142747 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320168438 2022-02-20 21:19:47.419139 5155 species avibase-4880DC55 Virginia Rail Rallus limicola 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-16 09:30:00 obsr93451 S23472577 Traveling P22 EBIRD 180.0 0.805 2.0 1 G7909914 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324390031 2021-11-09 18:47:58.240029 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Dutchess US-NY-027 US-NY_756 28.0 N Chippawalla Rd, Dover L3689224 P 41.6662439 -73.5788512 2015-05-16 05:54:00 obsr1732267 S23733181 Traveling P22 EBIRD 16.0 0.805 2.0 1 G1298911 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318240335 2015-05-10 17:05:42 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-10 16:15:00 obsr334398 S23364070 Traveling P22 EBIRD 15.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320978026 2021-03-19 16:00:00.303051 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-18 15:40:00 obsr128156 S23516696 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309369101 2020-03-22 07:58:01 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-12 11:00:00 obsr1696616 S22818308 Stationary P21 EBIRD 50.0 2.0 1 G1218224 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307123020 2021-04-01 11:49:53.573686 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 16 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Environmental Center L1476823 H 40.7621022 -73.7535993 2015-04-03 09:46:00 obsr2574755 S22656904 Traveling P22 EBIRD 32.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305828664 2018-08-04 17:04:31 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-03-28 14:45:00 obsr1958124 S22558915 Traveling P22 EBIRD 12.0 0.483 2.0 1 G1195277 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311318461 2021-03-23 17:00:13.087107 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Tompkins US-NY-109 28.0 Lindsay-Parsons Biodiversity Preserve (FLLT) L109055 H 42.3101677 -76.5216895 2015-04-19 10:00:00 obsr1418810 S22948906 Traveling P22 EBIRD 110.0 2.5 2.0 1 G1226721 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310872106 2021-04-01 11:30:42.037277 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 08:15:00 obsr512869 S22921553 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319497512 2018-08-06 22:29:54 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 7 United States US New York US-NY Chemung US-NY-015 28.0 Harris Hill--West Gorge L324852 H 42.1060032 -76.9065486 2015-05-14 08:11:00 obsr1092576 S23435408 Traveling P22 EBIRD 8.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321705705 2021-04-01 11:15:31.646886 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-21 07:00:00 obsr827632 S23561682 Traveling P22 EBIRD 315.0 8.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309184032 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 07:30:00 obsr139757 S22806414 Traveling P22 EBIRD 300.0 8.047 1.0 1 G1214818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310020927 2021-12-08 07:58:41.562209 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-14 11:00:00 obsr1223279 S22863342 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300806081 2021-03-22 09:15:15.32301 6339 species avibase-8535345B Herring Gull Larus argentatus 10 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Fort Niagara SP L210265 H 43.2638703 -79.0567981 2015-02-28 16:15:00 obsr2082724 S22164894 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309188587 2021-11-09 19:57:48.746526 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Orange US-NY-071 28.0 River Road, Montgomery, NY L3553937 P 41.5288946 -74.2297697 2015-04-11 11:00:00 obsr1544235 S22806729 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319639501 2015-05-14 18:05:36 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Nassau US-NY-059 30.0 Lynbrook L3091077 P 40.6511413 -73.6801529 2015-05-14 07:00:00 obsr358492 S23443454 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310129238 2021-03-23 16:29:02.691496 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-04-14 16:50:00 obsr2588479 S22871157 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319851375 2021-03-26 06:12:17.833181 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 14 United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-05-15 09:45:00 obsr1080625 S23455577 Traveling P22 EBIRD 230.0 1.609 10.0 1 G1309113 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314637331 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:05:00 obsr2514491 S23161629 Traveling P22 EBIRD 120.0 2.414 3.0 1 G1245777 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301416519 2015-03-14 21:35:21 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-07 13:24:00 obsr2255296 S22211650 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319446953 2015-05-13 22:29:05 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Erin-1091 Breesport Rd L3641681 P 42.176278 -76.695809 2015-05-13 10:37:00 obsr2430746 S23432240 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314086518 2015-05-06 19:17:29 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 3 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-04-29 07:40:00 obsr2766625 S23127654 Traveling P22 EBIRD 245.0 0.966 19.0 1 G1242821 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298629439 2015-02-20 18:12:28 30494 species avibase-240E3390 House Sparrow Passer domesticus 11 United States US New York US-NY Suffolk US-NY-103 30.0 Mattituck Inlet - Boat Launch L3403299 P 41.0134 -72.553078 2015-02-20 15:45:00 obsr2528068 S21993174 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322170667 2021-03-19 16:27:31.421791 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-23 09:00:00 obsr1104059 S23591159 Area P23 EBIRD 90.0 121.4057 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317295599 2021-11-15 03:06:58.889978 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 06:00:00 obsr2927515 S23311345 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290248961 2021-03-31 04:03:32.881251 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-01-10 08:11:00 obsr1893950 S21284415 Traveling P22 EBIRD 30.0 0.805 2.0 1 G1103730 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322814430 2015-05-25 12:56:52 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY New York US-NY-061 30.0 1 Police Plaza L3671547 P 40.7121616 -74.0027583 2015-05-21 16:01:00 obsr2712298 S23628121 Incidental P20 EBIRD 2.0 0 G1289042 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314214906 2021-11-15 03:06:58.889978 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 08:00:00 obsr1562881 S23135559 Traveling P22 EBIRD 120.0 2.0 2.0 1 G1243573 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319698903 2021-04-01 10:55:39.308231 406 species avibase-27B2749A Wood Duck Aix sponsa X United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-14 15:00:00 obsr1379161 S23446741 Traveling P22 EBIRD 150.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289054406 2018-08-04 16:52:45 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-01-04 14:37:00 obsr887540 S21189039 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308207879 2021-04-01 11:30:42.037277 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-07 06:43:00 obsr1433400 S22734934 Traveling P22 EBIRD 129.0 4.667 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322036215 2021-03-19 16:02:45.308962 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Broome US-NY-007 28.0 Tri-City Airport L2347159 H 42.08439 -76.093867 2015-05-22 17:36:00 obsr1764243 S23582891 Traveling P22 EBIRD 29.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301944376 2015-03-09 08:21:05 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 20 United States US New York US-NY Tompkins US-NY-109 13.0 Bradfield Hall, Cornell L3277397 P 42.4479246 -76.4756044 2015-03-09 08:15:00 obsr1659455 S22251970 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306974893 2016-10-26 16:43:08 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 5 United States US New York US-NY Tompkins US-NY-109 28.0 46 whitted road L1434745 P 42.4177923 -76.4316745 2015-04-02 11:00:00 obsr67057 S22645522 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312809199 2018-08-04 17:12:04 616 species avibase-25C94A8F Greater Scaup Aythya marila 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-25 07:30:00 obsr2843748 S23048809 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291102319 2021-03-26 08:12:51.35913 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 350 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-01-15 09:17:00 obsr1092576 S21353088 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304425859 2021-03-26 07:46:52.994574 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-03-21 07:20:00 obsr2321296 S22451797 Traveling P22 EBIRD 104.0 1.609 4.0 1 G1186979 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318632430 2021-03-24 20:11:57.676649 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-03-20 07:15:00 obsr2409011 S23385383 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313460862 2021-03-26 07:30:35.289997 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 14 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-27 07:54:00 obsr1655171 S23088467 Traveling P22 EBIRD 27.0 0.483 2.0 1 G1243179 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318952706 2021-03-19 16:43:17.120646 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Madison US-NY-053 13.0 Cazenovia behind Marquardt L2202903 P 42.9240004 -75.8094406 2015-05-12 12:10:00 obsr2290617 S23403797 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296267906 2015-11-05 11:19:11 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Tompkins US-NY-109 13.0 105 Eastern Heights Dr., Ithaca L2724192 P 42.425089 -76.455526 2015-02-12 09:55:00 obsr1318356 S21782453 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301860434 2019-10-25 16:34:17 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 Unknown Sex, Adult (2) United States US New York US-NY St. Lawrence US-NY-089 US-NY_775 13.0 Upper & Lower Lakes WMA--Hwy 68 marsh L590701 H 44.6182107 -75.2228737 2015-03-08 14:05:00 obsr1558090 S22246108 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313614025 2021-04-01 12:26:53.827486 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Albany US-NY-001 13.0 Lions L2803969 P 42.772447 -73.80926 2015-04-27 15:56:00 obsr648176 S23097852 Traveling P22 EBIRD 178.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310948950 2021-03-24 20:11:19.423282 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-18 10:48:00 obsr2588479 S22926305 Traveling P22 EBIRD 87.0 1.448 4.0 1 G1224261 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298709016 2018-01-07 20:13:45 505 species avibase-C732CB10 American Black Duck Anas rubripes 7 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-02-21 08:25:00 obsr2693145 S22000529 Stationary P21 EBIRD 30.0 2.0 1 G1154675 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324135656 2021-03-26 06:29:56.44369 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 30 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-30 09:47:00 obsr2595828 S23716701 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304217597 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-20 13:52:00 obsr334398 S22436221 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300030833 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-28 09:30:00 obsr454647 S22105966 Traveling P22 EBIRD 135.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303953755 2021-11-09 21:47:19.35706 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Ulster US-NY-111 13.0 my house L2630330 P 41.8322234 -74.0801293 2015-03-18 08:15:00 obsr2382993 S22415445 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307422767 2021-03-30 19:29:33.633096 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-04-04 11:55:00 obsr1228860 S22678496 Traveling P22 EBIRD 44.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295800919 2021-03-30 19:29:33.633096 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Road - Triton Lane Vicinity L750230 P 40.824064 -72.5496233 2015-02-07 14:30:00 obsr2934754 S21745072 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303345758 2021-03-26 07:56:20.588749 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Nassau US-NY-059 30.0 N 2nd St. L2585098 P 40.738664 -73.6975363 2015-03-15 09:00:00 obsr143739 S22367723 Stationary P21 EBIRD 540.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303172204 2015-03-14 22:44:40 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 5 United States US New York US-NY Tioga US-NY-107 28.0 Honeypot Rd--hilltop N of Candor L2308987 P 42.274777 -76.330738 2015-03-13 07:06:00 obsr1828453 S22354055 Stationary P21 EBIRD 3.0 2.0 1 G1179995 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS329699580 2018-08-06 22:30:55 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-23 09:15:00 obsr1962295 S24113540 Traveling P22 EBIRD 90.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288107648 2021-11-09 22:51:50.010879 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 24 United States US New York US-NY Sullivan US-NY-105 US-NY_796 28.0 Plank Rd. (Sullivan Co.) L845785 H 41.525 -74.761 2015-01-01 07:00:00 obsr589327 S21109972 Traveling P22 EBIRD 55.0 0.402 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309577835 2021-03-26 07:07:10.758746 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-12 16:55:00 obsr1958124 S22831678 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307359936 2021-03-23 17:00:13.087107 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-04-04 08:16:00 obsr455249 S22674008 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306525707 2021-11-15 03:06:58.889978 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-31 11:30:00 obsr585997 S22611659 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307030153 2021-03-26 07:30:35.289997 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 5 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-04-02 09:00:00 obsr2137468 S22649886 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309368612 2021-03-26 06:58:34.561206 30494 species avibase-240E3390 House Sparrow Passer domesticus N 2 United States US New York US-NY Orleans US-NY-073 US-NY_1729 13.0 USFWS_219 US-NY-Medina-11780 Tibbits Rd L1602704 P 43.141436 -78.360281 2015-04-12 11:44:00 obsr2588479 S22818278 Traveling P22 EBIRD 25.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311096228 2021-03-26 07:43:12.52294 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Wayne US-NY-117 13.0 East Palmyra L1156478 P 43.0839344 -77.1562529 2015-04-18 11:00:00 obsr2561613 S22935699 Area P23 EBIRD 240.0 0.607 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321684937 2021-03-26 06:39:43.334073 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-05-20 12:35:00 obsr1706920 S23560534 Traveling P22 EBIRD 65.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301491935 2019-07-23 17:27:43 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 600 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-03-07 16:07:00 obsr2871406 S22216776 Stationary P21 EBIRD 13.0 4.0 1 G1169154 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309960320 2015-04-14 11:25:49 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-14 11:16:00 obsr354090 S22859194 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297446572 2021-03-26 07:56:20.588749 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris 2 United States US New York US-NY Nassau US-NY-059 30.0 001home, bethpage, ny L1333196 P 40.719284 -73.4770712 2015-02-16 07:00:00 obsr547602 S21888546 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313415586 2021-03-26 06:39:43.334073 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 13 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-03-17 10:30:00 obsr1532624 S23085598 Traveling P22 EBIRD 120.0 5.0 15.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319338133 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-12 09:10:00 obsr2837502 S23426061 Traveling P22 EBIRD 130.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316136473 2021-04-01 12:31:09.823741 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 4 United States US New York US-NY Livingston US-NY-051 13.0 PFA N_York L1174402 P 42.9077829 -77.9018211 2015-05-04 05:31:00 obsr1060479 S23245143 Traveling P22 EBIRD 84.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305994827 2015-03-29 11:01:04 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-03-29 09:50:00 obsr777630 S22571295 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316265320 2021-04-01 12:18:57.910168 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Palmer Woods L287796 H 42.4604469 -76.4789951 2015-04-26 07:33:00 obsr1725472 S23253436 Traveling P22 EBIRD 60.0 0.161 3.0 1 G1239949 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204668 2021-11-09 19:34:18.590596 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 2 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-01-25 07:00:00 obsr1665312 S21539329 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324566035 2021-03-26 06:52:34.887371 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-04-19 10:00:00 obsr2141910 S23744937 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323217708 2018-08-06 22:30:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-24 07:00:00 obsr2887137 S23654066 Traveling P22 EBIRD 270.0 4.023 2.0 1 G1291916 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323138528 2018-08-06 22:31:11 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Columbia US-NY-021 13.0 Lewis A. Swyer Preserve L122991 H 42.41944 -73.77222 2015-05-26 10:00:00 obsr2766625 S23648886 Traveling P22 EBIRD 120.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315978554 2021-03-23 17:22:05.708166 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 Male, Adult (1); Female, Adult (5) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-03 07:15:00 obsr1000124 S23236025 Area P23 EBIRD 85.0 2.59 2.0 1 G1252522 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306017341 2021-03-26 06:53:58.593564 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 7 United States US New York US-NY Oneida US-NY-065 13.0 Oneida Lake at Oneida Creek L1602079 P 43.1659026 -75.7396389 2015-03-29 10:55:00 obsr545221 S22572857 Stationary P21 EBIRD 15.0 2.0 1 G1197235 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293852519 2021-04-01 10:55:39.308231 483 species avibase-85625D75 Mallard Anas platyrhynchos 875 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-01-29 13:13:00 obsr502830 S21590863 Stationary P21 EBIRD 46.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308513763 2017-08-16 17:00:27 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 8 United States US New York US-NY Schenectady US-NY-093 13.0 Niskayuna Railroad Station at Lions Park L505923 H 42.7776374 -73.823356 2015-04-08 09:55:00 obsr119187 S22758229 Stationary P21 EBIRD 12.0 2.0 1 G1211507 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302838866 2015-03-13 10:58:03 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Cortland-2334–2498 W River Rd L3484719 P 42.530226 -76.094421 2015-03-13 10:52:00 obsr1092576 S22327578 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310613600 2018-02-01 15:11:46 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor28 L3513970 H 42.4979113 -76.1702413 2015-04-16 09:55:00 obsr1042912 S22904665 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291025178 2017-05-07 22:30:53 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-01-14 17:34:00 obsr2588479 S21346692 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309673073 2021-11-09 22:41:29.888948 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA--Haven Rd. (causeway bridge) L2865409 H 41.5356812 -74.5166769 2015-04-11 13:00:00 obsr858943 S22838682 Stationary P21 EBIRD 30.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298840963 2021-04-01 11:49:53.573686 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 13 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-02-21 10:53:00 obsr1982614 S22011408 Traveling P22 EBIRD 130.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293132363 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-25 13:13:00 obsr934639 S21533690 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294431685 2021-12-19 10:32:19.574298 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 12 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-02-01 08:00:00 obsr1139818 S21636396 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317139814 2021-11-15 03:06:58.889978 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 09:15:00 obsr585997 S23302885 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312782338 2018-02-01 15:11:46 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 S C2 S United States US New York US-NY Cortland US-NY-023 28.0 AviCor1 L3513941 H 42.6076737 -75.8867458 2015-04-25 11:43:00 obsr620377 S23047109 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322266229 2021-04-01 11:15:31.646886 591 species avibase-1929E1E1 Canvasback Aythya valisineria 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:15:00 obsr1711339 S23596212 Traveling P22 EBIRD 420.0 8.047 20.0 1 G1285843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317601678 2015-05-09 14:48:10 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-09 08:10:00 obsr319738 S23329803 Traveling P22 EBIRD 110.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317437389 2015-05-09 09:17:49 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Livingston US-NY-051 13.0 US-NY-PORTAGE, 625 NY-436 L3579171 P 42.574927 -78.013591 2015-05-07 09:02:00 obsr731272 S23320038 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306768536 2021-03-26 07:46:52.994574 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-04-01 14:55:00 obsr1154 S22630104 Traveling P22 EBIRD 89.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314067999 2021-04-01 11:30:42.037277 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 07:30:00 obsr1146149 S23126557 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288772488 2018-08-04 16:52:41 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-01-03 15:02:00 obsr1696616 S21164824 Traveling P22 EBIRD 10.0 1.127 2.0 1 G1095569 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322505600 2021-04-01 12:26:53.827486 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 10 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-24 06:07:00 obsr2512689 S23609858 Traveling P22 EBIRD 58.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313824863 2021-04-01 11:15:31.646886 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-28 07:30:00 obsr1077730 S23111358 Traveling P22 EBIRD 195.0 4.023 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298189186 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 63 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-18 07:45:00 obsr1135516 S21955116 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318054788 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 07:00:00 obsr870166 S23354280 Traveling P22 EBIRD 176.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315757848 2021-04-01 12:32:15.282601 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-05-04 09:30:00 obsr247620 S23223719 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308865483 2022-01-20 13:44:29.539827 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Seneca US-NY-099 US-NY_803 13.0 Geneva Lakefront Park, birds over water ONLY (Seneca Co.) L360643 H 42.8659781 -76.9714307 2015-04-10 06:40:00 obsr1278262 S22784712 Traveling P22 EBIRD 40.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311223697 2022-02-13 06:32:05.759346 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 2 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-04-19 09:18:00 obsr1318356 S22943174 Traveling P22 EBIRD 69.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289714432 2019-07-23 17:26:40 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 180 United States US New York US-NY Suffolk US-NY-103 30.0 Southold Town Beach L142618 H 41.0892334 -72.4137115 2015-01-02 09:41:00 obsr535265 S21240591 Stationary P21 EBIRD 11.0 1.0 1 G1100209 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314071486 2021-11-09 18:42:19.628792 456 species avibase-D201EB72 American Wigeon Mareca americana 3 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-04-29 10:00:00 obsr1917973 S23126751 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306758871 2021-04-01 12:14:19.266649 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Southaven County Park L2117422 H 40.8157861 -72.8972683 2015-04-01 09:30:00 obsr1489009 S22629320 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323405591 2021-04-01 10:47:08.851048 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-05-27 06:45:00 obsr646558 S23666600 Traveling P22 EBIRD 20.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309043011 2022-03-05 22:03:50.715584 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 3 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-11 07:30:00 obsr890053 S22797387 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320636509 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-17 07:12:00 obsr152435 S23496991 Traveling P22 EBIRD 624.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210260 2021-03-19 16:06:54.047432 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 28.0 Summerhill SF--Lick St. Christmas Tree Farm L1318052 H 42.6464402 -76.3459897 2015-01-31 09:41:00 obsr1655171 S21618858 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1131430 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319506277 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 07:30:00 obsr794187 S23435985 Traveling P22 EBIRD 270.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314175376 2021-04-01 12:11:16.886124 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Schoharie US-NY-095 28.0 1353 State Route 7 L863903 P 42.6528008 -74.5260626 2015-04-29 06:30:00 obsr119187 S23133089 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307792151 2021-03-24 20:33:47.533911 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 35 United States US New York US-NY Tompkins US-NY-109 13.0 105 Eastern Heights Dr., Ithaca L2724192 P 42.425089 -76.455526 2015-04-05 14:07:00 obsr1318356 S22704257 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308208280 2018-08-04 17:06:19 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-07 07:03:00 obsr1222746 S22734969 Rusty Blackbird Spring Migration Blitz P41 EBIRD 77.0 1.046 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310416884 2021-04-01 12:32:15.282601 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-16 06:45:00 obsr547602 S22890726 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306793248 2021-04-01 11:49:53.573686 245 species avibase-7A24F57F Ross's Goose Anser rossii 7 United States US New York US-NY Queens US-NY-081 Socrates Sculpture Park L949459 H 40.7684761 -73.9366525 2015-04-01 13:00:00 obsr2310825 S22631994 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305563770 2018-08-04 17:03:41 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Red Creek Unit L1528347 H 43.3006399 -76.7825379 2015-03-26 17:16:00 obsr211814 S22538881 Stationary P21 EBIRD 15.0 3.0 1 G1193968 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321906053 2021-04-01 10:45:00.916278 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 CN C4 CN United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-22 09:00:00 obsr128156 S23574575 Traveling P22 EBIRD 36.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320251359 2018-08-04 17:27:32 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 3 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-16 10:40:00 obsr1079517 S23476792 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316678058 2021-03-26 06:12:17.833181 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-05-06 07:00:00 obsr479109 S23276951 Stationary P21 EBIRD 40.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304017381 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 50 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-19 10:07:00 obsr2574755 S22420218 Traveling P22 EBIRD 42.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313087464 2015-04-30 23:26:32 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 2 United States US New York US-NY Essex US-NY-031 14.0 Fiegel's Field L3445655 P 43.826187 -73.491547 2015-04-26 09:12:00 obsr2420101 S23065413 Traveling P22 EBIRD 88.0 0.966 2.0 1 G1236702 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288602493 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 12 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-02 13:00:00 obsr2448957 S21151161 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293523265 2018-08-04 16:55:18 5956 species avibase-F35821AA Semipalmated Sandpiper Calidris pusilla 6 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-01-26 09:30:00 obsr2830163 S21564781 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311896714 2021-03-19 16:44:35.607263 592 species avibase-3072CC16 Redhead Aythya americana 4 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-04-20 17:00:00 obsr1962295 S22986730 Traveling P22 EBIRD 90.0 0.644 2.0 1 G1232212 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314636677 2021-11-02 20:32:06.137153 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-01 12:20:00 obsr317968 S23161588 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307783917 2022-02-27 09:35:49.066489 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-04-05 16:00:00 obsr545221 S22703680 Traveling P22 EBIRD 45.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310382665 2021-03-26 07:20:31.408164 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Office - 500 Bi-County Blvd L2580268 P 40.729186 -73.427349 2015-04-15 13:30:00 obsr2555972 S22888387 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288326154 2021-03-26 06:29:56.44369 591 species avibase-1929E1E1 Canvasback Aythya valisineria 3 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-01-01 07:40:00 obsr745890 S21128507 Incidental P20 EBIRD 2.0 1 G1091056 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310108082 2021-11-09 21:41:38.795423 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis N X United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-04-14 06:00:00 obsr1588136 S22869656 Stationary P21 EBIRD 660.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293529006 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY New York US-NY-061 30.0 Riverside Park--South of 96th St. L1018494 H 40.7902571 -73.9812093 2015-01-27 09:00:00 obsr1668936 S21565272 Traveling P22 EBIRD 103.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307566745 2021-03-26 08:11:28.0353 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 2 United States US New York US-NY Saratoga US-NY-091 13.0 Betar Byway L3538963 P 43.2934775 -73.6403167 2015-04-03 09:00:00 obsr1647272 S22688454 Traveling P22 EBIRD 180.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305904783 2021-03-30 19:13:38.458673 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-28 18:35:00 obsr730231 S22564725 Stationary P21 EBIRD 61.0 3.0 1 G1196955 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311049126 2021-03-31 04:01:10.517395 6339 species avibase-8535345B Herring Gull Larus argentatus 8 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 07:35:00 obsr41879 S22932586 Traveling P22 EBIRD 320.0 8.047 16.0 1 G1224971 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323364617 2018-08-06 22:31:12 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 18 P C3 P United States US New York US-NY Essex US-NY-031 US-NY_2815 14.0 Whiteface Mountain Memorial Highway L3677396 P 44.3695144 -73.9124537 2015-05-26 13:24:00 obsr2476032 S23663728 Traveling P22 EBIRD 143.0 10.139 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304655624 2021-03-26 07:20:31.408164 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 4 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L1224138 P 40.8106911 -72.594738 2015-03-22 10:45:00 obsr2692002 S22468629 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295972416 2021-04-01 10:51:06.899622 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-02-10 12:37:00 obsr2497657 S21758898 Traveling P22 EBIRD 33.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292615034 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-01-22 11:42:00 obsr1821546 S21493197 Traveling P22 EBIRD 86.0 1.046 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310283542 2019-03-20 23:16:16 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 5 United States US New York US-NY Rensselaer US-NY-083 13.0 American Oil Rd L4353393 P 42.5993455 -73.7541175 2015-04-15 09:50:00 obsr2855945 S22881466 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318120783 2018-08-04 17:15:51 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Nassau US-NY-059 30.0 Old Westbury Gardens L818565 H 40.7737819 -73.594923 2015-05-10 11:19:00 obsr1228860 S23357661 Traveling P22 EBIRD 91.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309962097 2021-11-09 19:55:29.587179 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 3 United States US New York US-NY Orange US-NY-071 28.0 Six and a Half Station Rd. Sanctuary L306143 H 41.4025242 -74.3499176 2015-04-14 08:15:00 obsr1568163 S22859320 Traveling P22 EBIRD 180.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308741317 2021-04-01 12:29:50.209479 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 10 United States US New York US-NY Fulton US-NY-035 13.0 Dolgeville - East L619350 P 43.0989461 -74.7668982 2015-04-09 08:53:00 obsr1000124 S22775860 Traveling P22 EBIRD 6.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309316976 2021-03-19 16:27:31.421791 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-04-12 07:42:00 obsr1603345 S22815108 Stationary P21 EBIRD 53.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305248622 2018-08-04 16:59:05 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 35 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-08 14:05:00 obsr606571 S22514387 Traveling P22 EBIRD 55.0 0.161 10.0 1 G1192119 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316459356 2015-05-07 11:34:59 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-06 08:05:00 obsr1962295 S23264214 Traveling P22 EBIRD 65.0 0.805 2.0 1 G1255843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294343892 2018-08-04 16:55:33 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 11 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-02-01 10:10:00 obsr1079517 S21629574 Area P23 EBIRD 35.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289867218 2021-04-01 11:42:50.317679 32955 species avibase-41062654 Northern Parula Setophaga americana 5 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-01-06 10:45:00 obsr1195517 S21253079 Stationary P21 EBIRD 150.0 2.0 1 G1101274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289626502 2021-04-26 05:03:09.627903 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas N 150 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-06 13:33:00 obsr564905 S21234163 Traveling P22 EBIRD 50.0 0.483 3.0 1 G1099709 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297533228 2015-02-16 11:45:24 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Chemung US-NY-015 28.0 1258 Hoffman Hollow Road, Lowman, NY 14861 L3367676 P 42.0421539 -76.7189026 2015-02-16 11:15:00 obsr2708128 S21896591 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316959212 2015-05-07 18:11:48 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 7 United States US New York US-NY Lewis US-NY-049 14.0 My back yard L892527 P 43.5545199 -75.3677559 2015-05-07 18:10:00 obsr1783124 S23292729 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320609864 2021-11-15 03:06:58.889978 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 07:55:00 obsr1154258 S23495577 Traveling P22 EBIRD 220.0 2.414 7.0 1 G1275166 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295413677 2021-03-23 16:39:03.255227 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-02-07 15:10:00 obsr1893950 S21715104 Stationary P21 EBIRD 9.0 2.0 1 G1137882 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307066319 2021-03-26 06:17:19.712573 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Erie US-NY-029 13.0 Allentown L1280687 P 42.8951414 -78.8788801 2015-04-02 19:00:00 obsr2597186 S22652663 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307158216 2021-03-23 16:39:03.255227 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-04-03 10:08:00 obsr155915 S22659401 Traveling P22 EBIRD 14.0 0.483 2.0 1 G1202537 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304412320 2015-03-21 15:44:22 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Rensselaer US-NY-083 13.0 Troy Federal Lock and Dam (Rensselaer Co.) L548084 H 42.750047 -73.6860516 2015-03-21 09:30:00 obsr1154 S22450894 Stationary P21 EBIRD 10.0 4.0 1 G1186981 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290057099 2021-03-23 16:39:03.255227 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-01-09 15:15:00 obsr1032565 S21268556 Traveling P22 EBIRD 65.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309925357 2021-03-19 16:02:45.308962 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 5 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-14 07:34:00 obsr1764243 S22856721 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289449053 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard on Village Lane L3270389 P 43.1324965 -77.5516507 2015-01-05 08:30:00 obsr1534851 S21219840 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316713602 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-05-06 16:39:00 obsr2321296 S23278947 Stationary P21 EBIRD 120.0 2.0 1 G1257076 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298828670 2021-03-26 06:29:56.44369 255 species avibase-466E9077 Greater White-fronted Goose Anser albifrons 1 United States US New York US-NY Monroe US-NY-055 13.0 4 Woodside Drive, Penfield, NY L868257 P 43.1235553 -77.4714392 2015-02-21 14:35:00 obsr2716898 S22010441 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305574284 2015-07-23 19:02:56 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Kings US-NY-047 Coney Island--Norton Pt. L2573369 H 40.5775298 -74.0124072 2015-03-24 15:52:00 obsr1821546 S22539708 Traveling P22 EBIRD 75.0 0.966 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS323271261 2021-03-26 06:17:19.712573 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-25 13:10:00 obsr1379161 S23657482 Traveling P22 EBIRD 410.0 1.609 1.0 1 G1292307 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308042173 2021-03-26 07:00:33.333856 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-04-06 13:38:00 obsr2574755 S22722092 Traveling P22 EBIRD 107.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300269112 2021-04-25 10:23:05.112231 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris X United States US New York US-NY Tioga US-NY-107 28.0 1784 Lisle Rd, Owego, New York, USA L1809615 P 42.1245511 -76.221393 2015-03-01 12:07:00 obsr1920736 S22125572 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296115382 2021-03-23 17:26:08.495143 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-02-11 09:45:00 obsr247620 S21770221 Traveling P22 EBIRD 105.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304701320 2021-03-30 19:29:33.633096 303 species avibase-B59E1863 Canada Goose Branta canadensis N 1 United States US New York US-NY Suffolk US-NY-103 30.0 Hawleys Lake L621862 H 40.6979497 -73.3163059 2015-03-22 14:45:00 obsr1137265 S22472218 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307456035 2021-03-26 08:05:20.615241 406 species avibase-27B2749A Wood Duck Aix sponsa 5 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-04-04 10:30:00 obsr2143830 S22680739 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295187014 2018-08-04 16:55:43 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-06 10:30:00 obsr2172593 S21696908 Stationary P21 EBIRD 38.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293371463 2015-01-26 12:37:39 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 Fort Tilden--Fishermans Parking Lot L1059216 H 40.5572434 -73.898989 2015-01-25 11:00:00 obsr1033228 S21552001 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322179130 2021-04-01 12:26:53.827486 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 15 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-23 05:53:00 obsr2512689 S23591617 Traveling P22 EBIRD 254.0 4.023 15.0 1 G1285606 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302919439 2015-03-13 18:27:00 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Oneida US-NY-065 13.0 Whitestown L210157 P 43.17351 -75.4187135 2015-03-10 obsr1384380 S22333831 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304709686 2021-04-01 11:49:53.573686 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-03-22 18:15:00 obsr2574755 S22472839 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306200033 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-29 11:00:00 obsr1152226 S22586572 Traveling P22 EBIRD 240.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322721855 2021-03-19 16:44:35.607263 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Monroe US-NY-055 13.0 Kirkwood Rd. south to Slater Creek L823860 H 43.26855 -77.6372024 2015-05-25 05:36:00 obsr1696616 S23622549 Traveling P22 EBIRD 31.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312271173 2015-04-23 10:23:03 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-04-21 08:40:00 obsr983655 S23011699 Traveling P22 EBIRD 25.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305671326 2021-04-01 12:43:36.236969 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 8 United States US New York US-NY Tioga US-NY-107 28.0 Blinn Rd., Candor L2368680 P 42.282899 -76.332858 2015-03-27 15:50:00 obsr1318356 S22547256 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310094985 2021-03-23 16:48:08.60516 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 150 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-13 10:09:00 obsr2683910 S22868771 Traveling P22 EBIRD 29.0 0.805 2.0 1 G1220006 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296277971 2021-04-01 11:58:54.966271 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-Potsdam-28 Pleasant St L3346483 P 44.67341 -74.981799 2015-02-10 09:50:00 obsr2762365 S21783292 Stationary P21 EBIRD 42.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296385370 2021-04-01 12:18:57.910168 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 200 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-02-13 08:37:00 obsr2001485 S21793479 Traveling P22 EBIRD 32.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311824759 2021-04-01 10:47:08.851048 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-15 14:00:00 obsr2945921 S22982318 Traveling P22 EBIRD 120.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298418619 2021-04-01 11:54:40.172593 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-02-18 10:43:00 obsr1032565 S21974943 Traveling P22 EBIRD 175.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313725364 2021-03-23 16:21:52.613913 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-04-28 07:03:00 obsr606693 S23105001 Traveling P22 EBIRD 19.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306060722 2015-03-31 15:42:09 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 Male, Juvenile (1) United States US New York US-NY Saratoga US-NY-091 13.0 schuylerville route 4 boat launch L3523263 P 43.0864419 -73.5791731 2015-03-29 14:30:00 obsr1647272 S22575836 Stationary P21 EBIRD 45.0 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311644408 2021-11-09 22:27:57.096501 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Sullivan US-NY-105 28.0 Yankee Lake L1031003 P 41.5830932 -74.5566559 2015-04-20 15:30:00 obsr444155 S22970379 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310783725 2015-04-17 21:53:55 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Cheney Road L3050969 P 42.1290222 -79.4032601 2015-04-11 07:30:00 obsr2418 S22915776 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313626527 2021-03-26 07:15:58.375907 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY St. Lawrence US-NY-089 13.0 Remington Recreation Trail L270558 H 44.6127667 -75.1665791 2015-04-27 06:28:00 obsr1558090 S23098623 Traveling P22 EBIRD 47.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306770955 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-04-01 16:25:00 obsr934639 S22630307 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312048140 2021-03-19 16:44:35.607263 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 13.0 Issac Gordon Nature Park L3582471 P 43.0495097 -77.5646353 2015-04-17 17:30:00 obsr2290061 S22996865 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290464095 2015-01-11 16:51:19 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Herkimer US-NY-043 13.0 Saltis Residence L3285512 P 43.0289107 -74.9475729 2015-01-11 14:00:00 obsr1298010 S21301609 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314777732 2021-03-24 20:53:39.352228 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-01 18:10:00 obsr2512689 S23170134 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308116879 2021-03-30 19:13:38.458673 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-06 11:30:00 obsr1534851 S22727717 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288868991 2021-11-09 17:44:58.165123 20829 species avibase-B9B272F4 Common Raven Corvus corax 12 United States US New York US-NY Dutchess US-NY-027 13.0 Feeder/yard observations L1072689 P 41.8611874 -73.6756039 2015-01-03 13:30:00 obsr1917973 S21174636 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309657178 2015-07-09 21:50:33 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-12 10:45:00 obsr1008519 S22836898 Incidental P20 EBIRD 4.0 1 G1218534 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319545194 2018-08-04 17:27:10 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-05-14 09:27:00 obsr1201479 S23438174 Traveling P22 EBIRD 158.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313972813 2018-08-04 17:12:37 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 S C2 S United States US New York US-NY Schuyler US-NY-097 US-NY_845 13.0 Finger Lakes NF--Ballard Pond L782293 H 42.5279345 -76.7877173 2015-04-28 10:45:00 obsr2260025 S23120619 Traveling P22 EBIRD 40.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317299482 2022-02-17 14:32:23.002448 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-08 12:20:00 obsr2448957 S23311558 Traveling P22 EBIRD 300.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312015285 2015-04-22 08:13:57 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 8 United States US New York US-NY Jefferson US-NY-045 US-NY_805 Point Peninsula Bird Conservation Area L1367385 H 43.9953255 -76.2449646 2015-01-21 16:15:00 obsr490751 S22994748 Stationary P21 EBIRD 75.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312483440 2022-02-18 10:47:29.953615 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-24 07:00:00 obsr1062070 S23026171 Stationary P21 EBIRD 113.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305154101 2021-04-01 11:54:40.172593 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 97 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-03-23 14:03:00 obsr1032565 S22507163 Traveling P22 EBIRD 139.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296605169 2021-11-09 21:57:08.685532 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 15 United States US New York US-NY Ulster US-NY-111 28.0 Old Fort Rd; Gyr spot L3354451 P 41.6324769 -74.2318726 2015-02-13 12:45:00 obsr652303 S21813649 Stationary P21 EBIRD 240.0 2.0 0 G1145200 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320463847 2021-04-01 11:24:19.637193 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-16 09:30:00 obsr1030861 S23487995 Traveling P22 EBIRD 120.0 0.402 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316943211 2021-11-15 03:06:58.889978 26278 species avibase-A381417F House Wren Troglodytes aedon 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-07 08:15:00 obsr1693806 S23291823 Traveling P22 EBIRD 450.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295388530 2021-03-23 17:00:13.087107 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-07 08:35:00 obsr1655171 S21713153 Traveling P22 EBIRD 16.0 0.322 2.0 1 G1138387 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303012629 2021-03-24 20:33:47.533911 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-03-14 08:46:00 obsr59643 S22341426 Traveling P22 EBIRD 110.0 1.207 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293696986 2021-11-09 17:43:05.347258 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Dutchess US-NY-027 28.0 Brothers Rd - Depot Hill L1034813 P 41.5944317 -73.6783826 2015-01-28 10:30:00 obsr1732267 S21578377 Stationary P21 EBIRD 98.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311456311 2021-03-30 19:07:52.958398 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 13:00:00 obsr2078092 S22957460 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314262897 2021-12-10 08:21:29.396662 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-04-29 06:05:00 obsr1832377 S23138671 Traveling P22 EBIRD 70.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308882615 2018-08-04 17:08:21 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-10 10:30:00 obsr869999 S22785864 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317610467 2021-04-01 11:24:19.637193 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 4 United States US New York US-NY Monroe US-NY-055 13.0 Tinker Nature Park L946685 H 43.0670694 -77.57339 2015-05-09 11:32:00 obsr2595828 S23330256 Traveling P22 EBIRD 86.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291403979 2021-03-23 16:52:36.900075 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Suffolk County Farm & Education Center L3140486 P 40.8253386 -72.9192209 2015-01-16 09:15:00 obsr1107696 S21377545 Traveling P22 EBIRD 92.0 1.545 1.0 1 G1111871 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298338783 2021-04-01 12:32:15.282601 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 17 United States US New York US-NY Nassau US-NY-059 30.0 jones beach L3398591 P 40.6663553 -73.4418349 2015-02-18 13:00:00 obsr1723961 S21968116 Traveling P22 EBIRD 180.0 3.219 4.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309415222 2015-09-13 07:56:32 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 5 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-12 10:50:00 obsr876649 S22821104 Traveling P22 EBIRD 85.0 1.609 2.0 1 G1395745 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310068448 2016-01-27 10:57:21 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Jefferson US-NY-045 13.0 Black River Fishing site L2127803 P 43.9789116 -75.8680201 2015-04-14 15:00:00 obsr2091520 S22866867 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292731826 2015-01-23 08:15:37 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Wayne US-NY-117 13.0 Esperance L3311545 P 43.26925 -76.73594 2015-01-23 07:30:00 obsr2128541 S21501985 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295435542 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 14 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-07 07:55:00 obsr2514491 S21716838 Traveling P22 EBIRD 240.0 8.047 3.0 1 G1138068 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317819538 2022-02-17 14:32:23.002448 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-09 08:30:00 obsr2352976 S23341384 Traveling P22 EBIRD 90.0 1.609 3.0 1 G1260060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297489578 2015-02-16 10:15:13 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Erie US-NY-029 13.0 Orchard Park, NY L1979977 P 42.7416228 -78.712728 2015-02-16 07:00:00 obsr2215953 S21892531 Stationary P21 EBIRD 195.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308503953 2018-02-19 13:16:38 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 110 United States US New York US-NY Warren US-NY-113 13.0 Wincrest Dr, Queensbury, NY L3548886 P 43.3448307 -73.6710473 2015-04-08 11:08:00 obsr1222746 S22757465 Stationary P21 EBIRD 23.0 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312086540 2021-03-23 17:37:19.520785 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 5 United States US New York US-NY Saratoga US-NY-091 13.0 Nolan Rd., S. Glens Falls (boat launch and trail) L2894086 H 43.2704322 -73.6610529 2015-04-22 08:00:00 obsr1222746 S22999190 Rusty Blackbird Spring Migration Blitz P41 EBIRD 25.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312512105 2015-04-24 11:21:59 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Tompkins US-NY-109 28.0 US-NY-Danby-23–51 Travor Rd L3586451 P 42.31798 -76.435437 2015-04-24 06:19:00 obsr1828453 S23028054 Traveling P22 EBIRD 2.0 0.161 2.0 1 G1233737 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309925956 2015-04-14 07:59:10 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-14 06:49:00 obsr666964 S22856753 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313726039 2020-05-02 15:38:26 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-04-28 07:30:00 obsr943683 S23105038 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314307067 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 Unknown Sex, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-04-30 06:13:00 obsr2512689 S23141428 Traveling P22 EBIRD 127.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307665193 2021-03-26 08:09:53.772059 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 8 United States US New York US-NY Rensselaer US-NY-083 13.0 Coopers Pond, Brunswick L1008485 H 42.7363667 -73.6531746 2015-04-05 09:34:00 obsr2211210 S22695233 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305966009 2021-11-09 18:32:20.227374 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Dutchess US-NY-027 13.0 2122 New Hackensack Road, Poughkeepsie, New York, US (41.66, -73.874) L233101 P 41.6600962 -73.8740462 2015-03-28 07:45:00 obsr842638 S22569142 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313296270 2021-03-26 07:30:35.289997 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 4 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-25 07:39:00 obsr1655171 S23077755 Traveling P22 EBIRD 42.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313904700 2021-03-24 20:33:47.533911 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 3 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-04-28 17:09:00 obsr2683910 S23116459 Traveling P22 EBIRD 28.0 1.77 2.0 1 G1241682 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305591139 2021-04-01 12:26:53.827486 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N X United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-03-27 11:45:00 obsr1154 S22541062 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306841060 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-03-27 15:30:00 obsr1548221 S22635526 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323942849 2018-02-01 15:11:46 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cortland US-NY-023 28.0 AviCor11 L3513953 H 42.5527608 -76.0336385 2015-05-30 06:48:00 obsr2173269 S23704633 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340104780 2021-11-09 19:57:48.990233 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-16 11:29:00 obsr1181085 S24873532 Traveling P22 EBIRD 166.0 0.402 4.0 1 G1395530 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312852417 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis N 14 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 08:00:00 obsr1668936 S23051215 Traveling P22 EBIRD 200.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317783244 2021-04-01 11:30:42.037277 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 09:00:00 obsr2319444 S23339391 Traveling P22 EBIRD 180.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298769082 2021-03-26 07:07:10.758746 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Richmond US-NY-085 Page Ave. Beach L1340800 H 40.5023216 -74.2288034 2015-02-21 09:30:00 obsr1958124 S22005543 Stationary P21 EBIRD 30.0 2.0 1 G1155364 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311317434 2021-03-24 20:33:47.533911 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-19 07:30:00 obsr1008519 S22948845 Traveling P22 EBIRD 75.0 1.207 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320092130 2021-03-19 16:44:35.607263 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area - NCAE L474355 P 43.0923966 -77.3768806 2015-05-12 11:15:00 obsr2113616 S23468841 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311010357 2018-08-04 17:09:43 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 25 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-18 11:00:00 obsr1489009 S22930123 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307763657 2021-03-26 06:55:00.227271 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-05 15:38:00 obsr606693 S22702016 Traveling P22 EBIRD 15.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309387613 2021-04-01 11:24:19.637193 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 5 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-11 10:10:00 obsr1782363 S22819425 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288844582 2021-03-30 19:39:10.250398 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-01-02 08:00:00 obsr1160328 S21172985 Area P23 EBIRD 105.0 30.3514 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306989390 2021-03-30 19:13:38.458673 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 15 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay - Breakers L1451014 P 43.3169104 -77.7221335 2015-04-02 09:15:00 obsr983655 S22646603 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319217482 2015-05-13 09:39:30 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Madison US-NY-053 28.0 Community Mem Hosp Parking Lot L909358 P 42.8124505 -75.5448461 2015-05-13 09:26:00 obsr589593 S23419336 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313172994 2021-11-09 20:43:00.370448 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Putnam US-NY-079 US-NY_868 28.0 Jordan Pond/Perkins Trail Loop L3592405 P 41.4512423 -73.8614702 2015-04-26 06:30:00 obsr2898234 S23070350 Traveling P22 EBIRD 360.0 11.265 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288476226 2021-03-30 19:39:10.250398 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 80 United States US New York US-NY Nassau US-NY-059 30.0 Saint Johns Pond Sanctuary L123034 H 40.85417 -73.46333 2015-01-02 11:30:00 obsr676630 S21140550 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301248474 2018-08-04 16:58:36 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Erie US-NY-029 13.0 River Rd water treatment pond L2663480 P 42.9679013 -78.9236516 2015-03-02 15:35:00 obsr2597186 S22197539 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288797039 2018-08-04 16:52:38 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Ontario US-NY-069 13.0 US-NY-Rushville-4931-4961 Co Rd 11 L3260666 P 42.789011 -77.277463 2015-01-03 11:25:00 obsr696564 S21166907 Traveling P22 EBIRD 1.0 3.219 2.0 1 G1093376 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293868862 2021-11-15 03:06:58.889978 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-29 14:05:00 obsr2906952 S21592416 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303498523 2018-08-04 17:01:33 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 Male, Adult (1); Unknown Sex and Age (1) United States US New York US-NY Warren US-NY-113 13.0 Shermantown Rd. Portage Trail L960269 H 43.3064521 -73.6251848 2015-03-16 09:44:00 obsr1222746 S22380276 Traveling P22 EBIRD 29.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315319797 2015-05-03 13:43:08 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-05-03 13:35:00 obsr1792012 S23199982 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314088553 2021-04-01 11:30:42.037277 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 12:55:00 obsr904434 S23127766 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307924545 2021-03-19 16:02:45.308962 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 50 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-06 07:36:00 obsr1764243 S22714037 Traveling P22 EBIRD 15.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305207995 2021-03-19 16:06:54.047432 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 3 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-03-25 09:12:00 obsr1092576 S22511100 Traveling P22 EBIRD 6.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308649947 2021-04-01 10:47:08.851048 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Broome US-NY-007 28.0 Water St. River Walk L2455810 H 42.1064931 -75.9110038 2015-04-09 12:09:00 obsr1764243 S22768344 Traveling P22 EBIRD 26.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301814880 2021-03-26 07:30:35.289997 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-08 08:30:00 obsr241086 S22242622 Stationary P21 EBIRD 45.0 11.0 1 G1170861 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313850800 2021-03-24 20:33:47.533911 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 10 United States US New York US-NY Tompkins US-NY-109 28.0 Websterk Home L1084526 P 42.4154016 -76.3545191 2015-04-26 09:15:00 obsr2261732 S23112962 Traveling P22 EBIRD 30.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309934863 2021-04-01 12:14:19.266649 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-14 07:15:00 obsr544268 S22857430 Rusty Blackbird Spring Migration Blitz P41 EBIRD 75.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311179765 2021-11-02 20:32:06.137153 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-04-19 08:32:00 obsr1696616 S22940576 Traveling P22 EBIRD 94.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315479458 2021-04-01 11:30:42.037277 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 09:20:00 obsr1129613 S23208488 Traveling P22 EBIRD 240.0 6.437 25.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314371594 2021-03-19 16:44:35.607263 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-04-26 10:30:00 obsr1561508 S23144874 Traveling P22 EBIRD 60.0 0.322 2.0 1 G1244317 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295429024 2021-03-22 08:58:29.008072 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-02-07 14:59:00 obsr2493447 S21716221 Traveling P22 EBIRD 120.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292712789 2021-04-01 11:49:53.573686 5923 species avibase-15369E8E Dunlin Calidris alpina 1 United States US New York US-NY Queens US-NY-081 30.0 Rosie's Place-243 Beach 135th Street L869966 P 40.5751026 -73.8535845 2015-01-22 09:00:00 obsr604941 S21500768 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298914295 2019-07-23 17:27:25 32869 species avibase-D204A930 Tennessee Warbler Leiothlypis peregrina 1 United States US New York US-NY Seneca US-NY-099 13.0 South of Sheldrake Point to CR 141 L1031120 H 42.652205 -76.6959858 2015-02-22 07:58:00 obsr1092576 S22017448 Traveling P22 EBIRD 11.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316543195 2021-03-23 17:22:05.708166 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 2 United States US New York US-NY Herkimer US-NY-043 13.0 Doyle Road L2742136 P 42.9102327 -75.1802845 2015-05-06 13:40:00 obsr1680059 S23269069 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317792573 2021-03-24 20:53:39.352228 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Albany US-NY-001 13.0 Tivoli Lake Preserve L3480691 H 42.6707536 -73.7632259 2015-05-09 08:00:00 obsr2851090 S23339905 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290397306 2015-01-11 12:33:23 681 species avibase-407E2CA8 Common Merganser Mergus merganser 50 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-10 13:30:00 obsr2363365 S21296282 Traveling P22 EBIRD 150.0 3.219 8.0 1 G1105061 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302921625 2021-03-24 20:58:53.646623 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-03-12 11:45:00 obsr72341 S22334007 Stationary P21 EBIRD 305.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309998401 2015-04-14 14:25:15 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-04-14 01:21:00 obsr824114 S22861796 Traveling P22 EBIRD 20.0 0.402 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288591881 2021-04-01 12:14:19.266649 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet, east L1867552 H 40.8427805 -72.4742851 2015-01-02 14:44:00 obsr1982614 S21150361 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303241713 2021-03-26 07:20:31.408164 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 11 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-03-15 10:37:00 obsr2485753 S22359313 Traveling P22 EBIRD 80.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318991131 2015-05-12 14:55:09 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay L83 H 43.3130395 -77.7153471 2015-05-12 09:00:00 obsr1229221 S23406016 Traveling P22 EBIRD 60.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311103049 2021-03-24 20:33:47.533911 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Tompkins US-NY-109 13.0 206 Tareyton Drive, Ithaca L141039 P 42.471756 -76.4603653 2015-04-18 11:00:00 obsr620377 S22936088 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290572855 2021-03-26 06:39:43.334073 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe N 2 United States US New York US-NY New York US-NY-061 30.0 Chelsea (14th-34th St.; 6th Ave. to Hudson R.) L9165682 H 40.746702 -74.0015091 2015-01-11 08:20:00 obsr2863596 S21310295 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321405314 2021-03-26 07:53:57.664705 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-05-20 06:32:00 obsr1060479 S23543409 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309415227 2015-09-13 07:56:32 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-12 10:50:00 obsr876649 S22821104 Traveling P22 EBIRD 85.0 1.609 2.0 1 G1395745 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297211435 2021-03-24 19:47:16.07498 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 9 United States US New York US-NY Madison US-NY-053 13.0 Lakeport Rd yard L2608304 P 43.0865085 -75.8717805 2015-02-15 16:00:00 obsr1946969 S21867842 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308699890 2021-04-01 11:49:53.573686 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 1 United States US New York US-NY Queens US-NY-081 30.0 Flushing Meadows Corona Park L520701 H 40.7397975 -73.8407834 2015-04-09 16:26:00 obsr2574755 S22772576 Traveling P22 EBIRD 12.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299092398 2021-04-01 10:53:25.818871 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Cortland-44 River St L3409093 P 42.606232 -76.159635 2015-02-22 17:47:00 obsr1318356 S22033946 Traveling P22 EBIRD 11.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305236744 2021-04-01 10:49:39.496318 662 species avibase-FB738385 Bufflehead Bucephala albeola 26 United States US New York US-NY Cayuga US-NY-011 13.0 Cornell Corn Fields L350644 H 42.7246746 -76.6526002 2015-03-08 10:15:00 obsr71667 S22513379 Traveling P22 EBIRD 45.0 0.161 11.0 1 G1192122 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314427935 2015-04-30 18:10:34 32578 species avibase-000482C9 Orchard Oriole Icterus spurius 1 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-30 06:15:00 obsr2716320 S23148463 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301902551 2018-08-04 16:59:05 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Cattaraugus US-NY-009 28.0 River Road, Wastewater Outlet L3468115 P 42.0734763 -78.4469898 2015-03-08 14:00:00 obsr792971 S22249173 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310492275 2021-03-26 06:29:56.44369 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 12 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-16 15:45:00 obsr408487 S22896202 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316003950 2022-02-08 20:42:54.672036 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 08:00:00 obsr118940 S23237842 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307748374 2021-03-30 19:39:10.250398 242 species avibase-D3A260BC Snow Goose Anser caerulescens 3 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-05 11:00:00 obsr1348614 S22700986 Rusty Blackbird Spring Migration Blitz P41 EBIRD 150.0 1.5 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303723616 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-17 10:55:00 obsr2505956 S22397404 Traveling P22 EBIRD 130.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312729515 2021-03-26 07:30:35.289997 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-25 07:43:00 obsr59643 S23043850 Traveling P22 EBIRD 60.0 0.161 2.0 1 G1235115 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323267211 2015-05-27 00:02:17 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Saltsman Road L677810 P 43.0091035 -74.7420502 2015-05-15 15:50:00 obsr316199 S23657201 Traveling P22 EBIRD 31.0 2.575 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307320016 2021-12-27 21:06:26.931657 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 Unknown Sex, Adult (1) United States US New York US-NY St. Lawrence US-NY-089 US-NY_775 13.0 Upper & Lower Lakes WMA--Observation Tower (Hwy. 15) L270474 H 44.5796495 -75.3091865 2015-04-03 15:50:00 obsr1558090 S22670924 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317865767 2021-04-01 11:15:31.646886 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 06:54:00 obsr150415 S23343853 Traveling P22 EBIRD 258.0 4.828 4.0 1 G1260339 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304513481 2021-03-26 07:07:10.758746 622 species avibase-50566E50 Lesser Scaup Aythya affinis 27 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-21 16:49:00 obsr1032565 S22458415 Traveling P22 EBIRD 138.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295577978 2021-03-30 19:07:52.958398 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 95 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-02-08 13:53:00 obsr152435 S21728217 Traveling P22 EBIRD 57.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314548235 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-01 07:08:00 obsr870166 S23156506 Traveling P22 EBIRD 79.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303646720 2015-03-17 06:49:31 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 3 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-03-17 06:40:00 obsr1958124 S22391446 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319591825 2018-08-04 17:26:51 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-12 15:30:00 obsr463578 S23440728 Traveling P22 EBIRD 90.0 4.828 2.0 1 G1270545 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309341829 2019-05-07 15:30:03 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Stadlen and Hoyt-Pileated Trail L1498735 H 42.4777154 -76.4481604 2015-04-12 09:14:00 obsr869999 S22816662 Traveling P22 EBIRD 10.0 0.08 1.0 1 G1215804 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310093787 2021-03-26 07:30:35.289997 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Research Ponds Unit II (restricted access) L266582 H 42.5034956 -76.4374457 2015-04-12 10:36:00 obsr2683910 S22868677 Stationary P21 EBIRD 29.0 2.0 1 G1219984 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290141629 2021-03-26 07:20:31.408164 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-10 07:32:00 obsr41879 S21275086 Stationary P21 EBIRD 80.0 3.0 1 G1103528 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305623468 2021-04-01 12:18:57.910168 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-03-27 08:30:00 obsr1655171 S22543482 Traveling P22 EBIRD 22.0 0.483 2.0 1 G1194217 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310100510 2018-08-04 17:09:10 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-14 15:15:00 obsr2406624 S22869139 Traveling P22 EBIRD 50.0 0.805 2.0 1 G1220064 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307710721 2018-08-04 17:05:35 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Ontario US-NY-069 13.0 outhouse park L3540427 P 42.8926616 -77.305963 2015-04-05 10:30:00 obsr2979658 S22698247 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305193710 2021-11-09 21:36:59.310849 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Ulster US-NY-111 13.0 rosendale, ny L1465355 P 41.8499692 -74.081765 2015-03-24 07:25:00 obsr187701 S22509955 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292951971 2021-03-26 06:55:00.227271 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 1 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-01-24 obsr1338126 S21519510 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314709195 2021-11-15 03:06:58.889978 5922 species avibase-06B9BD24 Sanderling Calidris alba 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-01 08:37:00 obsr1548221 S23165815 Traveling P22 EBIRD 77.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316812716 2021-03-23 17:26:08.495143 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-07 08:00:00 obsr369788 S23284541 Traveling P22 EBIRD 120.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306960985 2015-04-03 09:33:07 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Suffolk US-NY-103 30.0 East Farm Preserve L123033 H 40.90472 -73.14889 2015-04-02 13:27:00 obsr758734 S22644486 Traveling P22 EBIRD 18.0 1.0 4.0 1 G1201593 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310425997 2021-11-09 19:51:09.255083 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 2 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-04-15 08:30:00 obsr186871 S22891331 Traveling P22 EBIRD 180.0 4.828 17.0 1 G1221890 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312358324 2021-03-23 17:00:13.087107 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-23 16:24:00 obsr34822 S23017490 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313552861 2021-03-24 20:33:47.533911 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-25 06:50:00 obsr711169 S23093919 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318936208 2021-03-19 16:44:35.607263 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-12 10:59:00 obsr2595828 S23402940 Traveling P22 EBIRD 46.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302599559 2021-03-26 06:07:45.516082 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 14 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-03-12 09:38:00 obsr128156 S22309711 Rusty Blackbird Spring Migration Blitz P41 EBIRD 35.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310400446 2021-04-01 12:14:19.266649 11528 species avibase-F3DA111C Merlin Falco columbarius 1 United States US New York US-NY Suffolk US-NY-103 30.0 Stony Brook University L2350778 H 40.9146933 -73.1215687 2015-04-13 12:49:00 obsr758734 S22889659 Traveling P22 EBIRD 60.0 2.3 2.0 1 G1221831 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312697161 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 16:58:00 obsr924076 S23041648 Traveling P22 EBIRD 118.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311228812 2021-04-01 10:47:08.851048 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-19 07:20:00 obsr1044068 S22943476 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302658597 2015-04-07 11:31:49 279 species avibase-3E04020B Brant Branta bernicla X United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-03-10 11:17:00 obsr2760150 S22313866 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323513400 2021-03-26 07:52:59.845315 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Herkimer US-NY-043 13.0 Dolgeville Downtown L3679080 P 43.1042646 -74.7708683 2015-05-25 19:00:00 obsr2694889 S23674102 Incidental P20 EBIRD 2.0 0 G1296095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288734716 2018-08-04 16:52:38 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 100 United States US New York US-NY Seneca US-NY-099 13.0 Van Cleef Lake L281203 H 42.91172 -76.79386 2015-01-03 11:55:00 obsr204036 S21161817 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308949161 2021-03-30 19:07:52.958398 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-10 16:00:00 obsr2448957 S22790866 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314336722 2021-03-23 16:30:20.514143 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-29 17:41:00 obsr2744341 S23142794 Traveling P22 EBIRD 180.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294831871 2021-03-26 06:21:54.883933 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 16 United States US New York US-NY Kings US-NY-047 30.0 Home L468661 P 40.6361565 -73.9647943 2015-02-03 08:35:00 obsr187432 S21668673 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291516639 2015-01-17 18:32:42 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-01-17 13:00:00 obsr2814495 S21386725 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309489703 2021-04-01 10:49:39.496318 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 7 United States US New York US-NY Cayuga US-NY-011 13.0 Millard Fillmore boyhood site L3513917 P 42.800197 -76.334067 2015-04-06 11:34:00 obsr2279567 S22825668 Stationary P21 EBIRD 67.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298218288 2015-02-18 12:05:44 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Columbia US-NY-021 13.0 26A Stuyvesant L3345121 P 42.3893287 -73.7681723 2015-02-16 15:00:00 obsr2842267 S21957770 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324165413 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 13.0 near pond at Mill Landing L2103068 P 43.235551 -77.702571 2015-05-23 08:00:00 obsr1721347 S23718594 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312301106 2021-03-23 16:30:20.514143 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Oswego US-NY-075 US-NY_759 13.0 Bear's Sleepy Hollow Campground L3584589 P 43.5438822 -76.1935329 2015-04-21 10:30:00 obsr1671931 S23013602 Traveling P22 EBIRD 180.0 0.25 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305258560 2021-11-09 21:30:09.663073 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Ulster US-NY-111 28.0 Nyquist-Harcourt Wildlife Sanctuary L1412659 H 41.7555313 -74.091749 2015-03-25 13:00:00 obsr1303376 S22515169 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309361626 2021-11-09 21:50:48.44865 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-12 08:00:00 obsr1482758 S22817878 Traveling P22 EBIRD 180.0 2.414 12.0 1 G1217686 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316938175 2021-04-01 11:30:42.037277 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 08:30:00 obsr2448505 S23291520 Traveling P22 EBIRD 300.0 4.828 2.0 1 G1256415 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303140489 2021-03-23 16:30:20.514143 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-14 14:30:00 obsr1633923 S22351629 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314330800 2021-03-26 07:30:35.289997 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-04-29 16:53:00 obsr1655171 S23142450 Traveling P22 EBIRD 21.0 1.77 2.0 1 G1244172 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308587532 2017-09-15 17:42:03 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 600 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, Ontario Beach Park, Gorham L1800146 H 42.8340262 -77.2564333 2015-04-08 19:49:00 obsr528918 S22763761 Stationary P21 EBIRD 5.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS321277214 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-05-19 11:25:00 obsr187432 S23535562 Traveling P22 EBIRD 45.0 1.609 2.0 1 G1281359 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320470746 2021-04-01 12:30:15.438381 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Eysaman Rd L3649039 P 43.0523792 -74.842279 2015-05-16 10:00:00 obsr1683226 S23488320 Traveling P22 EBIRD 60.0 8.047 4.0 1 G1274650 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315677558 2021-03-24 19:48:44.880783 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-04 07:35:00 obsr1962295 S23219392 Traveling P22 EBIRD 100.0 0.966 2.0 1 G1252320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304056115 2021-03-24 20:33:47.533911 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 5 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-03-19 14:40:00 obsr1655171 S22423632 Traveling P22 EBIRD 12.0 0.483 2.0 1 G1185153 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322487722 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-24 08:00:00 obsr1731572 S23608885 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308315029 2021-04-01 11:47:43.260314 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 13 United States US New York US-NY Oswego US-NY-075 13.0 Oneida Lake, Brewerton L2690668 H 43.2368243 -76.1249542 2015-04-07 16:19:00 obsr979921 S22742857 Stationary P21 EBIRD 23.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310593475 2018-08-04 17:08:04 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Carlson Road L795137 P 43.1091058 -74.7949541 2015-04-08 08:42:00 obsr2694889 S22903207 Traveling P22 EBIRD 5.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288550334 2021-11-09 20:59:08.238638 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 100 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-01-02 12:30:00 obsr1932005 S21146967 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308735822 2021-11-09 21:57:19.605717 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Ulster US-NY-111 13.0 Rondout-Kingston L3465160 P 41.91695 -73.98631 2015-04-09 17:55:00 obsr1482758 S22775424 Traveling P22 EBIRD 95.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291302818 2021-03-26 06:29:56.44369 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-16 15:35:00 obsr934639 S21369777 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318761845 2021-03-19 16:44:35.607263 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-11 10:29:00 obsr745890 S23392797 Traveling P22 EBIRD 40.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302606040 2015-03-12 11:14:01 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 11 United States US New York US-NY Saratoga US-NY-091 13.0 Skidmore College L1478151 P 43.0961323 -73.7844899 2015-03-12 11:11:00 obsr1222746 S22310265 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296294542 2021-11-09 21:23:47.89824 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-12 09:00:00 obsr2796494 S21784780 Traveling P22 EBIRD 195.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319843087 2015-05-15 13:02:25 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-15 11:54:00 obsr334398 S23455188 Traveling P22 EBIRD 25.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316714859 2021-03-26 06:17:19.712573 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-06 08:40:00 obsr1996460 S23279008 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324312937 2015-06-06 18:37:44 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 Unknown Sex, Immature (1) United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-05-31 18:12:00 obsr1075798 S23728108 Incidental P20 EBIRD 2.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312375783 2015-04-23 18:10:14 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-04-23 08:18:00 obsr2426404 S23018807 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309668541 2021-11-09 21:35:18.646328 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-13 06:40:00 obsr1110743 S22837605 Traveling P22 EBIRD 50.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294671675 2021-03-26 08:14:57.071052 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 81 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-02-02 08:00:00 obsr258431 S21655360 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310966815 2021-03-31 08:21:38.875049 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Richmond US-NY-085 Chelsea Rd. and Bloomfield Ave., wetlands L958539 H 40.6130955 -74.187672 2015-04-18 15:53:00 obsr1958124 S22927461 Stationary P21 EBIRD 5.0 3.0 1 G1224785 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324098274 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 08:50:00 obsr2908667 S23714176 Traveling P22 EBIRD 120.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324567584 2021-03-26 06:52:34.887371 33216 species avibase-1F09CCCC Wilson's Warbler Cardellina pusilla N 2 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-04-30 10:00:00 obsr2141910 S23745060 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303934894 2021-04-01 12:32:15.282601 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach State Park L359878 P 40.5898488 -73.5531744 2015-03-18 14:30:00 obsr916370 S22414086 Traveling P22 EBIRD 110.0 4.345 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311538566 2021-03-26 07:46:52.994574 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 4 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-04-20 07:41:00 obsr2512689 S22962563 Rusty Blackbird Spring Migration Blitz P41 EBIRD 49.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319243308 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-13 06:30:00 obsr547602 S23420820 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290115701 2021-04-01 11:24:19.637193 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-09 07:40:00 obsr1782363 S21272952 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290438002 2021-11-09 21:43:58.300436 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Ulster US-NY-111 13.0 Black Creek Preserve L2086582 H 41.8236532 -73.9574718 2015-01-11 13:00:00 obsr1136997 S21299473 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290363775 2021-04-01 12:32:15.282601 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-10 08:30:00 obsr1077730 S21293529 Traveling P22 EBIRD 210.0 3.219 11.0 1 G1105067 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309409441 2020-03-20 08:09:03 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Tompkins US-NY-109 28.0 Mount Pleasant L99402 H 42.4581378 -76.3845436 2015-04-12 11:15:00 obsr1655171 S22820771 Stationary P21 EBIRD 65.0 2.0 1 G1219985 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317838472 2021-04-01 12:32:15.282601 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Nassau US-NY-059 US-NY_872 30.0 Muttontown Preserve L250511 H 40.8315708 -73.5416646 2015-05-09 14:04:00 obsr2001085 S23342456 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288784722 2021-04-01 12:32:15.282601 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 44 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-03 07:08:00 obsr1107696 S21165870 Traveling P22 EBIRD 300.0 9.656 1.0 1 G1095329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311589332 2021-03-26 07:30:35.289997 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris 6 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-18 08:30:00 obsr140280 S22966457 Traveling P22 EBIRD 145.0 1.609 2.0 1 G1230344 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297653735 2021-03-30 19:29:33.633096 26278 species avibase-A381417F House Wren Troglodytes aedon 3 United States US New York US-NY Suffolk US-NY-103 Cedar Beach, Town of Brookhaven L834922 H 40.9648162 -73.039813 2015-02-16 14:00:00 obsr2338506 S21907557 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319891967 2021-03-26 07:56:20.588749 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-15 09:15:00 obsr916370 S23457691 Traveling P22 EBIRD 50.0 1.287 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297601890 2021-03-24 21:10:11.310781 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Saratoga US-NY-091 13.0 Seeholzer Residence L2330013 P 43.2654698 -73.6001439 2015-02-16 12:15:00 obsr1064326 S21902796 Stationary P21 EBIRD 112.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318124622 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-10 06:12:00 obsr1189028 S23357904 Traveling P22 EBIRD 118.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305599904 2021-03-26 07:07:10.758746 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-03-27 13:11:00 obsr1958124 S22541766 Traveling P22 EBIRD 4.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318887275 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Monroe US-NY-055 13.0 10 Parkview Drive yard birds L690404 P 43.1565179 -77.5146952 2015-05-12 07:40:00 obsr2817239 S23400385 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320183588 2021-03-23 17:18:00.959502 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Albany US-NY-001 US-NY_863 13.0 Black Creek Marsh. E. of Hennessy L1515157 P 42.66393 -73.96181 2015-05-16 05:55:00 obsr777630 S23473391 Traveling P22 EBIRD 90.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324082954 2021-03-24 19:48:44.880783 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Manitou Beach Road - Owl Woods L1010800 P 43.3198701 -77.7262115 2015-05-07 09:10:00 obsr2966702 S23713175 Traveling P22 EBIRD 65.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298719040 2021-03-26 07:16:36.956617 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Schenectady US-NY-093 13.0 122 Willow Lane L3404351 P 42.8799502 -73.9210367 2015-02-21 08:30:00 obsr481595 S22001376 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288978037 2015-01-04 10:41:35 26109 species avibase-BAC33609 Brown Creeper Certhia americana 2 United States US New York US-NY Oneida US-NY-065 13.0 Oneida Lake at Oneida Creek L1602079 P 43.1659026 -75.7396389 2015-01-04 10:36:00 obsr2950436 S21183144 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311275933 2021-03-26 06:14:19.776945 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Columbia US-NY-021 13.0 Mud Creek Environmental Learning Center L2793575 H 42.2806092 -73.7101454 2015-04-18 07:30:00 obsr2766625 S22946453 Traveling P22 EBIRD 150.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289980238 2021-11-09 22:29:08.190744 303 species avibase-B59E1863 Canada Goose Branta canadensis N 6 United States US New York US-NY Sullivan US-NY-105 28.0 Yankee Lake - my yard L1100954 P 41.5857896 -74.5484966 2015-01-09 08:00:00 obsr444155 S21262206 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316997918 2015-05-07 20:27:17 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Bird Observatory (BBBO) L3616109 P 43.32368 -77.71953 2015-05-05 11:00:00 obsr1624587 S23294912 Traveling P22 EBIRD 70.0 1.207 2.0 1 G1256554 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319061643 2021-03-24 20:53:39.352228 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea X United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.859067 2015-05-12 09:45:00 obsr385090 S23410541 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307471157 2017-08-16 16:57:42 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-02 10:30:00 obsr1167884 S22681753 Stationary P21 EBIRD 140.0 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311295033 2021-05-10 13:35:55.973042 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Schuyler US-NY-097 13.0 Catharine Creek WMA--Rock Cabin Rd. L1359885 H 42.369661 -76.8471749 2015-04-19 10:34:00 obsr2436517 S22947527 Traveling P22 EBIRD 114.0 3.219 2.0 1 G1226340 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316585014 2021-04-01 10:55:39.308231 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-06 12:36:00 obsr916033 S23271612 Traveling P22 EBIRD 184.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311944498 2021-03-26 06:29:56.44369 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-21 10:54:00 obsr2504709 S22990080 Traveling P22 EBIRD 60.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312457397 2021-04-01 12:45:19.712958 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 4 United States US New York US-NY Westchester US-NY-119 30.0 Tibbetts Brook Park L293496 H 40.9240387 -73.8786568 2015-04-17 16:27:00 obsr1348614 S23024354 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315946739 2021-11-15 03:06:58.889978 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-01 18:55:00 obsr1548221 S23234110 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291710308 2021-03-30 19:29:33.633096 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-18 06:50:00 obsr2574755 S21401577 Traveling P22 EBIRD 61.0 0.483 2.0 1 G1114112 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324255639 2018-08-06 22:31:33 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 2 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Wolf Run Rd. L246481 H 42.0197222 -78.8863889 2015-05-31 09:30:00 obsr2537615 S23724259 Traveling P22 EBIRD 90.0 3.219 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310092901 2021-11-09 22:41:29.888948 483 species avibase-85625D75 Mallard Anas platyrhynchos 75 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA--Haven Rd. (causeway bridge) L2865409 H 41.5356812 -74.5166769 2015-04-11 14:46:00 obsr2683910 S22868608 Traveling P22 EBIRD 22.0 0.805 2.0 1 G1219972 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316810487 2021-04-01 11:24:19.637193 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Hamlin-1026-1046 County Rd 211 L3619477 P 43.350623 -77.948858 2015-05-07 07:00:00 obsr334398 S23284450 Traveling P22 EBIRD 48.0 0.451 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311209587 2021-03-26 07:30:35.289997 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom48 L3513990 H 42.3600079 -76.6331828 2015-04-19 09:54:00 obsr2535282 S22942272 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308743993 2021-03-30 19:07:52.958398 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-08 obsr2908667 S22776076 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306651428 2017-01-07 10:09:45 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-03-29 16:05:00 obsr1561508 S22621574 Stationary P21 EBIRD 300.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294557541 2020-09-24 20:46:35 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-02 10:35:00 obsr934639 S21646466 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340805511 2021-04-01 11:15:31.646886 456 species avibase-D201EB72 American Wigeon Mareca americana N 2 United States US New York US-NY Kings US-NY-047 Four Sparrow Marsh L510138 H 40.6000729 -73.9085591 2015-05-24 07:09:00 obsr2538893 S24923905 Traveling P22 EBIRD 153.0 4.023 2.0 1 G1399437 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290837344 2021-03-30 19:29:33.633096 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-01-13 12:29:00 obsr1228860 S21331362 Traveling P22 EBIRD 70.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313188165 2021-03-19 16:02:45.308962 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 3 United States US New York US-NY Broome US-NY-007 28.0 Tri-City Airport L2347159 H 42.08439 -76.093867 2015-04-26 15:10:00 obsr1764243 S23071256 Traveling P22 EBIRD 17.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312804885 2021-04-01 11:15:31.646886 7011 species avibase-534FB490 Northern Gannet Morus bassanus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 07:25:00 obsr1711339 S23048617 Traveling P22 EBIRD 349.0 5.633 18.0 1 G1235092 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312995720 2018-08-04 17:12:06 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Washington US-NY-115 13.0 five combines ft edward end L3573796 P 43.2839484 -73.5688889 2015-04-25 08:45:00 obsr2774749 S23059824 Traveling P22 EBIRD 135.0 3.621 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310430233 2021-11-09 19:55:29.587179 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla N 2 United States US New York US-NY Orange US-NY-071 28.0 Six and a Half Station Rd. Sanctuary L306143 H 41.4025242 -74.3499176 2015-04-14 16:00:00 obsr2273061 S22891616 Traveling P22 EBIRD 70.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322035984 2021-03-19 16:06:54.047432 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-05-22 obsr1395007 S23582875 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314867152 2021-08-17 17:04:30.259191 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-04-30 20:22:00 obsr2420101 S23175524 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297665810 2021-03-19 16:42:57.886401 5922 species avibase-06B9BD24 Sanderling Calidris alba 1 United States US New York US-NY Lewis US-NY-049 14.0 Port Leyden, NY L3359032 P 43.58151 -75.3480148 2015-02-16 09:00:00 obsr2132676 S21908702 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311187839 2021-03-23 17:00:13.087107 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, 212 Tareyton L252844 P 42.4724094 -76.4601243 2015-04-19 06:51:00 obsr2307843 S22941058 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313562021 2021-03-30 19:37:33.521815 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Larkin Rd. L4342619 H 43.3037091 -76.7905645 2015-04-27 13:56:00 obsr1721609 S23094514 Traveling P22 EBIRD 127.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317123992 2018-08-06 22:29:09 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-08 06:00:00 obsr1165633 S23302073 Traveling P22 EBIRD 274.0 7.081 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307533662 2015-04-04 18:50:17 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Parkway Bridge East L3538667 P 43.3021332 -77.7223492 2015-04-04 17:25:00 obsr934639 S22685989 Stationary P21 EBIRD 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298709400 2021-04-01 11:49:53.573686 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 64 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-02-21 07:26:00 obsr2574755 S22000570 Traveling P22 EBIRD 98.0 0.966 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294198210 2021-03-26 06:58:34.561206 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 6 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-01-31 12:59:00 obsr2588479 S21617935 Stationary P21 EBIRD 273.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306136872 2021-03-30 19:13:38.458673 303 species avibase-B59E1863 Canada Goose Branta canadensis 15 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-28 18:35:00 obsr2468772 S22581704 Stationary P21 EBIRD 61.0 3.0 1 G1196955 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305310956 2021-03-23 17:39:28.36772 483 species avibase-85625D75 Mallard Anas platyrhynchos N 20 United States US New York US-NY Tioga US-NY-107 28.0 Fisher Settlement Rd./Lake Rd. intersection L2955544 P 42.233826 -76.489159 2015-03-25 09:39:00 obsr1318356 S22519218 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316819175 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 06:30:00 obsr2908667 S23284921 Traveling P22 EBIRD 205.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306243911 2021-03-26 07:30:35.289997 32955 species avibase-41062654 Northern Parula Setophaga americana X United States US New York US-NY Tompkins US-NY-109 13.0 Burdick Hill Rd., Lansing L1107958 H 42.4980885 -76.4998821 2015-03-29 07:47:00 obsr67057 S22589772 Traveling P22 EBIRD 10.0 0.161 4.0 1 G1197081 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312208291 2021-03-19 16:19:20.977326 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-22 14:50:00 obsr319738 S23007525 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296219521 2015-02-12 03:17:49 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-01-18 07:45:00 obsr2694889 S21778489 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303349172 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Kings US-NY-047 Manhattan Beach Park L852391 H 40.5762169 -73.9441681 2015-03-15 14:30:00 obsr2448957 S22367987 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296142576 2015-09-22 15:34:09 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-02-11 15:05:00 obsr1958124 S21772348 Traveling P22 EBIRD 27.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304627286 2018-08-04 17:02:26 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-03-22 11:00:00 obsr1135516 S22466638 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312979493 2021-03-26 06:58:34.561206 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 2 United States US New York US-NY Orleans US-NY-073 US-NY_1729 13.0 USFWS_219 bos section 10a L1304629 P 43.1361929 -78.4205818 2015-04-12 08:00:00 obsr1296884 S23058823 Area P23 EBIRD 360.0 3500.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294638085 2018-02-23 08:53:59 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Allegany US-NY-003 28.0 (Private) Pigtail Rd. Friendship,NY L3016462 P 42.2246331 -78.105433 2015-02-02 13:23:00 obsr955789 S21652845 Stationary P21 EBIRD 38.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302993422 2021-03-26 06:09:25.361188 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-03-14 07:20:00 obsr879105 S22339826 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316527744 2021-03-30 19:07:52.958398 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-06 11:00:00 obsr359717 S23268055 Traveling P22 EBIRD 210.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292925729 2015-01-28 21:28:04 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-01-24 09:45:00 obsr1534851 S21517621 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300706320 2020-04-10 19:00:13 27616 species avibase-D77E4B41 American Robin Turdus migratorius 40 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-03-03 09:00:00 obsr2143830 S22157072 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302857874 2021-03-26 07:20:31.408164 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L635183 H 40.8348529 -72.6153374 2015-03-13 11:00:00 obsr1736113 S22328967 Rusty Blackbird Spring Migration Blitz P41 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302495313 2021-04-01 10:47:08.851048 505 species avibase-C732CB10 American Black Duck Anas rubripes 14 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-03-11 16:01:00 obsr800690 S22301131 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311155659 2021-03-31 04:01:10.517395 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 3 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 07:35:00 obsr454647 S22939055 Traveling P22 EBIRD 320.0 8.047 16.0 1 G1224971 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303070900 2018-08-04 17:00:43 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 1 United States US New York US-NY Saratoga US-NY-091 13.0 W. River Rd., Moreau L2593135 H 43.2305411 -73.593038 2015-03-14 13:38:00 obsr1222746 S22346160 Traveling P22 EBIRD 24.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305828352 2021-03-26 07:07:10.758746 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 4 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-03-28 12:36:00 obsr1958124 S22558883 Traveling P22 EBIRD 25.0 1.287 2.0 1 G1195283 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295557768 2021-03-26 07:07:10.758746 5922 species avibase-06B9BD24 Sanderling Calidris alba 1 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-24-28 Sonia Ct L3346751 P 40.534685 -74.21896 2015-02-08 12:55:00 obsr1958124 S21726666 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301651290 2015-03-08 12:54:25 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 22 United States US New York US-NY Rensselaer US-NY-083 14.0 McMahon Rd, Hoosick NY L2587101 P 42.8256473 -73.3037853 2015-03-06 14:30:00 obsr2727129 S22228723 Incidental P20 EBIRD_VINS 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312254068 2021-03-19 16:14:11.035882 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Cortland US-NY-023 28.0 AviCor22 L3513964 H 42.5801264 -76.092219 2015-04-23 08:40:00 obsr620377 S23010593 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312481566 2021-03-24 05:37:45.927792 303 species avibase-B59E1863 Canada Goose Branta canadensis 25 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-24 07:55:00 obsr502830 S23026033 Traveling P22 EBIRD 43.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320878456 2021-03-30 19:13:38.458673 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Monroe US-NY-055 13.0 LaSalle's Landing Park L140438 H 43.1763487 -77.5259313 2015-05-18 10:00:00 obsr1534851 S23511157 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317028154 2021-11-15 03:06:58.889978 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-07 16:15:00 obsr1659461 S23296662 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304194589 2019-01-21 12:33:18 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-03-20 10:40:00 obsr2914424 S22434439 Traveling P22 EBIRD 73.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313989295 2018-08-04 17:12:38 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Jefferson US-NY-045 13.0 Black River Trail L2853712 P 43.9774139 -75.8578598 2015-04-28 13:30:00 obsr2091520 S23121841 Traveling P22 EBIRD 60.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305593987 2021-03-26 07:30:35.289997 11371 species avibase-75600969 Northern Flicker Colaptes auratus N 2 United States US New York US-NY Tompkins US-NY-109 13.0 Campbell Meadows (FLLT) L788986 H 42.4774305 -76.4030027 2015-03-27 12:23:00 obsr1008519 S22541291 Traveling P22 EBIRD 14.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314668841 2021-04-01 12:32:15.282601 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-05-01 10:00:00 obsr2505956 S23163456 Traveling P22 EBIRD 20.0 0.483 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309620396 2021-11-09 21:57:47.743146 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Ulster US-NY-111 13.0 US-NY-Saugerties-3986 US-9W L3560107 P 42.104894 -73.932462 2015-04-12 13:45:00 obsr1181085 S22834403 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307373613 2022-03-05 22:03:50.715584 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-04 07:15:00 obsr890053 S22674948 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310123792 2021-03-26 06:29:56.44369 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 2 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-04-06 08:30:00 obsr2449897 S22870772 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305137053 2019-07-23 17:28:05 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Camp Hero SP--bluffs (parking lot) L3512708 P 41.06987 -71.85874 2015-03-22 09:19:00 obsr2891998 S22505759 Traveling P22 EBIRD 44.0 4.828 2.0 1 G1192069 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312814752 2021-03-24 20:33:47.533911 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, Wegmans parking lot on inlet shore L1630651 P 42.4347403 -76.5114061 2015-04-25 11:36:00 obsr2307843 S23049108 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302878478 2018-08-04 16:59:45 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Oswego US-NY-075 13.0 Oswego River in Phoenix north of Culvert St and Lock L3485145 P 43.2296756 -76.3036323 2015-03-12 11:30:00 obsr1303581 S22330535 Traveling P22 EBIRD 35.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308761769 2021-04-01 11:30:42.037277 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-04-09 07:05:00 obsr1312694 S22777322 Traveling P22 EBIRD 125.0 1.609 9.0 1 G1212858 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322311091 2021-03-30 19:07:52.958398 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:30:00 obsr1077730 S23598694 Traveling P22 EBIRD 645.0 8.047 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310181770 2021-11-09 18:25:59.179016 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 30 United States US New York US-NY Dutchess US-NY-027 13.0 Strever Farm Rd, Pine Plains, NY L1828766 P 41.9405617 -73.6553262 2015-04-15 07:37:00 obsr2175245 S22874779 Stationary P21 EBIRD 30.0 3.0 1 G1220727 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321383363 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park, ramble L3639243 P 40.77772 -73.9687 2015-05-17 08:17:00 obsr363953 S23541888 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303464484 2021-03-26 07:30:35.289997 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus N 6 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-16 08:08:00 obsr1655171 S22377130 Traveling P22 EBIRD 39.0 0.644 2.0 1 G1187672 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316730132 2021-03-26 06:39:43.334073 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Arthur Ross Pinetum L826628 H 40.7835168 -73.9667 2015-05-06 07:30:00 obsr2277801 S23279862 Historical P62 EBIRD 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303036816 2021-11-15 03:06:58.889978 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-13 14:15:00 obsr2085002 S22343546 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315008456 2021-11-15 03:06:58.889978 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 08:10:00 obsr1706920 S23182872 Traveling P22 EBIRD 205.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302928613 2021-03-26 06:21:54.883933 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius N X United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-03-13 13:00:00 obsr2448957 S22334736 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307822043 2021-03-23 17:22:05.708166 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Herkimer US-NY-043 13.0 Vicinity of Brockett & Lyon Road L664921 P 43.0933994 -74.7911453 2015-04-03 10:40:00 obsr2694889 S22706358 Stationary P21 EBIRD 110.0 1.0 1 G1206231 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311763546 2021-03-26 06:14:19.776945 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 8 United States US New York US-NY Columbia US-NY-021 13.0 Mud Creek Environmental Learning Center L2793575 H 42.2806092 -73.7101454 2015-04-19 07:30:00 obsr349211 S22978048 Traveling P22 EBIRD 150.0 1.609 12.0 1 G1228299 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308383097 2021-03-19 16:10:30.527219 32757 species avibase-EF47E15D Boat-tailed Grackle Quiscalus major 40 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Dam L160699 H 42.0864692 -76.8096739 2015-04-07 18:49:00 obsr1318356 S22748015 Traveling P22 EBIRD 18.0 0.966 4.0 1 G1210648 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308854703 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-10 08:06:00 obsr119187 S22784015 Traveling P22 EBIRD 180.0 1.931 2.0 1 G1213251 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297804478 2021-04-01 12:14:19.266649 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 12 United States US New York US-NY Suffolk US-NY-103 30.0 Cenetereach Mall L3372020 P 40.8626876 -73.0818869 2015-02-16 13:30:00 obsr2958873 S21922043 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296395984 2021-11-09 19:56:29.550614 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Orange US-NY-071 28.0 Main St, Walden, NY L3353339 P 41.561579 -74.194724 2015-02-11 10:01:00 obsr1595836 S21794707 Incidental P20 EBIRD 3.0 0 G1144506 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320559849 2021-04-01 11:30:42.037277 616 species avibase-25C94A8F Greater Scaup Aythya marila 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-17 09:00:00 obsr609516 S23492898 Traveling P22 EBIRD 316.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306011370 2021-03-30 19:13:38.458673 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 11:40:00 obsr934639 S22572430 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310481447 2021-03-24 19:48:44.880783 505 species avibase-C732CB10 American Black Duck Anas rubripes 7 United States US New York US-NY Monroe US-NY-055 13.0 Mt. Hope Cemetery L249453 H 43.1287817 -77.6206675 2015-04-16 15:05:00 obsr1958774 S22895451 Traveling P22 EBIRD 117.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312863629 2021-04-01 10:55:39.308231 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-25 11:30:00 obsr303203 S23051875 Traveling P22 EBIRD 45.0 2.414 2.0 1 G1235267 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322857992 2015-05-25 15:08:17 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-02 08:00:00 obsr2234641 S23630770 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315472478 2021-03-26 06:29:56.44369 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 11 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-03 10:36:00 obsr334398 S23208121 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319770939 2018-12-14 02:24:37 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Genesee US-NY-037 13.0 Le Roy, 7801-7921 Vallance Road L3644392 P 43.03385 -77.95895 2015-05-12 18:46:00 obsr745890 S23451234 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323277785 2021-04-01 11:15:31.646886 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-26 16:30:00 obsr1382841 S23657991 Traveling P22 EBIRD 210.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322654975 2021-03-26 06:29:56.44369 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-24 08:20:00 obsr2504709 S23618345 Traveling P22 EBIRD 90.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316132809 2022-02-17 14:32:23.002448 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 14 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-05 10:00:00 obsr1284279 S23244966 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313205937 2019-01-07 15:35:03 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 College Lodge SUNY L2220962 H 42.3440743 -79.4279337 2015-04-26 10:38:00 obsr916033 S23072238 Traveling P22 EBIRD 231.0 5.633 2.0 1 G1237515 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308826625 2018-01-07 20:13:45 11371 species avibase-75600969 Northern Flicker Colaptes auratus 6 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-04-10 09:46:00 obsr2420101 S22782159 Stationary P21 EBIRD 47.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314802454 2022-02-17 14:32:23.002448 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-01 10:00:00 obsr1284279 S23171584 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304251132 2021-03-22 09:15:15.32301 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 13 United States US New York US-NY Niagara US-NY-063 13.0 Krull County Park L1248204 H 43.3349979 -78.7086467 2015-03-20 12:24:00 obsr916033 S22438777 Stationary P21 EBIRD 108.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321583014 2021-03-26 06:29:56.44369 7429 species avibase-1327AC55 Osprey Pandion haliaetus 8 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-05-20 15:45:00 obsr934639 S23554203 Traveling P22 EBIRD 51.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322217863 2021-03-24 19:48:44.880783 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-23 10:38:00 obsr730231 S23593577 Traveling P22 EBIRD 42.0 0.644 2.0 1 G1285657 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315277545 2018-08-04 17:14:32 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Franklin US-NY-033 14.0 Gabriels- Powerline Cut L3065122 P 44.4339024 -74.1888714 2015-05-03 09:00:00 obsr1190754 S23197913 Traveling P22 EBIRD 50.0 0.483 2.0 1 G1248941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306134225 2021-04-01 12:32:15.282601 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-29 12:20:00 obsr2206421 S22581507 Traveling P22 EBIRD 135.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302615877 2021-03-30 19:39:10.250398 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-06 08:30:00 obsr2331937 S22310995 Traveling P22 EBIRD 105.0 2.414 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302493323 2021-03-23 16:30:20.514143 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-11 09:49:00 obsr2945658 S22300957 Stationary P21 EBIRD 232.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309588996 2019-07-24 17:36:25 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr2906952 S22832361 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313802311 2019-07-23 17:28:29 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-04-28 08:25:00 obsr2966702 S23109891 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306318422 2021-03-26 06:52:34.887371 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Niagara US-NY-063 13.0 Niagara Falls SP L918348 H 43.0863978 -79.0690431 2015-03-30 12:02:00 obsr1389654 S22595430 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321214843 2021-04-01 12:26:53.827486 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-05-19 11:45:00 obsr1154 S23531918 Traveling P22 EBIRD 30.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302222328 2021-03-26 06:21:54.883933 30494 species avibase-240E3390 House Sparrow Passer domesticus 8 United States US New York US-NY Kings US-NY-047 Manhattan Beach Park L852391 H 40.5762169 -73.9441681 2015-03-10 11:53:00 obsr1821546 S22275207 Stationary P21 EBIRD 59.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313644483 2021-04-01 11:30:42.037277 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 09:00:00 obsr2683517 S23099770 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290902621 2021-04-01 10:55:39.308231 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-01-13 09:20:00 obsr294236 S21336871 Stationary P21 EBIRD 15.0 3.0 1 G1108675 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319046817 2021-04-01 11:30:42.037277 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-12 16:13:00 obsr904434 S23409650 Traveling P22 EBIRD 92.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314464131 2018-08-04 17:13:12 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L152462 P 42.856792 -75.57193 2015-04-30 19:00:00 obsr956647 S23151030 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309236200 2021-11-09 21:57:40.409598 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Ulster US-NY-111 13.0 The Vly L3554956 P 42.13442 -73.94398 2015-04-11 11:00:00 obsr1588136 S22809907 Traveling P22 EBIRD 90.0 3.219 10.0 1 G1214308 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS341229769 2018-08-30 10:11:25 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-21 obsr2167884 S24951874 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319607381 2018-08-06 22:29:55 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor17 L3513959 H 42.7032769 -76.0747739 2015-05-14 09:05:00 obsr1042912 S23441558 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310382511 2016-10-11 17:02:01 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip C L3559792 P 40.186003 -73.417567 2015-04-11 09:00:00 obsr856524 S22888377 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221331 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316311240 2018-08-04 17:14:46 337 species avibase-694C127A Mute Swan Cygnus olor 3 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-04 19:00:00 obsr1561508 S23256098 Traveling P22 EBIRD 100.0 1.609 2.0 1 G1254129 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306258982 2021-03-26 06:20:10.658048 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-03-28 11:30:00 obsr2339578 S22590989 Traveling P22 EBIRD 45.0 0.805 2.0 1 G1197925 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312446389 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 H C2 H United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-23 16:48:00 obsr924076 S23023581 Traveling P22 EBIRD 163.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310866635 2021-03-26 07:07:10.758746 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-04-18 09:57:00 obsr1958124 S22921186 Traveling P22 EBIRD 27.0 0.805 3.0 1 G1224797 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304514501 2021-03-26 07:30:35.289997 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-16 08:08:00 obsr2683910 S22458475 Traveling P22 EBIRD 39.0 0.644 2.0 1 G1187672 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307374398 2021-04-01 10:52:54.724403 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 2 United States US New York US-NY Columbia US-NY-021 13.0 Village of Kinderhook L3192186 P 42.3842815 -73.7215447 2015-04-04 08:45:00 obsr349211 S22675015 Traveling P22 EBIRD 35.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294173376 2021-04-01 12:45:19.712958 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Westchester US-NY-119 30.0 Lenoir Preserve L786778 H 40.9758142 -73.8838046 2015-01-31 12:30:00 obsr1348614 S21616096 Stationary P21 EBIRD 108.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312900954 2021-04-01 11:15:31.646886 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-25 15:15:00 obsr1659461 S23054001 Traveling P22 EBIRD 45.0 1.609 2.0 1 G2865415 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301989305 2021-04-01 11:54:40.172593 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus 10 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-03-04 09:00:00 obsr666331 S22255441 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298918456 2015-02-22 08:58:08 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-02-21 06:50:00 obsr2716320 S22017771 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305840662 2021-04-01 11:54:40.172593 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-28 16:45:00 obsr1958124 S22559780 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309085928 2018-02-01 15:11:46 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Cortland US-NY-023 28.0 AviCor2 L3513942 H 42.7382236 -75.8923355 2015-04-11 12:15:00 obsr887540 S22800006 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316409045 2021-03-19 16:44:35.607263 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-05 15:45:00 obsr528918 S23261241 Traveling P22 EBIRD 185.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319860217 2021-04-01 12:32:15.282601 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 Male, Adult (1) United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-15 08:05:00 obsr647628 S23455968 Traveling P22 EBIRD 125.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291409945 2015-01-17 09:58:43 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Ontario US-NY-069 13.0 Gorham L651552 T 42.79897 -77.1316 2015-01-16 14:00:00 obsr654258 S21378010 Historical P62 EBIRD 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302308626 2021-04-01 11:15:31.646886 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-10 11:00:00 obsr2078092 S22284837 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306147927 2021-03-26 07:42:06.558742 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 2 United States US New York US-NY Washington US-NY-115 13.0 Fort Miller, NY L2588693 P 43.1546669 -73.5772634 2015-03-29 09:54:00 obsr1222746 S22582535 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311906184 2021-03-26 08:09:53.772059 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Rensselaer US-NY-083 13.0 John B. Staalesen Vanderheyden Preserve L2350561 H 42.7047043 -73.6677289 2015-04-21 16:50:00 obsr1735540 S22987414 Traveling P22 EBIRD 25.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314398635 2021-03-23 16:52:36.900075 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-04-30 06:55:00 obsr1228860 S23146684 Traveling P22 EBIRD 55.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314053732 2021-03-23 16:48:08.60516 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Seneca US-NY-099 13.0 Executive Links Seneca Falls L605922 P 42.906997 -76.7595863 2015-04-29 06:50:00 obsr204036 S23125622 Traveling P22 EBIRD 115.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298448800 2021-03-24 19:27:13.077399 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-02-18 10:09:00 obsr1334267 S21978259 Stationary P21 EBIRD 52.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314306041 2021-04-01 11:14:02.420281 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 25 United States US New York US-NY Jefferson US-NY-045 US-NY_805 Point Peninsula Bird Conservation Area L1367385 H 43.9953255 -76.2449646 2015-04-29 13:48:00 obsr2834886 S23141371 Traveling P22 EBIRD 90.0 24.14 2.0 1 G1244061 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316451039 2015-05-06 10:46:37 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-06 07:55:00 obsr1534851 S23263752 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306893242 2015-04-02 08:26:37 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 50 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-03-26 07:45:00 obsr970333 S22639163 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313423806 2021-11-09 19:01:40.008558 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-04-26 08:13:00 obsr1433400 S23086248 Traveling P22 EBIRD 75.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306140582 2020-05-16 18:07:33 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 7 United States US New York US-NY Otsego US-NY-077 28.0 Betty & Wilbur Davis SP L1637598 H 42.6621211 -74.8337189 2015-03-29 11:00:00 obsr1049575 S22581986 Stationary P21 EBIRD 240.0 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321485905 2021-03-26 07:56:20.588749 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 1 United States US New York US-NY Nassau US-NY-059 30.0 Dog Park, Thomaston L2381643 H 40.7907188 -73.7106302 2015-05-20 09:40:00 obsr676630 S23548230 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322765047 2021-03-24 19:48:44.880783 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-25 09:24:00 obsr1696616 S23625168 Traveling P22 EBIRD 60.0 1.207 2.0 1 G1288857 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309361238 2018-08-04 17:08:49 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-12 10:26:00 obsr1958124 S22816501 Traveling P22 EBIRD 5.0 0.483 2.0 1 G1216221 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318911232 2022-01-12 18:14:10.119384 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--South Entrance L825062 H 44.3641149 -74.1511381 2015-05-12 09:18:00 obsr2630526 S23401637 Traveling P22 EBIRD 65.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319966735 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-15 08:08:00 obsr2504709 S23461691 Traveling P22 EBIRD 130.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311234443 2021-11-09 18:40:19.746769 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo X United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--West L3002249 H 41.9197784 -73.6751747 2015-04-19 10:00:00 obsr1917973 S22943813 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303012723 2021-03-30 19:03:54.667077 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-14 10:15:00 obsr1792012 S22341440 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320579070 2021-03-19 16:10:30.527219 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-05-16 17:46:00 obsr967916 S23493974 Traveling P22 EBIRD 14.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319638878 2021-03-19 16:08:39.161312 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-05-14 10:15:00 obsr2816437 S23443418 Traveling P22 EBIRD 60.0 9.656 1.0 1 G1270925 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314662738 2021-03-26 07:56:20.588749 303 species avibase-B59E1863 Canada Goose Branta canadensis 40 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-01 13:20:00 obsr647628 S23163088 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311795760 2021-04-25 10:21:40.34371 26278 species avibase-A381417F House Wren Troglodytes aedon 2 United States US New York US-NY Tioga US-NY-107 28.0 1784 Lisle Rd, Owego, New York, USA L3580318 P 42.12462 -76.22163 2015-04-21 08:45:00 obsr1920736 S22980164 Stationary P21 EBIRD 42.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308086781 2021-03-30 19:29:33.633096 5923 species avibase-15369E8E Dunlin Calidris alpina 1 United States US New York US-NY Suffolk US-NY-103 30.0 Frank Melville Memorial Park and Mill Pond L1114075 H 40.946195 -73.1156445 2015-04-06 16:49:00 obsr1228860 S22725381 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290156683 2022-01-12 18:14:10.119384 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--South Entrance L825062 H 44.3641149 -74.1511381 2015-01-10 10:20:00 obsr835300 S21276391 Traveling P22 EBIRD 61.0 3.219 3.0 1 G1103461 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316777794 2021-03-26 06:59:15.841579 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 3 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-03-18 07:30:00 obsr2409011 S23282756 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290248724 2021-03-23 16:39:03.255227 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-01-10 12:37:00 obsr1893950 S21284396 Traveling P22 EBIRD 25.0 0.644 2.0 1 G1103716 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305872783 2021-03-19 16:44:35.607263 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Monroe US-NY-055 13.0 374 Cromwell L1952255 P 43.1326227 -77.5253892 2015-03-20 12:00:00 obsr1463039 S22562100 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311941647 2015-04-21 20:25:59 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 30.0 Lower East Side, around my building L815807 P 40.7158811 -73.9877835 2015-04-21 17:45:00 obsr1758291 S22989845 Area P23 EBIRD 60.0 1.2141 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306612002 2021-03-24 21:06:05.39641 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson River Park (private) L3498350 H 43.2032416 -76.2825651 2015-03-31 16:34:00 obsr2224244 S22618671 Stationary P21 EBIRD 208.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310154925 2021-03-23 17:00:13.087107 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 9 United States US New York US-NY Tompkins US-NY-109 28.0 Websterk Home L1084526 P 42.4154016 -76.3545191 2015-04-13 07:40:00 obsr2261732 S22872825 Traveling P22 EBIRD 15.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307981315 2021-03-26 08:11:28.0353 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Stillwater, NY 52 county route 76 L1926398 P 42.933103 -73.680332 2015-04-06 10:43:00 obsr2564462 S22718114 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319751538 2021-03-26 06:21:54.883933 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-14 12:48:00 obsr2180607 S23450025 Traveling P22 EBIRD 450.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295564539 2021-03-24 19:48:44.880783 592 species avibase-3072CC16 Redhead Aythya americana 9 United States US New York US-NY Monroe US-NY-055 13.0 Priem Road L830367 P 43.3470587 -77.9353809 2015-02-08 13:39:00 obsr334398 S21727167 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313519048 2021-03-26 06:55:00.227271 32757 species avibase-EF47E15D Boat-tailed Grackle Quiscalus major 1 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Honeoye Creek Trail Behind Library L3301565 P 42.7909235 -77.5149548 2015-04-27 11:50:00 obsr39511 S23091975 Traveling P22 EBIRD 55.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS412790267 2017-04-17 21:56:41 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis X United States US New York US-NY Saratoga US-NY-091 13.0 W. River Rd., Moreau L2593135 H 43.2305411 -73.593038 2015-03-31 obsr2943723 S30287436 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302476915 2021-03-24 20:33:47.533911 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Tompkins US-NY-109 13.0 Enfield Center Rd. W of Sheffield Rd., Enfield L3481028 P 42.43758 -76.57167 2015-03-10 16:52:00 obsr2211210 S22299837 Traveling P22 EBIRD 25.0 0.322 3.0 1 G1175089 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316668133 2021-11-09 17:58:40.313796 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-06 11:30:00 obsr1917973 S23276381 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292948438 2018-08-04 16:54:57 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail East Woods L2372368 P 42.210721 -76.837918 2015-01-24 08:15:00 obsr1587816 S21519295 Traveling P22 EBIRD 86.0 1.448 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289504157 2019-10-25 15:53:08 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 old potsdam-parishville rd L1850419 P 44.6508536 -74.9179753 2015-01-06 14:45:00 obsr1016945 S21224505 Incidental P20 EBIRD 2.0 0 G1101769 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323954016 2015-05-30 12:16:54 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius X United States US New York US-NY Kings US-NY-047 US-NY_1722 Jamaica Bay Wildlife Refuge--Terrapin Point (Brooklyn) L3668252 P 40.61576 -73.835 2015-05-30 10:45:00 obsr152435 S23705307 Traveling P22 EBIRD 81.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310336012 2021-03-24 20:13:27.613389 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-04-15 12:20:00 obsr1982614 S22885117 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317418632 2018-02-01 15:11:46 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Cortland US-NY-023 28.0 AviCor9 L3513951 H 42.73125 -76.0049915 2015-05-09 07:25:00 obsr620377 S23318952 Stationary P21 EBIRD 13.0 2.0 1 G1272251 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317077040 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park, Manhattan L1305077 P 40.7756018 -73.968544 2015-05-07 11:20:00 obsr827632 S23299513 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761856 2021-03-26 07:56:20.588749 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-26 16:00:00 obsr2218212 S22629539 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301977946 2021-03-23 16:48:08.60516 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 1 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-03-09 08:30:00 obsr204036 S22254573 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296053899 2021-03-23 17:26:08.495143 6339 species avibase-8535345B Herring Gull Larus argentatus N 18 United States US New York US-NY Nassau US-NY-059 30.0 US-NY-Farmingdale-46 Crestwood Blvd L2634489 P 40.716972 -73.440762 2015-02-10 16:33:00 obsr2015738 S21765427 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312706833 2020-05-19 16:02:48 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 Unknown Sex, Adult (1) United States US New York US-NY Otsego US-NY-077 13.0 Summit Lake L1791662 P 42.8621918 -74.8506055 2015-04-24 16:00:00 obsr316199 S23042295 Traveling P22 EBIRD 11.0 0.966 3.0 1 G1234631 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308204666 2015-04-07 08:29:57 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-N Hamlin Rd L3545719 P 43.336932 -77.859669 2015-04-07 08:23:00 obsr334398 S22734697 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298468430 2018-08-04 16:57:25 505 species avibase-C732CB10 American Black Duck Anas rubripes 117 United States US New York US-NY Richmond US-NY-085 30.0 Lemon Creek, bridge at Excelsior Ave. L1836890 H 40.5214361 -74.204794 2015-02-19 09:33:00 obsr1958124 S21979899 Traveling P22 EBIRD 7.0 0.322 2.0 1 G1153101 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288969125 2021-04-01 11:30:42.037277 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-03 07:30:00 obsr259298 S21182414 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320898022 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Albany US-NY-001 13.0 Rte 155 and Normanskill L3110282 P 42.6761668 -73.9061529 2015-05-18 10:20:00 obsr634484 S23512201 Traveling P22 EBIRD 85.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308347771 2021-03-26 07:00:33.333856 32666 species avibase-5110842F Baltimore Oriole Icterus galbula X United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L526565 P 40.7469969 -73.7436676 2015-04-03 09:30:00 obsr2233270 S22745401 Traveling P22 EBIRD 170.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310649680 2021-03-22 09:15:15.32301 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Niagara US-NY-063 13.0 Wilson-Tuscarora SP L210266 H 43.3072398 -78.8548868 2015-04-17 09:30:00 obsr2756208 S22906871 Traveling P22 EBIRD 35.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314224614 2021-03-26 07:20:31.408164 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Stony Brook University L2350778 H 40.9146933 -73.1215687 2015-04-24 06:54:00 obsr758734 S23136165 Traveling P22 EBIRD 46.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314011512 2021-03-23 17:32:20.03109 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 5 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-29 06:52:00 obsr2224244 S23123197 Traveling P22 EBIRD 194.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291536406 2021-03-30 12:05:58.533651 26890 species avibase-94A44032 European Starling Sturnus vulgaris 45 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-01-17 14:40:00 obsr1189028 S21388321 Traveling P22 EBIRD 89.0 4.023 2.0 1 G1112557 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316408146 2018-08-04 17:14:53 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 McKoons Road pond near Smith Road L2812296 P 42.9248029 -75.0358315 2015-05-05 14:30:00 obsr1680059 S23261192 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292599589 2021-11-09 19:42:00.45202 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 25 United States US New York US-NY Orange US-NY-071 28.0 Gully's L1900531 P 41.4981729 -74.0052864 2015-01-22 09:00:00 obsr1665312 S21491826 Stationary P21 EBIRD 40.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323643678 2018-08-06 22:31:17 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Franklin US-NY-033 14.0 Fish Creek Pond Campground L1301155 H 44.3040805 -74.3591219 2015-05-28 07:00:00 obsr2161273 S23682977 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304391304 2021-03-30 19:25:27.212017 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cameron Lake L1441085 H 40.6004365 -74.0804102 2015-03-21 11:58:00 obsr1958124 S22449448 Traveling P22 EBIRD 8.0 0.322 2.0 1 G1186863 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293682580 2019-07-23 17:27:13 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Steuben US-NY-101 13.0 East Lake Road, Hammondsport L2757940 P 42.4200013 -77.1839333 2015-01-28 08:20:00 obsr1602357 S21577273 Traveling P22 EBIRD 62.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313453520 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 07:30:00 obsr98313 S23088040 Traveling P22 EBIRD 240.0 4.828 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311784206 2021-03-26 07:30:35.289997 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Newman Municipal Golf Course L2158758 H 42.4561318 -76.5052153 2015-04-21 08:22:00 obsr1655171 S22979422 Traveling P22 EBIRD 29.0 0.805 2.0 1 G1230729 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320125472 2021-03-19 16:44:35.607263 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-16 09:11:00 obsr749440 S23469137 Stationary P21 EBIRD 81.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322430571 2021-04-01 10:58:47.067498 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-23 07:52:00 obsr916033 S23595156 Traveling P22 EBIRD 239.0 3.219 2.0 1 G1285749 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306487068 2021-05-01 05:40:50.213405 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L3526134 P 40.59235 -73.89143 2015-03-28 17:11:00 obsr2054320 S22608828 Traveling P22 EBIRD 180.0 2.0 2.0 1 G1199300 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316051966 2021-03-24 19:48:44.880783 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-03 09:20:00 obsr2966702 S23240628 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317227876 2021-03-19 16:44:35.607263 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-08 07:30:00 obsr2504709 S23307473 Traveling P22 EBIRD 130.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313831345 2015-04-29 19:28:37 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-28 15:03:00 obsr1655171 S23111741 Traveling P22 EBIRD 12.0 0.483 2.0 1 G1243197 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305896730 2021-04-01 10:47:08.851048 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 50 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-03-28 08:30:00 obsr1830659 S22558285 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304637340 2021-03-26 07:07:10.758746 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 15 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-03-22 12:03:00 obsr1958124 S22467363 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317529733 2021-03-19 16:19:20.977326 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 7 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-09 10:47:00 obsr2588479 S23325708 Traveling P22 EBIRD 98.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318759692 2021-04-01 11:15:31.646886 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-11 16:30:00 obsr2448957 S23392661 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298917738 2021-03-24 20:33:47.533911 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 13 United States US New York US-NY Tompkins US-NY-109 13.0 Hungerford Rd L3396119 P 42.4286517 -76.4355326 2015-02-22 07:30:00 obsr1987448 S22017708 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290855440 2019-01-03 10:54:11 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 85 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-G L3289012 P 40.06773 -73.02048 2015-01-11 14:00:00 obsr1895507 S21333014 Traveling P22 EBIRD 60.0 26.554 44.0 1 G1108340 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319720466 2018-08-06 22:29:46 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 US-NY-PORTAGE-E.LetchworthSP.ParadeGroundsRd. L3468840 P 42.583784 -78.030898 2015-05-12 11:30:00 obsr731272 S23448083 Traveling P22 EBIRD 255.0 16.898 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304380611 2021-03-30 19:29:33.633096 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Suffolk US-NY-103 30.0 Eastport Lake (aka Seatuck Creek) L852369 H 40.8277092 -72.7276897 2015-03-20 13:00:00 obsr676630 S22448614 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316714847 2021-03-26 06:17:19.712573 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-06 08:40:00 obsr1996460 S23279008 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312844092 2018-08-04 17:12:14 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 2 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.7628129 2015-04-25 14:00:00 obsr2214649 S23050724 Traveling P22 EBIRD 69.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322233226 2021-03-26 06:19:47.07548 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Essex US-NY-031 13.0 Fort Ticonderoga L2321171 H 43.8429366 -73.3878243 2015-05-23 14:10:00 obsr2319580 S23594412 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300063403 2021-03-24 20:33:47.533911 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-02-28 13:55:00 obsr59643 S22108516 Traveling P22 EBIRD 55.0 1.609 2.0 1 G1170864 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309324516 2021-04-01 10:55:39.308231 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-04-12 09:15:00 obsr502830 S22815593 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318895949 2021-04-01 11:24:19.637193 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-12 06:58:00 obsr1243175 S23400863 Traveling P22 EBIRD 15.0 0.016 2.0 1 G1267219 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313631988 2021-04-01 11:54:40.172593 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-04-24 08:00:00 obsr666331 S23098990 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315904498 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 07:09:00 obsr756196 S23231811 Traveling P22 EBIRD 72.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308912570 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-09 07:00:00 obsr1312694 S22788095 Traveling P22 EBIRD 120.0 2.414 14.0 1 G1213495 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322201552 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-23 06:55:00 obsr1154 S23592734 Traveling P22 EBIRD 192.0 1.609 15.0 1 G1285606 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305853671 2021-04-01 11:15:31.646886 406 species avibase-27B2749A Wood Duck Aix sponsa 18 United States US New York US-NY Kings US-NY-047 Canarsie Pier L247765 H 40.6287773 -73.8836704 2015-03-28 08:05:00 obsr41879 S22560674 Traveling P22 EBIRD 40.0 0.322 11.0 1 G1195440 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297770860 2021-03-24 21:06:05.39641 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Onondaga US-NY-067 13.0 Home-Camillus L1972664 P 43.0603597 -76.2755013 2015-02-16 12:43:00 obsr2330728 S21918883 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310695068 2015-04-17 15:41:24 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 N C3 N Female, Adult (1); Male, Adult (1) United States US New York US-NY Greene US-NY-039 28.0 Freehold L359172 T 42.35928 -74.04988 2015-04-17 15:05:00 obsr2100021 S22909727 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311780600 2021-03-26 08:13:27.160698 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Tioga US-NY-107 28.0 Kinney Rd., Campville L5641564 H 42.0824661 -76.1514652 2015-04-21 08:05:00 obsr1318356 S22979220 Traveling P22 EBIRD 35.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306146052 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 23 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-29 17:23:00 obsr334398 S22582412 Stationary P21 EBIRD 89.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312494842 2021-03-24 20:33:47.533911 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Tompkins US-NY-109 28.0 Lindsay-Parsons Biodiversity Preserve (FLLT) L109055 H 42.3101677 -76.5216895 2015-04-24 08:22:00 obsr1092576 S23026886 Traveling P22 EBIRD 39.0 0.805 2.0 1 G1233726 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316478353 2018-08-04 17:15:01 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-06 11:43:00 obsr252591 S23265165 Traveling P22 EBIRD 31.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291530380 2021-04-01 12:35:52.669792 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-01-17 14:00:00 obsr1633923 S21387861 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305442256 2015-03-26 15:14:34 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Oneida US-NY-065 13.0 Sylvan Beach L509883 H 43.1939135 -75.731163 2015-03-25 obsr1640315 S22529588 Historical P62 EBIRD 1 G1193218 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309084184 2021-03-19 16:02:45.308962 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Broome US-NY-007 28.0 Gilbert Creek L251064 H 42.2101575 -75.8729663 2015-04-10 07:30:00 obsr1476567 S22799899 Stationary P21 EBIRD 120.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289516291 2021-03-30 19:29:33.633096 5923 species avibase-15369E8E Dunlin Calidris alpina 1 United States US New York US-NY Suffolk US-NY-103 30.0 belmont lake state park, Suffolk , NY L3271382 P 40.7345271 -73.3439326 2015-01-06 09:00:00 obsr2534001 S21225402 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313346177 2018-08-04 17:12:17 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Knox-Marsellus Marsh L1280877 H 43.0076202 -76.7529774 2015-04-25 16:47:00 obsr2255296 S23080872 Stationary P21 EBIRD 49.0 3.0 1 G1238403 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312116399 2021-04-01 11:30:42.037277 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-21 17:00:00 obsr609516 S23001106 Traveling P22 EBIRD 75.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314288293 2021-03-19 16:00:00.303051 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--VC Lake and Vault Hill L188807 H 40.8942794 -73.8887242 2015-04-26 08:30:00 obsr423515 S23140347 Traveling P22 EBIRD 120.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323952375 2018-08-06 22:31:27 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-05-30 08:38:00 obsr1830659 S23703742 Traveling P22 EBIRD 42.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753552 2021-03-26 08:14:57.071052 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Westchester US-NY-119 30.0 Rye L1069097 P 40.9661597 -73.6719131 2015-01-03 08:15:00 obsr444155 S21163279 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321639529 2015-05-23 21:36:19 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard Rd. (Hwy 90 - CR 154), Cayuga Co. L335771 P 42.7035954 -76.6749601 2015-05-21 06:11:00 obsr620377 S23557809 Traveling P22 EBIRD 27.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315903095 2021-11-09 17:58:40.313796 447 species avibase-C235A4D7 Gadwall Mareca strepera 9 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-04 06:58:00 obsr440908 S23231726 Traveling P22 EBIRD 4.0 6.437 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315188014 2021-11-09 18:36:27.898762 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-05-02 08:00:00 obsr445356 S23193128 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291008009 2016-12-28 04:22:20 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-New Haven- Kibby Rd - Home (Private) L5185742 P 43.449899 -76.30402 2015-01-14 13:57:00 obsr2945658 S21345241 Stationary P21 EBIRD 121.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297687029 2015-02-21 17:38:22 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 9 United States US New York US-NY Delaware US-NY-025 28.0 Delaware County L3387563 P 42.040033 -75.412553 2015-02-16 15:53:00 obsr2945658 S21910911 Incidental P20 EBIRD 1.0 0 G1155225 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001687 2021-03-26 07:56:20.588749 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 6 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-28 16:00:00 obsr2218212 S23775943 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316589146 2015-06-07 10:25:03 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.8768877 -73.7898123 2015-05-03 08:30:00 obsr423515 S23271868 Traveling P22 EBIRD 180.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290668737 2018-08-04 16:53:13 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Suffolk US-NY-103 US-NY_780 30.0 USFWS_602 Wertheim NWR L295971 H 40.7754935 -72.8810839 2015-01-12 11:55:00 obsr916033 S21318223 Traveling P22 EBIRD 17.0 0.161 4.0 1 G1107048 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303544605 2021-01-12 19:50:23.677101 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 5 United States US New York US-NY Warren US-NY-113 14.0 Warren County Bikeway--Ash Dr, Queensbury, NY L2588444 P 43.356634 -73.6842245 2015-03-16 15:10:00 obsr1222746 S22383796 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301340029 2021-04-01 12:35:52.669792 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--West Shore Trail, Visitor's Center to Lakeview Point L2975271 H 43.0804886 -76.2126732 2015-03-07 07:57:00 obsr1092576 S22205520 Stationary P21 EBIRD 6.0 4.0 1 G1168614 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309675653 2021-11-09 19:04:49.095763 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Dutchess US-NY-027 14.0 McEnroe Compost L5144332 H 41.9007708 -73.5223935 2015-04-12 13:20:00 obsr2343626 S22838833 Stationary P21 EBIRD 18.0 2.0 1 G1217891 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304601933 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Buttonwood Creek L587960 H 43.2963199 -77.7315706 2015-03-22 11:40:00 obsr1696616 S22464854 Traveling P22 EBIRD 4.0 0.161 2.0 1 G1188286 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315963111 2021-03-24 20:58:53.646623 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-04 13:30:00 obsr72341 S23235118 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306721586 2021-03-30 19:03:54.667077 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-04-01 12:30:00 obsr2497657 S22626929 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314884124 2015-05-02 11:15:07 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-02 08:50:00 obsr1764243 S23176339 Traveling P22 EBIRD 143.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306689773 2018-08-04 17:04:55 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Oneida US-NY-065 13.0 Oneida Lake at Oneida Creek L1602079 P 43.1659026 -75.7396389 2015-04-01 07:00:00 obsr545221 S22624520 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323961791 2021-03-26 06:21:54.883933 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 5 United States US New York US-NY Kings US-NY-047 US-NY_1722 Dead Horse Point L169814 H 40.579594 -73.89466 2015-05-30 11:50:00 obsr2404047 S23705791 Traveling P22 EBIRD 64.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303617133 2021-04-01 12:32:15.282601 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 12 United States US New York US-NY Nassau US-NY-059 St. James Episcopal Church, Long Beach L3159167 P 40.5851925 -73.6699927 2015-03-16 14:40:00 obsr2053730 S22389295 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299212531 2021-04-01 11:49:53.573686 505 species avibase-C732CB10 American Black Duck Anas rubripes N 8 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-02-18 07:34:00 obsr1982614 S22043080 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317065157 2022-02-17 14:32:23.002448 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-07 13:00:00 obsr1284279 S23298830 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306145457 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 15 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-29 14:00:00 obsr327318 S22582378 Traveling P22 EBIRD 165.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306705160 2021-03-26 06:09:25.361188 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 24 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-04-01 10:32:00 obsr800690 S22625740 Traveling P22 EBIRD 68.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301006288 2021-04-01 11:54:40.172593 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 36 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-05 07:45:00 obsr1958124 S22179541 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319146813 2021-04-01 11:30:42.037277 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 14 S7 C3 S7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-11 05:43:00 obsr924076 S23415251 Traveling P22 EBIRD 145.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314455557 2021-11-09 22:20:08.595421 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 2 United States US New York US-NY Ulster US-NY-111 13.0 Home L764019 P 41.8520297 -74.0052366 2015-04-30 17:00:00 obsr610423 S23150475 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317459597 2021-03-19 16:10:30.527219 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Chemung US-NY-015 28.0 Tanglewood Nature Center--Personius Woods L826647 H 42.1149378 -76.8878603 2015-05-09 08:01:00 obsr1334267 S23321315 Traveling P22 EBIRD 87.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312986311 2018-08-04 17:12:18 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 25 United States US New York US-NY Monroe US-NY-055 13.0 Lake Edwards L462614 H 43.0890745 -77.3890686 2015-04-25 20:29:00 obsr749440 S23059254 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308628888 2021-04-01 11:24:19.637193 7346 species avibase-D4540F88 Glossy Ibis Plegadis falcinellus 8 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-04-09 09:06:00 obsr1124114 S22766830 Traveling P22 EBIRD 96.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310117029 2021-03-23 17:18:00.959502 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-14 14:35:00 obsr2855945 S22870296 Traveling P22 EBIRD 115.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313388983 2018-08-04 17:12:24 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Yates US-NY-123 13.0 Yates County Public Ponds L2142998 P 42.7601618 -77.2696346 2015-04-26 11:15:00 obsr195058 S23084015 Traveling P22 EBIRD 35.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289474383 2021-03-24 19:27:13.077399 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-06 10:00:00 obsr1334267 S21222021 Traveling P22 EBIRD 33.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323427614 2021-04-01 11:15:31.646886 622 species avibase-50566E50 Lesser Scaup Aythya affinis 5 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-26 16:00:00 obsr1731572 S23668358 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305214954 2018-08-04 17:02:49 406 species avibase-27B2749A Wood Duck Aix sponsa 18 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-03-25 08:15:00 obsr544268 S22511631 Rusty Blackbird Spring Migration Blitz P41 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288179540 2021-05-21 00:06:20.034424 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Richmond US-NY-085 Mt. Loretto Unique Area L293510 H 40.5072899 -74.2180324 2015-01-01 12:23:00 obsr1958124 S21115730 Traveling P22 EBIRD 9.0 0.032 2.0 1 G1088904 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314998106 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 9 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-05-02 16:00:00 obsr259298 S23182352 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316036016 2021-03-26 06:55:00.227271 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 1 United States US New York US-NY Ontario US-NY-069 13.0 SEOW Survey point L3614756 P 42.8781607 -77.5071099 2015-04-21 19:30:00 obsr2966702 S23239724 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309950063 2021-03-24 19:40:51.185319 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus N 1 Male, Unknown Age (1) United States US New York US-NY Jefferson US-NY-045 13.0 West Carthage, NY ( vicinity) L1579261 P 43.9691016 -75.645775 2015-03-22 16:00:00 obsr2251037 S22858514 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306737599 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-01 09:46:00 obsr1711339 S22628003 Traveling P22 EBIRD 270.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299842012 2021-04-01 12:11:50.996293 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Seneca US-NY-099 13.0 Fayette, Seybolt Road L3443003 P 42.8481171 -76.7674237 2015-02-27 11:17:00 obsr1062070 S22091461 Traveling P22 EBIRD 13.0 4.989 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320502777 2021-03-26 07:46:52.994574 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) X United States US New York US-NY Albany US-NY-001 13.0 Walden's Pond L3560491 P 42.6835711 -73.8895369 2015-05-17 08:15:00 obsr2270510 S23490035 Traveling P22 EBIRD 25.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312700001 2021-04-01 12:39:12.329364 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY Otsego US-NY-077 13.0 Co Rd 53 - between Public Landing Rd & Mill Rd L1314730 P 42.8159393 -74.8607567 2015-04-24 15:50:00 obsr1000124 S23041847 Incidental P20 EBIRD 3.0 0 G1234626 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289584667 2021-03-26 07:30:35.289997 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 7 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: Christmas Bird Count: City W hill: S loop L1865681 P 42.4407244 -76.5214177 2015-01-01 15:00:00 obsr2760150 S21230682 Traveling P22 EBIRD 91.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307151386 2022-02-17 14:32:23.002448 31530 species avibase-B48335B1 Pine Siskin Spinus pinus N 100 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-03 09:22:00 obsr1605975 S22658931 Traveling P22 EBIRD 130.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315739117 2021-03-26 07:56:20.588749 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-04 08:30:00 obsr1693806 S23222742 Traveling P22 EBIRD 180.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298607070 2021-03-26 07:46:52.994574 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N 30 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-02-20 15:20:00 obsr2321296 S21991505 Stationary P21 EBIRD 52.0 2.0 1 G1165036 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292913545 2021-03-01 11:20:54.007808 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 30 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-24 12:44:00 obsr1655171 S21516631 Traveling P22 EBIRD 29.0 0.483 2.0 1 G1121998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310641245 2017-01-21 14:01:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Oswego US-NY-075 13.0 Great Bear Recreation Area L664197 H 43.2666087 -76.3654238 2015-04-17 11:05:00 obsr2172593 S22906351 Traveling P22 EBIRD 51.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311007654 2021-04-01 12:32:15.282601 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-18 09:15:00 obsr1489009 S22929956 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290957369 2021-01-30 10:27:08.559792 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-I L3289026 P 40.29866 -73.31405 2015-01-11 16:00:00 obsr1889800 S21341275 Traveling P22 EBIRD 60.0 10.622 44.0 1 G1108342 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS301609604 2021-03-26 06:09:25.361188 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-03-08 08:00:00 obsr879105 S22225674 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311415029 2021-12-19 10:32:19.574298 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-04-19 08:00:00 obsr2752800 S22954931 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303218294 2015-06-14 21:43:17 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Mays Point Pool and road L99392 H 42.9946205 -76.7637599 2015-03-13 19:00:00 obsr2284947 S22357419 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306721696 2021-03-30 19:29:33.633096 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-31 08:20:00 obsr1137265 S22626934 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310188252 2021-03-19 16:06:54.047432 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.7340502 -76.7060602 2015-04-11 10:20:00 obsr2760150 S22872648 Stationary P21 EBIRD 15.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304451074 2015-03-30 21:23:21 303 species avibase-B59E1863 Canada Goose Branta canadensis 60 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-03-21 10:45:00 obsr887540 S22453646 Stationary P21 EBIRD 18.0 10.0 1 G1198789 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291290887 2021-04-01 11:30:42.037277 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-16 11:30:00 obsr1349960 S21368767 Traveling P22 EBIRD 170.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301878294 2021-11-09 18:32:20.227374 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 25 United States US New York US-NY Dutchess US-NY-027 13.0 2122 New Hackensack Road, Poughkeepsie, New York, US (41.66, -73.874) L233101 P 41.6600962 -73.8740462 2015-03-08 07:10:00 obsr842638 S22247350 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303905981 2021-04-01 10:58:47.067498 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant--East L870144 H 42.990146 -78.2094383 2015-03-18 10:17:00 obsr393804 S22411909 Traveling P22 EBIRD 38.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324233787 2021-04-01 11:30:42.037277 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-05-12 17:46:00 obsr259298 S23722891 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319465517 2021-03-26 07:52:59.845315 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-12 07:00:00 obsr1000124 S23433352 Area P23 EBIRD 78.0 2.59 2.0 1 G1270076 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305623492 2021-04-01 12:18:57.910168 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-03-27 08:30:00 obsr2683910 S22543521 Traveling P22 EBIRD 22.0 0.483 2.0 1 G1194217 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292811461 2021-04-01 11:49:53.573686 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-01-21 07:21:00 obsr1982614 S21508472 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294260643 2018-08-04 16:55:32 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-01-31 17:00:00 obsr2278958 S21623020 Traveling P22 EBIRD 32.0 0.483 7.0 1 G1130847 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297464267 2017-09-09 13:14:35 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Hoyt spur powerline cut trail (0.223 km) L1368198 P 42.4797939 -76.4474848 2015-02-16 08:44:00 obsr2307843 S21890174 Traveling P22 EBIRD 5.0 0.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288630135 2021-03-24 19:27:13.077399 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-02 09:35:00 obsr1334267 S21153546 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303922142 2021-03-30 19:29:33.633096 483 species avibase-85625D75 Mallard Anas platyrhynchos N 35 United States US New York US-NY Suffolk US-NY-103 30.0 Forge River L2636000 P 40.7977194 -72.8315127 2015-03-12 11:00:00 obsr1592950 S22413093 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296832798 2021-03-23 16:39:03.255227 30494 species avibase-240E3390 House Sparrow Passer domesticus 20 United States US New York US-NY Richmond US-NY-085 Sprague Ave. Waterfront L2167027 H 40.4999968 -74.2364216 2015-02-14 09:40:00 obsr1893950 S21834217 Stationary P21 EBIRD 16.0 2.0 1 G1145906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298469639 2018-08-04 16:57:26 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-19 15:19:00 obsr1958124 S21979985 Traveling P22 EBIRD 23.0 0.483 2.0 1 G1153083 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313722326 2021-03-22 09:17:32.016297 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata X United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-28 06:42:00 obsr666964 S23104815 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307755441 2015-04-05 15:55:16 456 species avibase-D201EB72 American Wigeon Mareca americana 7 Female, Adult (1); Male, Adult (6) United States US New York US-NY Saratoga US-NY-091 13.0 Eastline Pond L3540836 P 42.9678273 -73.830073 2015-04-05 13:40:00 obsr907769 S22701506 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315511892 2021-12-24 11:02:14.483178 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-02 08:00:00 obsr1534851 S23210316 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317351344 2015-05-08 22:34:49 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-08 19:30:00 obsr72341 S23314489 Stationary P21 EBIRD 60.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294586220 2021-03-24 20:23:39.258075 483 species avibase-85625D75 Mallard Anas platyrhynchos 12 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-02-02 13:27:00 obsr2485753 S21648663 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290287739 2021-03-24 05:37:45.927792 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Suffolk US-NY-103 30.0 West Lake L1433619 H 40.7640213 -73.0273589 2015-01-10 15:00:00 obsr757440 S21285854 Stationary P21 EBIRD 30.0 4.0 0 G1110535 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304865469 2021-03-30 19:29:33.633096 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Bayard Cutting Arboretum SP L715580 H 40.7355391 -73.1629871 2015-03-21 12:55:00 obsr1987335 S22484169 Traveling P22 EBIRD 120.0 1.609 2.0 1 G1190118 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288754929 2021-04-01 11:15:31.646886 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 20 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-03 11:41:00 obsr1189028 S21163381 Traveling P22 EBIRD 35.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303313423 2021-11-09 21:43:58.300436 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 1 United States US New York US-NY Ulster US-NY-111 13.0 Black Creek Preserve L2086582 H 41.8236532 -73.9574718 2015-03-15 16:11:00 obsr1136997 S22364692 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316304811 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 12 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Vale of Cashmere L1149386 H 40.6690561 -73.9683616 2015-05-05 11:00:00 obsr329727 S23255672 Traveling P22 EBIRD 90.0 4.023 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316728325 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-06 16:56:00 obsr325436 S23279763 Traveling P22 EBIRD 183.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295257887 2021-03-23 16:52:36.900075 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 PI--Route 13 L992038 P 41.1863411 -72.1708632 2015-02-06 13:22:00 obsr2485753 S21702456 Traveling P22 EBIRD 42.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321420567 2021-03-26 06:12:17.833181 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot--Lighthouse L404931 H 42.4929459 -79.3538404 2015-04-25 14:49:00 obsr334398 S23544366 Traveling P22 EBIRD 33.0 0.483 3.0 1 G1282909 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305580184 2018-08-04 17:03:42 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-03-27 09:27:00 obsr1565981 S22540200 Traveling P22 EBIRD 47.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312430918 2021-11-09 18:32:19.761913 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Montgomery Place L2260390 P 42.0129612 -73.9184618 2015-04-22 09:00:00 obsr2753438 S23022560 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288628939 2021-04-01 12:31:09.823741 16223 species avibase-951C150C Olive-sided Flycatcher Contopus cooperi 5 United States US New York US-NY Livingston US-NY-051 13.0 Home--Geneseo L2865813 P 42.8460168 -77.8164196 2015-01-02 16:30:00 obsr1513934 S21153444 Traveling P22 EBIRD 90.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292264156 2015-01-21 10:06:57 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3307811 P 43.429016 -75.903778 2015-01-21 08:40:00 obsr1477887 S21444347 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309310676 2021-11-09 19:55:29.587179 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Orange US-NY-071 28.0 Six and a Half Station Rd. Sanctuary L306143 H 41.4025242 -74.3499176 2015-04-11 06:15:00 obsr498923 S22814746 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291635935 2021-04-01 11:24:19.637193 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-16 08:30:00 obsr1782363 S21396131 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304277259 2015-03-20 19:30:35 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-20 08:00:00 obsr1334267 S22440968 Traveling P22 EBIRD 28.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300862614 2021-04-01 11:54:40.172593 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-02 12:20:00 obsr1032565 S22168797 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312734950 2021-04-01 12:18:57.910168 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-21 08:25:00 obsr140280 S23044184 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323099153 2021-03-26 06:17:19.712573 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Erie US-NY-029 13.0 Evangola SP L300496 H 42.6085236 -79.1111807 2015-05-26 09:00:00 obsr2912088 S23646289 Traveling P22 EBIRD 120.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288246710 2021-03-26 06:21:54.883933 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis N 2 United States US New York US-NY Kings US-NY-047 30.0 Park Place (Backyard list), Brooklyn L1355824 P 40.678271 -73.9753908 2015-01-01 07:30:00 obsr827632 S21108864 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309925286 2015-04-14 07:54:19 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Mexico-615 Darrow Rd L3562978 P 43.477551 -76.325784 2015-04-14 07:53:00 obsr642516 S22856713 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311082269 2021-03-19 16:12:42.877422 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Columbia US-NY-021 14.0 Larkspur Farm woods (private) L3150691 P 42.1917199 -73.6003561 2015-04-18 07:25:00 obsr2842267 S22934818 Traveling P22 EBIRD 95.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321163121 2018-08-06 22:30:09 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Jefferson US-NY-045 13.0 Town of Orleans L3355312 P 44.1537829 -76.115427 2015-05-16 09:15:00 obsr585290 S23528693 Traveling P22 EBIRD 180.0 56.327 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314741688 2015-05-01 20:44:19 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Greene US-NY-039 13.0 The Old House Fields, New Baltimore L3139069 P 42.4385584 -73.7926984 2015-05-01 18:30:00 obsr1181085 S23167805 Traveling P22 EBIRD 90.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306513253 2015-03-31 12:45:05 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Franklin US-NY-033 14.0 Lake clear L1842743 P 44.3706519 -74.234226 2015-03-31 08:30:00 obsr1366295 S22610770 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320167488 2015-10-17 16:11:51 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-13 05:45:00 obsr1009338 S23472524 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307859136 2021-03-30 19:13:38.458673 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus N 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-05 11:23:00 obsr528918 S22708938 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320095548 2021-03-19 16:02:45.308962 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Broome US-NY-007 28.0 Nuthatch Hollow Nature Preserve L199978 H 42.0810666 -75.9852703 2015-05-16 10:00:00 obsr1044068 S23469018 Traveling P22 EBIRD 18.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320324192 2021-11-09 18:47:29.512936 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Dutchess US-NY-027 28.0 Dover Furnace Rd L3648502 P 41.69006 -73.591194 2015-05-16 14:34:00 obsr1732267 S23480556 Traveling P22 EBIRD 11.0 4.023 2.0 1 G1277163 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314115033 2015-04-29 16:44:54 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Allegany US-NY-003 28.0 Alfred Area L898157 P 42.2107194 -77.7494717 2015-04-29 16:00:00 obsr1868960 S23129368 Traveling P22 EBIRD 35.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303464038 2021-03-24 20:33:47.533911 6339 species avibase-8535345B Herring Gull Larus argentatus 20 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-16 08:46:00 obsr2211210 S22376989 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304503325 2021-04-01 12:35:52.669792 11371 species avibase-75600969 Northern Flicker Colaptes auratus 5 Unknown Sex, Adult (4); Unknown Sex, Immature (1) United States US New York US-NY Onondaga US-NY-067 13.0 Radisson River Park (private) L3498350 H 43.2032416 -76.2825651 2015-03-21 17:24:00 obsr2224244 S22457571 Stationary P21 EBIRD 156.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316216089 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 16:30:00 obsr2031586 S23250469 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316131701 2021-11-15 03:06:58.889978 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 10:00:00 obsr1223279 S23244907 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332267389 2021-04-01 11:15:31.646886 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-31 11:25:00 obsr564905 S24303090 Traveling P22 EBIRD 110.0 1.609 2.0 1 G1349853 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316822113 2021-04-01 12:32:15.282601 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 10 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-07 06:15:00 obsr547602 S23285069 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291577447 2018-08-04 16:53:31 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Saratoga US-NY-091 13.0 Stillwater L3299590 P 42.9362549 -73.6543608 2015-01-17 14:35:00 obsr2186523 S21391521 Traveling P22 EBIRD 35.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305030879 2022-02-18 10:47:29.953615 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-24 08:37:00 obsr1062070 S22497594 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316490198 2016-09-12 10:40:05 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 42.061868, -78.388309 L3617529 P 42.262305 -78.4304094 2015-05-06 09:00:00 obsr2896852 S23265736 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323924141 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 08:08:00 obsr152435 S23703513 Traveling P22 EBIRD 103.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305605034 2021-03-30 19:07:52.958398 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-21 13:30:00 obsr2182516 S22542147 Traveling P22 EBIRD 135.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310756492 2021-03-26 06:39:43.334073 27616 species avibase-D77E4B41 American Robin Turdus migratorius N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 obsr2277801 S22913973 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300105805 2021-04-01 12:14:19.266649 303 species avibase-B59E1863 Canada Goose Branta canadensis 25 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree State Park L3344167 P 40.6370305 -73.2574046 2015-02-28 12:01:00 obsr1848026 S22112482 Traveling P22 EBIRD 21.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317482319 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 07:30:00 obsr1119101 S23322630 Traveling P22 EBIRD 180.0 4.023 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310954006 2021-03-26 06:07:45.516082 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-04-16 13:15:00 obsr423515 S22926625 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292994254 2021-11-09 19:49:09.152979 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 12 United States US New York US-NY Orange US-NY-071 28.0 Onion Ave L2674674 P 41.3711406 -74.4234467 2015-01-24 11:45:00 obsr1872991 S21522676 Traveling P22 EBIRD 120.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291274352 2015-01-16 13:03:56 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-01-15 15:30:00 obsr1044068 S21367227 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289127256 2021-11-09 22:28:59.791993 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Sullivan US-NY-105 US-NY_796 28.0 Mongaup Valley WMA Eagle Blind L1097151 H 41.553811 -74.7868538 2015-01-04 15:30:00 obsr1015200 S21194966 Stationary P21 EBIRD 240.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319085154 2021-03-19 16:06:54.047432 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-05-08 06:22:00 obsr2683910 S23411925 Traveling P22 EBIRD 7.0 0.322 2.0 1 G1268053 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306780034 2016-09-12 10:28:01 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-03-27 10:30:00 obsr2475075 S22631073 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313082637 2021-03-24 20:33:47.533911 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-26 08:31:00 obsr887540 S23065121 Traveling P22 EBIRD 120.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300038272 2021-11-09 22:27:59.558644 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula N 20 United States US New York US-NY Sullivan US-NY-105 28.0 Wurtsboro L1061608 P 41.572435 -74.4754601 2015-02-28 10:45:00 obsr444155 S22106527 Traveling P22 EBIRD 45.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288501371 2018-08-04 16:52:31 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 30 United States US New York US-NY Erie US-NY-029 13.0 gallagher beach L1146511 P 42.8426185 -78.8603783 2015-01-02 13:30:00 obsr1079517 S21142611 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304849934 2021-03-26 06:29:14.715704 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Madison US-NY-053 28.0 Home to Coulter walkabout L790370 P 42.8733852 -75.8207703 2015-03-21 10:14:00 obsr2716320 S22482880 Traveling P22 EBIRD 92.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296136953 2021-11-09 21:57:08.59724 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Ulster US-NY-111 28.0 Lippincott Rd, Wallkill, NY L3353603 P 41.612671 -74.188651 2015-02-11 14:53:00 obsr2568221 S21771913 Incidental P20 EBIRD 3.0 0 G1144500 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310134408 2021-03-26 06:39:43.334073 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-13 18:02:00 obsr2180607 S22871501 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312728344 2021-03-24 20:33:47.533911 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-25 07:45:00 obsr455249 S23043776 Traveling P22 EBIRD 11.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317324718 2021-03-26 07:56:20.588749 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Nassau US-NY-059 30.0 Guggenheim Elementary School (Port Washington) L3554440 P 40.8510533 -73.6983597 2015-05-08 18:30:00 obsr2982024 S23312963 Traveling P22 EBIRD 75.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311771700 2021-04-01 11:54:40.172593 647 species avibase-BCBD2EAE Harlequin Duck Histrionicus histrionicus 2 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-04-20 08:00:00 obsr666331 S22978642 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291466769 2015-01-17 21:06:46 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 50 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Road - Traveling L3298064 P 40.8252888 -72.5390339 2015-01-17 07:45:00 obsr2406624 S21382763 Traveling P22 EBIRD 90.0 8.047 2.0 1 G1112053 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315980417 2015-05-04 23:55:39 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 12 Female, Adult (4); Male, Adult (8) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-04 17:45:00 obsr316199 S23236124 Area P23 EBIRD 60.0 2.59 2.0 1 G1252523 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293093222 2015-01-25 10:00:10 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-01-25 09:00:00 obsr2074043 S21530543 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312769066 2021-11-09 21:48:00.131772 11494 species avibase-20C2214E American Kestrel Falco sparverius 80 United States US New York US-NY Ulster US-NY-111 13.0 Franny Reese SP L2657553 H 41.7044358 -73.9565511 2015-04-25 07:30:00 obsr2700041 S23046380 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309759471 2021-04-01 11:49:53.573686 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Queens US-NY-081 30.0 Rosie's Place-243 Beach 135th Street L869966 P 40.5751026 -73.8535845 2015-04-12 08:30:00 obsr604941 S22845087 Stationary P21 EBIRD 260.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320926932 2015-05-19 00:10:18 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-04-26 11:45:00 obsr1962295 S23513703 Stationary P21 EBIRD 50.0 2.0 1 G1278761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921917 2021-03-26 07:56:20.588749 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-26 16:00:00 obsr2218212 S22173341 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295580299 2016-06-20 09:17:32 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Erie US-NY-029 13.0 Buckhorn Island SP L164983 H 43.0606218 -78.9882132 2015-02-07 09:30:00 obsr2052252 S21728408 Traveling P22 EBIRD 180.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305616203 2021-11-09 20:39:07.387799 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 9 United States US New York US-NY Putnam US-NY-079 28.0 Paul A. Camarda Park L1354733 H 41.4031816 -73.6813005 2015-03-27 13:30:00 obsr1458092 S22543010 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307395839 2021-03-24 20:58:53.646623 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3537321 P 42.693501 -77.711644 2015-04-04 07:53:00 obsr682121 S22676638 Stationary P21 EBIRD 202.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318351824 2015-05-10 20:31:02 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-10 06:35:00 obsr1044068 S23369980 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301337917 2021-03-24 21:09:00.82373 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Rensselaer US-NY-083 14.0 Cranston Hill Road L1887322 P 42.5543173 -73.38282 2015-03-07 07:15:00 obsr1787323 S22205303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293365368 2021-12-10 08:21:29.396662 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 2 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-01-26 08:35:00 obsr258431 S21551530 Traveling P22 EBIRD 120.0 2.092 8.0 1 G1124871 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309201991 2021-04-01 11:30:42.037277 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Harlem Meer L278127 H 40.7971185 -73.9523133 2015-04-11 14:00:00 obsr609516 S22807600 Traveling P22 EBIRD 70.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308329044 2021-03-26 08:14:57.071052 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-06 08:40:00 obsr1198912 S22743956 Traveling P22 EBIRD 140.0 3.621 18.0 1 G1207928 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322987102 2021-03-24 20:58:53.646623 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-25 12:00:00 obsr72341 S23639056 Stationary P21 EBIRD 390.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288105896 2021-03-26 06:09:25.361188 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-01 08:45:00 obsr879105 S21109834 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298276482 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-02-18 14:58:00 obsr904434 S21962768 Traveling P22 EBIRD 46.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288314613 2015-01-01 21:43:05 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Madison US-NY-053 13.0 Old Orchard Roads L1107959 P 43.1661243 -75.7739067 2015-01-01 16:05:00 obsr979921 S21127625 Incidental P20 EBIRD 3.0 0 G1089744 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312893117 2020-05-21 16:13:30 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 6 United States US New York US-NY Allegany US-NY-003 US-NY_1762 28.0 Keeney Swamp SF L2949391 H 42.4179406 -77.9075956 2015-04-25 10:20:00 obsr955789 S23053590 Traveling P22 EBIRD 278.0 2.414 1.0 1 G1236467 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304568843 2021-03-24 20:16:00.852773 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 5 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF--Snag Swamp L1473094 H 40.515363 -74.2213938 2015-03-22 08:29:00 obsr1958124 S22462459 Traveling P22 EBIRD 19.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310094170 2021-03-30 19:07:12.70155 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 25 United States US New York US-NY Jefferson US-NY-045 US-NY_778 13.0 Perch River WMA L253293 H 44.0861979 -75.9664464 2015-04-14 18:00:00 obsr585290 S22868710 Traveling P22 EBIRD 70.0 22.531 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293229330 2021-12-14 03:49:46.629529 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY New York US-NY-061 30.0 FDR Drive to 1st Ave. btwn 38th-42nd St. (incl. U Thant Is.) L1940751 H 40.747189 -73.9699067 2015-01-25 14:15:00 obsr259298 S21541221 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315663410 2021-03-19 16:54:27.713469 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Montgomery US-NY-057 13.0 629 State Highway 161 L3554520 P 42.8835997 -74.2643339 2015-05-04 06:15:00 obsr286403 S23218649 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319799187 2021-03-26 06:29:56.44369 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus N 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Burger Park L390594 H 43.3099074 -77.7326596 2015-05-12 14:20:00 obsr1962295 S23452776 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289883619 2015-01-08 15:19:02 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-08 15:10:00 obsr1958124 S21254531 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315472948 2021-04-01 11:30:42.037277 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 NY - Central Park L1062226 P 40.7760568 -73.9715481 2015-05-03 06:45:00 obsr271871 S23208138 Traveling P22 EBIRD 300.0 8.047 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309828668 2017-03-01 21:48:28 11494 species avibase-20C2214E American Kestrel Falco sparverius 3 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-13 16:00:00 obsr544268 S22849881 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323175797 2021-11-09 17:58:40.313796 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 5 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-05 10:15:00 obsr2786327 S23651487 Traveling P22 EBIRD 180.0 2.414 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316109705 2021-11-15 03:06:58.889978 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 06:28:00 obsr870166 S23243716 Traveling P22 EBIRD 253.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309884483 2022-01-12 18:14:10.119384 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--South Entrance L825062 H 44.3641149 -74.1511381 2015-04-01 15:35:00 obsr1190754 S22853828 Traveling P22 EBIRD 45.0 1.609 4.0 1 G1219030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310129259 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-13 16:57:00 obsr924076 S22871159 Traveling P22 EBIRD 182.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303505611 2021-03-23 16:51:24.016808 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Steuben US-NY-101 28.0 Cold Brook WMA L780096 H 42.3988845 -77.2374916 2015-03-16 12:21:00 obsr749440 S22380814 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314880127 2021-03-30 19:13:38.458673 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-02 06:24:00 obsr745890 S23176152 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311532515 2021-12-28 15:50:27.785498 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-20 09:36:00 obsr606693 S22962196 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302050882 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 50 United States US New York US-NY New York US-NY-061 30.0 Broadway Bridge, Manhattan and Marble Hill (New York Co.) L2724890 H 40.8731648 -73.9117545 2015-03-07 11:15:00 obsr1548221 S22260226 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304039994 2021-03-30 06:01:28.020715 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-03-19 12:29:00 obsr2914424 S22422349 Traveling P22 EBIRD 41.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320808894 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-05-18 05:08:00 obsr1154 S23507017 Traveling P22 EBIRD 55.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306554305 2021-04-01 12:32:15.282601 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park L693342 P 40.6618894 -73.719635 2015-03-31 08:15:00 obsr2505956 S22613999 Rusty Blackbird Spring Migration Blitz P41 EBIRD 135.0 1.609 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319944848 2021-03-26 06:20:10.658048 32757 species avibase-EF47E15D Boat-tailed Grackle Quiscalus major 3 United States US New York US-NY Genesee US-NY-037 13.0 Francis Road, Batavia, NY L1421017 P 42.9423971 -78.1622197 2015-05-15 09:00:00 obsr393804 S23460484 Traveling P22 EBIRD 170.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306925980 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-04-02 08:26:00 obsr2512689 S22641777 Traveling P22 EBIRD 124.0 2.414 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312826998 2021-04-01 11:15:31.646886 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 12 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 08:15:00 obsr454647 S23049768 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298085338 2021-03-30 19:29:33.633096 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Suffolk US-NY-103 30.0 Fish Cove inlet L3394593 P 40.9372641 -72.4085498 2015-02-16 13:00:00 obsr2846902 S21946662 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304849074 2018-08-04 17:02:25 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 11 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Gilgo Beach L499715 H 40.6172753 -73.3947659 2015-03-22 10:16:00 obsr564905 S22482814 Traveling P22 EBIRD 10.0 3.219 2.0 1 G1190119 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318929399 2021-03-23 17:18:00.959502 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 15 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-12 08:57:00 obsr1201479 S23402598 Traveling P22 EBIRD 146.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS432186103 2017-01-22 21:25:34 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 30 United States US New York US-NY Livingston US-NY-051 US-NY_1760 13.0 Nations Rd. IBA--Hogmire Rd. L2635158 H 42.8751695 -77.7963352 2015-02-02 obsr2326876 S31755878 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303464538 2015-03-16 08:55:47 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Oak Beach L267998 H 40.63923 -73.28832 2015-01-31 10:57:00 obsr564905 S22377143 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306584941 2021-03-26 06:17:19.712573 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-03-31 12:20:00 obsr2071643 S22616367 Traveling P22 EBIRD 125.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321947412 2015-05-22 12:24:59 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Red Creek-12353 Coleman Rd L3663546 P 43.218734 -76.659289 2015-05-22 12:24:00 obsr642516 S23577027 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299922637 2021-04-01 12:45:19.712958 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea N 10 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-27 11:30:00 obsr238853 S22097229 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295319327 2021-03-26 08:14:57.071052 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Westchester US-NY-119 30.0 NY - Yonkers - Kimble Ave L2432769 P 40.9168156 -73.8558269 2015-02-06 15:56:00 obsr1348614 S21707466 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291621001 2015-05-07 17:07:24 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-01-18 09:22:00 obsr455249 S21394868 Traveling P22 EBIRD 14.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308012544 2017-08-16 16:59:59 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Rensselaer US-NY-083 13.0 American Oil Road L1137088 P 42.6021254 -73.7550831 2015-04-06 12:05:00 obsr1735540 S22720011 Traveling P22 EBIRD 5.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321089498 2021-03-26 06:21:54.883933 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-18 06:54:00 obsr2152799 S23523712 Traveling P22 EBIRD 220.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326849315 2021-03-19 16:12:42.877422 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Columbia US-NY-021 14.0 Larkspur Farm fields (private) L3150677 P 42.1869503 -73.5971375 2015-05-30 09:40:00 obsr2842267 S23904955 Traveling P22 EBIRD 140.0 0.772 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325170084 2021-11-09 22:28:59.791993 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Sullivan US-NY-105 US-NY_796 28.0 Mongaup Valley WMA Eagle Blind L1097151 H 41.553811 -74.7868538 2015-01-17 09:00:00 obsr2395127 S23788289 Traveling P22 EBIRD 240.0 32.187 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296256058 2015-02-12 12:09:35 276 species avibase-AFA7EE74 Pink-footed Goose Anser brachyrhynchus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Town Hall L154953 P 41.06348 -72.43162 2015-02-12 12:06:00 obsr2485753 S21781451 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298068180 2021-04-01 12:32:15.282601 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-02-16 obsr2277801 S21945207 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309927613 2021-03-23 16:30:20.514143 337 species avibase-694C127A Mute Swan Cygnus olor 84 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 10:49:00 obsr1696616 S22856860 Stationary P21 EBIRD 299.0 5.0 1 G1218628 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS319619895 2021-03-19 16:44:35.607263 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-14 15:06:00 obsr1008519 S23442309 Traveling P22 EBIRD 70.0 1.127 3.0 1 G1271743 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307502867 2021-04-01 12:18:57.910168 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 NY:TOM:Ithaca: home to Renwick Sanc, Newman Golf, Jetty Wds, Stewart Pk L2136757 P 42.4588006 -76.5057528 2015-04-04 10:17:00 obsr2760150 S22683885 Traveling P22 EBIRD 241.0 7.87 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317990951 2021-04-01 11:24:19.637193 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-09 08:43:00 obsr745890 S23350930 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298318377 2021-11-09 20:53:17.759253 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Rockland US-NY-087 30.0 Nanuet L1293607 P 41.0931306 -74.0298271 2015-02-18 15:00:00 obsr1932005 S21966250 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319532596 2021-03-26 07:56:20.588749 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-14 08:40:00 obsr916370 S23437459 Traveling P22 EBIRD 110.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296798062 2021-03-26 07:56:20.588749 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus N 19 United States US New York US-NY Nassau US-NY-059 30.0 Lynbrook L3091077 P 40.6511413 -73.6801529 2015-02-14 15:00:00 obsr358492 S21831056 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320266812 2021-11-09 17:58:40.313796 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-16 11:00:00 obsr2241630 S23476555 Traveling P22 EBIRD 290.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315953813 2015-05-04 22:15:21 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 1 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2737378 P 42.7558333 -78.8616667 2015-04-27 09:00:00 obsr436899 S23234555 Stationary P21 EBIRD 120.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295479730 2022-02-17 14:32:23.002448 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata N 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-07 15:16:00 obsr2404047 S21720514 Traveling P22 EBIRD 65.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321912496 2022-02-27 09:35:49.066489 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-05-22 09:07:00 obsr1042912 S23574983 Traveling P22 EBIRD 63.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317934775 2021-03-26 06:17:19.712573 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis N X United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-09 10:30:00 obsr1379161 S23347655 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288908211 2021-03-30 12:05:58.533651 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Nassau US-NY-059 30.0 North Woodmere Park L1855788 P 40.644958 -73.736834 2015-01-03 14:20:00 obsr1220115 S21177831 Traveling P22 EBIRD 55.0 0.402 4.0 1 G1094303 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303770700 2021-11-09 21:41:38.795423 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-03-17 07:30:00 obsr1588136 S22401008 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290819036 2022-02-17 14:32:23.002448 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-13 09:50:00 obsr1605975 S21329817 Traveling P22 EBIRD 70.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306981471 2022-02-04 06:14:13.892644 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-04-02 15:45:00 obsr2793388 S22645978 Traveling P22 EBIRD 15.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310388306 2021-03-23 17:00:13.087107 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 4 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--F.R. Newman Arboretum L799199 H 42.4520722 -76.4572692 2015-04-15 17:35:00 obsr241086 S22888848 Traveling P22 EBIRD 30.0 0.402 2.0 1 G1221703 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310025592 2021-03-30 19:22:51.561415 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas X United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-04-14 10:20:00 obsr2505956 S22863740 Rusty Blackbird Spring Migration Blitz P41 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319851334 2021-03-26 06:12:17.833181 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-05-15 09:45:00 obsr1080625 S23455577 Traveling P22 EBIRD 230.0 1.609 10.0 1 G1309113 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307921717 2021-04-01 12:18:57.910168 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-05 18:00:00 obsr2535282 S22713870 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289779222 2021-04-01 11:49:53.573686 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 2 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-01-07 07:31:00 obsr1982614 S21245602 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304608608 2015-03-22 12:13:26 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 28.0 US-NY-Ithaca-929-955 Coddington Rd L3505911 P 42.396483 -76.451479 2015-03-22 12:10:00 obsr887540 S22465316 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314507827 2015-04-30 23:27:01 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 1 United States US New York US-NY Monroe US-NY-055 13.0 Webster Big Field L526104 H 43.2440148 -77.4909067 2015-04-30 18:40:00 obsr1545618 S23153803 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294040713 2015-01-30 18:14:36 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Essex US-NY-031 13.0 Coot Hill L2186719 H 44.0025771 -73.4684045 2015-01-30 12:02:00 obsr2420101 S21605815 Traveling P22 EBIRD 85.0 3.219 2.0 1 G1129323 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290979480 2021-11-09 18:25:57.501281 6616 species avibase-7E022378 Common Loon Gavia immer 15 United States US New York US-NY Dutchess US-NY-027 13.0 Shunpike Rd (pond at Rally Farms) L1778940 P 41.8362525 -73.6505797 2015-01-05 08:30:00 obsr1062217 S21342972 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294586028 2021-04-01 11:15:31.646886 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 7 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-31 11:15:00 obsr1102914 S21648652 Traveling P22 EBIRD 205.0 4.828 12.0 1 G1132929 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314335009 2018-08-04 17:13:05 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-30 07:00:00 obsr1830659 S23142582 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307691007 2021-03-30 19:13:38.458673 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--South Marina L458871 H 43.3060838 -77.7083373 2015-04-05 11:54:00 obsr334398 S22696961 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311163415 2021-03-30 19:07:52.958398 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 15:41:00 obsr839844 S22939540 Traveling P22 EBIRD 165.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304634016 2019-07-23 17:28:05 5770 species avibase-95E28A57 Semipalmated Plover Charadrius semipalmatus 1 United States US New York US-NY Monroe US-NY-055 13.0 Rigneys Bluff L279167 H 43.2752353 -77.6392102 2015-03-22 10:56:00 obsr730231 S22467112 Stationary P21 EBIRD 22.0 2.0 1 G1188283 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311353575 2015-04-19 18:02:33 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Monroe US-NY-055 13.0 Lehigh Valley Trail at E Henrietta Rd. L3461801 H 43.0258149 -77.630397 2015-04-19 17:02:00 obsr1097423 S22951043 Traveling P22 EBIRD 60.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423024 2021-04-01 11:24:19.637193 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-05-29 20:03:00 obsr1846130 S24163334 Stationary P21 EBIRD 35.0 2.0 1 G1337404 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315803523 2019-10-17 11:32:42 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-05-04 15:01:00 obsr1792012 S23226121 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308317611 2015-04-07 17:30:51 591 species avibase-1929E1E1 Canvasback Aythya valisineria 3 United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-04-07 17:07:00 obsr967916 S22743069 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309830687 2021-03-23 16:30:20.514143 6339 species avibase-8535345B Herring Gull Larus argentatus 52 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 10:49:00 obsr2074043 S22850019 Stationary P21 EBIRD 299.0 5.0 1 G1218628 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293336098 2015-01-26 15:06:51 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Suffolk US-NY-103 Lake Montauk - Yacht Club L3319374 P 41.068833 -71.9311488 2015-01-25 12:30:00 obsr2406624 S21549093 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312242953 2015-04-23 07:18:13 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 6 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-04-22 07:45:00 obsr2766625 S23009902 Traveling P22 EBIRD 210.0 0.805 13.0 1 G1232162 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318307565 2021-04-01 10:55:39.308231 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 5 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-10 07:30:00 obsr2871264 S23367536 Traveling P22 EBIRD 330.0 2.414 15.0 1 G1282906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310349258 2019-07-23 17:28:19 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr155915 S22886039 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312602645 2015-05-31 16:47:08 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Oven and The Point L1480317 H 40.7756262 -73.9700541 2015-04-24 17:13:00 obsr1889800 S23035086 Traveling P22 EBIRD 8.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292991369 2021-11-09 22:37:20.108383 30494 species avibase-240E3390 House Sparrow Passer domesticus 17 United States US New York US-NY Sullivan US-NY-105 28.0 Bashakill L1566572 P 41.5241759 -74.5163684 2015-01-24 08:00:00 obsr2219590 S21522446 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318156730 2018-08-06 22:29:35 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Chemung US-NY-015 28.0 Tanglewood Nature Center--Gleason Meadows L163496 H 42.10472 -76.87654 2015-05-10 09:28:00 obsr1334267 S23359427 Traveling P22 EBIRD 110.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303767972 2015-03-17 20:09:21 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-03-17 16:13:00 obsr2426404 S22400813 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306703796 2022-03-05 22:03:50.715584 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-01 08:30:00 obsr2219590 S22625630 Traveling P22 EBIRD 135.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294177840 2021-04-28 05:26:15.958627 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-01-31 12:45:00 obsr1407710 S21616408 Traveling P22 EBIRD 45.0 0.805 2.0 1 G1130209 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317871239 2021-04-01 11:12:52.834774 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Greene US-NY-039 13.0 wildwing park catskill L749524 P 42.2294707 -73.8825417 2015-05-09 06:30:00 obsr2515158 S23344131 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310656579 2021-04-01 12:26:53.827486 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-04-17 12:27:00 obsr2512689 S22907324 Traveling P22 EBIRD 24.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296783672 2022-03-05 22:03:50.715584 26890 species avibase-94A44032 European Starling Sturnus vulgaris 18 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-14 08:00:00 obsr2219590 S21829867 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317019161 2020-11-12 13:33:47 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Broome US-NY-007 28.0 stewart trail park swamp L3620926 P 42.097299 -76.0002986 2015-05-06 14:00:00 obsr1947568 S23296129 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306804704 2021-03-30 19:25:27.212017 454 species avibase-15EE0D36 Eurasian Wigeon Mareca penelope 10 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-01 06:22:00 obsr396989 S22632787 Traveling P22 EBIRD_NJ 310.0 4.506 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288169469 2021-04-01 12:35:52.669792 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--Liverpool Marina L837889 H 43.1007479 -76.2093687 2015-01-01 08:35:00 obsr660214 S21114968 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307491686 2021-03-30 19:13:38.458673 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--South Marina L458871 H 43.3060838 -77.7083373 2015-04-02 13:42:00 obsr2173269 S22683225 Stationary P21 EBIRD 26.0 3.0 1 G1204284 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315485416 2021-03-19 16:44:35.607263 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-04-30 07:53:00 obsr334398 S23208828 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310090952 2021-03-26 07:30:35.289997 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-10 07:43:00 obsr2683910 S22868467 Traveling P22 EBIRD 46.0 0.483 2.0 1 G1219953 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309161343 2021-03-26 06:52:34.887371 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N 6 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-03-18 10:00:00 obsr2141910 S22804867 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308719209 2021-03-19 16:32:34.732091 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 2 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-04-09 13:00:00 obsr2078092 S22774158 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316880094 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 12:00:00 obsr2883698 S23288120 Traveling P22 EBIRD 75.0 2.012 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298227143 2021-03-23 16:39:03.255227 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Richmond US-NY-085 30.0 Arden Heights Woods L2480196 H 40.5585354 -74.1881711 2015-02-18 12:54:00 obsr1958124 S21958547 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316978181 2021-03-23 17:23:45.772216 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-07 18:30:00 obsr72341 S23293788 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298931402 2021-04-01 11:49:53.573686 11528 species avibase-F3DA111C Merlin Falco columbarius 13 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Restoration Pond L1396506 H 40.7531752 -73.7424416 2015-02-22 09:10:00 obsr676630 S22018778 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312620911 2015-04-24 18:39:07 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Washington US-NY-115 13.0 Little League Park, Granville L3587559 P 43.4109794 -73.2638994 2015-04-24 11:48:00 obsr1222746 S23036462 Traveling P22 EBIRD 12.0 0.563 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318184532 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-10 07:10:00 obsr2514491 S23360889 Traveling P22 EBIRD 106.0 3.219 4.0 1 G1262445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300555378 2021-04-01 11:30:42.037277 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 3 Unknown Sex, Adult (3) United States US New York US-NY New York US-NY-061 30.0 10034 New York L171669 PC 40.867027 -73.92021 2015-03-02 13:00:00 obsr1740835 S22145923 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319272800 2021-11-09 19:02:27.638861 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-05-13 07:00:00 obsr2700041 S23422373 Traveling P22 EBIRD 330.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316934081 2021-03-30 19:39:10.250398 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-05-03 09:00:00 obsr1494607 S23291253 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304167695 2021-03-26 07:19:24.261425 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 2 United States US New York US-NY Steuben US-NY-101 28.0 US-NY-Painted Post-3108 Knoll Rd L1826322 P 42.165969 -77.119302 2015-03-20 08:14:00 obsr2537623 S22432090 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291023274 2016-10-10 10:35:42 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 11 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 06:45:00 obsr613775 S21346525 Traveling P22 EBIRD 75.0 18.99 44.0 1 G1108327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307971609 2015-04-06 11:22:06 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 30 United States US New York US-NY Queens US-NY-081 US-NY_1722 Fort Tilden--Fishermans Parking Lot L1059216 H 40.5572434 -73.898989 2015-04-06 11:05:00 obsr2574755 S22717392 Traveling P22 EBIRD 16.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294631043 2021-04-01 11:30:42.037277 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 18 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-02 15:15:00 obsr1135516 S21652295 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307756922 2018-08-04 17:05:39 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk-Rupert Rd L3284385 P 42.539554 -73.854804 2015-04-05 15:18:00 obsr2214649 S22701584 Traveling P22 EBIRD 23.0 3.219 2.0 1 G1210514 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310402911 2021-03-23 17:00:13.087107 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Tompkins US-NY-109 28.0 US-NY-Freeville-298 Midline Rd L3566565 P 42.414564 -76.353111 2015-04-16 09:26:00 obsr2871406 S22889795 Traveling P22 EBIRD 16.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293177430 2021-04-01 12:32:15.282601 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Nickerson Beach L508149 H 40.5871823 -73.6024 2015-01-19 obsr2277801 S21537131 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320342473 2021-03-19 16:19:20.977326 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-16 14:00:00 obsr2096529 S23481478 Traveling P22 EBIRD 155.0 0.805 2.0 1 G1274011 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294339113 2018-05-01 09:05:03 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 1 Unknown Sex, Juvenile (1) United States US New York US-NY Chenango US-NY-017 28.0 535 Moran Rd, Oxford L2650908 P 42.3464446 -75.6593978 2015-01-01 10:05:00 obsr1303581 S21629230 Stationary P21 EBIRD 15.0 1.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289418019 2021-04-01 11:15:31.646886 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-05 15:15:00 obsr1382841 S21217503 Traveling P22 EBIRD 120.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291944601 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-01-19 08:30:00 obsr2207991 S21419637 Traveling P22 EBIRD 90.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326387103 2021-04-01 10:45:00.916278 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-05-24 16:15:00 obsr1513140 S23873358 Historical P62 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319416215 2021-04-01 11:15:31.646886 7200 species avibase-49D9148A Great Egret Ardea alba 15 United States US New York US-NY Kings US-NY-047 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L3640607 P 40.6155949 -73.8359737 2015-05-12 07:51:00 obsr454647 S23430536 Traveling P22 EBIRD 190.0 4.023 4.0 1 G1269800 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313755747 2021-04-01 12:18:57.910168 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-04-28 10:17:00 obsr1655171 S23106960 Traveling P22 EBIRD 13.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302903647 2021-04-01 12:24:14.132004 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Washington US-NY-115 13.0 Fort Miller, NY L2588693 P 43.1546669 -73.5772634 2015-03-13 09:34:00 obsr1222746 S22332500 Traveling P22 EBIRD 65.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305340824 2018-08-04 17:02:52 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 50 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-03-25 15:50:00 obsr983655 S22521430 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295414021 2021-04-01 11:54:40.172593 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Richmond US-NY-085 Midland Beach L468389 H 40.571686 -74.0854025 2015-02-07 11:13:00 obsr1893950 S21715131 Traveling P22 EBIRD 12.0 0.322 2.0 1 G1137892 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321929684 2021-03-19 16:44:35.607263 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-22 07:15:00 obsr2223307 S23575859 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295483545 2021-11-09 21:23:47.89824 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-07 13:30:00 obsr1624964 S21720815 Traveling P22 EBIRD 210.0 2.012 3.0 1 G1138770 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321826586 2018-08-04 17:28:19 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Erie US-NY-029 13.0 Delaware Park--Rumsey Woods L1348448 H 42.9307931 -78.8698229 2015-05-21 09:10:00 obsr319738 S23569050 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307099122 2021-11-09 19:39:26.116558 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Orange US-NY-071 28.0 Highland Lakes SP L150419 H 41.4865308 -74.3294181 2015-04-02 18:30:00 obsr365116 S22655021 Traveling P22 EBIRD 90.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316410881 2015-05-06 07:49:05 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Columbia US-NY-021 13.0 Glenco Mills L2428181 P 42.1436143 -73.742466 2015-05-05 18:30:00 obsr481595 S23261356 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314420475 2018-08-04 17:13:11 33216 species avibase-1F09CCCC Wilson's Warbler Cardellina pusilla 9 United States US New York US-NY Columbia US-NY-021 13.0 Toyota Dealership Grounds L3602639 P 42.3321821 -73.7037134 2015-04-30 15:00:00 obsr349211 S23147970 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320579651 2021-04-01 10:51:06.899622 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Swede Rd L3650508 P 42.0742045 -79.4414306 2015-05-17 09:00:00 obsr1380963 S23494007 Traveling P22 EBIRD 5.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312038454 2021-04-01 12:41:58.738824 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-04-22 07:21:00 obsr2173269 S22995776 Stationary P21 EBIRD 12.0 3.0 1 G1231214 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293810755 2015-02-04 20:18:55 6044 slash avibase-61EFA052 Greater/Lesser Yellowlegs Tringa melanoleuca/flavipes 3 United States US New York US-NY Tompkins US-NY-109 28.0 ***Fitzpatrick home L124872 P 42.42879 -76.395065 2015-01-28 08:15:00 obsr2124298 S21587364 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292742943 2021-03-26 06:21:54.883933 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 6 United States US New York US-NY Kings US-NY-047 30.0 86th St & 14th Avenue L3311681 P 40.6126819 -74.011867 2015-01-21 07:29:00 obsr1189028 S21502958 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313156857 2021-09-21 05:59:49.772911 23187 species avibase-ACB9D1C6 Purple Martin Progne subis 6 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-26 09:03:00 obsr2519357 S23069355 Traveling P22 EBIRD 260.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310310719 2021-03-26 08:14:57.071052 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-15 09:00:00 obsr1198912 S22883328 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316552908 2017-02-21 09:18:50 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Madison US-NY-053 13.0 Bush Rd., NY 31 to Oneida Lake L925356 H 43.1584863 -75.9301615 2015-05-05 10:10:00 obsr1167884 S23269680 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316998558 2020-12-14 15:56:49.243642 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Lewis US-NY-049 13.0 Location H L4611970 P 43.940282 -75.401446 2015-05-07 05:49:00 obsr417887 S23294951 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313079211 2021-03-26 07:30:35.289997 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca - 42.4487x-76.4594 - Apr 26, 2015, 9:13 AM L3591623 P 42.448744 -76.459388 2015-04-26 09:10:00 obsr2952480 S23064925 Traveling P22 EBIRD 78.0 1.609 4.0 1 G1243397 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303498516 2018-08-04 17:01:33 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 17 Female, Adult (8); Male, Adult (9) United States US New York US-NY Warren US-NY-113 13.0 Shermantown Rd. Portage Trail L960269 H 43.3064521 -73.6251848 2015-03-16 09:44:00 obsr1222746 S22380276 Traveling P22 EBIRD 29.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322743595 2015-06-02 17:49:59 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Sour Springs Rd. (Genesee Co.) L153399 H 43.125275 -78.37028 2015-05-25 08:50:00 obsr48167 S23623893 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310278759 2021-04-01 11:30:42.037277 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-15 07:00:00 obsr1220115 S22881074 Traveling P22 EBIRD 120.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308202702 2021-04-01 12:31:09.823741 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Livingston US-NY-051 13.0 Nations Rd. IBA--Huston Rd. L810213 H 42.8525297 -77.7958202 2015-04-07 08:08:00 obsr1060479 S22734564 Traveling P22 EBIRD 11.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311359028 2021-11-15 03:06:58.889978 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-17 09:15:00 obsr2303233 S22951381 Traveling P22 EBIRD 180.0 1.609 4.0 1 G1226609 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300162002 2018-08-04 16:58:15 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-02-26 08:00:00 obsr1160328 S22116880 Area P23 EBIRD 90.0 30.3514 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309490134 2015-04-12 17:35:47 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Oneida US-NY-065 13.0 Sterling Road L1778065 P 43.1613712 -75.7194806 2015-04-12 16:45:00 obsr545221 S22825692 Stationary P21 EBIRD 10.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318065604 2021-03-19 16:27:31.421791 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 3 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Sour Springs Rd. (Genesee Co.) L153399 H 43.125275 -78.37028 2015-05-10 09:14:00 obsr1097423 S23354875 Traveling P22 EBIRD 15.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304575535 2021-04-01 10:51:06.899622 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-08 16:28:00 obsr334398 S22462937 Traveling P22 EBIRD 164.0 1.931 2.0 1 G1188098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308803624 2018-08-04 17:08:16 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 6 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-09 17:30:00 obsr1174140 S22780440 Traveling P22 EBIRD 87.0 2.414 4.0 1 G1213014 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310094988 2021-03-23 16:48:08.60516 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-13 10:09:00 obsr2683910 S22868771 Traveling P22 EBIRD 29.0 0.805 2.0 1 G1220006 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288429665 2021-04-01 12:18:57.910168 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 23 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-01-01 12:15:00 obsr2001485 S21136551 Traveling P22 EBIRD 195.0 9.656 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310313348 2015-04-15 20:33:34 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Tioga US-NY-107 28.0 Spencer Lake Outlet & Leonard Rd. L3523760 P 42.2431333 -76.4939404 2015-04-15 17:45:00 obsr2430746 S22883499 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310342871 2019-07-24 17:36:25 6254 species avibase-FB4D08F0 Black-legged Kittiwake Rissa tridactyla 5 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr152435 S22885598 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313808336 2021-03-23 16:52:36.900075 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 4 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Pine Neck Sanctuary L122956 H 40.84111 -72.56528 2015-04-28 12:45:00 obsr1693806 S23110290 Traveling P22 EBIRD 40.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305859444 2021-05-10 13:35:55.973042 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 150 United States US New York US-NY Schuyler US-NY-097 13.0 Catharine Creek WMA--Rock Cabin Rd. L1359885 H 42.369661 -76.8471749 2015-03-25 18:53:00 obsr2173269 S22561132 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316123053 2021-04-01 11:15:31.646886 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 07:35:00 obsr1711339 S23244467 Traveling P22 EBIRD 391.0 6.437 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315242500 2021-03-19 16:44:35.607263 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-03 08:25:00 obsr1097423 S23196158 Traveling P22 EBIRD 137.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303701760 2021-03-26 07:30:35.289997 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 24 United States US New York US-NY Tompkins US-NY-109 13.0 Plantations Restaurant L592633 H 42.4667747 -76.4113913 2015-03-16 17:48:00 obsr1006348 S22395678 Stationary P21 EBIRD 55.0 3.0 1 G1183317 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313154470 2021-03-19 15:59:05.496822 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Allegany US-NY-003 28.0 Cuba Lake L1326387 H 42.2508599 -78.2923025 2015-04-26 12:24:00 obsr955789 S23069237 Traveling P22 EBIRD 57.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300869425 2021-03-26 07:46:52.994574 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-03-03 15:20:00 obsr2270510 S22169397 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315162282 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-05-02 15:50:00 obsr2072398 S23191479 Stationary P21 EBIRD 10.0 2.0 1 G1250419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307917800 2018-08-04 17:05:36 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Washington US-NY-115 13.0 River Rd., Ft. Miller L2742155 H 43.1343397 -73.5892952 2015-04-05 11:44:00 obsr1647272 S22713575 Traveling P22 EBIRD 57.0 2.736 2.0 1 G1207227 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291119825 2021-11-09 20:52:46.916672 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 5 United States US New York US-NY Rockland US-NY-087 30.0 Tallman Mountain SP L1250992 H 41.0262764 -73.9088058 2015-01-15 09:30:00 obsr473055 S21354576 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310949401 2021-04-01 11:30:42.037277 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-18 13:42:00 obsr961138 S22926332 Stationary P21 EBIRD 5.0 15.0 1 G1224250 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303817599 2021-03-26 06:21:54.883933 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Kings US-NY-047 30.0 Bergen Street, Brooklyn L3496233 P 40.6841779 -73.9831996 2015-03-13 15:00:00 obsr1623687 S22404795 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303735724 2015-03-17 17:14:09 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Steuben US-NY-101 28.0 1072 Slate Creek Rd, Canisteo NY 14823 L3372268 P 42.193444 -77.6792139 2015-03-12 10:30:00 obsr1669793 S22398305 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302896275 2021-03-26 06:17:19.712573 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 9 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2146060 H 42.756017 -78.862009 2015-03-13 11:32:00 obsr2756208 S22331911 Stationary P21 EBIRD 135.0 7.0 1 G1178676 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300234129 2021-04-01 11:15:31.646886 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-01 09:00:00 obsr1407710 S22122788 Traveling P22 EBIRD 120.0 1.609 2.0 1 G1163312 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309584117 2018-08-04 17:08:41 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 8 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-04-12 08:00:00 obsr1995798 S22832057 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296260051 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-12 10:15:00 obsr547602 S21781784 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301412881 2021-04-01 12:35:52.669792 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N X United States US New York US-NY Onondaga US-NY-067 13.0 Phoenix downriver--Onondaga County side L3284681 P 43.2292889 -76.3059282 2015-03-06 16:30:00 obsr1633923 S22211403 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307438416 2019-07-23 17:28:13 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Suffolk US-NY-103 30.0 Goldsmiths Inlet L138043 H 41.0541647 -72.4740449 2015-04-04 13:36:00 obsr2485753 S22679589 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320549083 2021-03-19 16:08:39.161312 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot--Lighthouse L404931 H 42.4929459 -79.3538404 2015-05-17 12:07:00 obsr916033 S23492114 Traveling P22 EBIRD 96.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292125429 2021-03-26 06:55:00.227271 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-01-20 12:38:00 obsr606693 S21434083 Traveling P22 EBIRD 14.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291645187 2018-08-04 16:53:57 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Suffolk US-NY-103 Town Harbor Rd End L1377158 P 41.0626839 -72.4125073 2015-01-18 12:12:00 obsr2485753 S21396910 Traveling P22 EBIRD 13.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305302145 2022-02-13 06:32:05.759346 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-03-25 10:20:00 obsr1318356 S22518526 Traveling P22 EBIRD 88.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305246764 2021-03-26 07:56:20.588749 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 5 United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-03-23 07:10:00 obsr1296638 S22514244 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302170655 2021-04-01 11:47:43.260314 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus N 1 United States US New York US-NY Oswego US-NY-075 13.0 Oswego River, Lock 6 L1883838 H 43.4443141 -76.4956891 2015-03-07 12:11:00 obsr2871406 S22269135 Traveling P22 EBIRD 12.0 0.161 4.0 1 G1168808 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316176805 2018-08-04 17:13:10 27616 species avibase-D77E4B41 American Robin Turdus migratorius 40 United States US New York US-NY Erie US-NY-029 13.0 Lake La Salle L3615693 P 43.004282 -78.7777019 2015-04-30 12:00:00 obsr2082724 S23247274 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316431891 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 34 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-06 05:55:00 obsr2512689 S23262558 Traveling P22 EBIRD 130.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320722104 2021-03-26 06:17:19.712573 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 2 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-05-17 obsr2096529 S23501577 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299102982 2021-03-23 17:22:05.708166 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-20 09:00:00 obsr316199 S22034725 Area P23 EBIRD 82.0 2.59 2.0 1 G1157021 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312318896 2021-04-01 11:30:42.037277 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-23 12:00:00 obsr2706811 S23014826 Traveling P22 EBIRD 60.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310375346 2019-07-24 17:38:53 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 120 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr1175815 S22887906 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS296912335 2021-03-26 06:52:34.887371 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Niagara US-NY-063 13.0 Home L292333 P 43.3264327 -78.7740913 2015-02-14 07:15:00 obsr2756208 S21841175 Stationary P21 EBIRD 540.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312611781 2021-04-01 10:49:39.496318 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-04-24 obsr1395007 S23035764 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317058224 2021-03-19 16:26:51.561076 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Franklin US-NY-033 14.0 Bellmont Center L496226 P 44.8417513 -74.1741943 2015-05-01 07:00:00 obsr2507995 S23298391 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297559663 2021-04-01 12:45:19.712958 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 44 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-16 12:00:00 obsr1732267 S21898919 Stationary P21 EBIRD 23.0 2.0 1 G1150452 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315358337 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 06:27:00 obsr41879 S23202004 Traveling P22 EBIRD 320.0 8.047 4.0 1 G1249270 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319500024 2020-03-15 09:14:53 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-12 17:25:00 obsr736608 S23435590 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319720234 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 8 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-14 15:00:00 obsr1731572 S23448072 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310163898 2021-03-24 19:27:13.077399 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-04-14 08:11:00 obsr1334267 S22873507 Traveling P22 EBIRD 47.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323679366 2021-04-01 11:24:19.637193 30494 species avibase-240E3390 House Sparrow Passer domesticus N 12 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-05-28 07:15:00 obsr1782363 S23685245 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1319228724 2022-01-15 16:45:45.070972 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 P C3 P Unknown Sex, Immature (1); Unknown Sex, Adult (1); Unknown Sex and Age (1) United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-12 07:53:00 obsr698943 S100799772 Traveling P22 EBIRD 232.0 4.828 2.0 1 G7719301 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307690070 2021-04-01 11:30:42.037277 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-05 09:09:00 obsr1649154 S22696899 Traveling P22 EBIRD 173.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1222187041 2021-08-22 08:10:11.814887 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-19 09:20:00 obsr2155450 S93573187 Traveling P22 EBIRD 55.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305395350 2021-03-24 20:21:40.993321 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-03-26 09:49:00 obsr354090 S22525870 Traveling P22 EBIRD 61.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301782334 2021-04-01 12:18:57.910168 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-08 14:00:00 obsr2001485 S22240106 Traveling P22 EBIRD 60.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309514519 2021-11-09 17:58:40.313796 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 3 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-04-12 09:00:00 obsr2700041 S22827403 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304398264 2021-04-01 11:30:42.037277 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 1 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-03-21 11:45:00 obsr1349960 S22449953 Traveling P22 EBIRD 124.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309391466 2021-03-24 19:48:44.880783 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-12 12:41:00 obsr1545618 S22819607 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322265047 2021-04-01 11:15:31.646886 245 species avibase-7A24F57F Ross's Goose Anser rossii 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:15:00 obsr1407710 S23596159 Traveling P22 EBIRD 420.0 8.047 20.0 1 G1285843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320090780 2021-03-26 06:11:29.8335 27616 species avibase-D77E4B41 American Robin Turdus migratorius 7 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-05-16 09:39:00 obsr34822 S23468743 Traveling P22 EBIRD 24.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308509527 2021-04-01 12:18:57.910168 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-03-27 09:55:00 obsr711169 S22757948 Traveling P22 EBIRD 46.0 1.207 4.0 1 G1211352 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302158446 2021-03-26 07:30:35.289997 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 400 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-10 07:46:00 obsr1655171 S22268163 Traveling P22 EBIRD 115.0 0.483 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305705397 2021-04-01 12:30:15.438381 6616 species avibase-7E022378 Common Loon Gavia immer N 3 United States US New York US-NY Herkimer US-NY-043 13.0 Murphy Road - Town of Manheim L620003 P 43.0523322 -74.8053932 2015-03-27 11:49:00 obsr2694889 S22549679 Traveling P22 EBIRD 6.0 3.219 4.0 1 G1194619 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311263817 2021-03-19 16:19:20.977326 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-19 08:20:00 obsr502830 S22945643 Traveling P22 EBIRD 245.0 2.414 3.0 1 G1226244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290537595 2021-11-09 22:28:59.791993 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Sullivan US-NY-105 US-NY_796 28.0 Mongaup Valley WMA Eagle Blind L1097151 H 41.553811 -74.7868538 2015-01-11 15:30:00 obsr1015200 S21307564 Stationary P21 EBIRD 300.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323278120 2021-04-01 11:15:31.646886 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-22 16:30:00 obsr1382841 S23658019 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304550599 2018-08-04 17:02:18 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Nassau US-NY-059 30.0 South Seaman Pond L476036 P 40.675691 -73.5145855 2015-03-21 13:25:00 obsr1160328 S22461234 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300025185 2021-04-01 12:14:19.266649 34699 spuh avibase-CFD25837 passerine sp. Passeriformes sp. 109 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-02-28 10:18:00 obsr2485753 S22105551 Traveling P22 EBIRD 86.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303865693 2021-03-26 06:52:34.887371 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Niagara US-NY-063 13.0 North Tonawanda - Home L663618 P 43.0210117 -78.8445854 2015-03-18 09:30:00 obsr1677969 S22408621 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309871054 2021-03-26 06:14:19.776945 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris N 4 United States US New York US-NY Columbia US-NY-021 14.0 Spencertown L2884205 P 42.3074669 -73.5266876 2015-04-13 10:00:00 obsr1901122 S22852869 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290554258 2021-04-01 11:47:43.260314 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 20 United States US New York US-NY Oswego US-NY-075 Oswego Harbor L247908 H 43.4658286 -76.5149873 2015-01-11 14:00:00 obsr643238 S21308778 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319483582 2021-07-16 08:50:26.943067 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Broome US-NY-007 28.0 9 Christopher St L2233863 P 42.0834292 -75.9096906 2015-05-13 06:45:00 obsr2194855 S23434564 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310962905 2021-04-01 11:54:40.172593 32757 species avibase-EF47E15D Boat-tailed Grackle Quiscalus major 1 United States US New York US-NY Richmond US-NY-085 US-NY_818 30.0 Bridge Creek, Western Ave. L880325 H 40.6324936 -74.1838624 2015-04-18 15:37:00 obsr1958124 S22927204 Stationary P21 EBIRD 5.0 3.0 1 G1224787 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299556920 2021-11-09 21:17:58.494129 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 8 United States US New York US-NY Ulster US-NY-111 28.0 Lippincott Rd., Wallkill L1097498 H 41.6194441 -74.1931401 2015-02-22 16:20:00 obsr1732267 S22069265 Stationary P21 EBIRD 30.0 17.0 1 G1159601 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293095342 2021-05-21 00:06:20.034424 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 33 United States US New York US-NY Richmond US-NY-085 Mt. Loretto Unique Area L293510 H 40.5072899 -74.2180324 2015-01-25 09:28:00 obsr1958124 S21530757 Traveling P22 EBIRD 45.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300245828 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-01 07:30:00 obsr2207991 S22123715 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304075460 2021-04-01 10:55:39.308231 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-03-19 15:49:00 obsr502830 S22425056 Traveling P22 EBIRD 61.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318356357 2021-04-01 11:30:42.037277 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park, Bow Bridge L3632730 P 40.77685 -73.97052 2015-05-10 09:15:00 obsr662550 S23370262 Traveling P22 EBIRD 140.0 3.058 7.0 1 G1263599 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311894975 2021-03-23 17:00:13.087107 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--office 248 L286682 P 42.4804061 -76.4510196 2015-04-21 09:00:00 obsr2001485 S22983038 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293927273 2021-03-26 06:39:43.334073 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-01-29 13:20:00 obsr856524 S21596673 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290478106 2015-01-11 17:34:30 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Washington US-NY-115 13.0 Osprey Nest Location L2747803 P 43.1894305 -73.5806121 2015-01-11 13:07:00 obsr1222746 S21302787 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305432457 2015-03-26 14:16:55 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Greene US-NY-039 13.0 Coxsackie Boat Launch L474746 H 42.3533746 -73.7957346 2015-03-26 14:05:00 obsr1181085 S22528790 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313764055 2022-02-17 14:32:23.002448 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-28 08:22:00 obsr1605975 S23107453 Traveling P22 EBIRD 184.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302687067 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-12 13:15:00 obsr2049647 S22316032 Traveling P22 EBIRD 105.0 0.805 14.0 1 G1176950 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313775437 2021-03-26 06:29:56.44369 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Monroe US-NY-055 13.0 Harwick Rd., Irondequoit (Varied Thrush 2015) L3592824 H 43.1740003 -77.5539672 2015-04-28 10:30:00 obsr2933610 S23108196 Stationary P21 EBIRD 106.0 2.0 1 G1241308 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312401592 2021-03-30 19:07:52.958398 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 17:30:00 obsr1807494 S23020573 Traveling P22 EBIRD 90.0 1.609 2.0 1 G1233184 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304672826 2017-03-04 12:45:31 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 200 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake, Vitale Park L637129 H 42.8342164 -77.7035522 2015-03-22 13:30:00 obsr1962379 S22470088 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295595477 2018-08-04 16:55:55 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 250 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-02-08 12:05:00 obsr1828453 S21729525 Stationary P21 EBIRD 5.0 3.0 1 G1138998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298317011 2021-03-26 07:53:57.664705 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 18 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-02-18 16:15:00 obsr1060479 S21966119 Stationary P21 EBIRD 61.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314244498 2021-01-22 17:57:39.822771 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY St. Lawrence US-NY-089 US-NY_775 13.0 Upper & Lower Lakes WMA--south access road L716515 H 44.5970529 -75.2325296 2015-04-29 17:20:00 obsr2056110 S23137414 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318423972 2015-05-10 23:06:07 7200 species avibase-49D9148A Great Egret Ardea alba 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-08 19:51:00 obsr1334267 S23373950 Traveling P22 EBIRD 22.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS331302710 2021-03-23 17:26:08.495143 337 species avibase-694C127A Mute Swan Cygnus olor N X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-02 09:30:00 obsr271871 S24230720 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291619133 2019-01-03 10:54:11 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-18 09:02:00 obsr2863596 S21394692 Traveling P22 EBIRD 36.0 0.402 2.0 1 G1114108 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314787248 2021-11-09 18:43:18.378649 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Upton Lake Christian School L3271185 P 41.833243 -73.7613273 2015-05-01 07:15:00 obsr2862523 S23170689 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294288491 2021-03-23 16:21:52.613913 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Ontario US-NY-069 13.0 Sand Rd and Taft Rd L2704149 P 42.8770627 -77.5047684 2015-01-31 15:40:00 obsr528918 S21625075 Traveling P22 EBIRD 105.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322136207 2021-03-26 07:56:20.588749 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-17 16:00:00 obsr2218212 S23589194 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308470001 2021-04-01 11:24:19.637193 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-07 07:20:00 obsr1782363 S22754736 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS360468403 2018-08-06 22:30:45 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY Broome US-NY-007 28.0 Murray Hill Rd., Vestal L4084232 P 42.0789385 -75.9577668 2015-05-21 14:00:00 obsr998593 S26406806 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321948012 2021-04-01 12:26:53.827486 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-05-22 11:45:00 obsr1154 S23577064 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298937142 2021-03-26 06:17:19.712573 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Erie US-NY-029 13.0 Majors Park L1745589 H 42.7481082 -78.6100658 2015-02-22 09:28:00 obsr916033 S22019276 Stationary P21 EBIRD 58.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292741125 2021-04-01 11:15:31.646886 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Kings US-NY-047 Gravesend Bay, southern parking lot L1847433 H 40.5972024 -74.0049123 2015-01-23 07:53:00 obsr1189028 S21502811 Traveling P22 EBIRD 36.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311175678 2021-03-26 07:43:12.52294 11371 species avibase-75600969 Northern Flicker Colaptes auratus X United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Armitage Road, fields and impoundments (Wayne Co.) L366214 H 43.0223451 -76.7845631 2015-04-11 18:06:00 obsr2700277 S22940281 Traveling P22 EBIRD 22.0 3.219 2.0 1 G1225652 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317145797 2021-11-09 18:13:28.75129 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N X United States US New York US-NY Dutchess US-NY-027 13.0 Southlands Farm L1303953 P 41.885298 -73.9129043 2015-04-11 08:45:00 obsr1339050 S23303161 Traveling P22 EBIRD 165.0 2.414 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293215409 2021-04-01 10:55:39.308231 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina X United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-01-25 11:41:00 obsr2588479 S21540147 Stationary P21 EBIRD 22.0 14.0 1 G1123069 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304039957 2021-03-24 20:33:47.533911 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-19 12:19:00 obsr2074043 S22422343 Traveling P22 EBIRD 50.0 1.448 1.0 1 G1185101 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321843245 2018-08-04 17:13:56 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-05-01 11:30:00 obsr2155111 S23569968 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304758813 2021-03-19 16:19:20.977326 242 species avibase-D3A260BC Snow Goose Anser caerulescens 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-03-22 09:55:00 obsr1079517 S22476390 Area P23 EBIRD 35.0 48.5623 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290381743 2018-08-04 16:53:07 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-01-11 11:02:00 obsr1165633 S21295062 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288867407 2021-11-09 17:44:58.165123 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Dutchess US-NY-027 13.0 Feeder/yard observations L1072689 P 41.8611874 -73.6756039 2015-01-03 13:30:00 obsr1917973 S21174636 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318745000 2019-01-07 15:36:30 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Canadaway Creek WMA L2266749 H 42.367272 -79.2358312 2015-05-11 17:43:00 obsr2497657 S23391773 Traveling P22 EBIRD 121.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324161083 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Triplets Br. area (btwn 77th-79th St. transv.) L4525727 H 40.779838 -73.9724077 2015-05-29 09:17:00 obsr1548221 S23718334 Traveling P22 EBIRD 9.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309553539 2021-03-30 19:29:33.633096 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 Female, Adult (1) United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-12 09:55:00 obsr2633969 S22830060 Traveling P22 EBIRD 95.0 2.0 3.0 1 G1217074 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301856819 2019-01-27 11:09:05 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-08 14:30:00 obsr143739 S22245782 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310994974 2015-04-18 17:26:00 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 4 United States US New York US-NY New York US-NY-061 30.0 Lower East Side, around my building L815807 P 40.7158811 -73.9877835 2015-04-17 17:10:00 obsr1758291 S22929166 Area P23 EBIRD 30.0 1.2141 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304195146 2021-03-30 19:39:10.250398 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-20 08:30:00 obsr525303 S22434492 Traveling P22 EBIRD 615.0 4.828 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312321128 2021-12-10 08:21:29.396662 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 5 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-04-23 10:07:00 obsr258431 S23014987 Traveling P22 EBIRD 240.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314292309 2015-04-30 10:15:00 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Monroe US-NY-055 13.0 Durand-Eastman Park--Horseshoe Rd. L1167931 H 43.2369181 -77.564064 2015-04-27 13:15:00 obsr2774009 S23140601 Traveling P22 EBIRD 50.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303355646 2021-03-19 16:27:31.421791 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 12 United States US New York US-NY Genesee US-NY-037 13.0 Genesee County Airport (GVQ) L2486434 H 43.0306505 -78.1733465 2015-03-15 10:00:00 obsr761467 S22368509 Traveling P22 EBIRD 60.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307711859 2021-03-30 19:13:38.458673 30494 species avibase-240E3390 House Sparrow Passer domesticus N 9 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-05 11:53:00 obsr613775 S22698315 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307308788 2015-04-04 19:34:16 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-03 18:19:00 obsr1092576 S22670097 Traveling P22 EBIRD 34.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314836829 2021-03-19 16:44:35.607263 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-01 06:01:00 obsr1410564 S23173778 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315678936 2021-03-19 16:27:31.421791 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 60 United States US New York US-NY Genesee US-NY-037 13.0 Francis Road, Batavia, NY L1421017 P 42.9423971 -78.1622197 2015-05-04 08:15:00 obsr393804 S23219463 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316138140 2021-03-30 19:13:38.458673 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-05-04 13:55:00 obsr528918 S23245072 Traveling P22 EBIRD 185.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288181419 2018-08-04 16:52:21 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 50 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-01-01 11:38:00 obsr749440 S21115898 Traveling P22 EBIRD 110.0 3.219 2.0 1 G1088165 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294586029 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 30 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-31 11:15:00 obsr1102914 S21648652 Traveling P22 EBIRD 205.0 4.828 12.0 1 G1132929 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294557536 2020-09-24 20:46:35 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-02 10:35:00 obsr934639 S21646466 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307175467 2021-11-09 00:38:34.069905 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 6 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-03-30 08:30:00 obsr2133003 S22660566 Traveling P22 EBIRD 150.0 2.414 9.0 1 G1202639 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321017955 2021-03-30 06:01:28.020715 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-17 09:10:00 obsr1104059 S23519724 Area P23 EBIRD 80.0 121.4057 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292947956 2021-03-24 20:33:47.533911 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-01-24 15:17:00 obsr1696616 S21519247 Stationary P21 EBIRD 29.0 2.0 1 G1121223 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311085895 2021-03-26 07:52:40.224846 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-04-18 17:30:00 obsr1708031 S22935038 Stationary P21 EBIRD 110.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320535064 2020-03-15 09:14:53 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-17 09:13:00 obsr502830 S23491606 Traveling P22 EBIRD 244.0 2.414 2.0 1 G1274998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323948889 2015-06-02 17:49:59 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Sour Springs Rd. (Genesee Co.) L153399 H 43.125275 -78.37028 2015-05-30 09:23:00 obsr1092576 S23705041 Traveling P22 EBIRD 25.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323396431 2021-11-09 19:19:19.10935 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Dutchess US-NY-027 13.0 Ferncliff Forest L912597 H 41.9581817 -73.9246845 2015-05-06 07:00:00 obsr1339050 S23665856 Traveling P22 EBIRD 300.0 4.828 17.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300132131 2021-03-26 08:14:57.071052 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 4 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-02-28 07:30:00 obsr2918150 S22114608 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302881469 2015-12-15 11:54:29 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Wyoming US-NY-121 28.0 Beaver Meadow Audubon Center L160586 H 42.6730027 -78.3831251 2015-03-13 13:50:00 obsr558077 S22330759 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314110273 2021-03-23 16:21:52.613913 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-04-29 12:38:00 obsr606693 S23129107 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309851918 2015-04-13 20:45:47 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-12 09:00:00 obsr1736113 S22851399 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313170988 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-26 09:30:00 obsr2207991 S23070224 Traveling P22 EBIRD 150.0 3.219 35.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320493947 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-17 07:00:00 obsr1731572 S23489551 Traveling P22 EBIRD 420.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304855535 2020-05-13 10:59:24 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Oswego US-NY-075 US-NY-Pulaski-3256 County Rte 15 L3508939 P 43.631669 -76.188137 2015-03-23 10:32:00 obsr1351949 S22483434 Stationary P21 EBIRD 28.0 1.0 1 G5326544 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321705712 2021-04-01 11:15:31.646886 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-21 07:00:00 obsr827632 S23561682 Traveling P22 EBIRD 315.0 8.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288763836 2022-02-21 17:36:30.557554 616 species avibase-25C94A8F Greater Scaup Aythya marila N 17 United States US New York US-NY New York US-NY-061 30.0 Greenwich Village (14th St.-Houston St.; Broadway-Hudson River) L3238737 H 40.7342063 -74.0027145 2015-01-03 08:25:00 obsr1893950 S21164072 Traveling P22 EBIRD 115.0 0.805 2.0 1 G1093021 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314741633 2018-08-04 17:13:16 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Clinton US-NY-019 13.0 Point Au Roche SP L488947 H 44.7750114 -73.395195 2015-05-01 08:45:00 obsr1186840 S23167803 Traveling P22 EBIRD 200.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303567460 2015-03-16 18:08:08 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 22 United States US New York US-NY Schoharie US-NY-095 28.0 Golding baseball field L871126 P 42.6785864 -74.502368 2015-03-16 16:45:00 obsr119187 S22385440 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320705555 2021-03-19 16:19:20.977326 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Erie US-NY-029 13.0 Evangola SP L300496 H 42.6085236 -79.1111807 2015-05-17 14:51:00 obsr916033 S23500720 Stationary P21 EBIRD 306.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303205540 2021-03-26 07:07:10.758746 6580 species avibase-88AB027C Black Skimmer Rynchops niger 18 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-03-15 08:03:00 obsr1958124 S22356330 Traveling P22 EBIRD 7.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304178239 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 1 United States US New York US-NY Monroe US-NY-055 13.0 My yard, Brighton L421505 P 43.1258223 -77.5576454 2015-03-19 09:00:00 obsr2220829 S22433020 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321912491 2022-02-27 09:35:49.066489 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-05-22 09:07:00 obsr1042912 S23574983 Traveling P22 EBIRD 63.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305027854 2018-08-04 17:02:42 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Broome US-NY-007 28.0 Confluence Park L2473323 H 42.092993 -75.9161154 2015-03-23 17:30:00 obsr317968 S22497328 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298968454 2021-11-09 22:33:06.548946 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Sullivan US-NY-105 28.0 Smith Road Rayano feeders L1345731 P 41.8702457 -74.6953253 2015-02-22 10:45:00 obsr444155 S22021704 Stationary P21 EBIRD 15.0 2.0 1 G1156253 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293371219 2021-03-24 19:57:24.612804 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-01-25 09:30:00 obsr2313260 S21551982 Traveling P22 EBIRD 150.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318598299 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-10 09:05:00 obsr150415 S23383427 Traveling P22 EBIRD 180.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308118844 2022-03-05 22:03:50.715584 23291 species avibase-58C502EA Barn Swallow Hirundo rustica N X United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-06 09:00:00 obsr2219590 S22727866 Traveling P22 EBIRD 135.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307255569 2021-03-24 20:23:39.258075 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 PI--Route 14 L985269 P 41.1889248 -72.1641684 2015-04-03 08:29:00 obsr2485753 S22666136 Rusty Blackbird Spring Migration Blitz P41 EBIRD 43.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316682758 2021-03-26 07:56:20.588749 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 6 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-06 08:30:00 obsr1200152 S23277219 Traveling P22 EBIRD 135.0 1.609 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313678294 2021-03-24 19:24:40.212356 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 16:02:00 obsr2937317 S23101950 Stationary P21 EBIRD 75.0 3.0 1 G1240632 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313733389 2021-03-23 16:47:03.540174 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-28 08:05:00 obsr1918430 S23105547 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293521662 2021-11-28 19:14:22.380061 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-01-24 11:03:00 obsr564905 S21564636 Traveling P22 EBIRD 262.0 0.805 4.0 1 G1126991 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314023561 2021-03-19 16:06:54.047432 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Owasco Lake inlet area L302042 H 42.7542393 -76.4637132 2015-04-29 09:51:00 obsr943683 S23123915 Traveling P22 EBIRD 66.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324462452 2015-06-01 15:09:47 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Monroe US-NY-055 13.0 Cook Rd. (Hamlin) L651731 P 43.3592912 -77.9797983 2015-05-30 10:45:00 obsr34861 S23737683 Stationary P21 EBIRD 35.0 10.0 1 G1299105 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314301084 2018-08-04 17:13:08 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-30 09:10:00 obsr1527551 S23141130 Traveling P22 EBIRD 98.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307690093 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-05 09:09:00 obsr1649154 S22696899 Traveling P22 EBIRD 173.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317243500 2021-04-01 11:30:42.037277 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-07 07:29:00 obsr363953 S23308410 Traveling P22 EBIRD 300.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312606561 2021-03-30 19:29:33.633096 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2798 30.0 Sagaponack Pond L385871 H 40.9084531 -72.2891808 2015-04-24 16:00:00 obsr1864342 S23035393 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323679374 2021-04-01 11:24:19.637193 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-05-28 07:15:00 obsr1782363 S23685245 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306447025 2021-03-26 07:30:35.289997 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 900 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-03-24 18:25:00 obsr1318356 S22605754 Traveling P22 EBIRD 75.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295822026 2015-03-12 16:06:17 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo -- Farm Complex (Restricted Access) L3349700 P 40.85146 -73.87232 2015-02-09 15:20:00 obsr128156 S21746776 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294866330 2019-01-03 10:54:11 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Shinnecock Inlet, west L3087424 H 40.8421473 -72.4781388 2015-01-11 09:00:00 obsr128156 S21671662 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314700327 2021-03-26 06:29:56.44369 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-05-01 15:10:00 obsr934639 S23165237 Traveling P22 EBIRD 80.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310102150 2021-03-26 06:39:43.334073 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-14 12:30:00 obsr139757 S22869253 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310745184 2021-01-10 16:39:54.759182 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Warren US-NY-113 13.0 Pine View Cemetery, Queensbury L2128813 H 43.3335429 -73.6702341 2015-04-17 12:34:00 obsr1222746 S22913281 Traveling P22 EBIRD 20.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318676559 2021-04-01 11:15:31.646886 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:30:00 obsr454647 S23387795 Traveling P22 EBIRD 300.0 3.0 6.0 1 G1265613 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322557744 2018-08-06 22:31:00 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-24 07:40:00 obsr2364166 S23612760 Traveling P22 EBIRD 110.0 1.609 2.0 1 G1287604 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319779382 2021-04-01 11:15:31.646886 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 18 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-15 05:13:00 obsr1189028 S23451699 Traveling P22 EBIRD 193.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288875271 2018-08-04 16:52:40 7261 species avibase-86D45B8F Green Heron Butorides virescens 27 United States US New York US-NY Nassau US-NY-059 30.0 Tackapausha Museum and Preserve L617756 H 40.6685464 -73.482399 2015-01-03 14:45:00 obsr1160328 S21175308 Stationary P21 EBIRD 5.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310090904 2021-03-26 06:17:19.712573 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 4 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-04-14 07:48:00 obsr2071643 S22868463 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315667967 2021-04-01 11:15:31.646886 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 06:40:00 obsr2519357 S23218852 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312511887 2015-04-24 11:21:51 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Tioga US-NY-107 28.0 Lake Rd. migrant swale, Spencer L2319941 P 42.239412 -76.493246 2015-04-24 07:13:00 obsr1828453 S23028041 Stationary P21 EBIRD 4.0 2.0 1 G1233730 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310068458 2016-01-27 10:57:21 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Jefferson US-NY-045 13.0 Black River Fishing site L2127803 P 43.9789116 -75.8680201 2015-04-14 15:00:00 obsr2091520 S22866867 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300421392 2019-03-04 17:55:09 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-03-01 14:00:00 obsr1918430 S22136519 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303465043 2022-02-18 10:47:29.953615 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 209 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-16 08:39:00 obsr1062070 S22377181 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315566575 2021-03-26 06:39:43.334073 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-03 07:50:00 obsr856524 S23213141 Stationary P21 EBIRD 65.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317139808 2021-11-15 03:06:58.889978 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 09:15:00 obsr585997 S23302885 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318175192 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-10 08:15:00 obsr369788 S23360340 Traveling P22 EBIRD 240.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310941939 2021-03-24 20:57:12.785944 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Chenango US-NY-017 28.0 Smith Kingsman Rd. wetlands L3082117 H 42.458897 -75.855804 2015-04-18 09:46:00 obsr2211210 S22925789 Stationary P21 EBIRD 18.0 2.0 1 G1224244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304645265 2018-08-04 17:02:28 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 300 United States US New York US-NY Rensselaer US-NY-083 13.0 Riverfront Park, Troy L1004473 H 42.7332183 -73.6906502 2015-03-22 14:36:00 obsr2319580 S22467901 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304369156 2021-04-01 10:51:06.899622 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Town of Busti L2076554 P 42.0197126 -79.3120193 2015-03-21 09:00:00 obsr2910282 S22447776 Traveling P22 EBIRD 75.0 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000194 2021-03-26 07:56:20.588749 6616 species avibase-7E022378 Common Loon Gavia immer 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-01 09:00:00 obsr2218212 S23775898 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306788891 2018-08-04 17:04:59 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 5 United States US New York US-NY Wayne US-NY-117 13.0 Quaker Rd., farm and pond L872851 H 43.0867239 -77.3692203 2015-04-01 17:30:00 obsr749440 S22631700 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296681493 2015-02-17 07:24:27 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Hayground Cove L2729767 P 40.9204971 -72.3404914 2015-02-14 09:30:00 obsr1864342 S21820426 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314224605 2021-03-26 07:20:31.408164 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Suffolk US-NY-103 30.0 Stony Brook University L2350778 H 40.9146933 -73.1215687 2015-04-24 06:54:00 obsr758734 S23136165 Traveling P22 EBIRD 46.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290700026 2021-03-26 06:29:56.44369 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-12 15:20:00 obsr934639 S21320773 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313487277 2021-04-01 11:30:42.037277 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 06:30:00 obsr2598985 S23090069 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921646 2021-03-30 19:39:10.250398 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 10 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-17 16:00:00 obsr2218212 S22173330 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289053992 2021-03-30 19:29:33.633096 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 10 United States US New York US-NY Suffolk US-NY-103 30.0 Orowoc Lake, Islip L1864121 H 40.7292598 -73.2249385 2015-01-01 12:05:00 obsr564905 S21189012 Stationary P21 EBIRD 10.0 2.0 1 G1095444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290366484 2021-03-26 06:59:15.841579 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 14 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-01-04 07:45:00 obsr2409011 S21293756 Stationary P21 EBIRD 540.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291742159 2018-08-04 16:53:56 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-01-18 11:00:00 obsr241086 S21404120 Stationary P21 EBIRD 15.0 7.0 1 G1114102 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321950258 2018-08-06 22:30:49 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 7 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-22 08:20:00 obsr1830659 S23577201 Traveling P22 EBIRD 210.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313802750 2021-03-30 19:43:32.881136 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Westchester US-NY-119 30.0 Tibbetts Brook Park L293496 H 40.9240387 -73.8786568 2015-04-24 16:25:00 obsr1348614 S23109907 Traveling P22 EBIRD 102.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315409285 2021-03-26 07:56:20.588749 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 20 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-03 08:45:00 obsr247620 S23204675 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302647898 2021-12-03 21:50:44.732892 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-03-12 08:05:00 obsr564905 S22313285 Traveling P22 EBIRD 60.0 0.483 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291549907 2021-04-01 12:39:55.985714 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 5 United States US New York US-NY Rensselaer US-NY-083 13.0 US-NY-East Greenbush-341 Waters Rd L2438595 P 42.598296 -73.68364 2015-01-17 07:30:00 obsr712039 S21389419 Stationary P21 EBIRD 120.0 2.0 1 G1112727 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293194180 2018-08-04 16:54:55 32955 species avibase-41062654 Northern Parula Setophaga americana 16 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L3295726 P 42.479649 -76.451422 2015-01-23 13:00:00 obsr1337162 S21538513 Traveling P22 EBIRD 90.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290365019 2021-03-26 06:59:15.841579 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum N 2 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-01-02 12:10:00 obsr2409011 S21293632 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311017708 2021-03-30 19:43:32.881136 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Westchester US-NY-119 30.0 Tarrytown Lakes Park L302456 H 41.0829631 -73.8426401 2015-04-18 16:07:00 obsr1055148 S22930582 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312044955 2015-04-22 11:25:17 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 7 United States US New York US-NY Westchester US-NY-119 30.0 Pound Ridge L3580431 P 41.2167496 -73.5341549 2015-04-22 06:20:00 obsr1892759 S22994105 Traveling P22 EBIRD 600.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319267544 2021-03-26 07:53:57.664705 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Livingston US-NY-051 13.0 Groveland, NY L2623278 P 42.7113986 -77.7185619 2015-05-09 09:40:00 obsr1743566 S23422089 Stationary P21 EBIRD 200.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293367074 2021-03-23 16:39:03.255227 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-26 12:05:00 obsr1958124 S21551655 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310966811 2021-03-31 08:21:38.875049 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Richmond US-NY-085 Chelsea Rd. and Bloomfield Ave., wetlands L958539 H 40.6130955 -74.187672 2015-04-18 15:53:00 obsr1958124 S22927461 Stationary P21 EBIRD 5.0 3.0 1 G1224785 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293129604 2021-04-01 10:45:00.916278 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 20 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-01-25 09:01:00 obsr1668936 S21533469 Traveling P22 EBIRD 247.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316161033 2021-03-19 16:44:35.607263 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Manitou Beach Preserve L2105165 H 43.3211034 -77.7145064 2015-05-05 09:10:00 obsr2504709 S23246396 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306916473 2018-08-04 17:05:03 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Oneida US-NY-065 13.0 Oneida Lake at Oneida Creek L1602079 P 43.1659026 -75.7396389 2015-04-02 10:19:00 obsr2950436 S22641080 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332425806 2021-03-26 06:29:56.44369 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-09 17:44:00 obsr334398 S24314315 Stationary P21 EBIRD 46.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314071497 2021-11-09 18:42:19.628792 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-04-29 10:00:00 obsr1917973 S23126751 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319682771 2021-03-22 08:58:29.008072 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-14 15:55:00 obsr2277801 S23445882 Historical P62 EBIRD 35.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317264227 2018-08-06 22:29:11 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. X United States US New York US-NY Broome US-NY-007 28.0 Nuthatch Hollow Nature Preserve L199978 H 42.0810666 -75.9852703 2015-05-08 07:35:00 obsr1044068 S23309596 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320501918 2021-11-15 03:06:58.889978 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 06:41:00 obsr2729727 S23489988 Traveling P22 EBIRD 180.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292514093 2021-03-30 19:29:33.633096 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Suffolk US-NY-103 30.0 Hook Pond L283133 H 40.9461611 -72.1907833 2015-01-21 12:30:00 obsr1160328 S21485128 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300047833 2021-03-31 08:21:38.875049 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Richmond US-NY-085 Chelsea Rd. and Bloomfield Ave., wetlands L958539 H 40.6130955 -74.187672 2015-02-28 12:24:00 obsr1958124 S22107300 Stationary P21 EBIRD 2.0 2.0 1 G1161945 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312240371 2021-03-23 16:30:20.514143 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 1 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-03-03 obsr2409011 S23009684 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324003415 2018-08-06 22:31:28 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Durand-Eastman Park--Zoo Rd. L139792 H 43.2279443 -77.557404 2015-05-30 10:25:00 obsr1243175 S23708201 Traveling P22 EBIRD 75.0 0.805 3.0 1 G1296126 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304315049 2021-03-30 19:39:10.250398 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 12 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-20 08:25:00 obsr2172113 S22443671 Traveling P22 EBIRD 110.0 4.828 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308874127 2018-08-04 17:08:22 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Trumansburg-1679 Taughannock Blvd L3498255 P 42.540727 -76.592098 2015-04-10 14:12:00 obsr1562696 S22785267 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297822555 2021-03-30 06:01:28.020715 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-16 17:37:00 obsr1318356 S21923745 Traveling P22 EBIRD 34.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302827016 2018-01-07 20:13:45 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-03-13 07:26:00 obsr2420101 S22326590 Stationary P21 EBIRD 10.0 2.0 1 G1177711 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313315998 2021-12-27 20:39:04.096623 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-04-26 12:00:00 obsr479109 S23079012 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301814627 2018-08-04 16:59:05 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-08 14:03:00 obsr241086 S22242600 Stationary P21 EBIRD 60.0 11.0 1 G1170855 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316808555 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-07 05:55:00 obsr2512689 S23284359 Traveling P22 EBIRD 65.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316240406 2021-03-23 17:23:45.772216 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3616116 P 42.693501 -77.711644 2015-05-05 16:44:00 obsr682121 S23251968 Stationary P21 EBIRD 161.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290387888 2021-04-01 11:15:31.646886 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-11 07:00:00 obsr1659461 S21295577 Traveling P22 EBIRD 180.0 1.609 2.0 1 G1105013 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315895465 2021-04-01 11:15:31.646886 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-04 15:42:00 obsr150415 S23231274 Traveling P22 EBIRD 73.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290003185 2021-04-01 11:47:43.260314 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Oswego US-NY-075 13.0 Indian Point L811112 H 43.3357446 -76.4155984 2015-01-09 12:15:00 obsr979921 S21264142 Stationary P21 EBIRD 16.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291482375 2021-03-30 06:01:28.020715 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_858 30.0 Pussys Pond L1052897 H 41.0201167 -72.1555719 2015-01-17 01:35:00 obsr2159121 S21384001 Traveling P22 EBIRD 30.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322282793 2022-02-21 13:41:55.027797 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY New York US-NY-061 30.0 Fort Tryon Park L591127 H 40.8629374 -73.9327457 2015-05-23 08:00:00 obsr781996 S23597071 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309032667 2021-04-01 12:18:57.910168 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm hawk watch L123521 P 42.3457336 -76.298584 2015-04-11 09:07:00 obsr455249 S22796696 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307577372 2015-04-04 21:33:46 32953 species avibase-D00EC2C9 Cerulean Warbler Setophaga cerulea 1 United States US New York US-NY Suffolk US-NY-103 30.0 County Road 105 Bridge L1398145 P 40.9173798 -72.6388002 2015-04-01 09:30:00 obsr2528068 S22689274 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295043833 2021-04-01 12:14:19.266649 303 species avibase-B59E1863 Canada Goose Branta canadensis 17 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-02-05 10:30:00 obsr706483 S21686917 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297561912 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 20 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-16 11:35:00 obsr2793388 S21899130 Traveling P22 EBIRD 55.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288199834 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--22nd-29th St. L1392119 H 40.7512103 -74.0085463 2015-01-01 11:15:00 obsr924076 S21117492 Traveling P22 EBIRD 71.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295760647 2021-04-01 11:15:31.646886 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-09 08:00:00 obsr454647 S21742077 Traveling P22 EBIRD 90.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319388668 2021-11-09 18:23:09.854169 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1522533 P 41.732801 -73.8753483 2015-05-13 08:00:00 obsr1339050 S23428927 Traveling P22 EBIRD 240.0 2.414 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321421804 2022-02-17 14:32:23.002448 6339 species avibase-8535345B Herring Gull Larus argentatus 32 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-20 07:55:00 obsr1605975 S23544452 Traveling P22 EBIRD 71.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288987924 2018-08-04 16:52:43 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 51 United States US New York US-NY Essex US-NY-031 13.0 Port Henry Pier L478351 H 44.0499664 -73.4508991 2015-01-04 11:14:00 obsr822321 S21183857 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317500022 2021-03-30 19:13:38.458673 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-09 06:03:00 obsr1545618 S23324158 Traveling P22 EBIRD 146.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292718855 2021-03-26 07:52:59.845315 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 4 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-22 09:25:00 obsr1000124 S21501108 Area P23 EBIRD 100.0 2.59 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315633888 2021-11-09 21:31:40.022074 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Ulster US-NY-111 13.0 Lower James Street L1431696 P 41.8462322 -74.0731222 2015-03-07 09:05:00 obsr658445 S23216928 Traveling P22 EBIRD 45.0 0.805 7.0 1 G1168971 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316064872 2021-03-26 06:29:56.44369 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-04 07:50:00 obsr2966702 S23241346 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292768145 2015-02-02 07:49:52 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Albany US-NY-001 13.0 Center Island, Green Island L2466715 P 42.7388935 -73.6897029 2015-01-23 10:30:00 obsr777630 S21504913 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304442989 2017-08-16 16:53:19 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Schuyler US-NY-097 13.0 Trumansburg, 5618-5750 New York 79 L3503627 P 42.45661 -76.7347 2015-03-21 15:29:00 obsr1092576 S22453006 Incidental P20 EBIRD 1.0 0 G1187077 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313764049 2022-02-17 14:32:23.002448 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 700 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-28 08:22:00 obsr1605975 S23107453 Traveling P22 EBIRD 184.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295620411 2021-04-01 12:45:19.712958 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) X United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-02-08 13:00:00 obsr2207991 S21731642 Traveling P22 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305310154 2018-08-04 17:02:52 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Saratoga US-NY-091 13.0 Arrowhead Casino Archaeological Preserve L1941049 P 43.040728 -73.7384963 2015-03-25 13:40:00 obsr907769 S22519150 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298468050 2021-03-19 16:19:20.977326 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 H C2 H Unknown Sex and Age (1) United States US New York US-NY Erie US-NY-029 13.0 31 Cherrywood Drive L3400722 P 43.0065929 -78.7451077 2015-02-15 10:00:00 obsr2645885 S21979870 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322311101 2021-03-30 19:07:52.958398 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:30:00 obsr1077730 S23598694 Traveling P22 EBIRD 645.0 8.047 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291934359 2015-01-19 14:37:53 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Richmond US-NY-085 30.0 Mariners Marsh L391227 H 40.638772 -74.1753101 2015-01-19 10:46:00 obsr1893950 S21418791 Traveling P22 EBIRD 31.0 0.966 3.0 1 G1115747 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321089509 2021-03-26 06:21:54.883933 11371 species avibase-75600969 Northern Flicker Colaptes auratus 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-18 06:54:00 obsr2152799 S23523712 Traveling P22 EBIRD 220.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295602551 2022-02-17 14:32:23.002448 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-08 13:00:00 obsr2499879 S21730127 Traveling P22 EBIRD 135.0 3.219 2.0 0 G1139370 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308055806 2018-08-04 17:05:40 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Washington US-NY-115 13.0 Ft. Miller (hamlet) L199770 H 43.1618045 -73.5779071 2015-04-05 18:10:00 obsr2533499 S22722988 Traveling P22 EBIRD 30.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300152844 2021-03-26 07:17:57.136956 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY Seneca US-NY-099 13.0 Sheldrake Point L99384 H 42.6658357 -76.6997626 2015-02-28 08:55:00 obsr2683910 S22116216 Stationary P21 EBIRD 5.0 2.0 1 G1162600 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314118716 2021-04-01 11:15:31.646886 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-29 08:35:00 obsr827632 S23129593 Traveling P22 EBIRD 130.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309312793 2021-03-26 07:30:35.289997 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-04-12 08:11:00 obsr2211210 S22814862 Stationary P21 EBIRD 18.0 1.0 1 G1215802 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310091521 2019-10-01 15:53:27 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 7 United States US New York US-NY Tompkins US-NY-109 28.0 Jim Schug Trail--Weber to Keith including Dryden Pond L520931 H 42.4769082 -76.2953818 2015-04-11 07:06:00 obsr2683910 S22868511 Stationary P21 EBIRD 2.0 2.0 1 G1219958 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298429280 2021-04-01 12:32:15.282601 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-18 08:00:00 obsr2207991 S21976440 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295531961 2018-08-04 16:55:53 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Aurora-1849 Honoco Rd L3346401 P 42.709315 -76.702003 2015-02-08 09:42:00 obsr1092576 S21724712 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1138935 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291615667 2021-12-10 08:21:29.396662 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-01-10 09:50:00 obsr1502560 S21394360 Traveling P22 EBIRD 105.0 3.219 28.0 1 G1103906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305258910 2021-03-24 05:37:45.927792 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-03-25 10:40:00 obsr2071643 S22515194 Traveling P22 EBIRD 750.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321902679 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-22 05:58:00 obsr1189028 S23574372 Traveling P22 EBIRD 154.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294569452 2021-03-26 06:53:58.593564 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Oneida US-NY-065 13.0 Belle Avenue, Utica, NY Yard / Feeders L1957437 P 43.0891137 -75.2091622 2015-02-02 10:30:00 obsr1066808 S21647339 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320384032 2021-03-26 06:29:56.44369 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Monroe US-NY-055 13.0 Ellison Park L392124 H 43.1491253 -77.5175571 2015-05-16 16:30:00 obsr1962295 S23483614 Traveling P22 EBIRD 30.0 0.805 2.0 1 G1274184 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313236402 2021-03-26 06:21:08.096334 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 3 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-04-26 11:00:00 obsr1302604 S23074030 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296811489 2021-03-30 19:07:52.958398 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-14 12:10:00 obsr876649 S21832286 Traveling P22 EBIRD 95.0 2.414 2.0 1 G1145873 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295597139 2021-03-23 17:00:13.087107 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 6 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Ecology House L550854 H 42.4584285 -76.4832383 2015-02-08 10:00:00 obsr2673845 S21729674 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307460864 2021-11-09 21:57:30.418465 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 20 United States US New York US-NY Ulster US-NY-111 13.0 Sturgeon Pool L3537960 H 41.8440855 -74.0424281 2015-04-04 10:00:00 obsr610423 S22681046 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298697269 2021-04-01 11:47:43.260314 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-02-15 12:00:00 obsr780726 S21999547 Stationary P21 EBIRD 60.0 2.0 1 G1154638 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319545189 2018-08-04 17:27:10 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-05-14 09:27:00 obsr1201479 S23438174 Traveling P22 EBIRD 158.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308143292 2021-03-26 06:14:19.776945 303 species avibase-B59E1863 Canada Goose Branta canadensis 9 United States US New York US-NY Columbia US-NY-021 14.0 rt 7 w.copake L226319 P 42.1065155 -73.5936478 2015-04-05 14:05:00 obsr1225900 S22729632 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312361930 2021-03-30 19:22:51.561415 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 5 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-23 13:43:00 obsr2906952 S23017767 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS360465256 2018-08-06 22:30:12 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Basset Rd. L2419301 P 42.4060744 -75.9718645 2015-05-16 12:15:00 obsr246469 S26406571 Stationary P21 EBIRD 30.0 2.0 1 G1508798 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302178880 2021-03-26 06:21:54.883933 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 1 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-03-10 10:50:00 obsr2906952 S22270054 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307792426 2021-03-24 19:27:13.077399 406 species avibase-27B2749A Wood Duck Aix sponsa 3 United States US New York US-NY Chemung US-NY-015 28.0 Big Flats Trail East L328819 P 42.1470204 -76.9021695 2015-04-04 09:05:00 obsr1587816 S22704274 Traveling P22 EBIRD 95.0 2.414 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290057098 2021-03-23 16:39:03.255227 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-01-09 15:15:00 obsr1032565 S21268556 Traveling P22 EBIRD 65.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS478794341 2017-03-26 10:46:36 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Essex US-NY-031 13.0 Westport L4995859 P 44.1846948 -73.4327352 2015-05-09 13:54:00 obsr2664629 S35439281 Historical P62 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306898699 2015-05-04 14:55:07 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-02 07:00:00 obsr2313260 S22639607 Traveling P22 EBIRD 125.0 1.609 12.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316134999 2018-08-04 17:14:51 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 7 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-05 09:00:00 obsr1079517 S23245079 Area P23 EBIRD 35.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313489800 2015-04-29 11:48:09 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Madison US-NY-053 28.0 Backyard Feeders L1106615 P 42.8417296 -75.7263565 2015-04-09 10:30:00 obsr2240720 S23090216 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305387784 2021-03-26 06:07:45.516082 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 8 S7 C3 S7 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-03-26 09:40:00 obsr128156 S22525304 Rusty Blackbird Spring Migration Blitz P41 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291450180 2021-03-23 16:39:03.255227 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 18 United States US New York US-NY Richmond US-NY-085 30.0 Huguenot Ave. Beach L2035653 H 40.5200028 -74.1832461 2015-01-17 11:16:00 obsr1958124 S21381389 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297522073 2015-03-03 10:02:11 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-02-16 08:00:00 obsr1792012 S21895560 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288500989 2021-03-30 19:13:38.458673 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-01-02 14:07:00 obsr2595828 S21142576 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299967655 2021-03-24 20:57:48.241391 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Fulton US-NY-035 13.0 johnstown feeder L3283271 P 43.006891 -74.3719697 2015-02-27 15:15:00 obsr1708031 S22100691 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319104579 2021-04-01 11:15:31.646886 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio 30 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-12 14:10:00 obsr41879 S23413036 Traveling P22 EBIRD 64.0 2.897 2.0 1 G1270546 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302925329 2017-08-15 17:02:46 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 1 United States US New York US-NY Ontario US-NY-069 13.0 Sand Rd. E of Taft, West Bloomfield L3320429 H 42.8807194 -77.4967607 2015-03-13 15:30:00 obsr2223307 S22334324 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS825623359 2019-11-26 10:02:40 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-07 obsr2937317 S61222384 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304254877 2018-08-04 17:02:08 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Monroe US-NY-055 13.0 43.3100x-77.8067 - Mar 20, 2015, 5:23 PM L3501760 P 43.310022 -77.806694 2015-03-20 17:19:00 obsr991026 S22439081 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292850897 2022-03-06 12:39:33.700954 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-01-23 16:00:00 obsr186539 S21511516 Traveling P22 EBIRD 36.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309753094 2021-03-26 07:30:35.289997 616 species avibase-25C94A8F Greater Scaup Aythya marila 18 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-13 07:01:00 obsr1655171 S22844715 Traveling P22 EBIRD 14.0 0.483 2.0 1 G1219995 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307430829 2022-02-18 10:47:29.953615 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-04 13:07:00 obsr1062070 S22679072 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303654928 2019-07-23 17:27:56 20829 species avibase-B9B272F4 Common Raven Corvus corax X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-13 18:20:00 obsr319738 S22392154 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311187026 2021-04-01 12:18:57.910168 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 11 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-19 09:35:00 obsr887540 S22941012 Traveling P22 EBIRD 52.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300043327 2019-07-23 17:27:34 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Niagara--Lewiston (NY) L356887 H 43.174301 -79.04921 2015-02-28 12:51:00 obsr2497657 S22106930 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314491749 2021-04-01 11:15:31.646886 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 06:15:00 obsr150415 S23152831 Traveling P22 EBIRD 165.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319836587 2021-03-26 06:17:19.712573 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-15 10:30:00 obsr2939916 S23454877 Traveling P22 EBIRD 132.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323975278 2021-03-26 06:39:43.334073 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-27 08:45:00 obsr2303233 S23706539 Traveling P22 EBIRD 180.0 4.828 4.0 1 G1295992 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316561888 2015-05-06 16:40:41 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Madison US-NY-053 13.0 South Trail Caz. (N. section) L837782 P 42.8824109 -75.8706164 2015-05-06 13:35:00 obsr2716320 S23270255 Traveling P22 EBIRD 75.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289258126 2021-03-24 20:33:47.533911 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-01-05 09:10:00 obsr1062070 S21204688 Stationary P21 EBIRD 5.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS321903136 2021-03-19 16:06:54.047432 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 3 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-05-22 07:40:00 obsr2744341 S23574399 Traveling P22 EBIRD 100.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306622592 2021-03-23 17:22:05.708166 32973 species avibase-10C601D3 Bay-breasted Warbler Setophaga castanea 4 United States US New York US-NY Herkimer US-NY-043 13.0 Snells Bush Rd North L3495943 P 43.0699438 -74.791671 2015-03-29 19:03:00 obsr2694889 S22619406 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290331288 2015-01-11 00:06:26 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail Fields L2372364 P 42.212377 -76.840805 2015-01-10 11:08:00 obsr1587816 S21291034 Traveling P22 EBIRD 8.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317657612 2021-03-19 16:27:31.421791 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Tonawanda WMA--Meadville Rd. L152121 H 43.1145 -78.4563 2015-05-09 12:11:00 obsr408487 S23332806 Traveling P22 EBIRD 18.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315092668 2015-05-02 20:47:11 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park L139800 H 43.0211215 -77.5739871 2015-05-02 09:30:00 obsr1338126 S23187713 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322675001 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Albany US-NY-001 13.0 Watervliet Reservoir L452992 H 42.7326396 -73.9795303 2015-05-24 15:20:00 obsr30103 S23619550 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298074222 2021-03-23 16:48:08.60516 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Seneca US-NY-099 13.0 Lay and Tyre Rd L371155 P 42.9685764 -76.7796278 2015-02-17 15:30:00 obsr204036 S21945741 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302471979 2021-04-01 11:15:31.646886 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-11 09:30:00 obsr1397560 S22299458 Traveling P22 EBIRD 180.0 4.828 3.0 1 G1175054 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313085566 2019-07-23 17:28:28 27616 species avibase-D77E4B41 American Robin Turdus migratorius 50 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.4220913 -79.4281205 2015-04-26 10:45:00 obsr48167 S23065300 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316770716 2022-02-17 14:32:23.002448 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-07 06:00:00 obsr1821546 S23282309 Traveling P22 EBIRD 87.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310253980 2020-03-19 20:54:52 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 1 United States US New York US-NY Ontario US-NY-069 13.0 US-NY-ONT Manchester--NY 21 X Outlet Rd. near exit 43 (3176C) [Clifton Springs_NW] L972933 P 42.9806023 -77.224617 2015-04-15 10:40:00 obsr606693 S22879445 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308770817 2021-03-26 06:39:43.334073 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-06 19:09:00 obsr1548221 S22778036 Traveling P22 EBIRD 26.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315825440 2021-03-19 16:44:35.607263 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Cranberry Pond Nature Trail L511533 H 43.2975732 -77.7148819 2015-05-04 10:00:00 obsr2504709 S23227274 Traveling P22 EBIRD 98.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305146443 2021-03-26 07:56:20.588749 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus N 12 United States US New York US-NY Nassau US-NY-059 oceanside preserve L1472478 P 40.6230202 -73.6179777 2015-03-24 10:30:00 obsr1494607 S22506548 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294622986 2021-04-01 11:24:19.637193 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-02-02 12:26:00 obsr745890 S21651617 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309510865 2018-08-04 17:08:50 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Warren US-NY-113 14.0 Rush Pond L3558967 P 43.3486833 -73.7031711 2015-04-12 11:02:00 obsr1222746 S22827179 Traveling P22 EBIRD 125.0 2.173 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312615667 2018-08-04 17:11:56 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 2 United States US New York US-NY Hamilton US-NY-041 14.0 RT. 8 bridge L1490096 P 43.4708324 -74.403945 2015-04-23 17:00:00 obsr1735540 S23036014 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315645075 2015-05-04 08:09:38 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Madison US-NY-053 28.0 Skilled Nursing Facility Com Mem Hospital L1457477 P 42.8132671 -75.5440799 2015-05-04 08:09:00 obsr589593 S23217593 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309925239 2018-08-04 17:09:06 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Future road trail, Ithaca L1745631 H 42.473917 -76.4556491 2015-04-14 07:43:00 obsr2211210 S22856707 Traveling P22 EBIRD 10.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296384275 2021-03-26 06:29:56.44369 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-02-12 08:20:00 obsr1245041 S21793362 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298709291 2021-03-26 06:17:19.712573 279 species avibase-3E04020B Brant Branta bernicla N 7 United States US New York US-NY Erie US-NY-029 13.0 Home L654361 P 42.81914 -78.7520599 2015-02-19 12:35:00 obsr1079517 S22000564 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303385069 2021-04-01 11:15:31.646886 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon N 20 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-03-15 12:35:00 obsr41879 S22370781 Traveling P22 EBIRD 30.0 0.402 2.0 1 G1181612 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312122453 2021-11-09 19:59:20.034293 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 2 United States US New York US-NY Orange US-NY-071 28.0 US-NY-Newburgh-1716 NY-300 L3582565 P 41.555997 -74.068367 2015-04-22 08:04:00 obsr186871 S23001499 Traveling P22 EBIRD 250.0 6.437 17.0 1 G1231811 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317824297 2018-08-06 22:29:23 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Jefferson US-NY-045 Snowshoe Rd. L1564994 H 43.8755609 -76.2282763 2015-05-09 07:50:00 obsr1558090 S23341653 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS440146992 2021-12-08 07:58:41.562209 6616 species avibase-7E022378 Common Loon Gavia immer X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-18 obsr2036618 S32346334 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313072590 2021-03-24 20:58:53.646623 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3591575 P 42.693501 -77.711644 2015-04-26 08:27:00 obsr682121 S23064526 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293268769 2021-11-09 22:39:09.453725 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Sullivan US-NY-105 28.0 Mongaup Falls L2599112 P 41.5416556 -74.760375 2015-01-25 14:00:00 obsr168838 S21544247 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307555117 2021-03-26 06:39:43.334073 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-30 obsr2277801 S22687614 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319305862 2021-03-19 16:44:35.607263 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-13 07:52:00 obsr2504709 S23424252 Traveling P22 EBIRD 75.0 0.322 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292888000 2015-01-24 10:33:41 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Onondaga US-NY-067 28.0 US-NY-Fabius-972 Shackham Rd L3313459 P 42.817969 -76.007975 2015-01-24 10:32:00 obsr2683805 S21514442 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299821939 2021-11-02 20:32:06.137153 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-02-26 12:15:00 obsr317968 S22089793 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322136250 2021-03-30 12:05:58.533651 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 18 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-18 09:00:00 obsr2218212 S23589195 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321609730 2018-08-04 17:08:33 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 7 United States US New York US-NY Chemung US-NY-015 28.0 Eldridge Lake L312256 P 42.1137818 -76.8172738 2015-04-11 12:45:00 obsr1587816 S23555920 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316822020 2021-04-01 11:15:31.646886 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-07 09:40:00 obsr1821546 S23285065 Traveling P22 EBIRD 69.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312430934 2021-11-09 18:32:19.761913 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Montgomery Place L2260390 P 42.0129612 -73.9184618 2015-04-22 09:00:00 obsr2753438 S23022560 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301355775 2015-03-07 11:38:06 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-03-07 08:30:00 obsr646558 S22206774 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309866743 2021-03-24 19:47:16.07498 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 Female, Adult (1) United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-13 06:10:00 obsr2716320 S22852515 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS537568972 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-12 14:19:00 obsr2775912 S39506222 Traveling P22 EBIRD 219.0 2.414 2.0 1 G2662567 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292997643 2021-04-01 11:47:43.260314 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-01-24 09:20:00 obsr979921 S21522965 Stationary P21 EBIRD 40.0 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295052749 2022-01-30 05:40:13.589887 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-05 15:40:00 obsr2585137 S21687712 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304223779 2022-03-05 22:03:50.715584 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 12 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-20 10:40:00 obsr890053 S22436692 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317841453 2018-08-06 22:29:26 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Broome US-NY-007 28.0 IBM CC / Lower glen L1060822 P 42.1262381 -75.9905434 2015-05-09 09:13:00 obsr1626739 S23342604 Traveling P22 EBIRD 102.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312576924 2021-03-23 17:17:06.468947 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Wyoming US-NY-121 13.0 Silver Lake SP, inlet L811468 H 42.6724654 -78.0553293 2015-04-24 10:35:00 obsr660214 S23033128 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309056768 2020-05-25 20:37:02 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Ontario US-NY-069 13.0 Geneva Lakefront Park, birds over land ONLY (Ontario Co.) L3156934 H 42.869379 -76.9779798 2015-04-11 09:02:00 obsr1278262 S22798260 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310127291 2021-03-30 19:43:32.881136 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Westchester US-NY-119 30.0 Tarrytown Lakes Park L302456 H 41.0829631 -73.8426401 2015-04-12 14:46:00 obsr1055148 S22870996 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307064855 2021-03-26 06:59:15.841579 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-02 09:44:00 obsr916033 S22652565 Traveling P22 EBIRD 428.0 0.08 5.0 1 G1202058 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312035395 2021-04-01 11:15:31.646886 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-22 06:23:00 obsr150415 S22996060 Traveling P22 EBIRD 182.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306393272 2017-08-16 16:56:31 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum: West and Pleasant Creeks (restricted access) L1878498 P 44.0338243 -75.8343879 2015-03-30 14:30:00 obsr1558090 S22601221 Traveling P22 EBIRD 20.0 0.25 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306130824 2021-03-26 07:00:33.333856 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-03-28 10:15:00 obsr1982614 S22581227 Traveling P22 EBIRD 150.0 3.492 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313737181 2021-11-09 18:40:19.746769 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--West L3002249 H 41.9197784 -73.6751747 2015-04-28 08:00:00 obsr1442681 S23105816 Traveling P22 EBIRD 87.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304073717 2021-11-09 18:39:18.733773 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Mashomack Preserve Club (Private), Pine Plains L2854241 P 41.939387 -73.660323 2015-03-19 15:20:00 obsr2175245 S22424925 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322827999 2020-07-05 16:34:32 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY Essex US-NY-031 13.0 414 Bay Lane, Town of Willsboro L372835 P 44.395236 -73.4082949 2015-05-25 13:10:00 obsr2937317 S23628953 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305429628 2021-03-23 16:39:03.255227 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-26 13:40:00 obsr1958124 S22528547 Traveling P22 EBIRD 6.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310706390 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis N 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-17 15:26:00 obsr2493447 S22910518 Traveling P22 EBIRD 57.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001497 2021-03-26 07:56:20.588749 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-26 09:00:00 obsr2218212 S23775938 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297543862 2015-02-16 12:04:21 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-02-15 13:38:00 obsr2871406 S21897509 Stationary P21 EBIRD 9.0 2.0 1 G1148936 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309739139 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-04-13 09:33:00 obsr1154 S22843799 Traveling P22 EBIRD 70.0 1.609 2.0 1 G1218384 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312937788 2021-03-24 19:24:40.212356 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 13:10:00 obsr1655171 S23056257 Stationary P21 EBIRD 33.0 3.0 1 G1240628 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294473968 2021-04-28 05:26:15.958627 26278 species avibase-A381417F House Wren Troglodytes aedon 2 Unknown Sex, Immature (1); Unknown Sex, Adult (1) United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-02-01 12:00:00 obsr2404047 S21639640 Traveling P22 EBIRD 102.0 3.219 2.0 1 G1132203 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309975995 2021-03-30 19:29:33.633096 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 10 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-14 11:00:00 obsr247620 S22860353 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS328306778 2022-01-12 18:14:50.403512 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail L212481 H 44.4128015 -74.121715 2015-05-19 05:20:00 obsr1222746 S23552372 Traveling P22 EBIRD 89.0 2.092 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289890653 2021-03-23 16:39:03.255227 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 10 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-01-08 15:26:00 obsr1958124 S21255125 Traveling P22 EBIRD 32.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291027479 2021-03-26 07:20:31.408164 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven, Post Morrow L1657736 P 40.7781379 -72.9046178 2015-01-14 11:50:00 obsr613775 S21346887 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302325640 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-09 15:00:00 obsr2008637 S22286040 Traveling P22 EBIRD 75.0 0.402 4.0 1 G1172903 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297549670 2015-02-28 07:20:01 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Westchester US-NY-119 30.0 23 Jean Way, Somers NY 10589 L3384761 P 41.3302307 -73.6709931 2015-02-16 12:00:00 obsr1847254 S21898018 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314214847 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 08:00:00 obsr1175815 S23135557 Traveling P22 EBIRD 120.0 2.0 2.0 1 G1243573 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316191936 2016-09-12 10:28:02 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-01 10:30:00 obsr2475075 S23248293 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1005376783 2021-03-30 19:13:38.458673 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 2 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-15 11:30:00 obsr1386682 S75670193 Traveling P22 EBIRD 60.0 0.805 2.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306468483 2021-07-29 22:10:20.051616 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-03-29 obsr1220115 S22607513 Historical P62 EBIRD 1 G1199900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305252789 2018-08-04 17:02:51 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Oswego US-NY-075 13.0 Great Bear Recreation Area L664197 H 43.2666087 -76.3654238 2015-03-25 12:00:00 obsr2224244 S22514756 Traveling P22 EBIRD 126.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308468413 2021-03-26 07:20:31.408164 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-04-08 08:00:00 obsr2011512 S22754608 Traveling P22 EBIRD 85.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315585459 2021-03-19 15:59:05.496822 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 2 United States US New York US-NY Allegany US-NY-003 28.0 Hawks Rd- Independence, NY L2894838 P 42.0672294 -77.7844048 2015-05-03 14:35:00 obsr2700440 S23214222 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299834430 2021-04-01 11:15:31.646886 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Kings US-NY-047 30.0 86th St & 14th Avenue L3311681 P 40.6126819 -74.011867 2015-02-26 07:34:00 obsr1189028 S22090825 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303830195 2021-04-01 10:53:25.818871 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Cortland US-NY-023 28.0 Marathon Village - Vicinity L2511078 P 42.4415744 -76.0321712 2015-03-15 09:55:00 obsr931232 S22405924 Traveling P22 EBIRD 30.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307641502 2021-03-26 07:30:35.289997 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-04 18:55:00 obsr1092576 S22693529 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300272961 2021-03-26 07:20:31.408164 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-03-01 08:40:00 obsr1848026 S22125857 Traveling P22 EBIRD 83.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288907908 2021-03-24 21:01:50.671145 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Nickerson Beach L508149 H 40.5871823 -73.6024 2015-01-03 11:10:00 obsr1982614 S21177816 Traveling P22 EBIRD 80.0 0.998 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308002849 2021-03-30 19:22:51.561415 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-06 09:45:00 obsr1135516 S22719357 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322663305 2021-04-01 10:52:24.630268 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Clinton US-NY-019 US-NY_849 13.0 Chazy Riverlands L577352 H 44.9196891 -73.3785868 2015-05-24 13:35:00 obsr2937317 S23618809 Traveling P22 EBIRD 57.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311169489 2021-03-26 07:30:35.289997 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-19 06:37:00 obsr1655171 S22939915 Traveling P22 EBIRD 34.0 0.322 2.0 1 G1230106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305675302 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-03-27 18:00:00 obsr2180607 S22547565 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318676570 2021-04-01 11:15:31.646886 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:30:00 obsr454647 S23387795 Traveling P22 EBIRD 300.0 3.0 6.0 1 G1265613 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304803317 2022-02-17 14:32:23.002448 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-22 15:00:00 obsr2180607 S22479654 Traveling P22 EBIRD 120.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307286096 2021-03-23 16:30:20.514143 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 500 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-03 07:30:00 obsr2744341 S22668475 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292041591 2021-03-26 06:39:43.334073 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Maintenance Meadow L719748 H 40.7778421 -73.9679231 2015-01-17 13:42:00 obsr1548221 S21427361 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303867000 2021-03-26 07:30:35.289997 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis N 2 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-03-18 13:17:00 obsr2211210 S22408710 Traveling P22 EBIRD 12.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309309110 2021-11-09 18:32:20.227374 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Dutchess US-NY-027 13.0 2122 New Hackensack Road, Poughkeepsie, New York, US (41.66, -73.874) L233101 P 41.6600962 -73.8740462 2015-04-11 09:15:00 obsr842638 S22814620 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324180880 2021-11-09 18:39:48.961966 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Dutchess US-NY-027 13.0 Salisbury Turnpike Power Line Cut L2906305 P 41.955059 -73.802476 2015-05-30 05:33:00 obsr1433400 S23719491 Traveling P22 EBIRD 150.0 5.793 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290180415 2021-03-30 19:37:33.521815 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-01-10 12:40:00 obsr2914424 S21278517 Traveling P22 EBIRD 37.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313173591 2021-03-26 06:29:56.44369 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Varied Thrush Neighborhood L3592260 P 43.174057 -77.553607 2015-04-26 13:13:00 obsr1958774 S23070391 Traveling P22 EBIRD 34.0 0.483 3.0 1 G1238812 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299832634 2019-07-23 17:27:31 251 domestic avibase-6835DC6C Graylag Goose (Domestic type) Anser anser (Domestic type) X United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-02-26 17:39:00 obsr1092576 S22090434 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320829305 2018-08-06 22:30:20 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Herkimer US-NY-043 14.0 Lake Rondaxe, Burgers Camp L992096 P 43.761071 -74.9080167 2015-05-17 08:15:00 obsr620377 S23508413 Traveling P22 EBIRD 180.0 4.828 4.0 1 G1289899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309569602 2021-03-19 16:08:39.161312 26109 species avibase-BAC33609 Brown Creeper Certhia americana N 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Road L3492876 P 42.4352574 -79.3776771 2015-04-12 09:50:00 obsr479109 S22831105 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293187216 2021-04-01 11:49:53.573686 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea N X United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-01-25 10:00:00 obsr547602 S21537913 Traveling P22 EBIRD 120.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308615881 2021-04-01 11:30:42.037277 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-09 07:05:00 obsr2313260 S22765862 Traveling P22 EBIRD 125.0 1.609 9.0 1 G1212858 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302699537 2021-03-26 06:29:56.44369 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-12 15:30:00 obsr934639 S22317055 Traveling P22 EBIRD 110.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294943047 2021-04-01 12:32:15.282601 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 6 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-02-04 13:30:00 obsr916370 S21678234 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291535589 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 08:40:00 obsr777630 S21388262 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315725411 2018-08-04 17:14:43 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-05-04 09:20:00 obsr2071643 S23222026 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296685077 2015-02-14 23:14:39 23187 species avibase-ACB9D1C6 Purple Martin Progne subis 2 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-14 10:32:00 obsr1165633 S21820751 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315040615 2016-07-19 14:06:08 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt Rd. L366919 H 42.6564028 -76.3262996 2015-05-02 10:06:00 obsr2683910 S23184786 Traveling P22 EBIRD 6.0 1.931 2.0 1 G1247599 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS381276682 2021-04-01 12:32:15.282601 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 14 United States US New York US-NY Nassau US-NY-059 30.0 Manhasset - Private: No Access L2913708 P 40.7762193 -73.6884141 2015-05-11 07:00:00 obsr2772978 S28157372 Traveling P22 EBIRD 300.0 8.047 3.0 1 G1645520 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312176438 2015-04-22 20:19:41 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Tompkins US-NY-109 13.0 Robert Treman SP L109043 H 42.3998192 -76.5783221 2015-04-22 18:19:00 obsr1092576 S23005302 Traveling P22 EBIRD 119.0 7.628 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322134264 2021-03-26 06:29:56.44369 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Monroe US-NY-055 13.0 Hogan Point Rd., pond and flooded field L587955 H 43.2987445 -77.7390915 2015-05-23 07:30:00 obsr1696616 S23589112 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293110216 2021-11-23 10:06:36.199249 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia X United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 West Side Rowing Club L351758 H 42.9013797 -78.9020911 2015-01-25 10:25:00 obsr2588479 S21531952 Stationary P21 EBIRD 38.0 14.0 1 G1123083 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304451451 2018-08-04 17:02:15 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 20 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-03-21 12:04:00 obsr887540 S22453676 Stationary P21 EBIRD 13.0 10.0 1 G1198791 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298469143 2021-03-23 16:39:03.255227 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 13 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-02-19 12:09:00 obsr1958124 S21979939 Traveling P22 EBIRD 25.0 0.483 2.0 1 G1153093 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292959910 2021-04-01 12:18:57.910168 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-01-24 16:20:00 obsr1696616 S21520123 Traveling P22 EBIRD 16.0 0.805 2.0 1 G1121387 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309393382 2021-03-30 19:29:33.633096 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach State Park L230716 P 41.1295147 -72.2665183 2015-04-12 10:46:00 obsr2485753 S22819753 Traveling P22 EBIRD 158.0 8.529 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316977140 2021-03-23 17:23:45.772216 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-07 12:20:00 obsr72341 S23293730 Stationary P21 EBIRD 160.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293670028 2021-03-24 19:28:50.176616 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Columbia US-NY-021 13.0 Glenco Mills L2428181 P 42.1436143 -73.742466 2015-01-26 14:00:00 obsr481595 S21576229 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323256288 2021-03-26 07:46:52.994574 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-22 06:15:00 obsr1778524 S23656495 Traveling P22 EBIRD 180.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311096216 2021-03-26 07:43:12.52294 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Wayne US-NY-117 13.0 East Palmyra L1156478 P 43.0839344 -77.1562529 2015-04-18 11:00:00 obsr2561613 S22935699 Area P23 EBIRD 240.0 0.607 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319016942 2015-05-12 16:16:26 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Madison US-NY-053 13.0 HOME L233836 P 43.0927795 -75.930476 2015-05-12 16:10:00 obsr2087436 S23407407 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315904520 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 07:09:00 obsr756196 S23231811 Traveling P22 EBIRD 72.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293224966 2015-01-25 19:09:05 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Columbia US-NY-021 13.0 Lake Taghkanic SP L697297 H 42.092236 -73.708649 2015-01-25 11:45:00 obsr1181085 S21540876 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319720504 2021-03-19 16:10:30.527219 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 8 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP--Ek Birding Trail L2888425 H 42.2128769 -76.8451113 2015-05-02 17:15:00 obsr778043 S23448087 Traveling P22 EBIRD 100.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297916943 2018-08-04 16:56:13 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Rd., Road K L2498666 H 40.8361218 -72.5053489 2015-02-13 13:35:00 obsr1864342 S21931978 Traveling P22 EBIRD 35.0 3.541 2.0 1 G1150401 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621063 2021-12-19 10:32:19.574298 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-02-07 09:00:00 obsr1139818 S21731693 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322298209 2021-12-24 11:02:14.483178 11371 species avibase-75600969 Northern Flicker Colaptes auratus 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-23 16:33:00 obsr1696616 S23598015 Traveling P22 EBIRD 103.0 2.414 2.0 1 G1286135 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312480609 2021-05-10 13:35:55.973042 6186 species avibase-B0932D89 Dovekie Alle alle 2 United States US New York US-NY Schuyler US-NY-097 13.0 Catharine Creek WMA--Rock Cabin Rd. L1359885 H 42.369661 -76.8471749 2015-04-24 07:45:00 obsr642516 S23025955 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297913091 2017-08-16 02:23:57 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-02-17 07:37:00 obsr1764243 S21931683 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318678284 2021-03-19 16:32:34.732091 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-09 15:10:00 obsr454647 S23387883 Traveling P22 EBIRD 30.0 1.0 6.0 1 G1265608 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303015924 2018-08-04 17:00:41 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 18 United States US New York US-NY Saratoga US-NY-091 13.0 Fish Creek Marina L1913554 H 43.0733865 -73.6955166 2015-03-14 10:20:00 obsr2172593 S22341703 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319723570 2021-03-26 07:56:20.588749 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-10 09:30:00 obsr2129334 S23448272 Traveling P22 EBIRD 120.0 3.219 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296703112 2021-03-30 19:13:38.458673 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 6 United States US New York US-NY Monroe US-NY-055 Summerville Pier L275794 H 43.25659 -77.60215 2015-02-14 11:00:00 obsr1124114 S21822518 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309372415 2019-07-26 16:53:13 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-12 10:30:00 obsr887540 S22818509 Traveling P22 EBIRD 91.0 1.609 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300818623 2021-03-23 17:35:23.829899 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Otsego US-NY-077 28.0 Home L2028000 P 42.7258934 -75.1045132 2015-02-13 09:00:00 obsr2122363 S22165743 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302709119 2021-03-30 12:05:58.533651 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 12 United States US New York US-NY Kings US-NY-047 30.0 Brooklyn College L476967 H 40.6305324 -73.9542532 2015-03-12 11:00:00 obsr2448957 S22317836 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299005099 2021-04-01 12:32:15.282601 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 20 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-02-22 11:45:00 obsr247620 S22024621 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324002633 2018-08-06 22:31:28 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Durand-Eastman Park--Zoo Rd. L139792 H 43.2279443 -77.557404 2015-05-30 10:25:00 obsr745890 S23708146 Traveling P22 EBIRD 75.0 0.805 3.0 1 G1296126 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295894945 2021-04-01 12:45:19.712958 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-08 12:45:00 obsr114791 S21752906 Traveling P22 EBIRD 105.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293682329 2015-01-28 10:15:14 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-28 08:04:00 obsr1334267 S21577258 Traveling P22 EBIRD 31.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311320625 2018-08-04 17:11:19 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-04-19 16:15:00 obsr1223279 S22949039 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295280751 2021-11-15 03:06:58.889978 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-03 08:35:00 obsr1548221 S21704206 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318948253 2021-11-15 03:06:58.889978 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 08:15:00 obsr442686 S23403545 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298964612 2021-04-01 10:47:08.851048 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 Male, Adult (3); Female, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-02-22 09:15:00 obsr2024068 S22021388 Traveling P22 EBIRD 120.0 1.609 12.0 1 G1166067 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319830455 2021-03-24 19:35:34.045988 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Erie US-NY-029 13.0 Wesleyan Church Pond and Field L3644761 P 42.732296 -78.721885 2015-05-15 11:39:00 obsr916033 S23454538 Traveling P22 EBIRD 42.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317437024 2015-05-09 09:16:57 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Livingston US-NY-051 13.0 US-NY-PORTAGE, 625 NY-436 L3579171 P 42.574927 -78.013591 2015-05-06 11:21:00 obsr731272 S23320020 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311914071 2021-11-15 03:06:58.889978 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-21 09:00:00 obsr1706920 S22987970 Traveling P22 EBIRD 195.0 0.322 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288510413 2015-01-07 10:19:52 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Tompkins US-NY-109 28.0 US-NY-Brooktondale-50 Belle School Rd L3257891 P 42.355376 -76.398106 2015-01-02 14:20:00 obsr2001485 S21143364 Traveling P22 EBIRD 39.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312734729 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 06:00:00 obsr2404047 S23044168 Traveling P22 EBIRD 193.0 4.828 2.0 1 G1235868 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300607764 2019-07-23 17:27:36 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-02 10:15:00 obsr479109 S22149863 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313333288 2021-03-26 06:55:00.227271 6616 species avibase-7E022378 Common Loon Gavia immer N 1 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Home L3158249 P 42.7894329 -77.5681436 2015-04-26 06:55:00 obsr39511 S23080097 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307404239 2021-03-23 16:33:05.415158 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Queens US-NY-081 30.0 Flushing Meadows Corona Park--Willow Lake L1788997 H 40.7238052 -73.8330507 2015-04-04 11:21:00 obsr2574755 S22677286 Traveling P22 EBIRD 27.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296861086 2021-11-09 21:57:09.307176 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis N X United States US New York US-NY Ulster US-NY-111 28.0 search for Gyr roadside route L3371091 P 41.6264784 -74.2098141 2015-02-14 10:30:00 obsr1588136 S21836797 Traveling P22 EBIRD 360.0 56.327 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317093315 2018-08-06 22:29:10 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Hamilton US-NY-041 14.0 Oxbow Road L3484590 P 43.4488874 -74.4700098 2015-05-08 06:40:00 obsr1735540 S23300479 Traveling P22 EBIRD 20.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315266297 2021-04-01 11:30:42.037277 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:05:00 obsr2105033 S23197399 Traveling P22 EBIRD 245.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311274951 2021-03-23 17:38:38.809066 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Schuyler US-NY-097 13.0 42.4684x-76.7316 - Mar 16, 2015, 7:50 PM L3493814 P 42.468448 -76.731614 2015-04-19 06:16:00 obsr2173269 S22946383 Stationary P21 EBIRD 4.0 2.0 1 G1226353 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288790193 2021-11-09 20:42:29.914366 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 8 United States US New York US-NY Putnam US-NY-079 28.0 Lake Mahopac L3261861 H 41.3804796 -73.738389 2015-01-03 07:15:00 obsr258431 S21166343 Traveling P22 EBIRD 90.0 2.414 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293599135 2021-04-01 10:47:08.851048 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Broome US-NY-007 28.0 Conklin Ave., old Crowley lot L3322621 P 42.0934772 -75.9034614 2015-01-27 09:20:00 obsr998593 S21570905 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306095697 2015-03-29 17:10:18 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Tompkins US-NY-109 13.0 Washington Park, Ithaca L3132474 H 42.44175 -76.50626 2015-03-29 16:50:00 obsr1318356 S22578533 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306939170 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-02 09:45:00 obsr263005 S22642841 Traveling P22 EBIRD 150.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292937391 2015-10-06 07:29:10 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 10 United States US New York US-NY Madison US-NY-053 28.0 Mason Hill, Hamilton, NY L2591505 P 42.8259191 -75.5196977 2015-01-24 12:30:00 obsr2843748 S21518389 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319599712 2017-09-07 00:29:54 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 10 United States US New York US-NY Clinton US-NY-019 13.0 Ausable Marsh WMA--Ausable Point Campground L2968804 H 44.5712587 -73.4261853 2015-05-14 15:00:00 obsr363163 S23441166 Traveling P22 EBIRD 36.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302057813 2021-03-30 19:29:33.633096 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-03-08 10:58:00 obsr1987335 S22260844 Traveling P22 EBIRD 24.0 0.161 2.0 1 G1172670 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316892151 2018-08-04 17:15:05 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Broome US-NY-007 28.0 Aquaterra Park L209925 H 42.032165 -75.939463 2015-05-07 06:20:00 obsr646558 S23288774 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423304 2021-03-30 19:13:38.458673 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-18 17:48:00 obsr1846130 S24163342 Traveling P22 EBIRD 92.0 1.207 2.0 1 G1337410 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309534442 2021-12-08 20:10:59.171513 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L479445 P 41.1793323 -73.8949442 2015-04-12 13:30:00 obsr1160328 S22828784 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315479453 2021-04-01 11:30:42.037277 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 09:20:00 obsr1129613 S23208488 Traveling P22 EBIRD 240.0 6.437 25.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305854690 2021-03-30 19:13:38.458673 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-03-28 15:20:00 obsr934639 S22560746 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317218090 2015-05-22 09:24:58 681 species avibase-407E2CA8 Common Merganser Mergus merganser 8 United States US New York US-NY Cortland US-NY-023 28.0 Willow Crossing Road L3622413 P 42.4476548 -76.2504816 2015-05-08 11:00:00 obsr317968 S23306917 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305849044 2021-03-26 07:07:10.758746 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-03-28 12:36:00 obsr1893950 S22560337 Traveling P22 EBIRD 25.0 1.287 2.0 1 G1195283 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288248158 2022-01-09 18:48:43.534861 505 species avibase-C732CB10 American Black Duck Anas rubripes N 50 United States US New York US-NY New York US-NY-061 30.0 Greenwich Village (14th St.-Houston St.; Broadway-Hudson River) L3238737 H 40.7342063 -74.0027145 2015-01-01 11:20:00 obsr2184966 S21121617 Traveling P22 EBIRD 60.0 0.5 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318013013 2021-04-01 11:27:18.37144 26890 species avibase-94A44032 European Starling Sturnus vulgaris 15 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-05-10 07:15:00 obsr1187325 S23352073 Traveling P22 EBIRD 90.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323101903 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-26 07:00:00 obsr454647 S23646482 Traveling P22 EBIRD 240.0 3.219 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311232671 2021-04-01 12:32:15.282601 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-19 07:30:00 obsr547602 S22943717 Traveling P22 EBIRD 90.0 2.414 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320208844 2021-11-09 17:57:39.633947 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 6 United States US New York US-NY Dutchess US-NY-027 28.0 Dennings Point, L1145911 P 41.5003496 -73.9736938 2015-05-16 10:30:00 obsr1917973 S23474669 Traveling P22 EBIRD 165.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310164902 2021-11-09 21:35:18.646328 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-15 07:10:00 obsr118701 S22873568 Traveling P22 EBIRD 95.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316895119 2021-03-19 16:19:20.977326 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-07 08:26:00 obsr2324853 S23288905 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311339522 2018-08-04 17:09:43 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 Male, Adult (1) United States US New York US-NY Onondaga US-NY-067 28.0 Tully Lakes L1129390 P 42.79011 -76.1278725 2015-04-18 11:13:00 obsr1178949 S22950185 Traveling P22 EBIRD 240.0 47.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323985155 2021-04-01 11:15:31.646886 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 90 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 06:35:00 obsr350767 S23707107 Traveling P22 EBIRD 279.0 2.414 4.0 1 G1296053 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307991157 2021-04-01 11:15:31.646886 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 12:15:00 obsr1077730 S22718787 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310087085 2018-08-04 17:09:12 6616 species avibase-7E022378 Common Loon Gavia immer 8 United States US New York US-NY Oswego US-NY-075 13.0 Oswego County Airport--Howard Rd. L1814858 H 43.3553061 -76.3795964 2015-04-14 19:56:00 obsr2945658 S22868193 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307393992 2021-04-01 11:30:42.037277 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-04 08:00:00 obsr1668936 S22676507 Traveling P22 EBIRD 187.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311021172 2018-08-04 17:10:23 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP L99696 H 42.5460112 -76.600422 2015-04-18 15:00:00 obsr646558 S22930780 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295390911 2021-03-26 07:07:10.758746 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris 1 United States US New York US-NY Richmond US-NY-085 Franklin D. Roosevelt Boardwalk and Beach L2480164 H 40.5813841 -74.0725942 2015-02-07 10:58:00 obsr1958124 S21713338 Traveling P22 EBIRD 8.0 0.322 2.0 1 G1137894 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311924912 2021-03-26 08:13:27.160698 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 2 United States US New York US-NY Tioga US-NY-107 28.0 Lockheed Martin Pond L2347076 H 42.097235 -76.221474 2015-04-21 07:37:00 obsr1318356 S22988677 Traveling P22 EBIRD 19.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288754370 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 22 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-01-03 07:55:00 obsr420385 S21163342 Traveling P22 EBIRD 200.0 4.023 2.0 1 G1092967 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301968647 2015-03-09 10:49:06 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Steuben US-NY-101 28.0 US-NY-Painted Post-3108 Knoll Rd L1826322 P 42.165969 -77.119302 2015-03-09 10:43:00 obsr2537623 S22253843 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310026397 2018-08-04 17:09:10 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Oneida US-NY-065 14.0 Cemetery Rd, River, Westdale, NY L2105129 P 43.392029 -75.8154058 2015-04-14 14:10:00 obsr1640315 S22863806 Traveling P22 EBIRD 80.0 3.219 2.0 1 G1219728 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316046285 2021-03-26 07:46:52.994574 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-05-02 11:00:00 obsr2309457 S23240335 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321517721 2015-05-20 16:26:28 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-20 16:00:00 obsr334398 S23550158 Traveling P22 EBIRD 25.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317433025 2018-08-06 22:29:24 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Indian Hill Recreation Area L863407 H 43.0673516 -77.4254179 2015-05-09 08:10:00 obsr2240964 S23319798 Traveling P22 EBIRD 40.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300504713 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Monroe US-NY-055 13.0 Private property L3358535 P 43.2067086 -77.8944933 2015-03-02 09:28:00 obsr1713903 S22142041 Traveling P22 EBIRD 28.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292919571 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 9 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-24 13:30:00 obsr259298 S21517129 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303573974 2021-03-23 16:52:36.900075 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Arshamomaque Pond Preserve L140131 H 41.079361 -72.4004135 2015-03-16 17:41:00 obsr2485753 S22385909 Traveling P22 EBIRD 40.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301871548 2021-04-01 11:49:53.573686 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 16 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-03-07 10:54:00 obsr1982614 S22246927 Traveling P22 EBIRD 120.0 2.993 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314011159 2021-03-26 07:30:35.289997 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 5 United States US New York US-NY Tompkins US-NY-109 13.0 EcoVillage L903167 P 42.4411944 -76.5472412 2015-04-29 07:15:00 obsr1997264 S23123176 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316122728 2018-08-04 17:04:51 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 225 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Tschache Pool L99391 H 42.9892318 -76.7711279 2015-03-31 09:10:00 obsr533086 S23244457 International Shorebird Survey (ISS) P74 EBIRD 92.0 4.023 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315242502 2021-03-19 16:44:35.607263 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-03 08:25:00 obsr1097423 S23196158 Traveling P22 EBIRD 137.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300153365 2021-03-30 19:28:38.115458 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Seneca US-NY-099 13.0 Varick, 5011-5143 New York 89 L2716122 P 42.77557 -76.76954 2015-02-28 09:28:00 obsr2683910 S22116253 Traveling P22 EBIRD 3.0 1.609 2.0 0 G1162607 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298439687 2021-03-26 06:59:15.841579 33030 issf avibase-BFE4314B Palm Warbler Setophaga palmarum Palm Warbler (Western) Setophaga palmarum palmarum 3 United States US New York US-NY Oswego US-NY-075 13.0 Fulton NY yard L810572 P 43.3027778 -76.41 2015-02-16 11:15:00 obsr438598 S21977386 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309368062 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-11 17:30:00 obsr2793388 S22818252 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315317528 2015-05-03 13:38:33 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Erie US-NY-029 13.0 WNY Land Conservancy Office L2058573 P 42.7636185 -78.5480404 2015-05-03 13:00:00 obsr2537615 S23199869 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323551629 2021-04-01 10:57:06.520339 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Essex US-NY-031 13.0 Lower La Chute River & Ticonderoga Marsh L4910422 H 43.8448239 -73.4016323 2015-05-28 08:43:00 obsr2769235 S23676733 Traveling P22 EBIRD 196.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320098436 2021-11-09 18:47:29.366198 5976 species avibase-F4829920 American Woodcock Scolopax minor 2 United States US New York US-NY Dutchess US-NY-027 14.0 Harlem Valley Rail Trail-Sharon Sta. Road Section L3646878 P 41.8678843 -73.5242414 2015-05-15 08:00:00 obsr445356 S23469162 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312672273 2021-03-23 16:45:39.358281 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 7 United States US New York US-NY St. Lawrence US-NY-089 US-NY_802 13.0 Barnhart Island Marina L800740 H 45.0017167 -74.8597455 2015-04-24 08:09:00 obsr1558090 S23039896 Traveling P22 EBIRD 33.0 0.4 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291721712 2021-03-19 16:32:34.732091 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-18 09:20:00 obsr1982614 S21402483 Traveling P22 EBIRD 15.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314904853 2021-04-01 10:51:06.899622 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Watts Flats WMA L490893 H 42.0350422 -79.4263016 2015-05-02 07:25:00 obsr2910282 S23177430 Traveling P22 EBIRD 130.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309010760 2015-04-11 07:07:06 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Podell Boardwalk (0.08 km) L1075029 P 42.4782515 -76.4511698 2015-04-10 13:57:00 obsr2307843 S22795199 Traveling P22 EBIRD 5.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306992606 2021-04-01 12:32:15.282601 456 species avibase-D201EB72 American Wigeon Mareca americana N 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-02 15:30:00 obsr1693806 S22646840 Traveling P22 EBIRD 75.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294870888 2021-03-26 07:56:20.588749 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 15 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-07 09:00:00 obsr2218212 S21672020 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297997753 2022-03-05 22:03:50.715584 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-17 09:30:00 obsr444155 S21939038 Traveling P22 EBIRD 60.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314604838 2018-08-04 17:13:56 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 15 United States US New York US-NY Albany US-NY-001 13.0 Mohawk-Hudson Bike-Hike Trail, Shaker Creek bridge L2582981 H 42.7794213 -73.7916129 2015-05-01 11:45:00 obsr2321296 S23159882 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291023550 2019-01-03 10:54:11 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 105 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-A L3288843 P 40.26648 -73.25628 2015-01-11 08:00:00 obsr613775 S21346544 Traveling P22 EBIRD 60.0 12.392 44.0 1 G1108331 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293316557 2021-04-01 10:52:54.724403 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 7000 United States US New York US-NY Columbia US-NY-021 13.0 Town of Stuyvesant L1153717 P 42.3903113 -73.7820339 2015-01-25 15:30:00 obsr712039 S21547628 Traveling P22 EBIRD 90.0 30.578 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307242630 2021-03-26 06:53:58.593564 32949 species avibase-15EB3000 Hooded Warbler Setophaga citrina 2 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-04-03 10:00:00 obsr2812831 S22665375 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423534 2021-03-26 06:29:56.44369 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 1 (Winter Lakewatch) L654004 H 43.3626297 -77.9489422 2015-04-01 10:35:00 obsr1846130 S24163356 Traveling P22 EBIRD 25.0 0.402 3.0 1 G1337416 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310042412 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 8 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-14 15:30:00 obsr2750470 S22864989 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315912315 2018-08-04 17:13:07 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-30 08:00:00 obsr1160328 S23232213 Area P23 EBIRD 120.0 30.3514 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315027848 2021-03-26 06:11:29.8335 33061 species avibase-E36325FA Prairie Warbler Setophaga discolor 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Owasco Lake inlet area L302042 H 42.7542393 -76.4637132 2015-05-02 07:03:00 obsr1655171 S23184009 Traveling P22 EBIRD 83.0 0.805 2.0 1 G1247590 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302695434 2021-04-01 12:32:15.282601 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-03-12 15:35:00 obsr916370 S22316717 Traveling P22 EBIRD 80.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312774364 2021-11-09 22:45:57.611015 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 Male, Adult (1) United States US New York US-NY Sullivan US-NY-105 US-NY_2792 28.0 644 River Road L3586766 P 41.7935381 -75.0931024 2015-04-25 06:50:00 obsr444155 S23046671 Stationary P21 EBIRD 45.0 4.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312349299 2021-03-19 16:08:39.161312 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Dunkirk-5225-5347 County Rd 73 L3585053 P 42.446087 -79.401487 2015-04-23 14:29:00 obsr2588479 S23016879 Stationary P21 EBIRD 43.0 2.0 1 G1233134 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306477717 2021-03-19 16:44:35.607263 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-03-29 07:45:00 obsr1245041 S22608093 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1133749683 2021-04-27 11:51:24.07805 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Irondequoit-162 Harwick Rd L3800402 P 43.174059 -77.55393 2015-04-26 11:53:00 obsr1181085 S86492668 Traveling P22 EBIRD 175.0 1.609 15.0 1 G6615593 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303235196 2017-04-28 16:25:25 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-03-13 10:12:00 obsr1565981 S22358758 Traveling P22 EBIRD 41.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301948284 2021-03-26 07:07:10.758746 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-06 15:46:00 obsr1032565 S22252291 Traveling P22 EBIRD 114.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295922714 2015-02-10 07:23:06 242 species avibase-D3A260BC Snow Goose Anser caerulescens 1 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-02-10 07:15:00 obsr2074043 S21755019 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315913597 2021-04-01 12:32:15.282601 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-04 17:15:00 obsr271871 S23232287 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323453440 2021-11-09 18:45:27.272498 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 near Verbank L3534485 P 41.7142739 -73.677063 2015-05-08 06:45:00 obsr191447 S23670083 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309568310 2021-04-01 11:24:19.637193 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 2 United States US New York US-NY Monroe US-NY-055 13.0 LaSalle's Landing Park L140438 H 43.1763487 -77.5259313 2015-04-12 15:55:00 obsr302343 S22830991 Traveling P22 EBIRD 35.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319289957 2021-03-26 07:56:20.588749 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-13 09:30:00 obsr647628 S23423366 Traveling P22 EBIRD 205.0 4.023 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313401300 2021-04-01 11:24:19.637193 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 4 United States US New York US-NY Monroe US-NY-055 13.0 Lucien Morin Park L1745769 H 43.1666318 -77.5274502 2015-04-26 13:54:00 obsr408487 S23084770 Traveling P22 EBIRD 40.0 0.805 2.0 1 G1238810 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304211324 2021-03-26 08:09:53.772059 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Rensselaer US-NY-083 13.0 Poestenkill, Home Yard L940921 P 42.6943279 -73.5632408 2015-03-20 13:00:00 obsr1735540 S22435754 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295347817 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-07 09:13:00 obsr934639 S21710016 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319633477 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 08:30:00 obsr2448505 S23443088 Traveling P22 EBIRD 180.0 3.219 3.0 1 G1270840 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320620114 2021-03-26 06:07:45.516082 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-05-17 13:45:00 obsr2793388 S23496117 Traveling P22 EBIRD 160.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320709592 2018-08-06 22:30:26 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-05-17 14:15:00 obsr2846677 S23500922 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292489304 2021-03-26 07:30:35.289997 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Northwest Ithaca, Black Diamond Trail L3308400 P 42.46328 -76.52446 2015-01-21 15:15:00 obsr800690 S21483035 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321620284 2018-08-04 17:28:06 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 Male, Adult (3); Female, Adult (1) United States US New York US-NY Fulton US-NY-035 14.0 Cline Road Marsh/Forest Loop L2499202 P 43.0665479 -74.65976 2015-05-20 14:15:00 obsr316199 S23556624 Traveling P22 EBIRD 76.0 4.184 3.0 1 G1281334 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319534697 2018-08-06 22:29:55 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Fulton US-NY-035 13.0 Mayfield Beach, Burr Rd., Fulton Co., N.Y. L3104334 P 43.1404831 -74.2333639 2015-05-14 10:00:00 obsr2590001 S23437596 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309361634 2021-11-09 21:50:48.44865 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-12 08:00:00 obsr1482758 S22817878 Traveling P22 EBIRD 180.0 2.414 12.0 1 G1217686 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314442733 2021-04-01 10:45:00.916278 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 20 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-04-29 15:19:00 obsr1348614 S23149539 Traveling P22 EBIRD 147.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309817597 2021-04-01 11:30:42.037277 505 species avibase-C732CB10 American Black Duck Anas rubripes 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-13 17:30:00 obsr2031586 S22849101 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324900547 2021-03-24 19:35:34.045988 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Erie US-NY-029 13.0 newstead L625061 P 42.8978491 -78.5100174 2015-05-06 09:00:00 obsr1802464 S23768796 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308221636 2018-08-04 17:07:54 33216 species avibase-1F09CCCC Wilson's Warbler Cardellina pusilla 6 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-07 09:38:00 obsr800690 S22736038 Stationary P21 EBIRD 39.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319726477 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 07:00:00 obsr1220115 S23448452 Traveling P22 EBIRD 150.0 2.414 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313552570 2021-04-01 11:15:31.646886 660 spuh avibase-CB56BEF1 scoter sp. Melanitta sp. 37 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-04-27 13:22:00 obsr1711339 S23093893 Traveling P22 EBIRD 123.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303477133 2021-03-26 07:07:10.758746 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N X United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-15 09:00:00 obsr666331 S22378586 Traveling P22 EBIRD 45.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319433580 2021-11-15 03:06:58.889978 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-13 13:03:00 obsr1055148 S23431483 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291940655 2021-04-01 11:49:53.573686 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-01-19 09:15:00 obsr876649 S21419290 Traveling P22 EBIRD 220.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311274954 2021-03-23 17:38:38.809066 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Schuyler US-NY-097 13.0 42.4684x-76.7316 - Mar 16, 2015, 7:50 PM L3493814 P 42.468448 -76.731614 2015-04-19 06:16:00 obsr2173269 S22946383 Stationary P21 EBIRD 4.0 2.0 1 G1226353 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312050642 2015-04-22 11:25:17 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 Male, Adult (2) United States US New York US-NY Westchester US-NY-119 30.0 Pound Ridge L3580431 P 41.2167496 -73.5341549 2015-04-22 06:20:00 obsr1892759 S22994105 Traveling P22 EBIRD 600.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313791254 2021-11-09 20:00:00.182308 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Orange US-NY-071 28.0 Meyers Grove L3597611 P 41.4462039 -74.5989035 2015-04-28 12:00:00 obsr444155 S23109175 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309173108 2021-04-01 11:30:42.037277 622 species avibase-50566E50 Lesser Scaup Aythya affinis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L2020281 P 40.783661 -73.963995 2015-04-11 12:15:00 obsr2436774 S22805670 Traveling P22 EBIRD 255.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312900944 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-25 15:15:00 obsr1659461 S23054001 Traveling P22 EBIRD 45.0 1.609 2.0 1 G2865415 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312247339 2015-04-23 12:27:11 32973 species avibase-10C601D3 Bay-breasted Warbler Setophaga castanea 1 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Marathon-677–771 Owego Hill Rd L3584188 P 42.45035 -76.215125 2015-04-23 07:00:00 obsr1092576 S23010191 Stationary P21 EBIRD 3.0 2.0 1 G1232709 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311329271 2021-03-30 19:29:33.633096 5948 species avibase-A47B0BD4 Least Sandpiper Calidris minutilla 8 United States US New York US-NY Suffolk US-NY-103 Dune Road (Moriches Inlet to Shinnecock Inlet) L1057391 P 40.7992566 -72.615509 2015-04-19 10:00:00 obsr247620 S22949539 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315242493 2021-03-19 16:44:35.607263 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-03 08:25:00 obsr1097423 S23196158 Traveling P22 EBIRD 137.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309643986 2021-11-09 21:50:48.44865 447 species avibase-C235A4D7 Gadwall Mareca strepera N X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-12 08:00:00 obsr1588136 S22836085 Traveling P22 EBIRD 180.0 2.414 12.0 1 G1217686 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308556747 2021-11-09 21:50:48.44865 6361 issf avibase-0C55DFCC Iceland Gull Larus glaucoides Iceland Gull (kumlieni) Larus glaucoides kumlieni 4 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-08 13:00:00 obsr677511 S22761562 Stationary P21 EBIRD 25.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314153769 2021-04-01 11:30:42.037277 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 15:25:00 obsr2105033 S23131673 Traveling P22 EBIRD 130.0 1.931 1.0 1 G1243225 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303997615 2021-03-24 21:12:00.789723 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 12 United States US New York US-NY Schuyler US-NY-097 13.0 Hector Falls Marsh L2354312 H 42.4547794 -76.7754114 2015-03-19 07:10:00 obsr1828453 S22418670 Stationary P21 EBIRD 6.0 3.0 1 G1184879 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304359817 2021-03-23 17:18:00.959502 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-03-21 10:25:00 obsr1154 S22447004 Stationary P21 EBIRD 30.0 4.0 1 G1186977 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320375956 2019-06-17 13:16:36 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Owasco Lake inlet area L302042 H 42.7542393 -76.4637132 2015-05-16 14:00:00 obsr1302965 S23483176 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310857794 2021-04-01 12:26:53.827486 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-04-18 07:10:00 obsr2214649 S22920595 Traveling P22 EBIRD 158.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299832224 2021-03-24 20:33:47.533911 6339 species avibase-8535345B Herring Gull Larus argentatus 12 United States US New York US-NY Tompkins US-NY-109 13.0 Farm Pond Circle L2080608 P 42.5383387 -76.4633042 2015-02-27 07:30:00 obsr596741 S22090645 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299867725 2019-07-23 17:27:32 303 species avibase-B59E1863 Canada Goose Branta canadensis 8 United States US New York US-NY Suffolk US-NY-103 30.0 Hortons Point L158149 H 41.0852163 -72.4456862 2015-02-27 13:50:00 obsr2485753 S22093494 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309324414 2021-04-01 12:11:50.996293 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 20 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-04-12 07:16:00 obsr1278262 S22815589 Traveling P22 EBIRD 82.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304509144 2021-11-02 20:32:06.137153 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-03-21 07:17:00 obsr2279567 S22458016 Traveling P22 EBIRD 130.0 0.483 2.0 1 G1188092 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312725742 2021-03-26 06:53:58.593564 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X Male, Adult (1) United States US New York US-NY Oneida US-NY-065 13.0 Belle Avenue, Utica, NY Yard / Feeders L1957437 P 43.0891137 -75.2091622 2015-04-24 09:00:00 obsr1066808 S23043591 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319334856 2021-04-01 11:15:31.646886 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-13 05:30:00 obsr2233143 S23425846 Area P23 EBIRD 420.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310971702 2021-03-26 07:20:31.408164 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Suffolk US-NY-103 30.0 Farm L137715 P 41.0795555 -72.4394913 2015-04-18 15:41:00 obsr2485753 S22927736 Traveling P22 EBIRD 31.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311663372 2015-04-20 18:41:22 483 species avibase-85625D75 Mallard Anas platyrhynchos 16 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.3198299 2015-04-20 18:35:00 obsr2343764 S22971737 Stationary P21 EBIRD 10.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300101869 2021-03-23 17:22:05.708166 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-26 07:55:00 obsr316199 S22112151 Area P23 EBIRD 60.0 2.59 2.0 1 G1162124 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291915758 2021-04-01 11:15:31.646886 592 species avibase-3072CC16 Redhead Aythya americana 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-01-19 09:00:00 obsr827632 S21417347 Traveling P22 EBIRD 150.0 3.2 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319500029 2020-03-15 09:14:53 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-12 17:25:00 obsr736608 S23435590 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS867263706 2020-02-19 09:05:51 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-18 12:30:00 obsr2554376 S64743813 Historical P62 EBIRD 2.0 1 G4997849 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298944089 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 35 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-21 10:45:00 obsr609516 S22019810 Traveling P22 EBIRD 75.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296550561 2021-11-09 21:57:09.109628 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Ulster US-NY-111 28.0 Old Fort Road- Gyrfalcon hotspot L3363101 P 41.6330074 -74.2334604 2015-02-13 08:55:00 obsr769149 S21808878 Traveling P22 EBIRD 335.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318015654 2015-05-10 12:51:44 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-10 06:48:00 obsr2321296 S23352226 Traveling P22 EBIRD 149.0 2.012 3.0 1 G1262140 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316943230 2021-11-15 03:06:58.889978 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-07 08:15:00 obsr1693806 S23291823 Traveling P22 EBIRD 450.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305609868 2021-04-01 12:18:57.910168 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-03-27 13:26:00 obsr2871406 S22542498 Traveling P22 EBIRD 5.0 0.08 2.0 1 G1194165 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304380086 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 20 United States US New York US-NY New York US-NY-061 30.0 City Hall Park incl. Millennium Park, Manhattan L1787340 H 40.7128659 -74.006057 2015-03-01 10:00:00 obsr871258 S22448568 Traveling P22 EBIRD 60.0 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314406502 2021-11-15 03:06:58.889978 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-30 15:54:00 obsr2149836 S23147126 Traveling P22 EBIRD 35.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309447707 2015-04-12 15:43:26 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-04-12 15:40:00 obsr1349676 S22822862 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300140387 2015-02-28 20:36:35 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Greene US-NY-039 US-NY_854 28.0 Thomas Cole Mountain L1829633 P 42.2699048 -74.1440806 2015-02-28 10:30:00 obsr671490 S22115280 Traveling P22 EBIRD 270.0 8.851 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302317655 2021-03-30 19:03:54.667077 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-10 15:30:00 obsr1792012 S22285457 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302904721 2021-03-26 07:17:29.663409 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Schoharie US-NY-095 28.0 1353 State Route 7 L863903 P 42.6528008 -74.5260626 2015-03-13 12:00:00 obsr119187 S22332599 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319792798 2021-03-19 16:54:27.713469 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-05-15 06:10:00 obsr286403 S23452449 Traveling P22 EBIRD 150.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321193383 2021-11-09 18:47:30.075151 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Dutchess US-NY-027 13.0 Bangall Rd Millbrook L3656863 P 41.808316 -73.671173 2015-05-19 10:48:00 obsr1732267 S23530547 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314854945 2021-12-24 11:02:14.483178 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-02 07:40:00 obsr991026 S23174835 Traveling P22 EBIRD 128.0 3.219 1.0 1 G1247727 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318866399 2021-03-23 17:21:37.486392 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Fulton US-NY-035 13.0 Cline Rd., marsh (west) L3151886 H 43.0689349 -74.6717227 2015-05-11 05:43:00 obsr2694889 S23399120 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302481590 2021-04-01 11:47:43.260314 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis N 3 United States US New York US-NY Oswego US-NY-075 13.0 Oswego River--Lock 6 L3468275 P 43.44431 -76.49569 2015-03-11 12:58:00 obsr1721609 S22300170 Traveling P22 EBIRD 52.0 0.483 3.0 1 G1176065 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322072670 2021-11-15 03:06:58.889978 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 4 Unknown Sex and Age (1); Female, Adult (2); Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-22 17:30:00 obsr1439545 S23585132 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311460628 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach West End - Median L2737596 P 40.587592 -73.5588312 2015-04-19 13:30:00 obsr2555972 S22957726 Traveling P22 EBIRD 45.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320189620 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 10:00:00 obsr2706811 S23473726 Traveling P22 EBIRD 180.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300685521 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 East River, Brooklyn Bridge to S.I. Ferry L3339003 H 40.7039737 -74.0059423 2015-03-03 07:58:00 obsr2179748 S22155432 Traveling P22 EBIRD 58.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135975 2021-03-26 07:56:20.588749 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-11 16:00:00 obsr2218212 S23589185 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316822964 2015-05-26 18:14:05 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-07 10:40:00 obsr1958774 S23285108 Traveling P22 EBIRD 7.0 0.322 2.0 1 G1291702 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1157060907 2021-05-15 20:22:41.287209 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 08:30:00 obsr2018482 S88231303 Traveling P22 EBIRD 180.0 4.828 4.0 1 G6739976 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312761370 2018-08-04 17:11:44 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-04-22 09:30:00 obsr1079517 S23045898 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135364 2021-03-26 07:56:20.588749 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-28 16:00:00 obsr2218212 S23589164 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311280681 2022-02-17 14:32:23.002448 6201 species avibase-64F4DD81 Razorbill Alca torda 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-18 13:20:00 obsr2363365 S22946712 Traveling P22 EBIRD 80.0 1.609 16.0 1 G1224973 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322418377 2021-08-17 17:05:39.549418 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-24 04:44:00 obsr1696616 S23605088 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314001415 2015-04-29 09:25:20 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 F C1 F United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Hoyt-Pileated Trail intersect w spur to CLO L301129 P 42.47886 -76.4462 2015-04-29 08:15:00 obsr2307843 S23122618 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313525882 2020-05-16 18:08:13 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Otsego US-NY-077 28.0 Spring St. L1941350 P 42.4535841 -75.0682148 2015-04-27 09:50:00 obsr1452192 S23092353 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296128766 2019-07-23 17:27:20 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-11 12:55:00 obsr1092576 S21771288 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291626640 2021-04-01 12:18:57.910168 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Tompkins US-NY-109 13.0 Overlook, Rte. 89 N of Hog Hole L479673 H 42.4647843 -76.5246248 2015-01-18 09:46:00 obsr2211210 S21395327 Stationary P21 EBIRD 52.0 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303573975 2021-03-23 16:52:36.900075 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 18 United States US New York US-NY Suffolk US-NY-103 30.0 Arshamomaque Pond Preserve L140131 H 41.079361 -72.4004135 2015-03-16 17:41:00 obsr2485753 S22385909 Traveling P22 EBIRD 40.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319640533 2021-04-01 11:30:42.037277 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 08:30:00 obsr1353449 S23443500 Traveling P22 EBIRD 180.0 3.219 3.0 1 G1270840 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299776742 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-02-26 15:00:00 obsr2448957 S22086388 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320944087 2021-03-30 19:13:38.458673 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 15 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 10:05:00 obsr1962295 S23514560 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078440 2021-03-19 16:00:00.303051 591 species avibase-1929E1E1 Canvasback Aythya valisineria 50 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.8768877 -73.7898123 2015-01-04 12:29:00 obsr2571303 S21191082 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313458166 2021-04-01 10:45:00.916278 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 6 P C3 P United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-27 09:10:00 obsr128156 S23088347 Rusty Blackbird Spring Migration Blitz P41 EBIRD 20.0 1.6 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS300092322 2021-03-24 19:42:42.07177 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos N 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-28 14:50:00 obsr2692140 S22111347 Traveling P22 EBIRD 120.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317002774 2018-08-04 17:15:13 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-07 17:25:00 obsr2769235 S23295215 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310234499 2021-03-30 19:13:38.458673 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-04-13 11:44:00 obsr745890 S22878081 Stationary P21 EBIRD 105.0 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289741981 2015-03-03 10:02:11 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-07 08:00:00 obsr1792012 S21242835 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312736924 2021-03-26 06:39:43.334073 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-04-24 12:15:00 obsr1136524 S23044313 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294173371 2015-01-31 15:55:17 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 100 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Point Lookout--Firemans Park L1870410 H 40.5919777 -73.5755787 2015-01-31 10:21:00 obsr1348614 S21616094 Traveling P22 EBIRD 27.0 0.5 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311672588 2021-03-26 07:30:35.289997 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Beebe Lake/Mundy Wildflower Garden L2357812 P 42.450265 -76.473142 2015-04-20 12:45:00 obsr2137468 S22972378 Traveling P22 EBIRD 75.0 6.115 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304697426 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-19 15:30:00 obsr93451 S22471915 Traveling P22 EBIRD 105.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306804728 2021-03-30 19:25:27.212017 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris N 3 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-01 06:22:00 obsr396989 S22632787 Traveling P22 EBIRD_NJ 310.0 4.506 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315444889 2015-10-17 16:11:51 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-03 09:45:00 obsr1005220 S23206583 Traveling P22 EBIRD 15.0 0.483 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305679561 2021-04-01 12:14:19.266649 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Chandler Estate L1355478 H 40.9559916 -73.0192018 2015-03-27 16:00:00 obsr2338506 S22547897 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322914766 2018-08-04 17:30:18 27616 species avibase-D77E4B41 American Robin Turdus migratorius 8 Unknown Sex, Juvenile (6); Male, Adult (1); Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 14.0 Jerseyfield Road - Hall's Vly/Black Creek & Vicinity L614799 P 43.2719613 -74.7774124 2015-05-25 11:35:00 obsr1000124 S23634313 Traveling P22 EBIRD 123.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304220965 2021-03-26 06:17:19.712573 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 2 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Feeder Area L424961 P 42.7607926 -78.8063961 2015-03-20 13:30:00 obsr2083851 S22436469 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291905368 2018-08-04 16:54:01 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-19 11:50:00 obsr454647 S21416547 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310681192 2021-03-24 20:11:57.676649 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Oswego US-NY-075 13.0 Sunset Bay Park L250628 H 43.5211406 -76.3839446 2015-04-17 11:00:00 obsr1633923 S22908802 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305257425 2021-03-24 20:16:00.852773 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 5 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-25 15:07:00 obsr1958124 S22515083 Traveling P22 EBIRD 7.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293893192 2021-03-23 16:52:36.900075 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Suffolk US-NY-103 30.0 Field (Watermill near Hayground Cmtry) L3326154 P 40.9296732 -72.3226333 2015-01-29 16:00:00 obsr544268 S21594198 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322317303 2018-08-06 22:30:58 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Cattaraugus US-NY-009 13.0 Conewango Swamp WMA L246473 H 42.1794444 -78.9861111 2015-05-23 14:51:00 obsr2497657 S23599063 Traveling P22 EBIRD 104.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299690075 2015-02-26 11:47:00 34699 spuh avibase-CFD25837 passerine sp. Passeriformes sp. 1 United States US New York US-NY Schoharie US-NY-095 28.0 field behind Lancaster development L2711875 P 42.648139 -74.5416055 2015-02-26 11:10:00 obsr119187 S22079510 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307615538 2021-03-30 19:13:38.458673 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-04 10:40:00 obsr408487 S22691914 Stationary P21 EBIRD 32.0 6.0 1 G1205185 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299033016 2021-12-10 08:21:29.396662 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-22 08:30:00 obsr114791 S22027525 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306696116 2021-04-01 11:49:53.573686 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-04-01 10:49:00 obsr2574755 S22625018 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303575108 2021-11-09 18:45:10.02574 303 species avibase-B59E1863 Canada Goose Branta canadensis 8 United States US New York US-NY Dutchess US-NY-027 13.0 Lynch estate L3493182 P 41.8068373 -73.8697207 2015-03-16 12:00:00 obsr2849296 S22385986 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309424113 2015-04-12 14:47:05 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 6 United States US New York US-NY Richmond US-NY-085 Butler Manor Woods L2480238 H 40.5040106 -74.2260022 2015-04-12 11:53:00 obsr155915 S22821604 Traveling P22 EBIRD 25.0 0.322 3.0 1 G1216218 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309169621 2021-11-09 19:02:27.638861 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-04-11 14:45:00 obsr2241630 S22805435 Traveling P22 EBIRD 80.0 2.012 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324387747 2021-03-26 06:11:29.8335 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_1726 13.0 Duck Lake L3047142 P 43.1493445 -76.6843987 2015-05-29 10:00:00 obsr2050665 S23733042 Traveling P22 EBIRD 75.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311566688 2015-04-20 12:20:13 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis X United States US New York US-NY Tompkins US-NY-109 28.0 Caroline Elementary L3565901 P 42.3930529 -76.3717067 2015-04-20 08:10:00 obsr1550810 S22964464 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313875478 2015-04-28 18:50:22 32952 species avibase-DB20CB6B Cape May Warbler Setophaga tigrina 1 United States US New York US-NY Tompkins US-NY-109 13.0 Lmo's yard L1054947 P 42.4325795 -76.4785981 2015-04-28 18:30:00 obsr2326978 S23114655 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317433578 2021-03-30 19:13:38.458673 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 20 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-09 07:42:00 obsr195244 S23319825 Traveling P22 EBIRD 81.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289973511 2015-01-09 07:17:28 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-08 obsr1591201 S21261580 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306148593 2021-03-24 19:23:17.886063 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-03-29 12:08:00 obsr241086 S22582594 Stationary P21 EBIRD 10.0 4.0 1 G1197070 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301664076 2018-08-04 16:59:03 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 300 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek--23rd St. overlook L1847440 H 40.5793572 -73.9907261 2015-03-08 12:50:00 obsr454647 S22229602 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292136296 2021-03-30 19:39:10.250398 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 4 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-01-20 11:00:00 obsr2404509 S21434945 Traveling P22 EBIRD 40.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305146435 2021-03-26 07:56:20.588749 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 6 United States US New York US-NY Nassau US-NY-059 oceanside preserve L1472478 P 40.6230202 -73.6179777 2015-03-24 10:30:00 obsr1494607 S22506548 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS972326481 2021-10-17 07:31:27.668273 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 08:00:00 obsr2272914 S72822969 Traveling P22 EBIRD 180.0 5.0 2.0 1 G7321428 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324100053 2021-04-01 11:15:31.646886 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 4 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-30 13:08:00 obsr2404047 S23714306 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS920853804 2021-03-23 16:30:20.514143 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Mexico-192 Sage Creek Dr L3572034 P 43.52566 -76.238123 2015-04-28 08:05:00 obsr2720788 S68975055 Traveling P22 EBIRD 80.0 1.609 2.0 1 G5326510 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307582140 2021-04-01 12:14:19.266649 456 species avibase-D201EB72 American Wigeon Mareca americana N 6 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-04-04 09:30:00 obsr105122 S22689586 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309759544 2018-08-04 17:08:50 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Monroe US-NY-055 13.0 Martin Rd., N fields and transient pond L1170980 H 43.3450614 -77.8750849 2015-04-12 11:15:00 obsr408487 S22845094 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292123651 2021-11-09 17:43:04.343771 526 species avibase-56CCA717 Northern Pintail Anas acuta 60 United States US New York US-NY Dutchess US-NY-027 28.0 Red Wing Pond, Beekman L1034656 H 41.6005643 -73.7231211 2015-01-20 12:35:00 obsr1732267 S21433969 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291130269 2021-03-23 17:37:19.520785 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-01-15 08:00:00 obsr1664745 S21355289 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306365317 2021-04-01 12:11:50.996293 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 2 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-03-30 17:18:00 obsr354090 S22599006 Traveling P22 EBIRD 30.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304453195 2018-08-04 17:02:12 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Delaware US-NY-025 28.0 Bridge St., Downsville L2384566 H 42.0755272 -74.9899937 2015-03-21 09:21:00 obsr1788273 S22453792 Traveling P22 EBIRD 27.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322339052 2022-01-20 09:38:40.245267 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-21 09:30:00 obsr2357150 S23600356 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301415563 2021-04-01 12:14:19.266649 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus N 10 United States US New York US-NY Suffolk US-NY-103 Lake Montauk, Coast Guard Station L283127 H 41.07305 -71.9339556 2015-03-07 11:00:00 obsr2381457 S22211587 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291177145 2021-04-01 12:29:50.209479 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 Male, Adult (1) United States US New York US-NY Fulton US-NY-035 13.0 Bolster Hill Road L2695685 P 43.0133047 -74.591704 2015-01-15 16:00:00 obsr1000124 S21359095 Traveling P22 EBIRD 18.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313173379 2021-03-23 17:00:13.087107 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-25 19:40:00 obsr436489 S23070377 Traveling P22 EBIRD 45.0 1.0 2.0 1 G1237114 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313429984 2019-07-23 17:28:28 662 species avibase-FB738385 Bufflehead Bucephala albeola 30 United States US New York US-NY Oneida US-NY-065 13.0 Godfrey Point DEC Boat Launch L1570638 H 43.2235924 -75.8505869 2015-04-27 05:57:00 obsr666964 S23086630 Stationary P21 EBIRD 62.0 1.0 1 G1239030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312050482 2021-03-24 20:20:25.430732 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Schenectady US-NY-093 13.0 Indian Kill Nature Preserve L988655 H 42.8734428 -73.9117348 2015-04-22 08:20:00 obsr2846677 S22997020 Traveling P22 EBIRD 54.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309170775 2021-11-09 20:58:37.907104 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 6 United States US New York US-NY Rockland US-NY-087 28.0 Stony Point SP L2550812 H 41.2416315 -73.9734417 2015-04-11 15:00:00 obsr1121454 S22805518 Traveling P22 EBIRD 120.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295315844 2021-03-26 07:00:33.333856 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-02-06 07:00:00 obsr1982614 S21707097 Traveling P22 EBIRD 200.0 0.998 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322282841 2021-03-26 06:17:19.712573 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Erie US-NY-029 13.0 Stiglmeier Park L965034 H 42.8821636 -78.7297356 2015-05-23 09:20:00 obsr1172988 S23597074 Traveling P22 EBIRD 240.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302318724 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-10 10:00:00 obsr1668936 S22285538 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305028479 2022-02-18 10:47:29.953615 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-24 07:05:00 obsr1062070 S22497391 Stationary P21 EBIRD 91.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS503442257 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-08 17:00:00 obsr282856 S37071193 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307706577 2021-03-24 20:20:25.430732 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 7 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-05 10:45:00 obsr281585 S22697964 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308807072 2021-03-24 19:23:17.886063 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-03-28 obsr1395007 S22780676 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307452593 2021-03-26 07:00:33.333856 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-04-04 12:30:00 obsr676630 S22680500 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313768446 2021-04-01 11:24:19.637193 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 13.0 Harwick Rd., Irondequoit (Varied Thrush 2015) L3592824 H 43.1740003 -77.5539672 2015-04-28 07:30:00 obsr2223307 S23107765 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315269547 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 28 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 06:47:00 obsr642993 S23197558 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311861657 2015-04-21 19:11:32 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Schoharie US-NY-095 28.0 42.6464x-74.3902 - Apr 21, 2015, 7:15 AM L3580873 P 42.646389 -74.390228 2015-04-21 07:15:00 obsr2268588 S22984503 Stationary P21 EBIRD 6.0 1.0 1 G1230543 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317454821 2021-07-29 22:37:09.140265 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-09 obsr1220115 S23321041 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318238106 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-10 08:10:00 obsr876649 S23363943 Traveling P22 EBIRD 270.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318760629 2021-04-01 11:30:42.037277 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-11 05:45:00 obsr2448505 S23392712 Traveling P22 EBIRD 420.0 8.047 5.0 1 G1266741 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292497693 2021-03-26 07:19:24.261425 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Steuben US-NY-101 28.0 pamandpaul-home L499201 P 42.29185 -77.3240089 2015-01-21 08:00:00 obsr2696253 S21483677 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310956683 2015-04-18 15:24:27 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Oswego US-NY-075 13.0 Mexico Point State Park boat launch L3008212 P 43.525064 -76.255516 2015-04-18 14:45:00 obsr1321679 S22926805 Traveling P22 EBIRD 35.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307991256 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-06 09:01:00 obsr904434 S22718793 Traveling P22 EBIRD 203.0 8.53 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300548172 2021-04-01 12:18:57.910168 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-03-02 09:00:00 obsr800690 S22145297 Stationary P21 EBIRD 20.0 2.0 1 G1165343 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310425512 2021-03-30 19:22:51.561415 6040 species avibase-E7A14E91 Willet Tringa semipalmata 8 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr150865 S22891298 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320944075 2021-03-30 19:13:38.458673 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 70 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 10:05:00 obsr1962295 S23514560 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324081949 2021-11-15 03:06:58.889978 31530 species avibase-B48335B1 Pine Siskin Spinus pinus N 17 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-24 11:13:00 obsr1548221 S23713114 Traveling P22 EBIRD 377.0 4.828 2.0 1 G1296580 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313506288 2021-11-09 19:55:29.587179 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 40 United States US New York US-NY Orange US-NY-071 28.0 Six and a Half Station Rd. Sanctuary L306143 H 41.4025242 -74.3499176 2015-04-27 09:15:00 obsr1568163 S23091265 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296287599 2021-04-01 11:49:53.573686 483 species avibase-85625D75 Mallard Anas platyrhynchos N X United States US New York US-NY Queens US-NY-081 30.0 Queens County Location (2) L2108173 P 40.7818413 -73.8626719 2015-02-12 15:45:00 obsr2436774 S21784152 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319496140 2018-08-06 22:29:52 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-14 06:35:00 obsr2321296 S23435335 Traveling P22 EBIRD 117.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297702409 2019-08-16 18:36:33 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-16 13:45:00 obsr2793388 S21912353 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309717880 2022-03-05 22:03:50.715584 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-13 08:30:00 obsr444155 S22841511 Traveling P22 EBIRD 210.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323732568 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY New York US-NY-061 East River, Brooklyn Bridge to S.I. Ferry L3339003 H 40.7039737 -74.0059423 2015-05-29 07:07:00 obsr2179748 S23690428 Traveling P22 EBIRD 80.0 3.589 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313574730 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-27 12:00:00 obsr699769 S23095280 Traveling P22 EBIRD 180.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309515025 2015-04-12 18:44:16 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-04-12 09:30:00 obsr2766625 S22827439 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297364320 2021-11-09 20:53:17.759253 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Rockland US-NY-087 30.0 Nanuet L1293607 P 41.0931306 -74.0298271 2015-02-15 13:15:00 obsr1932005 S21881579 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290925270 2021-04-01 11:42:15.525388 5976 species avibase-F4829920 American Woodcock Scolopax minor 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 US-NY-Lewiston-700 Mohawk St L3290757 P 43.177302 -79.038317 2015-01-13 12:32:00 obsr1895272 S21337495 Traveling P22 EBIRD 15.0 3.219 3.0 1 G1108702 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318242726 2015-05-10 17:09:36 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-10 06:48:00 obsr119187 S23364180 Traveling P22 EBIRD 149.0 2.012 3.0 1 G1262140 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309868024 2021-03-31 04:04:22.116638 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Suffolk US-NY-103 30.0 Peconic river,calverton L2770249 P 40.902258 -72.7517653 2015-04-13 15:00:00 obsr2011512 S22852604 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298613689 2015-05-06 20:08:00 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC--Visitor Center feeders L3254639 P 42.6086106 -73.8904153 2015-02-20 14:10:00 obsr2855945 S21992031 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291609600 2021-03-24 20:16:00.852773 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 3 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-18 08:00:00 obsr1958124 S21393820 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313019105 2020-03-15 09:14:30 406 species avibase-27B2749A Wood Duck Aix sponsa 12 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo--Mirror Lake L2809120 H 42.9268351 -78.8632295 2015-04-25 15:30:00 obsr1043007 S23061159 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287234 2018-08-04 16:52:19 11371 species avibase-75600969 Northern Flicker Colaptes auratus 110 United States US New York US-NY Richmond US-NY-085 Joline Ave. Beach L1340805 H 40.5011224 -74.2331594 2015-01-01 11:13:00 obsr1893950 S21125158 Stationary P21 EBIRD 7.0 2.0 1 G1088907 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289578791 2021-03-26 06:29:56.44369 526 species avibase-56CCA717 Northern Pintail Anas acuta N 100 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-01-05 07:30:00 obsr2449897 S21230239 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS335956736 2021-03-23 16:52:36.900075 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven National Laboratory (restricted access) L2808445 H 40.8710034 -72.880066 2015-04-27 06:07:00 obsr2137822 S24576712 Traveling P22 EBIRD 97.0 4.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870273 2021-03-23 17:00:13.087107 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Tompkins US-NY-109 28.0 W Malloryville Rd. / Peruville Rd. swamp L1796316 P 42.544169 -76.323114 2015-01-11 09:33:00 obsr34822 S22246835 Stationary P21 EBIRD 8.0 3.0 1 G1106104 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321580638 2015-05-20 21:10:53 8806 species avibase-FC4D40D2 Long-eared Owl Asio otus 6 United States US New York US-NY Herkimer US-NY-043 13.0 Little Falls, New York, US L3559350 P 43.0831723 -74.8360133 2015-05-20 09:30:00 obsr592357 S23554048 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307110593 2021-03-23 16:39:03.255227 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF L1341670 H 40.51575 -74.2252678 2015-04-03 08:42:00 obsr1958124 S22655969 Traveling P22 EBIRD 20.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291864414 2021-03-24 19:48:44.880783 27616 species avibase-D77E4B41 American Robin Turdus migratorius 8 United States US New York US-NY Monroe US-NY-055 13.0 Priem Road, Hamlin L8195215 H 43.3391682 -77.9354674 2015-01-18 09:30:00 obsr1894451 S21413422 Stationary P21 EBIRD 15.0 9.0 1 G1114597 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314500075 2021-03-26 07:30:35.289997 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Stewart Park and Renwick Woods L1131448 H 42.4589608 -76.5055355 2015-04-30 18:53:00 obsr2673845 S23153334 Traveling P22 EBIRD 90.0 0.322 6.0 1 G1244946 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303294314 2021-04-01 12:43:36.236969 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Tioga US-NY-107 28.0 AA Dairy, Candor L3490118 P 42.2384 -76.36348 2015-03-15 12:33:00 obsr1655171 S22362569 Traveling P22 EBIRD 12.0 0.483 2.0 1 G1180907 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317774036 2021-04-01 11:15:31.646886 456 species avibase-D201EB72 American Wigeon Mareca americana X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 07:00:00 obsr139757 S23338952 Traveling P22 EBIRD 480.0 11.265 5.0 0 G1259834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316859942 2021-03-26 06:39:43.334073 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis N 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Triplets Br. area (btwn 77th-79th St. transv.) L4525727 H 40.779838 -73.9724077 2015-05-07 09:38:00 obsr1548221 S23286990 Traveling P22 EBIRD 16.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320072313 2018-08-06 22:30:00 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Chenango US-NY-017 28.0 Home woods L3452888 P 42.3471065 -75.6650519 2015-05-15 08:50:00 obsr1303581 S23467833 Traveling P22 EBIRD 145.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309411380 2021-03-30 19:13:38.458673 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-04-12 13:50:00 obsr1124114 S22820895 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317039125 2021-03-24 19:20:44.053843 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 1 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-05-07 08:31:00 obsr1826325 S23297324 Traveling P22 EBIRD 90.0 8.047 1.0 1 G1256768 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305619757 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-27 12:45:00 obsr547602 S22543280 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288490752 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 22 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-01 10:00:00 obsr644027 S21141735 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305747652 2021-03-26 06:58:34.561206 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-03-28 09:58:00 obsr2588479 S22553097 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306137681 2022-02-18 10:47:29.953615 6339 species avibase-8535345B Herring Gull Larus argentatus 1 S C2 S United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-29 15:55:00 obsr1062070 S22581766 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292917443 2018-08-04 16:55:08 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:25:00 obsr2001485 S21516940 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298730795 2020-04-10 18:36:08 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 3 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-21 10:02:00 obsr2172593 S22002394 Traveling P22 EBIRD 67.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310500379 2021-03-26 06:52:34.887371 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Niagara US-NY-063 13.0 Private Yard Burt, NY L1353182 P 43.3261861 -78.7740533 2015-04-16 16:00:00 obsr2588479 S22896794 Stationary P21 EBIRD 21.0 3.0 1 G1222156 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311145088 2021-03-26 06:21:54.883933 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 15:20:00 obsr1711339 S22938341 Traveling P22 EBIRD 60.0 1.207 3.0 1 G1225484 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298062469 2020-03-03 19:33:23 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 58 United States US New York US-NY Kings US-NY-047 US-NY_1722 Shirley Chisholm SP (Fountain Ave. Landfill) L671525 H 40.6472791 -73.8624734 2015-02-17 15:28:00 obsr1821546 S21944704 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312139284 2021-04-01 11:15:31.646886 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 9 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-22 07:00:00 obsr827632 S23002678 Traveling P22 EBIRD 190.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS470300932 2021-11-15 03:06:58.889978 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-10 07:00:00 obsr1843598 S34784699 Traveling P22 EBIRD 300.0 3.0 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306552219 2021-04-01 11:30:42.037277 16284 species avibase-33808812 Alder Flycatcher Empidonax alnorum 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-31 07:50:00 obsr1668936 S22613827 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316787731 2021-12-24 11:02:14.483178 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 20 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-07 07:25:00 obsr1958774 S23283287 Traveling P22 EBIRD 95.0 2.092 2.0 1 G1291693 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314150921 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 09:00:00 obsr139757 S23131479 Traveling P22 EBIRD 270.0 4.828 4.0 1 G1243147 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308644989 2021-04-01 10:55:39.308231 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 7 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-09 10:01:00 obsr502830 S22768035 Traveling P22 EBIRD 128.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303969016 2021-04-01 12:30:15.438381 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N 12 United States US New York US-NY Herkimer US-NY-043 13.0 Herkimer - East L3497923 P 43.032584 -74.9819255 2015-03-18 14:05:00 obsr1000124 S22416656 Incidental P20 EBIRD 3.0 0 G1185779 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318808893 2021-04-01 10:47:08.851048 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Broome US-NY-007 28.0 917 grant street L1861629 P 42.1114312 -76.0806034 2015-05-08 12:30:00 obsr1947568 S23395532 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294406061 2021-03-26 06:58:34.561206 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 33 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-02-01 07:23:00 obsr2588479 S21634375 Traveling P22 EBIRD 177.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311405535 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 10:15:00 obsr609516 S22954345 Traveling P22 EBIRD 150.0 4.023 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305252049 2021-12-28 15:50:27.785498 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-03-25 13:55:00 obsr606693 S22514644 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322824679 2018-08-06 22:31:04 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 3 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-24 20:14:00 obsr1334267 S23628767 Traveling P22 EBIRD 18.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298681732 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-20 08:50:00 obsr856524 S21998127 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324129472 2021-03-19 16:06:54.047432 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 4 United States US New York US-NY Cayuga US-NY-011 28.0 Summerhill SF--Lick St. Christmas Tree Farm L1318052 H 42.6464402 -76.3459897 2015-05-31 06:39:00 obsr1696616 S23716269 Traveling P22 EBIRD 17.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314031612 2015-04-30 10:57:40 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chenango US-NY-017 28.0 Home woods L3452888 P 42.3471065 -75.6650519 2015-04-29 07:35:00 obsr1303581 S23124359 Traveling P22 EBIRD 150.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299663621 2021-03-24 20:33:47.533911 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 1 F C1 F United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N Sherwood Pltform base - small brdg (0.15km) L1370979 P 42.4801875 -76.4541519 2015-02-26 07:58:00 obsr2307843 S22077672 Traveling P22 EBIRD 10.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307810440 2021-03-23 16:52:36.900075 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 6 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-04-05 14:00:00 obsr150865 S22705464 Traveling P22 EBIRD 105.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323600049 2018-08-06 22:31:15 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 12 United States US New York US-NY Broome US-NY-007 28.0 Whittacker Swamp SF L3680051 H 42.03614 -75.4353 2015-05-27 10:48:00 obsr1830659 S23679809 Traveling P22 EBIRD 92.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292988156 2021-11-15 03:06:58.889978 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-24 14:30:00 obsr2793388 S21522175 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS321095028 2021-11-09 18:42:19.628792 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-18 07:45:00 obsr1917973 S23524056 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320582947 2015-12-22 23:05:00 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Hill Higher SF L490896 H 42.0386329 -79.4563225 2015-05-17 11:20:00 obsr1380963 S23494185 Traveling P22 EBIRD 30.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309515359 2021-11-09 18:56:49.988387 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies L428335 H 41.7861111 -73.7397222 2015-04-12 12:30:00 obsr2700041 S22827467 Traveling P22 EBIRD 150.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361564414 2021-11-30 17:34:34.127683 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 20 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region--Sod Farms L682671 H 41.3257764 -74.4660351 2015-02-07 13:23:00 obsr132593 S26494840 Traveling P22 EBIRD 90.0 9.656 2.0 1 G1516812 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309080650 2021-04-01 11:47:43.260314 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 10 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-04-11 11:33:00 obsr2224244 S22799704 Traveling P22 EBIRD 37.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308206325 2021-04-01 11:54:40.172593 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-07 08:37:00 obsr1958124 S22734825 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309963880 2018-08-04 17:09:06 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 48 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-14 07:13:00 obsr1222746 S22859450 Rusty Blackbird Spring Migration Blitz P41 EBIRD 79.0 1.046 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315042611 2021-03-19 16:28:51.38749 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Greene US-NY-039 28.0 Moore Rd L1810817 P 42.3536934 -74.1764566 2015-05-02 07:15:00 obsr445187 S23184896 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300230790 2021-04-01 11:49:53.573686 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 9 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-02-28 10:41:00 obsr1407710 S22122521 Traveling P22 EBIRD 147.0 4.0 13.0 1 G1162162 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311000192 2021-03-24 21:10:11.310781 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Saratoga US-NY-091 13.0 23 scotch mist way L1882732 P 42.96589 -73.7828351 2015-04-18 obsr2774749 S22929495 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309471852 2018-02-25 21:01:57 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Saratoga US-NY-091 13.0 Saratoga Lake, east shore (9P) L469391 H 43.009 -73.7302 2015-04-12 13:30:00 obsr820113 S22824400 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294894837 2015-02-04 15:00:06 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-02-04 11:45:00 obsr247620 S21673888 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290248694 2021-04-01 11:54:40.172593 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Richmond US-NY-085 30.0 Van Name-Van Pelt Cove L1393163 H 40.6371191 -74.1532295 2015-01-10 13:32:00 obsr1893950 S21284393 Stationary P21 EBIRD 8.0 2.0 1 G1103714 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308501772 2015-04-08 16:26:43 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Columbia US-NY-021 13.0 Bells Pond L386600 H 42.1719916 -73.7567139 2015-04-06 10:30:00 obsr481595 S22757280 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295540894 2021-11-09 20:12:16.773384 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 12 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-02-08 09:10:00 obsr1912104 S21725372 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319778359 2021-03-24 19:40:51.185319 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus N 2 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-15 08:41:00 obsr1302604 S23451633 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305375513 2021-04-01 11:49:53.573686 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens N 16 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-03-26 08:35:00 obsr2574755 S22524264 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308293565 2018-08-04 17:08:00 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-07 14:55:00 obsr1655171 S22741259 Stationary P21 EBIRD 40.0 5.0 1 G1210024 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290402142 2021-03-26 07:56:20.588749 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-11 09:43:00 obsr2756208 S21296660 Traveling P22 EBIRD 115.0 0.966 6.0 1 G1105090 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307218931 2021-03-26 07:00:33.333856 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-04-03 16:28:00 obsr2574755 S22663605 Traveling P22 EBIRD 28.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296809511 2021-03-26 07:56:20.588749 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 3 United States US New York US-NY Nassau US-NY-059 30.0 my home L1939055 P 40.6503643 -73.6604977 2015-02-14 11:00:00 obsr121600 S21832122 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307172988 2021-03-30 19:29:33.633096 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-03 10:30:00 obsr1137265 S22660400 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314606426 2021-03-26 07:07:10.758746 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-30 17:00:00 obsr2342280 S23159954 Traveling P22 EBIRD 60.0 4.828 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312834124 2021-03-26 06:39:43.334073 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 08:30:00 obsr800463 S23050150 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311643272 2018-08-04 17:10:30 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Oswego US-NY-075 13.0 Peter Scott Swamp L248391 H 43.2444498 -76.2705344 2015-04-19 08:40:00 obsr1167884 S22970293 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313214929 2015-05-05 20:21:45 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--median strip L3310253 H 40.5875594 -73.5588285 2015-04-26 09:30:00 obsr2505956 S23072797 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308413876 2021-04-01 12:28:44.297881 11528 species avibase-F3DA111C Merlin Falco columbarius 5 United States US New York US-NY Chenango US-NY-017 28.0 Chenango River along RR tracks L3528471 P 42.3709608 -75.6386 2015-04-07 09:34:00 obsr1303581 S22750286 Traveling P22 EBIRD 76.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315768795 2021-11-09 17:58:40.313796 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-04 08:00:00 obsr445356 S23224327 Traveling P22 EBIRD 240.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320683248 2021-11-15 03:06:58.889978 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 09:20:00 obsr1706920 S23499537 Traveling P22 EBIRD 260.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301068228 2021-03-30 06:01:28.020715 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 1 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-03-05 14:03:00 obsr2914424 S22183815 Traveling P22 EBIRD 37.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298813236 2021-03-30 19:07:52.958398 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-21 14:45:00 obsr876649 S22009205 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307838660 2021-11-09 21:37:00.113189 622 species avibase-50566E50 Lesser Scaup Aythya affinis X United States US New York US-NY Ulster US-NY-111 13.0 Lauren Tice Rd. L1466304 H 42.1212699 -73.9463407 2015-04-05 18:25:00 obsr1588136 S22707521 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313241519 2021-03-26 07:30:35.289997 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 6 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-04-25 17:25:00 obsr620377 S23074335 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308602797 2021-11-09 21:41:38.795423 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-04-08 07:00:00 obsr1588136 S22764838 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300203071 2021-03-26 06:29:56.44369 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-02-28 08:03:00 obsr2595828 S22119942 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296820871 2018-08-04 16:55:52 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 11 Male, Adult (1); Female, Adult (10) United States US New York US-NY Delaware US-NY-025 28.0 Bridge St., Downsville L2384566 H 42.0755272 -74.9899937 2015-02-08 08:55:00 obsr1788273 S21833134 Traveling P22 EBIRD 45.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303022281 2021-03-24 20:13:27.613389 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-03-11 10:00:00 obsr1982614 S22342249 Traveling P22 EBIRD 65.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313478635 2018-08-04 17:12:30 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 7 United States US New York US-NY Suffolk US-NY-103 30.0 North Fork Preserve L1421657 H 40.97294 -72.6178146 2015-04-27 08:30:00 obsr1736113 S23089552 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295439033 2021-04-01 11:15:31.646886 3543 species avibase-8D3E8871 Chuck-will's-widow Antrostomus carolinensis 2 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-02-07 13:00:00 obsr1711339 S21717268 Traveling P22 EBIRD 60.0 0.402 5.0 1 G1138084 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288325444 2021-04-01 12:31:09.823741 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Livingston US-NY-051 13.0 County Route 71 L730552 P 42.7069197 -77.6757324 2015-01-01 14:53:00 obsr72341 S21128446 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313625914 2022-03-05 22:03:50.715584 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-27 16:00:00 obsr444155 S23098581 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323383055 2021-04-01 11:15:31.646886 32949 species avibase-15EB3000 Hooded Warbler Setophaga citrina 3 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-27 10:00:00 obsr1152226 S23665002 Traveling P22 EBIRD 105.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300971550 2015-03-04 21:15:24 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-03-04 06:50:00 obsr2716320 S22177039 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295040946 2021-03-26 08:11:28.0353 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 1 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Stillwater, NY 52 county route 76 L1926398 P 42.933103 -73.680332 2015-02-05 13:08:00 obsr2564462 S21686658 Stationary P21 EBIRD 62.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313877061 2018-08-04 17:12:38 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-04-28 16:50:00 obsr934639 S23114764 Traveling P22 EBIRD 123.0 2.012 2.0 1 G1335321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300461827 2021-03-26 06:07:26.162322 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-03-01 09:30:00 obsr2700440 S22139508 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314259272 2021-03-22 09:17:32.016297 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 3 United States US New York US-NY Oneida US-NY-065 13.0 2480 rt 49 blossvale L1583204 P 43.228321 -75.7079151 2015-04-29 08:00:00 obsr2197275 S23138432 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306996822 2021-04-01 11:15:31.646886 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-02 13:45:00 obsr1659461 S22647493 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307203364 2021-04-01 12:14:19.266649 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 37 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Ocean Parkway L286801 P 40.6159065 -73.402978 2015-04-03 14:30:00 obsr706483 S22662429 Traveling P22 EBIRD 120.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302085355 2015-03-09 20:20:10 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 Male, Unknown Age (1); Female, Unknown Age (1) United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach Causeway L549272 H 40.6233341 -73.5014534 2015-03-09 17:45:00 obsr647628 S22263001 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317484793 2021-04-01 10:49:39.496318 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-05-09 10:50:00 obsr887540 S23323502 Traveling P22 EBIRD 21.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317981164 2021-04-01 12:30:15.438381 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-05-07 05:15:00 obsr2694889 S23350442 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310907253 2021-03-30 19:43:32.881136 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 10 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-04-18 09:40:00 obsr1585090 S22923724 Traveling P22 EBIRD 200.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306207123 2021-03-26 07:30:35.289997 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 20 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-29 08:25:00 obsr1655171 S22587124 Traveling P22 EBIRD 63.0 0.966 2.0 1 G1198724 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302432550 2022-02-17 14:32:23.002448 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-11 08:32:00 obsr1605975 S22296647 Traveling P22 EBIRD 135.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296421692 2021-03-26 06:07:45.516082 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 6 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-02-13 07:00:00 obsr128156 S21797094 Area P23 EBIRD 180.0 64.7497 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311515121 2021-04-01 12:32:15.282601 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-10 13:58:00 obsr2233270 S22961055 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319825450 2021-11-09 18:22:29.372367 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Dutchess US-NY-027 13.0 River paddle L1487368 P 42.0469932 -73.927686 2015-05-15 07:45:00 obsr671490 S23454287 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316053551 2021-11-09 18:47:10.00608 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias N 2 United States US New York US-NY Dutchess US-NY-027 13.0 Poughkeepsie Smith St L3614871 P 41.705826 -73.915955 2015-05-05 10:25:00 obsr1732267 S23240714 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310482484 2020-06-20 20:01:51 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Chenango US-NY-017 US-NY_2780 28.0 Long Pond SF--Rt. 41 fishing access L3074026 H 42.422518 -75.851062 2015-04-16 14:55:00 obsr1303581 S22895530 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322499399 2021-03-26 06:21:54.883933 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 09:49:00 obsr173911 S23609550 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307416907 2021-04-01 12:14:19.266649 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum N X United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-04 10:00:00 obsr547602 S22678186 Traveling P22 EBIRD 75.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288192837 2021-03-23 17:18:00.959502 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 1 United States US New York US-NY Albany US-NY-001 13.0 pauley lane L3253415 P 42.6503428 -73.882606 2015-01-01 11:45:00 obsr2774749 S21116906 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322310900 2021-03-19 16:12:42.877422 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Columbia US-NY-021 14.0 Hand Hollow Conservation Area L2171768 H 42.468045 -73.4858322 2015-05-23 08:00:00 obsr2766625 S23598688 Traveling P22 EBIRD 285.0 3.058 4.0 1 G1286068 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318198996 2021-04-01 11:15:31.646886 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 5 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-10 05:30:00 obsr2233143 S23361694 Area P23 EBIRD 510.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979034 2018-08-04 16:54:51 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Rensselaer US-NY-083 13.0 US-NY-Melrose-2950-2976 River Rd L3314572 P 42.882001 -73.672035 2015-01-22 12:15:00 obsr648176 S21521422 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315182023 2021-04-01 11:15:31.646886 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-02 06:30:00 obsr827632 S23192708 Traveling P22 EBIRD 315.0 4.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308284168 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-07 13:30:00 obsr800690 S22740592 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307924228 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 09:00:00 obsr644027 S22714015 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296513361 2021-03-26 06:53:58.593564 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Oneida US-NY-065 13.0 Feeder in Kirkland L2643301 P 43.022124 -75.3866997 2015-02-13 14:20:00 obsr801283 S21805428 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319786986 2015-05-15 09:44:09 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Rensselaer US-NY-083 14.0 Jones Road Extension L1051585 P 42.8123718 -73.3462286 2015-04-28 16:00:00 obsr215455 S23452154 Traveling P22 EBIRD 47.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306020897 2018-08-04 17:04:35 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Oswego US-NY-075 13.0 Great Bear Recreation Area L664197 H 43.2666087 -76.3654238 2015-03-29 08:52:00 obsr2224244 S22573125 Traveling P22 EBIRD 199.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314122977 2021-08-17 17:04:27.67662 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY St. Lawrence US-NY-089 13.0 Maple Ridge Road_1 L2233566 P 44.4395751 -75.4456258 2015-04-29 05:05:00 obsr1558090 S23129824 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322428697 2018-08-06 22:30:59 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Blueberry Hill East and West L782514 H 42.7004751 -73.8682283 2015-05-24 05:58:00 obsr1154 S23605661 Traveling P22 EBIRD 112.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305962404 2021-03-26 07:56:20.588749 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Nassau US-NY-059 30.0 001home, bethpage, ny L1333196 P 40.719284 -73.4770712 2015-03-29 07:00:00 obsr547602 S22568891 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291221058 2021-03-23 17:37:19.520785 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Saratoga US-NY-091 13.0 Goff Rd., Saratoga (town) L1882033 H 43.1136484 -73.6094726 2015-01-15 14:06:00 obsr1222746 S21362879 Traveling P22 EBIRD 36.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321400497 2021-11-09 18:47:29.807189 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Dutchess US-NY-027 14.0 Tower Hill R. Millbrook L3649953 P 41.7953442 -73.6036992 2015-05-16 12:51:00 obsr763723 S23543115 Traveling P22 EBIRD 69.0 0.0 3.0 1 G1274935 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304673457 2015-03-23 10:48:41 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Road L2843782 P 42.43659 -76.39238 2015-03-22 11:01:00 obsr1655171 S22470140 Traveling P22 EBIRD 13.0 0.483 2.0 1 G1190060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296925189 2021-04-01 11:58:54.966271 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-02-14 07:13:00 obsr2211750 S21842304 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310344569 2017-02-03 18:54:43 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Erie US-NY-029 13.0 Stiglmeier Park L965034 H 42.8821636 -78.7297356 2015-04-15 12:10:00 obsr319738 S22885722 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311776056 2021-03-30 19:40:59.354574 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--Liverpool Marina L837889 H 43.1007479 -76.2093687 2015-04-21 08:06:00 obsr2561576 S22978916 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318988514 2021-04-01 11:15:31.646886 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 07:30:00 obsr2152799 S23405842 Traveling P22 EBIRD 240.0 8.047 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309563533 2021-03-30 19:13:38.458673 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-04-12 11:15:00 obsr302343 S22830700 Traveling P22 EBIRD 150.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298259018 2021-11-09 18:34:57.804398 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-02-18 14:00:00 obsr1264675 S21961306 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294997435 2021-04-01 11:49:53.573686 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 2 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-02-05 07:22:00 obsr2574755 S21682363 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296922431 2021-04-01 11:15:31.646886 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-13 16:20:00 obsr150415 S21842041 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296759067 2019-07-23 17:27:21 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 41 United States US New York US-NY Suffolk US-NY-103 30.0 Duck Pond L142880 P 41.0376472 -72.5206833 2015-02-14 13:35:00 obsr2485753 S21827791 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317204296 2020-11-12 13:33:46 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-05-07 18:00:00 obsr317968 S23306136 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299817676 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Monroe US-NY-055 13.0 998 cane patch webster ny L2689634 P 43.198669 -77.5033951 2015-02-27 07:15:00 obsr1277758 S22089450 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302522467 2021-03-30 19:29:33.633096 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 West Brook Pond L2714029 H 40.7469795 -73.1564298 2015-03-11 18:37:00 obsr1107696 S22303446 Rusty Blackbird Spring Migration Blitz P41 EBIRD 10.0 0.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291881380 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 25 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-19 09:45:00 obsr934639 S21414775 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299223287 2021-03-26 07:07:10.758746 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-02-23 13:37:00 obsr1893950 S22043872 Stationary P21 EBIRD 113.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290446633 2021-03-30 19:29:33.633096 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-11 08:00:00 obsr444155 S21300144 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1105411 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296106891 2021-03-26 08:14:04.726922 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Warren US-NY-113 13.0 Gentry Lane L3353460 P 43.3414566 -73.658545 2015-02-07 obsr1471245 S21769518 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319932105 2018-02-01 15:11:46 32973 species avibase-10C601D3 Bay-breasted Warbler Setophaga castanea 2 United States US New York US-NY Cortland US-NY-023 28.0 AviCor22 L3513964 H 42.5801264 -76.092219 2015-05-09 13:24:00 obsr2535282 S23459865 Stationary P21 EBIRD 9.0 2.0 1 G1272241 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308803221 2021-03-26 07:52:59.845315 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 Male, Adult (5) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-07 08:00:00 obsr316199 S22780410 Area P23 EBIRD 68.0 2.59 2.0 1 G1213046 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289065482 2021-04-01 11:30:42.037277 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park/Ramble L3265686 P 40.7766093 -73.9694077 2015-01-04 12:30:00 obsr336119 S21189904 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302554471 2021-11-09 18:49:39.300433 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Dutchess US-NY-027 US-NY_2790 28.0 Dennings Point SP L393533 H 41.4888644 -73.9865263 2015-03-11 09:12:00 obsr1732267 S22306085 Traveling P22 EBIRD 116.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291798901 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-01-18 07:40:00 obsr2449897 S21408590 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304918543 2022-02-17 14:32:23.002448 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 200 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-23 13:29:00 obsr1605975 S22488324 Traveling P22 EBIRD 100.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301969504 2021-03-26 08:13:27.160698 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 1 United States US New York US-NY Tioga US-NY-107 28.0 Spencer Lake--Cowell Rd. viewpoint L3469055 P 42.2543313 -76.5040898 2015-03-09 08:08:00 obsr1318356 S22253899 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303023960 2015-03-14 11:50:58 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Westchester US-NY-119 28.0 Brinton Brook Sanctuary L893096 H 41.2268584 -73.8992411 2015-03-14 08:45:00 obsr572503 S22342389 Traveling P22 EBIRD 85.0 2.414 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311155898 2021-03-31 04:01:10.517395 11494 species avibase-20C2214E American Kestrel Falco sparverius 5 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 07:35:00 obsr454647 S22939055 Traveling P22 EBIRD 320.0 8.047 16.0 1 G1224971 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305478423 2021-03-24 19:27:13.077399 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 10 United States US New York US-NY Chemung US-NY-015 28.0 Van Etten Wildlife Sanctuary L2318845 H 42.2022855 -76.5450659 2015-03-26 16:30:00 obsr2430746 S22532369 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313811695 2021-03-19 16:06:54.047432 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 8 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.7320406 -76.7083025 2015-04-28 14:15:00 obsr887540 S23110510 Traveling P22 EBIRD 17.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311671695 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-20 15:30:00 obsr1668936 S22972309 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288143157 2021-03-26 06:29:56.44369 6029 species avibase-D4A73324 Solitary Sandpiper Tringa solitaria 10 United States US New York US-NY Monroe US-NY-055 13.0 Jacobs Rd. (Hamlin) L651742 P 43.3428767 -77.9506159 2015-01-01 11:00:00 obsr991026 S21112751 Traveling P22 EBIRD 26.0 2.414 1.0 1 G1087972 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS319801720 2021-11-15 03:06:58.889978 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 06:41:00 obsr884514 S23452903 Traveling P22 EBIRD 180.0 1.207 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303323427 2018-08-04 17:01:30 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Chenango US-NY-017 28.0 Chenango River near Blueox L3490507 P 42.4449026 -75.5940646 2015-03-15 15:10:00 obsr1303581 S22365869 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316543246 2021-03-26 06:39:43.334073 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Oven and The Point L1480317 H 40.7756262 -73.9700541 2015-05-06 11:25:00 obsr794187 S23269074 Traveling P22 EBIRD 35.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305840571 2021-03-24 20:49:55.752669 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY Wayne US-NY-117 13.0 East Palmyra L1156478 P 43.0839344 -77.1562529 2015-03-28 10:30:00 obsr2561613 S22559769 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309142373 2021-04-01 11:49:53.573686 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-11 10:45:00 obsr16685 S22803567 Traveling P22 EBIRD 245.0 9.334 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306364537 2018-08-04 17:04:48 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9213-9263 Jackson Hill Rd L3523908 P 42.243917 -78.264983 2015-03-30 17:24:00 obsr955789 S22598933 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313628595 2019-07-24 17:34:53 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr1481512 S23098757 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317437614 2021-03-26 07:53:57.664705 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 US-NY PORTAGE-Letchworth SP-River Rd. L3493751 P 42.575554 -78.020111 2015-05-07 10:25:00 obsr731272 S23320049 Traveling P22 EBIRD 232.0 12.553 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306477506 2021-03-23 16:47:03.540174 7011 species avibase-534FB490 Northern Gannet Morus bassanus 5 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-03-31 08:00:00 obsr1918430 S22608075 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323289702 2021-11-09 17:58:40.313796 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-13 08:00:00 obsr1469078 S23658847 Traveling P22 EBIRD 210.0 5.633 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315905200 2021-11-09 17:58:40.313796 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-04 07:00:00 obsr671490 S23231853 Traveling P22 EBIRD 180.0 3.219 23.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313050314 2021-04-01 10:51:06.899622 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-26 06:56:00 obsr1092576 S23063161 Stationary P21 EBIRD 68.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310150045 2020-04-10 19:28:07 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 594 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-14 08:15:00 obsr979921 S22872447 Stationary P21 EBIRD 480.0 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS313731208 2016-11-16 15:26:38 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 3 United States US New York US-NY Schoharie US-NY-095 28.0 42.594816,-74.275308 L3358128 P 42.5944804 -74.2745304 2015-04-28 06:30:00 obsr2161435 S23105415 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308633914 2021-03-24 20:53:39.352228 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-04-08 obsr1591201 S22767179 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305399224 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 2 United States US New York US-NY Nassau US-NY-059 30.0 Hofstra University L639147 H 40.7145119 -73.6003128 2015-03-26 10:36:00 obsr904434 S22526198 Traveling P22 EBIRD 18.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313094546 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 07:10:00 obsr2273061 S23065813 Traveling P22 EBIRD 240.0 6.437 29.0 1 G1237822 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299011793 2021-11-09 22:04:47.967972 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-20 16:02:00 obsr341904 S22025210 Incidental P20 EBIRD 4.0 0 G1156474 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298922126 2022-02-18 10:47:29.953615 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-02-22 07:14:00 obsr1062070 S22018066 Stationary P21 EBIRD 125.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308161010 2021-04-01 12:30:15.438381 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Platform Road - Town of Fairfield L622941 P 43.1581106 -74.9605751 2015-04-06 16:10:00 obsr316199 S22730938 Traveling P22 EBIRD 8.0 6.598 3.0 1 G1209068 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317407860 2021-03-19 16:14:11.035882 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor17 L3513959 H 42.7032769 -76.0747739 2015-05-09 06:34:00 obsr620377 S23318299 Stationary P21 EBIRD 12.0 2.0 1 G1272253 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313768429 2021-04-01 11:24:19.637193 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca X United States US New York US-NY Monroe US-NY-055 13.0 Harwick Rd., Irondequoit (Varied Thrush 2015) L3592824 H 43.1740003 -77.5539672 2015-04-28 07:30:00 obsr2223307 S23107765 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308443152 2021-03-30 19:07:52.958398 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-08 10:30:00 obsr1536880 S22752790 Traveling P22 EBIRD 47.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304436638 2021-12-28 15:50:27.785498 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-03-21 12:30:00 obsr606693 S22449286 Historical P62 EBIRD 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304666578 2021-11-09 21:43:58.1951 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 5 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L2086436 P 41.63417 -74.20833 2015-03-22 15:15:00 obsr1636520 S22469461 Stationary P21 EBIRD 30.0 2.0 1 G1188515 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308210486 2015-04-07 09:10:48 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 20 Female, Adult (10); Male, Adult (10) United States US New York US-NY Albany US-NY-001 13.0 Watervliet Reservoir L452992 H 42.7326396 -73.9795303 2015-04-07 06:50:00 obsr1800473 S22735146 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311279391 2018-08-04 17:08:07 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Warren US-NY-113 14.0 Veteran's Park L3192312 P 43.5622261 -73.6516142 2015-04-08 13:25:00 obsr2019190 S22946627 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318954625 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-10 08:00:00 obsr442686 S23403895 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289093488 2015-01-04 22:02:50 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 6 United States US New York US-NY Suffolk US-NY-103 30.0 Cove Hollow Farm L786267 P 40.9400884 -72.2210312 2015-01-04 08:00:00 obsr1460516 S21192302 Stationary P21 EBIRD 120.0 2.0 1 G1096506 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307470074 2018-08-04 17:05:21 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Suffolk US-NY-103 30.0 Wading River L3355605 P 40.9550574 -72.8506362 2015-04-04 09:25:00 obsr1954215 S22681668 Traveling P22 EBIRD 20.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315846263 2021-11-09 17:58:40.313796 20829 species avibase-B9B272F4 Common Raven Corvus corax X United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-04 07:00:00 obsr763723 S23228443 Traveling P22 EBIRD 260.0 5.633 2.0 1 G1251831 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319119006 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 8 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-12 09:00:00 obsr1489009 S23413816 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298292365 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-18 13:15:00 obsr2310825 S21964003 Traveling P22 EBIRD 60.0 0.129 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310513255 2021-03-30 19:29:33.633096 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Suffolk US-NY-103 30.0 41 Belton Road, Babylon L986538 P 40.6931311 -73.3296955 2015-04-16 07:00:00 obsr247620 S22897656 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292767851 2021-04-01 11:24:19.637193 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 30 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-21 13:15:00 obsr902791 S21504894 Traveling P22 EBIRD 45.0 0.322 2.0 1 G1120229 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289683116 2015-01-07 13:35:11 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis X United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-06 16:15:00 obsr1633923 S21238498 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289124191 2021-03-23 17:32:20.03109 505 species avibase-C732CB10 American Black Duck Anas rubripes 250 United States US New York US-NY Onondaga US-NY-067 13.0 Carpenters Brook Fish Hatchery L982090 H 43.0161953 -76.3897419 2015-01-04 08:45:00 obsr2223307 S21194745 Traveling P22 EBIRD 90.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304787111 2018-08-04 17:02:30 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park L1397548 P 42.9638619 -78.9229789 2015-03-22 20:25:00 obsr2597186 S22478515 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314152240 2021-03-23 17:00:13.087107 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N X United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--Mundy Wildflower Garden L97554 H 42.4507848 -76.4694708 2015-04-29 18:25:00 obsr59643 S23131552 Traveling P22 EBIRD 25.0 0.322 2.0 1 G1243906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293147804 2021-04-01 12:18:57.910168 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-01-25 13:05:00 obsr1764243 S21534809 Stationary P21 EBIRD 82.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314090075 2021-03-26 06:29:56.44369 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-04-29 09:15:00 obsr2223307 S23127869 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315544656 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 10:45:00 obsr876649 S23212078 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296164084 2021-04-01 12:39:55.985714 33034 species avibase-6283E61E Pine Warbler Setophaga pinus N 5 United States US New York US-NY Rensselaer US-NY-083 14.0 Indian Massacre Road, NY L901781 P 42.8247429 -73.3043003 2015-02-11 13:55:00 obsr215455 S21774013 Traveling P22 EBIRD 14.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309557801 2021-04-01 12:35:52.669792 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Onondaga US-NY-067 13.0 green lakes state park L233833 P 43.0492444 -75.964642 2015-04-12 07:00:00 obsr2087436 S22830340 Traveling P22 EBIRD 165.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308108837 2015-04-06 19:16:18 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Livingston US-NY-051 13.0 14435 L1307557 P 42.6931923 -77.7116632 2015-04-06 14:05:00 obsr682121 S22727116 Stationary P21 EBIRD 129.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307410299 2021-11-15 03:06:58.889978 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-04 09:30:00 obsr585997 S22677725 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000673 2021-03-26 07:56:20.588749 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-10 09:00:00 obsr2218212 S23775914 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292600097 2021-03-30 19:18:56.909873 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 486 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-01-22 07:20:00 obsr150865 S21491873 Traveling P22 EBIRD 170.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314970262 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L2824334 P 40.7709469 -73.974402 2015-05-02 07:00:00 obsr2207991 S23180774 Traveling P22 EBIRD 300.0 8.047 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311589073 2018-08-04 17:11:21 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Cortland-3129-3199 Pendleton Street Exd L3577699 P 42.561679 -76.163118 2015-04-20 08:03:00 obsr1696616 S22966436 Stationary P21 EBIRD 5.0 2.0 1 G1228500 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309822578 2021-03-26 06:39:43.334073 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-12 16:06:00 obsr1548221 S22849471 Traveling P22 EBIRD 53.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299022651 2021-12-19 10:32:19.574298 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-02-22 09:00:00 obsr1139818 S22026055 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321866156 2021-04-01 11:30:42.037277 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 23 C C3 C United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-21 16:41:00 obsr924076 S23572019 Traveling P22 EBIRD 165.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316305524 2021-11-15 03:06:58.889978 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 10 Female, Adult (2) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 17:15:00 obsr2072398 S23255714 Traveling P22 EBIRD 105.0 1.609 2.0 1 G1254096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303022867 2021-03-23 16:39:03.255227 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-14 11:12:00 obsr1958124 S22342307 Traveling P22 EBIRD 8.0 0.483 2.0 1 G1178963 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313074481 2019-05-07 15:30:03 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Stadlen and Hoyt-Pileated Trail L1498735 H 42.4777154 -76.4481604 2015-04-26 09:43:00 obsr2211210 S23064638 Traveling P22 EBIRD 22.0 0.402 3.0 1 G1236739 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291868907 2021-03-19 16:28:51.38749 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Greene US-NY-039 13.0 Athens Reservoir L2984070 P 42.2935058 -73.9048576 2015-01-18 07:45:00 obsr2515158 S21413815 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310129394 2021-03-19 16:19:20.977326 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-14 16:25:00 obsr2597186 S22871161 Traveling P22 EBIRD 130.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292531730 2021-03-24 21:01:50.671145 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-17 07:30:00 obsr2800626 S21486350 Traveling P22 EBIRD 480.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291450688 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-17 11:45:00 obsr2603801 S21381428 Traveling P22 EBIRD 45.0 1.609 3.0 1 G1112107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306962318 2021-04-01 11:15:31.646886 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens N 2 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek--Leon S. Kaiser Park L1312993 H 40.5806115 -73.9979002 2015-04-02 13:30:00 obsr1801902 S22644595 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322385910 2021-11-15 03:06:58.889978 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-23 14:30:00 obsr1348614 S23603129 Traveling P22 EBIRD 180.0 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310950775 2015-04-18 15:06:26 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Little Falls, New York, US L3559350 P 43.0831723 -74.8360133 2015-04-18 08:14:00 obsr592357 S22926419 Stationary P21 EBIRD 55.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312823209 2021-03-26 06:07:45.516082 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-04-25 11:00:00 obsr572787 S23049553 Traveling P22 EBIRD 170.0 3.219 2.0 1 G1235127 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290811312 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis N 1 United States US New York US-NY New York US-NY-061 30.0 St. John the Divine L426577 H 40.8040199 -73.9605564 2015-01-13 10:27:00 obsr2184966 S21329139 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295635183 2021-04-01 10:45:00.916278 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-02-08 09:30:00 obsr1494607 S21732887 Traveling P22 EBIRD 180.0 3.219 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301989306 2021-04-01 11:54:40.172593 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-03-04 09:00:00 obsr666331 S22255441 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322743763 2018-11-16 19:49:18 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Erie US-NY-029 13.0 Knollwood L1231571 P 42.5787453 -78.6847687 2015-05-25 08:10:00 obsr444901 S23623901 Traveling P22 EBIRD 30.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313677867 2021-04-01 10:51:06.899622 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-25 13:50:00 obsr2937317 S23101929 Traveling P22 EBIRD 74.0 3.219 4.0 1 G1240629 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312180060 2021-03-26 07:30:35.289997 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 2 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: Stewart Pk: Fuertes Sanctuary = Swan Pond L1001451 P 42.4606369 -76.509068 2015-04-22 16:45:00 obsr2760150 S23005565 Traveling P22 EBIRD 21.0 0.37 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323515354 2018-08-04 17:30:30 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 US-NY-Oakfield-5829-5845 Co Rd 23 L3679174 P 43.122911 -78.324924 2015-05-28 08:08:00 obsr2588479 S23674029 Stationary P21 EBIRD 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318961207 2021-11-09 21:48:09.904449 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Ulster US-NY-111 13.0 104 rowe court L2662281 P 42.0136083 -74.0778896 2015-02-13 10:00:00 obsr2276225 S23404274 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323516423 2021-04-01 11:30:42.037277 26278 species avibase-A381417F House Wren Troglodytes aedon 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-28 07:12:00 obsr2313260 S23674313 Traveling P22 EBIRD 115.0 1.609 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294845846 2015-02-04 08:08:46 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-02-04 07:25:00 obsr2074043 S21669805 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319074453 2021-03-26 06:21:54.883933 33061 species avibase-E36325FA Prairie Warbler Setophaga discolor 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 13:50:00 obsr1516787 S23411306 Traveling P22 EBIRD 180.0 3.943 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309489212 2021-04-01 12:18:57.910168 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom45 L3513987 H 42.3312349 -76.5993162 2015-04-12 14:45:00 obsr881968 S22825626 Stationary P21 EBIRD 15.0 6.0 1 G1216621 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314051248 2021-03-26 07:30:35.289997 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-29 08:39:00 obsr1655171 S23124233 Traveling P22 EBIRD 25.0 0.322 2.0 1 G1247178 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306791463 2021-03-30 19:29:33.633096 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 2 United States US New York US-NY Suffolk US-NY-103 30.0 Second Neck Creek L3495069 P 40.7945894 -72.835139 2015-04-01 10:30:00 obsr1592950 S22631887 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304565801 2020-05-16 18:10:07 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Otsego US-NY-077 28.0 Ninja Yard L2962815 P 42.474034 -75.053405 2015-03-22 08:02:00 obsr1536762 S22462226 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298427699 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-19 10:30:00 obsr2207991 S21976284 Traveling P22 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314610281 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-01 09:15:00 obsr2883698 S23160183 Traveling P22 EBIRD 180.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305713761 2018-08-04 17:04:24 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 5 United States US New York US-NY Steuben US-NY-101 13.0 12090 rt 54a L3519317 P 42.4372471 -77.1918511 2015-03-27 17:40:00 obsr2700440 S22550367 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310291558 2016-08-07 13:01:41 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 2 United States US New York US-NY Westchester US-NY-119 30.0 Angle Fly Preserve L1184284 H 41.2947905 -73.7167871 2015-04-15 16:45:00 obsr858943 S22881982 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS335625018 2021-04-01 12:35:52.669792 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Onondaga US-NY-067 13.0 Skaneateles Lake, North Village Parks L276075 H 42.945145 -76.4294109 2015-04-18 05:54:00 obsr2279567 S24551761 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295402936 2021-04-01 12:41:58.738824 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 5 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-02-07 16:26:00 obsr1092576 S21714238 Stationary P21 EBIRD 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319198802 2018-08-06 22:29:47 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-13 05:57:00 obsr1165633 S23418171 Traveling P22 EBIRD 117.0 5.793 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310270268 2021-11-09 21:22:28.893225 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Ulster US-NY-111 13.0 Falling Waters Preserve L1236834 H 42.0541799 -73.9394009 2015-04-15 13:24:00 obsr2546168 S22880477 Traveling P22 EBIRD 66.0 4.023 2.0 1 G1221030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323718843 2018-08-06 22:31:19 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.7628129 2015-05-29 05:17:00 obsr1154 S23689603 Traveling P22 EBIRD 48.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320945489 2015-09-03 08:52:28 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-03 15:18:00 obsr2504709 S23514638 Traveling P22 EBIRD 80.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291290321 2018-04-27 16:39:27 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 2 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet, east L1867552 H 40.8427805 -72.4742851 2015-01-11 13:30:00 obsr2229332 S21368718 Traveling P22 EBIRD 90.0 2.414 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296066179 2021-11-09 21:57:08.566201 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Ulster US-NY-111 28.0 Old Fort Road L3352847 P 41.6319316 -74.2294532 2015-02-10 09:15:00 obsr1628992 S21766438 Traveling P22 EBIRD 480.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300128288 2015-02-28 19:49:06 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 2 United States US New York US-NY Saratoga US-NY-091 13.0 23 scotch mist way L1882732 P 42.96589 -73.7828351 2015-02-28 obsr2774749 S22114301 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302858362 2021-04-01 11:24:19.637193 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-13 10:45:00 obsr2933610 S22329011 Traveling P22 EBIRD 120.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314270786 2015-04-30 08:28:08 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 6 United States US New York US-NY Montgomery US-NY-057 13.0 East Canada Lake L1013520 P 43.0329254 -74.7437561 2015-04-28 11:30:00 obsr2694889 S23139196 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301257363 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 70 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-06 09:14:00 obsr119187 S22198242 Stationary P21 EBIRD 13.0 2.0 1 G1168305 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310911403 2018-08-04 17:09:44 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-18 11:44:00 obsr800690 S22923945 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299125435 2022-02-17 14:32:23.002448 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-22 10:20:00 obsr2363365 S22036333 Traveling P22 EBIRD 160.0 1.287 2.0 1 G1157283 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316158811 2021-03-26 06:09:25.361188 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-05-05 15:40:00 obsr879105 S23246291 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289840858 2021-03-24 20:23:39.258075 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 6 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-01-08 10:14:00 obsr2485753 S21250894 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298915001 2021-11-09 20:41:08.011248 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Putnam US-NY-079 28.0 Kent, 76 Ponderosa Road L2673815 P 41.47916 -73.7411 2015-02-21 16:20:00 obsr717528 S22017500 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309334097 2021-04-01 10:47:08.851048 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica X United States US New York US-NY Broome US-NY-007 28.0 Broome County L3387889 P 42.151852 -75.897588 2015-04-12 09:21:00 obsr2945658 S22816176 Incidental P20 EBIRD 1.0 1 G1225657 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300025306 2021-11-09 18:47:59.744367 30494 species avibase-240E3390 House Sparrow Passer domesticus N 4 United States US New York US-NY Dutchess US-NY-027 13.0 FEEDERS & YARD T/O MILAN, NY L3728471 P 41.951314 -73.821144 2015-02-28 10:44:00 obsr1442681 S22105557 Stationary P21 EBIRD 61.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289175470 2021-11-09 20:59:08.238638 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-01-04 10:15:00 obsr1932005 S21198603 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305655097 2018-08-04 17:04:24 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-27 17:30:00 obsr2673845 S22545895 Traveling P22 EBIRD 30.0 0.483 3.0 1 G1194341 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS300921261 2021-03-26 07:56:20.588749 6616 species avibase-7E022378 Common Loon Gavia immer 1100 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-06 09:00:00 obsr2218212 S22173315 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303884419 2021-03-23 16:39:03.255227 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-03-18 15:09:00 obsr1958124 S22410256 Traveling P22 EBIRD 5.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309240826 2021-03-23 17:20:42.367321 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 13 United States US New York US-NY Chenango US-NY-017 28.0 Rte 206 @ Church Lane just W of Kelsey Creek L3556555 P 42.3134968 -75.5390806 2015-04-11 11:40:00 obsr2855945 S22810225 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303526590 2015-03-16 14:43:41 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 10 United States US New York US-NY Suffolk US-NY-103 30.0 Hampton Bays L2691631 P 40.8687901 -72.5173187 2015-02-07 13:45:00 obsr1987335 S22382410 Incidental P20 EBIRD 2.0 0 G1182395 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871454 2021-03-26 07:56:20.588749 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-28 09:00:00 obsr2218212 S21672047 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290870337 2018-08-04 16:53:06 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-01-11 10:20:00 obsr119187 S21334381 Stationary P21 EBIRD 12.0 3.0 1 G1108432 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303091036 2021-03-24 19:27:13.077399 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-03-14 08:30:00 obsr142874 S22347709 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309925231 2018-08-04 17:09:06 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 Future road trail, Ithaca L1745631 H 42.473917 -76.4556491 2015-04-14 07:43:00 obsr2211210 S22856707 Traveling P22 EBIRD 10.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313640376 2017-08-16 17:09:25 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Herkimer US-NY-043 13.0 Rt. 29 - Town of Fairfield L785356 P 43.1368174 -74.9126038 2015-04-27 08:02:00 obsr2694889 S23099522 Incidental P20 EBIRD 0 G1240347 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318539187 2021-03-19 16:44:35.607263 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-11 07:35:00 obsr1124114 S23380217 Traveling P22 EBIRD 171.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302318020 2021-03-26 06:29:56.44369 23291 species avibase-58C502EA Barn Swallow Hirundo rustica N 2 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-03-09 08:30:00 obsr2449897 S22285476 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312271407 2021-03-19 16:27:31.421791 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 16 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-04-23 08:35:00 obsr408487 S23011723 Area P23 EBIRD 56.0 121.4057 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295183380 2018-08-04 16:55:40 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 450 United States US New York US-NY Saratoga US-NY-091 13.0 Blockhouse Park L495270 H 42.937331 -73.6567533 2015-02-04 11:57:00 obsr648176 S21696599 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309942112 2021-04-01 11:14:02.420281 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 Female, Adult (1) United States US New York US-NY Jefferson US-NY-045 13.0 West Carthage, NY (home) L1347968 P 43.9732503 -75.6230146 2015-01-24 12:00:00 obsr2251037 S22857995 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298480896 2021-03-26 07:07:10.758746 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Richmond US-NY-085 Lemon Creek Park L508340 H 40.5121298 -74.198581 2015-02-19 09:43:00 obsr1893950 S21980825 Stationary P21 EBIRD 9.0 2.0 1 G1153100 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288685654 2021-03-19 16:44:35.607263 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 25 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-01-03 08:49:00 obsr2595828 S21157606 Traveling P22 EBIRD 34.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290009064 2022-03-05 22:03:50.715584 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-01-09 10:30:00 obsr444155 S21264609 Traveling P22 EBIRD 60.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313730920 2015-04-28 08:44:48 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 5 United States US New York US-NY Oswego US-NY-075 13.0 Baum Rd north L3172530 P 43.353928 -76.117645 2015-04-28 08:44:00 obsr979921 S23105396 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317621132 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 3 United States US New York US-NY Kings US-NY-047 30.0 east 5th street brooklny L2843764 P 40.6483862 -73.9766604 2015-05-09 09:00:00 obsr1667642 S23330798 Traveling P22 EBIRD 240.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290982444 2018-08-04 16:53:18 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 10 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-14 13:13:00 obsr2744341 S21343142 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315863823 2021-11-09 18:46:57.51429 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 Male, Adult (1) United States US New York US-NY Dutchess US-NY-027 13.0 Fox Run Road L3602591 P 41.804478 -73.816452 2015-05-04 18:00:00 obsr2431883 S23229462 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325834503 2021-10-31 10:38:57.098169 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 08:00:00 obsr1500485 S23831825 Traveling P22 EBIRD 600.0 4.5 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323575152 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 07:00:00 obsr2363365 S23678311 Traveling P22 EBIRD 360.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309593758 2021-11-09 21:31:40.219848 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-12 15:30:00 obsr610423 S22832663 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293026989 2021-03-30 19:03:28.117389 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cayuga US-NY-011 13.0 Farleys Point (private) L99622 H 42.8231242 -76.7062763 2015-01-24 12:00:00 obsr1062070 S21525039 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295843895 2021-04-01 12:45:19.712958 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 7 Male, Adult (5); Female, Adult (2) United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-08 13:15:00 obsr369788 S21748583 Stationary P21 EBIRD 59.0 13.0 1 G1141367 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324152028 2021-03-22 08:58:29.008072 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 Male, Adult (2) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park - Belvedere Castle L2364580 P 40.7793964 -73.9689396 2015-05-26 19:32:00 obsr1548221 S23717781 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296299275 2019-07-23 17:27:20 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 7 United States US New York US-NY Suffolk US-NY-103 30.0 Wading River Marsh Preserve L123013 H 40.96167 -72.85778 2015-02-12 16:25:00 obsr1954215 S21786636 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293739635 2021-03-26 06:29:56.44369 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 4 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-28 16:23:00 obsr934639 S21581638 Traveling P22 EBIRD 40.0 2.816 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309409234 2021-03-26 06:12:17.833181 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-04-12 09:00:00 obsr1380963 S22820764 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146042 2021-03-30 19:29:33.633096 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-15 07:45:00 obsr1137265 S21356575 Traveling P22 EBIRD 75.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305609978 2018-08-04 17:03:46 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF--Snag Swamp L1473094 H 40.515363 -74.2213938 2015-03-27 14:02:00 obsr1958124 S22542512 Traveling P22 EBIRD 17.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308833049 2021-03-26 07:30:35.289997 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 3 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-10 10:17:00 obsr1062070 S22782564 Traveling P22 EBIRD 56.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310543163 2021-03-26 07:53:57.664705 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-16 06:50:00 obsr72341 S22899836 Stationary P21 EBIRD 175.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321550904 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-20 08:00:00 obsr827632 S23552173 Traveling P22 EBIRD 180.0 6.4 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316712680 2021-04-01 12:32:15.282601 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-05 07:30:00 obsr271871 S23278546 Traveling P22 EBIRD 90.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303703739 2021-03-30 19:29:33.633096 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Suffolk US-NY-103 30.0 observation post L3493564 P 40.9332718 -72.6137991 2015-03-17 12:44:00 obsr1277765 S22395826 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291116939 2021-03-30 19:29:33.633096 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-01-15 10:00:00 obsr2534001 S21354363 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313825253 2021-03-26 07:56:20.588749 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 4 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-28 09:40:00 obsr2505956 S23111383 Rusty Blackbird Spring Migration Blitz P41 EBIRD 180.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300685945 2015-03-03 09:04:00 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-03-03 08:53:00 obsr2871406 S22155481 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321377183 2021-04-01 11:15:31.646886 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-17 06:00:00 obsr2404047 S23541512 Traveling P22 EBIRD 720.0 4.828 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS302960449 2021-03-30 19:13:38.458673 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 12 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Long Pond Channel / Goodwin Park L3486095 P 43.2929504 -77.6778889 2015-03-08 11:30:00 obsr991026 S22337413 Stationary P21 EBIRD 45.0 8.0 1 G1183518 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317004526 2021-04-01 11:30:42.037277 337 species avibase-694C127A Mute Swan Cygnus olor N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 16:15:00 obsr150865 S23295298 Traveling P22 EBIRD 220.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310596252 2021-03-24 20:23:39.258075 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 14 United States US New York US-NY Suffolk US-NY-103 US-NY_847 David Weld Preserve L498539 H 40.9062922 -73.2089183 2015-04-14 10:26:00 obsr1107696 S22903407 Rusty Blackbird Spring Migration Blitz P41 EBIRD 95.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316993532 2021-03-30 19:13:38.458673 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-07 19:34:00 obsr916033 S23294655 Stationary P21 EBIRD 31.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290566433 2021-03-26 07:52:59.845315 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 6 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-11 07:25:00 obsr1000124 S21309701 Area P23 EBIRD 150.0 2.59 2.0 1 G1109827 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289367565 2021-11-09 20:42:30.328155 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 14 United States US New York US-NY Putnam US-NY-079 28.0 US-NY-Brewster-251 Maple Rd L3262156 P 41.40464 -73.645225 2015-01-03 08:44:00 obsr1666581 S21213566 Traveling P22 EBIRD 33.0 4.023 2.0 1 G1097918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290850005 2021-11-09 19:13:30.171485 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Dutchess US-NY-027 28.0 Home Acre, Fishkill L763458 P 41.5211579 -73.8836306 2015-01-13 13:30:00 obsr1259654 S21332476 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308152109 2015-04-07 09:09:50 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-04-06 16:30:00 obsr1736113 S22730279 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294540959 2021-03-26 06:29:56.44369 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-01-27 08:30:00 obsr1245041 S21645091 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293599170 2022-02-17 14:32:23.002448 32955 species avibase-41062654 Northern Parula Setophaga americana 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-27 09:20:00 obsr2404047 S21570908 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305643338 2015-03-27 17:08:26 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 2 United States US New York US-NY Livingston US-NY-051 13.0 42.7164 X -77.8362 L3518507 P 42.71641 -77.83621 2015-03-27 17:07:00 obsr1097423 S22544953 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308953820 2021-11-09 21:30:09.663073 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 11 United States US New York US-NY Ulster US-NY-111 28.0 Nyquist-Harcourt Wildlife Sanctuary L1412659 H 41.7555313 -74.091749 2015-04-10 18:00:00 obsr1303376 S22791193 Traveling P22 EBIRD 60.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293492018 2021-03-24 19:27:13.077399 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-26 16:10:00 obsr1334267 S21562296 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319198949 2021-03-19 16:06:54.047432 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Owasco Lake inlet area L302042 H 42.7542393 -76.4637132 2015-05-13 07:05:00 obsr943683 S23418178 Traveling P22 EBIRD 50.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315317570 2021-04-01 11:30:42.037277 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 06:50:00 obsr1146149 S23199870 Traveling P22 EBIRD 240.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206013 2021-04-01 12:32:15.282601 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa preserve- Walker Street L3175652 P 40.6969856 -73.4523153 2015-01-10 09:15:00 obsr547602 S21280619 Traveling P22 EBIRD 60.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309357350 2015-04-12 11:35:04 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Allegany US-NY-003 28.0 Vandermark Rd Sprague Rd and Five Corners L2893045 P 42.2356351 -77.8560627 2015-04-12 10:15:00 obsr993220 S22817629 Traveling P22 EBIRD 45.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305271398 2017-08-16 16:54:37 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 3 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Sodus Bay, south marsh L2822391 H 43.2169834 -76.9303894 2015-03-25 13:45:00 obsr195058 S22516138 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321355766 2020-03-15 09:14:53 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-17 17:00:00 obsr2096529 S23540223 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321329000 2021-04-01 12:30:15.438381 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Herkimer US-NY-043 13.0 Dolgeville - West L651814 P 43.0989148 -74.7734213 2015-05-19 12:20:00 obsr2694889 S23538636 Incidental P20 EBIRD 0 G1279957 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303546357 2015-04-09 13:26:11 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-03-16 14:47:00 obsr454647 S22383942 Traveling P22 EBIRD 95.0 2.414 2.0 1 G1182620 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1128928434 2021-04-22 20:55:39.061297 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Crookes Point L1212271 H 40.5321718 -74.1351929 2015-02-01 11:45:00 obsr2342280 S21637272 Traveling P22 EBIRD 75.0 0.805 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312879085 2022-03-05 22:03:50.715584 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 100 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-25 10:00:00 obsr2219590 S23052835 Traveling P22 EBIRD 120.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306069999 2021-03-30 19:39:10.250398 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 20 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-03-29 08:30:00 obsr2814122 S22576559 Traveling P22 EBIRD 180.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314935235 2017-12-21 12:25:41 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 4 S C2 S United States US New York US-NY Columbia US-NY-021 13.0 Olana State Historic Site L357372 H 42.2183005 -73.8287207 2015-05-02 08:00:00 obsr798742 S23178955 Traveling P22 EBIRD 230.0 2.092 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298638984 2021-03-26 08:14:57.071052 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 7 United States US New York US-NY Westchester US-NY-119 30.0 Oakbrook Rd Ossining NY L2583819 P 41.1751063 -73.8416836 2015-02-20 12:30:00 obsr1327349 S21993898 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314377534 2021-05-10 10:56:13.990983 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Orleans US-NY-073 13.0 Peter Smith Rd. (Kendall) L3602276 P 43.3423461 -78.0956268 2015-04-30 08:45:00 obsr408487 S23145275 Traveling P22 EBIRD 8.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308704174 2017-09-02 21:27:43 636 species avibase-B77377EE Common Eider Somateria mollissima 1 United States US New York US-NY Essex US-NY-031 13.0 Ticonderoga, open areas L2501405 H 43.8675281 -73.4258312 2015-04-09 15:30:00 obsr2693145 S22772927 Traveling P22 EBIRD 24.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318259614 2021-03-26 06:29:56.44369 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 WS+MBP+DEC L3631915 P 43.3198077 -77.7154183 2015-05-10 07:50:00 obsr2504709 S23365030 Traveling P22 EBIRD 130.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292279874 2021-04-01 11:30:42.037277 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-09 07:33:00 obsr259298 S21445734 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS412867429 2021-03-23 17:14:01.933181 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Washington US-NY-115 13.0 Rogers Island, Fort Edward L4029366 P 43.2635933 -73.5862434 2015-03-21 obsr2943723 S30294211 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS354458142 2021-03-26 06:29:56.44369 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Goodwin Park L3557764 P 43.290916 -77.674285 2015-04-12 12:10:00 obsr2276013 S25925965 Traveling P22 EBIRD 15.0 0.241 2.0 1 G1472373 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309450377 2021-11-09 19:57:48.990233 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-12 14:32:00 obsr1744397 S22823015 Traveling P22 EBIRD 77.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310474538 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-16 14:40:00 obsr1055148 S22894673 Traveling P22 EBIRD 120.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319359852 2021-03-19 16:44:35.607263 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 7 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-13 16:32:00 obsr749440 S23427188 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291794389 2019-10-25 15:53:50 592 species avibase-3072CC16 Redhead Aythya americana 140 United States US New York US-NY St. Lawrence US-NY-089 Ogdensburg bridge L1893388 P 44.7258852 -75.454584 2015-01-18 13:14:00 obsr1558090 S21408228 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293203285 2021-04-01 11:49:53.573686 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Environmental Center L1476823 H 40.7621022 -73.7535993 2015-01-25 08:15:00 obsr2207991 S21539243 Traveling P22 EBIRD 60.0 0.322 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307801784 2021-03-30 12:05:58.533651 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Nassau US-NY-059 30.0 North Woodmere Park L3514361 H 40.641285 -73.7363824 2015-04-05 17:00:00 obsr1693806 S22704893 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304168855 2021-03-23 17:00:13.087107 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-03-20 08:32:00 obsr2001485 S22432211 Traveling P22 EBIRD 7.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311890524 2021-03-26 08:14:57.071052 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 12 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-21 14:10:00 obsr258431 S22986376 Traveling P22 EBIRD 100.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291770263 2015-01-18 19:16:05 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 51 United States US New York US-NY Jefferson US-NY-045 13.0 Town of Lyme L2253477 P 44.0778661 -76.2309551 2015-01-18 14:45:00 obsr585290 S21406329 Traveling P22 EBIRD 75.0 24.14 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308831940 2021-03-26 07:46:52.994574 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-10 08:06:00 obsr2321296 S22782505 Traveling P22 EBIRD 180.0 1.931 2.0 1 G1213251 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315716236 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 07:15:00 obsr2105033 S23221351 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311276210 2021-05-10 13:35:55.973042 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Schuyler US-NY-097 13.0 Catharine Creek WMA--Rock Cabin Rd. L1359885 H 42.369661 -76.8471749 2015-04-19 10:34:00 obsr2173269 S22946462 Traveling P22 EBIRD 114.0 3.219 2.0 1 G1226340 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303590494 2021-03-23 17:39:28.36772 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Tioga US-NY-107 28.0 Blodgett Rd., Owego, N.Y. L3493536 P 42.1781935 -76.2216425 2015-03-16 11:45:00 obsr2069943 S22387186 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305482840 2021-03-30 19:39:10.250398 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-20 08:20:00 obsr548996 S22532751 Historical P62 EBIRD 130.0 4.828 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303785222 2021-03-26 07:52:59.845315 7732 species avibase-A091D50A Northern Harrier Circus hudsonius N 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-17 07:30:00 obsr1000124 S22402216 Area P23 EBIRD 126.0 2.59 2.0 1 G1183748 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289682080 2021-03-30 19:29:33.633096 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Suffolk US-NY-103 30.0 Great Pond L137722 P 41.0666122 -72.4558716 2015-01-07 13:24:00 obsr2485753 S21238419 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321664023 2018-08-04 17:28:18 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-05-21 08:43:00 obsr916033 S23559176 Traveling P22 EBIRD 28.0 1.931 2.0 1 G1281509 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311423629 2021-03-23 16:30:20.514143 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-19 09:30:00 obsr1633923 S22955433 Traveling P22 EBIRD 540.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307258943 2021-03-24 20:58:53.646623 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-03 07:17:00 obsr72341 S22666413 Stationary P21 EBIRD 110.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308093600 2015-04-06 18:25:25 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-04-06 08:10:00 obsr2426404 S22725970 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296373864 2021-03-26 07:07:10.758746 406 species avibase-27B2749A Wood Duck Aix sponsa 3 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-13 07:37:00 obsr1958124 S21792390 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304775732 2015-03-22 21:56:41 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus X United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L270868 P 42.0847408 -76.0845325 2015-03-22 12:14:00 obsr1626739 S22477708 Traveling P22 EBIRD 9.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307314799 2015-04-03 22:32:11 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 2 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Lewiston Terrace nature trail L1585977 P 43.1674075 -79.0398236 2015-04-03 11:30:00 obsr1486426 S22670569 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295552747 2018-08-04 16:55:55 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-02-08 12:35:00 obsr2871406 S21726266 Stationary P21 EBIRD 4.0 3.0 1 G1139041 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361370677 2015-12-27 16:45:51 26890 species avibase-94A44032 European Starling Sturnus vulgaris 15 United States US New York US-NY Saratoga US-NY-091 13.0 Hudson River near Purinton Road L4098723 P 43.1771413 -73.5860825 2015-03-28 08:00:00 obsr1620448 S26476362 Traveling P22 EBIRD 30.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305915207 2021-04-01 11:30:42.037277 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-28 obsr1723136 S22565435 Incidental P20 EBIRD 4.0 0 G2440874 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313346963 2021-03-26 06:11:29.8335 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata N 3 United States US New York US-NY Cayuga US-NY-011 13.0 Harris Park, Cayuga L388115 H 42.917605 -76.7300177 2015-04-25 15:18:00 obsr2255296 S23080921 Stationary P21 EBIRD 20.0 3.0 1 G1238411 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307640576 2021-03-26 06:09:25.361188 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-04-05 06:55:00 obsr879105 S22693462 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308636849 2021-03-24 21:10:11.310781 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 11 Male, Adult (11) United States US New York US-NY Saratoga US-NY-091 13.0 Fish Creek Marina L1913554 H 43.0733865 -73.6955166 2015-04-09 10:43:00 obsr1222746 S22767418 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302080702 2021-04-01 12:32:15.282601 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 10 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-09 15:00:00 obsr1781960 S22262695 Traveling P22 EBIRD 75.0 0.402 4.0 1 G1172903 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307431210 2021-11-09 00:38:34.069905 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 1 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-04-04 08:00:00 obsr1348614 S22679092 Traveling P22 EBIRD 240.0 4.667 4.0 1 G1204037 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294117128 2018-08-04 16:55:28 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 5 United States US New York US-NY Madison US-NY-053 28.0 Payne Creek off Brookview Dr L3328623 P 42.8404473 -75.536837 2015-01-31 09:50:00 obsr2654222 S21611609 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295279760 2021-03-26 06:39:43.334073 591 species avibase-1929E1E1 Canvasback Aythya valisineria 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Cedar Hill L5197378 H 40.7770344 -73.9654146 2015-02-03 08:24:00 obsr1548221 S21704141 Traveling P22 EBIRD 11.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312921081 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 10:00:00 obsr2105033 S23055199 Traveling P22 EBIRD 150.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290231823 2021-03-26 07:20:31.408164 662 species avibase-FB738385 Bufflehead Bucephala albeola 400 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-10 07:32:00 obsr350767 S21282882 Stationary P21 EBIRD 80.0 3.0 1 G1103528 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302749723 2018-08-04 16:59:47 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 99 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Dam L160699 H 42.0864692 -76.8096739 2015-03-12 18:00:00 obsr1587816 S22320850 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312406626 2021-04-01 11:54:40.172593 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-04-23 18:00:00 obsr1958124 S23020890 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304676338 2015-03-22 16:47:03 5891 species avibase-DC3050A9 Ruddy Turnstone Arenaria interpres 3 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-03-22 15:10:00 obsr2769235 S22470396 Traveling P22 EBIRD 40.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314267687 2021-03-26 06:29:56.44369 11403 spuh avibase-EF4617E8 woodpecker sp. Picidae sp. 2 United States US New York US-NY Monroe US-NY-055 13.0 University of Rochester L1057695 H 43.1291149 -77.6293087 2015-04-30 06:08:00 obsr1958774 S23138997 Traveling P22 EBIRD 32.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307141670 2021-04-01 11:54:40.172593 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla N X United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-03 09:00:00 obsr666331 S22658262 Traveling P22 EBIRD 120.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294251766 2021-11-09 18:18:38.879665 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Dutchess US-NY-027 14.0 Reagan Road, Millerton, NY L1377289 P 41.9018398 -73.5172824 2015-01-29 12:05:00 obsr1062217 S21622399 Traveling P22 EBIRD 60.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300060759 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-21 11:00:00 obsr2182516 S22108315 Traveling P22 EBIRD 120.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311886024 2021-04-01 11:30:42.037277 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-21 11:00:00 obsr2478995 S22986104 Traveling P22 EBIRD 105.0 2.414 2.0 1 G1230318 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303244355 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-03-15 08:30:00 obsr2207991 S22359522 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306830349 2021-11-09 19:56:29.281836 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River Refuge L3344713 P 41.2816972 -74.5278168 2015-04-01 17:30:00 obsr1544235 S22633149 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304884114 2021-03-30 19:37:33.521815 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-03-23 12:17:00 obsr2914424 S22485543 Traveling P22 EBIRD 65.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314267288 2018-08-04 17:12:37 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Herkimer US-NY-043 13.0 Saltsman Road L677810 P 43.0091035 -74.7420502 2015-04-28 12:30:00 obsr2694889 S23138968 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312486966 2015-04-24 09:18:27 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N. & W. Trail intersection L250375 P 42.4790392 -76.4547486 2015-04-24 07:44:00 obsr2307843 S23026418 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310879550 2021-04-01 10:47:08.851048 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-04-17 16:24:00 obsr800690 S22922027 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288339301 2021-03-30 19:13:38.458673 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-01 14:30:00 obsr2504709 S21129582 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295486494 2021-03-23 17:22:05.708166 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-06 08:40:00 obsr316199 S21721025 Area P23 EBIRD 60.0 2.59 3.0 1 G1138554 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305558373 2021-03-24 21:12:31.336509 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 6 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-03-27 06:00:00 obsr1839967 S22538417 Stationary P21 EBIRD 126.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306745223 2018-08-04 17:04:57 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Erie US-NY-029 13.0 Birdsong Parklands L1352334 H 42.7530261 -78.7214375 2015-04-01 12:36:00 obsr916033 S22628513 Traveling P22 EBIRD 138.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295440310 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-02-07 12:15:00 obsr1807494 S21717359 Stationary P21 EBIRD 20.0 5.0 1 G1138089 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314944722 2021-03-26 06:21:54.883933 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park--Pier 2 and Pier 3 Terrace L1117224 H 40.6984488 -73.9976664 2015-05-02 12:00:00 obsr521443 S23179468 Traveling P22 EBIRD 117.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304718247 2021-11-09 21:50:48.44865 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-22 17:00:00 obsr2214649 S22473532 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1188793 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292607191 2018-08-04 16:54:51 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 6 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-01-22 10:45:00 obsr983655 S21492464 Traveling P22 EBIRD 45.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306031199 2021-04-01 10:51:50.668112 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Holiday Inn L160744 H 42.08827 -76.79419 2015-03-29 12:02:00 obsr1334267 S22573683 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324255052 2021-04-01 11:15:31.646886 341 species avibase-B86C504C Trumpeter Swan Cygnus buccinator 20 United States US New York US-NY Kings US-NY-047 US-NY_1722 Dead Horse Bay, Marina L151656 H 40.585205 -73.901276 2015-05-31 12:55:00 obsr2277801 S23724217 Historical P62 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310749813 2021-03-23 17:00:13.087107 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-17 18:31:00 obsr1696616 S22913555 Stationary P21 EBIRD 10.0 2.0 1 G1223380 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307094891 2021-03-24 20:21:40.993321 303 species avibase-B59E1863 Canada Goose Branta canadensis 35 United States US New York US-NY Seneca US-NY-099 13.0 Lower Lake Rd., S of Cayuga Lake SP L622570 H 42.8798637 -76.7456925 2015-04-02 18:48:00 obsr1092576 S22654673 Traveling P22 EBIRD 4.0 0.322 1.0 1 G1202290 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299023165 2021-03-30 19:43:32.881136 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 150 United States US New York US-NY Westchester US-NY-119 30.0 Tibbetts Brook Park L293496 H 40.9240387 -73.8786568 2015-02-22 15:32:00 obsr1348614 S22026104 Traveling P22 EBIRD 70.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311924942 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-04-21 08:45:00 obsr2759466 S22988679 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295968119 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-07 11:50:00 obsr1571634 S21758525 Traveling P22 EBIRD 80.0 0.805 3.0 1 G1142320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305206378 2021-03-30 19:29:33.633096 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mattituck Creek L1813291 P 40.9941531 -72.5391507 2015-03-25 08:45:00 obsr2528068 S22511001 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313636323 2021-03-26 06:09:25.361188 32869 species avibase-D204A930 Tennessee Warbler Leiothlypis peregrina X United States US New York US-NY Broome US-NY-007 28.0 SUNY Broome Community College L3583220 H 42.1353684 -75.9091816 2015-04-22 14:15:00 obsr239324 S23099261 Traveling P22 EBIRD 135.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298428818 2015-02-19 14:49:49 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Ontario US-NY-069 US-NY_803 13.0 Seneca Lake City Park L3371619 P 42.8734843 -76.9650135 2015-02-12 14:30:00 obsr138057 S21976367 Stationary P21 EBIRD_PA 27.0 3.0 1 G1146279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310393757 2017-03-01 21:48:28 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 5 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-16 08:20:00 obsr544268 S22889251 Traveling P22 EBIRD 35.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303030599 2015-03-14 12:24:49 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 30 United States US New York US-NY Livingston US-NY-051 13.0 perry Rd mt morris L3486976 P 42.7567811 -77.8682613 2015-03-14 09:53:00 obsr393804 S22342949 Traveling P22 EBIRD 7.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291398517 2021-03-23 17:00:13.087107 11494 species avibase-20C2214E American Kestrel Falco sparverius X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-16 14:50:00 obsr1655171 S21377083 Traveling P22 EBIRD 10.0 0.322 2.0 1 G1113279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302599556 2021-03-26 06:07:45.516082 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-03-12 09:38:00 obsr128156 S22309711 Rusty Blackbird Spring Migration Blitz P41 EBIRD 35.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304454930 2021-03-30 19:39:10.250398 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Nassau US-NY-059 30.0 Cammanns Pond Park L444842 H 40.6537553 -73.5509445 2015-03-21 16:40:00 obsr87415 S22453916 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309926480 2021-03-23 17:00:13.087107 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-14 06:53:00 obsr455249 S22856786 Traveling P22 EBIRD 8.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288164663 2021-04-01 12:32:15.282601 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-01-01 12:15:00 obsr2394424 S21114595 Traveling P22 EBIRD 25.0 0.402 2.0 1 G1088386 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311162065 2018-08-04 17:10:30 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 200 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix - Rte 6 muckland (private) L2124304 P 43.288556 -76.325021 2015-04-19 08:48:00 obsr642516 S22939453 Stationary P21 EBIRD 15.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290538537 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-11 13:30:00 obsr2448957 S21307671 Traveling P22 EBIRD 240.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296010945 2021-04-01 12:35:52.669792 6020 species avibase-667C6969 Wilson's Phalarope Phalaropus tricolor N 30 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-10 15:20:00 obsr2561576 S21761979 Stationary P21 EBIRD 75.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309969800 2021-03-24 20:33:47.533911 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Tompkins US-NY-109 28.0 Mr. C. Feeder Station L3541750 P 42.3927043 -76.3720956 2015-04-14 08:00:00 obsr581835 S22859890 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299780177 2021-03-24 21:10:11.310781 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-02-23 09:00:00 obsr1664745 S22086634 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316249466 2021-03-26 06:21:54.883933 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 14:12:00 obsr150415 S23252497 Traveling P22 EBIRD 125.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319221804 2021-03-24 19:40:51.185319 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 6 United States US New York US-NY Jefferson US-NY-045 13.0 Kelsey Creek, Watertown L273304 H 43.9906455 -75.9170911 2015-05-05 08:30:00 obsr585290 S23419580 Traveling P22 EBIRD 540.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317735321 2021-03-26 07:46:52.994574 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 14 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 05:40:00 obsr119187 S23336978 Traveling P22 EBIRD 290.0 4.828 1.0 1 G1258875 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289076935 2021-11-09 18:11:18.710746 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 11 United States US New York US-NY Dutchess US-NY-027 13.0 Poet's Walk Park L1243241 H 41.9837311 -73.9250174 2015-01-04 14:00:00 obsr237150 S21190949 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291343828 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Monroe US-NY-055 13.0 La Casa Mocha L2517907 P 43.1025966 -77.429511 2015-01-16 11:00:00 obsr1638920 S21372769 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306350270 2022-02-04 06:14:13.892644 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 42 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-03-27 16:00:00 obsr1289811 S22597874 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318924397 2021-11-09 18:27:17.096612 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Dutchess US-NY-027 13.0 Rowe Road L1910172 P 41.937783 -73.767034 2015-05-09 04:00:00 obsr1433400 S23402345 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293251151 2021-04-26 04:57:02.963704 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-25 10:11:00 obsr187432 S21542851 Traveling P22 EBIRD 205.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310925166 2015-04-18 13:41:23 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 ON C4 ON Unknown Sex, Adult (6) United States US New York US-NY Westchester US-NY-119 US-NY_871 30.0 Palmer H. Lewis Sanctuary L2259774 H 41.2331871 -73.6212301 2015-04-18 obsr2962893 S22924743 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304837592 2021-04-01 12:14:19.266649 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Suffolk US-NY-103 30.0 Amityville L3508609 P 40.6714185 -73.4167385 2015-03-21 11:25:00 obsr564905 S22481924 Traveling P22 EBIRD 30.0 4.828 2.0 1 G1190133 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301612999 2021-03-26 06:29:14.715704 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 6 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-03-04 07:29:00 obsr589593 S22225893 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294695791 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-31 11:40:00 obsr1987335 S21657066 Traveling P22 EBIRD 50.0 4.828 2.0 1 G1134019 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311387399 2019-04-15 16:01:05 32476 issf avibase-46C33764 Eastern Meadowlark Sturnella magna Eastern Meadowlark (Eastern) Sturnella magna [magna Group] 4 United States US New York US-NY Chemung US-NY-015 28.0 Sperr Memorial Park L7578475 H 42.1465676 -76.9144776 2015-04-19 09:00:00 obsr26728 S22953204 Stationary P21 EBIRD 90.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309384074 2021-03-24 20:33:47.533911 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-12 12:16:00 obsr1696616 S22819205 Stationary P21 EBIRD 33.0 2.0 1 G1218225 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322830908 2021-03-26 07:20:31.408164 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-21 17:06:00 obsr1319071 S23629133 Traveling P22 EBIRD 50.0 0.998 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309795208 2021-03-26 07:20:31.408164 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L635183 H 40.8348529 -72.6153374 2015-04-13 10:00:00 obsr717785 S22847486 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298754371 2015-09-17 17:22:25 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Jefferson US-NY-045 13.0 Kelsey Creek, Watertown L273304 H 43.9906455 -75.9170911 2015-02-20 11:00:00 obsr585290 S22004332 Traveling P22 EBIRD 300.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296555045 2021-03-26 07:20:31.408164 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Suffolk US-NY-103 30.0 265 North Dunton Avenue East Patchogue, NY L2653853 P 40.7750818 -72.9608917 2015-02-13 07:00:00 obsr2871827 S21809269 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291957770 2017-01-11 21:22:56 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-01-19 13:45:00 obsr2855945 S21420792 Traveling P22 EBIRD 65.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314591044 2021-04-01 11:30:42.037277 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 17:35:00 obsr2796494 S23159102 Traveling P22 EBIRD 120.0 1.931 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291743991 2021-03-26 07:30:35.289997 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-18 16:52:00 obsr1696616 S21404238 Traveling P22 EBIRD 45.0 1.127 2.0 1 G1114113 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303784463 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Durand-Eastman Park--Zoo Rd. L139792 H 43.2279443 -77.557404 2015-03-14 09:55:00 obsr2966702 S22402091 Traveling P22 EBIRD 25.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322514121 2021-03-24 19:48:44.880783 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 18 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-24 08:03:00 obsr334398 S23610309 Traveling P22 EBIRD 220.0 0.322 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310203705 2021-04-01 10:47:08.851048 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-15 11:15:00 obsr2887137 S22876171 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289163815 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY New York US-NY-061 30.0 W 4th & W 11th Intersection L3266920 P 40.736153 -74.0035576 2015-01-04 11:00:00 obsr29529 S21197770 Stationary P21 EBIRD 10.0 5.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308319616 2021-03-26 06:39:43.334073 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-04-07 10:30:00 obsr800463 S22743231 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323048928 2018-08-06 22:31:08 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Cortland US-NY-023 28.0 AviCor15 L3513957 H 42.6073973 -76.0575746 2015-05-25 12:58:00 obsr2625207 S23642960 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322627407 2021-11-09 17:58:40.313796 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-24 08:45:00 obsr763723 S23616683 Traveling P22 EBIRD 195.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325710297 2021-03-19 16:19:20.977326 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L3705268 P 42.8462143 -78.8590693 2015-05-20 06:30:00 obsr2221755 S23823463 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291183670 2018-08-04 16:53:22 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Westchester US-NY-119 30.0 Five Islands Park L1351565 H 40.912714 -73.7651328 2015-01-15 16:30:00 obsr800463 S21359632 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288371529 2021-04-01 11:27:18.37144 303 species avibase-B59E1863 Canada Goose Branta canadensis 100 United States US New York US-NY Montgomery US-NY-057 13.0 Mohawk River, Fonda L2675616 P 42.9501876 -74.3610692 2015-01-01 11:00:00 obsr1708031 S21131988 Stationary P21 EBIRD 35.0 2.0 1 G1105358 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304472110 2021-03-30 12:05:58.533651 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 50 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-21 16:15:00 obsr1601967 S22455293 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307835476 2018-08-04 17:05:36 16285 species avibase-5BC4E0EF Willow Flycatcher Empidonax traillii 1 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-04-05 12:00:00 obsr2476180 S22707290 Traveling P22 EBIRD 120.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299157683 2021-12-19 10:32:19.574298 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-02-22 09:30:00 obsr1167884 S22038843 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317004326 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 H C2 H United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 15:30:00 obsr609516 S23295286 Traveling P22 EBIRD 246.0 2.414 3.0 1 G1256574 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317654173 2021-04-01 11:30:42.037277 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Oven and The Point L1480317 H 40.7756262 -73.9700541 2015-05-09 16:07:00 obsr2493447 S23332625 Traveling P22 EBIRD 15.0 0.998 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299459479 2022-02-17 14:32:23.002448 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-22 14:41:00 obsr1211277 S22061448 Traveling P22 EBIRD 160.0 4.023 4.0 1 G1158699 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316054635 2015-05-05 10:35:35 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 4 United States US New York US-NY Wyoming US-NY-121 US-NY_1761 13.0 Letchworth SP (Wyoming Co.) L109148 H 42.6491117 -77.9732323 2015-04-30 08:00:00 obsr2240964 S23240776 Traveling P22 EBIRD 180.0 5.633 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298871425 2021-04-01 12:30:15.438381 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Herkimer US-NY-043 13.0 5s ( Little Falls ) L3406420 P 43.0165287 -74.8892283 2015-02-21 10:51:00 obsr1708031 S22013804 Incidental P20 EBIRD 4.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300776630 2018-08-04 16:58:41 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-03-03 13:52:00 obsr2871406 S22162465 Stationary P21 EBIRD 7.0 2.0 1 G1165881 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS349865583 2022-01-20 09:38:40.245267 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-29 09:00:00 obsr581027 S25550922 Traveling P22 EBIRD 180.0 4.023 2.0 1 G1295289 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS345437978 2020-04-28 01:31:21 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-03-30 12:00:00 obsr1379161 S25248427 Stationary P21 EBIRD 120.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291721863 2021-04-01 11:49:53.573686 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 5 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-01-18 07:00:00 obsr1982614 S21402493 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292919562 2021-04-01 11:30:42.037277 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-24 13:30:00 obsr259298 S21517129 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294185181 2018-08-04 16:55:29 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-01-31 10:06:00 obsr2307843 S21616973 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318918264 2015-05-12 10:47:06 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-05-12 10:15:00 obsr1792012 S23401991 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314903399 2021-03-30 19:22:51.561415 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-30 13:30:00 obsr423515 S23177348 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317543850 2021-03-26 06:15:05.840405 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Cortland US-NY-023 28.0 AviCor10 L3513952 H 42.5109495 -76.0097765 2015-05-09 12:29:00 obsr620377 S23326470 Stationary P21 EBIRD 9.0 2.0 1 G1272243 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312329622 2021-03-26 06:09:25.361188 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Broome US-NY-007 28.0 Binghamton L194817 T 42.09868 -75.91794 2015-04-22 14:00:00 obsr825676 S23015606 Traveling P22 EBIRD 120.0 3.219 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309509626 2021-11-09 00:38:34.069905 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-04-12 11:00:00 obsr2516765 S22827083 Traveling P22 EBIRD 50.0 1.609 3.0 1 G1216022 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803863 2016-04-22 12:05:44 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-02-12 obsr1645360 S26514135 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307819932 2021-03-23 16:21:52.613913 23383 species avibase-F5C181CA Cliff Swallow Petrochelidon pyrrhonota 1 United States US New York US-NY Ontario US-NY-069 13.0 Shortsville Rd. X Payne Rd., Farmington L800361 H 42.9615545 -77.3038334 2015-04-05 18:00:00 obsr749440 S22706179 Traveling P22 EBIRD 20.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303045318 2019-07-23 17:27:58 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Rich Marine L1366985 H 42.9392357 -78.9087525 2015-03-14 11:30:00 obsr2537615 S22344223 Stationary P21 EBIRD 25.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292097939 2015-01-21 04:42:01 26278 species avibase-A381417F House Wren Troglodytes aedon 6 United States US New York US-NY Westchester US-NY-119 28.0 Croton Reservoir/Gate House Brige L1836678 P 41.2342782 -73.8009946 2015-01-20 10:05:00 obsr258431 S21431848 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293960919 2015-01-30 09:03:57 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Westchester US-NY-119 30.0 Intersection of rt 138 and I684 L3326881 P 41.2959939 -73.676033 2015-01-29 11:45:00 obsr2924527 S21599323 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294870822 2021-03-26 07:56:20.588749 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-02 16:00:00 obsr2218212 S21672016 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314067040 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 12:24:00 obsr870166 S23126495 Traveling P22 EBIRD 80.0 2.253 3.0 1 G1243041 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321476709 2021-04-01 11:15:31.646886 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-20 08:00:00 obsr1637891 S23547718 Traveling P22 EBIRD 240.0 6.437 3.0 1 G1280684 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310678810 2019-07-23 17:26:54 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-B L3562457 P 40.36555 -73.328233 2015-01-11 09:00:00 obsr27123 S22908659 Traveling P22 EBIRD 60.0 15.289 44.0 1 G1108334 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312259556 2016-10-28 16:49:18 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 2 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--F.R. Newman Arboretum L799199 H 42.4520722 -76.4572692 2015-04-23 09:05:00 obsr1828453 S23010950 Traveling P22 EBIRD 16.0 0.805 2.0 1 G1232701 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290393372 2018-08-04 16:53:02 20829 species avibase-B9B272F4 Common Raven Corvus corax 10 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-01-10 14:00:00 obsr1633923 S21296008 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309822590 2021-03-26 06:39:43.334073 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-12 16:06:00 obsr1548221 S22849471 Traveling P22 EBIRD 53.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319263594 2021-03-19 16:12:42.877422 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Columbia US-NY-021 14.0 Larkspur Farm woods (private) L3150691 P 42.1917199 -73.6003561 2015-05-13 07:55:00 obsr2842267 S23421866 Traveling P22 EBIRD 205.0 2.462 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288504910 2017-04-28 16:25:25 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-01-02 13:35:00 obsr1565981 S21142900 Traveling P22 EBIRD 45.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291109346 2021-01-30 10:27:08.559792 27380 species avibase-E53FC25C Swainson's Thrush Catharus ustulatus 3 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-I L3289026 P 40.29866 -73.31405 2015-01-11 16:00:00 obsr598381 S21353770 Traveling P22 EBIRD 60.0 10.622 44.0 1 G1108342 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293349148 2021-03-26 06:21:54.883933 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 12 United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-01-23 11:00:00 obsr2883698 S21550261 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305867800 2018-08-04 17:04:26 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Fresh Creek - inlet L3200063 P 40.636302 -73.877244 2015-03-28 08:54:00 obsr1711339 S22561725 Traveling P22 EBIRD 45.0 0.805 11.0 1 G1195439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314062860 2015-04-29 13:29:42 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Lewis US-NY-049 13.0 Location C L2127981 P 43.946569 -75.502381 2015-04-29 11:30:00 obsr417887 S23126254 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313458171 2021-04-01 10:45:00.916278 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-27 09:10:00 obsr128156 S23088347 Rusty Blackbird Spring Migration Blitz P41 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315980092 2015-05-04 23:55:33 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 4 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-02 07:22:00 obsr1000124 S23236107 Area P23 EBIRD 80.0 2.59 2.0 1 G1252521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305989668 2022-02-18 10:47:29.953615 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-29 10:08:00 obsr1062070 S22570913 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306007613 2021-11-09 21:50:48.44865 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 4 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-29 11:07:00 obsr1154 S22572186 Traveling P22 EBIRD 49.0 0.483 3.0 1 G1196538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340284974 2021-03-19 16:02:45.308962 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Broome US-NY-007 28.0 Vestal Hill Cemetary L3886565 P 42.1004636 -75.9791601 2015-04-30 19:00:00 obsr1390749 S24887622 Traveling P22 EBIRD 90.0 0.805 2.0 1 G1396742 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289892948 2021-03-24 20:06:25.370375 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina N 1 Male, Adult (1) United States US New York US-NY Ontario US-NY-069 13.0 The Swamp L1660257 P 42.8848133 -77.0413991 2015-01-08 14:30:00 obsr572658 S21255332 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312015391 2021-11-09 22:27:57.096501 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Sullivan US-NY-105 28.0 Yankee Lake L1031003 P 41.5830932 -74.5566559 2015-04-22 07:30:00 obsr444155 S22994757 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313516726 2021-03-30 19:29:33.633096 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 2 United States US New York US-NY Suffolk US-NY-103 Downs Creek L562979 P 40.9923379 -72.4939728 2015-04-27 13:16:00 obsr2485753 S23091841 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311446764 2021-03-26 07:07:10.758746 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 5 United States US New York US-NY Richmond US-NY-085 30.0 132 Blackford Avenue, SI, NY L800199 P 40.632401 -74.1401839 2015-04-19 08:03:00 obsr1231731 S22956827 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310652599 2021-03-26 08:14:57.071052 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-04-16 07:30:00 obsr2918150 S22907066 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318197892 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-10 07:15:00 obsr544268 S23361632 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294730985 2021-04-01 12:35:52.669792 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 6 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-02-01 08:45:00 obsr2143830 S21660089 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314023345 2021-03-26 07:00:33.333856 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L526565 P 40.7469969 -73.7436676 2015-04-29 08:25:00 obsr2233270 S23123900 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318597150 2021-03-26 07:46:52.994574 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-07 05:30:00 obsr478499 S23383356 Traveling P22 EBIRD 270.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317744564 2021-03-19 16:29:59.503892 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-09 18:28:00 obsr1302604 S23337457 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304488348 2015-03-21 19:44:52 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 13 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-03-21 12:00:00 obsr1708031 S22456523 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290912502 2021-11-09 21:41:38.795423 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-01-13 07:00:00 obsr1588136 S21337678 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295429223 2021-11-09 18:43:48.954279 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 Unknown Sex, Immature (1) United States US New York US-NY Dutchess US-NY-027 28.0 Berkshire Road, Dover, NY L3344842 P 41.7192879 -73.5649643 2015-02-07 10:30:00 obsr1062217 S21716239 Traveling P22 EBIRD 30.0 1.207 2.0 1 G1138687 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303533599 2021-04-01 10:51:06.899622 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-16 10:15:00 obsr479109 S22382965 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322588187 2021-03-23 17:22:05.708166 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Herkimer US-NY-043 13.0 Ransom Marsh L2797588 P 43.0945072 -74.7733743 2015-05-24 07:40:00 obsr2694889 S23614380 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317299173 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-08 11:15:00 obsr150415 S23311541 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301524895 2021-03-23 16:52:36.900075 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos N 5 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--parking field 5 L1958285 H 40.6274382 -73.2361507 2015-03-07 09:00:00 obsr2338506 S22219231 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317213438 2018-08-04 17:15:19 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College L1485004 H 44.4375537 -74.2530447 2015-05-08 11:00:00 obsr443017 S23306664 Traveling P22 EBIRD 150.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301065034 2018-08-04 16:58:46 30494 species avibase-240E3390 House Sparrow Passer domesticus 12 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-05 13:45:00 obsr2172593 S22183672 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307759308 2021-03-30 19:29:33.633096 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-05 12:30:00 obsr247620 S22701767 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309717887 2022-03-05 22:03:50.715584 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 4 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-13 08:30:00 obsr444155 S22841511 Traveling P22 EBIRD 210.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306258671 2021-11-09 18:44:18.633991 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 4 United States US New York US-NY Dutchess US-NY-027 13.0 Tivoli, 2 Madalin Court L3375751 P 42.05994 -73.91404 2015-03-30 09:11:00 obsr267319 S22590968 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316707008 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 05:55:00 obsr1433400 S23278598 Traveling P22 EBIRD 180.0 4.892 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298901057 2021-03-30 19:39:10.250398 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve 1st pond L630713 P 40.683925 -73.4595895 2015-02-21 13:15:00 obsr1160328 S22016567 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295384841 2015-02-07 15:38:58 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-02-07 09:45:00 obsr660214 S21712869 Stationary P21 EBIRD 15.0 2.0 1 G1137719 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317124000 2018-08-06 22:29:09 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-08 06:00:00 obsr1165633 S23302073 Traveling P22 EBIRD 274.0 7.081 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310165779 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-14 06:10:00 obsr1433400 S22873620 Traveling P22 EBIRD 130.0 4.506 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320409920 2018-08-06 22:30:11 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-16 10:55:00 obsr1962295 S23484940 Traveling P22 EBIRD 110.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293902285 2021-11-09 19:51:09.255083 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 10 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-01-29 16:30:00 obsr2219590 S21594820 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423141 2021-04-01 11:24:19.637193 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-24 12:28:00 obsr1846130 S24163340 Traveling P22 EBIRD 378.0 9.656 4.0 1 G1337409 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301186852 2015-03-06 08:28:46 11371 species avibase-75600969 Northern Flicker Colaptes auratus 4 Female, Adult (1); Male, Adult (3) United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-03-05 06:15:00 obsr2716320 S22192437 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319798025 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Kings US-NY-047 Owls Head Park L304833 H 40.6403687 -74.0322153 2015-05-15 07:15:00 obsr2731066 S23452713 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318299352 2021-03-19 16:27:31.421791 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Onondaga Trail L157279 H 43.12222 -78.36889 2015-05-10 11:25:00 obsr916033 S23367067 Traveling P22 EBIRD 219.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304847838 2021-04-01 12:32:15.282601 662 species avibase-FB738385 Bufflehead Bucephala albeola N 10 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-22 10:49:00 obsr564905 S22482729 Traveling P22 EBIRD 67.0 3.219 2.0 1 G1190121 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326327565 2021-03-19 16:44:35.607263 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Chili, 704-800 Ballantyne Road L2875555 P 43.0726 -77.73638 2015-05-11 14:12:00 obsr745890 S23868453 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289524251 2021-04-01 11:49:53.573686 483 species avibase-85625D75 Mallard Anas platyrhynchos N 15 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-01-06 07:49:00 obsr1982614 S21226050 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322763752 2021-03-19 16:19:20.977326 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L143485 P 42.8484688 -78.8569107 2015-05-24 08:50:00 obsr2155111 S23625086 Traveling P22 EBIRD 3.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310693458 2021-03-26 06:29:56.44369 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 4 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-04-17 06:02:00 obsr934639 S22909607 Traveling P22 EBIRD 40.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304650644 2018-08-04 17:02:29 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 48 United States US New York US-NY Suffolk US-NY-103 30.0 North Sea, 350-380 Towd Point Road L2182723 P 40.94628 -72.41517 2015-03-22 14:48:00 obsr613775 S22468265 Traveling P22 EBIRD 9.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303911647 2021-03-30 19:29:33.633096 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-03-16 15:27:00 obsr564905 S22412315 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313847273 2021-04-01 10:47:08.851048 26890 species avibase-94A44032 European Starling Sturnus vulgaris 16 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-04-28 06:45:00 obsr646558 S23112749 Traveling P22 EBIRD 25.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303996568 2015-03-19 07:28:09 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus X United States US New York US-NY Suffolk US-NY-103 30.0 Stony Brook University L2350778 H 40.9146933 -73.1215687 2015-03-17 11:00:00 obsr2633969 S22418567 Stationary P21 EBIRD 90.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315198108 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Monroe US-NY-055 13.0 Wardell Road (Monroe Co.) L2400154 P 43.0128064 -77.6064777 2015-05-03 08:08:00 obsr1097423 S23193743 Traveling P22 EBIRD 8.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310382435 2021-03-26 07:30:35.289997 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-16 07:27:00 obsr1076139 S22888371 Stationary P21 EBIRD 58.0 4.0 1 G1227832 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313450669 2017-09-09 13:29:46 591 species avibase-1929E1E1 Canvasback Aythya valisineria 2 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail, Sherwood Pltform base - West Trail (0.137km) L1369671 P 42.4793682 -76.4546071 2015-04-27 07:52:00 obsr2307843 S23087849 Traveling P22 EBIRD 10.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308621931 2021-03-24 20:33:47.533911 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Tompkins US-NY-109 13.0 105 Eastern Heights Dr., Ithaca L2724192 P 42.425089 -76.455526 2015-04-09 09:51:00 obsr1318356 S22766290 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306448394 2018-08-04 17:02:48 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Tioga US-NY-107 28.0 Confluence Park, Owego L2011248 H 42.0957386 -76.2724543 2015-03-25 06:39:00 obsr1318356 S22605845 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288853409 2022-03-06 12:39:33.700954 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 2 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-01-02 12:30:00 obsr1160328 S21173624 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310342469 2019-07-23 17:28:19 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 500 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr1821546 S22885569 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313310194 2018-08-04 17:12:24 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.3198299 2015-04-26 11:00:00 obsr479109 S23078645 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317203772 2021-04-01 11:15:31.646886 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus N X United States US New York US-NY Kings US-NY-047 Owls Head Park L304833 H 40.6403687 -74.0322153 2015-05-08 09:15:00 obsr2078092 S23306116 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306612007 2021-03-24 21:06:05.39641 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson River Park (private) L3498350 H 43.2032416 -76.2825651 2015-03-31 16:34:00 obsr2224244 S22618671 Stationary P21 EBIRD 208.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315692832 2021-11-15 03:06:58.889978 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 09:25:00 obsr585997 S23220195 Traveling P22 EBIRD 45.0 0.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294962952 2021-03-23 16:52:36.900075 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 10 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-02-04 13:30:00 obsr2852365 S21679559 Traveling P22 EBIRD 165.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301267711 2021-03-19 16:14:11.035882 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Cortland US-NY-023 28.0 Kellogg Road - Cortlandville L3448567 P 42.5851915 -76.1467123 2015-03-06 08:05:00 obsr931232 S22199035 Traveling P22 EBIRD 55.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310933009 2015-04-18 14:06:26 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, Brentwood Dr and Arrowwood Dr corner L1615280 P 42.47869 -76.46307 2015-04-18 07:33:00 obsr2307843 S22925216 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320573180 2020-03-15 09:14:53 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-17 09:13:00 obsr2071643 S23493637 Traveling P22 EBIRD 244.0 2.414 2.0 1 G1274998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305337797 2021-11-15 03:06:58.889978 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-25 08:29:00 obsr1548221 S22521219 Traveling P22 EBIRD 55.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS362455962 2021-03-24 20:52:26.336264 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Wyoming US-NY-121 28.0 2700 Centerline Road, Varysburg L11026787 P 42.736555 -78.3020117 2015-03-16 08:00:00 obsr2888451 S26578514 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312168157 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-22 07:00:00 obsr1220115 S23004753 Traveling P22 EBIRD 120.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310705187 2015-04-17 16:20:54 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Creek Preserve, Montgomery County L3570414 P 42.8172284 -74.2659338 2015-04-17 13:30:00 obsr286403 S22910459 Traveling P22 EBIRD 60.0 2.092 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296755965 2021-03-26 07:16:36.956617 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia N 2 United States US New York US-NY Schenectady US-NY-093 13.0 182 Waters Road L3368709 P 42.8883776 -74.0525401 2015-02-14 12:00:00 obsr481595 S21827524 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315383425 2015-05-03 16:07:37 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus X United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-03 07:28:00 obsr1044068 S23203298 Traveling P22 EBIRD 85.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293517306 2021-04-01 12:14:19.266649 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Suffolk US-NY-103 Lake Montauk Inlet L1036512 H 41.076981 -71.937511 2015-01-25 09:25:00 obsr564905 S21564239 Stationary P21 EBIRD 5.0 2.0 0 G1126999 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304408115 2021-04-01 10:47:08.851048 592 species avibase-3072CC16 Redhead Aythya americana N 10 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-03-21 11:55:00 obsr1830659 S22450535 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955468 2015-05-07 17:02:31 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-01-30 07:43:00 obsr455249 S21598870 Traveling P22 EBIRD 6.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309320671 2021-11-09 22:38:55.83044 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 Male, Adult (1) United States US New York US-NY Sullivan US-NY-105 US-NY_2792 28.0 644 River Road L2326174 P 41.782401 -75.1017773 2015-04-12 07:30:00 obsr279522 S22815347 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302223176 2021-04-01 11:49:53.573686 662 species avibase-FB738385 Bufflehead Bucephala albeola 8 United States US New York US-NY Queens US-NY-081 30.0 Idlewild Park L2687800 H 40.6546016 -73.7547487 2015-03-10 08:22:00 obsr1982614 S22275299 Traveling P22 EBIRD 120.0 0.998 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295433141 2019-07-23 17:27:17 5976 species avibase-F4829920 American Woodcock Scolopax minor 3 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Aurora-245 Main St L3343962 P 42.747551 -76.700887 2015-02-07 11:06:00 obsr1581960 S21716538 Stationary P21 EBIRD 15.0 3.0 1 G1137682 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290959359 2021-11-09 18:33:57.599353 279 species avibase-3E04020B Brant Branta bernicla 7 United States US New York US-NY Dutchess US-NY-027 28.0 Depot Hill / Grape Hollow L2506710 P 41.55377 -73.6826 2015-01-01 08:30:00 obsr2343626 S21341465 Traveling P22 EBIRD 60.0 4.828 2.0 1 G1108974 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304874064 2021-03-26 07:07:10.758746 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-23 Berwin Ln SI Zoo L3092015 P 40.625588 -74.116053 2015-03-23 11:10:00 obsr1231731 S22484796 Traveling P22 EBIRD 77.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288240352 2021-04-01 11:30:42.037277 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 2 United States US New York US-NY New York US-NY-061 Randalls Island--NE fields and shoreline L1785381 H 40.7943072 -73.9138235 2015-01-01 07:20:00 obsr2184966 S21120947 Traveling P22 EBIRD 130.0 1.0 2.0 1 G1198900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295354657 2021-12-03 21:50:44.732892 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 10 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-02-07 09:20:00 obsr666331 S21710546 Traveling P22 EBIRD 130.0 2.414 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312691223 2021-03-19 16:19:20.977326 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-24 18:30:00 obsr2537615 S23041305 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306202553 2021-03-26 07:00:33.333856 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L526565 P 40.7469969 -73.7436676 2015-03-29 12:15:00 obsr2233270 S22586742 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288522685 2021-11-09 18:18:59.388232 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Dutchess US-NY-027 28.0 Sterling Drive, Beekman, NY L1397136 P 41.6230312 -73.6487302 2015-01-01 10:30:00 obsr763723 S21144452 Traveling P22 EBIRD 15.0 0.483 3.0 1 G1091107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314652758 2018-08-04 17:13:55 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-01 11:13:00 obsr1472872 S23162491 Traveling P22 EBIRD 160.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321764145 2021-04-01 10:47:08.851048 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-05-21 06:45:00 obsr646558 S23565342 Traveling P22 EBIRD 20.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291303430 2021-04-01 11:30:42.037277 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N 58 United States US New York US-NY New York US-NY-061 30.0 Riverside Park--South of 96th St. L1018494 H 40.7902571 -73.9812093 2015-01-15 15:44:00 obsr2793388 S21369827 Traveling P22 EBIRD 90.0 0.322 3.0 1 G1110967 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302699760 2021-03-22 09:15:15.32301 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Niagara US-NY-063 13.0 US-NY-Niagara Falls-2583 River Rd L3483245 P 43.058826 -78.90728 2015-03-12 18:36:00 obsr916033 S22317067 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310078810 2021-11-15 03:06:58.889978 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-14 16:15:00 obsr1135516 S22867627 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310503038 2021-04-01 11:30:42.037277 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 1 United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--145th-155th St. L2594366 H 40.8303434 -73.952501 2015-04-16 13:40:00 obsr968874 S22896969 Traveling P22 EBIRD 85.0 0.805 19.0 1 G1222106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310543583 2021-11-09 20:43:00.341926 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY Putnam US-NY-079 US-NY_868 28.0 East Mountain/Round Hill Fahnestock State Park L3568832 P 41.4493767 -73.893528 2015-04-16 10:30:00 obsr2898234 S22899873 Traveling P22 EBIRD 300.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312216901 2021-03-19 16:06:54.047432 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-04-22 obsr1395007 S23008036 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311784332 2021-03-26 07:30:35.289997 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-21 07:49:00 obsr1655171 S22979428 Traveling P22 EBIRD 33.0 0.483 2.0 1 G1230727 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312622656 2021-04-01 12:40:54.473014 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Saratoga US-NY-091 13.0 Everts L2784190 P 43.2234315 -73.5887325 2015-04-24 14:40:00 obsr648176 S23036576 Traveling P22 EBIRD 245.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289264371 2019-10-25 16:03:05 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY St. Lawrence US-NY-089 13.0 Judson Street Rd L2365054 P 44.6285185 -75.1312923 2015-01-05 obsr2056110 S21205247 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315815922 2021-11-09 19:01:40.008558 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 S C2 S United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-04 07:35:00 obsr798742 S23226795 Traveling P22 EBIRD 200.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309277277 2016-09-03 11:31:15 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 1 United States US New York US-NY Allegany US-NY-003 28.0 Browns Marsh L2764855 H 42.1359887 -77.9052973 2015-04-11 12:40:00 obsr2700440 S22812552 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320453785 2021-03-26 07:46:52.994574 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 7 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-05-17 08:30:00 obsr2798912 S23487440 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320421779 2015-05-17 06:05:44 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Herkimer US-NY-043 14.0 West Canada Creek Scenic Overlook L3649273 P 43.3958803 -74.8611403 2015-05-15 12:20:00 obsr822321 S23485667 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311323931 2021-04-01 10:51:06.899622 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-04-19 16:35:00 obsr2497657 S22949230 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307858693 2021-04-01 12:18:57.910168 483 species avibase-85625D75 Mallard Anas platyrhynchos N 5 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-05 16:38:00 obsr1655171 S22708909 Traveling P22 EBIRD 21.0 0.483 2.0 1 G1212795 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312940094 2022-01-30 05:51:35.389484 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 4 Male, Adult (2); Male, Immature (2) United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-24 09:05:00 obsr2476180 S23056402 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310630583 2015-04-17 11:14:47 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 12 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 US-NY-Middleport-395 Lewiston Rd L2851891 P 43.12737 -78.446832 2015-04-17 10:05:00 obsr2588479 S22905729 Traveling P22 EBIRD 27.0 4.023 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294811506 2021-04-01 12:24:45.865424 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-02-03 11:30:00 obsr1633923 S21667087 Stationary P21 EBIRD 120.0 2.0 1 G1134860 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS394791457 2021-03-30 06:01:28.020715 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-16 13:21:00 obsr1759686 S29183876 Traveling P22 EBIRD 180.0 3.219 3.0 1 G1713124 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315397534 2021-11-09 18:46:59.887497 505 species avibase-C732CB10 American Black Duck Anas rubripes 6 United States US New York US-NY Dutchess US-NY-027 13.0 Rombout Road Conservancy Area, Poughkeepsie, NY L3610266 P 41.6982367 -73.8312471 2015-04-07 07:00:00 obsr2786327 S23204018 Traveling P22 EBIRD 270.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308507292 2021-03-30 19:29:33.633096 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 Mashomack Preserve L122936 H 41.0562576 -72.2896713 2015-04-06 13:00:00 obsr1311404 S22757787 Traveling P22 EBIRD 195.0 6.84 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322631740 2021-03-19 16:44:35.607263 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 16 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-19 08:30:00 obsr334398 S23616927 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307270605 2021-03-23 16:48:08.60516 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-03 13:30:00 obsr67057 S22667353 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309943730 2021-04-01 11:49:53.573686 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY Queens US-NY-081 30.0 Cunningham Park L519815 H 40.7376326 -73.7680435 2015-04-14 07:00:00 obsr676630 S22858115 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311013003 2015-04-18 18:23:52 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Rensselaer US-NY-083 13.0 Rifenburgh Road, north end L3573423 P 42.8686398 -73.5432985 2015-04-18 11:50:00 obsr979921 S22930310 Stationary P21 EBIRD 1.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310158343 2021-03-24 20:53:39.352228 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-04-14 obsr1591201 S22873125 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320168317 2018-08-06 22:29:37 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-11 05:45:00 obsr1009338 S23472575 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312720382 2021-03-26 06:55:00.227271 5976 species avibase-F4829920 American Woodcock Scolopax minor 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-04-25 06:53:00 obsr606693 S23043240 Traveling P22 EBIRD 17.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291723267 2021-04-01 12:18:57.910168 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-18 11:50:00 obsr1062070 S21402625 Stationary P21 EBIRD 151.0 3.0 1 G1114002 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320867093 2021-03-30 19:13:38.458673 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-18 09:15:00 obsr1688373 S23510501 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308852758 2021-03-30 19:19:56.775388 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Ontario US-NY-069 13.0 Clifton Springs Hospital pond L1011619 H 42.9592995 -77.1374989 2015-04-10 11:38:00 obsr606693 S22783893 Traveling P22 EBIRD 32.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309799307 2019-10-25 16:17:24 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-Potsdam-2112-2116 Co Rd 35 L3522365 P 44.695116 -75.085367 2015-04-13 17:44:00 obsr1152936 S22847810 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312974272 2021-11-09 21:57:40.409598 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 90 United States US New York US-NY Ulster US-NY-111 13.0 The Vly L3554956 P 42.13442 -73.94398 2015-04-25 13:10:00 obsr2862523 S23058482 Traveling P22 EBIRD 32.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311576292 2021-03-31 04:04:13.35072 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Seneca US-NY-099 13.0 Sampson SP L356616 H 42.7288824 -76.9038166 2015-04-20 09:00:00 obsr983655 S22965144 Traveling P22 EBIRD 150.0 8.047 3.0 1 G1229927 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310631207 2018-08-04 17:09:31 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-17 10:10:00 obsr646558 S22905771 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315536706 2021-11-15 03:06:58.889978 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 07:20:00 obsr352522 S23211658 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322333415 2021-03-19 16:44:35.607263 5891 species avibase-DC3050A9 Ruddy Turnstone Arenaria interpres 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-22 06:48:00 obsr334398 S23600030 Traveling P22 EBIRD 9.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319140241 2021-04-01 11:15:31.646886 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 11:00:00 obsr1659461 S23414926 Traveling P22 EBIRD 420.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313457840 2021-04-01 11:49:53.573686 592 species avibase-3072CC16 Redhead Aythya americana N X United States US New York US-NY Queens US-NY-081 30.0 Queens College L2994245 H 40.7363804 -73.820286 2015-04-27 09:00:00 obsr2233270 S23088323 Stationary P21 EBIRD 3.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290538543 2021-04-01 11:15:31.646886 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-11 13:30:00 obsr2448957 S21307671 Traveling P22 EBIRD 240.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316868940 2017-09-07 00:41:21 431 species avibase-90E2543E Blue-winged Teal Spatula discors 1 United States US New York US-NY Clinton US-NY-019 US-NY_849 13.0 Kings Bay WMA L574259 H 44.9584028 -73.3625686 2015-05-07 10:10:00 obsr884584 S23287450 Stationary P21 EBIRD 25.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS335956724 2021-03-23 16:52:36.900075 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 9 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven National Laboratory (restricted access) L2808445 H 40.8710034 -72.880066 2015-04-27 06:07:00 obsr2137822 S24576712 Traveling P22 EBIRD 97.0 4.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319870100 2015-05-15 20:08:43 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.3458884 -76.710341 2015-05-15 07:10:00 obsr2224244 S23456526 Stationary P21 EBIRD 85.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312247551 2021-04-01 10:53:25.818871 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Marathon-1919–1965 Clarks Corners Rd L3584189 P 42.433054 -76.144346 2015-04-23 07:15:00 obsr1092576 S23010204 Traveling P22 EBIRD 8.0 0.161 2.0 1 G1232708 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311141994 2021-04-01 11:49:53.573686 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge--Big Johns Pond L594699 H 40.6206631 -73.8238335 2015-04-18 14:22:00 obsr991026 S22938173 Traveling P22 EBIRD 49.0 1.609 2.0 1 G1225469 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312833857 2021-11-09 21:43:58.300436 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Ulster US-NY-111 13.0 Black Creek Preserve L2086582 H 41.8236532 -73.9574718 2015-04-25 13:16:00 obsr1482758 S23050134 Traveling P22 EBIRD 22.0 0.805 2.0 1 G1235165 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295256769 2021-03-26 07:20:31.408164 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Suffolk US-NY-103 30.0 41 Belton Road, Babylon L986538 P 40.6931311 -73.3296955 2015-02-06 07:00:00 obsr247620 S21702367 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309138539 2021-03-24 20:33:47.533911 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-11 15:10:00 obsr2257236 S22803310 Traveling P22 EBIRD 45.0 0.418 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292128089 2015-01-22 15:45:21 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-01-20 13:12:00 obsr2595828 S21434294 Traveling P22 EBIRD 27.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295650171 2022-02-17 14:32:23.002448 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-08 15:00:00 obsr2448957 S21734150 Traveling P22 EBIRD 170.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312147450 2018-08-04 17:11:50 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Tompkins US-NY-109 28.0 Thomas Rd., south (Six Mile Creek ponds & marsh) L388439 H 42.4020377 -76.3778114 2015-04-22 17:55:00 obsr2074043 S23003212 Traveling P22 EBIRD 5.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317377526 2021-03-26 06:17:19.712573 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-08 11:00:00 obsr1379161 S23316091 Stationary P21 EBIRD 210.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310594237 2021-03-24 20:58:04.794277 32973 species avibase-10C601D3 Bay-breasted Warbler Setophaga castanea 1 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-04-08 06:30:00 obsr2694889 S22903262 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322817953 2021-03-26 06:29:56.44369 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-25 08:34:00 obsr1243175 S23628365 Traveling P22 EBIRD 45.0 0.644 1.0 1 G1289062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311831446 2021-03-26 07:07:10.758746 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 2 United States US New York US-NY Richmond US-NY-085 30.0 Tottenville High School L884731 P 40.5282185 -74.1924763 2015-04-21 13:00:00 obsr1958124 S22982745 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312921628 2021-04-01 11:30:42.037277 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 16:30:00 obsr1349960 S23055227 Traveling P22 EBIRD 140.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312734305 2015-04-25 09:11:54 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 3 United States US New York US-NY Westchester US-NY-119 30.0 US-NY-Katonah-28 NY-139-Angela fly L3588648 P 41.294892 -73.717307 2015-04-25 08:00:00 obsr2078798 S23044141 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304637489 2015-03-22 14:11:45 6339 species avibase-8535345B Herring Gull Larus argentatus 16 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-03-22 12:51:00 obsr1958124 S22467374 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291940427 2021-04-01 12:32:15.282601 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-19 07:30:00 obsr1160328 S21419267 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300461818 2021-03-26 06:07:26.162322 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-03-01 09:30:00 obsr2700440 S22139508 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299881499 2022-02-17 14:32:23.002448 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-27 13:05:00 obsr1605975 S22094761 Traveling P22 EBIRD 100.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322890412 2021-03-19 16:44:35.607263 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-25 15:37:00 obsr2595828 S23632758 Traveling P22 EBIRD 70.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309441218 2021-11-09 19:47:28.367893 483 species avibase-85625D75 Mallard Anas platyrhynchos 24 United States US New York US-NY Orange US-NY-071 28.0 Wickham Lake L2377339 P 41.2827085 -74.294014 2015-04-07 17:15:00 obsr1872991 S22822447 Stationary P21 EBIRD 40.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317027003 2021-06-25 16:16:05.676603 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 16:15:00 obsr2448957 S23296587 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS973383190 2021-03-26 06:14:19.776945 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia X United States US New York US-NY Columbia US-NY-021 13.0 Turkey Walk Farm (private) L9358070 P 42.4237499 -73.7095224 2015-05-24 09:00:00 obsr712650 S72915325 Historical P62 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315851743 2021-03-30 19:39:10.250398 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Nassau US-NY-059 30.0 Leeds Pond Preserve L1413893 H 40.8148604 -73.7008044 2015-05-04 14:00:00 obsr676630 S23228763 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290368095 2022-01-12 18:14:10.119384 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 3 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--South Entrance L825062 H 44.3641149 -74.1511381 2015-01-11 08:20:00 obsr835300 S21293877 Traveling P22 EBIRD 98.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294400963 2015-02-01 15:56:13 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 6 United States US New York US-NY Suffolk US-NY-103 30.0 Oregon Rd L756800 P 41.0287369 -72.51719 2015-02-01 15:48:00 obsr2485753 S21633949 Traveling P22 EBIRD 7.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323605443 2018-08-06 22:31:17 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 2 United States US New York US-NY Broome US-NY-007 28.0 Page Pond SF L3008713 H 42.1472497 -75.5108732 2015-05-28 07:00:00 obsr1830659 S23680082 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309369164 2015-04-12 12:31:29 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Oneida US-NY-065 13.0 Verona, Verona Beach State Park L3557734 P 43.17773 -75.73251 2015-04-12 10:40:00 obsr666964 S22818311 Stationary P21 EBIRD 9.0 1.0 1 G1215937 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314292175 2021-04-01 11:14:02.420281 337 species avibase-694C127A Mute Swan Cygnus olor N 2 United States US New York US-NY Jefferson US-NY-045 US-NY_805 Point Peninsula Bird Conservation Area L1367385 H 43.9953255 -76.2449646 2015-04-29 13:48:00 obsr1016945 S23140594 Traveling P22 EBIRD 90.0 24.14 2.0 1 G1244061 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307744185 2021-04-01 12:14:19.266649 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-05 07:35:00 obsr1137265 S22700703 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305130920 2018-08-04 17:02:47 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-03-24 17:00:00 obsr544268 S22505279 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308723804 2015-04-09 18:40:27 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3551409 P 42.693501 -77.711644 2015-04-09 17:56:00 obsr682121 S22774473 Stationary P21 EBIRD 43.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323283635 2021-03-23 17:18:00.959502 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-05-25 06:22:00 obsr119187 S23658364 Traveling P22 EBIRD 153.0 1.77 3.0 1 G1288936 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288556330 2021-03-26 07:56:20.588749 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Nassau US-NY-059 30.0 Tackapausha Museum and Preserve L617756 H 40.6685464 -73.482399 2015-01-02 12:45:00 obsr547602 S21147471 Traveling P22 EBIRD 60.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298312632 2019-01-27 11:09:05 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-18 15:55:00 obsr2902954 S21965740 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310377035 2016-03-18 12:12:04 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 28.0 Basic Creek Reservoir (access permit required) L1152329 H 42.4853825 -74.0201926 2015-04-16 07:27:00 obsr1165633 S22888035 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297994046 2018-08-04 16:56:44 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-02-17 12:06:00 obsr502830 S21938745 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295742003 2021-03-24 19:47:16.07498 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-02-06 07:34:00 obsr589593 S21740781 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298427031 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-02-19 08:00:00 obsr2207991 S21976235 Traveling P22 EBIRD 120.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307097110 2021-11-09 21:36:59.310849 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 2 United States US New York US-NY Ulster US-NY-111 13.0 rosendale, ny L1465355 P 41.8499692 -74.081765 2015-04-02 10:00:00 obsr187701 S22654848 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313179689 2015-05-13 17:09:26 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-04-02 obsr1381746 S23070745 Historical P62 EBIRD 2.0 1 G1237147 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291199526 2021-04-01 12:35:52.669792 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 2 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--Liverpool Marina L837889 H 43.1007479 -76.2093687 2015-01-15 14:45:00 obsr979921 S21360942 Traveling P22 EBIRD 25.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309677264 2021-04-01 10:51:06.899622 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Town of Busti L2076554 P 42.0197126 -79.3120193 2015-04-12 08:00:00 obsr2910282 S22838943 Traveling P22 EBIRD 45.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305106142 2021-12-10 08:21:29.396662 7429 species avibase-1327AC55 Osprey Pandion haliaetus 4 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-01 10:00:00 obsr2783268 S22503379 Traveling P22 EBIRD 240.0 8.047 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303255736 2021-04-26 04:57:02.963704 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-15 11:41:00 obsr2404047 S22360333 Traveling P22 EBIRD 74.0 4.828 2.0 1 G1182680 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322908104 2021-04-01 12:30:15.438381 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Castle Road - Ponds L742345 P 43.150683 -74.8973608 2015-05-25 14:28:00 obsr1000124 S23633865 Traveling P22 EBIRD 40.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298990053 2021-04-01 11:43:48.927316 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 1 United States US New York US-NY Ontario US-NY-069 13.0 **US-NY-ONT Clifton Springs--Tops & Eversons, Kendall St. (3275A) [Clifton Springs_NE] L1313358 P 42.968965 -77.1407444 2015-02-22 11:40:00 obsr606693 S22023395 Traveling P22 EBIRD 12.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313011386 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-25 15:00:00 obsr150415 S23060683 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306556218 2021-04-01 12:28:44.297881 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Chenango US-NY-017 28.0 Chenango River along RR tracks L3528471 P 42.3709608 -75.6386 2015-03-31 14:00:00 obsr1303581 S22614164 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309565503 2020-01-16 17:00:56 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-12 13:55:00 obsr302343 S22830817 Traveling P22 EBIRD 30.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323935971 2018-04-16 15:51:00 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-30 07:00:00 obsr2843748 S23704208 Traveling P22 EBIRD 140.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322540770 2021-03-19 16:27:31.421791 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Headquarters L153039 H 43.112325 -78.4048443 2015-05-24 14:50:00 obsr991026 S23611780 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316030445 2021-03-19 16:19:20.977326 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 5 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-05 06:51:00 obsr502830 S23239415 Traveling P22 EBIRD 136.0 1.207 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290426242 2015-01-11 14:33:24 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Madison US-NY-053 28.0 Linda Salters feeders L3192221 P 42.7956011 -75.810535 2015-01-11 13:10:00 obsr642516 S21298531 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311811964 2021-12-10 08:21:29.396662 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 3 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-04-17 14:30:00 obsr114791 S22981405 Traveling P22 EBIRD 60.0 1.609 1.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308411141 2015-04-08 07:13:14 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hopson Rd, D-ville L3547843 P 43.1244376 -74.7591383 2015-04-07 16:07:00 obsr1000124 S22750074 Incidental P20 EBIRD 2.0 0 G1210994 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293896197 2021-04-01 11:24:19.637193 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-29 08:00:00 obsr1782363 S21594442 Stationary P21 EBIRD 60.0 2.0 1 G1130014 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300004119 2015-09-05 15:59:13 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-02-12 08:13:00 obsr1721609 S22103629 Stationary P21 EBIRD 68.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313864166 2021-03-24 21:10:11.310781 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Saratoga US-NY-091 13.0 36 Curt Blvd L2229955 P 43.0492325 -73.8315735 2015-04-28 11:00:00 obsr907769 S23113843 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309959926 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-14 06:49:00 obsr1668936 S22859169 Traveling P22 EBIRD 130.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321914883 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-22 06:45:00 obsr41879 S23575121 Traveling P22 EBIRD 205.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308877073 2021-04-01 10:47:08.851048 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-10 11:00:00 obsr800690 S22785502 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318657887 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L2846580 P 40.7769505 -73.9707327 2015-05-09 07:00:00 obsr1336375 S23386722 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313369185 2021-03-26 06:09:25.361188 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Broome US-NY-007 28.0 SUNY Broome Community College L3583220 H 42.1353684 -75.9091816 2015-04-22 14:30:00 obsr826254 S23082194 Traveling P22 EBIRD 110.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS725736297 2019-03-17 16:38:40 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Essex US-NY-031 14.0 Chapamini Residence L2506431 P 43.820419 -73.493089 2015-05-17 02:15:00 obsr265018 S53947572 Traveling P22 EBIRD 93.0 1.609 2.0 1 G3954751 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309011573 2021-04-01 11:47:43.260314 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-10 09:00:00 obsr2224244 S22795248 Stationary P21 EBIRD 388.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310203687 2021-04-01 11:47:43.260314 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-15 09:35:00 obsr1494506 S22876170 Stationary P21 EBIRD 159.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314327821 2015-06-14 21:43:17 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Mays Point Pool and road L99392 H 42.9946205 -76.7637599 2015-04-30 11:47:00 obsr354090 S23142268 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324938554 2021-03-24 19:48:44.880783 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-29 06:13:00 obsr334398 S23771526 Traveling P22 EBIRD 97.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289729575 2021-03-26 06:58:34.561206 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-01-07 07:45:00 obsr2588479 S21241794 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308096745 2021-12-08 07:58:41.562209 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-06 17:13:00 obsr2206421 S22726232 Traveling P22 EBIRD 43.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304517420 2021-04-01 10:53:25.818871 30494 species avibase-240E3390 House Sparrow Passer domesticus N 4 United States US New York US-NY Cortland US-NY-023 28.0 Highland Rd. - Lapeer L1979942 P 42.4470848 -76.0534573 2015-03-21 14:15:00 obsr931232 S22458676 Traveling P22 EBIRD 15.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310219657 2021-03-26 06:59:15.841579 32973 species avibase-10C601D3 Bay-breasted Warbler Setophaga castanea 2 United States US New York US-NY Oswego US-NY-075 Rudy's L3565747 P 43.44948 -76.55813 2015-04-15 12:52:00 obsr1494506 S22877145 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291611888 2021-11-09 20:38:40.141528 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Putnam US-NY-079 28.0 Croton Falls Reservoir, Stoneleigh Ave. overlook L1354697 H 41.3716305 -73.6618434 2015-01-18 07:44:00 obsr1386475 S21394020 Traveling P22 EBIRD 45.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317679699 2015-05-09 16:58:59 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 13.0 Durand-Eastman Park--Horseshoe Rd. L1167931 H 43.2369181 -77.564064 2015-05-09 08:38:00 obsr2774009 S23333978 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1133749704 2021-04-27 11:51:24.07805 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Irondequoit-162 Harwick Rd L3800402 P 43.174059 -77.55393 2015-04-26 11:53:00 obsr1181085 S86492668 Traveling P22 EBIRD 175.0 1.609 15.0 1 G6615593 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289321049 2021-03-30 19:29:33.633096 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 12 United States US New York US-NY Suffolk US-NY-103 30.0 Patchogue Lake L852362 H 40.7684842 -73.0212522 2015-01-05 14:30:00 obsr247620 S21209970 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290248882 2021-03-23 16:39:03.255227 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Richmond US-NY-085 Mill Creek L1302294 H 40.5198919 -74.2406809 2015-01-10 09:26:00 obsr1893950 S21284410 Stationary P21 EBIRD 7.0 2.0 1 G1103725 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306011353 2021-03-30 19:13:38.458673 662 species avibase-FB738385 Bufflehead Bucephala albeola 15 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 11:40:00 obsr934639 S22572430 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300002331 2015-03-02 12:00:06 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-02-28 09:30:00 obsr1764243 S22103493 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315651250 2021-04-01 11:15:31.646886 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 10:00:00 obsr644027 S23217983 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306897877 2015-04-02 08:58:59 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Westchester US-NY-119 US-NY_871 30.0 Rt 35 and Rt 121 L3531970 P 41.261356 -73.5943222 2015-04-01 12:00:00 obsr2924527 S22639526 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307780237 2021-03-26 07:30:35.289997 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 9 United States US New York US-NY Tompkins US-NY-109 13.0 Allan H. Treman State Marine Park--marina (not lakeshore or woods) L159024 H 42.4571425 -76.5143238 2015-03-29 10:15:00 obsr2261732 S22703415 Traveling P22 EBIRD 30.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313554604 2021-03-23 17:14:01.933181 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Washington US-NY-115 13.0 New Swamp Rd. L3805899 H 43.3275378 -73.5075903 2015-04-27 11:31:00 obsr1222746 S23094026 Traveling P22 EBIRD 46.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307473513 2015-04-05 07:57:50 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-04-04 14:00:00 obsr1223279 S22681939 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS351250236 2018-08-04 17:28:17 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Fulton US-NY-035 13.0 Mayfield L300572 T 43.10447 -74.26488 2015-05-21 08:00:00 obsr2904149 S25673105 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316168126 2018-08-04 17:14:54 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia X United States US New York US-NY Albany US-NY-001 13.0 Ann Lee Pond L213238 H 42.7376342 -73.813757 2015-05-05 15:16:00 obsr1165633 S23246792 Traveling P22 EBIRD 72.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290852148 2018-08-04 16:53:11 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 125 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 17:00:00 obsr1092576 S21332703 Traveling P22 EBIRD 30.0 4.828 44.0 1 G1108343 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309338223 2021-03-26 07:16:36.956617 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-12 07:45:00 obsr1918430 S22816420 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295413710 2021-03-30 19:25:27.212017 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 250 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-02-07 14:37:00 obsr1893950 S21715107 Traveling P22 EBIRD 17.0 0.483 2.0 1 G1137883 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321787260 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-21 09:00:00 obsr139757 S23566748 Traveling P22 EBIRD 180.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309178528 2021-04-01 11:15:31.646886 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 07:30:00 obsr2152799 S22806046 Traveling P22 EBIRD 300.0 8.047 1.0 1 G1214818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314405886 2018-08-04 17:13:11 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Reservoir L2133605 H 42.4125738 -76.4588892 2015-04-30 15:45:00 obsr887540 S23147085 Traveling P22 EBIRD 47.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313903619 2015-04-28 20:37:00 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.3198299 2015-04-27 10:15:00 obsr479109 S23116365 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316051985 2021-04-01 11:30:42.037277 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 07:00:00 obsr2706811 S23240629 Traveling P22 EBIRD 120.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318892517 2021-04-01 11:15:31.646886 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 4 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-05-12 06:36:00 obsr564905 S23400665 Traveling P22 EBIRD 84.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309522050 2021-11-09 19:59:19.823554 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Orange US-NY-071 28.0 Young Ave L3559116 P 41.5281972 -74.2014241 2015-04-12 11:55:00 obsr1136997 S22827922 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303284662 2018-08-04 17:01:29 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Tioga US-NY-107 28.0 Moyer Park, Candor L3490119 H 42.22822 -76.33592 2015-03-15 12:53:00 obsr1655171 S22362573 Traveling P22 EBIRD 10.0 0.322 2.0 1 G1180908 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301813479 2021-03-23 17:37:19.520785 33049 species avibase-136451CF Yellow-throated Warbler Setophaga dominica 1 United States US New York US-NY Saratoga US-NY-091 13.0 Geyser Creek Marsh L1948246 P 43.0587292 -73.8094997 2015-03-08 15:30:00 obsr907769 S22242512 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306824624 2021-03-26 06:09:25.361188 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-01 18:30:00 obsr2001289 S22634296 Traveling P22 EBIRD 30.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325233494 2018-08-06 22:31:18 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 1 United States US New York US-NY Livingston US-NY-051 13.0 US-NY-PORTAGE, 625 NY-436 L3579171 P 42.574927 -78.013591 2015-05-28 10:26:00 obsr731272 S23792563 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303554163 2021-04-01 12:18:57.910168 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 41 United States US New York US-NY Tompkins US-NY-109 13.0 Community Corners, Ithaca, 836 Hanshaw Rd L1804656 P 42.469159 -76.479348 2015-03-16 16:53:00 obsr887540 S22384518 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312682792 2021-11-09 19:45:49.700607 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Orange US-NY-071 28.0 Glenmere Lake L2108451 P 41.3252637 -74.3362427 2015-04-20 17:10:00 obsr1872991 S23040795 Stationary P21 EBIRD 20.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303026306 2021-03-26 08:14:57.071052 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Westchester US-NY-119 30.0 Court Rd., Bedford L1528787 P 41.2049241 -73.6418701 2015-03-13 15:10:00 obsr834377 S22342578 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294372566 2018-08-04 16:55:33 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Nassau US-NY-059 30.0 Tackapausha Museum and Preserve L617756 H 40.6685464 -73.482399 2015-02-01 09:10:00 obsr2871735 S21631709 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305603706 2021-03-30 19:43:32.881136 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-03-27 11:00:00 obsr2924527 S22542044 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317589636 2018-08-06 22:29:23 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 2 United States US New York US-NY Cayuga US-NY-011 13.0 Bahar Preserve (FLLT) and Carpenter Falls L3625932 H 42.8188882 -76.3336945 2015-05-09 07:35:00 obsr723887 S23329157 Traveling P22 EBIRD 165.0 2.414 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311812508 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 09:36:00 obsr2906952 S22981438 Traveling P22 EBIRD 124.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312089022 2018-08-04 17:11:44 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Warren US-NY-113 13.0 Crandall Park L1504751 H 43.3194382 -73.662484 2015-04-22 09:38:00 obsr1222746 S22999370 Traveling P22 EBIRD 33.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317123963 2018-08-06 22:29:09 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-08 06:00:00 obsr1165633 S23302073 Traveling P22 EBIRD 274.0 7.081 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307533258 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-22 15:15:00 obsr2277801 S22685958 Historical P62 EBIRD 105.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300318451 2021-03-30 19:07:52.958398 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-01 14:45:00 obsr2499879 S22129602 Traveling P22 EBIRD 120.0 6.437 2.0 1 G1163783 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313709529 2021-03-26 07:15:58.375907 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 Remington Recreation Trail L270558 H 44.6127667 -75.1665791 2015-04-27 17:20:00 obsr2056110 S23103935 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316559777 2021-03-19 16:44:35.607263 636 species avibase-B77377EE Common Eider Somateria mollissima 7 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area - NCAE L474355 P 43.0923966 -77.3768806 2015-05-04 08:15:00 obsr2113616 S23270135 Traveling P22 EBIRD 120.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289866336 2021-03-26 06:53:58.593564 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-01-05 10:30:00 obsr2892286 S21253010 Stationary P21 EBIRD 120.0 2.0 1 G1101267 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300098949 2021-04-01 12:18:57.910168 616 species avibase-25C94A8F Greater Scaup Aythya marila 4 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-02-28 16:46:00 obsr620377 S22111935 Traveling P22 EBIRD 56.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288253251 2018-08-04 16:52:17 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 100 United States US New York US-NY Delaware US-NY-025 28.0 Cannonsville Reservoir, below dam L2384574 H 42.0740489 -75.3954708 2015-01-01 10:15:00 obsr1788273 S21122032 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308201339 2015-04-07 08:07:11 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 150 United States US New York US-NY Tompkins US-NY-109 13.0 Maplewood Dr., Ithaca L1420859 P 42.46891 -76.45742 2015-04-07 07:59:00 obsr2211210 S22734469 Traveling P22 EBIRD 8.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304448143 2021-11-09 21:35:18.646328 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 2 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-03-21 08:00:00 obsr2862523 S22453396 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309142378 2021-04-01 11:49:53.573686 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-11 10:45:00 obsr16685 S22803567 Traveling P22 EBIRD 245.0 9.334 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293586976 2018-08-04 16:52:15 591 species avibase-1929E1E1 Canvasback Aythya valisineria X United States US New York US-NY Suffolk US-NY-103 30.0 Lake Capri L1133165 H 40.6961927 -73.3003521 2015-01-01 09:30:00 obsr1152226 S21569912 Traveling P22 EBIRD 60.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309489197 2021-04-01 12:18:57.910168 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom45 L3513987 H 42.3312349 -76.5993162 2015-04-12 14:45:00 obsr637454 S22825624 Stationary P21 EBIRD 15.0 6.0 1 G1216621 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309946499 2021-11-02 20:32:06.137153 303 species avibase-B59E1863 Canada Goose Branta canadensis 9 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-04-14 08:30:00 obsr71667 S22858281 Traveling P22 EBIRD 60.0 0.805 10.0 1 G1219386 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294182282 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek--Leon S. Kaiser Park L1312993 H 40.5806115 -73.9979002 2015-01-31 13:50:00 obsr1407710 S21616723 Traveling P22 EBIRD 25.0 0.402 2.0 1 G1130229 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310758020 2021-03-23 16:52:36.900075 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 4 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-16 09:15:00 obsr2692002 S22914078 Traveling P22 EBIRD 45.0 3.219 2.0 1 G1223381 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309323639 2021-04-01 11:24:19.637193 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 2 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-12 08:40:00 obsr334398 S22815543 Traveling P22 EBIRD 44.0 0.032 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310906524 2015-04-18 12:45:51 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southeast L879238 H 42.4674118 -76.4183235 2015-04-18 09:15:00 obsr887540 S22923681 Stationary P21 EBIRD 37.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302004401 2022-02-04 06:14:13.892644 483 species avibase-85625D75 Mallard Anas platyrhynchos 50 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-03-09 11:45:00 obsr1734972 S22256568 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305375776 2021-04-01 11:30:42.037277 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N 50 United States US New York US-NY New York US-NY-061 30.0 Union Square Park L486424 H 40.7361632 -73.9901558 2015-03-25 12:30:00 obsr1481911 S22524286 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303594943 2021-03-26 08:14:57.071052 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Westchester US-NY-119 30.0 Upper Mount Hope, Hastings-on-Hudson L3493532 P 40.9961499 -73.8749993 2015-03-13 08:45:00 obsr641553 S22387513 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291670878 2015-01-18 13:31:13 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 Unknown Sex, Adult (1) United States US New York US-NY Washington US-NY-115 13.0 Vaughn Rd and Rt 36 intersection L3300909 P 43.372247 -73.5635987 2015-01-18 11:35:00 obsr1222746 S21398711 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311352962 2021-03-26 07:46:52.994574 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-04-19 17:14:00 obsr2321296 S22951010 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308626369 2021-03-26 06:55:00.227271 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Ontario US-NY-069 13.0 yard -- 3.0 miles RT to West Lake Rd to Wyffels, then return. L1842189 P 42.8530848 -77.2848701 2015-04-09 09:45:00 obsr983655 S22766641 Traveling P22 EBIRD 40.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317008963 2021-11-15 03:06:58.889978 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-06 09:00:00 obsr1253931 S23295536 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302318865 2021-04-01 11:27:18.37144 406 species avibase-27B2749A Wood Duck Aix sponsa 8 United States US New York US-NY Montgomery US-NY-057 13.0 Minden Town L3478706 P 42.9535184 -74.730463 2015-03-10 08:05:00 obsr2846677 S22285552 Traveling P22 EBIRD 150.0 24.14 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309011606 2021-04-01 11:47:43.260314 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-10 09:00:00 obsr2224244 S22795248 Stationary P21 EBIRD 388.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314353304 2021-04-01 12:32:15.282601 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park /Hendr.Park L365070 P 40.6787341 -73.6936927 2015-04-30 08:15:00 obsr916370 S23143740 Traveling P22 EBIRD 210.0 6.759 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297455671 2015-02-16 08:45:36 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Farm Pond Cir. L3135510 P 42.5362492 -76.4618236 2015-02-08 08:40:00 obsr1183459 S21889347 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299912545 2021-11-09 18:44:40.018311 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum N 10 United States US New York US-NY Dutchess US-NY-027 13.0 US-NY-Amenia-355 Separate Rd L3443564 P 41.884258 -73.599765 2015-02-27 16:20:00 obsr1442681 S22096387 Traveling P22 EBIRD 25.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317317170 2021-03-24 19:47:16.07498 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-05-08 08:10:00 obsr589593 S23312528 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313878504 2021-03-19 16:44:35.607263 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 3 United States US New York US-NY Monroe US-NY-055 13.0 Mt. Hope Cemetery L249453 H 43.1287817 -77.6206675 2015-04-28 16:00:00 obsr2065230 S23114844 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309340991 2021-03-19 15:59:05.496822 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-4669 Summit Rd L3557495 P 42.204256 -78.193541 2015-04-12 09:27:00 obsr955789 S22816605 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324029228 2022-02-23 10:49:57.435801 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Jefferson US-NY-045 13.0 Ashland Flats WMA--Dike L2236085 H 44.1163071 -76.1958504 2015-05-25 12:20:00 obsr1558090 S23709823 Traveling P22 EBIRD 60.0 0.966 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313826276 2015-04-28 15:50:30 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-28 15:15:00 obsr869999 S23111448 Traveling P22 EBIRD 25.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305650352 2021-03-30 19:39:10.250398 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-27 15:40:00 obsr647628 S22545503 Traveling P22 EBIRD 45.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313809512 2021-03-30 19:29:33.633096 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 10 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-28 11:00:00 obsr1693806 S23110374 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307246060 2021-03-30 19:13:38.458673 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 28 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Park West L1756090 H 43.1831991 -77.5278997 2015-04-03 17:36:00 obsr1545618 S22665629 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309233932 2021-11-09 21:50:48.44865 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-11 08:00:00 obsr1588136 S22809750 Traveling P22 EBIRD 80.0 2.414 30.0 1 G1214172 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317099126 2021-03-26 06:29:56.44369 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-05-06 15:30:00 obsr1245041 S23300803 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312727223 2021-04-01 10:47:08.851048 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Whitney Point-10 Kales Hill Rd L3588590 P 42.348267 -75.964348 2015-04-25 08:16:00 obsr246469 S23043712 Traveling P22 EBIRD 16.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303750630 2021-03-24 19:19:28.646223 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Allegany US-NY-003 28.0 Chenunda Drive L1473325 P 42.0884737 -77.9247651 2015-03-17 07:55:00 obsr1310178 S22399504 Stationary P21 EBIRD 170.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310383180 2021-03-23 17:17:06.468947 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Wyoming US-NY-121 13.0 werner rd L3567156 P 42.8243254 -78.210125 2015-04-15 11:43:00 obsr393804 S22888437 Traveling P22 EBIRD 28.0 5.311 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319140263 2021-04-01 11:15:31.646886 591 species avibase-1929E1E1 Canvasback Aythya valisineria 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 11:00:00 obsr1659461 S23414926 Traveling P22 EBIRD 420.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313116108 2021-03-19 16:02:45.308962 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-26 07:15:00 obsr290506 S23067007 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306146784 2021-03-24 20:58:53.646623 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-03-29 14:30:00 obsr72341 S22582463 Stationary P21 EBIRD 210.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300046840 2021-03-24 20:16:00.852773 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-02-28 07:18:00 obsr1958124 S22107205 Traveling P22 EBIRD 14.0 0.644 2.0 1 G1161961 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302170356 2020-05-16 18:13:12 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Otsego US-NY-077 28.0 Lakeland Shores, Cooperstown L3455767 P 42.7017634 -74.9169838 2015-03-08 16:25:00 obsr131845 S22269115 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294281902 2018-08-04 16:52:57 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Ontario US-NY-069 13.0 Geneva L801018 P 42.8673463 -76.9827032 2015-01-09 12:45:00 obsr195058 S21624542 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307161617 2021-03-26 07:56:20.588749 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-03 09:30:00 obsr916370 S22659638 Traveling P22 EBIRD 85.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS328626116 2018-08-06 22:31:27 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College--Visitor Interpretive Center L212478 H 44.4486136 -74.2594002 2015-05-30 09:15:00 obsr877361 S24035629 Traveling P22 EBIRD 150.0 3.219 4.0 1 G1325876 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289467070 2021-03-24 20:23:39.258075 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 5 United States US New York US-NY Suffolk US-NY-103 30.0 Staller Drive L2618497 P 40.8661125 -72.6181121 2015-01-06 11:00:00 obsr1736113 S21221367 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318262099 2021-03-30 19:07:12.70155 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Jefferson US-NY-045 US-NY_759 13.0 South Sandy Creek observation platform L1808409 P 43.7140321 -76.1906148 2015-05-09 10:40:00 obsr1558090 S23365163 Traveling P22 EBIRD 95.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288117954 2021-03-24 20:23:39.258075 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Suffolk US-NY-103 30.0 Farm L137715 P 41.0795555 -72.4394913 2015-01-01 09:11:00 obsr2485753 S21110667 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305620666 2021-04-01 12:32:15.282601 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 15 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-27 11:30:00 obsr2534001 S22543339 Traveling P22 EBIRD 105.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311515126 2021-04-01 12:32:15.282601 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-10 13:58:00 obsr2233270 S22961055 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001898 2021-03-26 07:56:20.588749 681 species avibase-407E2CA8 Common Merganser Mergus merganser 6 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-31 16:00:00 obsr2218212 S23775949 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307153947 2021-03-23 16:29:02.691496 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Orleans US-NY-073 13.0 burns rd L3534668 P 43.1459786 -78.2837033 2015-04-03 10:50:00 obsr393804 S22659117 Traveling P22 EBIRD 9.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320865467 2018-08-06 22:30:28 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-18 07:15:00 obsr1688373 S23510428 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318298577 2021-03-19 16:12:42.877422 11371 species avibase-75600969 Northern Flicker Colaptes auratus 12 United States US New York US-NY Columbia US-NY-021 13.0 Gale Hill Road L213117 P 42.4809659 -73.4958735 2015-05-10 06:15:00 obsr570335 S23367035 Traveling P22 EBIRD 150.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310624275 2017-04-15 20:22:11 6040 species avibase-E7A14E91 Willet Tringa semipalmata 50 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip E L3559835 P 40.093967 -72.878533 2015-04-11 12:00:00 obsr1189028 S22905363 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221332 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323511100 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 4 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 09:48:00 obsr1982614 S23673930 Traveling P22 EBIRD 180.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314811778 2021-04-01 11:43:48.927316 26278 species avibase-A381417F House Wren Troglodytes aedon 4 United States US New York US-NY Ontario US-NY-069 13.0 Muar Lake west, Canandaigua L786557 H 42.8801468 -77.2634339 2015-04-30 11:24:00 obsr528918 S23172107 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313211586 2015-04-26 16:28:05 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 East Lake Rd Hemlock Lake L3592737 P 42.770055 -77.609425 2015-04-26 15:55:00 obsr749440 S23072577 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304718981 2018-08-04 17:02:30 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 20 Male, Adult (13); Female, Adult (7) United States US New York US-NY Rensselaer US-NY-083 13.0 Papscanee Island Nature Preserve L488165 H 42.5762804 -73.7484741 2015-03-22 16:53:00 obsr489496 S22473589 Stationary P21 EBIRD 41.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322316450 2021-12-24 11:05:53.916238 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Round Pond & Outlet, Greece L139794 H 43.2748148 -77.6451323 2015-05-23 18:20:00 obsr730231 S23599013 Traveling P22 EBIRD 29.0 0.805 2.0 1 G1286138 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313087949 2021-03-19 16:19:20.977326 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-26 07:33:00 obsr1603345 S23065434 Traveling P22 EBIRD 201.0 2.575 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302876830 2021-04-01 11:54:40.172593 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 6 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-13 14:35:00 obsr1958124 S22330400 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310317994 2021-04-01 12:26:53.827486 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-15 18:00:00 obsr30103 S22883842 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289209223 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY New York US-NY-061 30.0 Stuyvesant Cove Park (18th-23rd St.) L1466738 H 40.7327132 -73.9739117 2015-01-02 12:00:00 obsr2114161 S21201125 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308026381 2018-08-04 17:05:45 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-04-06 11:00:00 obsr1565981 S22721011 Traveling P22 EBIRD 58.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311243346 2021-11-09 20:17:47.602699 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Orange US-NY-071 28.0 Benedict Park L616771 H 41.5302945 -74.2563665 2015-04-19 11:30:00 obsr444155 S22944373 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319778348 2021-03-24 19:40:51.185319 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-15 08:41:00 obsr1302604 S23451633 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301949702 2021-04-01 11:54:40.172593 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-07 12:52:00 obsr1032565 S22252424 Traveling P22 EBIRD 93.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310742156 2021-04-01 11:15:31.646886 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-17 17:37:00 obsr152435 S22913066 Traveling P22 EBIRD 84.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308603565 2021-11-09 21:50:48.44865 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis N X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-08 18:10:00 obsr1482758 S22764902 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS548575834 2018-08-04 17:02:24 292 species avibase-60214D49 Cackling Goose Branta hutchinsii 40 United States US New York US-NY Jefferson US-NY-045 US-NY_759 13.0 Montario Point Rd., lookout L834019 H 43.6916264 -76.2018907 2015-03-22 09:00:00 obsr2188450 S40443302 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290607444 2021-03-26 07:20:31.408164 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Suffolk US-NY-103 30.0 418 Jamaica Avenue L653849 P 40.8152383 -72.9672861 2015-01-10 11:40:00 obsr2934754 S21312631 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303520854 2022-03-06 12:39:33.700954 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-03-15 09:15:00 obsr676630 S22382029 Rusty Blackbird Spring Migration Blitz P41 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298444062 2021-04-01 12:32:15.282601 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-19 09:25:00 obsr2902954 S21977901 Traveling P22 EBIRD 120.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311076992 2021-04-24 09:25:32.068828 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 H C2 H United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 15:36:00 obsr924076 S22934530 Traveling P22 EBIRD 231.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311145374 2021-03-26 07:07:10.758746 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-19 06:29:00 obsr1958124 S22938356 Traveling P22 EBIRD 7.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297039354 2021-03-23 17:37:19.520785 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 7 United States US New York US-NY Saratoga US-NY-091 14.0 Backyard, Greenfield, NY L1946142 P 43.1475128 -73.8316011 2015-02-14 08:30:00 obsr1321713 S21852050 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS465220761 2019-07-23 17:27:58 505 species avibase-C732CB10 American Black Duck Anas rubripes 8 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-14 14:40:00 obsr1708417 S34325508 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319169466 2021-03-26 06:17:19.712573 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-12 11:00:00 obsr1379161 S23416451 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305934288 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-26 08:27:00 obsr1548221 S22566817 Traveling P22 EBIRD 58.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311562303 2021-03-30 19:13:38.458673 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay L83 H 43.3130395 -77.7153471 2015-04-20 10:35:00 obsr2933610 S22964130 Stationary P21 EBIRD 86.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306159288 2018-08-04 17:04:38 32433 spuh avibase-E6552A7D sparrow sp. Passerellidae sp. (sparrow sp.) 4 Female, Adult (1); Unknown Sex and Age (3) United States US New York US-NY Saratoga US-NY-091 13.0 Hudson Crossing Park L1476458 H 43.1155261 -73.577908 2015-03-29 11:50:00 obsr1222746 S22583394 Traveling P22 EBIRD 200.0 1.77 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321893071 2021-03-19 16:42:57.886401 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 1 United States US New York US-NY Lewis US-NY-049 14.0 Leyden, 2722 New York 12D L3647557 P 43.55934 -75.37134 2015-05-22 08:09:00 obsr1783124 S23573761 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308331757 2021-03-19 16:27:31.421791 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 US-NY - 43.1186x-78.4326 - Apr 7, 2015, 6:23 PM L3546996 P 43.118612 -78.43262 2015-04-07 09:20:00 obsr58424 S22744175 Traveling P22 EBIRD 20.0 0.032 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319356668 2021-04-01 11:15:31.646886 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-13 07:30:00 obsr827632 S23426995 Traveling P22 EBIRD 360.0 4.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290970754 2018-08-04 16:53:18 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-01-14 11:59:00 obsr2914424 S21342422 Traveling P22 EBIRD 19.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311010363 2018-08-04 17:09:43 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-18 11:00:00 obsr1489009 S22930123 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299106718 2021-04-28 05:22:52.046239 662 species avibase-FB738385 Bufflehead Bucephala albeola 8 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-22 08:40:00 obsr2404047 S22035052 Traveling P22 EBIRD 380.0 4.828 2.0 1 G1157713 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310096230 2021-03-26 07:30:35.289997 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-14 08:23:00 obsr2683910 S22868863 Traveling P22 EBIRD 32.0 0.483 2.0 1 G1220019 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306137127 2021-11-09 18:45:27.180512 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Dutchess US-NY-027 28.0 Lakeside Park L3524113 P 41.5755973 -73.6043215 2015-03-29 17:30:00 obsr1058852 S22581723 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313175212 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-26 06:30:00 obsr352522 S23070483 Traveling P22 EBIRD 60.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322499651 2021-03-24 19:24:40.212356 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Canadaway Creek WMA L2266749 H 42.367272 -79.2358312 2015-05-24 08:41:00 obsr2497657 S23609566 Traveling P22 EBIRD 111.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307615921 2015-08-26 09:38:30 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 40 United States US New York US-NY Orleans US-NY-073 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Mallard Overlook L153401 H 43.138336 -78.37112 2015-04-04 17:03:00 obsr408487 S22691942 Stationary P21 EBIRD 15.0 2.0 1 G1205192 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312519288 2021-04-01 11:54:40.172593 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-24 09:00:00 obsr666331 S23028488 Traveling P22 EBIRD 120.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288159200 2021-04-01 12:14:19.266649 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 25 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree SP L283564 H 40.6394313 -73.2644575 2015-01-01 10:00:00 obsr1489009 S21114189 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305340275 2021-04-01 11:27:18.37144 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Montgomery US-NY-057 13.0 Route 67 a L3515098 P 42.9850918 -74.5349836 2015-03-25 15:39:00 obsr1708031 S22521391 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311179210 2021-03-26 07:46:52.994574 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 4 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-19 07:00:00 obsr2270510 S22940546 Traveling P22 EBIRD 51.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298786624 2021-04-01 12:32:15.282601 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 300 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-02-21 11:45:00 obsr247620 S22006984 Traveling P22 EBIRD 135.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318668908 2021-04-01 11:15:31.646886 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:30:00 obsr876649 S23387385 Traveling P22 EBIRD 300.0 3.0 6.0 1 G1265613 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320180789 2021-05-22 06:13:34.379614 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 07:15:00 obsr1807494 S23473229 Traveling P22 EBIRD 360.0 4.828 8.0 1 G1273230 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318175175 2021-04-01 11:30:42.037277 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-10 08:15:00 obsr369788 S23360340 Traveling P22 EBIRD 240.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296183978 2021-04-01 11:15:31.646886 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 16 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park--Southwest L154031 H 40.593426 -73.92352 2015-02-11 09:00:00 obsr2319444 S21775667 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288681646 2021-04-01 11:12:52.834774 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Greene US-NY-039 13.0 wildwing park catskill L749524 P 42.2294707 -73.8825417 2015-01-02 08:30:00 obsr2515158 S21157287 Stationary P21 EBIRD 195.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309671878 2021-03-24 20:33:47.533911 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 6 United States US New York US-NY Tompkins US-NY-109 28.0 Lindsay-Parsons Biodiversity Preserve (FLLT) L109055 H 42.3101677 -76.5216895 2015-04-12 11:30:00 obsr2225205 S22838598 Traveling P22 EBIRD 150.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303545692 2021-04-26 04:57:02.963704 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-16 08:45:00 obsr454647 S22383882 Traveling P22 EBIRD 352.0 3.219 2.0 1 G1182621 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313290172 2021-04-01 11:15:31.646886 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 16:59:00 obsr152435 S23077411 Traveling P22 EBIRD 160.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322316421 2021-12-24 11:05:53.916238 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Round Pond & Outlet, Greece L139794 H 43.2748148 -77.6451323 2015-05-23 18:20:00 obsr730231 S23599013 Traveling P22 EBIRD 29.0 0.805 2.0 1 G1286138 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871077 2021-03-26 07:56:20.588749 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-13 09:00:00 obsr2218212 S21672028 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309552369 2021-04-01 12:26:53.827486 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 10 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-04-12 15:20:00 obsr119187 S22829980 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310166902 2020-03-15 09:14:30 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo--Mirror Lake L2809120 H 42.9268351 -78.8632295 2015-04-15 08:25:00 obsr558077 S22873697 Traveling P22 EBIRD 35.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306087924 2018-08-04 17:04:41 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Essex US-NY-031 13.0 Overlooking Bulwagga Bay L3241662 P 44.030988 -73.4608555 2015-03-29 14:15:00 obsr2769235 S22577936 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320524016 2021-03-26 06:12:17.833181 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Watts Flats WMA L490893 H 42.0350422 -79.4263016 2015-05-17 08:07:00 obsr2910282 S23491036 Traveling P22 EBIRD 110.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316929928 2021-03-26 07:56:20.588749 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-07 08:00:00 obsr2505956 S23290998 Rusty Blackbird Spring Migration Blitz P41 EBIRD 180.0 3.219 12.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313861548 2021-03-30 12:05:58.533651 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-28 13:33:00 obsr1711339 S23113662 Traveling P22 EBIRD 99.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312649127 2019-06-10 00:04:47 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 28.0 Hillview Rd. wetland, Danby L916068 H 42.2828732 -76.5054578 2015-04-24 18:15:00 obsr881968 S23038310 Stationary P21 EBIRD 45.0 4.0 1 G1234258 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317420543 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-09 06:59:00 obsr2678807 S23319069 Traveling P22 EBIRD 79.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311359026 2021-11-15 03:06:58.889978 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-17 09:15:00 obsr2303233 S22951381 Traveling P22 EBIRD 180.0 1.609 4.0 1 G1226609 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324029229 2022-02-23 10:49:57.435801 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Jefferson US-NY-045 13.0 Ashland Flats WMA--Dike L2236085 H 44.1163071 -76.1958504 2015-05-25 12:20:00 obsr1558090 S23709823 Traveling P22 EBIRD 60.0 0.966 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292788514 2018-08-04 16:54:53 26278 species avibase-A381417F House Wren Troglodytes aedon 60 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-23 09:25:00 obsr2673845 S21506570 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321476716 2021-04-01 11:15:31.646886 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-20 08:00:00 obsr1637891 S23547718 Traveling P22 EBIRD 240.0 6.437 3.0 1 G1280684 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319825487 2018-08-04 17:27:18 406 species avibase-27B2749A Wood Duck Aix sponsa X United States US New York US-NY Jefferson US-NY-045 US-NY_759 13.0 El Dorado Beach Preserve L122943 H 43.8077665 -76.2342086 2015-05-15 09:40:00 obsr490751 S23454290 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299926083 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 East River, Brooklyn Bridge to S.I. Ferry L3339003 H 40.7039737 -74.0059423 2015-02-27 17:03:00 obsr2179748 S22097489 Traveling P22 EBIRD 64.0 2.43 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311193212 2022-02-18 10:47:29.953615 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 S C2 S United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-19 10:34:00 obsr1062070 S22941335 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290441238 2021-04-01 11:54:40.172593 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-11 15:20:00 obsr1958124 S21299698 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290832797 2021-03-26 07:07:10.758746 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 50 United States US New York US-NY Richmond US-NY-085 30.0 Tottenville High School L884731 P 40.5282185 -74.1924763 2015-01-13 13:05:00 obsr1958124 S21330974 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306243567 2021-03-23 16:48:08.60516 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-03-30 07:37:00 obsr730231 S22589736 Traveling P22 EBIRD 16.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318654591 2022-02-17 14:32:23.002448 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-11 10:30:00 obsr1659461 S23386569 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309121190 2021-03-24 19:39:45.790741 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 4 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Oak Orchard WMA--Goose Pond overlook L294791 H 43.1245968 -78.2729208 2015-04-11 11:15:00 obsr1104059 S22802154 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305676065 2021-03-30 19:07:52.958398 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-27 18:00:00 obsr1077730 S22547612 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314047580 2022-03-05 22:03:50.715584 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-29 10:00:00 obsr444155 S23125278 Traveling P22 EBIRD 135.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295402938 2021-04-01 12:41:58.738824 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-02-07 16:26:00 obsr1092576 S21714238 Stationary P21 EBIRD 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289518447 2021-11-09 20:12:16.773384 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-01-04 14:19:00 obsr1912104 S21225592 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305991882 2021-03-19 16:08:39.161312 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-03-29 10:28:00 obsr2497657 S22571089 Traveling P22 EBIRD 21.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322830911 2021-03-26 07:20:31.408164 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-21 17:06:00 obsr1319071 S23629133 Traveling P22 EBIRD 50.0 0.998 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288257823 2021-03-23 17:39:28.36772 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 6 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-01-01 09:00:00 obsr1839967 S21122464 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288358712 2022-03-05 22:03:50.715584 7429 species avibase-1327AC55 Osprey Pandion haliaetus 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-01-01 12:00:00 obsr1544235 S21131158 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299325573 2015-02-24 07:11:43 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-02-24 07:07:00 obsr2377251 S22051752 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312033203 2015-04-22 10:10:42 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Schuyler US-NY-097 US-NY_845 13.0 Finger Lakes NF--Potomac Rd north of Picnic Area Rd L3575637 P 42.498251 -76.789199 2015-04-22 08:18:00 obsr1092576 S22995943 Traveling P22 EBIRD 19.0 4.828 3.0 1 G1231210 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293698954 2021-03-30 19:06:31.183757 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 8 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-01-28 11:21:00 obsr502830 S21578521 Traveling P22 EBIRD 63.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294767344 2021-04-01 12:32:15.282601 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 8 United States US New York US-NY Nassau US-NY-059 30.0 Hofstra University L639147 H 40.7145119 -73.6003128 2015-01-30 09:35:00 obsr548996 S21663487 Traveling P22 EBIRD 80.0 2.414 9.0 1 G1133457 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310392633 2018-12-30 09:55:14 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-04-16 08:46:00 obsr2321296 S22889168 Traveling P22 EBIRD 50.0 1.127 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313288251 2021-11-15 03:11:49.507437 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Rockland US-NY-087 30.0 Rockland Lake SP L283611 H 41.1468757 -73.9234741 2015-04-26 12:20:00 obsr1932005 S23077270 Traveling P22 EBIRD 80.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298968954 2021-04-01 11:47:43.260314 7011 species avibase-534FB490 Northern Gannet Morus bassanus N 5 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-02-22 12:06:00 obsr2224244 S22021752 Stationary P21 EBIRD 57.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS320653649 2021-03-26 07:46:52.994574 337 species avibase-694C127A Mute Swan Cygnus olor N 1 United States US New York US-NY Albany US-NY-001 13.0 Tivoli Lake Preserve L3480691 H 42.6707536 -73.7632259 2015-05-17 06:20:00 obsr2851090 S23497992 Traveling P22 EBIRD 55.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307863063 2021-11-09 21:31:40.219848 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-05 12:00:00 obsr1917973 S22709189 Traveling P22 EBIRD 30.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288621440 2015-03-08 12:30:18 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-02 14:00:00 obsr2504709 S21152845 Traveling P22 EBIRD 120.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318524683 2021-11-09 18:47:27.727535 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 1 United States US New York US-NY Dutchess US-NY-027 13.0 US-NY-Rhinebeck-326 Enterprise Rd L3634297 P 41.931129 -73.827987 2015-05-11 09:03:00 obsr1442681 S23379551 Traveling P22 EBIRD 37.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316593181 2018-08-04 17:15:03 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-06 16:44:00 obsr1154 S23272099 Traveling P22 EBIRD 103.0 1.931 2.0 1 G1255316 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289006160 2021-03-30 19:29:33.633096 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Suffolk US-NY-103 30.0 Patchogue Lake L852362 H 40.7684842 -73.0212522 2015-01-04 12:01:00 obsr1107696 S21185370 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314295146 2015-05-28 16:02:14 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 1 United States US New York US-NY Schoharie US-NY-095 28.0 42.5940x-74.2750 - Schoharie Co NY L3601709 P 42.593956 -74.274979 2015-04-28 17:56:00 obsr2268588 S23140774 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323172719 2021-03-26 07:56:20.588749 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 500 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Nickerson Beach L508149 H 40.5871823 -73.6024 2015-05-26 10:15:00 obsr2505956 S23651287 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS322503696 2021-11-15 03:06:58.889978 7261 species avibase-86D45B8F Green Heron Butorides virescens 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-24 08:00:00 obsr1175815 S23609761 Traveling P22 EBIRD 180.0 3.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314127672 2021-03-24 20:11:57.676649 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 4 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-29 09:00:00 obsr1633923 S23130146 Traveling P22 EBIRD 480.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302705013 2021-04-01 10:55:39.308231 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-03-12 18:30:00 obsr252591 S22317527 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309206515 2021-04-01 11:58:54.966271 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-04-11 08:30:00 obsr2211750 S22807939 Stationary P21 EBIRD 190.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290003191 2021-04-01 11:47:43.260314 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Oswego US-NY-075 13.0 Indian Point L811112 H 43.3357446 -76.4155984 2015-01-09 12:15:00 obsr979921 S21264142 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299057784 2021-03-24 19:42:42.07177 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-02-22 11:00:00 obsr1801902 S22030902 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313937013 2021-03-30 19:07:52.958398 6339 species avibase-8535345B Herring Gull Larus argentatus 25 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-28 07:30:00 obsr2363365 S23118476 Traveling P22 EBIRD 270.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291860360 2021-03-23 16:39:03.255227 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 120 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-19 07:38:00 obsr1958124 S21413129 Traveling P22 EBIRD 7.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293089228 2021-11-09 18:19:47.736975 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Dutchess US-NY-027 13.0 The Fly, pond on Rte 82, Pine Plains L1407827 H 41.9927609 -73.6318195 2015-01-11 13:25:00 obsr2228949 S21530139 Traveling P22 EBIRD 45.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298914666 2021-11-09 17:50:46.710791 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 45 United States US New York US-NY Dutchess US-NY-027 13.0 Morse Hill Road, Amenia, NY L1098120 P 41.8959204 -73.57059 2015-02-20 15:25:00 obsr2175245 S22017475 Traveling P22 EBIRD 20.0 4.023 2.0 1 G1155866 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312283767 2018-08-04 17:11:45 634 species avibase-F3D74914 King Eider Somateria spectabilis 1 United States US New York US-NY Fulton US-NY-035 13.0 Great Sacandaga Lake - Vicinity of Mayfield Town Beach. L1307270 P 43.1386605 -74.2288658 2015-04-22 10:09:00 obsr316199 S23012492 Stationary P21 EBIRD 63.0 4.0 1 G1232598 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303863275 2021-11-09 20:39:07.387799 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Putnam US-NY-079 28.0 Paul A. Camarda Park L1354733 H 41.4031816 -73.6813005 2015-03-18 11:30:00 obsr1458092 S22408441 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310764037 2021-11-09 19:57:48.990233 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-16 14:20:00 obsr1912104 S22914465 Traveling P22 EBIRD 160.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308481070 2021-03-26 07:17:57.136956 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 20 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-07 13:00:00 obsr54384 S22755640 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311835258 2021-03-26 07:17:57.136956 27616 species avibase-D77E4B41 American Robin Turdus migratorius 45 United States US New York US-NY Seneca US-NY-099 13.0 Rt. 89 near Schuyler Creek L805638 H 42.803374 -76.7630877 2015-04-19 13:15:00 obsr2683910 S22982983 Traveling P22 EBIRD 109.0 0.644 2.0 1 G1230139 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309203607 2021-03-26 06:17:19.712573 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Erie US-NY-029 13.0 Home L2093742 P 42.7338768 -78.7242615 2015-04-11 16:12:00 obsr916033 S22807716 Stationary P21 EBIRD 195.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314200025 2021-03-26 07:20:31.408164 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-04-29 09:00:00 obsr2011512 S23134639 Traveling P22 EBIRD 120.0 0.402 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322196453 2021-04-01 11:15:31.646886 592 species avibase-3072CC16 Redhead Aythya americana N 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-23 07:15:00 obsr827632 S23592472 Traveling P22 EBIRD 210.0 6.9 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305806703 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-28 09:25:00 obsr876649 S22557292 Traveling P22 EBIRD 110.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310503575 2021-11-09 21:50:20.438938 5976 species avibase-F4829920 American Woodcock Scolopax minor X United States US New York US-NY Ulster US-NY-111 13.0 Hillside, Wallkill Valley Rail Trail L2914745 P 41.91009 -74.02274 2015-04-16 17:00:00 obsr1482758 S22897005 Traveling P22 EBIRD 60.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313369187 2021-03-26 06:09:25.361188 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Broome US-NY-007 28.0 SUNY Broome Community College L3583220 H 42.1353684 -75.9091816 2015-04-22 14:30:00 obsr826254 S23082194 Traveling P22 EBIRD 110.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294645144 2018-08-04 16:55:37 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 55 United States US New York US-NY Suffolk US-NY-103 30.0 Avon Lake, Amityville L3265581 H 40.6748285 -73.4134072 2015-02-02 15:30:00 obsr544268 S21653437 Traveling P22 EBIRD 10.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310375265 2019-07-23 17:28:19 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip G L3559870 P 40.435667 -73.336683 2015-04-11 15:00:00 obsr1175815 S22887899 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313510051 2021-04-01 11:54:40.172593 662 species avibase-FB738385 Bufflehead Bucephala albeola 20 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-27 08:00:00 obsr1620361 S23091467 Traveling P22 EBIRD 210.0 3.219 2.0 1 G1239560 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302156696 2018-11-05 19:36:15 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-03-07 09:20:00 obsr2871406 S22268004 Traveling P22 EBIRD 46.0 0.483 4.0 1 G1168660 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS412800177 2018-08-04 17:01:43 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Washington US-NY-115 13.0 Fort Miller L245558 T 43.16087 -73.57786 2015-03-18 obsr2943723 S30288490 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304097593 2021-03-23 17:23:45.772216 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas X United States US New York US-NY Livingston US-NY-051 13.0 County Route 71 L730552 P 42.7069197 -77.6757324 2015-03-19 09:38:00 obsr72341 S22426748 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317990966 2021-04-01 11:24:19.637193 251 domestic avibase-6835DC6C Graylag Goose (Domestic type) Anser anser (Domestic type) N 5 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-09 08:43:00 obsr745890 S23350930 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289349328 2021-03-22 08:58:29.008072 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY New York US-NY-061 Randalls Island--Waters Edge Garden (103rd St. Brg.-Little Hell Gate) L1785364 H 40.7889018 -73.9326719 2015-01-04 14:47:00 obsr1548221 S21212194 Traveling P22 EBIRD 38.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310607429 2021-03-23 17:00:13.087107 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, 212 Tareyton L252844 P 42.4724094 -76.4601243 2015-04-17 07:27:00 obsr2307843 S22904180 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311226378 2021-04-01 10:47:08.851048 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-04-19 06:50:00 obsr1044068 S22943335 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320358601 2021-11-15 03:06:58.889978 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-16 14:15:00 obsr2072398 S23482284 Traveling P22 EBIRD 135.0 3.219 2.0 1 G1274060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297585147 2021-03-26 08:09:53.772059 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Rensselaer US-NY-083 13.0 Poestenkill, Home Yard L940921 P 42.6943279 -73.5632408 2015-02-16 13:15:00 obsr1735540 S21901258 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313809352 2015-10-04 17:51:37 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 20 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Martens Tract L266868 H 43.0847778 -76.7093333 2015-04-25 18:40:00 obsr2292652 S23110354 Traveling P22 EBIRD 63.0 0.805 2.0 1 G1241275 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309990832 2015-04-14 13:51:14 7229 species avibase-AA7901D8 Snowy Egret Egretta thula X United States US New York US-NY Columbia US-NY-021 US-NY_806 13.0 Nutten Hooke L212118 H 42.3539421 -73.7890844 2015-04-14 09:50:00 obsr2837502 S22861294 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324004156 2018-08-06 22:31:28 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 S C2 S United States US New York US-NY Hamilton US-NY-041 14.0 Blue Mountain Trail L3684897 P 43.8708 -74.42096 2015-05-30 10:10:00 obsr1062070 S23708251 Traveling P22 EBIRD 341.0 3.219 3.0 1 G1296977 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310248487 2021-03-30 06:01:28.020715 11371 species avibase-75600969 Northern Flicker Colaptes auratus 11 United States US New York US-NY Monroe US-NY-055 13.0 lyell rd near manitou L2140486 P 43.1644966 -77.7492142 2015-04-15 14:00:00 obsr1929165 S22879051 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288187052 2018-08-04 16:52:21 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-01-01 11:38:00 obsr991026 S21116387 Traveling P22 EBIRD 110.0 3.219 1.0 1 G1088165 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309324298 2018-11-23 12:30:13 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 F C1 F United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Dayhoff Boardwalk (0.087 km) L835705 P 42.4764691 -76.4547345 2015-04-12 07:24:00 obsr2307843 S22815583 Traveling P22 EBIRD 5.0 0.05 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323101627 2021-11-09 19:19:19.10935 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Dutchess US-NY-027 13.0 Ferncliff Forest L912597 H 41.9581817 -73.9246845 2015-05-06 06:30:00 obsr1469078 S23646462 Traveling P22 EBIRD 300.0 6.437 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291506337 2021-04-01 11:47:43.260314 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Oswego US-NY-075 13.0 Oswego River- from Bridge St to mouth of the Harbor L2588293 P 43.4580852 -76.5115013 2015-01-17 12:45:00 obsr438598 S21385972 Traveling P22 EBIRD 75.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297075817 2015-02-15 11:54:26 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 20 United States US New York US-NY Columbia US-NY-021 13.0 Oak Hill L1982600 P 42.2175532 -73.6644459 2015-02-15 08:30:00 obsr2708602 S21855393 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307769528 2015-04-05 16:43:01 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Tompkins US-NY-109 28.0 Midline & Hollister L3540963 P 42.4148075 -76.351397 2015-02-08 16:00:00 obsr2261732 S22702449 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322042796 2018-08-06 22:30:49 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 1 United States US New York US-NY Broome US-NY-007 28.0 Aquaterra Park L209925 H 42.032165 -75.939463 2015-05-22 09:25:00 obsr2887137 S23583253 Traveling P22 EBIRD 180.0 2.414 2.0 1 G1284732 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290008685 2021-11-09 22:27:59.558644 303 species avibase-B59E1863 Canada Goose Branta canadensis N 40 United States US New York US-NY Sullivan US-NY-105 28.0 Wurtsboro L1061608 P 41.572435 -74.4754601 2015-01-09 09:30:00 obsr444155 S21264578 Traveling P22 EBIRD 60.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309114728 2018-08-04 17:08:34 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Oswego US-NY-075 13.0 Peter Scott Swamp L248391 H 43.2444498 -76.2705344 2015-04-11 13:48:00 obsr2945658 S22801776 Traveling P22 EBIRD 43.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301370525 2018-08-04 16:58:53 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-07 09:30:00 obsr2820047 S22208019 Stationary P21 EBIRD 75.0 5.0 1 G1168730 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302433824 2021-04-01 12:31:09.823741 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Livingston US-NY-051 US-NY_1760 13.0 Nations Rd. IBA L109153 H 42.8705649 -77.8070221 2015-03-11 09:45:00 obsr2933610 S22296758 Traveling P22 EBIRD 90.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304648830 2021-04-01 12:32:15.282601 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-22 08:30:00 obsr2207991 S22468126 Traveling P22 EBIRD 240.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309874220 2021-11-09 22:45:50.307761 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 11 United States US New York US-NY Sullivan US-NY-105 28.0 Bashakill State WMA--main boat launch (1131 S Rd.) L3563611 H 41.5158349 -74.5370644 2015-04-13 11:50:00 obsr2855945 S22853130 Stationary P21 EBIRD 80.0 5.0 1 G1219909 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300942812 2021-03-23 17:00:13.087107 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-04 16:36:00 obsr2871406 S22174845 Stationary P21 EBIRD 63.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308293285 2018-08-04 17:08:00 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Rensselaer US-NY-083 13.0 US-NY-Melrose - 42.8886x-73.6774 - Apr 7, 2015, 2:19 PM L3546620 P 42.888617 -73.677435 2015-04-07 14:19:00 obsr648176 S22741234 Stationary P21 EBIRD 74.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312535968 2021-04-01 11:30:42.037277 337 species avibase-694C127A Mute Swan Cygnus olor N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 07:30:00 obsr717528 S23029622 Traveling P22 EBIRD 280.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298418606 2021-04-01 11:54:40.172593 616 species avibase-25C94A8F Greater Scaup Aythya marila 4 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-02-18 10:43:00 obsr1032565 S21974943 Traveling P22 EBIRD 175.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313573757 2017-08-16 02:23:57 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-27 12:05:00 obsr2001289 S23095218 Traveling P22 EBIRD 15.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315920518 2021-03-30 19:07:52.958398 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 15:45:00 obsr1807494 S23232671 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301398329 2021-03-24 20:33:47.533911 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Ecology House L550854 H 42.4584285 -76.4832383 2015-03-07 13:45:00 obsr2820047 S22210256 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311371445 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-19 09:45:00 obsr1736134 S22952207 Stationary P21 EBIRD_NJ 45.0 2.0 1 G1227016 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312264743 2021-03-23 17:15:00.080143 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Rd. L508804 H 43.0489452 -76.7335796 2015-04-22 10:45:00 obsr1721609 S23011263 Traveling P22 EBIRD 78.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293992394 2021-03-31 04:04:13.35072 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 1 United States US New York US-NY Seneca US-NY-099 13.0 Finger Lakes Regional Airport L3284263 H 42.8787599 -76.783458 2015-01-30 07:50:00 obsr1655171 S21601787 Traveling P22 EBIRD 29.0 4.828 2.0 1 G1131410 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298954467 2021-03-23 16:39:03.255227 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 5 United States US New York US-NY Richmond US-NY-085 Lemon Creek Park L508340 H 40.5121298 -74.198581 2015-02-22 11:58:00 obsr1958124 S22020597 Stationary P21 EBIRD 6.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294555074 2021-03-26 06:59:15.841579 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-01-08 15:15:00 obsr2409011 S21646258 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220425 2021-03-19 16:44:35.607263 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 20 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Mumford-987 George St L2570538 P 42.991844 -77.865747 2015-01-01 15:15:00 obsr749440 S21119292 Stationary P21 EBIRD 15.0 2.0 1 G1088387 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310736529 2020-03-22 07:58:01 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 10 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-17 07:15:00 obsr1696616 S22912625 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320472089 2021-03-19 16:10:30.527219 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-15 07:50:00 obsr1334267 S23488382 Traveling P22 EBIRD 42.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306696113 2021-04-01 11:49:53.573686 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-04-01 10:49:00 obsr2574755 S22625018 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314448219 2021-03-23 17:00:13.087107 27616 species avibase-D77E4B41 American Robin Turdus migratorius 23 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-30 16:20:00 obsr34822 S23149989 Traveling P22 EBIRD 141.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312301732 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 6 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-04-23 09:40:00 obsr2855945 S23013639 Traveling P22 EBIRD 45.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294250568 2021-11-09 18:31:47.942394 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 5 United States US New York US-NY Dutchess US-NY-027 14.0 McEnroes Compost Company, Coleman Station Road, Millerton, NY L2246150 P 41.9036625 -73.5212159 2015-01-29 11:36:00 obsr1062217 S21622304 Traveling P22 EBIRD 41.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296385992 2018-08-04 16:56:10 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 160 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-12 17:28:00 obsr1318356 S21793546 Traveling P22 EBIRD 33.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315718071 2021-03-26 06:21:54.883933 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 07:48:00 obsr2152799 S23221629 Traveling P22 EBIRD 243.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305218172 2018-10-06 16:50:39 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--East Rd. L99686 H 43.009646 -76.7582003 2015-03-25 11:04:00 obsr354090 S22511909 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314593288 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N X United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-04-30 13:15:00 obsr958911 S23159221 Traveling P22 EBIRD 35.0 1.127 14.0 1 G1244402 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314573438 2020-05-16 18:13:11 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Otsego US-NY-077 28.0 Tunnicliff Rd, Schuyler Lake L3425283 P 42.7851024 -75.0228882 2015-04-30 18:30:00 obsr131845 S23158052 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312999248 2021-03-30 19:07:52.958398 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 12:15:00 obsr2448957 S23060013 Traveling P22 EBIRD 465.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307000899 2021-04-01 11:49:53.573686 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 75 United States US New York US-NY Queens US-NY-081 30.0 Flushing Meadows Corona Park--Meadow Lake L1788995 H 40.7351876 -73.8404751 2015-04-02 13:34:00 obsr2310825 S22647784 Traveling P22 EBIRD 122.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309750440 2021-11-09 21:05:07.751154 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Rockland US-NY-087 US-NY_843 28.0 Bear Mountain SP--Doodletown Rd. L316486 H 41.3011999 -73.9869576 2015-04-13 09:45:00 obsr1121454 S22844530 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS432192832 2016-09-25 19:34:57 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-04-09 obsr2326876 S31756318 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297010099 2021-03-26 06:29:14.715704 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Madison US-NY-053 13.0 Mohegen Ln L3373683 P 43.0859404 -75.8853659 2015-02-14 15:30:00 obsr1697134 S21849295 Stationary P21 EBIRD 50.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324436747 2021-11-09 18:37:59.213196 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY Dutchess US-NY-027 28.0 Cricket Hill Road L2823155 P 41.66373 -73.56602 2015-05-16 15:58:00 obsr2343626 S23736176 Traveling P22 EBIRD 12.0 0.805 2.0 1 G1298915 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288202031 2018-08-04 16:52:22 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Suffolk US-NY-103 30.0 Stevens Park Yacht Basin, WHB L3253589 P 40.8060786 -72.6407433 2015-01-01 12:35:00 obsr717785 S21117683 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310602548 2015-04-17 08:35:39 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 4 United States US New York US-NY Chemung US-NY-015 28.0 Minier Field Boat Launch L2833813 H 42.1211771 -76.9324064 2015-04-17 07:40:00 obsr2871406 S22903834 Traveling P22 EBIRD 4.0 0.161 3.0 1 G1222647 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318760755 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-11 06:30:00 obsr2449897 S23392719 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296794358 2021-03-26 07:07:10.758746 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 6 United States US New York US-NY Richmond US-NY-085 30.0 Mission of Immaculate Virgin, Mt. Loretto L890042 H 40.511334 -74.2196149 2015-02-14 07:51:00 obsr1958124 S21830829 Traveling P22 EBIRD 4.0 0.644 2.0 1 G1145913 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307384266 2021-03-26 06:29:56.44369 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 2 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-04-03 09:00:00 obsr2759466 S22675771 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310842985 2021-04-01 10:49:39.496318 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-04-18 08:15:00 obsr59643 S22919616 Traveling P22 EBIRD 20.0 0.805 2.0 1 G1224758 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324545426 2021-03-24 20:58:53.646623 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-31 14:30:00 obsr72341 S23743389 Stationary P21 EBIRD 230.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289957354 2021-03-26 08:14:57.071052 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Westchester US-NY-119 30.0 Martling Avenue L1368836 P 41.0672048 -73.8554782 2015-01-07 14:00:00 obsr1055148 S21260402 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306094739 2021-04-01 12:35:52.669792 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Onondaga US-NY-067 13.0 Lincoln park L3187360 P 43.0568282 -76.1265904 2015-03-29 07:30:00 obsr2143830 S22578469 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS328969058 2021-04-01 12:14:19.266649 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Suffolk US-NY-103 30.0 Fishers Island L3562597 H 41.2707322 -71.9902611 2015-04-04 obsr257462 S24060833 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298208333 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 6 United States US New York US-NY Monroe US-NY-055 13.0 Private property L3358535 P 43.2067086 -77.8944933 2015-02-18 09:25:00 obsr1713903 S21956916 Traveling P22 EBIRD 35.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302908407 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 9 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-03-13 10:30:00 obsr827632 S22332926 Traveling P22 EBIRD 150.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309344460 2015-04-12 10:53:54 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Columbia US-NY-021 14.0 yard East Chatham NY L1677710 P 42.490351 -73.457549 2015-04-10 09:00:00 obsr570335 S22816846 Stationary P21 EBIRD 50.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309118883 2016-09-30 13:44:24 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Tobay Beach Park L1060282 H 40.6113752 -73.4314372 2015-04-11 08:30:00 obsr547602 S22802041 Traveling P22 EBIRD 15.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288991198 2018-08-04 16:52:43 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Richmond US-NY-085 30.0 Blue Heron Park--Butterfly Pond L2020749 H 40.5326241 -74.1732539 2015-01-04 11:25:00 obsr155915 S21184103 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311355838 2021-03-30 18:54:05.959583 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.8768877 -73.7898123 2015-04-19 07:40:00 obsr1348614 S22951175 Traveling P22 EBIRD 220.0 4.828 3.0 1 G1226792 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313432305 2015-05-07 17:07:25 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-27 07:00:00 obsr455249 S23086772 Traveling P22 EBIRD 18.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306996824 2021-04-01 11:15:31.646886 456 species avibase-D201EB72 American Wigeon Mareca americana X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-02 13:45:00 obsr1659461 S22647493 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310896190 2021-03-26 07:07:10.758746 609 species avibase-67CEA1C1 Tufted Duck Aythya fuligula 1 United States US New York US-NY Richmond US-NY-085 30.0 Miller Field L391319 H 40.5674723 -74.0990352 2015-04-18 12:05:00 obsr1958124 S22923063 Traveling P22 EBIRD 8.0 0.483 3.0 1 G1224792 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS523508852 2022-01-20 13:44:29.539827 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 45 United States US New York US-NY Seneca US-NY-099 US-NY_803 13.0 Geneva Lakefront Park, birds over water ONLY (Seneca Co.) L360643 H 42.8659781 -76.9714307 2015-04-11 06:52:00 obsr1278262 S22795915 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307802817 2018-08-04 17:05:26 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Westchester US-NY-119 28.0 Brinton Brook Sanctuary L893096 H 41.2268584 -73.8992411 2015-04-04 14:50:00 obsr114791 S22704970 Traveling P22 EBIRD 150.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319131599 2021-03-19 16:25:42.617988 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-12 07:31:00 obsr2693145 S23414450 Traveling P22 EBIRD 510.0 1.609 2.0 1 G1268391 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290844374 2021-03-26 06:21:54.883933 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Kings US-NY-047 30.0 Sterling Place near Underhill Avenue L638785 P 40.6754204 -73.9654487 2015-01-13 13:55:00 obsr904434 S21331985 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320561771 2021-04-01 11:30:42.037277 662 species avibase-FB738385 Bufflehead Bucephala albeola 25 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-16 11:00:00 obsr609516 S23493006 Traveling P22 EBIRD 240.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318518434 2021-04-01 11:30:42.037277 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-11 05:50:00 obsr150865 S23379218 Traveling P22 EBIRD 180.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322503400 2018-08-06 22:31:03 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Clinton US-NY-019 13.0 Point Au Roche SP--Camp Red Cloud Rd. & Long Point L590258 H 44.7774637 -73.3770847 2015-05-24 11:44:00 obsr2937317 S23609745 Traveling P22 EBIRD 64.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288844566 2021-03-30 19:39:10.250398 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-01-02 08:00:00 obsr1160328 S21172985 Area P23 EBIRD 105.0 30.3514 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306137674 2022-02-18 10:47:29.953615 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 12 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-29 15:55:00 obsr1062070 S22581766 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310308060 2019-07-23 17:28:23 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 Unknown Sex, Adult (1) United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-04-15 17:00:00 obsr920912 S22883137 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309099361 2021-04-01 11:15:31.646886 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-11 10:30:00 obsr2750470 S22800823 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315395407 2021-03-26 06:07:45.516082 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Twin Islands L865061 H 40.8715659 -73.7853384 2015-05-03 08:30:00 obsr139757 S23203922 Traveling P22 EBIRD 240.0 4.828 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303823751 2021-04-01 10:53:25.818871 30494 species avibase-240E3390 House Sparrow Passer domesticus N 10 United States US New York US-NY Cortland US-NY-023 28.0 West Blodgett Mills Area - Virgil L2511065 P 42.565282 -76.1628914 2015-03-14 07:55:00 obsr931232 S22405291 Traveling P22 EBIRD 20.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314248420 2018-08-04 17:13:04 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.8768877 -73.7898123 2015-04-29 18:50:00 obsr538462 S23137682 Traveling P22 EBIRD 40.0 0.91 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312440143 2021-01-22 17:48:33.891674 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY St. Lawrence US-NY-089 US-NY_775 13.0 Upper and Lower Lakes - HQ boat launch/marsh L11496504 H 44.6206764 -75.2335688 2015-04-23 17:30:00 obsr2056110 S23023183 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315705856 2021-11-15 03:06:58.889978 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-30 16:45:00 obsr189780 S23220840 Traveling P22 EBIRD 140.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313821626 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 07:30:00 obsr139757 S23111167 Traveling P22 EBIRD 320.0 6.437 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306134674 2015-03-29 19:14:09 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Brooklyn-Queens Greenway L1812560 H 40.7418861 -73.745954 2015-03-29 14:19:00 obsr1982614 S22581533 Traveling P22 EBIRD 15.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313432123 2021-03-23 17:35:57.093178 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Rensselaer US-NY-083 14.0 Jones Road Extension L1051585 P 42.8123718 -73.3462286 2015-04-24 14:44:00 obsr215455 S23086761 Traveling P22 EBIRD 59.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313366676 2015-10-03 13:12:22 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY Tompkins US-NY-109 28.0 Lindsay-Parsons Biodiversity Preserve (FLLT) L109055 H 42.3101677 -76.5216895 2015-04-25 09:43:00 obsr2255296 S23082056 Traveling P22 EBIRD 80.0 3.219 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312776253 2021-04-01 12:45:19.712958 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Westchester US-NY-119 30.0 Sheldrake Lake (Larchmont Reservoir) L714112 H 40.9527912 -73.7738478 2015-04-25 09:50:00 obsr363163 S23046773 Traveling P22 EBIRD 128.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300132381 2021-04-01 12:24:45.865424 11494 species avibase-20C2214E American Kestrel Falco sparverius 3 United States US New York US-NY Wayne US-NY-117 13.0 Hance Rd/Alpco recycling center and pond L874649 P 43.0949036 -77.3351669 2015-02-28 10:45:00 obsr749440 S22114628 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307494332 2021-04-01 11:24:19.637193 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 174 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-04-02 07:57:00 obsr1092576 S22683396 Traveling P22 EBIRD 294.0 1.609 3.0 1 G1202288 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312670701 2021-04-01 11:24:19.637193 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay L629399 H 43.2183125 -77.536869 2015-04-24 17:15:00 obsr1410564 S23039774 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305597456 2021-04-01 12:18:57.910168 279 species avibase-3E04020B Brant Branta bernicla 500 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-03-27 11:35:00 obsr869999 S22541565 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296359748 2021-03-26 06:11:29.8335 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-02-11 16:02:00 obsr528918 S21791366 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306123577 2021-03-30 19:39:10.250398 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-26 08:00:00 obsr1160328 S22580691 Area P23 EBIRD 120.0 30.3514 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289866301 2021-03-26 06:53:58.593564 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-01-05 10:30:00 obsr1195517 S21253005 Stationary P21 EBIRD 120.0 2.0 1 G1101267 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315067189 2015-05-02 19:38:54 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Broome US-NY-007 28.0 Harold Moore Park L278836 P 42.101117 -76.0136825 2015-05-02 14:55:00 obsr1626739 S23186262 Traveling P22 EBIRD 29.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311574062 2021-03-26 07:07:10.758746 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-20 12:35:00 obsr1958124 S22964987 Traveling P22 EBIRD 12.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308094824 2015-04-06 18:28:55 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-04-05 08:21:00 obsr2426404 S22726062 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300801252 2021-03-26 08:13:27.160698 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Tioga US-NY-107 28.0 Candor Fire Department L3454101 P 42.2342529 -76.3370365 2015-03-03 07:38:00 obsr1318356 S22164532 Traveling P22 EBIRD 24.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309099248 2021-03-30 19:29:33.633096 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 10 United States US New York US-NY Suffolk US-NY-103 US-NY_780 30.0 USFWS_602 Wertheim NWR L295971 H 40.7754935 -72.8810839 2015-04-11 13:30:00 obsr1618264 S22800818 Traveling P22 EBIRD 30.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309758171 2015-04-13 14:57:06 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Monroe US-NY-055 13.0 Utica St. (Brockport) L2499973 P 43.2134218 -77.9423761 2015-04-06 obsr408487 S22845013 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293397668 2017-02-15 19:56:49 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-24 11:30:00 obsr1311434 S21554730 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322360483 2021-04-01 11:24:19.637193 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 3 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-05-21 08:20:00 obsr1782363 S23601579 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292790644 2020-01-23 10:13:11 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Overlook, Rte. 89 N of Hog Hole L479673 H 42.4647843 -76.5246248 2015-01-23 15:45:00 obsr2001485 S21506732 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316522843 2021-11-09 18:30:49.111703 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 3 United States US New York US-NY Dutchess US-NY-027 13.0 18 Platt Ave L2227389 P 41.931249 -73.910858 2015-05-06 06:30:00 obsr1469078 S23267793 Traveling P22 EBIRD 360.0 9.656 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311896659 2015-04-21 17:22:34 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-04-20 11:00:00 obsr1124122 S22986726 Traveling P22 EBIRD 60.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309578084 2021-11-09 22:38:28.209949 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Sullivan US-NY-105 28.0 Beaverkill Road Fields L2056365 P 41.9541924 -74.8345757 2015-04-11 05:57:00 obsr1788273 S22831698 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315990570 2021-03-23 17:00:13.087107 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-30 08:25:00 obsr881968 S23236829 Traveling P22 EBIRD 81.0 0.805 4.0 1 G1252602 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304198812 2015-03-20 12:23:02 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY Albany US-NY-001 13.0 Elks Lodge Parking Lot, Cohoes L2610868 P 42.7792074 -73.7018842 2015-03-19 09:30:00 obsr777630 S22434791 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303997610 2021-03-24 21:12:00.789723 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Schuyler US-NY-097 13.0 Hector Falls Marsh L2354312 H 42.4547794 -76.7754114 2015-03-19 07:10:00 obsr1828453 S22418670 Stationary P21 EBIRD 6.0 3.0 1 G1184879 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317603317 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 10:00:00 obsr2369927 S23329889 Traveling P22 EBIRD 240.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291015021 2021-02-04 13:11:09.63048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-E L3288970 P 39.52687 -72.39041 2015-01-11 12:00:00 obsr2257126 S21345860 Traveling P22 EBIRD 60.0 19.795 44.0 1 G1108338 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301999195 2021-03-26 06:07:45.516082 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-03-09 12:40:00 obsr128156 S22256130 Traveling P22 EBIRD 20.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319698740 2019-05-12 06:55:23 6339 species avibase-8535345B Herring Gull Larus argentatus 1 Female, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 104 E Pointe, Fairport US-NY (43.1027, -77.4296) L8183334 P 43.1026634 -77.4295914 2015-05-10 12:30:00 obsr2421668 S23446733 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315694947 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-04 07:45:00 obsr1102914 S23220293 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309194600 2021-03-24 20:58:53.646623 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-11 15:30:00 obsr72341 S22807124 Stationary P21 EBIRD 200.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322587347 2021-04-01 11:15:31.646886 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Kings US-NY-047 The Narrows (Brooklyn) L1918391 H 40.6218575 -74.0503407 2015-05-24 11:30:00 obsr2078092 S23612912 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317361655 2021-03-26 07:52:59.845315 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-08 06:43:00 obsr1000124 S23315015 Area P23 EBIRD 210.0 2.59 2.0 1 G1258297 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306120998 2018-08-04 17:04:44 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-03-29 17:44:00 obsr1165633 S22580399 Traveling P22 EBIRD 49.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310949059 2021-03-26 07:42:06.558742 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 Male, Adult (1); Unknown Sex and Age (3) United States US New York US-NY Washington US-NY-115 14.0 South Bay, Whitehall, NY L1474663 P 43.5730281 -73.4312222 2015-04-18 09:51:00 obsr1222746 S22926310 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307845776 2021-03-24 19:35:34.045988 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Buffalo waterfront L1941366 P 42.88326 -78.8835526 2015-04-05 16:00:00 obsr2071643 S22708058 Traveling P22 EBIRD 90.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309453881 2015-04-12 15:59:44 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Tompkins US-NY-109 28.0 143 Howland Road L3442761 P 42.2876594 -76.4194393 2015-04-12 09:40:00 obsr2430746 S22823235 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311842429 2021-03-30 19:07:52.958398 20829 species avibase-B9B272F4 Common Raven Corvus corax 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 07:30:00 obsr2363365 S22983392 Traveling P22 EBIRD 300.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311196002 2021-04-01 10:47:08.851048 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-19 08:00:00 obsr646558 S22941501 Stationary P21 EBIRD 25.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288701141 2021-03-26 07:07:10.758746 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Richmond US-NY-085 30.0 Stately Richman Manor L2489256 P 40.6333994 -74.104638 2015-01-02 09:00:00 obsr2904420 S21159022 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319532598 2021-03-26 07:56:20.588749 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-14 08:40:00 obsr916370 S23437459 Traveling P22 EBIRD 110.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301704538 2015-03-08 14:59:07 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1133–1157 State Route 13 L3465993 P 42.224422 -76.77122 2015-03-08 14:58:00 obsr1092576 S22233005 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322424609 2021-04-01 11:30:42.037277 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-20 07:30:00 obsr794187 S23605421 Traveling P22 EBIRD 270.0 4.828 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320911364 2021-03-26 07:56:20.588749 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Nassau US-NY-059 30.0 Manhasset Valley County Park L1411973 H 40.7910487 -73.7078854 2015-05-18 10:45:00 obsr676630 S23512874 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315975151 2019-10-17 11:31:35 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-05-04 15:45:00 obsr1380963 S23235822 Stationary P21 EBIRD 30.0 1.0 1 G1252667 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311157666 2021-04-01 11:24:19.637193 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-04-18 07:17:00 obsr1243175 S22939179 Incidental P20 EBIRD 2.0 1 G1225553 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522977 2021-03-26 07:07:10.758746 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 2 United States US New York US-NY Richmond US-NY-085 Lemon Creek Park L508340 H 40.5121298 -74.198581 2015-04-08 08:01:00 obsr155915 S22758876 Traveling P22 EBIRD 5.0 0.483 2.0 1 G1211606 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323266191 2018-08-06 22:31:12 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 39 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-26 13:14:00 obsr620377 S23657134 Traveling P22 EBIRD 38.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322538640 2021-04-01 12:32:15.282601 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-24 08:00:00 obsr2207991 S23611652 Traveling P22 EBIRD 150.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313784446 2021-03-26 07:46:52.994574 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Albany US-NY-001 13.0 Rte 155 and Normanskill L3110282 P 42.6761668 -73.9061529 2015-04-28 11:30:00 obsr634484 S23108751 Traveling P22 EBIRD 75.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289710874 2018-08-04 16:52:53 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-07 13:15:00 obsr1633923 S21240278 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306925976 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-04-02 08:26:00 obsr2512689 S22641777 Traveling P22 EBIRD 124.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313807827 2021-03-26 07:53:57.664705 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake, Vitale Park L637129 H 42.8342164 -77.7035522 2015-04-28 08:39:00 obsr408487 S23110258 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306049894 2021-03-24 20:11:57.676649 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-29 08:28:00 obsr756196 S22575055 Stationary P21 EBIRD 227.0 2.0 1 G1196429 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316822026 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-07 09:40:00 obsr1821546 S23285065 Traveling P22 EBIRD 69.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310202965 2021-03-30 19:43:32.881136 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Westchester US-NY-119 30.0 Hommocks Conservation Area L3202017 H 40.9318417 -73.7420636 2015-04-15 11:25:00 obsr258431 S22876130 Traveling P22 EBIRD 46.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304931309 2021-09-19 15:06:23.057717 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 1 United States US New York US-NY Ontario US-NY-069 13.0 **US-NY-ONT Canandaigua--Finger Lakes Dental, S. Main St. X Foster St. [Canandaigua_SE] L3515702 P 42.8831007 -77.2770864 2015-03-23 12:05:00 obsr606693 S22489552 Stationary P21 EBIRD 5.0 0.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310216331 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-04-15 06:58:00 obsr214789 S22876944 Traveling P22 EBIRD 90.0 3.219 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS395745133 2021-03-19 16:19:20.977326 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Erie US-NY-029 13.0 Yard L1525949 P 42.65485 -78.70295 2015-05-25 07:06:00 obsr1905321 S29246074 Area P23 EBIRD 75.0 2.0234 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315713730 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-02 14:00:00 obsr145923 S23221236 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307558633 2015-04-04 20:26:49 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Dene L3538936 P 40.7697234 -73.9706093 2015-04-04 17:24:00 obsr856524 S22687882 Incidental P20 EBIRD 4.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304412318 2015-03-21 15:44:22 18439 species avibase-D97F93CC White-eyed Vireo Vireo griseus X United States US New York US-NY Rensselaer US-NY-083 13.0 Troy Federal Lock and Dam (Rensselaer Co.) L548084 H 42.750047 -73.6860516 2015-03-21 09:30:00 obsr1154 S22450894 Stationary P21 EBIRD 10.0 4.0 1 G1186981 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294374293 2021-11-09 19:48:29.257082 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region L2435952 P 41.3280998 -74.4639587 2015-02-01 09:00:00 obsr1872991 S21631847 Traveling P22 EBIRD 210.0 24.14 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307681655 2021-03-24 20:33:47.533911 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-05 06:56:00 obsr1476346 S22696337 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321655128 2021-04-01 11:15:31.646886 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-21 05:54:00 obsr152435 S23558671 Traveling P22 EBIRD 175.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324125264 2018-08-06 22:31:28 27402 spuh avibase-DE0D7D24 Catharus sp. Catharus sp. 2 United States US New York US-NY Hamilton US-NY-041 14.0 Blue Mt. Summit L263560 H 43.8725478 -74.4011674 2015-05-30 10:10:00 obsr2937317 S23715979 Traveling P22 EBIRD 341.0 3.219 3.0 1 G1296977 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313475109 2021-03-23 17:26:08.495143 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-24 08:25:00 obsr2172113 S23089333 Traveling P22 EBIRD 100.0 1.609 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320442294 2021-11-09 18:17:26.599907 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Drake Lake L1363523 H 41.7871594 -73.8462642 2015-05-16 18:22:00 obsr2175245 S23486838 Stationary P21 EBIRD 40.0 3.0 1 G1274556 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292459200 2021-03-26 07:07:10.758746 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Richmond US-NY-085 30.0 Tottenville High School L884731 P 40.5282185 -74.1924763 2015-01-21 07:55:00 obsr1958124 S21480650 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301567845 2021-03-26 07:15:58.375907 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY St. Lawrence US-NY-089 13.0 Judson St. L1944435 P 44.5989093 -75.1599008 2015-03-07 08:00:00 obsr2056110 S22222490 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313079372 2021-03-24 20:20:25.430732 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Schenectady US-NY-093 13.0 Helen Court L2445371 P 42.8696739 -73.9155865 2015-04-26 06:40:00 obsr481595 S23064933 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305199700 2015-03-25 08:49:45 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-23 08:20:00 obsr1334267 S22510473 Traveling P22 EBIRD 21.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314105194 2021-04-01 12:44:06.475065 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Warren US-NY-113 14.0 Wolf pond road L3600055 P 43.5696334 -73.8622427 2015-04-16 obsr349095 S23128773 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319002893 2021-03-19 16:19:20.977326 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-12 10:30:00 obsr2871264 S23406696 Traveling P22 EBIRD 180.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296873814 2021-12-03 21:50:44.732892 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 15 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-02-14 12:37:00 obsr1893950 S21834200 Traveling P22 EBIRD 48.0 1.609 2.0 1 G1145898 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300568373 2021-03-26 06:29:56.44369 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Monroe US-NY-055 13.0 998 cane patch webster ny L2689634 P 43.198669 -77.5033951 2015-03-01 07:50:00 obsr1277758 S22146880 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318233375 2016-05-14 19:56:23 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 1 United States US New York US-NY Monroe US-NY-055 13.0 Mt. Hope Cemetery L249453 H 43.1287817 -77.6206675 2015-05-10 07:50:00 obsr2065230 S23363707 Traveling P22 EBIRD 130.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309942114 2021-04-01 11:14:02.420281 1796 species avibase-018B3169 Horned Grebe Podiceps auritus N 1 United States US New York US-NY Jefferson US-NY-045 13.0 West Carthage, NY (home) L1347968 P 43.9732503 -75.6230146 2015-01-24 12:00:00 obsr2251037 S22857995 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292135521 2015-09-26 22:51:13 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Chenango US-NY-017 28.0 Ironwood Hill (private residence) L2420806 P 42.5495553 -75.4411411 2015-01-20 09:33:00 obsr902791 S21434881 Traveling P22 EBIRD 100.0 1.609 2.0 1 G1117602 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297021489 2021-03-26 06:29:56.44369 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 2 United States US New York US-NY Monroe US-NY-055 13.0 998 cane patch webster ny L2689634 P 43.198669 -77.5033951 2015-02-14 08:40:00 obsr1277758 S21850473 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292479652 2018-01-07 20:13:45 11371 species avibase-75600969 Northern Flicker Colaptes auratus 6 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-01-21 14:50:00 obsr2693145 S21482274 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293559599 2021-03-26 07:53:57.664705 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Livingston US-NY-051 13.0 River Rd - Cuylerville L830935 P 42.7817952 -77.8697205 2015-01-27 11:30:00 obsr983655 S21567652 Traveling P22 EBIRD 30.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295408676 2022-02-17 14:32:23.002448 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-07 13:30:00 obsr2750470 S21714698 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302829906 2021-04-01 12:43:36.236969 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Tioga US-NY-107 28.0 Raish Hill Farm, Candor L2608316 P 42.194387 -76.362344 2015-03-13 07:25:00 obsr1318356 S22326843 Traveling P22 EBIRD 9.0 0.161 2.0 1 G1179994 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305152475 2017-09-15 17:42:03 23187 species avibase-ACB9D1C6 Purple Martin Progne subis 2 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, Ontario Beach Park, Gorham L1800146 H 42.8340262 -77.2564333 2015-03-23 14:44:00 obsr1243175 S22507029 Traveling P22 EBIRD 5.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317264217 2018-08-06 22:29:11 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia X United States US New York US-NY Broome US-NY-007 28.0 Nuthatch Hollow Nature Preserve L199978 H 42.0810666 -75.9852703 2015-05-08 07:35:00 obsr1044068 S23309596 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317743773 2021-03-26 06:38:32.090082 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 5 United States US New York US-NY Montgomery US-NY-057 13.0 Fort Johnson (village) L474793 P 42.9614477 -74.240799 2015-05-09 10:45:00 obsr1187325 S23337416 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309553549 2021-03-30 19:29:33.633096 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-12 09:55:00 obsr2633969 S22830060 Traveling P22 EBIRD 95.0 2.0 3.0 1 G1217074 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310300882 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-15 18:15:00 obsr2750470 S22882623 Traveling P22 EBIRD 1.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296755966 2021-03-26 07:16:36.956617 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Schenectady US-NY-093 13.0 182 Waters Road L3368709 P 42.8883776 -74.0525401 2015-02-14 12:00:00 obsr481595 S21827524 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319362716 2021-03-22 08:58:29.008072 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L785945 P 40.783661 -73.9633942 2015-05-13 15:00:00 obsr2883401 S23427353 Traveling P22 EBIRD 90.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290479967 2021-03-30 19:13:38.458673 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 52 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-11 16:00:00 obsr2817239 S21302946 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322113321 2021-03-19 16:44:35.607263 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe X United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-22 16:40:00 obsr528918 S23587674 Traveling P22 EBIRD 70.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305678332 2021-11-09 18:37:30.327421 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA--South Bay L2782184 H 42.0203489 -73.922756 2015-03-27 14:30:00 obsr1628992 S22547790 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323915340 2021-03-19 16:02:45.308962 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-30 07:05:00 obsr1830659 S23702917 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293747110 2022-02-17 14:32:23.002448 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 10 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-28 14:40:00 obsr1605975 S21582465 Traveling P22 EBIRD 80.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1167372051 2021-05-25 20:33:40.330296 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-03 08:30:00 obsr2155450 S88993741 Traveling P22 EBIRD 105.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322631653 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-22 05:55:00 obsr1433400 S23616924 Traveling P22 EBIRD 180.0 4.538 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315316588 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 12:00:00 obsr360223 S23199825 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1249073 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309857818 2021-04-01 12:29:50.209479 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 24 United States US New York US-NY Fulton US-NY-035 13.0 Gloversville Mall & Vicinity L1157395 P 43.0582275 -74.3242291 2015-04-11 15:52:00 obsr2694889 S22851856 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306022666 2021-03-26 07:30:35.289997 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-29 11:13:00 obsr2001485 S22573249 Traveling P22 EBIRD 107.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290639168 2021-03-24 21:13:42.099821 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 3 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-01-12 08:15:00 obsr258431 S21315313 Traveling P22 EBIRD 105.0 1.609 2.0 1 G4248137 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290298613 2021-03-30 19:19:16.341534 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Niagara US-NY-063 Wilson Pier L1305695 H 43.3175398 -78.8350582 2015-01-02 15:00:00 obsr1239415 S21288414 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294983513 2018-08-04 16:55:39 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-02-03 16:06:00 obsr2186523 S21681076 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289942322 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-01-08 08:00:00 obsr2759466 S21259184 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316558727 2021-03-26 07:56:20.588749 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 15 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-06 12:10:00 obsr2505956 S23270080 Rusty Blackbird Spring Migration Blitz P41 EBIRD 200.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314489956 2015-04-30 22:33:19 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Deep Muck and Mitigation Marsh L1280474 H 43.0737585 -76.7234516 2015-04-29 12:00:00 obsr195058 S23152724 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308642940 2021-04-01 11:15:31.646886 6291 species avibase-F89FD6E3 Little Gull Hydrocoloeus minutus 2 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-04-07 09:03:00 obsr1821546 S22767906 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322905637 2021-09-29 04:58:21.533581 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 2 United States US New York US-NY New York US-NY-061 Governors Island (open year-round) L555894 H 40.6885372 -74.0189759 2015-05-25 12:45:00 obsr2033754 S23633713 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295413680 2021-03-23 16:39:03.255227 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 80 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-02-07 15:10:00 obsr1893950 S21715104 Stationary P21 EBIRD 9.0 2.0 1 G1137882 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315275024 2021-04-01 11:24:19.637193 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis N 3 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-05-02 06:45:00 obsr2289693 S23197803 Stationary P21 EBIRD 60.0 2.0 1 G1248879 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301500246 2021-03-30 19:29:33.633096 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 69 United States US New York US-NY Suffolk US-NY-103 30.0 Springs (3 Mile Harbor Dock) [ACW] L3462084 P 41.027979 -72.181121 2015-03-07 16:55:00 obsr598381 S22217370 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290266494 2021-03-24 05:37:45.927792 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Suffolk US-NY-103 30.0 West Lake L1433619 H 40.7640213 -73.0273589 2015-01-10 15:00:00 obsr757440 S21285854 Stationary P21 EBIRD 30.0 4.0 0 G1110535 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1138288457 2021-05-01 15:23:06.217484 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-11 05:45:00 obsr590128 S86828464 Traveling P22 EBIRD 420.0 8.047 5.0 1 G1266741 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322735077 2021-04-01 10:55:39.308231 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Erie US-NY-029 13.0 Lincoln Park (Erie Co.) L681385 H 42.9709472 -78.8346183 2015-05-25 07:16:00 obsr749440 S23623415 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310702804 2021-11-09 19:57:48.990233 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-15 10:00:00 obsr1152226 S22910297 Traveling P22 EBIRD 120.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321872828 2021-03-26 06:17:19.712573 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-21 14:20:00 obsr1379161 S23572447 Traveling P22 EBIRD 180.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288555588 2022-03-06 12:39:33.700954 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 5 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-01-02 11:30:00 obsr547602 S21147417 Traveling P22 EBIRD 60.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297788185 2021-11-09 22:04:47.967972 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-16 09:20:00 obsr2091354 S21920596 Traveling P22 EBIRD 180.0 24.14 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319093438 2021-03-24 19:23:17.886063 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-05-09 14:39:00 obsr2683910 S23412402 Traveling P22 EBIRD 12.0 1.931 2.0 1 G1268151 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324102561 2021-03-26 06:17:19.712573 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-05-30 10:00:00 obsr2096529 S23714514 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321997910 2021-04-01 12:32:15.282601 279 species avibase-3E04020B Brant Branta bernicla 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-05-22 07:30:00 obsr890053 S23580576 Traveling P22 EBIRD 70.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321603569 2021-04-01 11:30:42.037277 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Triplets Br. area (btwn 77th-79th St. transv.) L4525727 H 40.779838 -73.9724077 2015-05-20 09:28:00 obsr1548221 S23555514 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313645463 2021-03-19 16:19:20.977326 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Erie US-NY-029 13.0 Emery County Park L681419 H 42.7146691 -78.5970926 2015-04-27 17:10:00 obsr916033 S23099831 Traveling P22 EBIRD 84.0 0.402 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310287578 2016-09-12 10:28:01 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-04-13 10:00:00 obsr2475075 S22881715 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299622571 2015-02-25 21:15:49 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Suffolk US-NY-103 30.0 West lane L3439953 P 40.961882 -72.6352501 2015-02-25 16:45:00 obsr2846902 S22074509 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1159906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311274945 2021-03-23 17:38:38.809066 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Schuyler US-NY-097 13.0 42.4684x-76.7316 - Mar 16, 2015, 7:50 PM L3493814 P 42.468448 -76.731614 2015-04-19 06:16:00 obsr2173269 S22946383 Stationary P21 EBIRD 4.0 2.0 1 G1226353 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313102674 2021-03-26 06:39:43.334073 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY New York US-NY-061 30.0 Highbridge Park--N of Alexander Hamilton Bridge L2741557 H 40.8528936 -73.926117 2015-04-25 15:50:00 obsr1513140 S23066284 Traveling P22 EBIRD 30.0 0.885 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323270147 2021-03-30 19:13:38.458673 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-26 11:47:00 obsr528918 S23657393 Traveling P22 EBIRD 140.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305799145 2021-04-01 12:32:15.282601 406 species avibase-27B2749A Wood Duck Aix sponsa 14 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-03-28 11:30:00 obsr247620 S22556752 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315467278 2021-03-26 07:20:31.408164 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-04-27 07:00:00 obsr1592950 S23207786 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306762110 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-19 16:00:00 obsr2218212 S22629549 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304401087 2021-12-19 10:32:19.574298 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-03-21 08:00:00 obsr2087436 S22450144 Traveling P22 EBIRD 165.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307121099 2021-11-09 20:37:49.117197 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 3 United States US New York US-NY Putnam US-NY-079 28.0 Manitou Point Preserve L1070091 H 41.3373022 -73.96174 2015-04-03 08:34:00 obsr2188716 S22656766 Traveling P22 EBIRD 94.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302919440 2015-03-13 18:27:00 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Oneida US-NY-065 13.0 Whitestown L210157 P 43.17351 -75.4187135 2015-03-10 obsr1384380 S22333831 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305827847 2021-04-01 11:54:40.172593 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 15 United States US New York US-NY Richmond US-NY-085 US-NY_818 30.0 Goethals Bridge Pond--Goethals Homes L884458 H 40.6283428 -74.1779176 2015-03-28 09:41:00 obsr1958124 S22558840 Traveling P22 EBIRD 9.0 0.322 2.0 1 G1195293 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312481296 2015-05-04 14:54:01 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 07:10:00 obsr2313260 S23026009 Traveling P22 EBIRD 86.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310412641 2015-04-16 11:23:28 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 Male, Adult (1) United States US New York US-NY Hamilton US-NY-041 14.0 Old Piseco Road - East of Piseco Airport L826987 P 43.4365214 -74.5097129 2015-04-15 15:31:00 obsr316199 S22890460 Traveling P22 EBIRD 11.0 3.219 3.0 1 G1221838 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294603725 2020-05-02 15:38:26 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-02-02 14:04:00 obsr943683 S21650166 Stationary P21 EBIRD 119.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314282755 2018-08-04 17:12:38 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 1 United States US New York US-NY Westchester US-NY-119 30.0 Edith Macy Conference Center L3601499 P 41.160491 -73.8078046 2015-04-28 15:35:00 obsr235405 S23139966 Traveling P22 EBIRD 68.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309583202 2017-06-20 17:32:07 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Steuben US-NY-101 28.0 Irish HIll Rd. and Lyon Rd L2802910 P 42.0533832 -77.7303958 2015-04-12 10:40:00 obsr2700440 S22832023 Traveling P22 EBIRD 80.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297218868 2021-11-09 18:27:18.873475 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 2 United States US New York US-NY Dutchess US-NY-027 13.0 Allen Road yard list, Salt Point L1943130 P 41.8350253 -73.8021156 2015-02-15 16:25:00 obsr2175245 S21868569 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314275423 2021-11-09 22:04:59.499979 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Ulster US-NY-111 13.0 Saugerties Lighthouse L490267 H 42.0722249 -73.9367873 2015-04-30 07:27:00 obsr118701 S23139505 Traveling P22 EBIRD 86.0 1.609 2.0 1 G1244056 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309132466 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-11 08:10:00 obsr384772 S22802891 Traveling P22 EBIRD 320.0 8.047 2.0 1 G1214489 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313782745 2021-03-24 05:37:45.927792 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-28 10:05:00 obsr319738 S23108639 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291446256 2021-03-30 19:07:52.958398 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-17 09:00:00 obsr1711339 S21381088 Traveling P22 EBIRD 195.0 3.219 3.0 1 G1111978 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288756870 2021-04-01 11:30:42.037277 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla N X United States US New York US-NY New York US-NY-061 30.0 Bleecker Playground L3238741 H 40.7363767 -74.0055963 2015-01-03 12:15:00 obsr454647 S21163472 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313448911 2021-03-23 17:00:13.087107 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius N 2 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, 212 Tareyton L252844 P 42.4724094 -76.4601243 2015-04-27 07:30:00 obsr2307843 S23087755 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291420803 2021-03-26 06:09:25.361188 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309 -75.8817852 2015-01-05 09:00:00 obsr998593 S21378913 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315239780 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-03 06:27:00 obsr2321296 S23196024 Traveling P22 EBIRD 252.0 2.253 4.0 1 G1250001 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300269123 2021-04-25 10:23:05.112231 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus X United States US New York US-NY Tioga US-NY-107 28.0 1784 Lisle Rd, Owego, New York, USA L1809615 P 42.1245511 -76.221393 2015-03-01 12:07:00 obsr1920736 S22125572 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309130568 2021-11-09 20:12:16.773384 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 6 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-04-11 12:03:00 obsr1912104 S22802759 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290137958 2021-03-30 19:29:33.633096 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Suffolk US-NY-103 30.0 US-NY-Water Mill-606 Montauk Hwy L3281117 P 40.907844 -72.356146 2015-01-10 08:35:00 obsr2394424 S21274737 Stationary P21 EBIRD 5.0 8.0 1 G1105511 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309771309 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-04-12 07:27:00 obsr2595828 S22845838 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323727083 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-27 06:50:00 obsr2449897 S23690088 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307468518 2018-08-04 17:05:26 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 10 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Feeder Rd. Trail (Genesee Co.) L153041 H 43.1242469 -78.429129 2015-04-04 14:39:00 obsr1195275 S22681568 Traveling P22 EBIRD 27.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288702035 2018-08-04 16:52:30 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Essex US-NY-031 13.0 Hoisington Brook Outlet L632213 H 44.1854969 -73.4323812 2015-01-02 12:55:00 obsr822321 S21159120 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308693779 2018-08-04 17:08:00 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Westchester US-NY-119 28.0 Brinton Brook Sanctuary L893096 H 41.2268584 -73.8992411 2015-04-07 15:00:00 obsr1832377 S22772079 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294244934 2018-08-04 16:55:14 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-25 12:30:00 obsr2113150 S21621833 Traveling P22 EBIRD 120.0 1.0 2.0 1 G1134597 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301962252 2021-11-09 21:05:39.800561 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Rockland US-NY-087 30.0 Nyack Memorial Park L3465168 P 41.08823 -73.91647 2015-03-08 13:29:00 obsr2343626 S22253367 Stationary P21 EBIRD 11.0 2.0 1 G1171956 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311043172 2021-04-01 12:32:15.282601 30494 species avibase-240E3390 House Sparrow Passer domesticus 9 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Plains Preserve L1575568 H 40.7240849 -73.5844534 2015-04-18 17:05:00 obsr916370 S22932158 Traveling P22 EBIRD 80.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322143107 2021-11-15 03:06:58.889978 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-21 05:45:00 obsr34333 S23589621 Traveling P22 EBIRD 255.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317011748 2021-04-01 11:15:31.646886 592 species avibase-3072CC16 Redhead Aythya americana N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 10:45:00 obsr150415 S23295697 Traveling P22 EBIRD 140.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290450100 2015-01-11 16:13:25 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Erie US-NY-029 13.0 Grover World L2573621 P 42.7389343 -78.654514 2015-01-11 15:00:00 obsr2131346 S21300464 Stationary P21 EBIRD 70.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313726422 2018-08-04 17:12:34 32860 species avibase-4D08EE7E Prothonotary Warbler Protonotaria citrea 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-28 07:31:00 obsr2211210 S23105065 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313665503 2021-03-26 07:52:59.845315 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 21 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-27 06:40:00 obsr316199 S23101159 Area P23 EBIRD 60.0 2.59 2.0 1 G1240531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288681834 2021-11-09 18:43:18.11682 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA--North Bay boat launch L3260251 P 42.038887 -73.9149106 2015-01-01 16:30:00 obsr2228949 S21157300 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300718295 2015-03-03 13:07:42 5155 species avibase-4880DC55 Virginia Rail Rallus limicola 3 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-03 13:02:00 obsr1958124 S22157916 Traveling P22 EBIRD 4.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312872578 2021-03-30 12:05:58.533651 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-25 13:04:00 obsr152435 S23052384 Traveling P22 EBIRD 208.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290555115 2021-03-30 19:29:33.633096 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP--Belmont Islands L1656456 H 40.7357853 -73.342391 2015-01-11 08:30:00 obsr1917973 S21308834 Stationary P21 EBIRD 120.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291696120 2015-01-18 14:39:06 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 3 United States US New York US-NY Ontario US-NY-069 13.0 Sand Rd L3301128 P 42.8883372 -77.4760151 2015-01-17 16:30:00 obsr2084521 S21400377 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312089018 2018-08-04 17:11:44 406 species avibase-27B2749A Wood Duck Aix sponsa 1 Male, Adult (1) United States US New York US-NY Warren US-NY-113 13.0 Crandall Park L1504751 H 43.3194382 -73.662484 2015-04-22 09:38:00 obsr1222746 S22999370 Traveling P22 EBIRD 33.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293672554 2021-03-26 07:56:20.588749 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-01-27 15:30:00 obsr676630 S21576456 Traveling P22 EBIRD 1.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314983263 2021-04-01 11:15:31.646886 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 07:15:00 obsr1407710 S23181527 Traveling P22 EBIRD 360.0 4.828 28.0 1 G1247342 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295595457 2021-03-26 06:11:29.8335 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-02-08 11:55:00 obsr1828453 S21729523 Stationary P21 EBIRD 3.0 3.0 1 G1138996 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310413107 2021-04-01 11:15:31.646886 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-15 17:40:00 obsr1734972 S22890493 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319338177 2021-03-26 07:46:52.994574 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 11 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-12 09:10:00 obsr2837502 S23426061 Traveling P22 EBIRD 130.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317194290 2021-03-30 19:07:52.958398 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-08 08:20:00 obsr1516787 S23305659 Traveling P22 EBIRD 220.0 4.426 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309511521 2021-03-26 07:20:31.408164 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-12 12:30:00 obsr2448785 S22827226 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1216742 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317977010 2021-04-01 12:30:15.438381 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Herkimer US-NY-043 13.0 Mckoon's rd L2255319 P 42.922979 -75.0338745 2015-04-18 11:15:00 obsr1683226 S23350209 Stationary P21 EBIRD 30.0 2.0 1 G1261089 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313055985 2021-04-01 11:15:31.646886 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 07:30:00 obsr1077730 S23063512 Traveling P22 EBIRD 360.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310226742 2021-11-09 21:21:28.347501 3169 species avibase-0CF12F81 Yellow-billed Cuckoo Coccyzus americanus 7 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 Shwangunk Grassland L1178145 P 41.64264 -74.20238 2015-04-15 12:15:00 obsr2152799 S22877583 Traveling P22 EBIRD 100.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305511232 2015-03-26 21:09:28 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd L3516783 P 42.4447413 -76.4328074 2015-03-26 18:42:00 obsr241086 S22534845 Stationary P21 EBIRD 5.0 2.0 1 G1193590 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312056555 2021-03-26 06:39:43.334073 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-22 08:10:00 obsr2142124 S22997372 Traveling P22 EBIRD 221.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310640961 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-17 08:15:00 obsr2706415 S22906331 Traveling P22 EBIRD 105.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961242 2021-03-26 07:46:52.994574 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.5944991 -73.8148373 2015-01-19 10:20:00 obsr2855945 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320679743 2018-08-06 22:30:26 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-05-17 17:39:00 obsr1885846 S23499345 Traveling P22 EBIRD 105.0 6.115 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314411547 2015-04-30 17:02:10 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 obsr2908667 S23147416 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291510655 2021-04-01 12:14:19.266649 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-17 14:15:00 obsr547602 S21386265 Traveling P22 EBIRD 45.0 2.414 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318589646 2021-04-01 12:32:15.282601 7011 species avibase-534FB490 Northern Gannet Morus bassanus 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-05-11 09:45:00 obsr247620 S23382907 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290912494 2021-11-09 21:41:38.795423 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus X United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-01-13 07:00:00 obsr1588136 S21337678 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289727388 2021-03-30 19:29:33.633096 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 50 United States US New York US-NY Suffolk US-NY-103 US-NY_766 30.0 Mill Pond, Centerport L835842 H 40.8903365 -73.3713341 2015-01-07 15:30:00 obsr2406624 S21241599 Stationary P21 EBIRD 10.0 2.0 1 G1100331 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309966890 2021-11-09 21:31:40.219848 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-12 08:29:00 obsr1348614 S22859669 Traveling P22 EBIRD 120.0 1.609 2.0 1 G1219456 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303840991 2018-08-04 17:01:44 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--CLW office L2388208 P 42.4799683 -76.4513107 2015-03-18 09:30:00 obsr1696616 S22406772 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323985137 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 250 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 06:35:00 obsr350767 S23707107 Traveling P22 EBIRD 279.0 2.414 4.0 1 G1296053 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307669549 2021-03-26 07:20:31.408164 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_839 Cedar Beach L149796 P 41.0363235 -72.3890305 2015-04-05 09:59:00 obsr2485753 S22695515 Traveling P22 EBIRD 39.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291623015 2018-08-04 16:53:54 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 40 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-01-18 08:16:00 obsr887540 S21395020 Stationary P21 EBIRD 14.0 7.0 1 G1171076 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306999484 2021-03-23 16:29:02.691496 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 55 United States US New York US-NY Orleans US-NY-073 Point Breeze (Orleans Co.) L469835 H 43.3716945 -78.1916691 2015-04-02 15:30:00 obsr137150 S22647679 Traveling P22 EBIRD 45.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309181486 2021-03-30 19:29:33.633096 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Frank Melville Memorial Park and Mill Pond L1114075 H 40.946195 -73.1156445 2015-04-11 11:00:00 obsr2658287 S22806253 Traveling P22 EBIRD 120.0 1.207 15.0 0 G1214809 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309764471 2022-02-08 23:13:17.968739 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-13 12:19:00 obsr2054320 S22845415 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304568298 2021-04-01 11:15:31.646886 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-21 18:00:00 obsr2796494 S22462424 Traveling P22 EBIRD 120.0 0.805 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317093319 2018-08-06 22:29:10 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Hamilton US-NY-041 14.0 Oxbow Road L3484590 P 43.4488874 -74.4700098 2015-05-08 06:40:00 obsr1735540 S23300479 Traveling P22 EBIRD 20.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319733718 2018-08-06 22:29:51 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 Letchworth SP--Dishmill Trail L566086 H 42.6006091 -77.9909134 2015-05-13 17:00:00 obsr2366185 S23448868 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304757668 2021-04-01 12:32:15.282601 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-22 11:35:00 obsr2206421 S22476270 Traveling P22 EBIRD 190.0 1.609 2.0 1 G1189340 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291351351 2021-11-15 03:06:58.889978 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 53 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-15 08:22:00 obsr1548221 S21373315 Traveling P22 EBIRD 61.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305929813 2018-08-04 17:04:31 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-03-28 15:00:00 obsr856524 S22566483 Stationary P21 EBIRD 4.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321445148 2021-03-19 16:08:39.161312 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie State Park L1792131 P 42.42209 -79.42812 2015-05-16 11:45:00 obsr2155111 S23546027 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305623811 2015-03-27 18:47:08 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Peeps Sand Bar L2631098 P 40.8489822 -72.463932 2015-03-27 13:45:00 obsr1864342 S22543543 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293821083 2021-11-09 20:59:08.238638 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus 1 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-01-29 09:30:00 obsr473055 S21588321 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307678659 2021-03-26 07:42:06.558742 11494 species avibase-20C2214E American Kestrel Falco sparverius X United States US New York US-NY Washington US-NY-115 13.0 Ft. Miller Rd. L1357316 H 43.1553093 -73.5771559 2015-04-04 14:30:00 obsr1778524 S22696162 Traveling P22 EBIRD 30.0 4.828 4.0 1 G1208937 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315261890 2015-05-06 20:13:23 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Columbia US-NY-021 13.0 Ken Hummel Memorial Park L562541 H 42.3847822 -73.7676609 2015-05-03 08:10:00 obsr440908 S23197163 Traveling P22 EBIRD 147.0 1.609 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306576163 2021-03-26 06:09:25.361188 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Maine-2-44 Cherry Valley Hill Rd L3528746 P 42.271521 -76.055856 2015-03-31 16:33:00 obsr1764243 S22615695 Stationary P21 EBIRD 84.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308886715 2022-02-17 14:32:23.002448 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 11 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-10 13:06:00 obsr1605975 S22786176 Traveling P22 EBIRD 135.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305239554 2018-08-04 16:59:05 11371 species avibase-75600969 Northern Flicker Colaptes auratus 13 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-08 14:05:00 obsr71667 S22513629 Traveling P22 EBIRD 55.0 0.161 10.0 1 G1192119 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317681560 2021-04-01 10:51:50.668112 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-05-09 08:30:00 obsr967916 S23334073 Stationary P21 EBIRD 210.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320341349 2018-08-06 22:30:02 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 west corners swamp rte 26 L2023984 P 42.116052 -76.0736275 2015-05-15 18:00:00 obsr1947568 S23481413 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296905662 2015-02-14 20:17:46 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 12 United States US New York US-NY Delaware US-NY-025 28.0 Quail Ridge Area L2327396 P 42.2085425 -74.587276 2015-02-14 07:45:00 obsr883142 S21840650 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317178272 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 10:00:00 obsr2797341 S23304808 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301617115 2021-03-26 07:30:35.289997 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-07 09:50:00 obsr1655171 S22226060 Traveling P22 EBIRD 165.0 0.966 2.0 1 G1178141 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307212919 2021-03-30 19:03:54.667077 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 10 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-04-03 13:00:00 obsr2343764 S22663161 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320891934 2021-04-01 11:15:31.646886 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 7 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-18 07:00:00 obsr1731572 S23511908 Traveling P22 EBIRD 270.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318876209 2021-04-01 11:30:42.037277 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-12 05:45:00 obsr1135516 S23399733 Traveling P22 EBIRD 120.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289213711 2021-04-01 10:55:39.308231 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-01-01 11:30:00 obsr762001 S21201432 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309764932 2021-04-01 11:30:42.037277 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-04-02 13:15:00 obsr2475766 S22845444 Traveling P22 EBIRD 40.0 0.805 12.0 1 G1201660 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294921502 2021-03-19 16:02:45.308962 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 15 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-02-04 07:10:00 obsr646558 S21675731 Traveling P22 EBIRD 20.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322631602 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-21 18:11:00 obsr1433400 S23616921 Traveling P22 EBIRD 60.0 1.915 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318352790 2021-12-27 20:39:04.096623 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-05-08 10:00:00 obsr479109 S23370046 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294612097 2021-03-26 07:07:10.758746 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Richmond US-NY-085 30.0 Stately Richman Manor L2489256 P 40.6333994 -74.104638 2015-02-01 09:00:00 obsr2904420 S21650823 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303654675 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY New York US-NY-061 East River, Brooklyn Bridge to S.I. Ferry L3339003 H 40.7039737 -74.0059423 2015-03-17 08:02:00 obsr2179748 S22392135 Traveling P22 EBIRD 54.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305414901 2021-03-30 19:13:38.458673 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-26 09:40:00 obsr2504709 S22527337 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320180844 2021-05-22 06:13:34.379614 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 07:15:00 obsr1807494 S23473229 Traveling P22 EBIRD 360.0 4.828 8.0 1 G1273230 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304585710 2021-11-09 21:50:48.44865 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-21 14:30:00 obsr2214649 S22463666 Traveling P22 EBIRD 75.0 0.805 4.0 1 G1188107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305049121 2021-03-30 19:29:33.633096 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Suffolk US-NY-103 Mt. Sinai Harbor L834919 H 40.9604561 -73.0357361 2015-03-24 09:18:00 obsr2712298 S22499113 Stationary P21 EBIRD 15.0 2.0 1 G1191178 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302365251 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 12 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-10 11:15:00 obsr2505956 S22291564 Traveling P22 EBIRD 135.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322810015 2021-04-01 11:24:19.637193 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-05-25 09:54:00 obsr745890 S23627837 Traveling P22 EBIRD 90.0 1.609 2.0 1 G1289060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322316247 2021-12-24 11:02:14.483178 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-23 16:33:00 obsr730231 S23599005 Traveling P22 EBIRD 103.0 2.414 2.0 1 G1286135 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306766325 2021-03-23 16:52:36.900075 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Suffolk US-NY-103 US-NY_766 30.0 Caumsett SP L259743 H 40.9308721 -73.4720876 2015-04-01 08:45:00 obsr247620 S22629894 Traveling P22 EBIRD 330.0 9.656 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308237677 2021-03-26 07:30:35.289997 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-07 07:47:00 obsr241086 S22737399 Traveling P22 EBIRD 60.0 0.161 2.0 1 G1209642 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312536064 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 08:41:00 obsr2142124 S23029625 Traveling P22 EBIRD 251.0 6.437 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299342422 2021-04-01 10:55:39.308231 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 9 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-02-24 09:13:00 obsr502830 S22053070 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295807941 2021-04-01 11:54:40.172593 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-09 14:15:00 obsr1958124 S21745665 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311374958 2021-03-24 20:49:01.185993 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Washington US-NY-115 13.0 Granville L131798 T 43.4078712 -73.259552 2015-04-18 14:00:00 obsr2196530 S22952433 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS336203013 2021-04-01 12:32:15.282601 456 species avibase-D201EB72 American Wigeon Mareca americana N 25 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-07 10:27:00 obsr1249126 S24594044 Traveling P22 EBIRD 176.0 19.312 3.0 1 G1375178 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312833761 2021-11-09 21:31:40.219848 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-25 11:47:00 obsr1482758 S23050128 Traveling P22 EBIRD 69.0 0.805 2.0 1 G1235164 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308017392 2021-03-26 07:56:20.588749 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-05 11:29:00 obsr1987335 S22720332 Traveling P22 EBIRD 60.0 1.127 2.0 1 G1208138 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317698356 2021-09-03 19:22:31.034431 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-05-09 15:43:00 obsr2497657 S23334967 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308079119 2021-03-23 17:00:13.087107 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 5 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--Snyder Rd. L763841 H 42.4976053 -76.4600587 2015-04-06 16:59:00 obsr1828453 S22724725 Traveling P22 EBIRD 34.0 0.322 2.0 1 G1208554 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307246063 2021-03-30 19:13:38.458673 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 26 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Park West L1756090 H 43.1831991 -77.5278997 2015-04-03 17:36:00 obsr1545618 S22665629 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310310734 2021-03-26 08:14:57.071052 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-15 09:00:00 obsr1198912 S22883328 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309710320 2015-04-13 12:04:35 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-13 11:55:00 obsr334398 S22841048 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322908115 2021-04-01 12:30:15.438381 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio 3 United States US New York US-NY Herkimer US-NY-043 13.0 Castle Road - Ponds L742345 P 43.150683 -74.8973608 2015-05-25 14:28:00 obsr1000124 S23633865 Traveling P22 EBIRD 40.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305392387 2021-03-26 07:30:35.289997 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 35 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-03-26 09:00:00 obsr71667 S22525655 Traveling P22 EBIRD 30.0 0.161 9.0 1 G1192888 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303204397 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola 20 United States US New York US-NY Kings US-NY-047 Gravesend Bay, middle parking lot L1843449 H 40.6040297 -74.0243731 2015-03-15 06:48:00 obsr2549280 S22356252 Traveling P22 EBIRD 53.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308423594 2021-03-24 20:53:39.352228 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-04-07 obsr1591201 S22751264 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314910567 2021-11-09 18:56:49.988387 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 1 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies L428335 H 41.7861111 -73.7397222 2015-05-02 11:17:00 obsr1154 S23177729 Traveling P22 EBIRD 69.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317593963 2021-12-24 11:02:14.483178 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-09 13:10:00 obsr991026 S23329401 Traveling P22 EBIRD 84.0 3.074 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299766849 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-26 09:50:00 obsr647628 S22085603 Traveling P22 EBIRD 40.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304075456 2021-04-01 10:55:39.308231 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X 9 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-03-19 15:49:00 obsr502830 S22425056 Traveling P22 EBIRD 61.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310424540 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 5 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-13 07:01:00 obsr598381 S22891227 Stationary P21 EBIRD 106.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302338592 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park, Manhattan L1305077 P 40.7756018 -73.968544 2015-03-10 11:45:00 obsr827632 S22289326 Traveling P22 EBIRD 90.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290133468 2021-03-26 06:29:56.44369 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-01-09 09:03:00 obsr745890 S21274318 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314933693 2018-08-04 17:14:08 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 24 United States US New York US-NY Essex US-NY-031 13.0 Westport Boat Launch L479943 H 44.1887912 -73.4342089 2015-05-02 13:00:00 obsr822321 S23178868 Stationary P21 EBIRD 23.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS353830435 2018-08-04 16:55:36 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Nassau US-NY-059 30.0 Milburn Pond Park L632761 H 40.6522759 -73.6026542 2015-02-01 14:40:00 obsr982051 S25869489 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301963090 2021-04-01 12:18:57.910168 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Tompkins US-NY-109 13.0 Hungerford Hill L2977397 P 42.429311 -76.454101 2015-03-09 10:13:00 obsr1318356 S22253435 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307063514 2021-03-19 16:19:20.977326 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L1284501 P 42.8466461 -78.856945 2015-04-02 17:15:00 obsr1483240 S22652490 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316571461 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 08:51:00 obsr2447372 S23270798 Traveling P22 EBIRD 135.0 2.414 25.0 1 G1254869 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298938973 2021-03-24 20:33:47.533911 483 species avibase-85625D75 Mallard Anas platyrhynchos 15 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca L122272 T 42.44067 -76.49656 2015-02-22 09:00:00 obsr316746 S22019410 Traveling P22 EBIRD 90.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322345215 2021-11-09 18:19:29.578852 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 1 United States US New York US-NY Dutchess US-NY-027 13.0 LaGrangeville L1403403 P 41.6293956 -73.7753336 2015-05-21 06:50:00 obsr2228257 S23600709 Traveling P22 EBIRD 5.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294707739 2021-03-24 20:23:39.258075 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-02-03 09:42:00 obsr2485753 S21658117 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290004222 2021-03-26 06:13:28.501496 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Chemung US-NY-015 28.0 Chambers Road L3279517 P 42.2251955 -76.8933105 2015-01-09 07:20:00 obsr1875735 S21264231 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311659279 2021-03-30 19:07:52.958398 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-20 17:48:00 obsr1801902 S22971459 Traveling P22 EBIRD 39.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311881083 2021-12-28 15:50:27.785498 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-21 15:40:00 obsr606693 S22985770 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317008971 2021-11-15 03:06:58.889978 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-06 09:00:00 obsr1253931 S23295536 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312818046 2015-04-26 16:22:35 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-25 13:41:00 obsr1958124 S23049268 Traveling P22 EBIRD 5.0 0.483 3.0 1 G1237320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307230778 2021-03-26 06:29:14.715704 8963 spuh avibase-4850C24A owl sp. Strigiformes sp. 1 United States US New York US-NY Madison US-NY-053 28.0 Home to Coulter walkabout L790370 P 42.8733852 -75.8207703 2015-04-03 15:35:00 obsr2716320 S22664510 Traveling P22 EBIRD 94.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304448141 2021-11-09 21:35:18.646328 30494 species avibase-240E3390 House Sparrow Passer domesticus 39 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-03-21 08:00:00 obsr2862523 S22453396 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304584501 2021-03-19 16:02:45.308962 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N X United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.9026012 2015-03-22 08:45:00 obsr290506 S22463591 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310094774 2021-03-23 16:48:08.60516 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 3 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-13 08:45:00 obsr2683910 S22868758 Traveling P22 EBIRD 14.0 0.483 2.0 1 G1220001 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318532982 2021-03-24 20:53:39.352228 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-11 06:08:00 obsr2512689 S23379932 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307443283 2021-03-23 16:47:03.540174 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-04 08:02:00 obsr119187 S22679914 Stationary P21 EBIRD 65.0 2.0 1 G1204088 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300315706 2021-04-01 10:45:00.916278 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 2 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-02-28 15:00:00 obsr676630 S22129371 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310285665 2021-11-09 18:25:59.179016 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Dutchess US-NY-027 13.0 Strever Farm Rd, Pine Plains, NY L1828766 P 41.9405617 -73.6553262 2015-04-15 07:37:00 obsr1062217 S22881600 Stationary P21 EBIRD 30.0 3.0 1 G1220727 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306526455 2021-04-01 11:54:40.172593 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-31 13:35:00 obsr1958124 S22611709 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312106157 2021-04-01 12:14:19.266649 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Ocean Parkway L286801 P 40.6159065 -73.402978 2015-04-22 12:00:00 obsr706483 S23000474 Traveling P22 EBIRD 105.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311318436 2021-03-23 17:00:13.087107 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Tompkins US-NY-109 28.0 Lindsay-Parsons Biodiversity Preserve (FLLT) L109055 H 42.3101677 -76.5216895 2015-04-19 10:00:00 obsr1418810 S22948906 Traveling P22 EBIRD 110.0 2.5 2.0 1 G1226721 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320694292 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-05-17 13:30:00 obsr2072398 S23500165 Traveling P22 EBIRD 75.0 1.609 2.0 1 G1275793 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS331317156 2022-02-17 14:32:23.002448 8829 species avibase-8F123A11 Short-eared Owl Asio flammeus X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-02 08:30:00 obsr117100 S24231683 Traveling P22 EBIRD 150.0 1.931 5.0 1 G1247128 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321965808 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-22 09:00:00 obsr454647 S23578269 Traveling P22 EBIRD 270.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314161820 2021-03-26 07:07:10.758746 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY Richmond US-NY-085 30.0 132 Blackford Avenue, SI, NY L800199 P 40.632401 -74.1401839 2015-04-29 14:05:00 obsr1231731 S23132214 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307386384 2021-03-23 16:21:52.613913 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Ontario US-NY-069 13.0 Sand Rd. E of Taft, West Bloomfield L3320429 H 42.8807194 -77.4967607 2015-04-03 16:30:00 obsr1223899 S22675932 Traveling P22 EBIRD 60.0 4.828 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324074557 2021-03-30 19:13:38.458673 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods - Lake Plains side L2376829 P 43.2738894 -77.6598215 2015-05-06 08:05:00 obsr2966702 S23712617 Traveling P22 EBIRD 50.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307778523 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 13:00:00 obsr152435 S22703285 Traveling P22 EBIRD 252.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS327329856 2015-10-19 19:09:44 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Oakland Lake L684010 H 40.7586408 -73.7594122 2015-01-22 obsr39610 S23939765 Historical P62 EBIRD 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305972872 2021-03-23 16:39:03.255227 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 2 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF--Snag Swamp L1473094 H 40.515363 -74.2213938 2015-03-29 08:43:00 obsr1958124 S22569651 Traveling P22 EBIRD 23.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298959911 2015-02-22 12:36:34 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Wayne US-NY-117 13.0 Hance Rd/Alpco recycling center and pond L874649 P 43.0949036 -77.3351669 2015-02-22 12:33:00 obsr749440 S22021008 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300240993 2021-03-24 21:10:11.310781 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Saratoga US-NY-091 13.0 36 Curt Blvd L2229955 P 43.0492325 -73.8315735 2015-03-01 09:15:00 obsr907769 S22123322 Stationary P21 EBIRD 130.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312780196 2015-04-25 12:09:40 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-25 11:45:00 obsr2343764 S23046992 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305298471 2021-04-01 11:15:31.646886 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh/Marine Park L3514666 P 40.6035594 -73.9283967 2015-03-25 10:50:00 obsr827632 S22518243 Traveling P22 EBIRD 90.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS371507549 2021-03-26 07:56:20.588749 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-15 12:30:00 obsr1647452 S27352651 Traveling P22 EBIRD 60.0 0.805 3.0 1 G1279925 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288865264 2021-03-19 16:19:20.977326 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Unity Island (aka Squaw Is.)--North End L2036486 H 42.9321075 -78.9062977 2015-01-03 09:15:00 obsr2537615 S21174476 Traveling P22 EBIRD 120.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314174142 2022-02-27 09:35:49.066489 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-04-29 16:15:00 obsr2087436 S23133000 Traveling P22 EBIRD 60.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319762471 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 06:15:00 obsr1088395 S23450815 Traveling P22 EBIRD 180.0 4.828 3.0 1 G1271579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316309388 2021-04-01 10:47:08.851048 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps N X United States US New York US-NY Broome US-NY-007 28.0 3665 River Rd Endicott L1466336 P 42.108244 -76.008055 2015-05-04 12:00:00 obsr1826325 S23255950 Traveling P22 EBIRD 60.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314321665 2021-03-30 19:07:52.958398 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:15:00 obsr2152799 S23141976 Traveling P22 EBIRD 240.0 6.437 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301420485 2015-03-07 15:26:25 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 16 United States US New York US-NY Cayuga US-NY-011 13.0 Lettie M. Cook Forest L99624 H 42.893896 -76.7037109 2015-03-07 15:16:00 obsr2871406 S22211948 Stationary P21 EBIRD 6.0 4.0 1 G1169083 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312351732 2021-03-23 17:26:08.495143 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-23 08:45:00 obsr2534001 S23017025 Traveling P22 EBIRD 60.0 2.414 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319966756 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-15 08:08:00 obsr2504709 S23461691 Traveling P22 EBIRD 130.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322962458 2015-05-25 22:28:57 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 4 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-25 19:25:00 obsr822321 S23637521 Traveling P22 EBIRD 71.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322141331 2021-03-30 19:07:52.958398 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-19 11:09:00 obsr1821546 S23589509 Traveling P22 EBIRD 171.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310188267 2021-03-26 07:30:35.289997 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-15 08:17:00 obsr2683910 S22875189 Traveling P22 EBIRD 21.0 0.644 2.0 1 G1220628 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319365710 2018-08-06 22:29:48 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Chenango US-NY-017 28.0 Home woods L3452888 P 42.3471065 -75.6650519 2015-05-13 06:50:00 obsr1303581 S23427544 Traveling P22 EBIRD 160.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301188765 2018-08-04 16:58:47 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-06 08:14:00 obsr1318356 S22192604 Stationary P21 EBIRD 20.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299385893 2021-11-09 18:34:57.804398 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 30 United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-02-24 13:30:00 obsr1264675 S22056188 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291421293 2021-03-26 06:09:25.361188 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309 -75.8817852 2015-01-07 09:00:00 obsr998593 S21378968 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310795896 2021-04-01 11:43:48.927316 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 7 United States US New York US-NY Ontario US-NY-069 13.0 Muar Lake west, Canandaigua L786557 H 42.8801468 -77.2634339 2015-04-17 11:15:00 obsr528918 S22916557 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294473970 2021-04-28 05:26:15.958627 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-02-01 12:00:00 obsr2404047 S21639640 Traveling P22 EBIRD 102.0 3.219 2.0 1 G1132203 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303883799 2020-05-16 18:13:13 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 8 United States US New York US-NY Otsego US-NY-077 28.0 Mill Street bridge, Cooperstown L3497037 P 42.6947773 -74.9208999 2015-03-17 11:42:00 obsr131845 S22410208 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314007522 2021-03-30 19:13:38.458673 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-04-26 08:03:00 obsr1181085 S23122972 Traveling P22 EBIRD 105.0 0.418 2.0 1 G1242347 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305221220 2021-03-23 17:15:00.080143 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias X United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 US-NY-Savannah-14132-14300 State Hwy 31 L2749636 P 43.028643 -76.747185 2015-03-25 11:15:00 obsr354090 S22512157 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304644391 2021-04-01 12:32:15.282601 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-21 09:52:00 obsr870166 S22467833 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321654542 2018-08-06 22:30:40 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-21 06:08:00 obsr1165633 S23558628 Traveling P22 EBIRD 152.0 5.472 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288564021 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-01-01 08:45:00 obsr2759466 S21148081 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312855346 2015-08-02 20:45:19 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake Park L792637 H 42.7759994 -77.6113701 2015-04-25 14:00:00 obsr1561508 S23051394 Stationary P21 EBIRD 30.0 2.0 1 G1235908 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296850339 2015-02-14 17:45:35 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Tompkins US-NY-109 13.0 Farm Pond Circle L2080608 P 42.5383387 -76.4633042 2015-02-14 17:30:00 obsr596741 S21835842 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316803445 2021-03-26 07:56:20.588749 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Nassau US-NY-059 Shorecrest L3582358 P 40.8670413 -73.6517713 2015-05-07 08:00:00 obsr1296638 S23284114 Traveling P22 EBIRD 60.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310349400 2019-07-24 17:31:47 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 250 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr155915 S22886048 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302842006 2021-12-08 07:58:41.562209 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-03-12 17:45:00 obsr2031586 S22327771 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294664315 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 30 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-01 07:30:00 obsr324709 S21654855 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314983251 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 07:15:00 obsr1407710 S23181527 Traveling P22 EBIRD 360.0 4.828 28.0 1 G1247342 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298516923 2021-03-26 07:30:35.289997 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-02-19 09:30:00 obsr2137468 S21983736 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309410348 2021-04-01 12:18:57.910168 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 H C2 H United States US New York US-NY Tompkins US-NY-109 13.0 Nate's Patch--Bluegrass to Hanshaw to Freese L1006570 P 42.4655757 -76.4526987 2015-04-12 11:20:00 obsr1062070 S22820830 Traveling P22 EBIRD 172.0 3.541 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308279263 2021-04-01 11:30:42.037277 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-04-07 08:35:00 obsr1706920 S22740238 Traveling P22 EBIRD 25.0 0.161 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311807067 2021-04-01 12:18:57.910168 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--F.R. Newman Arboretum L799199 H 42.4520722 -76.4572692 2015-04-18 07:25:00 obsr2760150 S22981047 Traveling P22 EBIRD 107.0 1.287 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323526936 2021-03-19 16:06:54.047432 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.3458884 -76.710341 2015-05-28 09:00:00 obsr642516 S23675092 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921618 2021-03-26 07:56:20.588749 32952 species avibase-DB20CB6B Cape May Warbler Setophaga tigrina 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-17 09:00:00 obsr2218212 S22173329 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311232670 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-19 07:30:00 obsr547602 S22943717 Traveling P22 EBIRD 90.0 2.414 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309339032 2021-03-24 20:23:39.258075 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-04-12 09:38:00 obsr2485753 S22816467 Traveling P22 EBIRD 53.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293370079 2021-03-26 07:07:10.758746 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Richmond US-NY-085 30.0 Stately Richman Manor L2489256 P 40.6333994 -74.104638 2015-01-25 08:00:00 obsr2904420 S21551897 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292992170 2021-03-24 19:27:13.077399 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-23 16:10:00 obsr1334267 S21522505 Traveling P22 EBIRD 32.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307693837 2021-04-01 11:30:42.037277 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 14 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-05 07:24:00 obsr642993 S22697137 Traveling P22 EBIRD 189.0 7.242 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS432191284 2021-03-19 16:44:35.607263 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-03-14 obsr2326876 S31756204 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323977412 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 06:18:00 obsr1481464 S23706657 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307811207 2021-03-23 16:48:08.60516 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-02 12:40:00 obsr1783124 S22705526 Stationary P21 EBIRD 40.0 2.0 1 G1206132 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292469818 2015-01-21 14:09:37 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 1 United States US New York US-NY Broome US-NY-007 28.0 Flint Road L3308190 P 42.2320763 -75.9966373 2015-01-21 00:15:00 obsr879105 S21481425 Traveling P22 EBIRD 10.0 11.265 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216041 2021-04-01 12:32:15.282601 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-31 15:30:00 obsr2207991 S21619276 Traveling P22 EBIRD 60.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295378449 2019-07-23 17:27:17 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 600 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Aurora-245 Main St L3343962 P 42.747551 -76.700887 2015-02-07 11:06:00 obsr2173269 S21712355 Stationary P21 EBIRD 15.0 3.0 1 G1137682 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320274680 2021-03-30 19:13:38.458673 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-16 06:46:00 obsr745890 S23477949 Traveling P22 EBIRD 180.0 0.966 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306996778 2021-04-01 11:54:40.172593 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-01 15:50:00 obsr496520 S22647425 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320963853 2021-04-01 12:31:09.823741 27616 species avibase-D77E4B41 American Robin Turdus migratorius 8 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 Letchworth SP--Trail No. 17 L3653210 H 42.6868725 -77.9552157 2015-05-17 06:00:00 obsr1009338 S23515687 Traveling P22 EBIRD 360.0 27.359 2.0 1 G1277797 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325149981 2021-04-01 11:15:31.646886 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 8 United States US New York US-NY Kings US-NY-047 US-NY_1722 Rockaway Inlet (Brooklyn) L504943 H 40.5713274 -73.914299 2015-04-11 17:30:00 obsr2326114 S23786846 Traveling P22 EBIRD 30.0 3.219 45.0 1 G1216362 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301252814 2018-08-04 16:58:43 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Green Island-199 Tibbits Ave L3449735 P 42.749373 -73.687793 2015-03-04 13:00:00 obsr1181085 S22197875 Stationary P21 EBIRD 20.0 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS298821906 2021-04-01 11:24:19.637193 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 100 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-MON I-390--exit 14A to NY 252 (Jefferson Rd.), Henrietta L1534103 P 43.0871167 -77.6047512 2015-02-17 10:03:00 obsr606693 S22009910 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313820528 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-28 07:40:00 obsr876649 S23111095 Traveling P22 EBIRD 300.0 6.437 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295068214 2021-04-01 11:54:40.172593 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-02-02 14:00:00 obsr666331 S21689056 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292534763 2021-04-01 11:27:18.37144 7429 species avibase-1327AC55 Osprey Pandion haliaetus N 12 United States US New York US-NY Montgomery US-NY-057 13.0 Otsauga Club Road & Lock 15 L834703 P 42.9388076 -74.623239 2015-01-21 13:50:00 obsr1000124 S21486629 Traveling P22 EBIRD 48.0 2.897 4.0 1 G1118967 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315872996 2018-08-04 17:14:04 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Delaware US-NY-025 28.0 Rail Trail, West Branch, Hamden, NY L3184377 P 42.1615266 -75.0437236 2015-05-02 08:30:00 obsr2200827 S23229978 Traveling P22 EBIRD 240.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318624809 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-04-26 12:15:00 obsr2759466 S23384989 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302213963 2015-04-18 13:58:52 483 species avibase-85625D75 Mallard Anas platyrhynchos 16 United States US New York US-NY Schenectady US-NY-093 13.0 Mohawk River SP L2896090 H 42.8022799 -73.8512206 2015-03-10 09:55:00 obsr2851090 S22274279 Traveling P22 EBIRD 55.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322514130 2021-04-01 11:24:19.637193 7011 species avibase-534FB490 Northern Gannet Morus bassanus 2 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-24 06:18:00 obsr334398 S23610310 Traveling P22 EBIRD 51.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313064017 2021-03-26 07:07:10.758746 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-04-26 09:15:00 obsr1958124 S23063979 Traveling P22 EBIRD 2.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310598869 2018-08-04 17:09:29 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Tompkins US-NY-109 28.0 Herman Rd. wetlands L1108700 H 42.5157265 -76.3355194 2015-04-17 08:01:00 obsr2001485 S22903591 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305563736 2021-04-01 12:24:45.865424 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Larkin Rd. L4342619 H 43.3037091 -76.7905645 2015-03-26 17:37:00 obsr211814 S22538880 Traveling P22 EBIRD 19.0 1.609 3.0 1 G1193967 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298932892 2021-03-24 19:48:44.880783 32955 species avibase-41062654 Northern Parula Setophaga americana 44 United States US New York US-NY Monroe US-NY-055 13.0 Whiting Rd. Nature Preserve L524399 H 43.251267 -77.4698353 2015-02-22 08:53:00 obsr1545618 S22018888 Traveling P22 EBIRD 69.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310914837 2021-03-24 20:57:12.785944 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chenango US-NY-017 28.0 Smith Kingsman Rd. wetlands L3082117 H 42.458897 -75.855804 2015-04-18 09:46:00 obsr1092576 S22924136 Stationary P21 EBIRD 18.0 2.0 1 G1224244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304448148 2021-11-09 21:35:18.646328 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 20 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-03-21 08:00:00 obsr2862523 S22453396 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299108406 2021-04-28 05:22:52.046239 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-21 07:30:00 obsr2404047 S22035175 Traveling P22 EBIRD 450.0 4.828 2.0 1 G1157712 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304388046 2021-11-09 21:50:48.44865 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-21 12:20:00 obsr1482758 S22449194 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301945579 2022-02-18 10:47:29.953615 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 14 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-09 07:06:00 obsr1062070 S22252070 Stationary P21 EBIRD 89.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302841486 2021-11-15 03:06:58.889978 483 species avibase-85625D75 Mallard Anas platyrhynchos N 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-13 09:51:00 obsr1979147 S22327743 Traveling P22 EBIRD 68.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321310940 2021-11-09 18:32:29.137776 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 6 United States US New York US-NY Dutchess US-NY-027 US-NY_868 28.0 Pocket Rd & White Trail loop, Beacon L2341422 P 41.4934709 -73.9368939 2015-05-19 11:05:00 obsr2770696 S23537549 Traveling P22 EBIRD 155.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303059373 2015-03-26 09:39:55 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Upper Loop L214381 P 42.3717347 -76.3653982 2015-03-14 13:00:00 obsr2074043 S22345296 Traveling P22 EBIRD 90.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319839690 2021-11-09 19:50:09.785432 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 5 United States US New York US-NY Orange US-NY-071 US-NY_853 28.0 Harriman SP--Elk Pen L2894323 H 41.2643558 -74.1534012 2015-04-05 15:00:00 obsr1023554 S23455027 Traveling P22 EBIRD 120.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315269580 2021-11-15 03:06:58.889978 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 06:47:00 obsr642993 S23197558 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320245900 2018-08-06 22:30:15 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Findley Lake, south section L2384456 H 42.1015284 -79.7235336 2015-05-16 17:13:00 obsr1092576 S23476514 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305678345 2021-11-09 18:37:30.327421 456 species avibase-D201EB72 American Wigeon Mareca americana 20 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA--South Bay L2782184 H 42.0203489 -73.922756 2015-03-27 14:30:00 obsr1628992 S22547790 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304684912 2015-03-22 16:53:38 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 30.0 Lower East Side, around my building L815807 P 40.7158811 -73.9877835 2015-03-22 16:00:00 obsr1758291 S22470990 Area P23 EBIRD 30.0 0.8094 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292467954 2021-04-01 11:54:40.172593 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 5 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-21 13:50:00 obsr1958124 S21481266 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308375924 2021-04-01 11:15:31.646886 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 5 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-07 16:30:00 obsr2750470 S22747467 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320573183 2020-03-15 09:14:53 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-17 09:13:00 obsr2071643 S23493637 Traveling P22 EBIRD 244.0 2.414 2.0 1 G1274998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298217489 2021-03-24 19:28:50.176616 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Columbia US-NY-021 14.0 Larkspur Farm house (private) L3388369 P 42.1897621 -73.5989874 2015-02-16 10:55:00 obsr2842267 S21957686 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316953997 2015-05-07 17:53:49 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Franklin US-NY-033 14.0 Bellmont Center L496226 P 44.8417513 -74.1741943 2015-05-02 06:15:00 obsr2507995 S23292430 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309712392 2021-11-09 19:49:09.316529 11371 species avibase-75600969 Northern Flicker Colaptes auratus 8 United States US New York US-NY Orange US-NY-071 28.0 Montgomery L2680387 P 41.5263147 -74.2366791 2015-04-10 13:28:00 obsr1987335 S22841186 Stationary P21 EBIRD 42.0 3.0 1 G1218113 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294051916 2021-03-23 17:26:08.495143 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Nassau US-NY-059 30.0 Hofstra University L639147 H 40.7145119 -73.6003128 2015-01-28 14:15:00 obsr904434 S21606668 Traveling P22 EBIRD 25.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316037491 2021-04-01 11:15:31.646886 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 06:13:00 obsr150415 S23239811 Traveling P22 EBIRD 146.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324041203 2021-11-09 18:41:18.802139 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Dutchess US-NY-027 28.0 Lake Weil Wingdale L3030078 P 41.67324 -73.54287 2015-05-16 06:49:00 obsr1732267 S23710511 Traveling P22 EBIRD 54.0 1.609 2.0 1 G1298884 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314636934 2021-04-01 11:30:42.037277 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-01 09:00:00 obsr2706811 S23161600 Traveling P22 EBIRD 120.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318404523 2021-11-09 19:01:40.008558 5923 species avibase-15369E8E Dunlin Calidris alpina 15 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-10 06:15:00 obsr1433400 S23372915 Traveling P22 EBIRD 300.0 8.561 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307097441 2021-03-23 16:39:03.255227 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-03 07:07:00 obsr1958124 S22654882 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314011170 2021-03-26 07:30:35.289997 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Tompkins US-NY-109 13.0 EcoVillage L903167 P 42.4411944 -76.5472412 2015-04-29 07:15:00 obsr1997264 S23123176 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310345851 2021-03-30 19:22:51.561415 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 250 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr642993 S22885793 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322631529 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-20 05:38:00 obsr1433400 S23616917 Traveling P22 EBIRD 165.0 4.747 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321718431 2021-11-09 17:58:40.313796 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 6 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-21 08:10:00 obsr481595 S23562431 Traveling P22 EBIRD 205.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318690619 2021-03-19 16:06:54.047432 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 West Barrier Bar County Park L788130 H 43.3458884 -76.710341 2015-05-11 09:15:00 obsr1633923 S23388529 Traveling P22 EBIRD 210.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324900554 2021-03-24 19:35:34.045988 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 7 United States US New York US-NY Erie US-NY-029 13.0 newstead L625061 P 42.8978491 -78.5100174 2015-05-06 09:00:00 obsr1802464 S23768796 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316983918 2015-09-13 11:57:51 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-06 09:00:00 obsr1079517 S23294102 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316436568 2021-03-19 16:02:45.308962 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 2 United States US New York US-NY Broome US-NY-007 28.0 Finch Hollow Park L3617148 P 42.1355278 -75.9735596 2015-04-29 14:30:00 obsr1921323 S23262883 Traveling P22 EBIRD 90.0 0.805 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296218223 2021-03-26 07:52:59.845315 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Herkimer US-NY-043 13.0 Little Falls - East L737313 P 43.0394107 -74.8392105 2015-02-11 14:30:00 obsr2694889 S21778407 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312927354 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 06:08:00 obsr150865 S23055571 Traveling P22 EBIRD 216.0 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300076266 2021-11-09 21:57:18.897513 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Ulster US-NY-111 28.0 Farmer's Turnpike L3445715 P 41.6841413 -74.1633207 2015-02-08 09:30:00 obsr2326680 S22109577 Stationary P21 EBIRD 210.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309382808 2021-04-01 11:49:53.573686 681 species avibase-407E2CA8 Common Merganser Mergus merganser 8 United States US New York US-NY Queens US-NY-081 30.0 Kissena Corridor Park L1285332 H 40.747257 -73.8202286 2015-04-12 07:00:00 obsr676630 S22819110 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS619877228 2018-05-18 11:30:08 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 235 Enfield Falls Road, Ithaca, NY (42.402256,-76.557174) L7427014 P 42.402256 -76.557174 2015-01-23 09:06:00 obsr1008135 S45794540 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298709410 2021-04-01 11:49:53.573686 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-02-21 07:26:00 obsr2574755 S22000570 Traveling P22 EBIRD 98.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303517817 2021-03-26 06:55:00.227271 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-03-16 11:11:00 obsr606693 S22381774 Traveling P22 EBIRD 8.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314303001 2021-03-26 06:39:43.334073 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 09:00:00 obsr800463 S23141224 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317540802 2021-11-09 17:58:40.313796 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 4 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-09 06:30:00 obsr2700041 S23326304 Traveling P22 EBIRD 360.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295602010 2021-04-01 12:32:15.282601 32666 species avibase-5110842F Baltimore Oriole Icterus galbula N 6 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-08 08:40:00 obsr876649 S21730085 Traveling P22 EBIRD 265.0 9.656 3.0 1 G1395239 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314172724 2016-10-24 20:34:10 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Richmond US-NY-085 30.0 Blue Heron Park L300535 H 40.5303351 -74.1774023 2015-04-29 07:00:00 obsr1535951 S23132899 Stationary P21 EBIRD 20.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312649134 2015-05-15 11:08:54 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 2 United States US New York US-NY Tompkins US-NY-109 28.0 Hillview Rd. wetland, Danby L916068 H 42.2828732 -76.5054578 2015-04-24 18:40:00 obsr1655171 S23038311 Stationary P21 EBIRD 20.0 2.0 1 G1234264 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000350 2021-03-26 07:56:20.588749 341 species avibase-B86C504C Trumpeter Swan Cygnus buccinator 8 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-03 16:00:00 obsr2218212 S23775903 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307808848 2017-04-17 22:24:10 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sunset Park, Ithaca L1528786 H 42.45875 -76.49325 2015-04-05 16:16:00 obsr1655171 S22705354 Stationary P21 EBIRD 3.0 2.0 1 G1212793 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301983227 2021-03-23 17:26:08.495143 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-09 12:00:00 obsr544268 S22254979 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311826949 2021-03-19 16:02:45.308962 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-04-21 08:00:00 obsr1830659 S22982288 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317755538 2021-03-30 19:42:59.457579 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus X United States US New York US-NY Saratoga US-NY-091 13.0 Stillwater L196899 T 42.93838 -73.65316 2015-03-11 obsr2774749 S23338024 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309289707 2021-03-23 17:22:05.708166 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Herkimer US-NY-043 13.0 Vicinity of Brockett & Lyon Road L664921 P 43.0933994 -74.7911453 2015-04-10 09:16:00 obsr1000124 S22813338 Incidental P20 EBIRD 0 G1215561 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306541686 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-03-31 11:40:00 obsr1830659 S22612880 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314970254 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L2824334 P 40.7709469 -73.974402 2015-05-02 07:00:00 obsr2207991 S23180774 Traveling P22 EBIRD 300.0 8.047 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300036277 2021-03-26 07:30:35.289997 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 25 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-28 11:05:00 obsr1895507 S22106374 Traveling P22 EBIRD 15.0 0.322 5.0 1 G1161716 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299477253 2021-03-26 07:30:35.289997 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-02-22 11:45:00 obsr2700277 S22063105 Stationary P21 EBIRD 20.0 3.0 1 G1159218 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312554495 2015-06-16 16:58:42 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Carncross Rd. L99688 H 43.0787739 -76.7080184 2015-04-24 13:00:00 obsr1721609 S23031489 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312391044 2021-03-23 16:21:52.613913 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Ontario US-NY-069 13.0 **US-NY-ONT Manchester Town Hall, 1272 CR 7 at NY 96 (3175B) [Clifton Springs_NE] L1310921 P 42.9711749 -77.1814066 2015-04-23 15:06:00 obsr606693 S23019869 Traveling P22 EBIRD 4.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302414783 2021-03-24 20:53:39.352228 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-03-11 07:02:00 obsr1165633 S22295217 Traveling P22 EBIRD 71.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302103312 2021-03-30 19:43:32.881136 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 2 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-03-09 16:00:00 obsr114791 S22264313 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292612782 2021-04-01 12:45:19.712958 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Westchester US-NY-119 28.0 Steamboat Riverfront Park, Verplanck L2608460 H 41.2498799 -73.9654233 2015-01-22 12:45:00 obsr258431 S21492929 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296789020 2021-03-30 06:01:28.020715 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 50 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-14 11:18:00 obsr2683910 S21830320 Stationary P21 EBIRD 11.0 2.0 1 G1145785 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308811424 2021-03-26 06:29:56.44369 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 3 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-04-09 08:15:00 obsr2759466 S22781043 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301145048 2021-04-01 10:52:54.724403 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Columbia US-NY-021 13.0 Hudson L1030270 P 42.2525048 -73.8010883 2015-03-05 14:45:00 obsr712039 S22189432 Traveling P22 EBIRD 20.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295418700 2021-03-26 07:20:31.408164 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 15 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-02-07 08:30:00 obsr1327990 S21715496 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297773327 2021-11-09 21:57:10.091587 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Ulster US-NY-111 13.0 Junction of route 209 and route 28 L3389181 P 41.9486048 -74.0363503 2015-02-15 11:00:00 obsr800463 S21919101 Stationary P21 EBIRD 1.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306447053 2021-04-01 12:43:36.236969 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Tioga US-NY-107 28.0 Spencer Lake L2347622 H 42.2473269 -76.5017509 2015-03-25 09:59:00 obsr1318356 S22605755 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305311628 2021-04-01 10:49:39.496318 6616 species avibase-7E022378 Common Loon Gavia immer 2 United States US New York US-NY Cayuga US-NY-011 13.0 Millard Fillmore boyhood site L3513917 P 42.800197 -76.334067 2015-03-25 11:30:00 obsr2279567 S22519269 Stationary P21 EBIRD 74.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291002237 2021-03-26 06:29:56.44369 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 12 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-14 15:19:00 obsr934639 S21344757 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297684173 2021-03-26 07:56:20.588749 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Nassau US-NY-059 30.0 Roslyn heights, nassau county ny US L3370796 P 40.791398 -73.6465341 2015-02-16 09:23:00 obsr1013750 S21910445 Stationary P21 EBIRD 485.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303569782 2021-03-24 20:33:47.533911 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Freeville-55-199 Co Rd 182 L3493347 P 42.501681 -76.430338 2015-03-16 17:40:00 obsr2871406 S22385607 Traveling P22 EBIRD 12.0 0.322 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS319586278 2018-08-06 22:29:50 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 8 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-05-13 09:09:00 obsr1222746 S23440434 Traveling P22 EBIRD 35.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307045186 2021-03-24 20:11:57.676649 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-02 08:10:00 obsr2914424 S22650997 Stationary P21 EBIRD 413.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316132790 2022-02-17 14:32:23.002448 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-05 10:00:00 obsr1284279 S23244966 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321047723 2021-03-30 19:13:38.458673 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-18 17:48:00 obsr934639 S23521282 Traveling P22 EBIRD 92.0 1.207 2.0 1 G1337410 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310390259 2021-04-01 12:18:57.910168 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Tompkins US-NY-109 28.0 Goetchius Wetland Preserve (FLLT)--Flat Iron L109054 H 42.3860243 -76.3019298 2015-04-16 08:09:00 obsr1655171 S22888994 Traveling P22 EBIRD 15.0 0.805 4.0 1 G1221710 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306281896 2021-11-09 21:57:30.330344 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY Ulster US-NY-111 13.0 Foot dr L3525570 P 41.9384123 -74.0312862 2015-03-30 10:00:00 obsr2862523 S22592824 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313429808 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-04-27 06:45:00 obsr2214649 S23086618 Traveling P22 EBIRD 58.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295658574 2021-03-26 07:20:31.408164 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven, Old Stump Road L1796581 P 40.774188 -72.89986 2015-02-07 07:14:00 obsr613775 S21734741 Stationary P21 EBIRD 76.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309778697 2021-03-24 20:20:25.430732 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Schenectady US-NY-093 13.0 Helen Court L2445371 P 42.8696739 -73.9155865 2015-04-13 16:00:00 obsr481595 S22846293 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290179971 2021-11-09 20:12:16.773384 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-01-10 09:23:00 obsr1912104 S21278479 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297700062 2021-04-01 12:39:12.329364 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 4 United States US New York US-NY Otsego US-NY-077 13.0 Richfield Springs L1942761 P 42.8497925 -74.984436 2015-02-15 08:00:00 obsr1071120 S21912129 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146057 2018-08-04 16:53:21 406 species avibase-27B2749A Wood Duck Aix sponsa 14 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-15 12:32:00 obsr1472872 S21356577 Traveling P22 EBIRD 92.0 5.906 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308276468 2021-03-24 20:23:39.258075 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-04-07 14:04:00 obsr2485753 S22740007 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309079414 2018-08-04 17:08:32 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-04-11 12:44:00 obsr2744341 S22799618 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308754105 2021-03-26 07:30:35.289997 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-05 11:35:00 obsr2683910 S22776741 Traveling P22 EBIRD 74.0 1.127 2.0 1 G1212786 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313937042 2021-03-30 19:07:52.958398 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-28 07:30:00 obsr2363365 S23118476 Traveling P22 EBIRD 270.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308375917 2021-04-01 11:15:31.646886 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-07 16:30:00 obsr2750470 S22747467 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290914839 2021-02-04 13:11:09.63048 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-E L3288970 P 39.52687 -72.39041 2015-01-11 12:00:00 obsr840949 S21337863 Traveling P22 EBIRD 60.0 19.795 44.0 1 G1108338 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303519240 2018-08-04 17:01:36 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 30 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-03-16 13:41:00 obsr869873 S22381885 Traveling P22 EBIRD 23.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294802523 2022-03-06 12:39:33.700954 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 20 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-01-31 13:30:00 obsr1494607 S21666401 Traveling P22 EBIRD 25.0 0.322 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319995501 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 22 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-05-15 16:00:00 obsr2448957 S23463273 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS319513525 2021-04-01 11:30:42.037277 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-05-14 07:09:00 obsr894191 S23436370 Traveling P22 EBIRD 143.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296005186 2022-03-05 22:03:50.715584 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-10 08:00:00 obsr2219590 S21761495 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290794456 2021-04-01 11:24:19.637193 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 4 United States US New York US-NY Monroe US-NY-055 13.0 Erie Canal, Rte. 31 L827461 H 43.0748912 -77.4637681 2015-01-11 14:30:00 obsr606693 S21327701 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307716759 2021-06-13 05:18:24.710376 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Kings US-NY-047 30.0 Wyckoff Street Home L903070 P 40.683806 -73.9857732 2015-04-05 13:40:00 obsr2883698 S22698591 Stationary P21 EBIRD 3.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321865079 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-21 07:15:00 obsr2083114 S23571949 Traveling P22 EBIRD 155.0 4.828 10.0 1 G1282738 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288553102 2021-03-24 20:58:53.646623 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-01-02 10:00:00 obsr72341 S21147217 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310066538 2021-03-26 08:14:57.071052 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary--HQ L92442 H 40.968598 -73.6647309 2015-04-14 17:32:00 obsr363163 S22866748 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306928712 2021-03-24 21:13:42.099821 33061 species avibase-E36325FA Prairie Warbler Setophaga discolor 6 United States US New York US-NY Westchester US-NY-119 30.0 Stone Barns Center for Food and Agriculture L596032 H 41.1000516 -73.8308716 2015-04-02 09:30:00 obsr473055 S22642008 Traveling P22 EBIRD 75.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314113803 2021-04-01 11:54:40.172593 616 species avibase-25C94A8F Greater Scaup Aythya marila N X United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-29 09:00:00 obsr666331 S23129313 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320652497 2022-01-12 18:15:23.330035 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--CR 55 to Bigelow Rd. L1432948 H 44.4167104 -74.1195601 2015-05-17 07:52:00 obsr1222746 S23497940 Traveling P22 EBIRD 59.0 0.917 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292466475 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Kings US-NY-047 Gravesend Bay, middle parking lot L1843449 H 40.6040297 -74.0243731 2015-01-21 13:04:00 obsr1821546 S21481152 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314303003 2021-03-26 06:39:43.334073 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 09:00:00 obsr800463 S23141224 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307695660 2021-11-09 20:42:29.914366 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Putnam US-NY-079 28.0 Lake Mahopac L3261861 H 41.3804796 -73.738389 2015-04-05 12:00:00 obsr1430256 S22697278 Traveling P22 EBIRD 20.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289277155 2021-04-01 11:30:42.037277 11371 species avibase-75600969 Northern Flicker Colaptes auratus 322 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-05 08:54:00 obsr2184966 S21206307 Traveling P22 EBIRD 170.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308046216 2021-03-24 19:35:34.045988 668 species avibase-9456DEDF Barrow's Goldeneye Bucephala islandica 2 United States US New York US-NY Erie US-NY-029 13.0 Alden - Crittenden Rd. L586154 P 42.9165364 -78.4935379 2015-04-06 11:00:00 obsr2871264 S22722343 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299088825 2021-03-23 17:22:05.708166 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Herkimer US-NY-043 13.0 Sheep Run Daylily Farm L655147 H 43.2036169 -74.9769688 2015-02-22 13:10:00 obsr2855945 S22033705 Stationary P21 EBIRD 50.0 2.0 1 G1156978 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313468030 2015-05-13 20:19:57 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-04-27 08:00:00 obsr2172593 S23088901 Traveling P22 EBIRD 105.0 3.219 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310015760 2017-02-21 09:18:50 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Madison US-NY-053 13.0 Bush Rd., NY 31 to Oneida Lake L925356 H 43.1584863 -75.9301615 2015-04-13 10:08:00 obsr1167884 S22863011 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293098033 2021-04-01 11:54:40.172593 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Richmond US-NY-085 Lemon Creek Park L508340 H 40.5121298 -74.198581 2015-01-25 10:32:00 obsr1958124 S21531008 Traveling P22 EBIRD 5.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320246071 2021-11-15 03:06:58.889978 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-16 06:59:00 obsr884514 S23476518 Traveling P22 EBIRD 270.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294963303 2022-02-17 14:32:23.002448 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 11 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-04 13:00:00 obsr1711339 S21679591 Traveling P22 EBIRD 180.0 1.609 2.0 1 G1135526 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295691402 2021-03-30 12:05:58.533651 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-02-08 15:00:00 obsr1601967 S21736938 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318177572 2021-03-26 06:29:56.44369 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus N 2 United States US New York US-NY Monroe US-NY-055 13.0 Hogan Point Rd., pond and flooded field L587955 H 43.2987445 -77.7390915 2015-05-10 11:22:00 obsr745890 S23360494 Stationary P21 EBIRD 7.0 2.0 1 G1262399 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306989736 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-02 16:30:00 obsr334398 S22646625 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303095561 2021-03-24 20:03:01.953443 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 12 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Goat island L1931762 P 43.1265466 -79.0438843 2015-02-22 15:30:00 obsr1043007 S22348061 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316203976 2021-11-15 03:06:58.889978 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 15:50:00 obsr585997 S23249028 Traveling P22 EBIRD 60.0 0.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307714938 2022-03-05 22:03:50.715584 591 species avibase-1929E1E1 Canvasback Aythya valisineria 12 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-05 08:50:00 obsr2219590 S22698494 Traveling P22 EBIRD 260.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311643925 2017-12-27 14:15:43 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Erie US-NY-029 13.0 Home L2093742 P 42.7338768 -78.7242615 2015-04-20 15:13:00 obsr916033 S22970337 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320581904 2018-08-06 22:30:19 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-17 07:30:00 obsr1472872 S23494129 Traveling P22 EBIRD 98.0 7.065 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320581764 2018-08-06 22:30:22 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Watts Flats WMA L490893 H 42.0350422 -79.4263016 2015-05-17 09:10:00 obsr1380963 S23494121 Traveling P22 EBIRD 130.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314130539 2022-03-05 22:03:50.715584 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 8 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-29 08:30:00 obsr2219590 S23130313 Traveling P22 EBIRD 150.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310093248 2021-03-23 17:00:13.087107 406 species avibase-27B2749A Wood Duck Aix sponsa 170 United States US New York US-NY Tompkins US-NY-109 28.0 Herman Rd. wetlands L1108700 H 42.5157265 -76.3355194 2015-04-11 18:26:00 obsr2683910 S22868636 Stationary P21 EBIRD 28.0 2.0 1 G1219976 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS304120009 2019-07-23 17:28:02 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-19 14:15:00 obsr479109 S22428462 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299625373 2021-12-10 08:21:29.396662 303 species avibase-B59E1863 Canada Goose Branta canadensis 13 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-25 12:25:00 obsr1832377 S22074676 Traveling P22 EBIRD 25.0 0.805 2.0 1 G1159919 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307739556 2021-03-22 08:58:29.008072 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Harlem Meer L278127 H 40.7971185 -73.9523133 2015-04-05 14:50:00 obsr1175815 S22700404 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300665711 2021-03-30 19:28:38.115458 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Seneca US-NY-099 13.0 Rt. 89 Near Varick Winery L3326592 P 42.7790349 -76.769886 2015-03-02 11:30:00 obsr528918 S22153682 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308058128 2021-03-26 06:39:43.334073 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-03-24 18:15:00 obsr2072398 S22723150 Traveling P22 EBIRD 45.0 0.402 2.0 1 G1208371 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290914962 2016-10-10 10:35:41 303 species avibase-B59E1863 Canada Goose Branta canadensis 21 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 06:45:00 obsr840949 S21337876 Traveling P22 EBIRD 75.0 18.99 44.0 1 G1108327 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311125471 2022-02-17 14:32:23.002448 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-18 17:45:00 obsr2796494 S22937405 Traveling P22 EBIRD 35.0 0.805 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322553839 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 06:27:00 obsr1726069 S23612531 Traveling P22 EBIRD 149.0 6.003 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307156226 2021-04-01 11:30:42.037277 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-03 11:00:00 obsr2793388 S22659258 Traveling P22 EBIRD 105.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315649374 2018-08-04 17:14:37 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-05-03 13:30:00 obsr317968 S23217875 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289155974 2021-03-26 06:29:56.44369 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-01-04 08:00:00 obsr2759466 S21197205 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332422769 2021-03-26 06:29:56.44369 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-10 13:37:00 obsr334398 S24314134 Stationary P21 EBIRD 93.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313076491 2021-03-31 04:01:10.517395 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-26 08:42:00 obsr1711339 S23064764 Traveling P22 EBIRD 89.0 1.609 4.0 1 G1237518 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321865418 2018-08-06 22:30:39 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-05-20 12:45:00 obsr1561508 S23571975 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1282740 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317425449 2021-04-01 11:30:42.037277 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 5 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-09 07:16:00 obsr259298 S23319365 Traveling P22 EBIRD 79.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308210828 2021-03-23 17:00:13.087107 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom39 L3513981 H 42.5385919 -76.3764558 2015-04-07 09:01:00 obsr1696616 S22735169 Stationary P21 EBIRD 8.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300068871 2021-03-26 07:07:10.758746 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Richmond US-NY-085 Page Ave. Beach L1340800 H 40.5023216 -74.2288034 2015-02-28 08:35:00 obsr1893950 S22108981 Stationary P21 EBIRD 29.0 2.0 1 G1161955 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322725813 2021-04-01 11:24:19.637193 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-05-24 09:20:00 obsr1782363 S23622803 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305904810 2021-03-30 19:13:38.458673 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 60 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-28 18:35:00 obsr730231 S22564725 Stationary P21 EBIRD 61.0 3.0 1 G1196955 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309061002 2021-11-09 21:50:48.44865 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris N 5 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-11 08:00:00 obsr915089 S22798525 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288379027 2021-04-01 12:30:15.438381 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 2 United States US New York US-NY Herkimer US-NY-043 13.0 Dillenbeck Rd L3255941 P 42.9952783 -74.7785282 2015-01-01 13:00:00 obsr1708031 S21132443 Traveling P22 EBIRD 40.0 12.875 2.0 1 G1105367 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312609118 2018-08-04 17:12:00 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 1 United States US New York US-NY Genesee US-NY-037 13.0 hunn rd alexander L3492933 P 42.9283369 -78.2158113 2015-04-24 14:45:00 obsr393804 S23035578 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289307155 2021-04-01 12:12:56.033907 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 12 United States US New York US-NY Steuben US-NY-101 28.0 53 Prattsburgh to Kanona L3268683 P 42.4802 -77.2919083 2015-01-05 07:50:00 obsr1602357 S21208674 Traveling P22 EBIRD 15.0 17.703 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300000216 2021-03-22 09:17:32.016297 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Oneida US-NY-065 13.0 Delta Lake L266170 H 43.3053812 -75.3996849 2015-02-28 09:05:00 obsr642516 S22103322 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321834740 2021-03-19 16:08:39.161312 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 09:17:00 obsr334398 S23569482 Traveling P22 EBIRD 112.0 0.08 6.0 1 G1298714 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297595634 2021-12-10 08:21:29.396662 662 species avibase-FB738385 Bufflehead Bucephala albeola 12 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-16 08:30:00 obsr258431 S21902256 Traveling P22 EBIRD 120.0 3.621 12.0 1 G1149054 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317265324 2021-11-15 03:06:58.889978 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 15:00:00 obsr1135516 S23309650 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299110827 2021-04-26 04:57:02.963704 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-22 13:30:00 obsr150415 S22035355 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321828519 2015-05-21 21:00:15 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Madison US-NY-053 28.0 Irish Hill Road, Erieville L692381 P 42.8723787 -75.8033895 2015-05-21 14:52:00 obsr2716320 S23569156 Traveling P22 EBIRD 22.0 1.4 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316215261 2016-05-14 19:56:23 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Monroe US-NY-055 13.0 Mt. Hope Cemetery L249453 H 43.1287817 -77.6206675 2015-05-05 16:35:00 obsr2065230 S23250416 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312578666 2015-04-24 15:52:25 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Wyoming US-NY-121 28.0 Rt 19 flooded field L3587128 P 42.779929 -78.1211722 2015-04-24 12:15:00 obsr660214 S23033248 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318055810 2022-02-17 14:32:23.002448 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-09 18:14:00 obsr1821546 S23354345 Traveling P22 EBIRD 67.0 1.609 4.0 1 G1260335 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290543792 2021-03-23 16:48:08.60516 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-01-10 15:23:00 obsr2255296 S21308058 Stationary P21 EBIRD 9.0 3.0 1 G1106103 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310361027 2021-04-01 11:30:42.037277 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-15 15:50:00 obsr2493447 S22886865 Traveling P22 EBIRD 138.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307869920 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-05 08:00:00 obsr1160328 S22709687 Area P23 EBIRD 180.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299381121 2022-03-05 22:03:50.715584 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 5 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-24 12:00:00 obsr444155 S22055921 Traveling P22 EBIRD 60.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306417051 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine Co. L1097176 P 42.9228769 -76.7300928 2015-03-21 13:03:00 obsr34822 S22603105 Stationary P21 EBIRD 15.0 10.0 1 G1198798 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304413971 2021-03-26 07:30:35.289997 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Philip R. Dankert Village Park L3503546 H 42.4806942 -76.472364 2015-03-21 14:01:00 obsr1655171 S22451004 Traveling P22 EBIRD 6.0 0.322 2.0 1 G1190089 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305180068 2018-08-28 09:56:02 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 Unknown Sex, Adult (1) United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Powerline Cut L1477502 H 42.4801543 -76.4473029 2015-03-24 14:00:00 obsr869999 S22508946 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312585434 2021-03-24 19:39:17.849721 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-04-24 14:25:00 obsr2769235 S23033801 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320865470 2018-08-06 22:30:28 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-18 07:15:00 obsr1688373 S23510428 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311852382 2021-03-30 19:29:33.633096 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 9 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-21 08:00:00 obsr247620 S22983992 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1082039355 2021-12-10 08:21:29.396662 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-01-24 10:00:00 obsr469597 S82293856 Historical P62 EBIRD 240.0 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294959291 2021-03-26 07:52:59.845315 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-04 07:42:00 obsr1000124 S21679289 Area P23 EBIRD 75.0 2.59 2.0 1 G1136350 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS376882278 2016-02-25 01:33:35 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Hortons Point L158149 H 41.0852163 -72.4456862 2015-01-02 10:54:00 obsr1214394 S27808239 Traveling P22 EBIRD 31.0 0.644 1.0 1 G1100210 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1259593658 2021-10-17 07:31:27.288023 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-11 07:00:00 obsr851481 S96263977 Traveling P22 EBIRD 240.0 3.0 2.0 1 G7321426 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296259791 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-02-12 08:00:00 obsr547602 S21781764 Traveling P22 EBIRD 120.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308089724 2021-03-30 19:13:38.458673 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Buck Pond L139795 H 43.2809982 -77.6672974 2015-04-06 10:44:00 obsr745890 S22725654 Traveling P22 EBIRD 40.0 0.161 2.0 1 G1208664 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309399376 2021-11-09 19:58:20.119343 647 species avibase-BCBD2EAE Harlequin Duck Histrionicus histrionicus 1 United States US New York US-NY Orange US-NY-071 28.0 Scott's Corners Golf Course, Walden, NY L3557937 P 41.5291859 -74.2038274 2015-04-12 09:35:00 obsr1062217 S22820085 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303283298 2021-03-26 07:20:31.408164 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-03-15 09:15:00 obsr1137265 S22362480 Traveling P22 EBIRD 45.0 1.609 2.0 1 G1180659 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318076066 2021-11-09 18:46:59.428056 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup East L3609979 P 41.911736 -73.660179 2015-05-10 08:50:00 obsr1442681 S23355401 Traveling P22 EBIRD 150.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311232726 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 30 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 09:05:00 obsr2883698 S22943718 Traveling P22 EBIRD 180.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314153916 2021-11-15 03:06:58.889978 7200 species avibase-49D9148A Great Egret Ardea alba X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 09:00:00 obsr2303233 S23131683 Traveling P22 EBIRD 210.0 4.828 4.0 1 G1243147 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322445927 2018-08-06 22:31:00 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-24 07:47:00 obsr1097423 S23606598 Traveling P22 EBIRD 104.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291306980 2021-03-23 16:33:05.415158 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-01-16 13:20:00 obsr916370 S21370106 Traveling P22 EBIRD 120.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315349127 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-03 07:00:00 obsr1731572 S23201529 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302436737 2015-04-18 13:34:41 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 3 United States US New York US-NY Albany US-NY-001 13.0 Tivoli Lake Preserve L3480691 H 42.6707536 -73.7632259 2015-03-11 09:25:00 obsr2851090 S22296975 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302936149 2021-03-26 06:59:15.841579 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 7 United States US New York US-NY Oswego US-NY-075 13.0 Derby Hill Bird Observatory L982887 P 43.5273932 -76.2341309 2015-03-13 10:20:00 obsr979921 S22335359 Stationary P21 EBIRD 325.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292523480 2019-11-30 19:32:14 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: Bundy Rd: W end N side field L3308773 P 42.4600153 -76.5664673 2015-01-21 11:38:00 obsr2760150 S21485711 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316030407 2021-03-19 16:19:20.977326 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-05 06:51:00 obsr502830 S23239415 Traveling P22 EBIRD 136.0 1.207 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305309878 2021-03-26 06:21:54.883933 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 85 United States US New York US-NY Kings US-NY-047 30.0 Dyker Beach Park L1044216 H 40.6123885 -74.0192327 2015-03-25 18:19:00 obsr1189028 S22519126 Traveling P22 EBIRD 46.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321940828 2021-03-26 07:46:52.994574 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-22 06:26:00 obsr2512689 S23576591 Traveling P22 EBIRD 49.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311727624 2015-04-20 22:43:08 303 species avibase-B59E1863 Canada Goose Branta canadensis 17 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2737378 P 42.7558333 -78.8616667 2015-04-20 09:30:00 obsr436899 S22975919 Stationary P21 EBIRD 270.0 4.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311589339 2021-03-26 07:30:35.289997 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-18 08:30:00 obsr140280 S22966457 Traveling P22 EBIRD 145.0 1.609 2.0 1 G1230344 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297556640 2018-08-04 16:56:06 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 4 United States US New York US-NY Bronx US-NY-005 SUNY Maritime College (Fort Schuyler) L1796419 H 40.8071017 -73.7948002 2015-02-11 13:30:00 obsr700576 S21898653 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305645964 2021-04-01 12:18:57.910168 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-03-27 16:32:00 obsr2074043 S22545168 Traveling P22 EBIRD 34.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295509764 2021-03-26 08:05:20.615241 11494 species avibase-20C2214E American Kestrel Falco sparverius N 5 United States US New York US-NY Onondaga US-NY-067 13.0 Crego Farm L1740333 P 43.122054 -76.351283 2015-02-08 08:30:00 obsr2172593 S21722894 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320120217 2021-03-19 16:29:59.503892 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-16 11:26:00 obsr1302604 S23470202 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288682137 2021-03-26 08:05:20.615241 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Onondaga US-NY-067 13.0 Skan - 5 E. Lake St L631480 P 42.9468657 -76.4167383 2015-01-03 08:05:00 obsr2279567 S21157332 Stationary P21 EBIRD 53.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310518033 2021-03-26 06:17:19.712573 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Erie US-NY-029 13.0 JP's - Harvey Dr. L499698 P 42.8905864 -78.6831808 2015-04-16 18:30:00 obsr780938 S22898018 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295671462 2015-02-08 20:36:13 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Genesee US-NY-037 13.0 Genesee County Park and Forest L319865 H 42.8771248 -78.1243096 2015-02-08 10:35:00 obsr1243175 S21735696 Traveling P22 EBIRD 209.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314397646 2021-03-23 17:18:00.959502 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-04-30 05:45:00 obsr478499 S23146623 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303859233 2021-03-26 07:30:35.289997 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 5 United States US New York US-NY Tompkins US-NY-109 13.0 Island Fitness L3496777 P 42.4424181 -76.5133381 2015-03-18 11:30:00 obsr1418810 S22408111 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304969229 2021-04-01 10:49:39.496318 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 200 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-03-23 18:03:00 obsr1655171 S22492549 Traveling P22 EBIRD 41.0 0.966 2.0 1 G1190751 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314069422 2021-11-09 18:47:28.0488 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook School Rd. L3637619 H 41.8493474 -73.6184591 2015-04-29 07:50:00 obsr1732267 S23126638 Traveling P22 EBIRD 249.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299852050 2021-03-26 07:42:06.558742 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Washington US-NY-115 13.0 Bradley Beach, Ft. Edward L2477571 H 43.266989 -73.5908235 2015-02-27 10:24:00 obsr1222746 S22092176 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311244848 2022-03-05 22:03:50.715584 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 40 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-19 09:00:00 obsr444155 S22944471 Traveling P22 EBIRD 120.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304512761 2021-03-26 08:14:57.071052 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-03-21 09:30:00 obsr2918150 S22458303 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290700518 2021-03-30 19:29:33.633096 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP--Belmont Islands L1656456 H 40.7357853 -73.342391 2015-01-11 08:10:00 obsr1062217 S21320807 Stationary P21 EBIRD 110.0 6.0 1 G1107330 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301389704 2021-03-23 17:20:42.367321 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 6 United States US New York US-NY Chenango US-NY-017 28.0 US-NY-Afton-30 Caswell St L3461272 P 42.230449 -75.525784 2015-03-07 13:13:00 obsr1696616 S22209536 Traveling P22 EBIRD 4.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304645481 2021-11-09 22:12:17.655802 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 300 United States US New York US-NY Ulster US-NY-111 13.0 Stone Ridge Pond off Mill Dam Rd. L624963 H 41.8618905 -74.1432953 2015-03-22 13:01:00 obsr2214649 S22467919 Stationary P21 EBIRD 5.0 2.0 1 G1188363 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308266158 2015-04-07 14:34:24 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Tompkins US-NY-109 13.0 Hancock Plaza L3546361 P 42.44713 -76.50541 2015-04-07 13:27:00 obsr2211210 S22739302 Stationary P21 EBIRD 8.0 1.0 1 G1209966 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309820314 2017-08-16 17:04:06 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-13 17:31:00 obsr666964 S22849330 Stationary P21 EBIRD 97.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294817985 2021-04-01 11:30:42.037277 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY New York US-NY-061 30.0 Riverside Park at 76th st L3337330 P 40.7831248 -73.9852488 2015-02-03 10:10:00 obsr2072398 S21667592 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321950611 2021-12-08 07:58:41.562209 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-22 10:30:00 obsr1223279 S23577222 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313839550 2015-04-28 16:35:35 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Broome US-NY-007 28.0 Jones Park L1598748 H 42.0156115 -75.983731 2015-04-28 06:20:00 obsr1044068 S23112264 Traveling P22 EBIRD 70.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305394156 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-26 06:58:00 obsr1433400 S22525790 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306928703 2021-03-24 21:13:42.099821 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Westchester US-NY-119 30.0 Stone Barns Center for Food and Agriculture L596032 H 41.1000516 -73.8308716 2015-04-02 09:30:00 obsr473055 S22642008 Traveling P22 EBIRD 75.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299155526 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 30.0 86th St & 14th Avenue L3311681 P 40.6126819 -74.011867 2015-02-09 08:05:00 obsr1189028 S22038692 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308925995 2021-03-24 20:53:39.352228 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Albany US-NY-001 13.0 Lions L2803969 P 42.772447 -73.80926 2015-04-10 13:26:00 obsr648176 S22789078 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304588310 2021-03-26 07:15:58.375907 11371 species avibase-75600969 Northern Flicker Colaptes auratus N 7 United States US New York US-NY St. Lawrence US-NY-089 13.0 Canton: NE neighborhood walk L1815904 P 44.5982045 -75.1673892 2015-03-22 08:00:00 obsr1558090 S22463873 Traveling P22 EBIRD 60.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311168565 2021-03-31 04:01:10.517395 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 07:35:00 obsr2519357 S22939851 Traveling P22 EBIRD 320.0 8.047 16.0 1 G1224971 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316878805 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 11:57:00 obsr41879 S23288057 Traveling P22 EBIRD 58.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322644457 2021-03-30 19:13:38.458673 32955 species avibase-41062654 Northern Parula Setophaga americana 11 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Beatty Point L299148 H 43.2762602 -77.684471 2015-05-24 19:09:00 obsr730231 S23617658 Traveling P22 EBIRD 49.0 1.287 2.0 1 G1288068 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299852457 2021-03-26 07:30:35.289997 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 2 United States US New York US-NY Tompkins US-NY-109 13.0 my back yard Trumansburg L2594789 P 42.5410818 -76.6596392 2015-02-27 12:10:00 obsr2260025 S22092204 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295015101 2015-02-05 10:35:20 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 22 United States US New York US-NY Lewis US-NY-049 14.0 Lowville Village L1791251 P 43.7883908 -75.4987824 2015-02-05 06:45:00 obsr1882034 S21684503 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303504408 2021-03-23 16:39:03.255227 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-16 12:33:00 obsr1958124 S22380717 Traveling P22 EBIRD 5.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304194172 2021-03-30 19:39:10.250398 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 23 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-20 08:25:00 obsr2497229 S22434407 Traveling P22 EBIRD 100.0 1.609 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290699236 2021-04-01 11:49:53.573686 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Queens US-NY-081 30.0 Rosie's Place-243 Beach 135th Street L869966 P 40.5751026 -73.8535845 2015-01-10 08:30:00 obsr604941 S21320710 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296438850 2021-03-24 20:20:25.430732 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Schenectady US-NY-093 13.0 Karenwald L2635899 P 42.800376 -73.9004481 2015-02-13 12:10:00 obsr634949 S21798611 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309694455 2015-04-13 11:02:27 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_858 Accabonac Harbor L140939 H 41.0359237 -72.1389771 2015-04-11 11:45:00 obsr2226147 S22840070 Traveling P22 EBIRD 45.0 1.609 3.0 1 G1217995 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322083285 2018-11-27 15:28:04 32578 species avibase-000482C9 Orchard Oriole Icterus spurius 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-22 17:30:00 obsr1417967 S23585781 Traveling P22 EBIRD 90.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291690100 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-01-18 10:53:00 obsr856524 S21399977 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300691157 2021-03-26 06:19:47.07548 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Essex US-NY-031 13.0 US-NY-Ticonderoga-park L2835690 P 43.849661 -73.418867 2015-03-03 08:33:00 obsr2693145 S22155914 Traveling P22 EBIRD 48.0 0.644 2.0 1 G1165632 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288895475 2021-03-30 19:39:10.250398 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-03 07:41:00 obsr1615708 S21176774 Traveling P22 EBIRD 266.0 3.219 3.0 1 G1094198 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313746292 2021-04-01 11:30:42.037277 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 08:15:00 obsr2976 S23106334 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322643350 2018-08-04 17:30:13 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 4 United States US New York US-NY Chemung US-NY-015 28.0 Tanglewood Nature Center and Museum L1134359 H 42.1063498 -76.8769491 2015-05-24 18:29:00 obsr256142 S23617603 Traveling P22 EBIRD 114.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307128890 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-03 08:48:00 obsr152435 S22657350 Traveling P22 EBIRD 121.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310304615 2021-11-09 18:43:18.378649 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias X United States US New York US-NY Dutchess US-NY-027 13.0 Upton Lake Christian School L3271185 P 41.833243 -73.7613273 2015-04-15 07:30:00 obsr2862523 S22882903 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320730421 2021-04-01 11:30:42.037277 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-17 17:00:00 obsr2448505 S23502034 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309324417 2021-04-01 12:11:50.996293 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-04-12 07:16:00 obsr1278262 S22815589 Traveling P22 EBIRD 82.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293201558 2015-01-28 11:43:56 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-25 13:50:00 obsr876649 S21539125 Traveling P22 EBIRD 90.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318657928 2015-05-11 15:38:26 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 2 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3635295 P 42.693501 -77.711644 2015-05-11 14:51:00 obsr682121 S23386726 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322599340 2019-10-05 18:11:27 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Headquarters L153039 H 43.112325 -78.4048443 2015-05-24 10:15:00 obsr2537615 S23614989 Stationary P21 EBIRD 10.0 4.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295870443 2019-07-23 17:27:19 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Fort Pond Bay L1318580 H 41.0454616 -71.9627008 2015-02-08 12:36:00 obsr564905 S21750874 Stationary P21 EBIRD 13.0 2.0 1 G1142204 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306136265 2021-12-23 15:00:47.137144 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-03-29 11:50:00 obsr2468772 S22581668 Traveling P22 EBIRD 296.0 0.08 3.0 1 G1196949 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318764101 2021-03-24 19:48:44.880783 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-05-11 11:55:00 obsr745890 S23392920 Traveling P22 EBIRD 35.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310810404 2021-03-23 17:22:05.708166 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-17 07:00:00 obsr316199 S22917436 Area P23 EBIRD 60.0 2.59 2.0 1 G1223671 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310966550 2021-03-26 08:14:57.071052 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve--Swan Lake area L2724297 H 41.1098093 -73.8352114 2015-04-18 08:00:00 obsr1742994 S22927449 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303011619 2021-03-26 08:11:28.0353 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Saratoga Springs-1-17 Co Rd 67 L3486722 P 43.087571 -73.70197 2015-03-14 10:15:00 obsr2172593 S22341330 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305917637 2018-08-04 17:04:29 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River, Riverwalk Plaza L3479883 H 42.1255097 -77.961348 2015-03-28 11:55:00 obsr2700440 S22565623 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS454839024 2021-04-01 12:12:56.033907 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Steuben US-NY-101 28.0 Robie Street, Bath L1985415 P 42.3437961 -77.3205543 2015-04-06 08:12:00 obsr677629 S33478933 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311795076 2017-08-16 17:07:23 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-21 09:30:00 obsr1633923 S22980115 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296853776 2021-03-30 19:07:52.958398 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-14 12:45:00 obsr1536880 S21836141 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298344963 2021-04-01 11:43:48.927316 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 50 United States US New York US-NY Ontario US-NY-069 13.0 Co . Rd 10 near Co. Rd. 4 L3352803 P 42.9013817 -77.2462034 2015-02-17 16:56:00 obsr528918 S21968637 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316279228 2021-11-15 03:06:58.889978 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 07:00:00 obsr2277801 S23254209 Historical P62 EBIRD 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309024467 2021-04-01 12:45:19.712958 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-04-11 08:45:00 obsr258431 S22796156 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311538257 2018-08-04 17:11:19 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Genesee US-NY-037 13.0 US-NY-Batavia-9299-9399 Cone Dorman Rd L1586160 P 42.958858 -78.203547 2015-04-19 16:30:00 obsr393804 S22962541 Traveling P22 EBIRD 36.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305576423 2021-04-01 11:30:42.037277 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 3 United States US New York US-NY New York US-NY-061 30.0 J. Hood Wright Park L3511956 H 40.8464415 -73.9414896 2015-03-27 08:30:00 obsr200707 S22539888 Traveling P22 EBIRD 15.0 0.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323672213 2018-08-06 22:31:15 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Columbia US-NY-021 14.0 Larkspur Farm fields (private) L3150677 P 42.1869503 -73.5971375 2015-05-27 08:10:00 obsr2842267 S23684780 Traveling P22 EBIRD 80.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292652490 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Kings US-NY-047 Gravesend Bay, southern parking lot L1847433 H 40.5972024 -74.0049123 2015-01-22 12:05:00 obsr2505956 S21495962 Traveling P22 EBIRD 90.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314098988 2021-04-01 11:54:40.172593 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus N X United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-29 15:30:00 obsr1958124 S23128375 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309424030 2021-03-30 19:25:27.212017 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 1 United States US New York US-NY Richmond US-NY-085 30.0 Arbutus Lake L1096289 H 40.5227091 -74.1783006 2015-04-12 13:30:00 obsr155915 S22821599 Stationary P21 EBIRD 5.0 2.0 1 G1216215 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323600045 2018-08-06 22:31:15 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Whittacker Swamp SF L3680051 H 42.03614 -75.4353 2015-05-27 10:48:00 obsr1830659 S23679809 Traveling P22 EBIRD 92.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307474147 2018-08-04 17:05:26 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Arshamomaque Preserve L273407 H 41.0956498 -72.3911698 2015-04-04 15:04:00 obsr2485753 S22681986 Traveling P22 EBIRD 40.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303066127 2021-04-01 11:15:31.646886 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina N 1 United States US New York US-NY Kings US-NY-047 30.0 Seth low park L3487438 P 40.6082022 -73.9861929 2015-03-14 14:30:00 obsr265095 S22345812 Traveling P22 EBIRD 30.0 0.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315359773 2021-04-01 11:15:31.646886 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 06:27:00 obsr2514491 S23202049 Traveling P22 EBIRD 320.0 8.047 4.0 1 G1249270 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310402916 2021-03-23 17:00:13.087107 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Tompkins US-NY-109 28.0 US-NY-Freeville-298 Midline Rd L3566565 P 42.414564 -76.353111 2015-04-16 09:26:00 obsr2871406 S22889795 Traveling P22 EBIRD 16.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300313889 2021-03-30 13:50:38.713554 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Tioga US-NY-107 28.0 Candor Fire Department L3449265 P 42.2334665 -76.3368165 2015-03-01 09:45:00 obsr1655171 S22129216 Stationary P21 EBIRD 60.0 2.0 1 G1171265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318919675 2018-08-06 22:29:43 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-05-12 06:50:00 obsr2546168 S23402075 Traveling P22 EBIRD 86.0 3.219 2.0 1 G1267336 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292953402 2015-01-24 16:09:29 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 50 United States US New York US-NY Saratoga US-NY-091 13.0 Blockhouse Park L495270 H 42.937331 -73.6567533 2015-01-24 13:25:00 obsr1154 S21519627 Stationary P21 EBIRD 13.0 3.0 1 G1121257 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308734562 2015-04-09 19:29:36 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Erie US-NY-029 13.0 Alden - Crittenden Rd. L586154 P 42.9165364 -78.4935379 2015-04-09 18:15:00 obsr2871264 S22775329 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314303073 2018-08-04 17:12:13 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Ontario US-NY-069 28.0 Fred&Mike's/Gulick Rd L850433 P 42.7224254 -77.4652541 2015-04-25 13:30:00 obsr2774009 S23141227 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304343610 2021-04-01 10:55:39.308231 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 9 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-03-21 07:57:00 obsr502830 S22445741 Traveling P22 EBIRD 51.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307288132 2021-03-24 21:10:11.310781 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 5 United States US New York US-NY Saratoga US-NY-091 13.0 Betar Byway L1528567 H 43.2984602 -73.6411847 2015-04-03 08:50:00 obsr1222746 S22668622 Traveling P22 EBIRD 230.0 1.77 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298669238 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-02-16 07:30:00 obsr2449897 S21996655 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309692346 2018-08-04 17:09:00 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-13 09:07:00 obsr1201479 S22839927 Traveling P22 EBIRD 106.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310186211 2021-03-26 07:30:35.289997 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-15 08:17:00 obsr1655171 S22875064 Traveling P22 EBIRD 21.0 0.644 2.0 1 G1220628 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307649404 2022-02-17 14:32:23.002448 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-05 07:40:00 obsr1821546 S22694125 Traveling P22 EBIRD 74.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302533913 2018-08-04 16:59:41 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 10 United States US New York US-NY Nassau US-NY-059 30.0 Whitney Pond Park L1412003 H 40.7848952 -73.7037661 2015-03-11 15:30:00 obsr676630 S22304445 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304415834 2015-03-21 15:10:02 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA), Guy's Marsh L3131740 P 43.06879 -76.74389 2015-03-21 14:29:00 obsr1721609 S22451121 Stationary P21 EBIRD 39.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293237340 2021-03-30 19:07:52.958398 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-25 07:53:00 obsr924076 S21541836 Traveling P22 EBIRD 452.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311299996 2021-04-01 11:15:31.646886 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 07:30:00 obsr139757 S22947813 Traveling P22 EBIRD 360.0 4.828 22.0 1 G1226459 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288137981 2021-03-24 21:13:42.099821 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Westchester US-NY-119 30.0 Rockefeller SP Preserve--Rockwood Hall L2724279 H 41.1158745 -73.8650465 2015-01-01 08:35:00 obsr258431 S21112231 Traveling P22 EBIRD 135.0 1.609 26.0 1 G1088062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311881864 2021-04-01 10:57:06.520339 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-04-21 15:11:00 obsr2420101 S22985824 Traveling P22 EBIRD 67.0 1.609 2.0 1 G1230320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302340130 2018-08-04 16:59:16 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-03-10 16:00:00 obsr2186523 S22289479 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310383399 2017-04-19 14:11:08 337 species avibase-694C127A Mute Swan Cygnus olor 11 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr856524 S22888449 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321017982 2021-03-30 06:01:28.020715 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-17 09:10:00 obsr1104059 S23519724 Area P23 EBIRD 80.0 121.4057 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290682723 2018-08-04 16:53:05 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis X United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-01-11 09:13:00 obsr67057 S21319350 Stationary P21 EBIRD 12.0 12.0 1 G1105488 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288139887 2015-01-01 11:16:41 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Suffolk US-NY-103 Islip Town Beach L2620182 H 40.7064988 -73.2142387 2015-01-01 10:05:00 obsr2902954 S21112443 Stationary P21 EBIRD 20.0 4.0 1 G1087961 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317217829 2021-03-26 06:17:19.712573 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Erie US-NY-029 13.0 US-NY-Buffalo-24 Azure Pine Ct L2589392 P 43.044188 -78.804902 2015-05-07 10:57:00 obsr1054748 S23306907 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS329002348 2021-03-26 06:21:54.883933 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Kings US-NY-047 30.0 Home L468661 P 40.6361565 -73.9647943 2015-04-09 08:00:00 obsr1666581 S24063068 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321021375 2021-03-19 16:32:34.732091 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Dead Horse Point L169814 H 40.579594 -73.89466 2015-05-18 17:26:00 obsr152435 S23519886 Traveling P22 EBIRD 44.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310883640 2015-04-18 11:33:08 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Saratoga US-NY-091 13.0 Golden Pond L3559158 P 43.1144041 -73.7392688 2015-04-18 11:15:00 obsr2037491 S22922276 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300374747 2021-03-31 04:00:42.385977 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 17 United States US New York US-NY Essex US-NY-031 US-NY_846 14.0 Green Fields L3363001 P 44.1171697 -73.7155151 2015-02-15 07:00:00 obsr1993642 S22133555 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309827840 2021-04-01 12:18:57.910168 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-13 08:18:00 obsr1076139 S22849831 Stationary P21 EBIRD 55.0 5.0 1 G1218226 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306362465 2018-08-04 17:04:46 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tioga US-NY-107 28.0 Catatonk Creek, Spencer, NY L3526495 P 42.2137073 -76.4532566 2015-03-30 12:20:00 obsr2430746 S22598777 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299014163 2018-08-04 16:58:03 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 600 United States US New York US-NY Seneca US-NY-099 13.0 Varick--Cayuga Lake from Town Line Rd. L2716130 P 42.8092 -76.75607 2015-02-22 13:43:00 obsr1655171 S22025409 Traveling P22 EBIRD 16.0 2.414 3.0 1 G1156982 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304632033 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-22 12:53:00 obsr2319580 S22466967 Traveling P22 EBIRD 56.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS867133909 2020-02-19 09:05:51 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-18 12:30:00 obsr2299442 S64733260 Historical P62 EBIRD 2.0 1 G4997849 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299992770 2021-03-26 07:56:20.588749 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-02-27 15:00:00 obsr1296638 S22102524 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316193120 2015-05-05 17:49:06 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Madison US-NY-053 13.0 Nelson Swamp L782696 P 42.8897689 -75.8154273 2015-05-05 15:30:00 obsr2716320 S23248371 Traveling P22 EBIRD 73.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315889808 2021-03-30 19:07:52.958398 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 Male, Adult (1) United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 15:45:00 obsr2908667 S23230957 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288252256 2021-11-09 20:57:29.372535 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 5 United States US New York US-NY Rockland US-NY-087 30.0 ShopRite PR L1654774 P 41.0607349 -74.0120219 2015-01-01 13:30:00 obsr1932005 S21121924 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303646788 2021-03-26 07:30:35.289997 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 22 United States US New York US-NY Tompkins US-NY-109 13.0 Plantations Restaurant L592633 H 42.4667747 -76.4113913 2015-03-16 17:48:00 obsr1696616 S22391453 Stationary P21 EBIRD 55.0 3.0 1 G1183317 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307783768 2021-03-23 17:26:08.495143 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-02 11:00:00 obsr1494607 S22703671 Traveling P22 EBIRD 60.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316697254 2017-03-15 21:24:53 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Jefferson US-NY-045 13.0 Chaumont Barrens Preserve L122968 H 44.1017468 -76.0739772 2015-05-06 09:30:00 obsr1321679 S23278039 Traveling P22 EBIRD 75.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299745008 2021-04-01 12:32:15.282601 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-26 12:30:00 obsr547602 S22083737 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298996641 2015-02-22 15:36:03 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Erie US-NY-029 13.0 157 LOCUST Street (YWAP BUFFALO) L3346895 P 42.8977121 -78.8608037 2015-02-20 14:30:00 obsr2965498 S22023918 Stationary P21 EBIRD 20.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310396888 2017-05-07 22:30:53 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-04-16 07:53:00 obsr2588479 S22889447 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309376976 2018-08-04 17:08:50 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 2 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-04-12 11:07:00 obsr2898192 S22818789 Traveling P22 EBIRD 87.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307013456 2021-03-24 19:48:44.880783 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 41 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-02 18:15:00 obsr334398 S22648721 Stationary P21 EBIRD 10.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS302918717 2016-09-01 02:48:29 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Schuyler US-NY-097 US-NY_845 13.0 Finger Lakes NF--Ballard Pond L782293 H 42.5279345 -76.7877173 2015-03-13 15:30:00 obsr2260025 S22333774 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316077741 2015-05-05 11:44:29 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Creek, Lang Road L3601996 P 42.8886134 -74.2762685 2015-05-05 11:00:00 obsr286403 S23242064 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291532480 2019-07-23 17:27:02 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 Male, Adult (1) United States US New York US-NY Orleans US-NY-073 Point Breeze (Orleans Co.) L469835 H 43.3716945 -78.1916691 2015-01-17 10:00:00 obsr2223307 S21388012 Stationary P21 EBIRD 60.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS322369521 2021-03-19 16:29:59.503892 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Jefferson US-NY-045 US-NY_759 13.0 Lakeview Beach Area L3667368 P 43.6971298 -76.2006569 2015-05-23 14:50:00 obsr193855 S23602252 Traveling P22 EBIRD 120.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391304 2021-03-30 19:29:33.633096 11528 species avibase-F3DA111C Merlin Falco columbarius 1 United States US New York US-NY Suffolk US-NY-103 US-NY_780 30.0 USFWS_602 Wertheim NWR--North Side L552085 H 40.794489 -72.8855968 2015-01-11 07:15:00 obsr1327990 S21295836 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS306102384 2021-03-26 07:07:10.758746 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Richmond US-NY-085 30.0 Stately Richman Manor L2489256 P 40.6333994 -74.104638 2015-03-28 08:00:00 obsr2904420 S22579037 Stationary P21 EBIRD 420.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322795456 2015-05-25 12:07:14 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 8 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-25 08:40:00 obsr1119101 S23626993 Stationary P21 EBIRD 40.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298341772 2021-11-15 03:06:58.889978 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus N 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-18 13:00:00 obsr516108 S21968354 Traveling P22 EBIRD 130.0 0.966 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321124331 2021-03-26 07:56:20.588749 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-18 09:15:00 obsr2129334 S23525729 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292189216 2021-03-01 11:20:54.007808 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 25 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-20 15:50:00 obsr1895507 S21438894 Stationary P21 EBIRD 25.0 5.0 1 G1118204 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS916244090 2020-05-09 11:45:11 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Allegany US-NY-003 28.0 Seymour St. Woods L11379388 P 42.4297075 -78.162762 2015-05-26 15:00:00 obsr2078055 S68680875 Incidental P20 EBIRD 21.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302460862 2015-03-11 17:52:05 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-11 12:48:00 obsr2321296 S22298643 Stationary P21 EBIRD 37.0 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304897492 2015-03-23 14:34:28 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Kings US-NY-047 Coney Island Beach--35th St. Overlook L1373631 H 40.5717813 -74.0006958 2015-03-23 13:05:00 obsr454647 S22486563 Stationary P21 EBIRD 88.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318571543 2021-11-15 03:06:58.889978 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-09 06:30:00 obsr1033228 S23381977 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306544442 2021-11-09 21:50:48.44865 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-31 14:25:00 obsr1636520 S22613144 Traveling P22 EBIRD 51.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311432385 2021-11-15 03:11:49.507437 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Rockland US-NY-087 30.0 Rockland Lake SP L283611 H 41.1468757 -73.9234741 2015-04-19 07:10:00 obsr1932005 S22956005 Traveling P22 EBIRD 80.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303313042 2022-02-13 06:32:05.759346 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 3 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-03-15 13:38:00 obsr2683910 S22364664 Traveling P22 EBIRD 12.0 0.966 2.0 1 G1180910 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302664098 2021-04-01 11:49:53.573686 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-12 07:10:00 obsr1982614 S22314256 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306294974 2021-03-26 07:56:20.588749 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-03-30 08:40:00 obsr1296638 S22593752 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116928 2021-04-01 10:45:00.916278 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr2519357 S21194151 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298490660 2021-11-09 20:53:17.759253 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 2 United States US New York US-NY Rockland US-NY-087 30.0 Nanuet L1293607 P 41.0931306 -74.0298271 2015-02-19 08:30:00 obsr1932005 S21981678 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298432808 2021-11-09 21:48:09.967088 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 2 United States US New York US-NY Ulster US-NY-111 28.0 21 S. Putt Corners Rd. L2665091 P 41.7402766 -74.0697652 2015-02-19 06:50:00 obsr1136997 S21976752 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314877967 2021-03-26 06:29:56.44369 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 2 P C3 P United States US New York US-NY Monroe US-NY-055 13.0 Private property L3358535 P 43.2067086 -77.8944933 2015-05-02 09:38:00 obsr1713903 S23176029 Traveling P22 EBIRD 35.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298916849 2021-03-24 20:16:00.852773 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-02-22 08:35:00 obsr1958124 S22017638 Traveling P22 EBIRD 7.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309745429 2021-04-01 12:18:57.910168 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-13 08:18:00 obsr730231 S22844206 Stationary P21 EBIRD 55.0 5.0 1 G1218226 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305344594 2019-11-30 19:53:23 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: Cass Pk: CWT L2309652 P 42.4559374 -76.5122471 2015-03-25 18:02:00 obsr2760150 S22521721 Traveling P22 EBIRD 61.0 3.75 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317573342 2021-03-24 19:48:44.880783 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-09 07:53:00 obsr2817239 S23328310 Traveling P22 EBIRD 102.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293626836 2015-01-27 20:43:58 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 6 United States US New York US-NY Monroe US-NY-055 13.0 Andy's Yard Hamlin, NY L790154 P 43.3425396 -77.9545212 2015-01-27 09:33:00 obsr1181085 S21572961 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312140188 2021-03-30 19:39:10.250398 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 15 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-22 12:15:00 obsr1489009 S23002732 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322825441 2022-02-17 14:32:23.002448 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-23 08:30:00 obsr2502574 S23628813 Traveling P22 EBIRD 180.0 1.77 5.0 1 G1288834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298875308 2022-03-08 13:50:22.901821 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-02-21 10:00:00 obsr1932005 S22014088 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290959479 2021-11-09 19:14:40.086456 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Dutchess US-NY-027 28.0 Whaley Lake L7687502 H 41.5598196 -73.6628399 2015-01-01 08:30:00 obsr2343626 S21341475 Traveling P22 EBIRD 20.0 0.805 2.0 1 G1108978 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294480953 2021-11-15 03:11:49.507437 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Rockland US-NY-087 30.0 Rockland Lake SP L283611 H 41.1468757 -73.9234741 2015-02-01 14:15:00 obsr1932005 S21640217 Traveling P22 EBIRD 75.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299934422 2015-03-03 10:02:11 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-02-27 14:20:00 obsr1792012 S22098172 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288157748 2021-04-01 11:15:31.646886 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-01 08:28:00 obsr2152799 S21114062 Traveling P22 EBIRD 234.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303540056 2021-04-01 11:42:15.525388 631 spuh avibase-2243C710 Aythya sp. Aythya sp. 3 United States US New York US-NY Niagara US-NY-063 13.0 County Line Road, N of Rte. 18 (Hawk Watch) L5584630 H 43.3517158 -78.4659255 2015-03-16 11:27:00 obsr2756208 S22383455 Traveling P22 EBIRD 49.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319572304 2021-11-15 03:06:58.889978 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-14 10:09:00 obsr2149836 S23439643 Traveling P22 EBIRD 162.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293210808 2021-04-01 11:15:31.646886 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon X United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-01-25 14:00:00 obsr2448957 S21539809 Traveling P22 EBIRD 125.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318539227 2021-03-19 16:44:35.607263 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-11 07:35:00 obsr1124114 S23380217 Traveling P22 EBIRD 171.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302934348 2021-03-26 07:30:35.289997 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-04 08:29:00 obsr2683910 S22335242 Traveling P22 EBIRD 23.0 0.644 2.0 1 G1178160 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298331006 2015-02-18 21:39:33 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Delaware US-NY-025 28.0 I-88 @ exit 11 L3398515 P 42.3301394 -75.2825153 2015-02-18 09:25:00 obsr2855945 S21967430 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319572125 2018-08-04 17:27:12 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 9 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-05-14 13:12:00 obsr800690 S23439639 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295756922 2015-02-09 09:23:29 647 species avibase-BCBD2EAE Harlequin Duck Histrionicus histrionicus 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N. & W. Trail intersection L250375 P 42.4790392 -76.4547486 2015-02-09 08:07:00 obsr2307843 S21741822 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323086197 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-05-26 10:05:00 obsr1201479 S23645558 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300658235 2021-03-23 16:21:52.613913 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Ontario US-NY-069 13.0 Hobart and William Smith Colleges L3127559 H 42.8595583 -76.9852745 2015-03-02 10:21:00 obsr528918 S22152788 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313082865 2021-03-23 16:52:36.900075 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Swan-SH Town Boat Basin, EQ L1657759 P 40.8469317 -72.5716377 2015-04-26 09:50:00 obsr717785 S23065129 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313167287 2022-03-05 22:03:50.715584 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-26 09:15:00 obsr2219590 S23070007 Traveling P22 EBIRD 255.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314990567 2022-02-17 14:32:23.002448 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-02 08:30:00 obsr1211277 S23181945 Traveling P22 EBIRD 150.0 1.931 5.0 1 G1247128 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309525806 2021-04-01 11:15:31.646886 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-12 14:19:00 obsr839844 S22828162 Traveling P22 EBIRD 219.0 2.414 2.0 1 G2662567 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291079047 2021-03-26 06:39:43.334073 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-01-07 08:00:00 obsr601383 S21351120 Traveling P22 EBIRD 15.0 0.402 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289068961 2021-04-01 12:32:15.282601 11371 species avibase-75600969 Northern Flicker Colaptes auratus 61 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-03 07:08:00 obsr1319071 S21190218 Traveling P22 EBIRD 300.0 9.656 1.0 1 G1095329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305382226 2021-03-22 09:17:32.016297 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-03-26 07:50:00 obsr1842004 S22524879 Stationary P21 EBIRD 42.0 1.0 1 G1192806 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307100321 2021-03-23 17:00:13.087107 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Tompkins US-NY-109 13.0 AviTom44 L3513986 H 42.5797472 -76.5504828 2015-04-03 07:43:00 obsr620377 S22655117 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315287290 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 08:30:00 obsr262885 S23198412 Traveling P22 EBIRD 210.0 3.219 3.0 1 G1250033 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS449682482 2021-03-24 20:33:47.533911 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-02 09:16:00 obsr1655171 S22142162 Stationary P21 EBIRD 97.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292633432 2021-03-23 16:39:03.255227 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-22 15:00:00 obsr1958124 S21494496 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304178402 2021-03-26 06:55:00.227271 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Ontario US-NY-069 13.0 Ferguson Rd. L3233729 P 42.8850209 -77.1058702 2015-02-10 13:00:00 obsr2832110 S22433040 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296910960 2015-02-14 20:33:29 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Franklin US-NY-033 14.0 Fletcher Farm Road L3371995 P 44.4236664 -74.0659189 2015-02-14 11:30:00 obsr2188170 S21841068 Stationary P21 EBIRD 30.0 2.0 1 G1146229 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306346746 2021-03-19 16:02:45.308962 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-03-30 13:00:00 obsr1472872 S22597603 Traveling P22 EBIRD 148.0 6.92 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304837579 2021-04-01 12:14:19.266649 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY Suffolk US-NY-103 30.0 Amityville L3508609 P 40.6714185 -73.4167385 2015-03-21 11:25:00 obsr564905 S22481924 Traveling P22 EBIRD 30.0 4.828 2.0 1 G1190133 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319637176 2018-08-04 17:27:13 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 40 United States US New York US-NY Herkimer US-NY-043 13.0 US-NY-Little Falls-348 Saltsman Rd L2813086 P 43.0182 -74.747121 2015-05-14 15:45:00 obsr2172593 S23443322 Traveling P22 EBIRD 32.0 1.609 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS324197154 2021-11-15 03:06:58.889978 12258 species avibase-11783075 Monk Parakeet Myiopsitta monachus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-29 12:30:00 obsr1706920 S23720505 Traveling P22 EBIRD 140.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315879646 2018-08-04 17:14:43 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Genesee US-NY-037 13.0 US-NY-Batavia-9299-9399 Cone Dorman Rd L1586160 P 42.958858 -78.203547 2015-05-04 10:15:00 obsr393804 S23230396 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317169055 2021-03-26 06:17:19.712573 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-08 09:32:00 obsr916033 S23304376 Traveling P22 EBIRD 84.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310102467 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 8 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-14 17:40:00 obsr41879 S22869273 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304120867 2021-03-30 19:39:10.250398 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-03-13 09:00:00 obsr2331937 S22428526 Traveling P22 EBIRD 90.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294026435 2021-04-01 11:15:31.646886 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus N 2 United States US New York US-NY Kings US-NY-047 Gravesend Bay, southern parking lot L1847433 H 40.5972024 -74.0049123 2015-01-30 15:11:00 obsr1189028 S21604547 Traveling P22 EBIRD 55.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321936094 2022-02-04 06:14:13.892644 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-05-21 07:32:00 obsr1668936 S23576256 Traveling P22 EBIRD 120.0 1.609 8.0 1 G1283300 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291908868 2015-01-19 12:39:18 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 120 Male, Adult (100); Female, Unknown Age (20) United States US New York US-NY Onondaga US-NY-067 13.0 Skaneateles Conservation Area L553334 P 42.9772743 -76.3850641 2015-01-18 10:25:00 obsr2290617 S21416824 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289626789 2021-11-09 20:40:08.274848 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 11 United States US New York US-NY Putnam US-NY-079 28.0 Yard List (Personal Location) L1765727 P 41.3533799 -73.952949 2015-01-07 08:10:00 obsr2188716 S21234193 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299952277 2019-07-23 17:27:32 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 3 Unknown Sex, Adult (2); Unknown Sex, Immature (1) United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-02-27 10:00:00 obsr479109 S22099537 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318429886 2018-08-06 22:29:13 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-08 08:10:00 obsr1334267 S23374286 Traveling P22 EBIRD 41.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318167551 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-10 07:00:00 obsr2605333 S23359955 Traveling P22 EBIRD 180.0 3.219 16.0 1 G1275937 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292925733 2015-01-28 21:28:04 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-01-24 09:45:00 obsr1534851 S21517621 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316819414 2015-05-07 10:46:04 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-05-07 10:42:00 obsr2588479 S23284931 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291403677 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-17 08:49:00 obsr2574755 S21377516 Traveling P22 EBIRD 21.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317186594 2021-09-12 21:03:10.253835 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Main Pool L99388 H 42.9796604 -76.7437077 2015-04-03 08:53:00 obsr533086 S23305234 International Shorebird Survey (ISS) P74 EBIRD 163.0 4.828 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302002453 2021-04-01 11:54:40.172593 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris N X United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-09 13:20:00 obsr1958124 S22256415 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300646037 2018-08-04 16:58:36 26109 species avibase-BAC33609 Brown Creeper Certhia americana X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-02 12:40:00 obsr1826325 S22152390 Stationary P21 EBIRD 45.0 2.0 1 G1165350 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293146802 2021-03-26 06:39:43.334073 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-25 10:00:00 obsr150865 S21534746 Traveling P22 EBIRD 155.0 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308279023 2021-04-01 11:23:28.992084 634 species avibase-F3D74914 King Eider Somateria spectabilis N 2 United States US New York US-NY Lewis US-NY-049 14.0 US-NY-Lowville-7754 Ridge Rd L3546468 P 43.832416 -75.479678 2015-04-07 13:28:00 obsr417887 S22740206 Traveling P22 EBIRD 30.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303998778 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-03-13 08:55:00 obsr1112275 S22418764 Traveling P22 EBIRD 90.0 2.414 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292805813 2021-04-01 12:32:15.282601 622 species avibase-50566E50 Lesser Scaup Aythya affinis 8 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-01-23 09:00:00 obsr247620 S21508044 Traveling P22 EBIRD 240.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301524904 2021-03-23 16:52:36.900075 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--parking field 5 L1958285 H 40.6274382 -73.2361507 2015-03-07 09:00:00 obsr2338506 S22219231 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315101669 2018-08-04 17:14:01 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-05-02 07:20:00 obsr319738 S23188174 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314261866 2021-03-23 17:00:13.087107 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-772 Bostwick Rd L3557263 P 42.426365 -76.596871 2015-04-30 06:43:00 obsr2625207 S23138606 Traveling P22 EBIRD 35.0 1.996 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314194120 2021-03-26 07:30:35.289997 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca - 42.4487x-76.4594 - Apr 26, 2015, 9:13 AM L3591623 P 42.448744 -76.459388 2015-04-26 09:10:00 obsr1581960 S23134273 Traveling P22 EBIRD 78.0 1.609 4.0 1 G1243397 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316563512 2021-04-01 10:55:39.308231 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-06 08:15:00 obsr2096529 S23270361 Traveling P22 EBIRD 360.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310477972 2018-08-04 17:05:05 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Oneida US-NY-065 14.0 * Howd Rd. L477875 P 43.3068646 -75.7763529 2015-04-02 13:30:00 obsr1842004 S22894916 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295531655 2021-03-26 07:30:35.289997 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Lansing-21-31 Drake Rd L3346039 P 42.527881 -76.504231 2015-02-08 07:36:00 obsr1092576 S21724696 Traveling P22 EBIRD 7.0 2.092 3.0 1 G1138932 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288550493 2021-11-09 20:53:17.759253 18514 issf avibase-25ACCDC0 Warbling Vireo Vireo gilvus Warbling Vireo (Eastern) Vireo gilvus gilvus 2 United States US New York US-NY Rockland US-NY-087 30.0 Nanuet L1293607 P 41.0931306 -74.0298271 2015-01-02 16:30:00 obsr1932005 S21146986 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308820575 2021-03-26 06:21:54.883933 406 species avibase-27B2749A Wood Duck Aix sponsa 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-10 08:15:00 obsr2750470 S22781697 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296887256 2021-03-26 06:21:54.883933 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Kings US-NY-047 30.0 Cemetery of the Evergreens L1801271 P 40.6817096 -73.9016701 2015-02-14 15:30:00 obsr1382841 S21839071 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332419892 2021-03-26 06:29:56.44369 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Hamlin-1353-1921 County Road 209 L2489384 P 43.337811 -77.88134 2015-05-16 18:53:00 obsr334398 S24313943 Traveling P22 EBIRD 4.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306468325 2021-04-01 12:35:52.669792 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 8 United States US New York US-NY Onondaga US-NY-067 13.0 Van Buren Transportation Dept. L2775067 P 43.150699 -76.378511 2015-03-31 07:40:00 obsr2172593 S22607496 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293999451 2021-11-09 18:58:19.805596 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Dutchess US-NY-027 13.0 Mills-Norrie SP--Norrie Point L450314 H 41.8326889 -73.9417694 2015-01-21 10:40:00 obsr1339050 S21602330 Traveling P22 EBIRD 110.0 2.897 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298827996 2018-08-04 16:57:58 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria 4 United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-02-21 13:50:00 obsr454647 S22010387 Traveling P22 EBIRD 30.0 0.402 4.0 1 G1155268 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296146300 2021-03-26 07:19:24.261425 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Steuben US-NY-101 28.0 US-NY-Painted Post-3108 Knoll Rd L1826322 P 42.165969 -77.119302 2015-02-11 15:49:00 obsr2537623 S21772631 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306934068 2021-03-26 07:30:35.289997 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 4 United States US New York US-NY Tompkins US-NY-109 13.0 my back yard Trumansburg L2594789 P 42.5410818 -76.6596392 2015-04-02 11:20:00 obsr2260025 S22642419 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319498549 2021-11-09 18:36:27.898762 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 2 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-05-14 06:40:00 obsr1835267 S23435485 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321000314 2021-04-01 11:15:31.646886 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-18 13:38:00 obsr454647 S23518755 Traveling P22 EBIRD 220.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312012657 2015-04-22 07:49:15 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-22 07:03:00 obsr1640315 S22994560 Stationary P21 EBIRD 41.0 1.0 1 G1231123 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311794907 2021-04-01 10:45:00.916278 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 8 P C3 P United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-21 08:00:00 obsr128156 S22980103 Rusty Blackbird Spring Migration Blitz P41 EBIRD 40.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS770431454 2021-03-26 08:14:57.071052 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-04-13 08:20:00 obsr363553 S57030213 Traveling P22 EBIRD 150.0 2.414 20.0 1 G1218134 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305631206 2018-12-07 06:53:41 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Steuben US-NY-101 28.0 Almond Lake L268790 H 42.3492255 -77.7133725 2015-03-27 16:00:00 obsr1092576 S22544072 Traveling P22 EBIRD 12.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290222217 2021-03-23 17:26:08.495143 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 6 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-10 09:30:00 obsr1160328 S21282073 Stationary P21 EBIRD 60.0 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313100173 2021-03-22 09:17:32.016297 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-26 07:25:00 obsr666964 S23066137 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300070988 2021-04-01 11:54:40.172593 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 10 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-28 15:30:00 obsr1958124 S22109117 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293835492 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-29 09:15:00 obsr800463 S21589450 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304736387 2021-04-01 11:30:42.037277 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Cedar Hill L5197378 H 40.7770344 -73.9654146 2015-03-22 14:48:00 obsr2885680 S22474855 Traveling P22 EBIRD 10.0 0.161 2.0 1 G1188915 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320855089 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-18 07:31:00 obsr187432 S23509822 Traveling P22 EBIRD 54.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292158076 2021-03-30 19:39:10.250398 591 species avibase-1929E1E1 Canvasback Aythya valisineria 4 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-20 11:15:00 obsr247620 S21436672 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296771749 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 21 United States US New York US-NY Monroe US-NY-055 13.0 Redfern Drive L3281377 P 43.1173061 -77.6193094 2015-02-14 14:15:00 obsr2065230 S21828907 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301870185 2015-03-08 21:09:51 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Tompkins US-NY-109 28.0 Freeville Marshes L1127217 H 42.5097546 -76.3485003 2015-01-11 12:33:00 obsr34822 S22246827 Traveling P22 EBIRD 45.0 0.161 3.0 1 G1106108 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306269338 2021-03-24 19:28:50.176616 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 22 United States US New York US-NY Columbia US-NY-021 14.0 Larkspur Farm house (private) L3388369 P 42.1897621 -73.5989874 2015-03-30 09:00:00 obsr2842267 S22591823 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307220954 2021-04-22 12:55:05.75868 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Oneida US-NY-065 13.0 Waterville Home Grounds L1257983 P 42.9688865 -75.3351134 2015-04-03 11:15:00 obsr2139704 S22663762 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309994026 2021-11-09 20:56:29.967405 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Rockland US-NY-087 30.0 Lake Nanuet Park L1479375 P 41.0820514 -73.9994477 2015-04-13 18:00:00 obsr1932005 S22861503 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319014438 2021-04-01 11:30:42.037277 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L3638410 P 40.7800453 -73.9656687 2015-05-12 07:30:00 obsr2962893 S23407274 Traveling P22 EBIRD 390.0 2.414 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313804044 2015-04-28 14:13:21 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP - Yanty Creek Trail L269421 P 43.3618733 -77.9527094 2015-04-28 10:10:00 obsr2966702 S23109994 Traveling P22 EBIRD 40.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296473711 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek--Leon S. Kaiser Park L1312993 H 40.5806115 -73.9979002 2015-02-13 13:30:00 obsr454647 S21801560 Traveling P22 EBIRD 80.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298900004 2018-08-04 16:57:55 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-02-21 09:30:00 obsr1160328 S22016480 Area P23 EBIRD 50.0 30.3514 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300936065 2021-04-01 12:11:50.996293 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 6 United States US New York US-NY Seneca US-NY-099 13.0 Lott Farm (restricted access) L262295 H 42.8790775 -76.794498 2015-03-04 16:58:00 obsr1318356 S22174387 Traveling P22 EBIRD 11.0 0.805 3.0 1 G1179645 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303202097 2021-03-30 19:29:33.633096 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Suffolk US-NY-103 30.0 Lily Pond County Park L523536 H 40.8330257 -73.127482 2015-03-13 15:15:00 obsr1848026 S22356094 Traveling P22 EBIRD 60.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306159284 2018-08-04 17:04:38 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 13 Unknown Sex and Age (6); Male, Adult (3); Female, Adult (3) United States US New York US-NY Saratoga US-NY-091 13.0 Hudson Crossing Park L1476458 H 43.1155261 -73.577908 2015-03-29 11:50:00 obsr1222746 S22583394 Traveling P22 EBIRD 200.0 1.77 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317706243 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:40:00 obsr350767 S23335355 Traveling P22 EBIRD 560.0 15.771 6.0 1 G1259504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310600823 2021-04-01 11:15:31.646886 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 12 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-16 15:00:00 obsr644027 S22903721 Traveling P22 EBIRD 85.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135796 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-07 16:00:00 obsr2218212 S23589178 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307765831 2021-03-26 08:14:57.071052 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Westchester US-NY-119 28.0 yard, Croton L3540904 P 41.1987154 -73.8831502 2015-04-05 08:30:00 obsr1635167 S22702174 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321275505 2021-03-26 06:21:54.883933 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-19 07:30:00 obsr2363365 S23535476 Traveling P22 EBIRD 180.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS354458063 2017-12-08 16:24:08 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Long Pond--Northrup Creek L462594 H 43.2849534 -77.7069855 2015-04-12 11:48:00 obsr2276013 S25925958 Incidental P20 EBIRD 2.0 0 G1472372 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311190852 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-04-19 08:11:00 obsr2270510 S22941213 Traveling P22 EBIRD 48.0 2.253 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312954260 2021-03-26 06:17:19.712573 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-04-25 obsr2096529 S23057247 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320179263 2021-03-23 17:26:08.495143 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 3 United States US New York US-NY Nassau US-NY-059 30.0 Lakeville Road, Lake Success L2875240 P 40.7672816 -73.7075329 2015-05-16 14:00:00 obsr676630 S23473151 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312561560 2021-03-23 17:26:08.495143 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-24 08:20:00 obsr904434 S23031942 Traveling P22 EBIRD 85.0 2.253 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312130024 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-22 14:40:00 obsr1731572 S23002054 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311077033 2021-04-01 12:32:15.282601 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-18 10:30:00 obsr2505956 S22934531 Rusty Blackbird Spring Migration Blitz P41 EBIRD 200.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323118878 2021-04-01 11:15:31.646886 16285 species avibase-5BC4E0EF Willow Flycatcher Empidonax traillii N X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 13:10:00 obsr150415 S23647629 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS615870584 2018-05-11 17:59:55 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay L629399 H 43.2183125 -77.536869 2015-04-11 obsr2796835 S45564042 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302743461 2021-11-15 03:06:58.889978 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-07 11:00:00 obsr93451 S22320355 Traveling P22 EBIRD 120.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288978140 2021-03-30 19:29:33.633096 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 1 United States US New York US-NY Suffolk US-NY-103 30.0 Hortons Point L158149 H 41.0852163 -72.4456862 2015-01-04 09:49:00 obsr2485753 S21183154 Traveling P22 EBIRD 51.0 0.966 1.0 1 G1100219 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293263092 2021-11-09 19:51:09.255083 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-01-25 16:15:00 obsr56929 S21543736 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312877446 2021-03-26 06:12:17.833181 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 1 United States US New York US-NY Chautauqua US-NY-013 Barcelona Harbor L337145 H 42.342789 -79.5939356 2015-04-25 16:27:00 obsr1092576 S23052716 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310654141 2021-03-23 16:48:08.60516 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-17 12:30:00 obsr2744341 S22907167 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304968786 2021-03-23 17:26:08.495143 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-21 12:07:00 obsr2891998 S22492513 Traveling P22 EBIRD 87.0 3.219 2.0 1 G1190790 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305284879 2018-08-04 17:02:53 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, City Pier L357819 H 42.871907 -77.2725534 2015-03-25 17:20:00 obsr354090 S22517225 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300158552 2021-03-23 17:00:13.087107 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 530 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-28 15:04:00 obsr2173269 S22116621 Traveling P22 EBIRD 166.0 0.644 2.0 1 G1183302 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS307457432 2016-10-17 20:44:40 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 1 (Winter Lakewatch) L654004 H 43.3626297 -77.9489422 2015-04-04 14:18:00 obsr613775 S22680845 Traveling P22 EBIRD 30.0 0.483 3.0 1 G1205034 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297587023 2021-03-26 07:20:31.408164 303 species avibase-B59E1863 Canada Goose Branta canadensis N 2 United States US New York US-NY Suffolk US-NY-103 30.0 Home L2619546 P 40.6645222 -73.4090365 2015-01-08 10:50:00 obsr2468400 S21901430 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291615661 2021-12-10 08:21:29.396662 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-01-10 09:50:00 obsr1502560 S21394360 Traveling P22 EBIRD 105.0 3.219 28.0 1 G1103906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322453478 2021-03-19 16:43:17.120646 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 3 United States US New York US-NY Madison US-NY-053 28.0 Colgate University L1247581 H 42.8172219 -75.5373652 2015-05-24 08:30:00 obsr246591 S23607019 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294163595 2015-01-31 15:04:45 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Nassau US-NY-059 30.0 home L1943123 P 40.8667324 -73.6484841 2015-01-31 09:00:00 obsr852452 S21615416 Stationary P21 EBIRD 420.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319698772 2021-03-26 06:17:19.712573 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 9 United States US New York US-NY Erie US-NY-029 13.0 Buffalo - Marriott Niagara L3643671 P 42.9883253 -78.7954849 2015-05-14 19:30:00 obsr2503906 S23446735 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309074425 2019-07-26 16:53:13 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis X United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-11 08:45:00 obsr59643 S22799314 Traveling P22 EBIRD 36.0 0.402 2.0 1 G1214332 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288367698 2021-04-01 11:54:40.172593 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-01-01 07:43:00 obsr1032565 S21131778 Traveling P22 EBIRD 182.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305651483 2021-03-23 17:26:08.495143 636 species avibase-B77377EE Common Eider Somateria mollissima 1 United States US New York US-NY Nassau US-NY-059 30.0 Grant Park, Hewlett L3155768 H 40.6445543 -73.6884264 2015-03-27 13:20:00 obsr916370 S22545594 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292095292 2018-08-04 16:54:45 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-01-20 09:30:00 obsr290506 S21431580 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293402466 2021-03-26 07:07:10.758746 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-26 15:25:00 obsr1958124 S21555160 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323364625 2018-08-06 22:31:12 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 S C2 S United States US New York US-NY Essex US-NY-031 US-NY_2815 14.0 Whiteface Mountain Memorial Highway L3677396 P 44.3695144 -73.9124537 2015-05-26 13:24:00 obsr2476032 S23663728 Traveling P22 EBIRD 143.0 10.139 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296245122 2015-02-12 10:40:27 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 14 United States US New York US-NY Warren US-NY-113 14.0 Cat and Thomas Mountains L3355400 P 43.603909 -73.692505 2015-02-10 11:06:00 obsr2420101 S21780500 Traveling P22 EBIRD 382.0 11.265 2.0 1 G1143792 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307836027 2021-11-09 21:41:38.795423 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-04-05 08:00:00 obsr1588136 S22707328 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317096202 2021-03-19 16:25:42.617988 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 1 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-05-08 07:35:00 obsr2420101 S23300629 Traveling P22 EBIRD 58.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309572502 2015-04-12 21:08:36 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 2 United States US New York US-NY Montgomery US-NY-057 13.0 NY, Montgomery, Langley/Staley L1844130 P 42.8876148 -74.183976 2015-04-09 08:15:00 obsr1885846 S22831321 Traveling P22 EBIRD 20.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310087091 2018-08-04 17:09:12 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Oswego US-NY-075 13.0 Oswego County Airport--Howard Rd. L1814858 H 43.3553061 -76.3795964 2015-04-14 19:56:00 obsr2945658 S22868193 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305386036 2021-03-26 08:11:28.0353 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 1 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Stillwater, NY 52 county route 76 L1926398 P 42.933103 -73.680332 2015-03-26 09:00:00 obsr2564462 S22525196 Stationary P21 EBIRD 59.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303264677 2021-11-09 21:30:09.663073 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Ulster US-NY-111 28.0 Nyquist-Harcourt Wildlife Sanctuary L1412659 H 41.7555313 -74.091749 2015-03-15 10:00:00 obsr1631774 S22361028 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314985896 2018-08-04 17:14:08 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-02 13:59:00 obsr2595828 S23181688 Traveling P22 EBIRD 106.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295363153 2015-02-07 13:57:35 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Ontario US-NY-069 13.0 Stid Hill WMA - north parcel L2840534 P 42.7657294 -77.4047327 2015-02-07 12:15:00 obsr983655 S21711169 Traveling P22 EBIRD 75.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292905057 2021-03-26 07:16:36.956617 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-01-24 08:40:00 obsr481595 S21515984 Traveling P22 EBIRD 145.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522855 2015-04-08 18:13:49 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 500 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-04-08 09:51:00 obsr155915 S22758869 Stationary P21 EBIRD 10.0 2.0 1 G1211600 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310605066 2019-03-04 17:55:09 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-17 08:30:00 obsr1918430 S22904010 Traveling P22 EBIRD 15.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322763143 2018-08-06 22:31:04 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-25 06:49:00 obsr334398 S23625056 Traveling P22 EBIRD 43.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306393273 2017-08-16 16:56:31 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 4 United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum: West and Pleasant Creeks (restricted access) L1878498 P 44.0338243 -75.8343879 2015-03-30 14:30:00 obsr1558090 S22601221 Traveling P22 EBIRD 20.0 0.25 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289314538 2021-12-10 08:21:29.396662 32842 spuh avibase-D572AE1C blackbird sp. Icteridae sp. 15 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-01-05 08:20:00 obsr2078798 S21209287 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313117226 2021-11-15 03:06:58.889978 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 Unknown Sex, Adult (1); Male, Adult (4) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-26 07:06:00 obsr642993 S23067075 Traveling P22 EBIRD 212.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304140824 2021-03-26 06:39:43.334073 32955 species avibase-41062654 Northern Parula Setophaga americana 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-03-17 08:54:00 obsr1548221 S22430092 Traveling P22 EBIRD 16.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320608639 2021-03-26 06:20:10.658048 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Genesee US-NY-037 13.0 Roberts Road, Basom, NY L1383329 P 43.1089883 -78.3658174 2015-05-17 09:05:00 obsr2588479 S23495511 Traveling P22 EBIRD 30.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309408396 2021-03-23 16:39:03.255227 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-12 13:55:00 obsr1958124 S22820706 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322355982 2017-07-31 20:27:54 526 species avibase-56CCA717 Northern Pintail Anas acuta X United States US New York US-NY Chautauqua US-NY-013 13.0 Luensman Overview Park, Chautauqua County, New York,US L3667309 P 42.3446461 -79.4583848 2015-05-23 11:35:00 obsr479109 S23601375 Traveling P22 EBIRD 20.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297639095 2021-11-15 03:11:49.507437 505 species avibase-C732CB10 American Black Duck Anas rubripes X 1 United States US New York US-NY Rockland US-NY-087 30.0 Rockland Lake SP L283611 H 41.1468757 -73.9234741 2015-02-16 08:00:00 obsr2267230 S21906192 Traveling P22 EBIRD 75.0 2.414 4.0 1 0 0 1 Species-Introduced/Exotic +URN:CornellLabOfOrnithology:EBIRD:OBS309859007 2021-03-26 06:39:43.334073 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-13 08:19:00 obsr1548221 S22851933 Traveling P22 EBIRD 23.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292015596 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 15 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park--Southwest L154031 H 40.593426 -73.92352 2015-01-19 08:30:00 obsr2319444 S21425400 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294874119 2021-03-19 16:44:35.607263 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-02-03 08:50:00 obsr334398 S21672239 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296484368 2021-03-26 06:20:10.658048 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Genesee US-NY-037 13.0 9605 Francis Rd , Batavia L3360943 P 42.947728 -78.1616086 2015-02-13 08:00:00 obsr393804 S21802557 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309926748 2015-04-14 08:05:22 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Ontario US-NY-069 13.0 VA medical center L981246 P 42.9006392 -77.2708368 2015-04-14 07:50:00 obsr2979658 S22856804 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309307145 2021-01-26 11:55:02.346497 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 5 C C3 C Male, Adult (4); Female, Adult (1) United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-04-12 07:08:00 obsr606693 S22814465 Traveling P22 EBIRD 21.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289892650 2021-03-24 20:33:47.533911 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-01-08 15:40:00 obsr1092576 S21255317 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288933883 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek L845821 H 40.5811388 -73.9927912 2015-01-03 10:24:00 obsr1601967 S21179713 Traveling P22 EBIRD 150.0 2.897 12.0 1 G1093831 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306106431 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 5 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-29 13:00:00 obsr2906952 S22579384 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307803416 2018-08-04 17:05:37 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 8 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-05 13:50:00 obsr2855945 S22705000 Traveling P22 EBIRD 115.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302729911 2021-04-01 11:24:19.637193 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-03-12 08:50:00 obsr1782363 S22319446 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309072151 2018-08-04 17:08:29 6616 species avibase-7E022378 Common Loon Gavia immer 2 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom39 L3513981 H 42.5385919 -76.3764558 2015-04-11 10:22:00 obsr59643 S22799184 Stationary P21 EBIRD 5.0 1.0 1 G1214328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311832387 2019-07-23 17:28:25 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-04-21 09:20:00 obsr1830659 S22982522 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308317832 2017-08-16 02:23:57 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 30 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-07 14:30:00 obsr646558 S22743090 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301020896 2015-03-05 10:31:19 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 2 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-03-05 10:24:00 obsr2871406 S22180669 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308773840 2018-08-04 17:08:09 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-04-09 obsr1395007 S22778235 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311173718 2021-03-24 19:23:17.886063 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-04-19 07:31:00 obsr1655171 S22940172 Traveling P22 EBIRD 4.0 0.805 2.0 1 G1230108 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290271295 2021-03-26 07:20:31.408164 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven, Old Stump Road L1796581 P 40.774188 -72.89986 2015-01-10 07:25:00 obsr613775 S21286222 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306018870 2021-03-30 19:13:38.458673 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 500 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 11:54:00 obsr2595828 S22572974 Stationary P21 EBIRD 47.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316568273 2021-11-15 03:06:58.889978 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-29 14:15:00 obsr937809 S23270612 Traveling P22 EBIRD 45.0 0.805 3.0 1 G1208369 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322386429 2022-02-04 06:14:13.892644 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-05-22 07:45:00 obsr2277801 S23603226 Historical P62 EBIRD 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612090 2021-03-24 20:33:47.533911 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-01-18 08:04:00 obsr730231 S21394043 Stationary P21 EBIRD 32.0 2.0 1 G1113264 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311080737 2021-04-01 12:30:15.438381 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Herkimer US-NY-043 13.0 Mckoon's rd L2255319 P 42.922979 -75.0338745 2015-04-18 11:15:00 obsr1708031 S22934730 Stationary P21 EBIRD 30.0 2.0 1 G1261089 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317420556 2021-03-26 06:29:56.44369 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus N 2 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-09 06:59:00 obsr2678807 S23319069 Traveling P22 EBIRD 79.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320856671 2021-11-09 18:37:59.640362 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Dutchess US-NY-027 28.0 Cooperstown Rd L2829093 P 41.68776 -73.61404 2015-05-16 05:00:00 obsr2343626 S23509936 Traveling P22 EBIRD 30.0 1.609 2.0 1 G1277160 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311346577 2016-03-24 15:20:12 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Tompkins US-NY-109 28.0 Roy H. Park Preserve--south (FLLT) L305381 H 42.4259195 -76.3357544 2015-04-18 09:45:00 obsr436489 S22950610 Traveling P22 EBIRD 70.0 1.5 2.0 1 G1226720 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299293191 2021-03-26 07:17:57.136956 337 species avibase-694C127A Mute Swan Cygnus olor X United States US New York US-NY Seneca US-NY-099 13.0 NY:SEN:Fayette: Seybolt Rd & Stahl Rd L3435525 P 42.8617106 -76.7682271 2015-02-22 10:46:00 obsr2760150 S22049434 Stationary P21 EBIRD 23.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304456559 2018-08-04 17:02:19 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-03-21 14:05:00 obsr1222746 S22454049 Rusty Blackbird Spring Migration Blitz P41 EBIRD 55.0 1.062 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312669597 2021-03-24 20:58:53.646623 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-24 07:30:00 obsr72341 S23039699 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310904767 2021-03-30 19:07:52.958398 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 10:22:00 obsr2692140 S22923571 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310964746 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-18 11:30:00 obsr547602 S22927328 Traveling P22 EBIRD 120.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307687503 2021-03-24 20:33:47.533911 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Tompkins US-NY-109 13.0 Dryden, Cornell University L3540206 P 42.47968 -76.44974 2015-04-05 10:03:00 obsr2632928 S22696735 Traveling P22 EBIRD 108.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307938996 2021-11-09 20:51:06.773494 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 9 United States US New York US-NY Rockland US-NY-087 28.0 Kakiat County Park L1023278 H 41.1461171 -74.11466 2015-04-06 07:05:00 obsr2346161 S22714954 Traveling P22 EBIRD_PA 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312249401 2021-03-26 06:58:34.561206 32955 species avibase-41062654 Northern Parula Setophaga americana 2 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-04-23 07:48:00 obsr2588479 S23010301 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291959561 2021-11-09 21:23:47.89824 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-01-19 12:00:00 obsr890053 S21420936 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302905636 2019-07-23 17:27:54 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-11 18:04:00 obsr241086 S22332672 Stationary P21 EBIRD 30.0 2.0 1 G1178066 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326329431 2019-03-17 16:38:09 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-17 07:30:00 obsr2398987 S23868565 Traveling P22 EBIRD 329.0 1.609 5.0 1 G3954742 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306605072 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-03-29 08:30:00 obsr2976 S22618135 Historical P62 EBIRD 60.0 2.0 1 G1199901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321902705 2021-04-01 11:15:31.646886 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 6 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-22 05:58:00 obsr1189028 S23574372 Traveling P22 EBIRD 154.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303248205 2021-03-23 17:26:08.495143 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-15 07:40:00 obsr800463 S22359831 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319721280 2021-11-09 18:49:29.473548 6472 species avibase-BE78E765 Least Tern Sternula antillarum X United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA--Cruger Island Rd. L3840109 H 42.0303286 -73.9201355 2015-05-14 08:45:00 obsr671490 S23448135 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291038209 2022-02-17 14:32:23.002448 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-14 14:30:00 obsr2448957 S21347841 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS314390590 2018-08-04 17:13:11 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Niagara US-NY-063 13.0 Joseph Davis SP L324316 H 43.2139755 -79.0390788 2015-04-30 14:38:00 obsr558077 S23146149 Traveling P22 EBIRD 29.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292043337 2021-11-15 03:06:58.889978 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-17 15:03:00 obsr1548221 S21427520 Traveling P22 EBIRD 50.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313817628 2018-08-04 17:12:37 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Buttermilk Falls SP--Upper L697854 H 42.4026874 -76.5109992 2015-04-28 12:15:00 obsr2137468 S23110909 Traveling P22 EBIRD 90.0 7.886 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300379053 2021-11-09 20:53:17.759253 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Rockland US-NY-087 30.0 Nanuet L1293607 P 41.0931306 -74.0298271 2015-03-01 12:15:00 obsr1932005 S22133872 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310501845 2021-03-26 06:39:43.334073 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 08:20:00 obsr800463 S22896894 Traveling P22 EBIRD 160.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281857 2021-03-01 11:20:54.007808 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 20 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-20 15:50:00 obsr1227417 S21445911 Stationary P21 EBIRD 25.0 5.0 1 G1118204 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319164940 2021-04-01 11:15:31.646886 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 11 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 06:58:00 obsr1821546 S23416257 Traveling P22 EBIRD 392.0 4.184 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308877070 2021-04-01 10:47:08.851048 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-10 11:00:00 obsr800690 S22785502 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321950616 2021-12-08 07:58:41.562209 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-22 10:30:00 obsr1223279 S23577222 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299328184 2021-03-23 16:52:36.900075 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Cedar Beach Marina L283643 H 40.6342526 -73.3447755 2015-02-23 12:30:00 obsr1489009 S22051987 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290364297 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N X United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-01-11 09:17:00 obsr2404047 S21293574 Stationary P21 EBIRD 19.0 2.0 1 G1106604 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306104831 2021-03-30 19:04:34.869795 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Columbia US-NY-021 13.0 Elizaville Diner Pond L3505976 H 42.0463847 -73.8055408 2015-03-29 15:52:00 obsr1732267 S22579266 Stationary P21 EBIRD 5.0 2.0 1 G1198494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310236860 2021-11-15 03:06:58.889978 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-15 09:15:00 obsr1481512 S22878257 Traveling P22 EBIRD 210.0 4.023 7.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307639073 2018-08-04 17:05:24 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Fulton US-NY-035 13.0 School St (Mayfield Dam) L3539328 P 43.0982058 -74.2554814 2015-04-04 13:00:00 obsr1683226 S22693358 Traveling P22 EBIRD 15.0 3.219 2.0 1 G1205263 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312748685 2018-12-27 13:19:22 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 United States US New York US-NY Tompkins US-NY-109 13.0 Mulholland Wildflower Preserve L124514 H 42.431675 -76.48283 2015-04-25 09:56:00 obsr869999 S23045109 Traveling P22 EBIRD 26.0 0.483 2.0 1 G1239003 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299520360 2015-02-25 11:28:14 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 13.0 Corson-Mudd Hall L1494059 P 42.447094 -76.4785259 2015-02-24 12:30:00 obsr1418810 S22066510 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293832555 2021-03-23 16:39:03.255227 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-01-29 10:49:00 obsr1958124 S21589221 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304398696 2019-07-23 17:28:04 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 35 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-03-21 13:42:00 obsr1696616 S22449981 Traveling P22 EBIRD 8.0 1.609 2.0 1 G1188323 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290843195 2021-04-01 10:47:08.851048 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 K-mart L1359831 P 42.1053355 -75.905288 2015-01-13 01:15:00 obsr1826325 S21331872 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309288589 2021-04-01 10:58:47.067498 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-04-11 12:50:00 obsr528918 S22813274 Traveling P22 EBIRD 65.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315716247 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 07:15:00 obsr2105033 S23221351 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315268463 2021-03-19 16:27:31.421791 591 species avibase-1929E1E1 Canvasback Aythya valisineria 3 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Sour Springs Rd. (Genesee Co.) L153399 H 43.125275 -78.37028 2015-05-03 10:17:00 obsr2588479 S23197504 Traveling P22 EBIRD 24.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306908817 2021-03-23 17:00:13.087107 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Tompkins US-NY-109 13.0 Newman Golf Course L3521201 P 42.4558993 -76.507566 2015-04-01 17:30:00 obsr596741 S22640464 Traveling P22 EBIRD 120.0 3.219 5.0 1 G1201359 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310554422 2018-04-16 15:51:00 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 10 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-15 17:41:00 obsr378453 S22900587 Stationary P21 EBIRD 30.0 3.0 1 G1222387 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312358869 2021-04-01 11:49:53.573686 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 150 United States US New York US-NY Queens US-NY-081 30.0 Flushing Meadows Corona Park--Meadow Lake L1788995 H 40.7351876 -73.8404751 2015-04-23 16:26:00 obsr2574755 S23017535 Traveling P22 EBIRD 25.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306399115 2018-01-08 19:27:55 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Chemung US-NY-015 28.0 Grove Street Fishing Access L2759121 P 42.0830474 -76.8173933 2015-03-29 09:00:00 obsr778043 S22601740 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302997314 2022-02-18 10:47:29.953615 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 12 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-14 07:06:00 obsr1062070 S22340150 Stationary P21 EBIRD 104.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316919129 2021-03-26 06:29:56.44369 456 species avibase-D201EB72 American Wigeon Mareca americana N 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-06 18:21:00 obsr1243175 S23290350 Stationary P21 EBIRD 45.0 2.0 1 G1256221 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321695262 2021-03-19 16:27:31.421791 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Tonawanda WMA--Meadville Rd. L152121 H 43.1145 -78.4563 2015-05-21 11:36:00 obsr916033 S23561081 Traveling P22 EBIRD 32.0 0.322 1.0 1 G1281682 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317336510 2021-03-19 16:12:42.877422 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Columbia US-NY-021 14.0 Larkspur Farm woods (private) L3150691 P 42.1917199 -73.6003561 2015-05-08 07:05:00 obsr2842267 S23313592 Traveling P22 EBIRD 145.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304656400 2021-12-27 20:39:04.096623 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-03-22 14:39:00 obsr2497657 S22468695 Traveling P22 EBIRD 40.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309831734 2021-12-28 15:50:27.785498 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-13 16:38:00 obsr606693 S22850084 Area P23 EBIRD 26.0 0.4047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312163098 2021-03-23 17:15:00.080143 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Wayne US-NY-117 13.0 Powell's Yard L783199 P 43.0918854 -77.3488167 2015-04-22 17:05:00 obsr749440 S23004361 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292984097 2021-03-26 07:30:35.289997 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 45 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-01-24 10:43:00 obsr1696616 S21521839 Traveling P22 EBIRD 8.0 1.127 2.0 1 G1121472 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320270943 2021-03-30 19:13:38.458673 6339 species avibase-8535345B Herring Gull Larus argentatus 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-16 17:45:00 obsr1929165 S23477755 Stationary P21 EBIRD 10.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318741233 2018-08-06 22:29:41 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-11 10:45:00 obsr1991824 S23391551 Traveling P22 EBIRD 10.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316892166 2018-08-04 17:15:05 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Broome US-NY-007 28.0 Aquaterra Park L209925 H 42.032165 -75.939463 2015-05-07 06:20:00 obsr646558 S23288774 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321742423 2018-08-06 22:30:36 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.5747387 -74.1554202 2015-05-20 06:00:00 obsr777630 S23563962 Traveling P22 EBIRD 180.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297195654 2021-04-01 11:15:31.646886 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-15 14:00:00 obsr1407710 S21866382 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1147439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308144396 2021-03-26 06:55:00.227271 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 7 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Home L3158249 P 42.7894329 -77.5681436 2015-04-06 07:55:00 obsr39511 S22729719 Stationary P21 EBIRD 170.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316138583 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 08:20:00 obsr599682 S23245254 Traveling P22 EBIRD 140.0 2.414 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308432453 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-08 07:30:00 obsr1229227 S22751988 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311443454 2021-04-01 11:15:31.646886 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 08:30:00 obsr2603801 S22956658 Traveling P22 EBIRD 330.0 6.437 2.0 1 G1227456 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299721292 2015-11-05 11:19:11 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Tompkins US-NY-109 13.0 105 Eastern Heights Dr., Ithaca L2724192 P 42.425089 -76.455526 2015-02-26 14:05:00 obsr1318356 S22081707 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317892155 2022-01-20 09:38:40.245267 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-03 15:00:00 obsr1882080 S23345220 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321440701 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 Coney Island Creek Park L614792 H 40.5813224 -74.0052688 2015-05-20 05:47:00 obsr187432 S23545753 Traveling P22 EBIRD 84.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309959925 2021-04-01 11:30:42.037277 279 species avibase-3E04020B Brant Branta bernicla 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-14 06:49:00 obsr1668936 S22859169 Traveling P22 EBIRD 130.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315257451 2022-02-17 14:32:23.002448 592 species avibase-3072CC16 Redhead Aythya americana 9 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-03 08:50:00 obsr1605975 S23196940 Traveling P22 EBIRD 152.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314921706 2022-02-17 14:32:23.002448 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-02 08:30:00 obsr2289692 S23178288 Traveling P22 EBIRD 150.0 1.931 5.0 1 G1247128 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305109242 2021-04-01 12:35:52.669792 32757 species avibase-EF47E15D Boat-tailed Grackle Quiscalus major 60 United States US New York US-NY Onondaga US-NY-067 13.0 Old Erie Canal SHP (Onondaga Co.) L269872 H 43.0534657 -76.000677 2015-03-24 10:45:00 obsr1167884 S22503595 Traveling P22 EBIRD 100.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299552905 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N X United States US New York US-NY Nassau US-NY-059 30.0 Rockaway Tpk L3438654 P 40.6267216 -73.7380564 2015-02-23 16:30:00 obsr1693806 S22068952 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306869321 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-01 16:15:00 obsr1693806 S22637502 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315579040 2021-11-15 03:06:58.889978 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 13:50:00 obsr516108 S23213853 Traveling P22 EBIRD 340.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323003643 2021-03-26 06:29:56.44369 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-25 06:50:00 obsr2449897 S23640087 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304061227 2021-03-30 19:07:52.958398 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-19 08:00:00 obsr2363365 S22424011 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317732574 2021-03-26 06:17:19.712573 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-09 06:50:00 obsr736608 S23336824 Traveling P22 EBIRD 260.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314623809 2018-04-16 15:51:00 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 1 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-01 10:00:00 obsr2843748 S23160893 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290427776 2019-01-03 10:54:11 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Shinnecock Inlet, west L3087424 H 40.8421473 -72.4781388 2015-01-10 15:05:00 obsr1848026 S21298668 Stationary P21 EBIRD 20.0 8.0 1 G1105265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315734841 2021-12-08 07:58:41.562209 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-04 07:30:00 obsr2571303 S23222572 Traveling P22 EBIRD 90.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303472621 2021-03-26 07:30:35.289997 32666 species avibase-5110842F Baltimore Oriole Icterus galbula N 4 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Research Ponds Unit II (restricted access) L266582 H 42.5034956 -76.4374457 2015-03-16 09:21:00 obsr1655171 S22378240 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315407321 2021-11-09 18:36:27.898762 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-05-03 13:19:00 obsr1732267 S23204575 Traveling P22 EBIRD 66.0 3.219 2.0 1 G1249925 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294152276 2015-01-31 14:06:22 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Wayne US-NY-117 13.0 NYSWFC - Ontario-on-the Lake L1911368 P 43.2788847 -77.3482561 2015-01-18 11:10:00 obsr2966702 S21614429 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921758 2021-03-26 07:56:20.588749 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 27 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-19 16:00:00 obsr2218212 S22173334 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313736433 2021-03-26 06:21:08.096334 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-04-28 08:40:00 obsr1302604 S23105764 Stationary P21 EBIRD 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321014478 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 16 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-18 09:00:00 obsr827632 S23519531 Traveling P22 EBIRD 195.0 6.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312849362 2021-03-23 16:39:03.255227 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-25 14:43:00 obsr1958124 S23051057 Traveling P22 EBIRD 30.0 0.483 3.0 1 G1237315 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312324261 2021-04-01 11:54:40.172593 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota N 10 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-23 14:25:00 obsr1958124 S23015227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312017615 2021-03-23 17:32:20.03109 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--Liverpool Marina L837889 H 43.1007479 -76.2093687 2015-04-22 07:42:00 obsr2561576 S22994906 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310551442 2021-03-30 19:07:52.958398 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-16 07:20:00 obsr2363365 S22900386 Traveling P22 EBIRD 360.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298425071 2022-03-05 22:03:50.715584 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-19 11:45:00 obsr2219590 S21976010 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317149763 2021-11-09 18:41:49.178307 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Dutchess US-NY-027 14.0 Harlem Valley Rail Trail - Sharon Station Rd to Rt 1, Amenia, NY L3103688 P 41.8794728 -73.5208619 2015-05-08 06:05:00 obsr1062217 S23303366 Traveling P22 EBIRD 120.0 1.609 2.0 1 G1257284 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297217789 2021-03-30 19:29:33.633096 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea N 1 United States US New York US-NY Suffolk US-NY-103 30.0 Meeting House Creek L1390888 P 40.9373531 -72.6187158 2015-02-15 15:05:00 obsr2528068 S21868464 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319707818 2021-03-26 07:56:20.588749 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-14 09:45:00 obsr143739 S23447338 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320255707 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-16 11:40:00 obsr2364166 S23477015 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298533757 2018-01-07 20:13:45 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-02-20 07:15:00 obsr2420101 S21984880 Stationary P21 EBIRD 30.0 2.0 1 G1153421 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310641365 2021-03-24 21:06:05.39641 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--Liverpool Marina L837889 H 43.1007479 -76.2093687 2015-04-17 08:45:00 obsr660214 S22906359 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322759628 2021-11-09 18:11:48.679808 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 12 United States US New York US-NY Dutchess US-NY-027 13.0 Andrew Haight Rd. L1268498 H 41.8140583 -73.645885 2015-05-25 08:45:00 obsr1732267 S23624823 Traveling P22 EBIRD 82.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277253 2021-11-09 21:23:47.89824 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-01-01 15:30:00 obsr342014 S21124228 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308510441 2021-03-24 20:49:01.185993 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 Male, Adult (7) United States US New York US-NY Washington US-NY-115 13.0 New Swamp Rd. L3805899 H 43.3275378 -73.5075903 2015-04-08 13:22:00 obsr1222746 S22758011 Traveling P22 EBIRD 40.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310069468 2015-04-14 18:51:02 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-13 07:00:00 obsr72341 S22866942 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293612861 2021-03-26 07:20:31.408164 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven, Old Stump Road L1796581 P 40.774188 -72.89986 2015-01-27 08:00:00 obsr613775 S21571911 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312171756 2015-04-22 20:00:35 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-17 09:45:00 obsr525303 S23004986 Traveling P22 EBIRD 60.0 1.609 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298914841 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-21 13:00:00 obsr2598985 S22017488 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS300081473 2021-04-01 11:30:42.037277 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 2 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-02-28 12:45:00 obsr2310825 S22109937 Traveling P22 EBIRD 105.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313062230 2021-03-23 16:39:03.255227 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-26 09:02:00 obsr1958124 S23063879 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305312632 2021-03-26 08:09:29.707251 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Otsego US-NY-077 28.0 Otsego Lake - Lake Front on Pioneer St. Cooperstown L1311672 P 42.7036005 -74.9226594 2015-03-25 15:55:00 obsr316199 S22519336 Stationary P21 EBIRD 26.0 3.0 1 G1192371 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323658516 2021-03-26 06:19:47.07548 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 4 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-28 19:15:00 obsr822321 S23683802 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311825257 2020-05-16 18:08:12 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 4 United States US New York US-NY Otsego US-NY-077 28.0 Rod and Gun Club Rd L1907681 P 42.3633298 -75.310532 2015-04-18 11:30:00 obsr789570 S22982344 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296497268 2021-04-01 12:32:15.282601 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-02-13 13:00:00 obsr247620 S21803777 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312562364 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-24 13:20:00 obsr2883698 S23031977 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322441974 2018-08-06 22:31:00 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Delaware US-NY-025 28.0 Franklin Mountain, DOAS Sanctuary L305962 H 42.4263804 -75.048065 2015-05-24 08:05:00 obsr1042912 S23606376 Traveling P22 EBIRD 67.0 2.092 2.0 1 G2354314 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309416431 2021-11-09 19:57:48.990233 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-12 07:30:00 obsr800463 S22821188 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306100282 2022-02-17 14:32:23.002448 30494 species avibase-240E3390 House Sparrow Passer domesticus N 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-29 13:35:00 obsr876649 S22578869 Traveling P22 EBIRD 70.0 1.609 2.0 1 G1395744 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300149559 2021-11-09 21:23:47.89824 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-28 14:06:00 obsr2184966 S22115985 Stationary P21 EBIRD 150.0 1.0 1 G1163059 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303720208 2021-04-01 11:49:53.573686 447 species avibase-C235A4D7 Gadwall Mareca strepera 90 United States US New York US-NY Queens US-NY-081 30.0 Flushing Meadows Corona Park--Queens Zoo L2851338 H 40.7451165 -73.8489014 2015-03-10 08:30:00 obsr1768532 S22397182 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295098049 2021-04-01 12:30:15.438381 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 28 United States US New York US-NY Herkimer US-NY-043 13.0 Summit Road L637295 P 43.1434922 -74.9968982 2015-02-05 10:44:00 obsr1000124 S21690713 Traveling P22 EBIRD 15.0 4.828 3.0 1 G1136349 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305903222 2021-04-01 10:58:47.067498 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 9 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant--East L870144 H 42.990146 -78.2094383 2015-03-28 11:39:00 obsr393804 S22564584 Traveling P22 EBIRD 65.0 4.989 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305821464 2021-11-09 21:50:48.44865 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-28 07:55:00 obsr1588136 S22558401 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296311478 2021-03-26 06:29:56.44369 6339 species avibase-8535345B Herring Gull Larus argentatus 14 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-12 15:50:00 obsr934639 S21787590 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318933644 2021-03-24 19:48:44.880783 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-12 08:00:00 obsr2240964 S23402806 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310741005 2015-04-17 18:57:42 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Saratoga US-NY-091 13.0 Hudson Crossing Park L1476458 H 43.1155261 -73.577908 2015-04-17 10:00:00 obsr907769 S22912970 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301558895 2021-03-19 16:43:17.120646 406 species avibase-27B2749A Wood Duck Aix sponsa 36 United States US New York US-NY Madison US-NY-053 28.0 Linda's feeders L3462891 P 42.7979513 -75.8119512 2015-03-07 10:00:00 obsr1160328 S22221868 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313704438 2021-11-09 21:30:06.280029 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Ulster US-NY-111 13.0 Weston Rd., swamp L1411814 H 41.7887897 -74.0242416 2015-04-26 11:40:00 obsr2842267 S23103580 Stationary P21 EBIRD 80.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324289609 2021-05-11 06:09:42.824668 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-29 09:30:00 obsr2883698 S23726555 Traveling P22 EBIRD 55.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312706799 2021-04-01 12:39:12.329364 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Otsego US-NY-077 13.0 Co Rd 53 - between Public Landing Rd & Mill Rd L1314730 P 42.8159393 -74.8607567 2015-04-24 15:50:00 obsr316199 S23042290 Incidental P20 EBIRD 3.0 0 G1234626 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310945869 2021-03-24 20:11:19.423282 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-18 10:48:00 obsr2756208 S22926020 Traveling P22 EBIRD 87.0 1.448 4.0 1 G1224261 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309161997 2021-03-26 06:52:34.887371 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-03-20 10:00:00 obsr2141910 S22804914 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294325909 2021-03-26 07:07:10.758746 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-01 08:59:00 obsr1893950 S21628128 Traveling P22 EBIRD 94.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309085920 2021-03-24 20:33:47.533911 30494 species avibase-240E3390 House Sparrow Passer domesticus 8 United States US New York US-NY Tompkins US-NY-109 13.0 Haber Ithaca Apartment L2127426 P 42.4862687 -76.4751273 2015-04-11 12:50:00 obsr869999 S22800005 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304450084 2015-03-21 17:16:04 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-21 obsr2841967 S22453567 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314268303 2015-04-30 08:10:32 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus X United States US New York US-NY Tompkins US-NY-109 28.0 Caroline Elementary L3565901 P 42.3930529 -76.3717067 2015-04-29 08:05:00 obsr1550810 S23139034 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322190983 2021-03-19 16:54:27.713469 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Montgomery US-NY-057 13.0 629 State Highway 161 L3554520 P 42.8835997 -74.2643339 2015-05-23 08:30:00 obsr286403 S23592198 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317840220 2021-04-01 11:24:19.637193 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-05-09 10:25:00 obsr1782363 S23342551 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319781381 2015-05-15 12:36:43 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Herkimer US-NY-043 13.0 Bronner Rd 1 L3577293 P 43.0806548 -74.8361421 2015-05-14 16:00:00 obsr592357 S23451814 Traveling P22 EBIRD 90.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310016312 2017-02-21 09:18:50 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Madison US-NY-053 13.0 Bush Rd., NY 31 to Oneida Lake L925356 H 43.1584863 -75.9301615 2015-04-13 10:08:00 obsr1167884 S22863011 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302998607 2021-03-24 19:35:34.045988 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-03-14 08:22:00 obsr502830 S22340261 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288966607 2021-04-01 12:32:15.282601 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 3 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-03 08:00:00 obsr352522 S21182176 Traveling P22 EBIRD 180.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320572043 2021-04-01 12:26:53.827486 406 species avibase-27B2749A Wood Duck Aix sponsa N 7 United States US New York US-NY Albany US-NY-001 28.0 Alcove Reservoir L721888 H 42.4798202 -73.9378595 2015-05-16 10:17:00 obsr2512689 S23493576 Stationary P21 EBIRD 29.0 2.0 1 G1276033 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309546590 2021-03-26 06:55:00.227271 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 4 United States US New York US-NY Ontario US-NY-069 13.0 Risser Rd. Swamp, Canandaigua L771877 H 42.9382814 -77.29738 2015-04-12 18:00:00 obsr171901 S22829605 Traveling P22 EBIRD 60.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314109358 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-04-29 06:00:00 obsr2233143 S23129051 Area P23 EBIRD 420.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308565461 2021-03-26 07:30:35.289997 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: Stewart Pk: taxi stop in car L365279 P 42.4612068 -76.5046692 2015-04-08 06:59:00 obsr2760150 S22762182 Traveling P22 EBIRD 34.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313719859 2015-04-28 06:53:39 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 4 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-26 06:00:00 obsr2716320 S23104636 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS419886581 2016-08-26 17:47:02 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-05-03 obsr2036618 S30832088 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288805447 2021-11-09 19:34:18.590596 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 6 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-01-03 15:00:00 obsr1665312 S21167619 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298703933 2021-03-24 20:06:25.370375 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Ontario US-NY-069 13.0 yard - 5030 Butler Rd. L824954 P 42.8530016 -77.2913074 2015-02-21 07:15:00 obsr983655 S21999943 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307183855 2022-03-05 22:03:50.715584 30494 species avibase-240E3390 House Sparrow Passer domesticus 14 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-03 09:30:00 obsr2219590 S22661105 Traveling P22 EBIRD 120.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310855455 2021-03-19 16:19:20.977326 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-18 07:39:00 obsr1603345 S22920440 Traveling P22 EBIRD 98.0 1.127 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303260549 2015-03-15 13:15:57 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-24-28 Sonia Ct L3346751 P 40.534685 -74.21896 2015-03-15 13:14:00 obsr1958124 S22360691 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324683720 2018-08-06 22:31:29 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Hamilton US-NY-041 14.0 Inlet, Screamen Eagle L3685122 P 43.75072 -74.79448 2015-05-30 17:04:00 obsr2937317 S23753399 Stationary P21 EBIRD 37.0 3.0 1 G1300399 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294915824 2021-03-26 07:30:35.289997 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 3 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-02-04 12:55:00 obsr2211210 S21675277 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318371485 2021-03-26 06:29:56.44369 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-10 06:00:00 obsr2449897 S23371094 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312084187 2015-04-22 13:47:39 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Broome US-NY-007 28.0 Edwards Hill Rd. L1396502 H 42.3326977 -76.0304532 2015-04-22 09:37:00 obsr879105 S22999037 Traveling P22 EBIRD 10.0 12.875 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305249661 2021-03-23 17:37:19.520785 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus X United States US New York US-NY Saratoga US-NY-091 13.0 Wrights Loop L691715 H 42.9902551 -73.6132237 2015-03-25 12:15:00 obsr634484 S22514462 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288819932 2021-03-30 19:29:33.633096 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Suffolk US-NY-103 30.0 Coopers Neck Pond L1314522 H 40.8665357 -72.4021339 2015-01-03 13:40:00 obsr1864342 S21170348 Stationary P21 EBIRD 12.0 2.0 1 G1093536 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324096142 2021-12-06 10:15:42.851681 622 species avibase-50566E50 Lesser Scaup Aythya affinis N X United States US New York US-NY Delaware US-NY-025 US-NY_866 28.0 steam mill road, masonville, ny L3053432 P 42.2075206 -75.3404188 2015-05-30 06:00:00 obsr159548 S23714016 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317196462 2021-03-19 16:44:35.607263 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-08 11:30:00 obsr2223307 S23305768 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322569251 2021-03-26 06:29:56.44369 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-24 14:37:00 obsr334398 S23613387 Traveling P22 EBIRD 90.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297195889 2021-04-01 11:15:31.646886 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-15 14:00:00 obsr1807494 S21866406 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1147439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317293664 2022-02-17 14:32:23.002448 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-08 15:30:00 obsr1801902 S23311235 Traveling P22 EBIRD 80.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351704 2021-03-26 07:07:10.758746 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 30 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-11 07:26:00 obsr1958124 S21292479 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307328438 2018-08-04 17:05:18 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 13 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Dam L160699 H 42.0864692 -76.8096739 2015-04-03 18:30:00 obsr1587816 S22671526 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319965032 2021-08-17 17:05:19.8684 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Essex US-NY-031 14.0 Shattuck Rd L2787791 P 43.8133487 -73.5017967 2015-05-15 18:43:00 obsr2693145 S23461605 Traveling P22 EBIRD 68.0 1.609 2.0 1 G1272390 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312171920 2021-03-26 06:12:17.833181 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus X United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot--Lighthouse L404931 H 42.4929459 -79.3538404 2015-04-22 10:45:00 obsr479109 S23004994 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289833428 2017-09-09 13:12:38 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - n. leg of West Trail (0.225km) L1364967 P 42.4785915 -76.4558458 2015-01-08 08:04:00 obsr2307843 S21250201 Traveling P22 EBIRD 10.0 0.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316593183 2018-08-04 17:15:03 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-06 16:44:00 obsr1154 S23272099 Traveling P22 EBIRD 103.0 1.931 2.0 1 G1255316 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289193001 2021-03-24 20:23:39.258075 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Suffolk US-NY-103 30.0 backyard L2589327 P 40.8425802 -72.5791168 2015-01-04 09:00:00 obsr2654038 S21199913 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305250031 2018-08-04 16:59:05 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-08 14:05:00 obsr606571 S22514387 Traveling P22 EBIRD 55.0 0.161 10.0 1 G1192119 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288799773 2021-04-01 12:14:19.266649 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Suffolk US-NY-103 Cedar Beach, Town of Brookhaven L834922 H 40.9648162 -73.039813 2015-01-03 11:10:00 obsr1488063 S21167118 Traveling P22 EBIRD 30.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312297700 2015-04-23 12:28:17 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 2 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Dryden-1369–1417 Daisy Hollow Rd L3584187 P 42.477577 -76.230289 2015-04-23 06:25:00 obsr1828453 S23013357 Stationary P21 EBIRD 11.0 2.0 1 G1232710 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295782251 2021-03-24 20:21:40.993321 20829 species avibase-B9B272F4 Common Raven Corvus corax 3 United States US New York US-NY Seneca US-NY-099 13.0 Cove L678244 P 42.6487254 -76.8698493 2015-02-09 obsr2731440 S21743654 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289102196 2015-01-04 17:19:18 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Erie US-NY-029 13.0 Gallagher Beach L1589749 P 42.842915 -78.859501 2015-01-04 15:00:00 obsr2096529 S21192949 Stationary P21 EBIRD 5.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315950785 2021-11-09 17:58:40.313796 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-04 06:00:00 obsr2862523 S23234375 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321729624 2018-08-06 22:30:44 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Iroquois NWR--Swallow Hollow Trail L771567 H 43.1254425 -78.3256102 2015-05-21 13:15:00 obsr2588479 S23563105 Traveling P22 EBIRD 83.0 3.219 2.0 1 G1281890 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296283770 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park /Hendr.Park L365070 P 40.6787341 -73.6936927 2015-02-12 09:00:00 obsr916370 S21783827 Traveling P22 EBIRD 135.0 5.955 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302673756 2021-03-24 21:06:05.39641 7200 species avibase-49D9148A Great Egret Ardea alba 2 United States US New York US-NY Onondaga US-NY-067 13.0 Old Erie Canal--Schaap Rd to MacDonald Rd L446332 P 43.073653 -76.4304256 2015-03-11 14:14:00 obsr2279567 S22314926 Traveling P22 EBIRD 65.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310750012 2021-04-01 11:15:31.646886 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus N 8 United States US New York US-NY Kings US-NY-047 30.0 23rd Street Backyards L3367258 P 40.6582107 -73.9907473 2015-04-17 17:36:00 obsr839844 S22913565 Stationary P21 EBIRD 104.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301287610 2021-03-24 20:33:47.533911 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-06 13:00:00 obsr184660 S22200496 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291481933 2022-02-17 14:32:23.002448 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-17 11:15:00 obsr454647 S21383953 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308164395 2022-02-13 06:32:05.759346 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 39 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-04-06 19:06:00 obsr1318356 S22731162 Traveling P22 EBIRD 63.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308125484 2021-04-01 10:45:00.916278 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-04-05 10:15:00 obsr2277801 S22728377 Historical P62 EBIRD 300.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320856652 2021-11-09 18:37:59.640362 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio 1 United States US New York US-NY Dutchess US-NY-027 28.0 Cooperstown Rd L2829093 P 41.68776 -73.61404 2015-05-16 05:00:00 obsr2343626 S23509936 Traveling P22 EBIRD 30.0 1.609 2.0 1 G1277160 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296701013 2015-02-14 11:30:52 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Nassau US-NY-059 Wantagh Park L632770 H 40.6430664 -73.5151809 2015-02-14 11:00:00 obsr547602 S21822324 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310535060 2018-08-04 17:09:24 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Hamilton US-NY-041 14.0 Stanton Road, Indian Lake, NY L2380943 P 43.774555 -74.256253 2015-04-16 08:15:00 obsr2177751 S22899273 Stationary P21 EBIRD 751.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309320908 2015-04-12 09:15:16 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-4192-4200 Victory Blvd L3557325 P 40.590567 -74.192623 2015-04-12 09:15:00 obsr1958124 S22815366 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293516378 2021-11-09 18:43:48.261605 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 SpackenKill Rd, near Alda Rd. L3321566 P 41.6554317 -73.8828421 2015-01-21 12:30:00 obsr2343626 S21564161 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300017344 2019-07-23 17:27:33 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-02-28 10:06:00 obsr502830 S22104941 Stationary P21 EBIRD 53.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311565623 2021-04-01 10:47:08.851048 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 6 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-20 08:00:00 obsr1826325 S22964389 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311976279 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-19 07:38:00 obsr756196 S22992078 Traveling P22 EBIRD 232.0 2.092 2.0 1 G1235663 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320538803 2015-05-17 13:27:11 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 9 United States US New York US-NY Allegany US-NY-003 28.0 Browns Marsh L2818761 P 42.1337153 -77.9047394 2015-05-17 07:45:00 obsr1210649 S23491783 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314350526 2015-05-04 09:26:53 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-29 18:25:00 obsr2206421 S23143602 Stationary P21 EBIRD 35.0 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS304693850 2021-04-01 11:15:31.646886 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-18 16:15:00 obsr2603801 S22471655 Traveling P22 EBIRD 60.0 4.023 2.0 1 G1188675 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS298514770 2021-04-28 05:22:52.046239 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park--Southwest L154031 H 40.593426 -73.92352 2015-02-19 09:15:00 obsr2603801 S21983577 Traveling P22 EBIRD 180.0 4.828 2.0 1 G1153318 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312013976 2021-11-15 03:06:58.889978 6874 species avibase-1725B07D Sooty Shearwater Ardenna grisea 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-22 06:10:00 obsr1135516 S22994644 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319633441 2018-08-06 22:29:52 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 06:30:00 obsr2348610 S23443086 Traveling P22 EBIRD 270.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299307388 2021-03-26 07:17:57.136956 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina X United States US New York US-NY Seneca US-NY-099 US-NY_764 13.0 NY:SEN:Ovid: CR-153 - Sheldrake Pt - Wyers Pt Rd: all lakefront L2514527 P 42.6638424 -76.6950417 2015-02-22 13:22:00 obsr2760150 S22050556 Traveling P22 EBIRD 81.0 6.26 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312959000 2015-08-02 20:45:19 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 5 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake Park L792637 H 42.7759994 -77.6113701 2015-04-25 10:00:00 obsr1962379 S23057568 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303767749 2015-03-26 21:41:48 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Oswego US-NY-075 13.0 River rapids L3495561 P 43.4518285 -76.5067506 2015-03-13 13:00:00 obsr1769635 S22400791 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309745810 2021-04-01 12:24:14.132004 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 NE of Ft Ed L2785662 P 43.288771 -73.52378 2015-04-13 09:00:00 obsr648176 S22844224 Traveling P22 EBIRD 145.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307908769 2015-04-06 03:10:27 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca-111 Auburn St L2297605 P 42.447424 -76.500851 2015-04-05 08:00:00 obsr2980107 S22713047 Stationary P21 EBIRD 660.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324746105 2015-06-03 01:04:04 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 F C1 F United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Huck Finn Rd L2372355 P 42.213703 -76.845144 2015-04-19 07:20:00 obsr1587816 S23757819 Traveling P22 EBIRD 27.0 0.306 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319870883 2018-12-16 01:32:18 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-15 09:00:00 obsr1991824 S23456572 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291899894 2021-03-30 19:29:33.633096 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Suffolk US-NY-103 US-NY_766 30.0 Mill Pond, Centerport L835842 H 40.8903365 -73.3713341 2015-01-19 10:00:00 obsr1488063 S21416121 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324203811 2018-08-06 22:31:33 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 42.0379x-78.8898 - May 31, 2015, 9:39 AM L3687037 P 42.037865 -78.889832 2015-05-31 09:39:00 obsr2588479 S23720913 Traveling P22 EBIRD 60.0 1.609 22.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871527 2021-03-26 07:56:20.588749 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-30 16:00:00 obsr2218212 S21672050 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307966388 2021-04-01 12:14:19.266649 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Oak Beach L267998 H 40.63923 -73.28832 2015-04-06 08:21:00 obsr564905 S22717059 Traveling P22 EBIRD 54.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313232944 2015-04-26 20:24:12 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Fuller Wetlands L1544410 H 42.4812919 -76.4510491 2015-04-26 15:30:00 obsr1005220 S23073825 Traveling P22 EBIRD 25.0 0.161 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289789301 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-03 10:10:00 obsr2196583 S21246604 Traveling P22 EBIRD 89.0 1.609 3.0 1 G1093766 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296108876 2015-02-11 11:23:31 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Warren US-NY-113 14.0 Gannett hill lodge L3353484 P 43.7137356 -74.1069245 2015-02-10 09:30:00 obsr2148612 S21769692 Incidental P20 EBIRD 10.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298480885 2021-03-23 16:39:03.255227 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Richmond US-NY-085 30.0 Lemon Creek, bridge at Hylan Blvd. L916052 H 40.517649 -74.2011237 2015-02-19 09:53:00 obsr1893950 S21980824 Traveling P22 EBIRD 5.0 0.322 2.0 1 G1153099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290044749 2017-07-23 17:17:56 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-01-09 16:13:00 obsr2914424 S21267505 Traveling P22 EBIRD 26.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319455870 2021-03-19 16:02:45.308962 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L195519 P 42.0961408 -76.0479164 2015-05-13 12:45:00 obsr1947568 S23432765 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288966598 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-03 08:00:00 obsr352522 S21182176 Traveling P22 EBIRD 180.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320665912 2015-05-17 18:49:07 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Columbia US-NY-021 14.0 Steepletop L3651110 P 42.3177808 -73.4431744 2015-05-17 08:00:00 obsr348210 S23498608 Traveling P22 EBIRD 180.0 2.414 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321240076 2021-11-15 03:06:58.889978 242 species avibase-D3A260BC Snow Goose Anser caerulescens 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-18 16:30:00 obsr2698180 S23533437 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317028150 2021-11-15 03:06:58.889978 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-07 16:15:00 obsr1659461 S23296662 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319785247 2018-08-06 22:29:59 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-15 08:16:00 obsr334398 S23452059 Traveling P22 EBIRD 26.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307944080 2021-03-23 17:00:13.087107 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-06 09:10:00 obsr1655171 S22715348 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314108825 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 08:00:00 obsr2319444 S23129015 Traveling P22 EBIRD 240.0 3.219 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288790688 2021-04-01 12:32:15.282601 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa (general) L2488723 P 40.6803777 -73.4734726 2015-01-03 07:34:00 obsr2394424 S21166374 Incidental P20 EBIRD 3.0 1 G1094197 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299409992 2021-03-19 16:44:35.607263 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 Erie Station Rd -- East of Middle Rd L3290135 P 43.0422336 -77.6395226 2015-02-24 15:07:00 obsr934639 S22057913 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307154198 2021-03-24 05:37:45.927792 27616 species avibase-D77E4B41 American Robin Turdus migratorius 21 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-03 11:09:00 obsr1603345 S22659133 Traveling P22 EBIRD 92.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295600222 2021-03-24 21:06:05.39641 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Onondaga US-NY-067 13.0 Home L1479128 P 43.1502997 -76.3703906 2015-02-08 12:45:00 obsr2172593 S21729947 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302716587 2015-03-12 20:17:23 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 Female, Adult (1) United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-03-11 09:30:00 obsr2812831 S22318438 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304161336 2021-03-26 07:20:31.408164 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point County Park L835192 H 41.1597479 -72.2347641 2015-03-19 09:50:00 obsr2633969 S22431547 Traveling P22 EBIRD 198.0 2.0 3.0 1 G1185506 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309556480 2021-03-19 16:27:31.421791 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 4 United States US New York US-NY Genesee US-NY-037 13.0 Darien Lakes SP L634562 H 42.9084744 -78.4283924 2015-04-12 08:30:00 obsr48167 S22830263 Traveling P22 EBIRD 75.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318482060 2022-02-04 06:14:13.892644 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-05-10 12:16:00 obsr1348614 S23377281 Traveling P22 EBIRD 6.0 0.322 2.0 1 G1265671 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289936856 2021-03-24 20:23:39.258075 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_839 Sage Blvd., Greenport L1356338 P 41.0793915 -72.3806858 2015-01-01 09:55:00 obsr2528068 S21258773 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294976395 2021-04-01 12:40:54.473014 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 25 United States US New York US-NY Saratoga US-NY-091 13.0 Route 67 (Saratoga county) L3339084 P 42.9749822 -74.0430021 2015-02-04 15:37:00 obsr1708031 S21680542 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305202893 2015-03-25 09:19:49 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-03-23 15:34:00 obsr2426404 S22510732 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309117250 2021-04-01 12:32:15.282601 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-11 07:00:00 obsr547602 S22801931 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313847274 2021-04-01 10:47:08.851048 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-04-28 06:45:00 obsr646558 S23112749 Traveling P22 EBIRD 25.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310298486 2021-03-19 15:59:05.496822 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 2 United States US New York US-NY Allegany US-NY-003 28.0 Van Der Linden Marsh L3519001 H 42.244147 -78.264549 2015-04-15 17:49:00 obsr955789 S22882431 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311564684 2015-04-20 12:12:43 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Nassau US-NY-059 Home L3383553 P 40.5851476 -73.7097645 2015-04-20 12:10:00 obsr2099053 S22964316 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313438005 2018-08-04 17:11:28 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Warren US-NY-113 14.0 Rogers Rock Campgound L799286 H 43.7930769 -73.4800172 2015-04-21 10:12:00 obsr2693145 S23087159 Traveling P22 EBIRD 109.0 0.805 2.0 1 G1239067 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320893315 2018-08-06 22:30:28 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 3 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-18 07:30:00 obsr1830659 S23511085 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301623707 2021-03-26 07:56:20.588749 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Nassau US-NY-059 30.0 US-NY-Syosset-15-27 School House Ln L3463737 P 40.832926 -73.501903 2015-03-08 10:39:00 obsr1781960 S22226763 Stationary P21 EBIRD 15.0 1.0 1 G1170084 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302116391 2021-03-30 19:29:33.633096 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Lower Peconic River Access L1399354 P 40.9139422 -72.6877344 2015-03-09 12:40:00 obsr2528068 S22265286 Stationary P21 EBIRD 10.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS307059499 2021-03-26 06:07:45.516082 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-02 13:30:00 obsr1917973 S22652135 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307234265 2021-11-09 21:50:48.44865 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-03 09:30:00 obsr237150 S22664760 Traveling P22 EBIRD 120.0 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323676712 2018-08-06 22:31:12 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 4 United States US New York US-NY Essex US-NY-031 14.0 Schroon river L3680867 P 43.897911 -73.744598 2015-05-26 14:59:00 obsr2693145 S23685051 Traveling P22 EBIRD 120.0 6.437 2.0 1 G1294405 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304371308 2021-03-23 17:41:09.545385 5922 species avibase-06B9BD24 Sanderling Calidris alba 1 United States US New York US-NY Westchester US-NY-119 30.0 Katonah, 10 Meadow Lane L3491451 P 41.25894 -73.69483 2015-03-21 11:22:00 obsr265800 S22447953 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316412891 2021-03-26 07:56:20.588749 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-01 08:30:00 obsr548996 S23261474 Traveling P22 EBIRD 120.0 3.219 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316062450 2021-03-19 16:29:59.503892 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Jefferson US-NY-045 US-NY_778 13.0 Perch River WMA L253293 H 44.0861979 -75.9664464 2015-05-05 09:00:00 obsr490751 S23241200 Traveling P22 EBIRD 90.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298725564 2018-08-04 16:57:56 303 species avibase-B59E1863 Canada Goose Branta canadensis 30 United States US New York US-NY Yates US-NY-123 13.0 Long Point (Seneca Lake) L489177 H 42.6566869 -76.9104767 2015-02-21 10:21:00 obsr2871406 S22002012 Stationary P21 EBIRD 24.0 2.0 1 G1154798 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307744208 2021-04-01 12:14:19.266649 483 species avibase-85625D75 Mallard Anas platyrhynchos 9 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-05 07:35:00 obsr1137265 S22700703 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312918861 2021-04-01 11:49:53.573686 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana N 10 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-25 11:30:00 obsr599682 S23055067 International Shorebird Survey (ISS) P74 EBIRD 240.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310227970 2018-08-04 17:09:16 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Armitage Road, fields and impoundments (Seneca Co.) L366217 H 43.0200861 -76.7794991 2015-04-15 10:50:00 obsr983655 S22877664 Traveling P22 EBIRD 15.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298639383 2021-04-01 11:49:53.573686 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus N 2 United States US New York US-NY Queens US-NY-081 30.0 Brookville Park L2687495 H 40.6629513 -73.7429361 2015-02-18 15:42:00 obsr1982614 S21993930 Traveling P22 EBIRD 180.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323447941 2018-08-06 22:31:04 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Delaware US-NY-025 28.0 13783 Hancock L189611 PC 41.95415 -75.2823 2015-05-25 06:33:00 obsr1032565 S23669703 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310311661 2021-03-19 16:08:39.161312 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-04-15 17:43:00 obsr2497657 S22883384 Traveling P22 EBIRD 161.0 5.633 2.0 1 G1221320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324328747 2021-03-22 08:58:29.008072 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Blockhouse L1148924 H 40.79868 -73.9562829 2015-05-31 11:35:00 obsr1706920 S23729068 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315694929 2021-04-01 12:32:15.282601 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris N 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-04 07:45:00 obsr1102914 S23220293 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304622669 2018-08-04 17:02:27 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-22 12:44:00 obsr1764243 S22466284 Traveling P22 EBIRD 27.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292918476 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 21 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-24 07:25:00 obsr259298 S21517023 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315069345 2015-05-02 19:46:06 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus-Back Woods L698393 P 42.6703198 -77.6733398 2015-05-02 18:42:00 obsr72341 S23186410 Traveling P22 EBIRD 43.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320491113 2018-08-06 22:30:06 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Columbia US-NY-021 14.0 Drowned Lands Swamp Conservation Area L2704928 H 42.0536902 -73.5669422 2015-05-16 07:55:00 obsr798742 S23489395 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307410830 2021-04-01 11:47:43.260314 26109 species avibase-BAC33609 Brown Creeper Certhia americana 25 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-03 12:00:00 obsr1633923 S22677768 Stationary P21 EBIRD 340.0 2.0 1 G1203977 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306465374 2021-11-09 21:57:19.605717 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 5 United States US New York US-NY Ulster US-NY-111 13.0 Rondout-Kingston L3465160 P 41.91695 -73.98631 2015-03-28 09:33:00 obsr1482758 S22607254 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294854918 2021-03-24 20:33:47.533911 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Road (Sanctuary) L1011608 P 42.4772168 -76.4504993 2015-02-04 09:44:00 obsr1062070 S21670591 Traveling P22 EBIRD 29.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321763155 2021-11-09 18:47:56.68381 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 1 United States US New York US-NY Dutchess US-NY-027 14.0 HVRT between SHaron Station Rd. & Coleman Station Rd. L3663072 P 41.8887964 -73.5196924 2015-05-21 16:09:00 obsr1442681 S23565288 Traveling P22 EBIRD 51.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307555762 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-04 06:36:00 obsr2404047 S22687656 Traveling P22 EBIRD 370.0 6.437 2.0 1 G1205525 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320262447 2021-03-31 04:01:10.517395 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-16 15:14:00 obsr2404047 S23477331 Traveling P22 EBIRD 174.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310326930 2021-03-30 19:22:51.561415 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr717528 S22884518 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307811262 2018-10-06 16:50:39 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--East Rd. L99686 H 43.009646 -76.7582003 2015-04-02 13:20:00 obsr1783124 S22705532 Traveling P22 EBIRD 20.0 3.219 2.0 1 G1206134 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305979530 2021-03-31 04:03:32.881251 33267 spuh avibase-62BC6EC7 warbler sp. (Parulidae sp.) Parulidae sp. 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-03-29 09:09:00 obsr1958124 S22570140 Rusty Blackbird Spring Migration Blitz P41 EBIRD 35.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309683874 2017-01-14 17:35:43 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Celoron Boat Launch, Chautauqua Lake L200467 H 42.1113404 -79.2830005 2015-04-04 10:45:00 obsr2910282 S22839392 Stationary P21 EBIRD 20.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310415628 2021-03-24 20:58:04.794277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-15 07:48:00 obsr316199 S22890633 Area P23 EBIRD 82.0 2.59 2.0 1 G1221848 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302835871 2018-08-04 16:59:49 32578 species avibase-000482C9 Orchard Oriole Icterus spurius 1 United States US New York US-NY Clinton US-NY-019 13.0 Cumberland Head L547815 P 44.7233202 -73.3996582 2015-03-13 09:30:00 obsr884584 S22327335 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288139457 2021-04-01 11:30:42.037277 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 4 United States US New York US-NY New York US-NY-061 30.0 Chelsea Waterside Park L2957204 H 40.7494879 -74.0074303 2015-01-01 10:15:00 obsr1488063 S21112393 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288186206 2021-04-01 11:30:42.037277 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata N 2 United States US New York US-NY New York US-NY-061 30.0 W 4th / W 11th St L3253316 P 40.736174 -74.00353 2015-01-01 13:20:00 obsr431494 S21116324 Traveling P22 EBIRD 27.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304413768 2021-04-01 12:18:57.910168 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Campus L294523 H 42.4474972 -76.482475 2015-03-21 11:40:00 obsr1655171 S22450992 Traveling P22 EBIRD 15.0 3.219 2.0 1 G1186935 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313645466 2021-03-19 16:19:20.977326 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Erie US-NY-029 13.0 Emery County Park L681419 H 42.7146691 -78.5970926 2015-04-27 17:10:00 obsr916033 S23099831 Traveling P22 EBIRD 84.0 0.402 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296063093 2021-04-01 12:35:52.669792 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica N 30 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-10 15:00:00 obsr1633923 S21766203 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300251540 2021-03-19 16:14:11.035882 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Cortland US-NY-023 28.0 Greek Peak to Rte 392 County Line - Virgil L2125187 P 42.5104506 -76.1946487 2015-02-17 07:00:00 obsr931232 S22124174 Traveling P22 EBIRD 10.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300001635 2022-02-18 10:47:29.953615 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 2 S C2 S United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-02-28 07:13:00 obsr1062070 S22103419 Stationary P21 EBIRD 133.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301965687 2021-04-01 12:32:15.282601 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-08 16:00:00 obsr1781960 S22253621 Traveling P22 EBIRD 150.0 3.219 4.0 1 G1171966 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302034755 2021-03-30 19:40:59.354574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 9 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-09 15:10:00 obsr2224244 S22258914 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303897801 2021-03-24 20:56:44.139453 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-03-17 11:30:00 obsr2475075 S22411279 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317200486 2021-12-24 11:02:14.483178 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-08 11:40:00 obsr334398 S23305948 Traveling P22 EBIRD 85.0 1.77 2.0 1 G1257587 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307918048 2018-08-04 17:05:31 11371 species avibase-75600969 Northern Flicker Colaptes auratus 3 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Ridge Conservation Area--Randall Pond L2620481 H 40.8963874 -72.892051 2015-04-05 07:25:00 obsr1954215 S22713592 Traveling P22 EBIRD 45.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306268395 2021-03-26 08:12:51.35913 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 600 United States US New York US-NY Schuyler US-NY-097 13.0 Seneca Harbor Park L150677 H 42.383846 -76.873375 2015-03-30 10:14:00 obsr1092576 S22591750 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310208330 2018-08-04 17:09:17 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Essex US-NY-031 13.0 Westport Boat Launch L479943 H 44.1887912 -73.4342089 2015-04-15 12:35:00 obsr2769235 S22876470 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292497681 2021-03-26 07:19:24.261425 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 8 United States US New York US-NY Steuben US-NY-101 28.0 pamandpaul-home L499201 P 42.29185 -77.3240089 2015-01-21 08:00:00 obsr2696253 S21483677 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293491849 2015-01-26 23:47:14 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 3 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-26 07:44:00 obsr1334267 S21562288 Traveling P22 EBIRD 21.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310195555 2021-04-01 11:30:42.037277 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-13 09:00:00 obsr2319444 S22875664 Traveling P22 EBIRD 210.0 8.047 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302044545 2021-11-09 18:28:50.133002 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 10 United States US New York US-NY Dutchess US-NY-027 13.0 Home, Millbrook, NY L2119013 P 41.7923452 -73.6592703 2015-02-26 07:00:00 obsr1062217 S22259655 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304677907 2021-03-26 06:19:47.07548 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 9 United States US New York US-NY Essex US-NY-031 13.0 Tin Pan Alley L3437247 P 43.834301 -73.42659 2015-03-22 16:25:00 obsr2693145 S22470510 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323174526 2021-11-09 18:47:20.196792 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm, Poughkeepsie, NY L3628244 P 41.6775787 -73.8973314 2015-05-04 06:30:00 obsr2786327 S23651412 Traveling P22 EBIRD 180.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288788338 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-01-03 00:05:00 obsr1349960 S21166149 Traveling P22 EBIRD 155.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303526626 2021-03-30 19:29:33.633096 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 20 United States US New York US-NY Suffolk US-NY-103 30.0 East Hampton L195530 T 40.9634 -72.18482 2015-02-07 14:36:00 obsr1987335 S22382418 Stationary P21 EBIRD 2.0 2.0 1 G1182401 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313099219 2021-04-01 10:53:25.818871 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Cortland US-NY-023 28.0 Cortland County L3388068 P 42.749705 -76.137767 2015-04-12 08:56:00 obsr2955569 S23066074 Incidental P20 EBIRD 3.0 1 G1225656 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313281720 2021-04-01 12:45:19.712958 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve--Swan Lake area L2724297 H 41.1098093 -73.8352114 2015-04-26 08:00:00 obsr1460601 S23076869 Traveling P22 EBIRD 150.0 5.633 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302849381 2015-12-18 08:59:19 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Wyoming US-NY-121 28.0 Rose Acres Audubon Preserve L160969 H 42.640488 -78.34919 2015-03-13 11:01:00 obsr558077 S22328353 Traveling P22 EBIRD 56.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292828300 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 170 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-23 13:14:00 obsr1516787 S21509733 Traveling P22 EBIRD 150.0 4.249 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314178897 2021-03-30 12:05:58.533651 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 2 United States US New York US-NY Suffolk US-NY-103 30.0 Lake Capri L1133165 H 40.6961927 -73.3003521 2015-04-29 18:00:00 obsr1137265 S23133326 Incidental P20 EBIRD 2.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312898404 2021-11-15 03:06:58.889978 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-25 14:15:00 obsr2072398 S23053876 Traveling P22 EBIRD 45.0 2.414 2.0 1 G1235501 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302109409 2021-04-01 11:30:42.037277 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia N 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-07 15:19:00 obsr924076 S22264811 Traveling P22 EBIRD 164.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311595848 2021-03-30 19:22:51.561415 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-18 09:00:00 obsr2233270 S22966900 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312349308 2021-03-19 16:08:39.161312 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 30 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Dunkirk-5225-5347 County Rd 73 L3585053 P 42.446087 -79.401487 2015-04-23 14:29:00 obsr2588479 S23016879 Stationary P21 EBIRD 43.0 2.0 1 G1233134 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307838164 2021-11-09 21:35:18.646328 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-05 18:00:00 obsr1588136 S22707482 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321294882 2021-03-24 19:35:34.045988 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-19 08:38:00 obsr2071643 S23536628 Traveling P22 EBIRD 100.0 1.931 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295482951 2018-08-04 16:55:48 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail East Woods L2372368 P 42.210721 -76.837918 2015-02-07 11:33:00 obsr1587816 S21720763 Traveling P22 EBIRD 88.0 1.448 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293824586 2021-03-23 16:39:03.255227 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-29 10:12:00 obsr1958124 S21588615 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293898692 2021-04-01 11:15:31.646886 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Kings US-NY-047 Coney Island Beach--35th St. Overlook L1373631 H 40.5717813 -74.0006958 2015-01-29 00:10:00 obsr2363365 S21594611 Traveling P22 EBIRD 50.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321191486 2021-03-19 16:02:45.308962 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L195519 P 42.0961408 -76.0479164 2015-05-19 09:00:00 obsr1947568 S23530427 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310455182 2019-11-29 20:36:25 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 NY:SEN:Tyre: East Rd: bend L2309579 P 43.0077163 -76.7584142 2015-04-11 17:26:00 obsr2760150 S22893260 Traveling P22 EBIRD 46.0 1.287 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322056284 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-21 06:50:00 obsr334398 S23584038 Traveling P22 EBIRD 109.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323999922 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-30 06:07:00 obsr150415 S23707983 Traveling P22 EBIRD 175.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295810244 2021-04-01 11:54:40.172593 286 species avibase-3163ED86 Barnacle Goose Branta leucopsis 8 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-09 14:22:00 obsr1958124 S21745832 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310119769 2021-03-26 08:13:27.160698 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 2 United States US New York US-NY Tioga US-NY-107 28.0 Lockheed Martin Pond L2347076 H 42.097235 -76.221474 2015-04-14 07:47:00 obsr1318356 S22870494 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313973282 2015-04-29 02:48:25 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Schuyler US-NY-097 US-NY_845 13.0 Finger Lakes NF--Teeter Pond Area L940987 H 42.5426153 -76.7982316 2015-04-28 11:45:00 obsr2260025 S23120646 Traveling P22 EBIRD 90.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307179096 2021-03-23 17:32:20.03109 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-03 11:14:00 obsr2224244 S22660797 Stationary P21 EBIRD 167.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306098919 2021-11-09 21:50:48.44865 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-29 11:07:00 obsr119187 S22578761 Traveling P22 EBIRD 49.0 0.483 3.0 1 G1196538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310239914 2021-03-26 06:29:56.44369 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-04-15 08:15:00 obsr1962295 S22878460 Traveling P22 EBIRD 45.0 0.483 2.0 1 G1220952 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296816097 2021-04-01 12:32:15.282601 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-14 08:30:00 obsr2207991 S21832704 Traveling P22 EBIRD 270.0 8.047 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315317568 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 06:50:00 obsr1146149 S23199870 Traveling P22 EBIRD 240.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298467822 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-02-19 10:30:00 obsr2534001 S21979835 Traveling P22 EBIRD 45.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313655166 2021-11-15 03:06:58.889978 406 species avibase-27B2749A Wood Duck Aix sponsa 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-27 16:00:00 obsr2277801 S23100467 Historical P62 EBIRD 165.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320614817 2021-04-01 11:15:31.646886 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 26 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-17 07:15:00 obsr2883698 S23495817 Traveling P22 EBIRD 285.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309665387 2021-04-01 11:42:50.317679 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 6 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-13 06:59:00 obsr666964 S22837398 Stationary P21 EBIRD 80.0 1.0 1 G1217869 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308319138 2018-08-04 17:08:01 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 West Corners Marsh L1513804 H 42.1169195 -76.0743913 2015-04-07 17:22:00 obsr1764243 S22743190 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319526206 2021-11-15 03:06:58.889978 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 15:30:00 obsr1289811 S23437048 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318645351 2021-03-31 04:01:57.961467 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 Honeoye Falls Custom BrewCrafters Pond L900936 H 42.9513184 -77.6043534 2015-05-11 14:53:00 obsr2595828 S23386042 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314165273 2021-03-24 19:35:34.045988 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Erie US-NY-029 13.0 Birdsong Parklands L1352334 H 42.7530261 -78.7214375 2015-04-29 15:45:00 obsr916033 S23132446 Traveling P22 EBIRD 99.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318420163 2022-02-17 14:32:23.002448 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-09 08:30:00 obsr1605975 S23373738 Traveling P22 EBIRD 90.0 1.609 3.0 1 G1260060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308833028 2021-03-26 07:30:35.289997 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-10 10:17:00 obsr1062070 S22782564 Traveling P22 EBIRD 56.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294148422 2021-03-24 20:23:39.258075 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-01-31 13:23:00 obsr2485753 S21614120 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313525881 2020-05-16 18:08:13 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Otsego US-NY-077 28.0 Spring St. L1941350 P 42.4535841 -75.0682148 2015-04-27 09:50:00 obsr1452192 S23092353 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310596201 2021-03-19 16:10:30.527219 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 2 United States US New York US-NY Chemung US-NY-015 28.0 Bottchers Landing L143559 H 42.1246158 -76.951613 2015-04-17 07:29:00 obsr1092576 S22903405 Traveling P22 EBIRD 7.0 0.322 3.0 1 G1222628 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312621335 2021-04-07 20:48:00.906231 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-24 09:45:00 obsr2862769 S23036496 Traveling P22 EBIRD 135.0 11.265 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310158352 2021-03-24 20:53:39.352228 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-04-14 obsr1591201 S22873125 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307665257 2022-02-18 10:47:29.953615 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-05 06:57:00 obsr1062070 S22695240 Stationary P21 EBIRD 201.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320229469 2018-08-04 17:27:37 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Clay Pond WMA L745270 H 42.1168638 -79.1736603 2015-05-16 15:55:00 obsr1792012 S23475684 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309964747 2021-03-24 21:06:05.39641 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Onondaga US-NY-067 13.0 Pratts Falls County Park L271399 H 42.9309454 -75.995262 2015-04-14 08:00:00 obsr660214 S22859509 Traveling P22 EBIRD 75.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309486958 2021-03-23 16:52:36.900075 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 60 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Road L1297365 P 40.8364114 -72.5046158 2015-04-12 08:30:00 obsr2692002 S22825456 Traveling P22 EBIRD 120.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311435684 2021-04-01 11:15:31.646886 456 species avibase-D201EB72 American Wigeon Mareca americana N 11 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 13:00:00 obsr2319444 S22956182 Traveling P22 EBIRD 180.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298913990 2021-03-26 06:09:25.361188 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 5 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-02-22 07:10:00 obsr879105 S22017248 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317082264 2021-03-26 07:46:52.994574 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-05-06 16:39:00 obsr119187 S23299820 Stationary P21 EBIRD 120.0 2.0 1 G1257076 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288967472 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Nassau US-NY-059 30.0 Tackapausha Museum and Preserve L617756 H 40.6685464 -73.482399 2015-01-03 12:00:00 obsr352522 S21182254 Traveling P22 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318556344 2021-03-19 16:44:35.607263 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-11 09:30:00 obsr2223307 S23381156 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319555420 2021-04-01 12:31:09.823741 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus 1 United States US New York US-NY Livingston US-NY-051 13.0 PFA South Caledonia route L1168673 P 42.9306621 -77.8268051 2015-05-14 05:25:00 obsr1060479 S23438769 Traveling P22 EBIRD 84.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312653831 2021-04-01 11:30:42.037277 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 09:00:00 obsr2319444 S23038629 Traveling P22 EBIRD 180.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314176735 2021-04-01 11:54:40.172593 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-04-29 18:30:00 obsr1958124 S23133176 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294149103 2022-01-10 15:06:48.73013 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Kings US-NY-047 Verrazano Bridge Scenic View (N of bridge) L12657524 H 40.6117722 -74.0370814 2015-01-31 09:03:00 obsr1189028 S21614173 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305577541 2021-03-24 20:11:57.676649 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-26 08:32:00 obsr2262082 S22539975 Stationary P21 EBIRD 70.0 2.0 1 G1194042 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316553198 2021-12-09 18:39:29.406793 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-06 12:45:00 obsr317968 S23269698 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305837599 2022-02-17 14:32:23.002448 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-28 15:50:00 obsr152435 S22559548 Traveling P22 EBIRD 48.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309349327 2021-11-09 21:05:40.160216 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia X United States US New York US-NY Rockland US-NY-087 28.0 US-NY-Sloatsburg-133 Orange Tpke L3557570 P 41.163788 -74.19245 2015-04-12 10:21:00 obsr1092576 S22817128 Traveling P22 EBIRD 8.0 0.805 2.0 1 G1216695 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316906959 2018-08-04 17:15:07 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 10 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-07 07:30:00 obsr2843748 S23289558 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305227591 2022-03-05 22:03:50.715584 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-25 08:30:00 obsr2219590 S22512698 Traveling P22 EBIRD 180.0 8.047 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321753850 2021-03-26 07:56:20.588749 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park L693342 P 40.6618894 -73.719635 2015-05-20 15:00:00 obsr2505956 S23564706 Rusty Blackbird Spring Migration Blitz P41 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312448818 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-23 15:00:00 obsr30103 S23023810 Traveling P22 EBIRD 135.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS867133913 2020-02-19 09:05:51 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-18 12:30:00 obsr2299442 S64733260 Historical P62 EBIRD 2.0 1 G4997849 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309676393 2021-04-01 12:35:52.669792 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Onondaga US-NY-067 13.0 US-NY-Fayetteville-125 Feeder St L3499531 P 43.035063 -76.01239 2015-04-13 08:17:00 obsr1149420 S22838881 Traveling P22 EBIRD 83.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316117880 2017-11-28 11:58:51 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1410 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Main Pool L99388 H 42.9796604 -76.7437077 2015-03-31 07:28:00 obsr533086 S23244181 International Shorebird Survey (ISS) P74 EBIRD 88.0 4.828 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290870317 2021-03-26 06:29:56.44369 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-13 16:56:00 obsr934639 S21334378 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298857046 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 14 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-02-21 10:25:00 obsr150415 S22012627 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295988962 2021-03-26 07:07:10.758746 303 species avibase-B59E1863 Canada Goose Branta canadensis 8 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-10 15:00:00 obsr1958124 S21760199 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319216797 2021-04-01 11:30:42.037277 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L3369812 P 40.8729288 -73.923912 2015-05-13 07:45:00 obsr1406422 S23419286 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316681522 2021-03-30 19:13:38.458673 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-06 18:43:00 obsr334398 S23277147 Traveling P22 EBIRD 40.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312547944 2021-03-26 07:53:57.664705 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Livingston US-NY-051 13.0 Twin Cedars Environmental Area (DEC pond), Avon L800055 H 42.9002384 -77.6689625 2015-04-24 12:47:00 obsr1060479 S23031086 Traveling P22 EBIRD 43.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306971210 2021-03-26 07:30:35.289997 303 species avibase-B59E1863 Canada Goose Branta canadensis 8 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-02 08:25:00 obsr620377 S22645248 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291151088 2018-08-04 16:53:19 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 2 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-15 07:30:00 obsr2143830 S21356962 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320271493 2018-11-16 19:51:06 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-16 10:00:00 obsr1229221 S23477780 Traveling P22 EBIRD 120.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310959359 2021-04-01 11:30:42.037277 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia N 6 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-17 14:00:00 obsr423515 S22926961 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293386780 2017-08-16 16:27:15 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-25 17:35:00 obsr2505956 S21553402 Traveling P22 EBIRD 75.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288244143 2021-04-01 12:18:57.910168 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Nate's Patch--Bluegrass to Hanshaw to Freese L1006570 P 42.4655757 -76.4526987 2015-01-01 13:03:00 obsr1062070 S21121293 Traveling P22 EBIRD 222.0 5.794 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305248815 2021-04-01 12:40:54.473014 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus X United States US New York US-NY Saratoga US-NY-091 13.0 Stillwater L196899 T 42.93838 -73.65316 2015-03-25 11:25:00 obsr634484 S22514400 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292218162 2021-04-01 11:49:53.573686 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 29 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-01-20 07:20:00 obsr187432 S21440920 Traveling P22 EBIRD 200.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305228667 2018-08-04 17:02:51 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 62 United States US New York US-NY Columbia US-NY-021 13.0 Neiber Swamp L2451445 P 42.1474963 -73.7463284 2015-03-25 12:15:00 obsr481595 S22512774 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317743780 2021-03-26 06:38:32.090082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Montgomery US-NY-057 13.0 Fort Johnson (village) L474793 P 42.9614477 -74.240799 2015-05-09 10:45:00 obsr1187325 S23337416 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297583052 2021-03-26 06:52:34.887371 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 12 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-01-25 10:00:00 obsr2141910 S21901057 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303653839 2021-03-30 19:03:54.667077 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-07 10:10:00 obsr319738 S22392065 Stationary P21 EBIRD 95.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294108262 2021-03-26 07:17:57.136956 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Seneca US-NY-099 13.0 Cayuga Lake, as seen from CR 141 (destroyed) L1072574 H 42.6359242 -76.6912598 2015-01-31 09:10:00 obsr1092576 S21610743 Stationary P21 EBIRD 6.0 2.0 1 G1130674 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290862556 2016-10-10 10:35:41 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 06:45:00 obsr1982614 S21333695 Traveling P22 EBIRD 75.0 18.99 44.0 1 G1108327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312971347 2021-11-09 21:22:28.893225 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Ulster US-NY-111 13.0 Falling Waters Preserve L1236834 H 42.0541799 -73.9394009 2015-04-25 11:27:00 obsr2862523 S23058296 Traveling P22 EBIRD 68.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303574464 2021-04-26 04:57:02.963704 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-16 08:45:00 obsr2363365 S22385946 Traveling P22 EBIRD 352.0 3.219 2.0 1 G1182621 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289976140 2021-11-09 22:39:08.424847 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Sullivan US-NY-105 28.0 Duck Harbor Pond CBC - NY L2516210 P 41.7898387 -75.0069237 2015-01-04 14:20:00 obsr913595 S21261790 Traveling P22 EBIRD 70.0 29.612 4.0 1 G1101909 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296510172 2021-03-26 07:52:59.845315 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-12 09:10:00 obsr1000124 S21805076 Area P23 EBIRD 80.0 2.59 2.0 1 G1144858 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310877023 2018-08-04 17:09:37 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-18 07:30:00 obsr2161273 S22921870 Traveling P22 EBIRD 195.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300962975 2021-03-22 09:17:32.016297 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-03-04 13:24:00 obsr1640315 S22176468 Stationary P21 EBIRD 180.0 2.0 1 G1166779 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310568638 2021-11-09 18:32:20.227374 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Dutchess US-NY-027 13.0 2122 New Hackensack Road, Poughkeepsie, New York, US (41.66, -73.874) L233101 P 41.6600962 -73.8740462 2015-04-16 12:15:00 obsr842638 S22901503 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290682956 2020-01-31 18:57:31 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-01-11 10:24:00 obsr67057 S21319364 Stationary P21 EBIRD 4.0 12.0 1 G1105490 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305865312 2021-04-01 11:15:31.646886 279 species avibase-3E04020B Brant Branta bernicla N 2 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-03-28 12:25:00 obsr41879 S22561562 Traveling P22 EBIRD 110.0 2.012 11.0 1 G1195436 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304419455 2022-03-05 22:03:50.715584 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-21 08:00:00 obsr444155 S22451373 Traveling P22 EBIRD 210.0 8.047 18.0 1 G1187029 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298186657 2021-04-01 10:55:39.308231 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 5 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-02-18 08:38:00 obsr502830 S21954878 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322336477 2015-05-23 20:23:30 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-19 07:55:00 obsr2693145 S23600194 Traveling P22 EBIRD 250.0 1.609 4.0 1 G1286335 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304504202 2021-04-01 11:30:42.037277 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 18 H C2 H United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-21 14:29:00 obsr924076 S22457649 Traveling P22 EBIRD 326.0 8.047 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS315762121 2017-12-21 12:25:41 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Columbia US-NY-021 13.0 Olana State Historic Site L357372 H 42.2183005 -73.8287207 2015-05-04 10:00:00 obsr481595 S23223944 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320459992 2021-03-19 16:08:39.161312 631 spuh avibase-2243C710 Aythya sp. Aythya sp. 5 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Silver Creek-2282 Lake Rd L3649562 P 42.539419 -79.213697 2015-05-17 08:54:00 obsr916033 S23487776 Traveling P22 EBIRD 47.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294764460 2021-03-26 07:07:10.758746 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-03 16:08:00 obsr1958124 S21663265 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295950377 2015-02-10 11:03:22 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Vale of Cashmere L1149386 H 40.6690561 -73.9683616 2015-02-10 07:00:00 obsr2476180 S21757405 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308923511 2021-03-23 17:00:13.087107 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-10 18:02:00 obsr1696616 S22788896 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310473194 2021-03-26 06:55:00.227271 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-04-16 obsr1338126 S22894582 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293877741 2021-04-01 12:32:15.282601 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park /Hendr.Park L365070 P 40.6787341 -73.6936927 2015-01-29 13:45:00 obsr916370 S21593064 Traveling P22 EBIRD 75.0 3.38 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319175058 2018-08-04 17:14:39 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Essex US-NY-031 14.0 Hardy Rd L3639677 P 44.3847593 -73.7889004 2015-05-04 05:45:00 obsr1626631 S23416724 Traveling P22 EBIRD 90.0 0.161 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320505503 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N X United States US New York US-NY Kings US-NY-047 Owls Head Park L304833 H 40.6403687 -74.0322153 2015-05-17 08:30:00 obsr2078092 S23490176 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303060334 2021-03-26 06:07:26.162322 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 1 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River, Riverwalk Plaza L3479883 H 42.1255097 -77.961348 2015-03-14 10:52:00 obsr1310178 S22345376 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293262204 2019-07-23 17:27:12 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Riverside Park L3318394 P 42.9527009 -78.9088753 2015-01-25 12:30:00 obsr2871264 S21543658 Stationary P21 EBIRD 60.0 15.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312547372 2021-04-01 12:40:54.473014 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 4 United States US New York US-NY Saratoga US-NY-091 13.0 Ketchums L2786608 P 43.010586 -73.694308 2015-04-24 09:04:00 obsr648176 S23031040 Stationary P21 EBIRD 274.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304513493 2021-03-26 07:07:10.758746 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-21 16:49:00 obsr1032565 S22458415 Traveling P22 EBIRD 138.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311904256 2015-04-21 17:53:46 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Dubois Cottage (SbR) L2994397 P 42.4848288 -76.5484959 2015-04-20 09:15:00 obsr2867163 S22987268 Traveling P22 EBIRD 30.0 0.306 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295369894 2021-04-28 05:26:15.958627 27616 species avibase-D77E4B41 American Robin Turdus migratorius 10 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-07 09:02:00 obsr2404047 S21711694 Traveling P22 EBIRD 329.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318587472 2021-03-26 07:56:20.588749 31268 issf avibase-95F9C840 Purple Finch Haemorhous purpureus Purple Finch (Eastern) Haemorhous purpureus purpureus 4 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-11 08:15:00 obsr247620 S23382780 Traveling P22 EBIRD 70.0 2.012 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135063 2021-03-26 07:56:20.588749 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 5 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-22 16:00:00 obsr2218212 S23589154 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307641055 2021-03-23 17:18:00.959502 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Albany US-NY-001 13.0 My Yard & lower Barent Winne Rd. L1275103 P 42.5497407 -73.7620354 2015-04-05 07:34:00 obsr1154 S22693495 Traveling P22 EBIRD 25.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291140620 2015-01-15 22:39:28 6616 species avibase-7E022378 Common Loon Gavia immer 3 United States US New York US-NY Franklin US-NY-033 14.0 US-NY-Saranac Lake-35 James St L2839009 P 44.331237 -74.139357 2015-01-15 14:10:00 obsr2630526 S21356108 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319547942 2021-04-01 10:52:54.724403 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Columbia US-NY-021 13.0 Gale Hill Rd and Hand Hollow East Chatham NY L3625199 P 42.479352 -73.495573 2015-05-14 07:15:00 obsr570335 S23438338 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291109322 2021-03-30 19:39:10.250398 30494 species avibase-240E3390 House Sparrow Passer domesticus 14 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 17:00:00 obsr598381 S21353766 Traveling P22 EBIRD 30.0 4.828 44.0 1 G1108343 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316808815 2015-05-07 10:15:36 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-05-06 05:55:00 obsr2716320 S23284376 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313613439 2018-08-04 17:12:12 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Oswego US-NY-075 13.0 Sunset Bay Park L250628 H 43.5211406 -76.3839446 2015-04-25 12:35:00 obsr2376028 S23097811 Stationary P21 EBIRD 35.0 7.0 1 G1240123 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307054484 2021-03-30 19:29:33.633096 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-02 17:00:00 obsr2338506 S22651749 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307841566 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-05 07:00:00 obsr2404047 S22707735 Traveling P22 EBIRD 300.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306072423 2021-03-26 08:05:20.615241 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 2 United States US New York US-NY Onondaga US-NY-067 13.0 Home L2244889 P 43.1265984 -76.1091631 2015-03-29 11:01:00 obsr214789 S22576725 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290206004 2021-04-01 12:32:15.282601 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa preserve- Walker Street L3175652 P 40.6969856 -73.4523153 2015-01-10 09:15:00 obsr547602 S21280619 Traveling P22 EBIRD 60.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315147454 2015-05-02 23:17:52 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-02 20:24:00 obsr749440 S23190705 Stationary P21 EBIRD 70.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304370946 2021-11-09 21:43:58.300436 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Ulster US-NY-111 13.0 Black Creek Preserve L2086582 H 41.8236532 -73.9574718 2015-03-21 09:40:00 obsr1136997 S22447923 Traveling P22 EBIRD 115.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322501589 2018-08-06 22:31:01 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-05-24 09:30:00 obsr2766625 S23609659 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304079735 2015-03-19 17:15:50 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-03-18 obsr1591201 S22425400 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322139031 2021-03-26 06:29:56.44369 7169 issf avibase-6A9DD06F Great Blue Heron Ardea herodias Great Blue Heron (Great Blue) Ardea herodias [herodias Group] 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-23 07:37:00 obsr1696616 S23589377 Traveling P22 EBIRD 27.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305465322 2021-03-19 16:10:30.527219 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-03-26 11:30:00 obsr142874 S22531275 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312946760 2021-04-01 11:49:53.573686 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-25 11:30:00 obsr599682 S23055067 International Shorebird Survey (ISS) P74 EBIRD 240.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321822673 2018-08-04 17:27:45 486 domestic avibase-07FFC1E5 Mallard (Domestic type) Anas platyrhynchos (Domestic type) 6 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-17 09:00:00 obsr1079517 S23568791 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290853086 2021-03-30 19:39:10.250398 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 85 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 17:00:00 obsr2310825 S21332785 Traveling P22 EBIRD 30.0 4.828 44.0 1 G1108343 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314869504 2015-05-02 10:37:24 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Monroe US-NY-055 13.0 Wardell Road (Monroe Co.) L2400154 P 43.0128064 -77.6064777 2015-05-02 10:27:00 obsr1097423 S23175657 Traveling P22 EBIRD 8.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304434660 2021-11-09 21:57:29.662474 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus N 3 United States US New York US-NY Ulster US-NY-111 13.0 West Camp-Lauren Tice-Malden L3503766 P 42.13744 -73.944 2015-03-21 08:15:00 obsr1482758 S22452441 Traveling P22 EBIRD 90.0 6.437 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311141653 2021-04-01 10:45:00.916278 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 United States US New York US-NY Bronx US-NY-005 30.0 Riverdale Park L1659370 H 40.8946684 -73.9165102 2015-04-18 10:28:00 obsr991026 S22938150 Traveling P22 EBIRD 5.0 3.219 2.0 1 G1225458 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293184584 2021-03-30 19:29:33.633096 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Suffolk US-NY-103 30.0 Avalon Gardens and East Farm Preserve L525770 H 40.9118667 -73.1454921 2015-01-25 15:45:00 obsr1228860 S21537701 Traveling P22 EBIRD 58.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319101065 2021-03-26 06:07:45.516082 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-09 09:48:00 obsr2844530 S23412832 Traveling P22 EBIRD 49.0 1.609 2.0 1 G1268195 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307918790 2021-03-26 07:07:10.758746 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 30 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-06 06:54:00 obsr1958124 S22713653 Traveling P22 EBIRD 6.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291973595 2021-03-26 06:58:34.561206 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 15 United States US New York US-NY Orleans US-NY-073 Point Breeze (Orleans Co.) L469835 H 43.3716945 -78.1916691 2015-01-19 09:01:00 obsr1243175 S21422068 Traveling P22 EBIRD 30.0 0.644 3.0 1 G1116013 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291129529 2021-11-09 22:27:59.558644 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 20 United States US New York US-NY Sullivan US-NY-105 28.0 Wurtsboro L1061608 P 41.572435 -74.4754601 2015-01-15 10:00:00 obsr444155 S21355238 Traveling P22 EBIRD 60.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308606723 2021-03-23 16:29:02.691496 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 2 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-04-09 06:57:00 obsr2588479 S22765148 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299746719 2021-03-23 17:26:08.495143 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 JFK Memorial Wildlife Sanctuary L194386 H 40.6105495 -73.4519033 2015-02-26 15:15:00 obsr547602 S22083880 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308803380 2021-03-23 17:26:08.495143 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-10 07:17:00 obsr2574755 S22780425 Traveling P22 EBIRD 28.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311844923 2021-03-22 08:58:29.008072 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-19 10:45:00 obsr2688919 S22983546 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315468991 2021-03-30 12:05:58.533651 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-03 09:00:00 obsr2909711 S23207895 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320261711 2021-03-26 06:29:56.44369 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-16 07:30:00 obsr2364166 S23477297 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294804911 2018-08-04 16:55:38 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-02-03 10:30:00 obsr479109 S21666587 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291930469 2015-01-19 14:17:06 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Orleans US-NY-073 13.0 North Hamlin Road L3303840 P 43.3618019 -78.1242256 2015-01-17 11:05:00 obsr2449897 S21418460 Stationary P21 EBIRD 25.0 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312977912 2021-12-27 20:39:04.096623 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 8 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-04-25 13:05:00 obsr642516 S23058733 Traveling P22 EBIRD 15.0 1.287 2.0 0 G1236019 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311796331 2021-03-23 17:41:09.545385 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 40 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-04-21 07:30:00 obsr473055 S22980212 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294795799 2021-03-24 20:58:53.646623 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-02-03 10:40:00 obsr72341 S21665881 Stationary P21 EBIRD 380.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305785315 2021-03-19 16:14:11.035882 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Cortland US-NY-023 28.0 West River Road - Virgil (Tioughnioga River) L2065122 P 42.5383466 -76.0960293 2015-03-28 09:45:00 obsr931232 S22555717 Traveling P22 EBIRD 40.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309831757 2021-04-01 11:30:42.037277 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 3 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-13 16:40:00 obsr2793388 S22850086 Traveling P22 EBIRD 80.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308870638 2015-04-10 14:02:32 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-04-10 13:55:00 obsr1349676 S22785053 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308981845 2021-03-23 16:48:08.60516 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Seneca US-NY-099 13.0 Willard Wildlife L678248 P 42.6618311 -76.8587852 2015-04-10 18:00:00 obsr2731440 S22793089 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288473659 2021-04-01 12:32:15.282601 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 100 United States US New York US-NY Nassau US-NY-059 30.0 Roslyn Pond Town Park L592300 H 40.7979205 -73.6473307 2015-01-02 09:30:00 obsr676630 S21140363 Traveling P22 EBIRD 60.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315487393 2021-03-30 19:13:38.458673 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-04-26 18:11:00 obsr334398 S23208954 Traveling P22 EBIRD 31.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298912519 2021-03-26 07:46:52.994574 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-02-21 11:00:00 obsr1778524 S22017326 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305824516 2021-11-09 20:51:06.773494 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Rockland US-NY-087 28.0 Kakiat County Park L1023278 H 41.1461171 -74.11466 2015-03-28 07:30:00 obsr1932005 S22558588 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290937945 2021-03-30 19:39:10.250398 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 45 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 17:00:00 obsr2729612 S21339769 Traveling P22 EBIRD 30.0 4.828 44.0 1 G1108343 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316727744 2021-04-01 10:52:54.724403 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Columbia US-NY-021 14.0 Austerlitz L207556 P 42.3036668 -73.5189287 2015-05-06 10:00:00 obsr712039 S23279726 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301239461 2021-12-23 12:03:28.93033 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Syracuse Airport L585802 H 43.1123833 -76.1141395 2015-03-06 11:25:00 obsr2224244 S22196796 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308201081 2021-03-24 20:33:47.533911 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-04-07 07:34:00 obsr455249 S22734451 Traveling P22 EBIRD 22.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295747756 2021-04-01 11:54:40.172593 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-02-06 09:00:00 obsr666331 S21741138 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323283601 2021-03-23 17:18:00.959502 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-05-25 06:22:00 obsr119187 S23658364 Traveling P22 EBIRD 153.0 1.77 3.0 1 G1288936 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302691397 2021-03-30 19:39:10.250398 32955 species avibase-41062654 Northern Parula Setophaga americana 4 United States US New York US-NY Nassau US-NY-059 30.0 Florence Ave, Oyster Bay L3483063 P 40.8748272 -73.525089 2015-03-06 14:45:00 obsr93451 S22316371 Traveling P22 EBIRD 90.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304575529 2021-04-01 10:51:06.899622 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 600 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-08 16:28:00 obsr334398 S22462937 Traveling P22 EBIRD 164.0 1.931 2.0 1 G1188098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306521769 2018-08-04 17:04:53 11371 species avibase-75600969 Northern Flicker Colaptes auratus 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-31 13:14:00 obsr1958124 S22611355 Traveling P22 EBIRD 4.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318880525 2021-03-26 06:17:19.712573 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-12 06:20:00 obsr502830 S23400009 Traveling P22 EBIRD 116.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310954003 2021-03-26 06:07:45.516082 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-04-16 13:15:00 obsr423515 S22926625 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319851366 2021-03-26 06:12:17.833181 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-05-15 09:45:00 obsr1080625 S23455577 Traveling P22 EBIRD 230.0 1.609 10.0 1 G1309113 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322968649 2021-11-09 19:01:40.008558 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-25 06:45:00 obsr671490 S23637931 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315479103 2021-03-26 06:29:56.44369 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-01 07:06:00 obsr334398 S23208469 Traveling P22 EBIRD 11.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313726266 2018-08-04 17:12:34 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Oswego US-NY-075 13.0 Peter Scott Swamp L248391 H 43.2444498 -76.2705344 2015-04-28 07:24:00 obsr642516 S23104781 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306262029 2021-03-23 16:33:05.415158 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Queens US-NY-081 30.0 St. John Cemetery (Queens Co.) L1789049 H 40.7159729 -73.8664843 2015-03-29 15:45:00 obsr916370 S22591242 Stationary P21 EBIRD 10.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314108813 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 08:00:00 obsr2319444 S23129015 Traveling P22 EBIRD 240.0 3.219 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304177565 2021-04-01 11:15:31.646886 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 15 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-03-20 07:37:00 obsr1189028 S22432965 Traveling P22 EBIRD 65.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311171393 2021-03-26 07:30:35.289997 33300 species avibase-891798D9 Summer Tanager Piranga rubra 4 United States US New York US-NY Tompkins US-NY-109 13.0 Hawthorn Orchard and East Ithaca Rec. Way L122418 H 42.433213 -76.4681321 2015-04-19 07:52:00 obsr887540 S22940047 Traveling P22 EBIRD 88.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303307560 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-28 10:30:00 obsr2555972 S22125920 Traveling P22 EBIRD 180.0 4.828 3.0 1 G1162300 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303901185 2021-11-09 19:56:28.26385 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 2 United States US New York US-NY Orange US-NY-071 28.0 Sawyer's Peak L3323518 P 41.3716881 -74.3810892 2015-02-11 11:00:00 obsr186871 S22411567 Incidental P20 EBIRD 2.0 0 G1184309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308205992 2022-02-18 10:47:29.953615 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-07 07:04:00 obsr1062070 S22734797 Stationary P21 EBIRD 95.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304176719 2021-03-23 17:00:13.087107 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 5 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--Snyder Rd. L763841 H 42.4976053 -76.4600587 2015-03-20 07:15:00 obsr1092576 S22432892 Traveling P22 EBIRD 25.0 3.058 2.0 1 G1185809 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292691393 2022-02-17 14:32:23.002448 7261 species avibase-86D45B8F Green Heron Butorides virescens 10 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-22 13:42:00 obsr1516787 S21499103 Traveling P22 EBIRD 156.0 3.766 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313594153 2021-04-01 10:58:31.765174 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 15 United States US New York US-NY Franklin US-NY-033 13.0 Reagan flats Rd. NY L964226 P 44.9301969 -74.6336539 2015-04-27 15:00:00 obsr1820582 S23096624 Traveling P22 EBIRD 120.0 8.047 2.0 1 G1240030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309090481 2021-11-09 21:57:40.409598 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Ulster US-NY-111 13.0 The Vly L3554956 P 42.13442 -73.94398 2015-04-11 11:00:00 obsr1636520 S22800290 Traveling P22 EBIRD 90.0 3.219 10.0 1 G1214308 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308221141 2015-04-07 10:14:15 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 1163 East Shore Drive, Ithaca, NY L269201 P 42.4787837 -76.507646 2015-04-05 18:41:00 obsr1092576 S22736009 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296386007 2018-08-04 16:56:10 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-12 17:28:00 obsr1318356 S21793546 Traveling P22 EBIRD 33.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294674301 2021-03-24 20:33:47.533911 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 7 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-02-02 10:15:00 obsr2137468 S21655598 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299074657 2021-03-26 07:46:52.994574 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-02-22 09:30:00 obsr777630 S22032659 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306629354 2017-12-27 12:00:28 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Niagara US-NY-063 13.0 Wilson-Tuscarora SP L210266 H 43.3072398 -78.8548868 2015-03-31 13:25:00 obsr916033 S22619930 Traveling P22 EBIRD 80.0 1.207 3.0 1 G1200045 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324170749 2021-03-26 06:29:56.44369 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Monroe US-NY-055 13.0 near pond at Mill Landing L2103068 P 43.235551 -77.702571 2015-05-28 09:20:00 obsr1721347 S23718913 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313054398 2021-03-24 20:33:47.533911 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-04-26 07:28:00 obsr455249 S23063407 Stationary P21 EBIRD 62.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288169266 2021-03-26 07:17:57.136956 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Mays Point Lock 25 L481733 P 42.9993744 -76.7625904 2015-01-01 09:35:00 obsr204036 S21114950 Traveling P22 EBIRD 15.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312301729 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-04-23 09:40:00 obsr2855945 S23013639 Traveling P22 EBIRD 45.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321670051 2021-03-19 16:29:59.503892 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Jefferson US-NY-045 13.0 Black River Fishing site L2127803 P 43.9789116 -75.8680201 2015-05-21 07:00:00 obsr2091520 S23559553 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296822889 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-14 08:30:00 obsr2152799 S21833304 Traveling P22 EBIRD 145.0 6.437 6.0 1 G1145831 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312856648 2021-11-09 17:48:39.818677 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Dutchess US-NY-027 13.0 104 Bedell Rd, Poughkeepsie L10910414 P 41.7239345 -73.8816366 2015-04-24 07:30:00 obsr788817 S23051459 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293163033 2019-07-23 17:27:13 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Suffolk US-NY-103 30.0 Breakwater L457165 P 41.0134625 -72.5607249 2015-01-25 14:50:00 obsr2485753 S21536046 Stationary P21 EBIRD 43.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322829386 2018-02-01 15:11:46 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor22 L3513964 H 42.5801264 -76.092219 2015-05-25 13:26:00 obsr2625207 S23629033 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325591532 2018-08-04 17:30:45 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Franklin US-NY-033 13.0 Private Property - Alderon Marsh L3601092 P 44.9946705 -74.5498753 2015-05-31 10:00:00 obsr1190754 S23815413 Traveling P22 EBIRD 90.0 0.966 2.0 1 G1306306 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315264137 2021-11-09 18:36:27.898762 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-05-03 06:01:00 obsr1433400 S23197286 Traveling P22 EBIRD 45.0 1.899 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313632651 2021-04-01 11:54:40.172593 27380 species avibase-E53FC25C Swainson's Thrush Catharus ustulatus 12 Female, Adult (4); Male, Adult (8) United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-04-25 08:00:00 obsr666331 S23099035 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311052543 2021-03-23 16:39:03.255227 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 4 United States US New York US-NY Richmond US-NY-085 SI-Sawmill Creek/River Road/Old Place L274655 P 40.6134278 -74.1902816 2015-04-18 09:42:00 obsr1032565 S22932809 Traveling P22 EBIRD 77.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313109204 2021-03-30 19:29:33.633096 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 8 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-26 06:20:00 obsr302343 S23066645 Traveling P22 EBIRD 125.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305193712 2021-11-09 21:36:59.310849 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Ulster US-NY-111 13.0 rosendale, ny L1465355 P 41.8499692 -74.081765 2015-03-24 07:25:00 obsr187701 S22509955 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288685662 2021-03-19 16:44:35.607263 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-01-03 08:49:00 obsr2595828 S21157606 Traveling P22 EBIRD 34.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307415867 2021-03-24 19:42:42.07177 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-04 10:47:00 obsr1821546 S22678107 Traveling P22 EBIRD 89.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312775700 2021-03-26 06:39:43.334073 662 species avibase-FB738385 Bufflehead Bucephala albeola N 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Shakespeare Garden L1673419 H 40.7798887 -73.9697911 2015-04-25 11:10:00 obsr613775 S23046740 Traveling P22 EBIRD 46.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288470948 2021-03-26 07:20:31.408164 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Dogwood Ln L3257316 P 41.072273 -72.452232 2015-01-02 12:22:00 obsr2485753 S21140133 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300894964 2021-03-23 17:00:13.087107 616 species avibase-25C94A8F Greater Scaup Aythya marila N 32 United States US New York US-NY Tompkins US-NY-109 13.0 Burdick Hill Rd., Lansing L1107958 H 42.4980885 -76.4998821 2015-03-04 12:51:00 obsr2074043 S22171331 Traveling P22 EBIRD 4.0 1.931 1.0 1 G1166507 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308224702 2021-03-26 06:14:19.776945 20829 species avibase-B9B272F4 Common Raven Corvus corax N 4 United States US New York US-NY Columbia US-NY-021 13.0 Columbia-Greene Community College L2429955 P 42.2165679 -73.8188553 2015-04-07 08:20:00 obsr481595 S22736278 Traveling P22 EBIRD 115.0 0.322 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301813316 2021-03-26 08:13:27.160698 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Tioga US-NY-107 28.0 Cannon Hole (Barton Landing) L3319362 H 42.0246104 -76.4646721 2015-03-08 09:39:00 obsr1318356 S22242500 Traveling P22 EBIRD 28.0 0.483 2.0 1 G1170841 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292068490 2021-11-09 21:56:50.005019 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Ulster US-NY-111 13.0 Zena, NY - my yard L3270926 P 42.030998 -74.0844584 2015-01-18 11:00:00 obsr2129840 S21429501 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319637166 2018-08-04 17:27:13 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Herkimer US-NY-043 13.0 US-NY-Little Falls-348 Saltsman Rd L2813086 P 43.0182 -74.747121 2015-05-14 15:45:00 obsr2172593 S23443322 Traveling P22 EBIRD 32.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309385301 2021-04-01 10:45:00.916278 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus N 2 ON C4 ON United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.8978678 -73.9124419 2015-04-11 09:30:00 obsr2796494 S22819291 Traveling P22 EBIRD 125.0 0.402 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297911116 2019-07-23 17:27:21 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 4 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet, east L1867552 H 40.8427805 -72.4742851 2015-02-14 15:00:00 obsr1864342 S21931520 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312328168 2021-11-09 20:51:06.773494 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Rockland US-NY-087 28.0 Kakiat County Park L1023278 H 41.1461171 -74.11466 2015-04-23 13:22:00 obsr1253931 S23015519 Traveling P22 EBIRD 85.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320822090 2018-08-06 22:30:28 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Red House Lake L246474 H 42.1033333 -78.7458333 2015-05-18 07:16:00 obsr1092576 S23508037 Traveling P22 EBIRD 26.0 3.862 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294002668 2017-08-15 16:59:01 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3327404 P 43.429016 -75.903778 2015-01-30 13:55:00 obsr1477887 S21602614 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308437611 2021-03-23 17:32:20.03109 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--West Shore Trail, Visitor's Center to Lakeview Point L2975271 H 43.0804886 -76.2126732 2015-04-05 12:00:00 obsr643238 S22752379 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318676898 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:30:00 obsr1077730 S23387808 Traveling P22 EBIRD 300.0 3.0 6.0 1 G1265613 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295596565 2021-03-26 07:30:35.289997 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 1 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-02-08 15:31:00 obsr1655171 S21729629 Traveling P22 EBIRD 29.0 0.483 3.0 1 G1139324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323580944 2021-03-26 06:11:29.8335 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Harbor Marina (private) L632907 H 42.8396606 -76.6973591 2015-05-28 14:35:00 obsr2255296 S23678700 Stationary P21 EBIRD 43.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303509703 2022-02-01 20:39:17.700713 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 13.0 personal location L3492643 P 43.2017973 -77.7033806 2015-03-14 10:00:00 obsr2845160 S22381176 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313081475 2020-07-20 09:16:51 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 5 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-26 06:49:00 obsr2224244 S23065063 Traveling P22 EBIRD 179.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309138544 2021-03-24 20:33:47.533911 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-11 15:10:00 obsr2257236 S22803310 Traveling P22 EBIRD 45.0 0.418 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300277842 2021-03-26 06:39:43.334073 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY New York US-NY-061 Randalls Island--saltmarsh at Little Hell Gate Inlet L1785361 H 40.7913671 -73.9265029 2015-02-28 14:41:00 obsr1548221 S22126260 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305589789 2015-03-27 12:08:09 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Falls Downtown L1519794 P 42.9104643 -76.7972194 2015-03-27 09:45:00 obsr204036 S22540938 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306087370 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Monroe US-NY-055 13.0 Thousand Acre Swamp Preserve L123006 H 43.17917 -77.45194 2015-03-29 15:51:00 obsr1545618 S22577894 Traveling P22 EBIRD 52.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289743559 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY New York US-NY-061 30.0 Bleecker Playground L3238741 H 40.7363767 -74.0055963 2015-01-07 11:40:00 obsr2363365 S21242982 Stationary P21 EBIRD 85.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288540054 2021-03-19 16:32:34.732091 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY Kings US-NY-047 30.0 Hendrix Creek L821734 H 40.6482804 -73.8749027 2015-01-02 12:20:00 obsr1189028 S21146048 Traveling P22 EBIRD 45.0 0.805 2.0 1 G1091697 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305415265 2021-03-26 07:20:31.408164 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-02-26 07:00:00 obsr1592950 S22527367 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316309394 2021-04-01 10:47:08.851048 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Broome US-NY-007 28.0 3665 River Rd Endicott L1466336 P 42.108244 -76.008055 2015-05-04 12:00:00 obsr1826325 S23255950 Traveling P22 EBIRD 60.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310973444 2021-03-26 07:30:35.289997 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-18 07:20:00 obsr140280 S22927826 Stationary P21 EBIRD 50.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310912530 2015-05-08 13:56:18 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm sugarbush transect L3270338 P 42.3482684 -76.2983322 2015-04-18 09:09:00 obsr455249 S22924001 Traveling P22 EBIRD 18.0 0.628 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291022851 2021-11-09 18:43:18.896488 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY Dutchess US-NY-027 14.0 Indian Lake Rd Millerton L3292055 P 41.9130723 -73.5162163 2015-01-14 11:40:00 obsr1732267 S21346493 Traveling P22 EBIRD 60.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293685867 2021-03-24 20:33:47.533911 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 2 United States US New York US-NY Tompkins US-NY-109 13.0 Salt Point Natural Area L353038 H 42.5394116 -76.5496267 2015-01-28 08:36:00 obsr1655171 S21577479 Traveling P22 EBIRD 21.0 0.483 2.0 1 G1127513 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309921266 2021-04-01 11:24:19.637193 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-04-13 08:10:00 obsr1561508 S22856423 Traveling P22 EBIRD 60.0 0.644 2.0 1 G1219236 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314297048 2015-04-30 10:33:36 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-04-29 09:45:00 obsr1334267 S23140895 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302080432 2018-08-04 16:59:12 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 Male, Adult (2); Female, Adult (2) United States US New York US-NY Westchester US-NY-119 30.0 Deans Bridge, North Salem L2152201 H 41.3368943 -73.6588245 2015-03-09 18:00:00 obsr1628992 S22262671 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300108640 2019-07-23 17:27:35 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fire Island--Wilderness East L253315 H 40.7325463 -72.8669289 2015-02-28 16:20:00 obsr2406624 S22112761 Traveling P22 EBIRD 40.0 1.609 2.0 1 G1162203 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316251312 2021-03-26 07:53:57.664705 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-05-05 16:12:00 obsr1060479 S23252623 Stationary P21 EBIRD 86.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312078373 2015-04-22 13:22:13 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea X United States US New York US-NY Tompkins US-NY-109 28.0 Caroline Elementary L3565901 P 42.3930529 -76.3717067 2015-04-22 08:05:00 obsr1550810 S22998667 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310551733 2021-03-24 19:47:16.07498 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-16 06:15:00 obsr2716320 S22900400 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318077608 2021-03-19 16:08:39.161312 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.4220913 -79.4281205 2015-05-10 07:40:00 obsr2497657 S23355473 Traveling P22 EBIRD 158.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309744627 2021-03-26 07:56:20.588749 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-04-13 10:15:00 obsr247620 S22844164 Traveling P22 EBIRD 120.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306935953 2018-08-04 17:05:04 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 18 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-02 12:09:00 obsr800690 S22642557 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296445049 2021-03-23 16:47:32.118714 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Schoharie US-NY-095 28.0 GregTonia L3356163 P 42.4820846 -74.2556986 2015-02-13 13:00:00 obsr1982225 S21799192 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299960160 2021-11-15 03:06:58.889978 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-18 08:35:00 obsr1548221 S22100073 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301733687 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 18 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-08 13:30:00 obsr1161599 S22235790 Traveling P22 EBIRD 90.0 4.828 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312786475 2018-08-04 17:12:11 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Fulton US-NY-035 13.0 Mayfield Beach, Burr Rd., Fulton Co., N.Y. L3104334 P 43.1404831 -74.2333639 2015-04-25 11:15:00 obsr2590001 S23047336 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302359830 2021-12-08 05:00:45.922226 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-10 16:00:00 obsr1659461 S22291127 Traveling P22 EBIRD 60.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313009797 2021-11-09 20:43:10.44156 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Putnam US-NY-079 US-NY_868 28.0 Clarence Fahnestock SP L393531 H 41.4525241 -73.8381772 2015-04-25 10:00:00 obsr2078798 S23060598 Traveling P22 EBIRD 120.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288759415 2019-07-23 17:26:42 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 30 United States US New York US-NY Orleans US-NY-073 Point Breeze (Orleans Co.) L469835 H 43.3716945 -78.1916691 2015-01-03 14:15:00 obsr991026 S21163724 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423298 2021-03-30 19:13:38.458673 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-18 17:48:00 obsr1846130 S24163342 Traveling P22 EBIRD 92.0 1.207 2.0 1 G1337410 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317101449 2015-05-08 09:12:40 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-05-07 14:20:00 obsr970333 S23300926 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS693008631 2021-03-30 19:22:51.561415 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-23 16:15:00 obsr251507 S51243808 Traveling P22 EBIRD 255.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290684804 2021-11-09 22:37:20.108383 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 5 United States US New York US-NY Sullivan US-NY-105 28.0 Bashakill L1566572 P 41.5241759 -74.5163684 2015-01-12 07:30:00 obsr2219590 S21319506 Stationary P21 EBIRD 390.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299401866 2021-11-09 21:05:39.566545 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Rockland US-NY-087 US-NY_843 28.0 Iona Island rd. L3436825 P 41.3030284 -73.9787257 2015-02-24 13:30:00 obsr1259654 S22057287 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313921376 2015-04-28 21:41:12 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Fulton US-NY-035 14.0 HOME L2580910 P 43.1207486 -74.5033795 2015-04-28 11:30:00 obsr117560 S23117572 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305342365 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-25 08:30:00 obsr1160328 S22521549 Area P23 EBIRD 210.0 30.3514 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS615872631 2018-05-11 18:03:51 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-04-04 obsr2796835 S45564170 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300973106 2021-03-26 06:53:58.593564 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-03-03 09:00:00 obsr2892286 S22177165 Stationary P21 EBIRD 180.0 2.0 1 G1166815 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314708185 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-01 10:30:00 obsr2448505 S23165756 Traveling P22 EBIRD 150.0 4.828 2.0 1 G1246282 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310687461 2021-03-26 07:30:35.289997 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 21 United States US New York US-NY Tompkins US-NY-109 13.0 Beebe Lake/Mundy Wildflower Garden L2357812 P 42.450265 -76.473142 2015-04-17 12:25:00 obsr2137468 S22909203 Traveling P22 EBIRD 70.0 6.115 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316124836 2021-03-26 06:07:45.516082 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo -- NW perimeter (Restricted Access) L3396578 P 40.8546937 -73.8800722 2015-05-05 11:10:00 obsr128156 S23244562 Traveling P22 EBIRD 15.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301008343 2015-03-09 14:29:21 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-03-05 08:10:00 obsr2074043 S22179704 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921891 2021-03-26 07:56:20.588749 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 5 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-26 09:00:00 obsr2218212 S22173340 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311538843 2021-03-30 19:39:10.250398 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 4 United States US New York US-NY Nassau US-NY-059 30.0 Seamans Neck Park L2593026 H 40.6529716 -73.49241 2015-04-19 18:00:00 obsr544268 S22962579 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294671693 2021-03-26 08:14:57.071052 662 species avibase-FB738385 Bufflehead Bucephala albeola 8 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-02-02 08:00:00 obsr258431 S21655360 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294550686 2021-03-24 20:33:47.533911 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Tompkins US-NY-109 13.0 107 Ross Road, Lansing L497054 P 42.5680634 -76.5851784 2015-02-02 10:48:00 obsr2477799 S21645869 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301965619 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 8 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-08 16:00:00 obsr1291655 S22253616 Traveling P22 EBIRD 150.0 3.219 4.0 1 G1171966 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320277190 2021-04-01 11:15:31.646886 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 15:07:00 obsr152435 S23478076 Traveling P22 EBIRD 226.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319100794 2021-11-15 03:06:58.889978 5922 species avibase-06B9BD24 Sanderling Calidris alba 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-10 11:00:00 obsr430698 S23412818 Traveling P22 EBIRD 120.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317736588 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-09 06:27:00 obsr2595828 S23337036 Stationary P21 EBIRD 100.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298259564 2021-03-26 06:29:56.44369 6616 species avibase-7E022378 Common Loon Gavia immer X United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-02-18 09:06:00 obsr2756208 S21961359 Traveling P22 EBIRD 297.0 0.322 4.0 1 G1151981 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302523406 2018-08-04 16:59:43 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-11 18:00:00 obsr1008519 S22303541 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301888607 2021-04-01 11:49:53.573686 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-03-08 11:15:00 obsr609516 S22248143 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304429839 2021-03-26 07:30:35.289997 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 20 United States US New York US-NY Tompkins US-NY-109 13.0 Salt Point Natural Area L353038 H 42.5394116 -76.5496267 2015-03-21 12:30:00 obsr436489 S22452075 Traveling P22 EBIRD 75.0 0.5 2.0 1 G1187001 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291167893 2021-03-26 06:29:56.44369 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-15 16:30:00 obsr934639 S21358347 Traveling P22 EBIRD 25.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316785541 2021-03-26 06:12:17.833181 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-05-07 07:35:00 obsr1380963 S23283176 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301273307 2021-04-01 11:15:31.646886 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-03-06 14:00:00 obsr1731572 S22199456 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317204273 2020-11-12 13:33:46 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-05-07 18:00:00 obsr317968 S23306136 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302663015 2021-03-31 04:03:32.881251 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis N 3 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-03-12 14:33:00 obsr1958124 S22314181 Traveling P22 EBIRD 28.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304045662 2021-11-09 20:59:08.238638 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-03-19 12:00:00 obsr1932005 S22422787 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308358084 2022-02-17 14:32:23.002448 279 species avibase-3E04020B Brant Branta bernicla X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-07 14:00:00 obsr2448957 S22746171 Traveling P22 EBIRD 210.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320626423 2021-11-15 03:06:58.889978 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 07:34:00 obsr521443 S23496421 Traveling P22 EBIRD 476.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309989857 2021-04-01 12:14:19.266649 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Suffolk US-NY-103 30.0 Avalon Gardens and East Farm Preserve L525770 H 40.9118667 -73.1454921 2015-04-14 11:15:00 obsr1228860 S22861233 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313352014 2019-10-25 16:04:19 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY St. Lawrence US-NY-089 US-NY_802 13.0 Jacques Cartier State Park L2441084 H 44.555858 -75.6810667 2015-04-26 07:25:00 obsr1558090 S23081201 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298957736 2021-12-10 08:21:29.396662 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 12 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-22 08:45:00 obsr1502560 S22020849 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297916939 2018-08-04 16:56:13 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 5 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Rd., Road K L2498666 H 40.8361218 -72.5053489 2015-02-13 13:35:00 obsr1864342 S21931978 Traveling P22 EBIRD 35.0 3.541 2.0 1 G1150401 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319258213 2019-01-27 11:09:05 303 species avibase-B59E1863 Canada Goose Branta canadensis 20 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-11 18:30:00 obsr2311078 S23421599 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314131539 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-04-29 06:06:00 obsr564905 S23130363 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310222266 2021-03-26 08:14:57.071052 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Westchester US-NY-119 30.0 Stone Barns Center for Food and Agriculture L596032 H 41.1000516 -73.8308716 2015-04-15 08:15:00 obsr473055 S22877299 Traveling P22 EBIRD 120.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292887475 2021-04-01 11:47:43.260314 11371 species avibase-75600969 Northern Flicker Colaptes auratus 17 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-01-24 07:34:00 obsr2224244 S21514385 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302708758 2021-03-30 12:05:58.533651 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Kings US-NY-047 30.0 Quaker Parrot Colony L3481293 P 40.6109372 -73.9773481 2015-03-12 16:30:00 obsr2448957 S22317805 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304259187 2021-03-26 06:29:56.44369 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-20 16:10:00 obsr934639 S22439441 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302886487 2021-03-19 16:19:20.977326 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 47 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2146060 H 42.756017 -78.862009 2015-03-13 10:13:00 obsr916033 S22331115 Stationary P21 EBIRD 216.0 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315903085 2021-11-09 17:58:40.313796 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-04 06:58:00 obsr440908 S23231726 Traveling P22 EBIRD 4.0 6.437 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292624455 2021-04-01 12:32:15.282601 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) N 1 United States US New York US-NY Nassau US-NY-059 30.0 US-NY-Wantagh-1989-1999 Old Mill Rd L3310038 P 40.671357 -73.518151 2015-01-22 14:00:00 obsr1654260 S21493819 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299883038 2021-04-01 12:32:15.282601 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 8 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-27 10:25:00 obsr2505956 S22094883 Traveling P22 EBIRD 170.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319698735 2019-05-12 06:55:23 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Monroe US-NY-055 13.0 104 E Pointe, Fairport US-NY (43.1027, -77.4296) L8183334 P 43.1026634 -77.4295914 2015-05-10 12:30:00 obsr2421668 S23446733 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317540784 2021-11-09 17:58:40.313796 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-09 06:30:00 obsr2700041 S23326304 Traveling P22 EBIRD 360.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321811344 2021-03-26 06:19:47.07548 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Essex US-NY-031 13.0 Lower La Chute River & Ticonderoga Marsh L4910422 H 43.8448239 -73.4016323 2015-05-21 15:44:00 obsr2693145 S23568167 Traveling P22 EBIRD 104.0 6.437 3.0 1 G1282463 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319120934 2021-11-15 03:06:58.889978 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-12 15:55:00 obsr2277801 S23413915 Historical P62 EBIRD 200.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS359630348 2021-03-30 19:22:51.561415 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 35 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-25 10:21:00 obsr2022298 S26344803 Traveling P22 EBIRD 122.0 1.609 2.0 1 G1501715 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322825464 2022-02-17 14:32:23.002448 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-23 08:30:00 obsr2502574 S23628813 Traveling P22 EBIRD 180.0 1.77 5.0 1 G1288834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295851435 2021-03-24 21:10:11.310781 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-02-05 08:30:00 obsr1664745 S21749179 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318609670 2021-12-08 07:58:41.562209 10654 species avibase-448D91B7 Red-headed Woodpecker Melanerpes erythrocephalus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-11 06:03:00 obsr1828453 S23384225 Traveling P22 EBIRD 120.0 1.609 2.0 1 G1265301 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305458329 2021-01-03 16:59:56.162431 32220 species avibase-AF49F890 Lincoln's Sparrow Melospiza lincolnii 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-03-26 13:09:00 obsr1092576 S22530766 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304420149 2021-11-09 22:39:47.565044 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Sullivan US-NY-105 28.0 Rondout Reservoir (Sullivan Co.) L2693079 H 41.8604243 -74.5100577 2015-03-21 13:00:00 obsr444155 S22451422 Traveling P22 EBIRD 30.0 4.828 4.0 1 G1187030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299505550 2021-04-01 11:42:50.317679 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Oneida US-NY-065 13.0 Delta Lake dam L3437501 P 43.273828 -75.429568 2015-02-24 15:38:00 obsr1633923 S22065287 Stationary P21 EBIRD 49.0 2.0 1 G1159387 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300351361 2021-03-26 06:29:56.44369 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-02-28 10:30:00 obsr1782363 S22132083 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1018226013 2021-03-26 06:17:19.712573 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea N 3 United States US New York US-NY Erie US-NY-029 13.0 Maple st L3373566 P 42.9426227 -78.684243 2015-02-14 15:00:00 obsr1427970 S76722422 Traveling P22 EBIRD 60.0 1.609 3.0 1 G5942646 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301234305 2021-03-22 09:17:32.016297 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 10 United States US New York US-NY Oneida US-NY-065 13.0 * Little River L512613 P 43.3075048 -75.8048058 2015-03-06 13:10:00 obsr666964 S22196392 Area P23 EBIRD 105.0 4.0469 2.0 1 G1168358 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288524440 2015-01-02 15:52:42 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Schenectady US-NY-093 13.0 Hutchinson Woods L1385563 P 42.8581549 -73.9937934 2015-01-01 12:30:00 obsr739254 S21144575 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310185739 2021-03-26 07:30:35.289997 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 9 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-15 07:32:00 obsr1655171 S22875035 Traveling P22 EBIRD 36.0 0.483 2.0 1 G1221849 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290850552 2021-11-09 17:43:05.347258 7200 species avibase-49D9148A Great Egret Ardea alba 4 United States US New York US-NY Dutchess US-NY-027 28.0 Brothers Rd - Depot Hill L1034813 P 41.5944317 -73.6783826 2015-01-13 13:20:00 obsr1732267 S21332541 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310684037 2021-11-09 21:57:47.813988 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Ulster US-NY-111 13.0 webster lock swamp L3570247 P 41.854462 -74.0540627 2015-04-16 14:00:00 obsr187701 S22908988 Stationary P21 EBIRD 10.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321823122 2021-03-26 06:12:17.833181 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-05-18 07:30:00 obsr479109 S23568819 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313119192 2021-03-23 17:15:00.080143 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 6 United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP, Sodus L712218 H 43.2673188 -77.0297813 2015-04-25 08:07:00 obsr534615 S23067171 Traveling P22 EBIRD 135.0 1.931 13.0 1 G1235657 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312248817 2021-03-26 07:20:31.408164 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Captree Island L2865928 H 40.6469348 -73.2632673 2015-04-23 08:03:00 obsr1228860 S23010276 Traveling P22 EBIRD 10.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298728833 2021-03-26 07:20:31.408164 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Suffolk US-NY-103 30.0 My Backyard L1767606 P 40.9186002 -72.3766669 2015-02-20 07:00:00 obsr1864342 S22002251 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312912861 2017-05-02 11:19:42 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Genesee US-NY-037 13.0 9605 Francis Rd , Batavia L3360943 P 42.947728 -78.1616086 2015-04-25 08:00:00 obsr393804 S23054705 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319416171 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L3640607 P 40.6155949 -73.8359737 2015-05-12 07:51:00 obsr454647 S23430536 Traveling P22 EBIRD 190.0 4.023 4.0 1 G1269800 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295539742 2021-03-24 20:23:39.258075 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 22 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach State Park L230716 P 41.1295147 -72.2665183 2015-02-08 10:47:00 obsr2485753 S21725264 Traveling P22 EBIRD 59.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315001076 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 06:25:00 obsr2519357 S23182511 Traveling P22 EBIRD 413.0 8.047 4.0 1 G1247369 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299092401 2021-04-01 10:53:25.818871 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Cortland-44 River St L3409093 P 42.606232 -76.159635 2015-02-22 17:47:00 obsr1318356 S22033946 Traveling P22 EBIRD 11.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306950153 2018-08-04 17:05:01 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Onondaga US-NY-067 13.0 Conners Road at Dead Creek L2751604 P 43.126342 -76.377239 2015-04-02 08:00:00 obsr2172593 S22643702 Rusty Blackbird Spring Migration Blitz P41 EBIRD 20.0 0.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289238547 2015-01-05 14:22:37 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Nassau US-NY-059 30.0 Baldwin L193543 T 40.6565 -73.60927 2015-01-03 11:10:00 obsr564905 S21203219 Traveling P22 EBIRD 70.0 0.966 4.0 0 G1096948 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296470678 2018-08-04 16:56:13 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-02-13 14:15:00 obsr1062070 S21801288 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319531589 2015-05-14 11:11:58 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Albany US-NY-001 US-NY_863 13.0 Voorheesville, 54-98 Meadowdale Road L3534490 P 42.66238 -73.98421 2015-05-14 07:00:00 obsr777630 S23437394 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324051583 2018-08-06 22:31:28 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Bova area L716657 H 42.1037947 -78.7178135 2015-05-30 10:49:00 obsr2588479 S23711170 Traveling P22 EBIRD 67.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316052259 2021-11-09 19:01:40.008558 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-05 08:00:00 obsr671490 S23240641 Traveling P22 EBIRD 60.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290860238 2019-07-23 17:26:47 33061 species avibase-E36325FA Prairie Warbler Setophaga discolor 75 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-B L3288880 P 40.21933 -73.19694 2015-01-11 09:00:00 obsr896979 S21333476 Traveling P22 EBIRD 60.0 15.289 44.0 1 G1108334 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294199871 2021-03-26 06:29:56.44369 6616 species avibase-7E022378 Common Loon Gavia immer 7 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-31 16:23:00 obsr934639 S21618075 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308382907 2021-04-01 11:47:43.260314 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 18 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-07 08:27:00 obsr2945658 S22748003 Stationary P21 EBIRD 685.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322514095 2021-03-24 19:48:44.880783 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-24 08:03:00 obsr334398 S23610309 Traveling P22 EBIRD 220.0 0.322 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS965723267 2020-08-08 18:23:45 6616 species avibase-7E022378 Common Loon Gavia immer X United States US New York US-NY Columbia US-NY-021 14.0 Drowned Lands Swamp Conservation Area L2704928 H 42.0536902 -73.5669422 2015-05-14 08:00:00 obsr712650 S72227533 Historical P62 EBIRD 180.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313369189 2021-03-26 06:09:25.361188 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Broome US-NY-007 28.0 SUNY Broome Community College L3583220 H 42.1353684 -75.9091816 2015-04-22 14:30:00 obsr826254 S23082194 Traveling P22 EBIRD 110.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317117485 2015-05-08 10:12:14 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-05-08 07:43:00 obsr1124114 S23301741 Traveling P22 EBIRD 148.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312477857 2021-11-15 03:06:58.889978 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-24 06:00:00 obsr1135516 S23025755 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311821875 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-20 17:00:00 obsr1289811 S22982102 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313756592 2021-03-24 20:58:53.646623 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake-Livingston County L741391 P 42.7217949 -77.6194382 2015-04-28 09:08:00 obsr72341 S23107000 Stationary P21 EBIRD 64.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296162754 2015-02-11 17:40:26 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-02-11 07:07:00 obsr2716320 S21773911 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313782743 2021-03-24 05:37:45.927792 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-28 10:05:00 obsr319738 S23108639 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312825344 2021-03-24 20:49:55.752669 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 10 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-04-25 13:45:00 obsr1721609 S23049662 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315486099 2021-03-26 06:29:56.44369 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 15 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-04-29 07:24:00 obsr334398 S23208870 Traveling P22 EBIRD 65.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301335004 2015-03-07 06:54:59 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 12 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-03-06 08:00:00 obsr290506 S22205108 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307456091 2021-03-26 08:05:20.615241 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Onondaga US-NY-067 28.0 South Meadows Nature Area, Tully L2969412 H 42.7954794 -76.1033088 2015-04-04 09:02:00 obsr1178949 S22680743 Area P23 EBIRD 128.0 10.9 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289915977 2015-01-08 20:28:53 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 4 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-08 07:00:00 obsr1160328 S21257236 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290160995 2021-03-26 06:20:37.302746 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Greene US-NY-039 13.0 Coxsackie L3271356 P 42.3184 -73.86158 2015-01-10 10:35:00 obsr2214649 S21276892 Traveling P22 EBIRD 34.0 9.656 2.0 1 G1103065 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310592275 2021-03-26 07:07:10.758746 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis N 2 P C3 P Female, Adult (1); Male, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 Silver Lake Park (Richmond Co.) L391226 H 40.6275746 -74.0938421 2015-04-16 14:47:00 obsr1032565 S22903122 Traveling P22 EBIRD 78.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313569618 2021-04-01 12:32:15.282601 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Nassau US-NY-059 30.0 Norman J. Levy Park and Preserve L284148 H 40.6471523 -73.5630634 2015-04-26 13:50:00 obsr564905 S23094960 Traveling P22 EBIRD 87.0 4.345 2.0 1 G1239968 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313747106 2021-03-24 19:24:40.212356 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 13:10:00 obsr870166 S23106381 Stationary P21 EBIRD 33.0 3.0 1 G1240628 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314983931 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 20 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 07:15:00 obsr1711339 S23181568 Traveling P22 EBIRD 360.0 4.828 28.0 1 G1247342 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316781714 2021-03-19 16:54:27.713469 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Montgomery US-NY-057 13.0 Touareuna Rd, west L3555994 P 42.9209407 -74.0884018 2015-05-07 06:20:00 obsr1918430 S23282955 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315204574 2015-05-03 13:59:37 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-03 06:30:00 obsr1830659 S23194147 Traveling P22 EBIRD 138.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312067301 2015-04-22 12:40:17 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Bridgeport Tuttle Rd L2977114 P 43.1712575 -75.9945774 2015-04-18 08:40:00 obsr2290617 S22998063 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307330826 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis N 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park - Winterdale L2398632 P 40.7811264 -73.9705074 2015-04-03 12:54:00 obsr1548221 S22671682 Traveling P22 EBIRD 13.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288195698 2021-03-30 19:29:33.633096 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Suffolk US-NY-103 30.0 Little Bay, Setauket L10679444 H 40.9524424 -73.1105712 2015-01-01 11:20:00 obsr1832543 S21117170 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319356638 2021-04-01 11:15:31.646886 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-13 07:30:00 obsr827632 S23426995 Traveling P22 EBIRD 360.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306746548 2021-03-26 06:55:00.227271 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 S C2 S United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-01 14:06:00 obsr606693 S22628596 Traveling P22 EBIRD 20.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300893257 2021-03-26 07:30:35.289997 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-04 12:18:00 obsr2074043 S22171189 Stationary P21 EBIRD 24.0 1.0 1 G1166506 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321990575 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-22 07:00:00 obsr1731572 S23580023 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323823983 2021-04-01 12:32:15.282601 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Nickerson Beach L508149 H 40.5871823 -73.6024 2015-05-29 12:25:00 obsr916370 S23696545 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320360097 2021-03-26 06:39:43.334073 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-16 17:00:00 obsr2072398 S23482347 Stationary P21 EBIRD 5.0 2.0 1 G1274066 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321455300 2022-03-09 02:50:29.805088 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-20 11:24:00 obsr128156 S23546566 Traveling P22 EBIRD 36.0 0.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305581692 2021-03-26 07:30:35.289997 26890 species avibase-94A44032 European Starling Sturnus vulgaris 11 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-03-27 10:40:00 obsr1062070 S22540312 Stationary P21 EBIRD 39.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316552913 2017-02-21 09:18:50 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Madison US-NY-053 13.0 Bush Rd., NY 31 to Oneida Lake L925356 H 43.1584863 -75.9301615 2015-05-05 10:10:00 obsr1167884 S23269680 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311423628 2021-03-23 16:30:20.514143 526 species avibase-56CCA717 Northern Pintail Anas acuta 8 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-19 09:30:00 obsr1633923 S22955433 Traveling P22 EBIRD 540.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302941572 2021-03-23 16:21:52.613913 30836 species avibase-8F268682 American Pipit Anthus rubescens 3 United States US New York US-NY Ontario US-NY-069 13.0 Foster Rd Neighborhood L3485882 P 42.8113329 -77.2989893 2015-03-13 12:55:00 obsr2486868 S22335806 Traveling P22 EBIRD 65.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293117415 2015-01-25 20:41:34 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Harpursville, 3120-3186 Main Street L3316502 P 42.15793 -75.60163 2015-01-25 12:12:00 obsr800690 S21532527 Stationary P21 EBIRD 2.0 1.0 1 G1123306 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317523662 2021-12-24 11:02:14.483178 483 species avibase-85625D75 Mallard Anas platyrhynchos N 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-09 07:15:00 obsr1962379 S23325418 Traveling P22 EBIRD 35.0 0.402 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322337579 2018-08-06 22:30:32 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Essex US-NY-031 13.0 Sugar Hill Rd power line, Crown Point, NY L3667152 P 43.937012 -73.421349 2015-05-19 07:23:00 obsr2420101 S23600248 Stationary P21 EBIRD 10.0 2.0 1 G1286333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298778517 2021-03-19 16:06:54.047432 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 8 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-02-21 10:01:00 obsr2683910 S22006334 Stationary P21 EBIRD 16.0 2.0 1 G1155010 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292660855 2021-03-30 19:39:10.250398 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-01-22 10:00:00 obsr916370 S21496606 Traveling P22 EBIRD 75.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302722434 2018-08-04 16:59:46 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach Parkway Driving L1482618 P 40.5927999 -73.538762 2015-03-12 14:30:00 obsr547602 S22318901 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS302709539 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-12 13:15:00 obsr2475766 S22317872 Traveling P22 EBIRD 90.0 0.805 14.0 1 G1177038 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301557299 2018-08-04 16:58:53 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 10 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-07 09:53:00 obsr2134737 S22221741 Stationary P21 EBIRD 26.0 3.0 1 G1169539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299941510 2021-04-01 11:42:50.317679 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-02-22 09:00:00 obsr1195517 S22098750 Stationary P21 EBIRD 180.0 2.0 1 G1161323 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306520904 2021-03-24 20:33:47.533911 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 3 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-31 09:30:00 obsr2867163 S22611288 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295638929 2021-03-24 21:12:31.336509 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe X United States US New York US-NY Tioga US-NY-107 28.0 Tioga County L3344978 P 42.2410195 -76.2180805 2015-02-08 10:48:00 obsr1626739 S21733199 Traveling P22 EBIRD 68.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1079611293 2021-02-21 12:05:24.632869 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Erie US-NY-029 13.0 Aqua Lane Park--Sheridan Boat Launch L8676009 H 42.9653675 -78.9243042 2015-01-18 08:15:00 obsr2155450 S82082258 Stationary P21 EBIRD 30.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321108212 2022-02-04 06:14:13.892644 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-05-17 13:44:00 obsr1548221 S23524835 Traveling P22 EBIRD 76.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300189758 2021-03-23 17:15:00.080143 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 9 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-02-23 08:00:00 obsr211814 S22118859 Stationary P21 EBIRD 197.0 2.0 1 G1162962 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306011356 2021-03-30 19:13:38.458673 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 15 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 11:40:00 obsr934639 S22572430 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297251030 2015-02-15 17:53:27 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 8 United States US New York US-NY Clinton US-NY-019 13.0 front of house L2625643 P 44.5680629 -73.4562019 2015-02-15 08:45:00 obsr2355164 S21871544 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315531773 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 11:30:00 obsr2078092 S23211404 Traveling P22 EBIRD 360.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323506649 2022-03-06 22:19:43.839237 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Hamilton US-NY-041 14.0 Ferd's Bog L109141 H 43.7886933 -74.749732 2015-05-23 08:45:00 obsr1311434 S23673622 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315838153 2021-03-26 06:39:43.334073 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 North woods in Central Park L3613364 P 40.7970718 -73.9560771 2015-05-04 09:00:00 obsr1586546 S23227973 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310616866 2021-03-24 20:33:47.533911 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-17 09:10:00 obsr436489 S22904872 Stationary P21 EBIRD 5.0 2.0 1 G1222698 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321622394 2021-03-26 06:17:19.712573 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-15 13:45:00 obsr1379161 S23556778 Traveling P22 EBIRD 300.0 3.219 2.0 1 G1281345 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301017137 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 25 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-03 08:29:00 obsr1548221 S22180422 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299042567 2021-03-24 21:01:50.671145 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-22 15:15:00 obsr2448785 S22028696 Traveling P22 EBIRD 105.0 4.828 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS323813610 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach State Park L359878 P 40.5898488 -73.5531744 2015-05-29 08:35:00 obsr916370 S23695918 Traveling P22 EBIRD 140.0 3.058 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300461817 2021-03-26 06:07:26.162322 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-03-01 09:30:00 obsr2700440 S22139508 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292201036 2021-03-26 07:56:20.588749 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-19 08:50:00 obsr2976 S21439769 Traveling P22 EBIRD 120.0 1.609 2.0 1 G1118025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316904269 2021-03-24 19:48:44.880783 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-07 07:57:00 obsr1885846 S23289399 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306077663 2021-03-26 07:30:35.289997 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Newman Municipal Golf Course L2158758 H 42.4561318 -76.5052153 2015-03-29 14:48:00 obsr887540 S22577120 Traveling P22 EBIRD 73.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316071883 2021-04-01 11:30:42.037277 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 06:00:00 obsr1760429 S23241741 Traveling P22 EBIRD 309.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295271956 2021-03-26 06:29:56.44369 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-06 15:23:00 obsr934639 S21703465 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921636 2021-03-30 19:39:10.250398 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-17 16:00:00 obsr2218212 S22173330 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290418353 2021-03-26 07:53:57.664705 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Livingston US-NY-051 13.0 East Lake Rd Conesus L824293 P 42.7850761 -77.7086163 2015-01-11 13:06:00 obsr749440 S21297937 Traveling P22 EBIRD 52.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295954081 2015-02-10 12:21:03 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Saratoga US-NY-091 13.0 Edge of 15 L3351392 P 43.1398177 -73.7431365 2015-02-07 09:00:00 obsr646024 S21757677 Stationary P21 EBIRD 480.0 4.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288894850 2021-04-01 12:32:15.282601 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1500 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-01 13:37:00 obsr1615708 S21176704 Traveling P22 EBIRD 26.0 0.805 2.0 1 G1094184 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313842478 2018-08-04 17:12:37 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-28 10:45:00 obsr1044068 S23112426 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309146567 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-09 07:15:00 obsr139757 S22803817 Traveling P22 EBIRD 330.0 8.047 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305841378 2018-08-04 17:04:24 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Essex US-NY-031 13.0 Maple Meadows L4115608 P 44.0422008 -73.4797356 2015-03-28 obsr2769235 S22559825 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323515117 2021-11-02 20:32:06.137153 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-27 12:30:00 obsr317968 S23674230 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289835993 2018-08-04 16:52:54 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-01-08 09:43:00 obsr2211210 S21250428 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332426042 2021-04-01 11:24:19.637193 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Monroe US-NY-055 13.0 Tinker Nature Park L946685 H 43.0670694 -77.57339 2015-05-09 16:03:00 obsr334398 S24314328 Traveling P22 EBIRD 55.0 0.483 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289923250 2021-03-30 19:21:52.898317 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 6 United States US New York US-NY Oswego US-NY-075 Oswego Harbor L247908 H 43.4658286 -76.5149873 2015-01-08 14:30:00 obsr1633923 S21257752 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298714318 2015-02-21 09:45:06 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Trumansburg-1679 Taughannock Blvdz L3339853 P 42.540826 -76.592319 2015-02-21 07:41:00 obsr1791331 S22001038 Stationary P21 EBIRD 123.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318614298 2021-03-26 06:29:56.44369 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Rochester-54 Nunda Blvd L3451802 P 43.140064 -77.562295 2015-05-10 07:24:00 obsr731272 S23384464 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323875303 2021-03-30 19:13:38.458673 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-29 19:23:00 obsr934639 S23699977 Stationary P21 EBIRD 25.0 2.0 1 G1337407 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297046468 2021-03-24 20:23:39.258075 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-02-15 10:16:00 obsr2485753 S21852710 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315268496 2021-12-08 07:58:41.562209 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-03 08:15:00 obsr2571303 S23197507 Traveling P22 EBIRD 150.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320843118 2021-04-01 12:31:09.823741 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 Letchworth SP--Trail No. 17 L3653210 H 42.6868725 -77.9552157 2015-05-17 06:00:00 obsr2240964 S23509229 Traveling P22 EBIRD 360.0 27.359 2.0 1 G1277797 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299336933 2021-03-26 06:09:25.361188 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-02-24 08:20:00 obsr879105 S22052650 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292953394 2021-04-01 12:24:14.132004 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 2 United States US New York US-NY Washington US-NY-115 13.0 Cary Road and CR 46 intersection, Ft. Edward (town) L2500750 H 43.2273865 -73.5411072 2015-01-24 09:40:00 obsr1154 S21519625 Stationary P21 EBIRD 23.0 3.0 1 G1121255 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304612434 2015-11-28 19:02:08 26109 species avibase-BAC33609 Brown Creeper Certhia americana 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-22 08:35:00 obsr1711339 S22465578 Traveling P22 EBIRD 234.0 6.437 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305969079 2021-03-24 20:58:04.794277 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 4 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-03-28 13:00:00 obsr1680059 S22569398 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289263321 2021-03-24 21:06:05.39641 11528 species avibase-F3DA111C Merlin Falco columbarius N 1 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-01-05 09:12:00 obsr2744341 S21205145 Traveling P22 EBIRD 70.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304751810 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Kings US-NY-047 30.0 Sheepshead Bay L835012 H 40.582363 -73.9434105 2015-03-22 16:00:00 obsr2448957 S22475877 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305973752 2021-03-24 20:16:00.852773 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-03-29 08:01:00 obsr1958124 S22569712 Traveling P22 EBIRD 22.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292909572 2015-09-22 15:34:09 7429 species avibase-1327AC55 Osprey Pandion haliaetus 10 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-01-24 12:16:00 obsr1958124 S21516320 Traveling P22 EBIRD 34.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301083277 2021-11-09 21:57:19.459123 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 15 United States US New York US-NY Ulster US-NY-111 28.0 Farmer's Turnpike-Gyrfalcon Stakeout Spot L3457328 P 41.6854764 -74.1631758 2015-02-28 15:15:00 obsr1445454 S22184760 Stationary P21 EBIRD 45.0 6.0 1 G1167531 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293415065 2021-03-24 20:23:39.258075 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 4 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-01-26 15:50:00 obsr2485753 S21556320 Stationary P21 EBIRD 56.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307141693 2021-04-01 11:54:40.172593 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 10 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-03 09:00:00 obsr666331 S22658262 Traveling P22 EBIRD 120.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301876359 2021-04-01 11:15:31.646886 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-03-08 11:00:00 obsr2448957 S22247229 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311336824 2018-08-04 17:10:30 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 Unknown Sex and Age (1); Male, Adult (1) United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-19 08:57:00 obsr1222746 S22950024 Rusty Blackbird Spring Migration Blitz P41 EBIRD 350.0 2.977 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320906141 2021-04-01 12:32:15.282601 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Nassau US-NY-059 30.0 Whitney Pond Park L1412003 H 40.7848952 -73.7037661 2015-05-18 09:45:00 obsr676630 S23512630 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302583858 2021-03-24 20:20:25.430732 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 United States US New York US-NY Schenectady US-NY-093 13.0 Mohawk-Hudson Bike-Hike Trail, Ferry Rd. L2584191 H 42.7876687 -73.8359056 2015-03-11 16:27:00 obsr119187 S22308386 Traveling P22 EBIRD 66.0 1.77 2.0 1 G1176016 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302871913 2022-03-05 22:03:50.715584 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 4 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-13 11:00:00 obsr444155 S22330013 Traveling P22 EBIRD 90.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318676861 2021-04-01 11:15:31.646886 505 species avibase-C732CB10 American Black Duck Anas rubripes N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:30:00 obsr1077730 S23387808 Traveling P22 EBIRD 300.0 3.0 6.0 1 G1265613 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302456679 2021-03-24 20:33:47.533911 20829 species avibase-B9B272F4 Common Raven Corvus corax N 3 S C2 S United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--CLO deck L747847 P 42.480014 -76.451595 2015-03-11 12:42:00 obsr1062070 S22298344 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311149800 2015-04-19 07:26:04 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Essex US-NY-031 13.0 Pine Springs Drive L3300632 P 43.8306261 -73.4373379 2015-04-17 20:15:00 obsr822321 S22938620 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302594835 2021-03-26 06:55:00.227271 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-03-12 08:39:00 obsr606693 S22309324 Traveling P22 EBIRD 7.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310532687 2017-04-15 20:22:11 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip E L3559835 P 40.093967 -72.878533 2015-04-11 12:00:00 obsr1927179 S22899116 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221332 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290555121 2021-03-30 19:29:33.633096 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 10 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP--Belmont Islands L1656456 H 40.7357853 -73.342391 2015-01-11 08:30:00 obsr1917973 S21308834 Stationary P21 EBIRD 120.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311353576 2015-04-19 18:02:33 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Monroe US-NY-055 13.0 Lehigh Valley Trail at E Henrietta Rd. L3461801 H 43.0258149 -77.630397 2015-04-19 17:02:00 obsr1097423 S22951043 Traveling P22 EBIRD 60.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311964048 2021-11-09 19:21:07.406501 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata X United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-04-21 07:30:00 obsr671490 S22991292 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319110707 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park, ramble L3639243 P 40.77772 -73.9687 2015-05-12 14:35:00 obsr363953 S23413366 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307495009 2021-03-30 19:37:33.521815 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 5 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-04-04 13:14:00 obsr1721609 S22683437 Traveling P22 EBIRD 38.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320401192 2021-03-26 06:39:43.334073 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Falconers Hill L787060 H 40.7739443 -73.974072 2015-05-16 09:25:00 obsr1706920 S23484561 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321725705 2015-05-21 14:32:57 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_1726 13.0 Montezuma (NMWMA)--Howland Island--West L318895 H 43.0781 -76.69762 2015-05-21 12:25:00 obsr983655 S23562894 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306700305 2015-04-01 11:11:19 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Schoharie US-NY-095 28.0 Suny Cobleskill creek L1093117 P 42.6687105 -74.5015311 2015-04-01 09:00:00 obsr119187 S22625356 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301805533 2021-03-26 06:29:56.44369 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 25 United States US New York US-NY Monroe US-NY-055 13.0 4960 East Henrietta Road L3466767 P 43.0255884 -77.6304084 2015-03-08 09:00:00 obsr1463039 S22241856 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305221518 2021-03-26 07:30:35.289997 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-25 07:47:00 obsr1655171 S22512179 Traveling P22 EBIRD 64.0 0.483 2.0 1 G1194527 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322140102 2021-04-01 12:32:15.282601 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 Female, Adult (1) United States US New York US-NY Nassau US-NY-059 30.0 Lynbrook L3091077 P 40.6511413 -73.6801529 2015-05-23 07:30:00 obsr358492 S23589442 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296794452 2021-03-26 07:07:10.758746 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Richmond US-NY-085 30.0 Richmond Valley Rd. Pond L1861398 H 40.5200399 -74.2307943 2015-02-14 08:00:00 obsr1958124 S21830833 Traveling P22 EBIRD 9.0 0.322 2.0 1 G1145912 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311864624 2021-04-01 12:29:50.209479 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 2 United States US New York US-NY Fulton US-NY-035 13.0 mom's place L1207546 P 42.9963298 -74.371047 2015-04-19 06:20:00 obsr2590001 S22984652 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319508539 2018-08-06 22:29:49 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 5 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-05-13 07:41:00 obsr440908 S23436115 Traveling P22 EBIRD 360.0 3.219 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291151819 2021-11-09 21:41:09.99287 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L1602952 P 41.6366272 -74.2127688 2015-01-15 09:35:00 obsr1665312 S21357020 Traveling P22 EBIRD 35.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315746973 2021-12-08 07:58:41.562209 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-04 06:34:00 obsr119481 S23223138 Traveling P22 EBIRD 128.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311574083 2021-03-26 07:07:10.758746 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 8 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-20 12:35:00 obsr1958124 S22964987 Traveling P22 EBIRD 12.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308469990 2021-04-01 11:24:19.637193 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-07 07:20:00 obsr1782363 S22754736 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293115831 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 280 United States US New York US-NY Kings US-NY-047 Bensonhurst Park L821314 H 40.5963883 -74.0013431 2015-01-25 11:35:00 obsr598381 S21532416 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292129181 2022-02-17 14:32:23.002448 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 74 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-20 11:21:00 obsr1152226 S21434389 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297012084 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Monroe US-NY-055 13.0 Ballou Backyard L345447 P 43.1434658 -77.5598985 2015-02-15 08:30:00 obsr2678807 S21849488 Stationary P21 EBIRD 48.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305557039 2021-03-23 16:39:03.255227 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--S entrance (maint. bldgs) L1350789 H 40.5146545 -74.2124928 2015-03-27 07:46:00 obsr1958124 S22538304 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298780776 2018-08-04 16:57:58 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Essex US-NY-031 13.0 Maple Meadows L4115608 P 44.0422008 -73.4797356 2015-02-21 13:50:00 obsr2769235 S22006525 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300638410 2019-07-23 17:27:36 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 100 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-02 09:35:00 obsr1826325 S22151764 Stationary P21 EBIRD 30.0 2.0 1 G1165344 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300184181 2015-03-01 00:54:32 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 16 United States US New York US-NY Queens US-NY-081 30.0 Riis Landing L2721494 H 40.5676631 -73.8842089 2015-02-28 14:00:00 obsr2796494 S22118409 Traveling P22 EBIRD 30.0 0.161 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291952799 2021-11-09 21:10:24.153289 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Rockland US-NY-087 30.0 Chestnut Ridge L379278 T 41.0843 -74.05569 2015-01-19 09:30:00 obsr1168812 S21420373 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294239619 2018-08-04 16:55:31 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 22 United States US New York US-NY Essex US-NY-031 13.0 Whallon Bay L504733 H 44.2732298 -73.3454132 2015-01-31 14:00:00 obsr877361 S21621447 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308979907 2021-03-26 07:52:59.845315 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 4 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-10 07:53:00 obsr316199 S22792951 Area P23 EBIRD 75.0 2.59 2.0 1 G1213922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313441972 2021-03-24 20:11:57.676649 27616 species avibase-D77E4B41 American Robin Turdus migratorius 10 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3594705 P 43.429016 -75.903778 2015-04-27 08:41:00 obsr1477887 S23087427 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305246432 2021-03-26 07:56:20.588749 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-03-25 09:00:00 obsr916370 S22514211 Traveling P22 EBIRD 95.0 3.058 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306472181 2018-08-04 17:04:50 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Onondaga US-NY-067 13.0 Conners Road at Dead Creek L2751604 P 43.126342 -76.377239 2015-03-31 08:10:00 obsr2172593 S22607743 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312319702 2021-03-30 19:28:38.115458 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-19 09:00:00 obsr2287860 S23014886 Traveling P22 EBIRD 60.0 3.219 4.0 1 G1232811 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320239528 2021-04-01 11:15:31.646886 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-16 08:00:00 obsr41879 S23476205 Traveling P22 EBIRD 200.0 4.023 2.0 1 G1273908 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288681833 2021-11-09 18:43:18.11682 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 1 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA--North Bay boat launch L3260251 P 42.038887 -73.9149106 2015-01-01 16:30:00 obsr2228949 S21157300 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289292446 2021-03-30 19:43:32.881136 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 2 United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-01-05 09:00:00 obsr2924527 S21207502 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303530271 2015-03-16 15:05:32 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Road, Dunkirk, NY L3492908 P 42.4462708 -79.38508 2015-03-15 11:50:00 obsr479109 S22382691 Traveling P22 EBIRD 10.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321762761 2020-07-27 15:41:41 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Columbia US-NY-021 14.0 Harlem Valley Rail Trail--Copake Falls to Under Mountain Rd. L5803911 H 42.0757413 -73.5303798 2015-05-21 09:10:00 obsr798742 S23565264 Traveling P22 EBIRD 245.0 6.035 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311278002 2018-08-04 17:08:06 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Warren US-NY-113 13.0 Hovey Pond Park L1495382 H 43.3300581 -73.6628138 2015-04-08 12:20:00 obsr2019190 S22946546 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315401821 2018-08-04 17:14:35 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Jefferson US-NY-045 US-NY_852 Wellesley Island SP--Nature Center L1058189 H 44.3062533 -76.0333729 2015-05-03 11:45:00 obsr1302604 S23204248 Traveling P22 EBIRD 125.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306388117 2021-04-01 12:14:19.266649 303 species avibase-B59E1863 Canada Goose Branta canadensis N 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2796 USFWS_480 Seatuck National Wildlife Refuge L2497290 P 40.7141276 -73.2085836 2015-03-30 16:30:00 obsr2902954 S22600846 Traveling P22 EBIRD 120.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317654201 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L2020281 P 40.783661 -73.963995 2015-05-09 06:30:00 obsr2436774 S23332627 Traveling P22 EBIRD 330.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318764634 2021-03-26 06:07:45.516082 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-09 10:42:00 obsr2844530 S23392951 Traveling P22 EBIRD 144.0 2.414 2.0 1 G1266142 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319149281 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-12 10:00:00 obsr1494607 S23415410 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292003942 2017-12-25 12:20:56 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Suffolk US-NY-103 30.0 West Sayville Golf Course L3282912 H 40.7262567 -73.1010268 2015-01-18 13:44:00 obsr1107696 S21424486 Traveling P22 EBIRD 65.0 0.644 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305142129 2017-02-07 20:57:35 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 2 United States US New York US-NY Orleans US-NY-073 13.0 Johnson Creek, Lyndonville L2394599 H 43.321441 -78.3911351 2015-03-24 15:02:00 obsr393804 S22506197 Stationary P21 EBIRD 9.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS615872997 2021-03-26 06:29:56.44369 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit L287616 T 43.21336 -77.57972 2015-01-17 obsr2796835 S45564200 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305368582 2015-03-26 06:57:36 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 400 United States US New York US-NY Broome US-NY-007 28.0 Binghamton, Interstate 81 L3515457 P 42.14849 -75.89756 2015-03-26 06:56:00 obsr2211210 S22523692 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317433500 2015-05-09 09:05:52 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Delaware US-NY-025 28.0 Home L150688 P 42.248363 -74.82349 2015-05-09 07:34:00 obsr2582087 S23319821 Traveling P22 EBIRD 91.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300264390 2015-03-01 13:55:54 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 Unknown Sex, Adult (2) United States US New York US-NY Westchester US-NY-119 28.0 Yorktown Grange Fair Grounds, 99 Moseman Rd. L2976747 P 41.2686463 -73.7695885 2015-02-28 15:00:00 obsr2924527 S22125220 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292913321 2021-04-01 11:47:43.260314 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-01-24 12:27:00 obsr2945658 S21516605 Stationary P21 EBIRD 33.0 1.0 1 G1133895 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316408082 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 06:00:00 obsr2908667 S23261187 Traveling P22 EBIRD 480.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319323633 2021-03-26 07:56:20.588749 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 4 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-08 06:35:00 obsr1987335 S23425261 Traveling P22 EBIRD 77.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315927530 2021-04-01 11:30:42.037277 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-05-03 06:07:00 obsr259298 S23233028 Stationary P21 EBIRD 61.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309699111 2021-03-23 16:39:03.255227 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF--Snag Swamp L1473094 H 40.515363 -74.2213938 2015-04-13 10:58:00 obsr1958124 S22840318 Rusty Blackbird Spring Migration Blitz P41 EBIRD 18.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301339115 2021-03-26 08:09:29.707251 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Otsego US-NY-077 28.0 5954 Cord 18 L2228745 P 42.78321 -75.248564 2015-02-13 10:15:00 obsr1311461 S22205440 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293850764 2021-03-26 07:20:31.408164 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Frank Melville Memorial Park and Mill Pond L1114075 H 40.946195 -73.1156445 2015-01-29 11:39:00 obsr1228860 S21590734 Traveling P22 EBIRD 45.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298767532 2016-01-30 15:49:44 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Seneca US-NY-099 13.0 Sampson SP L356616 H 42.7288824 -76.9038166 2015-02-21 14:00:00 obsr2871406 S22005424 Traveling P22 EBIRD 14.0 3.219 2.0 1 G1154980 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288098100 2021-03-23 16:39:03.255227 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-01-01 07:41:00 obsr1958124 S21108921 Traveling P22 EBIRD 19.0 0.064 2.0 1 G1088923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291079670 2018-11-19 00:15:00 26890 species avibase-94A44032 European Starling Sturnus vulgaris 200 United States US New York US-NY Kings US-NY-047 Owls Head Park L304833 H 40.6403687 -74.0322153 2015-01-14 15:00:00 obsr1417967 S21351186 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301875997 2021-11-09 22:28:59.791993 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Sullivan US-NY-105 US-NY_796 28.0 Mongaup Valley WMA Eagle Blind L1097151 H 41.553811 -74.7868538 2015-03-08 15:30:00 obsr1015200 S22247208 Stationary P21 EBIRD 240.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300638406 2019-07-23 17:27:36 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-02 09:35:00 obsr1826325 S22151764 Stationary P21 EBIRD 30.0 2.0 1 G1165344 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296184027 2021-04-01 12:45:19.712958 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum N 3 United States US New York US-NY Westchester US-NY-119 US-NY_2790 28.0 NY - China Pier L3354537 P 41.2732266 -73.9434171 2015-02-08 14:10:00 obsr271871 S21775669 Stationary P21 EBIRD 20.0 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979039 2018-08-04 16:54:51 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Rensselaer US-NY-083 13.0 US-NY-Melrose-2950-2976 River Rd L3314572 P 42.882001 -73.672035 2015-01-22 12:15:00 obsr648176 S21521422 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311800190 2020-05-16 18:11:44 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Otsego US-NY-077 28.0 207 Stoller Hill Rd L3359197 P 42.7034192 -75.0299799 2015-04-20 09:50:00 obsr131845 S22980491 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317676663 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 06:15:00 obsr1778524 S23333813 Traveling P22 EBIRD 420.0 6.437 4.0 1 G1259440 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319978926 2021-04-01 10:51:06.899622 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-05-15 08:40:00 obsr307268 S23462371 Traveling P22 EBIRD 45.0 9.656 1.0 1 G1272454 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312092019 2019-10-25 16:29:05 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY St. Lawrence US-NY-089 US-NY_775 13.0 Indian Creek Nature Center--Tower L500507 H 44.58805 -75.3020667 2015-04-19 14:15:00 obsr2862523 S22999567 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311919275 2021-03-26 08:14:57.071052 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-21 15:30:00 obsr1628992 S22988266 Traveling P22 EBIRD 120.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307119334 2021-04-01 11:30:42.037277 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-01 15:45:00 obsr2598985 S22656640 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312166101 2015-04-22 19:36:21 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Rensselaer US-NY-083 14.0 Webster Road, Petersburgh L2995274 P 42.8125725 -73.3311197 2015-04-22 18:45:00 obsr362655 S23004608 Area P23 EBIRD 30.0 2.4281 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309123415 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-11 12:05:00 obsr547602 S22802284 Traveling P22 EBIRD 90.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299401864 2021-11-09 21:05:39.566545 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Rockland US-NY-087 US-NY_843 28.0 Iona Island rd. L3436825 P 41.3030284 -73.9787257 2015-02-24 13:30:00 obsr1259654 S22057287 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306051855 2021-11-09 19:38:27.588139 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Orange US-NY-071 28.0 Circle Drive, Tuxedo, NY L1457834 P 41.188319 -74.1869493 2015-03-29 07:00:00 obsr2346161 S22575182 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310840535 2021-03-26 07:00:33.333856 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 4 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-04-18 07:07:00 obsr2574755 S22919441 Traveling P22 EBIRD 71.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294376006 2021-03-23 16:48:08.60516 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-01-31 14:59:00 obsr620377 S21631973 Traveling P22 EBIRD 29.0 1.127 2.0 1 G1131540 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289827292 2015-05-07 17:05:30 3169 species avibase-0CF12F81 Yellow-billed Cuckoo Coccyzus americanus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm sugar shack field transect L2272444 P 42.346503 -76.2992924 2015-01-08 07:37:00 obsr455249 S21249660 Traveling P22 EBIRD 9.0 0.225 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319214353 2021-03-19 16:29:59.503892 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 1 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-13 09:11:00 obsr1302604 S23419126 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301561504 2021-03-26 07:30:35.289997 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis N 6 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-03-07 16:30:00 obsr1160328 S22222063 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302896480 2021-04-01 10:55:39.308231 27402 spuh avibase-DE0D7D24 Catharus sp. Catharus sp. 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-03-13 15:36:00 obsr502830 S22331937 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386276677 2021-03-26 06:39:43.334073 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-27 14:00:00 obsr1559830 S28585384 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320535029 2020-03-15 09:14:53 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-17 09:13:00 obsr502830 S23491606 Traveling P22 EBIRD 244.0 2.414 2.0 1 G1274998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS925694923 2021-03-26 06:39:43.334073 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 07:00:00 obsr1012618 S69256987 Historical P62 EBIRD 600.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288841007 2021-03-30 19:29:33.633096 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 10 United States US New York US-NY Suffolk US-NY-103 30.0 Long Creek Boat Ramp L1013659 P 41.0830045 -72.4153331 2015-01-03 08:46:00 obsr2485753 S21172686 Stationary P21 EBIRD 6.0 2.0 1 G1100213 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319485217 2021-03-24 19:27:13.077399 616 species avibase-25C94A8F Greater Scaup Aythya marila 3 United States US New York US-NY Chemung US-NY-015 28.0 Sperr Memorial Park L7578475 H 42.1465676 -76.9144776 2015-05-14 06:10:00 obsr1092576 S23434684 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288475449 2021-03-26 08:05:20.615241 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Onondaga US-NY-067 13.0 Skaneateles Creek--from dam to Elizabeth St. L2528298 P 42.9474406 -76.4340438 2015-01-02 09:38:00 obsr2279567 S21140500 Traveling P22 EBIRD 66.0 1.046 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302629337 2018-08-04 16:59:46 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Suffolk US-NY-103 30.0 Marratooka L143474 P 40.9934692 -72.5238113 2015-03-12 13:18:00 obsr2485753 S22312043 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317420081 2021-05-05 23:16:43.166312 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-09 06:05:00 obsr1830659 S23319040 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323098464 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Alb-cathedral parking L3674518 P 42.647083 -73.760613 2015-05-26 11:13:00 obsr1885846 S23646235 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301557387 2021-04-01 11:24:19.637193 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-03-07 11:45:00 obsr1782363 S22221754 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304161318 2021-03-26 07:20:31.408164 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 3 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point County Park L835192 H 41.1597479 -72.2347641 2015-03-19 09:50:00 obsr2633969 S22431547 Traveling P22 EBIRD 198.0 2.0 3.0 1 G1185506 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305369709 2021-03-23 17:00:13.087107 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 40 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: Farmers' Market: Steamboat Landing: 3rd St-Inlet-Cascadilla Cr L365413 P 42.4503781 -76.5093899 2015-03-25 08:24:00 obsr2760150 S22523796 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310278111 2016-09-12 10:28:01 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-04-09 09:00:00 obsr2475075 S22881017 Stationary P21 EBIRD 225.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308626150 2015-07-09 21:50:33 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-09 09:20:00 obsr1655171 S22766624 Stationary P21 EBIRD 3.0 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS295316526 2021-03-24 20:23:39.258075 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Suffolk US-NY-103 30.0 45 Leeward Ct L1343060 P 40.936245 -73.0488129 2015-02-06 08:11:00 obsr1711649 S21707174 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293417821 2021-03-30 19:29:33.633096 406 species avibase-27B2749A Wood Duck Aix sponsa 5 United States US New York US-NY Suffolk US-NY-103 30.0 Fort Pond, Montauk L1036490 H 41.042464 -71.9525567 2015-01-26 11:00:00 obsr2818161 S21556568 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308575790 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus N 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 16:00:00 obsr2369927 S22762912 Traveling P22 EBIRD 120.0 3.219 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307994097 2021-11-09 21:05:39.901493 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Rockland US-NY-087 28.0 Rockland Community College L3518962 P 41.1324477 -74.091872 2015-04-06 12:07:00 obsr2346161 S22718911 Traveling P22 EBIRD 8.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316036426 2015-05-05 22:26:59 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Erie US-NY-029 13.0 WNY Land Conservancy Office L2058573 P 42.7636185 -78.5480404 2015-05-05 09:15:00 obsr2537615 S23239748 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS770431464 2021-03-26 08:14:57.071052 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 16 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-04-13 08:20:00 obsr363553 S57030213 Traveling P22 EBIRD 150.0 2.414 20.0 1 G1218134 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304204217 2021-04-01 11:47:43.260314 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-03-19 12:00:00 obsr1633923 S22435219 Stationary P21 EBIRD 330.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292913631 2018-12-07 06:53:41 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 8 United States US New York US-NY Steuben US-NY-101 13.0 US-NY-Hammondsport-9834 E Lake Rd L3313556 P 42.422309 -77.183848 2015-01-24 11:00:00 obsr1092576 S21516646 Traveling P22 EBIRD 13.0 3.219 2.0 1 G1121000 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311166116 2021-12-28 15:50:27.785498 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-19 07:48:00 obsr606693 S22939717 Traveling P22 EBIRD 7.0 0.064 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306807579 2021-04-01 10:45:00.916278 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Bronx US-NY-005 30.0 NY - Pelham Parkway L2678970 P 40.85612 -73.83487 2015-04-01 13:25:00 obsr1348614 S22633017 Traveling P22 EBIRD 15.0 0.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308979518 2021-03-26 06:39:43.334073 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Harlem Meer L278127 H 40.7971185 -73.9523133 2015-04-10 13:41:00 obsr856524 S22792926 Traveling P22 EBIRD 40.0 1.207 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303480583 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-15 08:00:00 obsr1160328 S22378854 Traveling P22 EBIRD 60.0 24.14 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288367711 2021-04-01 11:54:40.172593 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 Male, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-01-01 07:43:00 obsr1032565 S21131778 Traveling P22 EBIRD 182.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294469571 2021-11-09 18:43:48.417488 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 7 United States US New York US-NY Dutchess US-NY-027 28.0 US-NY-Dover Plains-2476 NY-22 L3331277 P 41.692654 -73.578607 2015-02-01 10:30:00 obsr1982614 S21639296 Stationary P21 EBIRD 150.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294452493 2021-03-30 19:29:33.633096 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 25 United States US New York US-NY Suffolk US-NY-103 Wildwood SP L1292958 H 40.9638103 -72.7995086 2015-02-01 13:00:00 obsr1112275 S21638000 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310334208 2019-07-23 17:28:18 303 species avibase-B59E1863 Canada Goose Branta canadensis 12 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip F L3559849 P 40.22115 -73.03615 2015-04-11 13:00:00 obsr1982614 S22885002 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221325 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307112112 2021-04-01 11:30:42.037277 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-03 06:56:00 obsr1433400 S22656083 Traveling P22 EBIRD 120.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354592 2020-03-13 20:12:39 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 10 United States US New York US-NY Albany US-NY-001 28.0 Fairview Farm L2504189 P 42.4713688 -74.1246808 2015-02-01 12:30:00 obsr1363650 S21630358 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319597786 2021-04-01 10:51:50.668112 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-05-13 16:00:00 obsr967916 S23441055 Traveling P22 EBIRD 77.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307018524 2015-04-02 18:46:12 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-04-02 08:45:00 obsr2812831 S22649039 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319962377 2021-11-09 17:54:06.966408 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Whitlock Preserve, Stanfordville L1118586 P 41.8437339 -73.7242699 2015-05-15 17:40:00 obsr1917973 S23461459 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309659870 2015-05-07 17:07:25 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 5 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-13 07:46:00 obsr455249 S22837042 Traveling P22 EBIRD 14.0 0.579 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318319734 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-05-10 11:20:00 obsr934639 S23368202 Traveling P22 EBIRD 47.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307245766 2018-08-04 17:05:17 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Chemung US-NY-015 28.0 Van Etten Wildlife Sanctuary L2318845 H 42.2022855 -76.5450659 2015-04-03 17:10:00 obsr967916 S22665604 Stationary P21 EBIRD 8.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295471616 2021-03-26 07:30:35.289997 622 species avibase-50566E50 Lesser Scaup Aythya affinis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-02-07 08:15:00 obsr2683910 S21719868 Stationary P21 EBIRD 20.0 3.0 1 G1137378 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310198534 2021-04-01 12:31:09.823741 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 4 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake - Inlet L723215 P 42.7139754 -77.7105045 2015-04-15 07:58:00 obsr72341 S22875840 Traveling P22 EBIRD 670.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292620265 2021-11-09 22:29:58.860457 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Sullivan US-NY-105 28.0 Grahamsville L1101762 P 41.8470587 -74.542923 2015-01-22 10:00:00 obsr444155 S21493535 Traveling P22 EBIRD 45.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305584927 2018-08-04 17:03:44 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Taughannock Falls SP--Loon Watch L99383 H 42.5491687 -76.5984989 2015-03-27 10:46:00 obsr2871406 S22540539 Traveling P22 EBIRD 20.0 0.161 2.0 1 G1194819 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288260345 2021-04-01 11:30:42.037277 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 4 United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Chelsea Piers (14th-22nd St.) L1789058 H 40.7454639 -74.008608 2015-01-01 11:30:00 obsr547602 S21122667 Traveling P22 EBIRD 45.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312481162 2021-03-30 12:05:58.533651 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-23 15:30:00 obsr644027 S23025999 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316865657 2021-04-01 11:15:31.646886 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-06 17:00:00 obsr2499879 S23287285 Traveling P22 EBIRD 135.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310851717 2015-04-18 14:36:07 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Chenango US-NY-017 US-NY_2780 28.0 US-NY-Smithville Flats-Tarbell Rd L3572008 P 42.415333 -75.833066 2015-04-18 09:12:00 obsr1092576 S22920208 Traveling P22 EBIRD 10.0 0.161 2.0 1 G1224242 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761935 2021-03-26 07:56:20.588749 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 7 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-31 09:00:00 obsr2218212 S22629542 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319558998 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 06:35:00 obsr2188716 S23438975 Traveling P22 EBIRD 390.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297913067 2021-03-23 16:52:36.900075 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point L857357 P 41.0714088 -71.8586969 2015-02-14 07:00:00 obsr2934754 S21931680 Traveling P22 EBIRD 150.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288197879 2021-04-01 12:14:19.266649 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-01-01 12:40:00 obsr1832543 S21117343 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310014640 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-14 09:45:00 obsr1731572 S22862937 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289153229 2022-01-09 18:48:43.534861 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 30.0 Greenwich Village (14th St.-Houston St.; Broadway-Hudson River) L3238737 H 40.7342063 -74.0027145 2015-01-04 09:00:00 obsr800463 S21197027 Traveling P22 EBIRD 120.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291038751 2021-11-09 19:04:19.670837 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 Male, Adult (1) United States US New York US-NY Dutchess US-NY-027 14.0 Sheffield Hill Road, Amenia L5076376 H 41.8961166 -73.5104074 2015-01-14 09:20:00 obsr1732267 S21347879 Traveling P22 EBIRD 25.0 0.322 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS317243710 2021-03-26 07:56:20.588749 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-08 10:55:00 obsr916370 S23308426 Traveling P22 EBIRD 95.0 3.058 5.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306544499 2021-03-30 19:29:33.633096 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Hawleys Lake L621862 H 40.6979497 -73.3163059 2015-03-31 11:20:00 obsr1137265 S22613149 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300068555 2015-02-28 15:34:34 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Richmond US-NY-085 Saw Mill Creek Marsh L833906 H 40.6081575 -74.1885844 2015-02-28 12:55:00 obsr1893950 S22108959 Stationary P21 EBIRD 2.0 2.0 1 G1161942 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309184161 2021-03-30 19:07:52.958398 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 07:15:00 obsr139757 S22806420 Traveling P22 EBIRD 360.0 4.828 25.0 1 G1214819 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316118807 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 12:40:00 obsr2883698 S23244231 Traveling P22 EBIRD 60.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307065138 2021-03-26 06:59:15.841579 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 20 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-02 09:44:00 obsr2756208 S22652588 Traveling P22 EBIRD 428.0 0.08 5.0 1 G1202058 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS313614014 2021-04-01 12:26:53.827486 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Albany US-NY-001 13.0 Lions L2803969 P 42.772447 -73.80926 2015-04-27 15:56:00 obsr648176 S23097852 Traveling P22 EBIRD 178.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310084502 2021-03-26 08:05:20.615241 337 species avibase-694C127A Mute Swan Cygnus olor 4 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-04-14 16:55:00 obsr2964544 S22868016 Traveling P22 EBIRD 30.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308425429 2018-12-30 09:53:26 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 200 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Crescent Rd., Colonie Landfill pull off L3289882 H 42.811988 -73.7252569 2015-04-08 09:01:00 obsr2321296 S22751422 Stationary P21 EBIRD 30.0 2.0 1 G1211509 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314127831 2021-12-08 07:58:41.562209 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-29 06:57:00 obsr2206421 S23130155 Traveling P22 EBIRD 63.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307509019 2018-08-04 17:05:24 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Westchester US-NY-119 30.0 Rye Nature Center L299426 H 40.9769767 -73.689841 2015-04-04 12:30:00 obsr1348614 S22684294 Traveling P22 EBIRD 150.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324388341 2018-08-06 22:31:25 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Cayuga US-NY-011 US-NY_1726 13.0 Duck Lake L3047142 P 43.1493445 -76.6843987 2015-05-30 07:00:00 obsr2050665 S23733076 Traveling P22 EBIRD 80.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300207624 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-28 07:30:00 obsr2406624 S22120409 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309946518 2021-11-02 20:32:06.137153 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-04-14 08:30:00 obsr71667 S22858281 Traveling P22 EBIRD 60.0 0.805 10.0 1 G1219386 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307151366 2022-02-17 14:32:23.002448 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-03 09:22:00 obsr1605975 S22658931 Traveling P22 EBIRD 130.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304844745 2021-03-30 19:29:33.633096 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Suffolk US-NY-103 US-NY_766 30.0 Caumsett SP L259743 H 40.9308721 -73.4720876 2015-03-19 08:20:00 obsr1189081 S22482471 Traveling P22 EBIRD 70.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321482043 2021-03-19 16:02:45.308962 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-05-20 10:00:00 obsr1830659 S23547008 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351370 2015-03-03 10:02:11 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-10 08:15:00 obsr1792012 S21292457 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653480 2021-04-01 11:24:19.637193 279 species avibase-3E04020B Brant Branta bernicla 5 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-18 12:25:00 obsr1097423 S21397592 Traveling P22 EBIRD 38.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300284657 2021-11-09 21:57:19.147001 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 6 United States US New York US-NY Ulster US-NY-111 28.0 walkill river L3448654 P 41.6788098 -74.1507626 2015-02-28 11:45:00 obsr2505956 S22126814 Traveling P22 EBIRD 90.0 0.483 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303364276 2021-04-01 12:32:15.282601 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-15 07:15:00 obsr547602 S22369214 Traveling P22 EBIRD 120.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309825153 2021-03-23 16:30:20.514143 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 10:49:00 obsr1318356 S22849651 Stationary P21 EBIRD 299.0 5.0 1 G1218628 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319014831 2021-12-27 20:39:04.096623 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-05-07 11:00:00 obsr2592466 S23407295 Traveling P22 EBIRD 45.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS339694498 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 09:30:00 obsr294325 S24843583 Traveling P22 EBIRD 300.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305380730 2021-04-01 12:18:57.910168 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus X United States US New York US-NY Tompkins US-NY-109 13.0 Sunset Park, Ithaca L1528786 H 42.45875 -76.49325 2015-03-26 09:15:00 obsr1092576 S22524762 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1229024067 2021-09-24 21:32:49.405763 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 obsr1927179 S50972757 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320001224 2021-11-15 03:06:58.889978 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 08:15:00 obsr2303233 S23463661 Traveling P22 EBIRD 240.0 3.219 4.0 1 G1272364 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316878261 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 07:00:00 obsr1220115 S23288037 Traveling P22 EBIRD 180.0 2.414 10.0 1 G1271504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299170870 2017-03-07 22:22:36 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Kings US-NY-047 The Narrows (Brooklyn) L1918391 H 40.6218575 -74.0503407 2015-02-22 15:30:00 obsr391995 S22039871 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313909072 2021-04-01 11:15:31.646886 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-21 08:21:00 obsr2233270 S23116757 Traveling P22 EBIRD 459.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308756016 2018-08-04 17:08:04 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Tompkins US-NY-109 28.0 West Lake Rd., Dryden L683177 H 42.4567425 -76.2764454 2015-04-08 08:17:00 obsr2683910 S22776897 Traveling P22 EBIRD 4.0 0.322 2.0 1 G1212821 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296783659 2022-03-05 22:03:50.715584 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 Unknown Sex, Adult (1) United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-14 08:00:00 obsr2219590 S21829867 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298036367 2021-03-26 08:05:20.615241 681 species avibase-407E2CA8 Common Merganser Mergus merganser 8 United States US New York US-NY Onondaga US-NY-067 13.0 5882 Devoe Road Camillus NY 13031 L1956885 P 43.0514541 -76.3047266 2015-02-14 08:00:00 obsr1085188 S21942315 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS873806358 2021-03-30 19:18:56.909873 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 1 United States US New York US-NY New York US-NY-061 Roosevelt Is.--FDR Four Freedoms and Southpoint Park L1988607 H 40.7513426 -73.9598201 2015-05-06 18:00:00 obsr1644858 S65418830 Traveling P22 EBIRD 180.0 2.0 2.0 1 G5050305 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS322136136 2021-03-26 07:56:20.588749 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 7 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-16 09:00:00 obsr2218212 S23589191 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315477721 2021-03-24 19:48:44.880783 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 9 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-01 07:18:00 obsr334398 S23208397 Traveling P22 EBIRD 85.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318624807 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 14 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-04-26 12:15:00 obsr2759466 S23384989 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311509710 2018-08-04 17:10:30 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Hundred Acre Pond L139802 H 43.0289001 -77.5643997 2015-04-19 08:55:00 obsr2065230 S22960704 Traveling P22 EBIRD 120.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290300147 2021-11-09 21:30:58.952293 483 species avibase-85625D75 Mallard Anas platyrhynchos N 10 United States US New York US-NY Ulster US-NY-111 13.0 Esopus Bend Nature Preserve L1422709 H 42.069482 -73.9586939 2015-01-10 07:15:00 obsr1588136 S21288542 Traveling P22 EBIRD 300.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303489765 2021-03-26 07:19:24.261425 3174 species avibase-41E9F54B Black-billed Cuckoo Coccyzus erythropthalmus 1 United States US New York US-NY Steuben US-NY-101 28.0 Hickory Hill Campground L841182 H 42.3643787 -77.3119926 2015-03-16 10:58:00 obsr749440 S22379574 Traveling P22 EBIRD 22.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297228018 2015-02-15 17:11:34 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Delaware US-NY-025 28.0 Home L150688 P 42.248363 -74.82349 2015-01-25 09:21:00 obsr2582087 S21869421 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320570060 2021-04-01 12:32:15.282601 242 species avibase-D3A260BC Snow Goose Anser caerulescens X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-17 11:30:00 obsr916370 S23493459 Traveling P22 EBIRD 95.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309325914 2015-04-12 09:39:57 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell St. L2274922 P 42.4340959 -76.4776647 2015-04-12 07:35:00 obsr241086 S22815694 Stationary P21 EBIRD 20.0 2.0 1 G1215756 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290699634 2021-03-26 06:29:56.44369 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 2 United States US New York US-NY Monroe US-NY-055 13.0 Windelin dr pond at Erie Station Rd L3268910 P 43.0411672 -77.631197 2015-01-12 15:04:00 obsr934639 S21320737 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300197177 2021-11-09 21:57:18.991937 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Ulster US-NY-111 28.0 Walkill River-- Gardiner L3446732 P 41.682894 -74.162051 2015-02-28 12:42:00 obsr840142 S22119449 Traveling P22 EBIRD 90.0 0.161 2.0 1 G1163060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS649763865 2021-04-01 11:15:31.646886 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 4 United States US New York US-NY Kings US-NY-047 Erie Basin Park, IKEA (Brooklyn) L2656131 H 40.6711639 -74.0129375 2015-01-17 13:58:00 obsr2519357 S47954482 Traveling P22 EBIRD 32.0 1.207 4.0 1 G1112444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304458792 2021-03-30 06:01:28.020715 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 Unknown Sex, Adult (1) United States US New York US-NY Washington US-NY-115 13.0 Bradley Beach, Ft. Edward L2477571 H 43.266989 -73.5908235 2015-03-21 15:32:00 obsr1222746 S22454202 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314260858 2021-03-26 06:55:00.227271 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Ontario US-NY-069 13.0 Seneca, Ontario Pathways L3194858 P 42.87315 -77.1061 2015-04-29 13:27:00 obsr1243175 S23138543 Traveling P22 EBIRD 61.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317169093 2021-03-26 06:17:19.712573 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-08 09:32:00 obsr916033 S23304376 Traveling P22 EBIRD 84.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321448308 2021-03-26 06:12:17.833181 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot--Lighthouse L404931 H 42.4929459 -79.3538404 2015-05-16 14:00:00 obsr2155111 S23546198 Traveling P22 EBIRD 150.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305247431 2021-03-26 07:56:20.588749 32757 species avibase-EF47E15D Boat-tailed Grackle Quiscalus major N 3 Male, Unknown Age (1); Female, Unknown Age (2) United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-03-23 09:10:00 obsr1296638 S22514297 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320560351 2021-03-26 07:52:59.845315 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Herkimer US-NY-043 13.0 Little Falls L3650194 P 43.04334 -74.85204 2015-05-17 14:00:00 obsr1228860 S23492933 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309859016 2021-03-26 06:39:43.334073 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-13 08:19:00 obsr1548221 S22851933 Traveling P22 EBIRD 23.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299195548 2019-07-23 17:27:27 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-02-22 12:20:00 obsr241086 S22041698 Stationary P21 EBIRD 60.0 2.0 1 G1157767 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311785946 2018-01-07 20:13:45 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-04-21 08:33:00 obsr2420101 S22979534 Stationary P21 EBIRD 45.0 2.0 1 G1229948 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291799464 2021-03-26 07:52:59.845315 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-18 07:20:00 obsr1000124 S21408633 Area P23 EBIRD 68.0 2.59 2.0 1 G1114847 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295603482 2022-02-17 14:32:23.002448 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 Male, Adult (1) United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-08 13:00:00 obsr1659461 S21730195 Traveling P22 EBIRD 135.0 3.219 2.0 0 G1139370 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316688350 2021-03-19 16:08:39.161312 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-05-06 19:22:00 obsr2497657 S23277533 Traveling P22 EBIRD 84.0 4.426 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321346620 2021-03-23 17:22:05.708166 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Herkimer US-NY-043 13.0 Saltsman Road L677810 P 43.0091035 -74.7420502 2015-05-19 06:54:00 obsr2694889 S23539676 Traveling P22 EBIRD 56.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293560924 2021-03-24 21:13:42.099821 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Westchester US-NY-119 30.0 27 Lower Trinity Pass Road L2848325 P 41.1858142 -73.5501737 2015-01-27 11:00:00 obsr2844530 S21567746 Stationary P21 EBIRD 177.0 2.0 1 G1126839 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290862928 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 12 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-13 15:45:00 obsr934639 S21333733 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310349323 2016-10-11 17:00:32 11494 species avibase-20C2214E American Kestrel Falco sparverius 26 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip D L3559811 P 40.162933 -73.250983 2015-04-11 10:00:00 obsr155915 S22886044 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221326 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308257076 2021-01-26 11:55:02.346497 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 H C2 H Male, Adult (1) United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-04-07 11:26:00 obsr606693 S22738807 Traveling P22 EBIRD 19.0 0.563 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322854493 2015-05-25 14:57:51 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-05-24 19:55:00 obsr1708031 S23630565 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320715993 2021-03-30 19:13:38.458673 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 12 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-05-17 18:00:00 obsr1688373 S23501252 Traveling P22 EBIRD 100.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291652101 2015-01-18 19:20:00 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 12 United States US New York US-NY Jefferson US-NY-045 US-NY_805 Point Peninsula Bird Conservation Area L1367385 H 43.9953255 -76.2449646 2015-01-17 04:09:00 obsr891847 S21397478 Traveling P22 EBIRD 180.0 19.312 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310042402 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-14 15:30:00 obsr2750470 S22864989 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308672730 2017-04-26 10:19:03 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Nassau US-NY-059 30.0 Coffin Woods Preserve L1864630 H 40.8760192 -73.585511 2015-04-08 10:00:00 obsr1445230 S22770287 Stationary P21 EBIRD 180.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316212079 2021-03-30 19:39:10.250398 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 C C3 C United States US New York US-NY Nassau US-NY-059 30.0 Saint Johns Pond Sanctuary L123034 H 40.85417 -73.46333 2015-05-05 07:29:00 obsr1107696 S23250218 Traveling P22 EBIRD 44.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294707576 2021-03-23 17:00:13.087107 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Owen's platform boardwalk (0.03km) L301741 P 42.4810062 -76.4511417 2015-02-03 08:20:00 obsr2307843 S21658097 Traveling P22 EBIRD 5.0 0.02 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313059999 2021-03-24 20:16:00.852773 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-26 08:20:00 obsr1958124 S23063739 Traveling P22 EBIRD 37.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340804369 2021-04-28 05:26:15.958627 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Dead Horse Point L169814 H 40.579594 -73.89466 2015-02-01 11:49:00 obsr2538893 S24923832 Traveling P22 EBIRD 85.0 3.219 2.0 1 G1399433 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300889682 2015-03-04 12:25:11 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-03-01 09:00:00 obsr1349676 S22171012 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308509515 2021-04-01 12:18:57.910168 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-03-27 09:55:00 obsr711169 S22757948 Traveling P22 EBIRD 46.0 1.207 4.0 1 G1211352 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296129244 2021-04-01 12:24:14.132004 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Washington US-NY-115 13.0 Bradley Beach, Ft. Edward L2477571 H 43.266989 -73.5908235 2015-02-11 10:39:00 obsr1222746 S21771327 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297307836 2021-03-19 16:02:45.308962 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 3 United States US New York US-NY Broome US-NY-007 28.0 Home - Backyard L2734900 P 42.0961985 -75.8793983 2015-02-15 09:00:00 obsr2491105 S21876672 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294429332 2021-03-30 06:01:28.020715 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 90 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-01 16:30:00 obsr1318356 S21636226 Stationary P21 EBIRD 33.0 2.0 1 G1132920 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310960265 2021-04-01 12:26:53.827486 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-04-18 15:05:00 obsr2186523 S22927022 Traveling P22 EBIRD 35.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304369905 2021-04-01 12:12:56.033907 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Steuben US-NY-101 28.0 Chemung River at Corning WWTP L619480 H 42.1360014 -77.0319942 2015-03-21 11:24:00 obsr2211210 S22447838 Traveling P22 EBIRD 17.0 0.322 2.0 1 G1187068 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313628403 2015-04-27 19:39:51 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - boardwalk to white barn pond (0.04km) L1287548 P 42.480817 -76.4502794 2015-04-27 12:58:00 obsr2307843 S23098746 Traveling P22 EBIRD 5.0 0.04 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1133903395 2021-04-27 14:35:36.825641 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport (ITH) L285060 H 42.4917181 -76.4594906 2015-03-30 19:45:00 obsr1797072 S86505366 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318491254 2015-05-11 07:51:20 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-11 06:20:00 obsr2321296 S23377768 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295447173 2021-04-01 11:15:31.646886 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum N 18 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-07 11:48:00 obsr150415 S21717963 Traveling P22 EBIRD 67.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323483691 2021-03-26 06:17:19.712573 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N X United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-27 16:00:00 obsr1379161 S23672022 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319873412 2018-08-06 22:29:59 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Delaware US-NY-025 28.0 West Branch Nature Preserve L123036 H 42.1702618 -75.0311304 2015-05-15 08:30:00 obsr481595 S23456720 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302011014 2022-02-17 14:32:23.002448 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 10 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-09 09:30:00 obsr1284279 S22257035 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305680401 2015-03-27 20:32:43 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Oneida US-NY-065 13.0 Verona Swamp L1766802 P 43.1335672 -75.590005 2015-03-27 19:10:00 obsr545221 S22547955 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311893372 2016-03-08 21:31:55 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-21 13:00:00 obsr544268 S22986533 Traveling P22 EBIRD 60.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290716759 2021-03-23 17:26:08.495143 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 17 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-11 15:00:00 obsr2175245 S21322086 Traveling P22 EBIRD 75.0 3.219 6.0 1 G1107399 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625859 2018-08-04 16:53:55 5976 species avibase-F4829920 American Woodcock Scolopax minor 1 United States US New York US-NY Albany US-NY-001 13.0 Hollyhock Hollow Sanctuary L1146193 H 42.540149 -73.8703108 2015-01-18 09:35:00 obsr2214649 S21395264 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301194276 2015-03-06 09:52:30 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-03-06 09:00:00 obsr2172593 S22193081 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316724048 2021-04-01 10:52:54.724403 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Columbia US-NY-021 13.0 Germantown L284394 T 42.13449 -73.89178 2015-05-06 18:00:00 obsr712039 S23279528 Traveling P22 EBIRD 60.0 20.921 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312814508 2021-04-01 11:15:31.646886 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 07:25:00 obsr1407710 S23049098 Traveling P22 EBIRD 349.0 5.633 18.0 1 G1235092 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296045948 2017-02-02 18:30:06 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Onondaga US-NY-067 13.0 Marcellus - OCWA ROW Rte20-OCWA (private) L390051 P 42.9419729 -76.3331795 2015-01-17 10:37:00 obsr2279567 S21764790 Traveling P22 EBIRD 45.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319570112 2021-03-26 06:29:56.44369 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-14 13:15:00 obsr2595828 S23439530 Traveling P22 EBIRD 26.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322157788 2021-11-15 03:06:58.889978 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-22 05:22:00 obsr34333 S23590481 Traveling P22 EBIRD 295.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304307138 2021-11-15 03:06:58.889978 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-20 08:28:00 obsr1548221 S22443147 Traveling P22 EBIRD 74.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314269003 2021-04-01 11:30:42.037277 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 08:00:00 obsr2369927 S23139080 Traveling P22 EBIRD 240.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306081834 2021-03-26 07:20:31.408164 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 USFWS_636 Elizabeth A. Morton NWR L208927 H 40.9909126 -72.3699903 2015-03-29 11:00:00 obsr16685 S22577463 Traveling P22 EBIRD 210.0 8.723 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303379988 2021-03-26 06:21:54.883933 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-15 17:25:00 obsr2180607 S22370338 Traveling P22 EBIRD 129.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308561770 2021-03-23 16:45:39.358281 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY St. Lawrence US-NY-089 US-NY_775 13.0 Upper & Lower Lakes WMA: Rt. 68 hunter parking L2354142 P 44.6087785 -75.2122736 2015-04-08 16:28:00 obsr1558090 S22761955 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315830482 2021-04-01 11:30:42.037277 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 30.0 10034 New York L171669 PC 40.867027 -73.92021 2015-05-04 12:30:00 obsr1740835 S23227522 Traveling P22 EBIRD 150.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291717504 2021-03-23 17:00:13.087107 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-18 08:40:00 obsr1154 S21402166 Traveling P22 EBIRD 237.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS913003536 2021-11-15 03:06:58.889978 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 obsr2697941 S68465180 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310237525 2021-03-24 20:06:25.370375 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--CR 25 X Outlet Creek [Clifton Springs_NE] L1078648 P 42.9754531 -77.1413183 2015-04-15 08:48:00 obsr606693 S22878298 Traveling P22 EBIRD 2.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303011386 2021-12-03 19:42:22.110274 31530 species avibase-B48335B1 Pine Siskin Spinus pinus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-11 16:30:00 obsr2603801 S22341310 Traveling P22 EBIRD 80.0 4.828 3.0 1 G1178708 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308261128 2018-08-04 17:07:59 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-07 13:07:00 obsr1655171 S22739054 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305687782 2021-04-01 11:47:43.260314 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-03-27 12:00:00 obsr1633923 S22548481 Stationary P21 EBIRD 240.0 2.0 1 G1194498 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS333506968 2015-07-26 22:19:39 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Nassau US-NY-059 30.0 Cold Spring Harbor Labs L2844495 P 40.8615213 -73.4700286 2015-05-06 11:35:00 obsr2240960 S24394424 Traveling P22 EBIRD_WI 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294466908 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-02-01 11:35:00 obsr1706920 S21639110 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295923952 2021-03-26 06:29:56.44369 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus N 3 United States US New York US-NY Monroe US-NY-055 13.0 998 cane patch webster ny L2689634 P 43.198669 -77.5033951 2015-02-07 08:00:00 obsr1277758 S21755136 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304961076 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-22 11:30:00 obsr2072398 S22491940 Traveling P22 EBIRD 75.0 1.609 2.0 1 G1190688 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319713703 2021-11-09 18:42:19.628792 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-14 07:13:00 obsr1732267 S23447676 Traveling P22 EBIRD 195.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314059607 2021-11-09 19:49:39.262394 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Orange US-NY-071 28.0 Boulevard, Cornwall - Museum of the Hudson Highlands L2802134 P 41.4396794 -74.0121856 2015-04-28 17:30:00 obsr1592332 S23126012 Traveling P22 EBIRD 60.0 4.828 2.0 1 G1242688 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290716658 2021-04-01 12:32:15.282601 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana N 16 United States US New York US-NY Nassau US-NY-059 US-NY_1727 US Coast Guard Station, West End Jones Beach, NY L1124513 P 40.5895637 -73.5540676 2015-01-11 14:00:00 obsr2175245 S21322079 Stationary P21 EBIRD 30.0 6.0 1 G1107397 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306406324 2021-03-26 06:55:00.227271 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 2 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-03-27 obsr1338126 S22602287 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312581955 2021-11-09 19:51:09.255083 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 Unknown Sex, Adult (2) United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-04-24 14:30:00 obsr1597672 S23033551 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306159285 2018-08-04 17:04:38 292 species avibase-60214D49 Cackling Goose Branta hutchinsii 7 United States US New York US-NY Saratoga US-NY-091 13.0 Hudson Crossing Park L1476458 H 43.1155261 -73.577908 2015-03-29 11:50:00 obsr1222746 S22583394 Traveling P22 EBIRD 200.0 1.77 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315212488 2021-04-01 11:15:31.646886 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 09:00:00 obsr2499879 S23194562 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288895671 2021-03-30 19:39:10.250398 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 372 United States US New York US-NY Nassau US-NY-059 30.0 Marjorie Post Park - Massapequa L1357167 P 40.6695511 -73.4413811 2015-01-03 15:01:00 obsr1615708 S21176786 Traveling P22 EBIRD 16.0 0.161 3.0 1 G1094202 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309409220 2016-02-17 16:24:37 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-12 07:00:00 obsr1535951 S22820761 Traveling P22 EBIRD 120.0 1.609 2.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS315352626 2021-03-19 16:44:35.607263 483 species avibase-85625D75 Mallard Anas platyrhynchos 9 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-05-03 10:35:00 obsr302343 S23201715 Traveling P22 EBIRD 100.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292142544 2019-01-03 10:54:11 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 100 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-20 11:30:00 obsr706483 S21435429 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315980077 2021-03-26 06:39:43.334073 3543 species avibase-8D3E8871 Chuck-will's-widow Antrostomus carolinensis N 27 ON C4 ON United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-02 10:40:00 obsr2885680 S23236105 Traveling P22 EBIRD 70.0 0.644 4.0 1 G1252518 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317610486 2021-04-01 11:24:19.637193 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Monroe US-NY-055 13.0 Tinker Nature Park L946685 H 43.0670694 -77.57339 2015-05-09 11:32:00 obsr2595828 S23330256 Traveling P22 EBIRD 86.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307755834 2021-04-01 11:24:19.637193 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-04-05 12:45:00 obsr2504709 S22701531 Traveling P22 EBIRD 45.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308256030 2021-12-19 10:32:19.574298 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-04-07 10:30:00 obsr877557 S22738744 Traveling P22 EBIRD 120.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307731897 2021-11-01 23:11:19.414929 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY Kings US-NY-047 Coney Island Beach & Boardwalk L845817 H 40.5719793 -73.9778996 2015-04-05 12:05:00 obsr2906952 S22699885 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295359431 2021-04-01 12:14:19.266649 483 species avibase-85625D75 Mallard Anas platyrhynchos N 18 United States US New York US-NY Suffolk US-NY-103 30.0 Reeves Ave. Buffalo Farm L586720 H 40.9519565 -72.6920271 2015-02-07 13:05:00 obsr1982614 S21710882 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298258754 2021-03-26 06:29:56.44369 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-02-18 09:06:00 obsr2588479 S21961287 Traveling P22 EBIRD 297.0 0.322 4.0 1 G1151981 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288449396 2021-03-26 06:29:56.44369 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-02 10:50:00 obsr934639 S21138179 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310319327 2021-11-15 03:06:58.889978 6616 species avibase-7E022378 Common Loon Gavia immer N 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-15 11:00:00 obsr1055148 S22883942 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302101053 2021-04-01 12:11:50.996293 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY Seneca US-NY-099 13.0 US-NY-Seneca Falls-3601-3799 Co Rd 121 L3452857 P 42.849352 -76.767143 2015-02-28 14:50:00 obsr2490863 S22264160 Traveling P22 EBIRD 90.0 4.828 10.0 1 G1173114 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288277943 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.5944991 -73.8148373 2015-01-01 12:40:00 obsr2855945 S21124303 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309333835 2019-07-17 09:57:57 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Schuyler US-NY-097 13.0 Texas Hollow SF--FLT L3557425 H 42.4123376 -76.7920491 2015-04-12 07:10:00 obsr1042912 S22816161 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323071075 2021-03-19 16:06:54.047432 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Dorothy McIlroy Bird Sanctuary (FLLT) L295002 H 42.6700861 -76.2951639 2015-05-23 07:55:00 obsr241086 S23644518 Traveling P22 EBIRD 150.0 3.219 20.0 1 G1290857 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293225259 2019-10-28 20:59:32 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Erie US-NY-029 13.0 Aqua Lane Park--Sheridan Boat Launch L8676009 H 42.9653675 -78.9243042 2015-01-25 13:38:00 obsr916033 S21540902 Stationary P21 EBIRD 16.0 14.0 1 G1123052 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312887503 2021-03-26 07:20:31.408164 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Lily Pond County Park L523536 H 40.8330257 -73.127482 2015-04-25 08:00:00 obsr1848026 S23053291 Traveling P22 EBIRD 195.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320452972 2021-04-01 10:51:06.899622 5923 species avibase-15369E8E Dunlin Calidris alpina 12 United States US New York US-NY Chautauqua US-NY-013 13.0 Stow Fishing Access Site L605934 H 42.1462514 -79.4006959 2015-05-17 08:32:00 obsr1092576 S23487412 Traveling P22 EBIRD 47.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310709596 2021-04-01 12:40:54.473014 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Saratoga US-NY-091 13.0 Coveville L2789900 P 43.060207 -73.59286 2015-04-17 09:03:00 obsr648176 S22910731 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318074592 2018-08-04 17:15:50 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Feeder Rd. Trail (Genesee Co.) L153041 H 43.1242469 -78.429129 2015-05-10 10:45:00 obsr252591 S23355329 Traveling P22 EBIRD 33.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313791247 2021-11-09 20:00:00.182308 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Orange US-NY-071 28.0 Meyers Grove L3597611 P 41.4462039 -74.5989035 2015-04-28 12:00:00 obsr444155 S23109175 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317299498 2022-02-17 14:32:23.002448 26890 species avibase-94A44032 European Starling Sturnus vulgaris 11 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-08 12:20:00 obsr2448957 S23311558 Traveling P22 EBIRD 300.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289482691 2021-03-23 17:26:08.495143 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-01-06 09:45:00 obsr247620 S21222747 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312775683 2021-03-26 06:39:43.334073 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Shakespeare Garden L1673419 H 40.7798887 -73.9697911 2015-04-25 11:10:00 obsr613775 S23046740 Traveling P22 EBIRD 46.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305380229 2021-03-26 06:09:25.361188 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-03-26 09:00:00 obsr879105 S22524717 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319931440 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-05-15 17:13:00 obsr1181085 S23459831 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313245715 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L2020281 P 40.783661 -73.963995 2015-04-26 09:15:00 obsr2436774 S23074598 Traveling P22 EBIRD 225.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302929171 2021-11-09 21:50:48.44865 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-12 18:00:00 obsr1482758 S22334781 Traveling P22 EBIRD 45.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324319829 2021-04-01 11:24:19.637193 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 1 H C2 H United States US New York US-NY Monroe US-NY-055 13.0 Erie Canal at Schoen Place, Pittsford L960276 H 43.0911977 -77.5123727 2015-05-30 17:00:00 obsr606693 S23728521 Incidental P20 EBIRD 4.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318744751 2021-11-15 03:06:58.889978 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-11 07:40:00 obsr258560 S23391754 Traveling P22 EBIRD 360.0 8.851 2.0 1 G1266014 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS362455249 2021-03-26 07:45:44.030579 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Wyoming US-NY-121 28.0 2700 Centerline Road, Varysburg L11026787 P 42.736555 -78.3020117 2015-03-22 08:00:00 obsr2888451 S26578445 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324181159 2021-11-09 18:47:56.897571 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Dutchess US-NY-027 14.0 Deep Hollow Rd L3671312 P 41.814834 -73.585282 2015-05-31 07:05:00 obsr1433400 S23719513 Traveling P22 EBIRD 60.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293117741 2021-11-09 21:23:47.89824 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-01-25 08:15:00 obsr1872991 S21532548 Traveling P22 EBIRD 165.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290180404 2021-03-30 19:37:33.521815 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 10 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-01-10 12:40:00 obsr2914424 S21278517 Traveling P22 EBIRD 37.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307883027 2021-04-01 10:51:50.668112 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 4 H C2 H United States US New York US-NY Chemung US-NY-015 28.0 Orthopedic Associates L364650 P 42.0871719 -76.8088746 2015-04-05 15:25:00 obsr1587816 S22710715 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314379240 2021-03-24 20:11:19.423282 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-30 09:35:00 obsr408487 S23145402 Traveling P22 EBIRD 67.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289538539 2021-11-09 21:36:59.310849 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N 18 United States US New York US-NY Ulster US-NY-111 13.0 rosendale, ny L1465355 P 41.8499692 -74.081765 2015-01-06 10:00:00 obsr187701 S21227134 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311972283 2021-04-01 11:30:42.037277 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 08:20:00 obsr756196 S22991793 Traveling P22 EBIRD 150.0 1.448 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320324468 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 06:06:00 obsr2404047 S23480566 Traveling P22 EBIRD 480.0 4.828 3.0 1 G1274913 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305208755 2021-04-01 11:24:19.637193 7429 species avibase-1327AC55 Osprey Pandion haliaetus 3 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-25 08:40:00 obsr1962295 S22511162 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291521330 2017-08-16 16:21:21 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Suffolk US-NY-103 30.0 Sound Avenue Nature Preserve L3298944 P 40.9677762 -72.6692927 2015-01-17 12:30:00 obsr2207991 S21387123 Traveling P22 EBIRD 30.0 0.322 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307665273 2022-02-18 10:47:29.953615 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 Male, Adult (1) United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-05 06:57:00 obsr1062070 S22695240 Stationary P21 EBIRD 201.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304211323 2021-03-26 08:09:53.772059 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Rensselaer US-NY-083 13.0 Poestenkill, Home Yard L940921 P 42.6943279 -73.5632408 2015-03-20 13:00:00 obsr1735540 S22435754 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314105652 2021-03-26 06:29:56.44369 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 15 United States US New York US-NY Monroe US-NY-055 13.0 University of Rochester--River Front and Pedestrian Bridge L899443 H 43.1310098 -77.6327848 2015-04-29 15:50:00 obsr749440 S23128803 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324090026 2018-08-06 22:29:40 681 species avibase-407E2CA8 Common Merganser Mergus merganser 12 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP - Yanty Creek Trail L269421 P 43.3618733 -77.9527094 2015-05-11 09:20:00 obsr2966702 S23713597 Traveling P22 EBIRD 90.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311780057 2021-03-23 17:00:13.087107 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--CLW office L2388208 P 42.4799683 -76.4513107 2015-04-21 08:37:00 obsr1696616 S22979193 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311056582 2021-03-26 06:12:17.833181 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-04-18 09:00:00 obsr479109 S22933083 Stationary P21 EBIRD 40.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318493308 2021-03-26 06:09:25.361188 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-05-11 07:00:00 obsr879105 S23377883 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314262299 2021-03-23 17:00:13.087107 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--Mundy Wildflower Garden L97554 H 42.4507848 -76.4694708 2015-04-29 18:25:00 obsr241086 S23138630 Traveling P22 EBIRD 25.0 0.322 2.0 1 G1243906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761391 2021-03-26 07:56:20.588749 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-11 09:00:00 obsr2218212 S22629520 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316511129 2021-04-01 11:30:42.037277 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 06:50:00 obsr145923 S23267057 Traveling P22 EBIRD 250.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306476726 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus N 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-29 04:00:00 obsr644027 S22608026 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308321747 2015-04-08 10:46:37 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-07 14:45:00 obsr2105033 S22743410 Traveling P22 EBIRD 90.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309954754 2021-04-01 11:24:19.637193 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay L83 H 43.3130395 -77.7153471 2015-04-14 09:00:00 obsr2933610 S22858850 Stationary P21 EBIRD 115.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290048444 2022-02-17 14:32:23.002448 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 35 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-09 14:29:00 obsr1605975 S21267845 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293138390 2021-11-09 18:43:47.87054 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 30 United States US New York US-NY Dutchess US-NY-027 13.0 Morse Hill Rd L3316800 P 41.89612 -73.570316 2015-01-25 11:15:00 obsr1433400 S21534101 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320827893 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-17 06:40:00 obsr2519357 S23508336 Traveling P22 EBIRD 680.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294587171 2021-04-01 12:32:15.282601 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 3 United States US New York US-NY Nassau US-NY-059 30.0 22 Astor Place, Williston Park, NY, 11596 L1756723 P 40.7581251 -73.6466542 2015-02-02 14:06:00 obsr2086576 S21648734 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311379156 2015-04-19 19:09:59 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Steuben US-NY-101 28.0 Steele corn fields L753800 P 42.1359823 -76.9696999 2015-04-19 16:00:00 obsr562284 S22952688 Traveling P22 EBIRD 50.0 1.851 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302563934 2021-03-26 07:46:52.994574 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-03-11 10:10:00 obsr2846677 S22306919 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306389809 2015-03-30 19:35:52 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-03-30 10:00:00 obsr2766625 S22600983 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307468510 2018-08-04 17:05:26 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 73 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Feeder Rd. Trail (Genesee Co.) L153041 H 43.1242469 -78.429129 2015-04-04 14:39:00 obsr1195275 S22681568 Traveling P22 EBIRD 27.0 0.805 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS361281811 2015-12-27 10:11:02 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 90 United States US New York US-NY Saratoga US-NY-091 13.0 Eastern Avenue L4098349 P 42.9513246 -73.9763891 2015-02-07 13:00:00 obsr1620448 S26469906 Traveling P22 EBIRD 45.0 8.047 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306935975 2018-11-28 11:51:50 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor15 L3513957 H 42.6073973 -76.0575746 2015-04-02 11:52:00 obsr1696616 S22642558 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305970470 2021-03-24 20:58:53.646623 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3522377 P 42.693501 -77.711644 2015-03-29 07:26:00 obsr682121 S22569495 Stationary P21 EBIRD 89.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297446571 2021-03-26 07:56:20.588749 483 species avibase-85625D75 Mallard Anas platyrhynchos N 6 United States US New York US-NY Nassau US-NY-059 30.0 001home, bethpage, ny L1333196 P 40.719284 -73.4770712 2015-02-16 07:00:00 obsr547602 S21888546 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313842312 2021-12-28 15:50:27.785498 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-28 16:20:00 obsr606693 S23112416 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994654 2021-03-24 05:37:45.927792 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-01-04 11:20:00 obsr2497657 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311771696 2021-04-01 11:54:40.172593 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 1 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-04-20 08:00:00 obsr666331 S22978642 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322331010 2021-03-19 16:29:59.503892 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 20 United States US New York US-NY Jefferson US-NY-045 US-NY_778 13.0 Perch River WMA--Vaadi Rd. L721316 H 44.094397 -75.9575415 2015-05-22 14:05:00 obsr1558090 S23599896 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS796993772 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-09 11:00:00 obsr751942 S59164717 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294731604 2021-04-01 12:18:57.910168 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-02-03 09:55:00 obsr620377 S21660132 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300103080 2021-12-29 17:37:07.163452 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 6 United States US New York US-NY Dutchess US-NY-027 13.0 Old Post Rd N Red Hook L859826 P 42.0237536 -73.8463211 2015-01-26 13:25:00 obsr2954986 S22112255 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308711843 2021-03-23 16:47:03.540174 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 55 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-09 16:45:00 obsr1918430 S22773602 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306115108 2015-03-29 18:15:19 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Oneida US-NY-065 13.0 Spring Farm Nature Sanctuary L2242703 P 43.0239766 -75.331192 2015-03-28 16:00:00 obsr1796652 S22580018 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312726713 2015-04-25 21:27:35 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-25 06:05:00 obsr2716320 S23043670 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288887789 2021-11-01 23:11:19.414929 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Kings US-NY-047 Coney Island Beach & Boardwalk L845817 H 40.5719793 -73.9778996 2015-01-03 08:15:00 obsr1575091 S21176211 Traveling P22 EBIRD 105.0 1.207 12.0 1 G1093829 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310943536 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 9 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 11:45:00 obsr152435 S22925878 Traveling P22 EBIRD 177.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294326094 2018-11-23 12:30:13 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Dayhoff Boardwalk (0.087 km) L835705 P 42.4764691 -76.4547345 2015-02-01 08:25:00 obsr2307843 S21628138 Traveling P22 EBIRD 5.0 0.05 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300964112 2021-03-26 06:29:56.44369 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 5 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-03-04 16:05:00 obsr934639 S22176543 Traveling P22 EBIRD 70.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305813698 2021-03-26 07:30:35.289997 23291 species avibase-58C502EA Barn Swallow Hirundo rustica N X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-27 09:37:00 obsr1303581 S22557848 Traveling P22 EBIRD 70.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305039291 2021-03-26 07:56:20.588749 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Nassau US-NY-059 30.0 Lister Park L444840 H 40.6546376 -73.6543393 2015-03-24 10:00:00 obsr676630 S22498257 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317299190 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-08 11:15:00 obsr150415 S23311541 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311295190 2021-03-30 19:43:08.006315 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 8 United States US New York US-NY Schuyler US-NY-097 13.0 Seneca Lake, Lake St. L271672 H 42.53521 -76.88287 2015-04-19 08:37:00 obsr2436517 S22947533 Stationary P21 EBIRD 22.0 1.0 1 G1226344 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321880819 2018-08-06 22:30:46 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Broome US-NY-007 28.0 Wolfe Park, Town of Chenango L2683280 H 42.159845 -75.901316 2015-05-21 18:00:00 obsr2569548 S23572986 Traveling P22 EBIRD 102.0 0.805 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299407662 2021-11-09 21:57:08.310945 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 17 United States US New York US-NY Ulster US-NY-111 28.0 Old Fort Road L3347500 P 41.6313542 -74.2277312 2015-02-22 15:00:00 obsr2228257 S22057745 Stationary P21 EBIRD 75.0 21.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302418944 2015-03-11 11:15:55 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-11 08:48:00 obsr1165633 S22295563 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308318499 2022-02-04 06:14:13.892644 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-04-07 09:30:00 obsr800463 S22743144 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303569506 2021-11-15 03:06:58.889978 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-16 13:15:00 obsr2105033 S22385585 Traveling P22 EBIRD 50.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317813299 2021-03-26 06:11:29.8335 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Cayuga US-NY-011 13.0 Montezuma L130483 T 43.0100708 -76.70327 2015-05-09 11:00:00 obsr1034751 S23341067 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311883040 2015-04-21 16:24:22 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-04-21 05:58:00 obsr934639 S22985900 Traveling P22 EBIRD 50.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305393084 2021-03-26 06:55:00.227271 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 10 United States US New York US-NY Ontario US-NY-069 13.0 yard -- 3.0 miles RT to West Lake Rd to Wyffels, then return. L1842189 P 42.8530848 -77.2848701 2015-03-26 09:45:00 obsr983655 S22525709 Traveling P22 EBIRD 30.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288955298 2021-03-23 17:00:13.087107 30494 species avibase-240E3390 House Sparrow Passer domesticus 45 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-01 08:00:00 obsr39511 S21181251 Stationary P21 EBIRD 210.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288203991 2021-04-01 12:45:19.712958 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Westchester US-NY-119 28.0 Home - Yorktown Hts. NY L2807062 P 41.28111 -73.811003 2015-01-01 12:00:00 obsr1034720 S21117857 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301983224 2021-03-23 17:26:08.495143 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-09 12:00:00 obsr544268 S22254979 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307098037 2021-04-01 11:24:19.637193 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 15 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-04-02 07:57:00 obsr2211210 S22654937 Traveling P22 EBIRD 294.0 1.609 3.0 1 G1202288 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293400892 2015-01-26 15:41:30 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 4 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-01-25 08:15:00 obsr1680059 S21555032 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320609893 2021-11-15 03:06:58.889978 32666 species avibase-5110842F Baltimore Oriole Icterus galbula X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 07:55:00 obsr1154258 S23495577 Traveling P22 EBIRD 220.0 2.414 7.0 1 G1275166 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317523282 2021-03-26 07:46:52.994574 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 05:40:00 obsr2512689 S23325396 Traveling P22 EBIRD 290.0 4.828 1.0 1 G1258875 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312671579 2019-10-25 16:18:45 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 Potsdam: West Potsdam Road_3 L3587989 P 44.6955163 -75.1460284 2015-04-24 05:33:00 obsr1558090 S23039841 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309538241 2021-11-09 22:04:47.967972 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-04-12 08:45:00 obsr187701 S22829012 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318664907 2021-03-26 06:39:43.334073 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 30.0 Riverside Park--North of 96th St. L1018490 H 40.8073616 -73.9684904 2015-05-11 10:30:00 obsr2206421 S23387140 Traveling P22 EBIRD 105.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309032131 2015-04-11 09:59:49 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Erie US-NY-029 13.0 Pleasant Ave L1817453 P 42.7266285 -78.8960089 2015-04-11 08:56:00 obsr548442 S22796664 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314417186 2021-11-09 21:05:07.751154 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis X United States US New York US-NY Rockland US-NY-087 US-NY_843 28.0 Bear Mountain SP--Doodletown Rd. L316486 H 41.3011999 -73.9869576 2015-04-30 11:00:00 obsr2770696 S23147772 Traveling P22 EBIRD 190.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308070937 2021-03-24 19:35:34.045988 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2146060 H 42.756017 -78.862009 2015-04-06 10:46:00 obsr502830 S22724110 Stationary P21 EBIRD 235.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310625868 2021-03-26 06:59:15.841579 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-16 09:40:00 obsr979921 S22905472 Stationary P21 EBIRD 380.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303567707 2018-08-04 16:59:06 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-08 15:30:00 obsr2663400 S22385462 Stationary P21 EBIRD 75.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323979511 2021-04-01 11:12:52.834774 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 8 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-05-30 07:10:00 obsr2978565 S23706773 Traveling P22 EBIRD 170.0 1.609 6.0 1 G1296011 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309290718 2019-10-25 16:11:01 622 species avibase-50566E50 Lesser Scaup Aythya affinis 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY St. Lawrence US-NY-089 US-NY_775 13.0 Rte 68 marsh road L2892306 P 44.6185885 -75.2217364 2015-04-11 11:10:00 obsr2056110 S22813412 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313020911 2021-11-15 03:06:58.889978 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-25 08:40:00 obsr2797341 S23061244 Traveling P22 EBIRD 120.0 1.609 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309126491 2015-04-11 15:29:10 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Livingston US-NY-051 13.0 County Route 71 L730552 P 42.7069197 -77.6757324 2015-04-11 12:55:00 obsr72341 S22802475 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307661790 2021-03-23 17:00:13.087107 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 My house L752736 P 42.4160332 -76.4502089 2015-04-05 09:55:00 obsr887540 S22695026 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311376138 2021-11-09 18:29:40.423603 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Dutchess US-NY-027 13.0 Poughkeepsie - general L2139622 P 41.702262 -73.923481 2015-04-19 08:00:00 obsr1944688 S22952512 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295074215 2022-03-05 22:03:50.715584 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-05 10:00:00 obsr444155 S21689548 Traveling P22 EBIRD 45.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314521640 2021-03-26 07:30:35.289997 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 12 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Stewart Park and Renwick Woods L1131448 H 42.4589608 -76.5055355 2015-04-30 18:53:00 obsr2724574 S23154680 Traveling P22 EBIRD 90.0 0.322 6.0 1 G1244946 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309584359 2021-03-23 16:30:20.514143 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-12 09:15:00 obsr1633923 S22832076 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318150162 2022-03-06 12:39:33.700954 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-05-09 05:45:00 obsr2207991 S23359139 Traveling P22 EBIRD 60.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317539769 2021-03-19 16:44:35.607263 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 4 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-09 07:40:00 obsr302343 S23326248 Traveling P22 EBIRD 235.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312402078 2021-03-26 06:53:58.593564 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 Male, Adult (2) United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-04-23 09:00:00 obsr2812831 S23020601 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308057430 2021-11-15 03:06:58.889978 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-05 18:00:00 obsr2072398 S22723110 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1208359 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297231764 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-15 13:45:00 obsr1349960 S21869744 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298423850 2021-03-30 19:22:51.561415 460 hybrid avibase-861892F3 Gadwall x American Wigeon (hybrid) Mareca strepera x americana 2 United States US New York US-NY Queens US-NY-081 30.0 Brookville Park L2687495 H 40.6629513 -73.7429361 2015-02-19 10:20:00 obsr1668936 S21975907 Stationary P21 EBIRD 73.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296377629 2021-11-09 21:56:47.283823 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Ulster US-NY-111 28.0 Wallkill River Walk L3161419 H 41.6024469 -74.1829652 2015-02-12 14:01:00 obsr2449954 S21792746 Traveling P22 EBIRD 28.0 8.047 2.0 1 G1144439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288610157 2021-03-26 07:56:20.588749 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Nassau US-NY-059 30.0 Tackapausha Museum and Preserve L617756 H 40.6685464 -73.482399 2015-01-02 10:45:00 obsr352522 S21151711 Traveling P22 EBIRD 60.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313041953 2021-03-24 21:12:31.336509 32973 species avibase-10C601D3 Bay-breasted Warbler Setophaga castanea 4 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-04-25 07:04:00 obsr1839967 S23062629 Traveling P22 EBIRD 480.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307454536 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-04 14:00:00 obsr265095 S22680643 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311823792 2015-04-21 12:31:48 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-21 12:05:00 obsr869999 S22982248 Traveling P22 EBIRD 25.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314279224 2018-08-04 17:13:05 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA, Baldwinsville, NY L1421279 P 43.2105406 -76.3197934 2015-04-30 07:00:00 obsr2172593 S23139758 Traveling P22 EBIRD 75.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304581670 2015-03-24 06:40:03 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Queens US-NY-081 30.0 40.6658x-73.7941 - Mar 22, 2015, 10:08 AM L3505562 P 40.665789 -73.794128 2015-03-22 10:08:00 obsr1765131 S22463386 Incidental P20 EBIRD 2.0 1 G1191066 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301229092 2015-09-13 11:57:51 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-03-01 12:50:00 obsr1079517 S22195970 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294178830 2021-03-23 16:52:36.900075 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 4 United States US New York US-NY Suffolk US-NY-103 30.0 Springs (40 Hog Creek Lane) [ACW] L994020 P 41.0478128 -72.1558146 2015-01-31 07:41:00 obsr598381 S21616489 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293007692 2021-04-01 12:24:14.132004 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 8 United States US New York US-NY Washington US-NY-115 13.0 Cary Road and CR 46 intersection, Ft. Edward (town) L2500750 H 43.2273865 -73.5411072 2015-01-24 09:40:00 obsr119187 S21523724 Stationary P21 EBIRD 23.0 3.0 1 G1121255 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305387325 2015-03-26 10:08:44 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Franklin US-NY-033 14.0 US-NY-Saranac Lake-35 James St L2839009 P 44.331237 -74.139357 2015-03-26 10:07:00 obsr2630526 S22525277 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304066989 2021-03-24 19:35:34.045988 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Erie US-NY-029 13.0 Home L2093742 P 42.7338768 -78.7242615 2015-03-19 07:50:00 obsr916033 S22424461 Stationary P21 EBIRD 48.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289835997 2018-08-04 16:52:54 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 6 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-01-08 09:43:00 obsr2211210 S21250428 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289729656 2021-12-28 15:50:27.785498 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-01-05 obsr606693 S21241803 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313722336 2021-03-22 09:17:32.016297 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-28 06:42:00 obsr666964 S23104815 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309945904 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-13 08:55:00 obsr2883074 S22858248 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302681680 2021-11-15 03:06:58.889978 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-12 13:15:00 obsr1041497 S22315561 Traveling P22 EBIRD 90.0 0.805 14.0 1 G1177038 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311769837 2021-03-26 07:30:35.289997 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-18 09:46:00 obsr2683910 S22978510 Traveling P22 EBIRD 95.0 2.736 2.0 1 G1229843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304169493 2015-03-20 08:49:01 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Arshamomaque Preserve L273407 H 41.0956498 -72.3911698 2015-03-20 06:20:00 obsr1736113 S22432272 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312244988 2021-03-26 07:07:10.758746 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-23 07:30:00 obsr1958124 S23010048 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297881167 2021-11-09 22:04:47.967972 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-14 13:35:00 obsr2269521 S21929152 Stationary P21 EBIRD 135.0 2.0 1 G1150104 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293231737 2021-03-23 17:26:08.495143 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 15 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-25 14:30:00 obsr609516 S21541411 Traveling P22 EBIRD 105.0 2.575 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308120237 2021-03-26 07:30:35.289997 26278 species avibase-A381417F House Wren Troglodytes aedon 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-04-06 08:30:00 obsr2137468 S22727992 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311449867 2021-03-24 20:33:47.533911 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 10 United States US New York US-NY Tompkins US-NY-109 13.0 206 Tareyton Drive, Ithaca L141039 P 42.471756 -76.4603653 2015-04-19 09:30:00 obsr620377 S22957023 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292111049 2018-08-04 16:54:03 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 420 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-01-19 13:39:00 obsr887540 S21432953 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292492010 2016-09-12 10:27:59 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-16 10:30:00 obsr2475075 S21483232 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311881965 2021-03-23 16:48:08.60516 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Montezuma (NMWMA)--Cayuga Lake Unit L1280430 H 42.9378719 -76.7503166 2015-04-21 12:00:00 obsr2258053 S22985829 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135480 2021-03-26 07:56:20.588749 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-30 09:00:00 obsr2218212 S23589167 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294362991 2021-03-24 20:23:39.258075 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach State Park L230716 P 41.1295147 -72.2665183 2015-02-01 11:52:00 obsr2485753 S21630972 Traveling P22 EBIRD 72.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291611358 2021-03-24 20:33:47.533911 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-01-18 08:04:00 obsr1696616 S21393965 Stationary P21 EBIRD 32.0 2.0 1 G1113264 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299184318 2021-03-23 16:39:03.255227 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-23 10:57:00 obsr1893950 S22040907 Traveling P22 EBIRD 57.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304398698 2019-07-23 17:28:04 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-03-21 13:42:00 obsr1696616 S22449981 Traveling P22 EBIRD 8.0 1.609 2.0 1 G1188323 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311765606 2021-04-01 11:54:40.172593 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-21 06:50:00 obsr1958124 S22978192 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312580751 2021-11-15 03:06:58.889978 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-24 09:25:00 obsr585997 S23033465 Traveling P22 EBIRD 40.0 0.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312972824 2021-03-19 16:08:39.161312 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 10:15:00 obsr479109 S23058387 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308208786 2018-08-04 17:06:20 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 12 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-07 08:52:00 obsr2211210 S22735010 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307853079 2021-11-15 03:06:58.889978 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-05 11:54:00 obsr1548221 S22708541 Traveling P22 EBIRD 38.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300068998 2019-07-23 17:27:32 6526 species avibase-4D2FF6F1 Common Tern Sterna hirundo 32 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-02-28 07:49:00 obsr1893950 S22108987 Stationary P21 EBIRD 15.0 2.0 1 G1161957 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306329105 2021-04-26 04:57:02.963704 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-30 06:12:00 obsr1189028 S22596212 Traveling P22 EBIRD 345.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304186603 2021-04-01 11:15:31.646886 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 69 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-20 07:30:00 obsr1605975 S22433775 Traveling P22 EBIRD 170.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289870196 2018-03-17 06:19:18 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Pine Neck Sanctuary L122956 H 40.84111 -72.56528 2015-01-08 12:51:00 obsr1107696 S21253325 Traveling P22 EBIRD 51.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297949629 2021-03-26 06:52:34.887371 5942 species avibase-0A0B8431 Purple Sandpiper Calidris maritima 1 United States US New York US-NY Niagara US-NY-063 13.0 North Tonawanda - Home L663618 P 43.0210117 -78.8445854 2015-02-16 08:15:00 obsr1677969 S21934813 Stationary P21 EBIRD 305.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290520317 2021-11-09 20:59:08.238638 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 20 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-01-11 10:45:00 obsr1932005 S21306243 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314332118 2021-03-24 20:33:47.533911 505 species avibase-C732CB10 American Black Duck Anas rubripes 6 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-04-29 18:00:00 obsr2683910 S23142531 Traveling P22 EBIRD 12.0 1.77 2.0 1 G1244179 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289648836 2021-03-26 07:56:20.588749 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 34 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-01-07 07:20:00 obsr1107696 S21236119 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301507045 2022-02-04 06:14:13.892644 681 species avibase-407E2CA8 Common Merganser Mergus merganser N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-02-21 obsr2277801 S22217872 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291740550 2021-04-01 12:32:15.282601 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-18 09:00:00 obsr1160328 S21403998 Stationary P21 EBIRD 75.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304342908 2022-02-17 14:32:23.002448 592 species avibase-3072CC16 Redhead Aythya americana 14 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-21 06:54:00 obsr1821546 S22445690 Traveling P22 EBIRD 101.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298055768 2015-02-17 15:50:14 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-02-17 15:30:00 obsr879105 S21944074 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296374850 2021-11-09 21:57:08.630224 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 2 Unknown Sex, Immature (1) United States US New York US-NY Ulster US-NY-111 28.0 Old Fort Rd. L3354323 P 41.6314745 -74.2284259 2015-02-11 11:16:00 obsr2976435 S21792469 Traveling P22 EBIRD 364.0 0.483 2.0 1 G1144428 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318786253 2021-03-26 06:29:56.44369 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-11 05:51:00 obsr2595828 S23394246 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307188544 2021-04-01 11:24:19.637193 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-04-03 12:50:00 obsr934639 S22661402 Traveling P22 EBIRD 58.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290537586 2021-11-09 22:28:59.791993 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Sullivan US-NY-105 US-NY_796 28.0 Mongaup Valley WMA Eagle Blind L1097151 H 41.553811 -74.7868538 2015-01-11 15:30:00 obsr1015200 S21307564 Stationary P21 EBIRD 300.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288290516 2017-04-25 12:21:16 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Tobay Beach Park L1060282 H 40.6113752 -73.4314372 2015-01-01 13:30:00 obsr613775 S21125450 Traveling P22 EBIRD 5.0 1.609 2.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290853335 2019-01-03 10:54:11 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-F L3288992 P 40.00252 -72.50312 2015-01-11 13:00:00 obsr2310825 S21332814 Traveling P22 EBIRD 60.0 20.6 44.0 1 G1108339 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303266476 2021-11-09 17:48:39.818677 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Dutchess US-NY-027 13.0 104 Bedell Rd, Poughkeepsie L10910414 P 41.7239345 -73.8816366 2015-03-15 13:15:00 obsr788817 S22361171 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310696741 2017-02-03 18:54:43 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 4 United States US New York US-NY Erie US-NY-029 13.0 Stiglmeier Park L965034 H 42.8821636 -78.7297356 2015-04-17 14:00:00 obsr2149313 S22909864 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290923233 2019-01-03 10:54:11 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-A L3288843 P 40.26648 -73.25628 2015-01-11 08:00:00 obsr143739 S21338592 Traveling P22 EBIRD 60.0 12.392 44.0 1 G1108331 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS318954632 2021-04-01 11:15:31.646886 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-10 08:00:00 obsr442686 S23403895 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314755067 2021-03-23 17:26:08.495143 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 10 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-05-01 11:00:00 obsr1494607 S23168597 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299685799 2021-11-09 21:05:39.43131 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 2 United States US New York US-NY Rockland US-NY-087 30.0 Aileen's House L3401930 P 41.045029 -73.935797 2015-02-20 08:45:00 obsr1977990 S22079208 Stationary P21 EBIRD 100.0 2.0 1 G1592453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683745 2021-04-01 12:32:15.282601 30494 species avibase-240E3390 House Sparrow Passer domesticus N 50 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-12 12:45:00 obsr2394424 S21319435 Traveling P22 EBIRD 30.0 3.219 2.0 1 G1107127 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313541217 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Harwick Rd., Irondequoit (Varied Thrush 2015) L3592824 H 43.1740003 -77.5539672 2015-04-27 13:50:00 obsr2933610 S23093247 Stationary P21 EBIRD 52.0 3.0 1 G1241319 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318550785 2021-11-15 03:06:58.889978 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-11 08:05:00 obsr1828453 S23380850 Traveling P22 EBIRD 142.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294154685 2015-01-31 14:16:34 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 5 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Heckscher SP, East Islip L547888 H 40.7129149 -73.1650615 2015-01-31 13:00:00 obsr2534001 S21614607 Traveling P22 EBIRD 30.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313422996 2015-05-07 16:52:53 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm new beaver dam L3594528 P 42.342367 -76.305265 2015-04-26 09:40:00 obsr455249 S23086182 Traveling P22 EBIRD 35.0 1.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302085092 2021-04-01 11:49:53.573686 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 38 United States US New York US-NY Queens US-NY-081 30.0 Brookville Park L2687495 H 40.6629513 -73.7429361 2015-03-08 14:30:00 obsr1982614 S22262977 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319663464 2015-05-14 19:29:23 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Jefferson US-NY-045 US-NY_838 13.0 Red Lake L2236129 H 44.2688429 -75.7378081 2015-05-13 07:25:00 obsr2943723 S23444762 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298669695 2015-02-20 22:12:21 7429 species avibase-1327AC55 Osprey Pandion haliaetus 12 United States US New York US-NY Delaware US-NY-025 28.0 Quail Ridge Area L2327396 P 42.2085425 -74.587276 2015-02-20 07:30:00 obsr883142 S21996685 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306448392 2018-08-04 17:02:48 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Tioga US-NY-107 28.0 Confluence Park, Owego L2011248 H 42.0957386 -76.2724543 2015-03-25 06:39:00 obsr1318356 S22605845 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319733222 2017-01-14 17:37:09 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 8 United States US New York US-NY Chautauqua US-NY-013 13.0 Cheney Point, Chautauqua Lake L2853116 H 42.1319065 -79.3897203 2015-05-14 08:30:00 obsr2418 S23448840 Stationary P21 EBIRD 10.0 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311341560 2021-04-01 12:32:15.282601 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-04-19 09:30:00 obsr2207991 S22950299 Traveling P22 EBIRD 90.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322500224 2021-12-27 20:39:04.096623 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-05-24 11:14:00 obsr2497657 S23609591 Traveling P22 EBIRD 44.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304977567 2015-03-23 23:36:34 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-23 13:10:00 obsr319738 S22493193 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309672074 2021-03-26 07:56:20.588749 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Nassau US-NY-059 30.0 N 2nd St. L2585098 P 40.738664 -73.6975363 2015-04-13 08:00:00 obsr143739 S22838605 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293130805 2018-12-12 10:24:32 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Steuben US-NY-101 28.0 Keuka Lake, Champlin Beach L745394 H 42.4022754 -77.2142529 2015-01-25 10:45:00 obsr1602357 S21533580 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288440823 2021-03-26 07:20:31.408164 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Home L1525287 P 40.8112246 -73.1320357 2015-01-02 10:22:00 obsr2448785 S21137376 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321436912 2021-03-19 16:19:20.977326 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-13 13:45:00 obsr2155111 S23545496 Traveling P22 EBIRD 210.0 1.609 2.0 1 G1281347 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295937104 2015-02-10 09:23:52 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 45 United States US New York US-NY Suffolk US-NY-103 30.0 Montauk L1051370 P 41.0550198 -71.8984795 2015-02-08 07:00:00 obsr1987335 S21756254 Incidental P20 EBIRD 2.0 0 G1142198 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309825148 2021-03-23 16:30:20.514143 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 28 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 10:49:00 obsr1318356 S22849651 Stationary P21 EBIRD 299.0 5.0 1 G1218628 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310838687 2015-04-18 08:05:48 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Future road trail, Ithaca L1745631 H 42.473917 -76.4556491 2015-04-17 18:22:00 obsr2683910 S22919314 Traveling P22 EBIRD 4.0 0.483 2.0 1 G1223889 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324476355 2021-03-26 06:52:34.887371 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-04-03 10:00:00 obsr2141910 S23738588 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316573881 2015-05-06 17:20:29 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Genesee US-NY-037 13.0 mill rd e bethany L3462654 P 42.8918637 -78.1628215 2015-05-06 12:55:00 obsr393804 S23270939 Traveling P22 EBIRD 15.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694073 2021-04-01 12:26:53.827486 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris N 80 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-12 08:40:00 obsr2512689 S21320247 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314958679 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 08:30:00 obsr369788 S23180152 Traveling P22 EBIRD 270.0 8.047 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303901222 2021-11-09 19:56:28.26385 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 10 United States US New York US-NY Orange US-NY-071 28.0 Sawyer's Peak L3323518 P 41.3716881 -74.3810892 2015-01-27 08:30:00 obsr186871 S22411571 Stationary P21 EBIRD 210.0 3.0 1 G1184311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316829103 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-07 08:30:00 obsr800463 S23285443 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291653299 2021-11-09 21:31:40.219848 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-01-18 09:00:00 obsr187701 S21397578 Traveling P22 EBIRD 85.0 0.402 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310407873 2021-03-24 19:35:34.045988 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-16 07:44:00 obsr916033 S22890128 Traveling P22 EBIRD 92.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326086031 2021-03-26 06:39:43.334073 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N X United States US New York US-NY New York US-NY-061 30.0 Chelsea (14th-34th St.; 6th Ave. to Hudson R.) L9165682 H 40.746702 -74.0015091 2015-05-31 10:00:00 obsr2863596 S23850134 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296108963 2015-02-11 11:24:20 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Oswego US-NY-075 13.0 Mexico Point SP L883720 H 43.5195516 -76.2580491 2015-02-11 06:07:00 obsr1311455 S21769697 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288191646 2021-03-26 08:14:57.071052 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-01-01 13:00:00 obsr258431 S21116801 Stationary P21 EBIRD 63.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323336468 2021-03-24 20:53:39.352228 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.859067 2015-05-27 11:45:00 obsr385090 S23662029 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300522099 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 50 United States US New York US-NY New York US-NY-061 30.0 Union Square Park L486424 H 40.7361632 -73.9901558 2015-03-02 13:00:00 obsr1481911 S22143421 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314650887 2021-04-01 12:32:15.282601 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-01 08:20:00 obsr904434 S23162385 Traveling P22 EBIRD 130.0 2.253 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303494231 2021-04-01 12:24:45.865424 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Larkin Rd. L4342619 H 43.3037091 -76.7905645 2015-03-16 11:02:00 obsr1721609 S22379932 Traveling P22 EBIRD 38.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310844232 2021-03-26 07:46:52.994574 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-04-17 07:00:00 obsr2798912 S22919701 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306300076 2021-03-23 16:39:03.255227 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-03-30 12:34:00 obsr1958124 S22594132 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300568835 2021-04-01 12:32:15.282601 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-02 13:00:00 obsr1489009 S22146915 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298288126 2021-03-30 06:01:28.020715 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Washington US-NY-115 13.0 Bradley Beach, Ft. Edward L2477571 H 43.266989 -73.5908235 2015-02-18 10:19:00 obsr1222746 S21963733 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288135656 2021-04-01 11:49:53.573686 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 171 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-01-01 10:35:00 obsr2574755 S21112009 Traveling P22 EBIRD 23.0 0.322 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS319373217 2021-03-26 06:29:56.44369 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Monroe US-NY-055 13.0 near pond at Mill Landing L2103068 P 43.235551 -77.702571 2015-05-08 07:00:00 obsr1721347 S23427982 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310732504 2015-12-17 20:52:41 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Westchester US-NY-119 30.0 27 Lower Trinity Pass Road L2848325 P 41.1858142 -73.5501737 2015-04-17 18:17:00 obsr2844530 S22912261 Incidental P20 EBIRD 2.0 1 G1501713 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312628882 2021-04-01 11:54:40.172593 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-24 15:05:00 obsr1032565 S23036989 Traveling P22 EBIRD 148.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298118525 2020-04-10 18:34:06 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-17 12:50:00 obsr660214 S21949426 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303569786 2021-03-24 20:33:47.533911 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Freeville-55-199 Co Rd 182 L3493347 P 42.501681 -76.430338 2015-03-16 17:40:00 obsr2871406 S22385607 Traveling P22 EBIRD 12.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921345 2021-03-26 07:56:20.588749 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-07 16:00:00 obsr2218212 S22173318 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319819238 2021-04-01 11:14:02.420281 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis X United States US New York US-NY Jefferson US-NY-045 US-NY_759 13.0 Robert G. Wehle SP L453148 H 43.8733029 -76.2704372 2015-05-15 07:30:00 obsr490751 S23453858 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS768675975 2021-04-01 12:45:19.712958 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 8 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-03-02 08:30:00 obsr363553 S56910140 Traveling P22 EBIRD 90.0 1.609 2.0 1 G4236487 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310408281 2015-04-16 10:57:39 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-16 09:55:00 obsr1842004 S22890152 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301798003 2021-11-09 18:43:49.061486 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Dutchess US-NY-027 28.0 Purgatory Hill L3345412 P 41.5670731 -73.566159 2015-03-08 10:30:00 obsr1058852 S22241240 Stationary P21 EBIRD 80.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315033978 2021-09-03 19:22:31.034431 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-05-02 16:00:00 obsr2497657 S23184380 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311400016 2021-11-15 03:06:58.889978 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-19 10:10:00 obsr2105033 S22954004 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313726958 2021-03-24 05:37:45.927792 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-28 07:13:00 obsr502830 S23105103 Traveling P22 EBIRD 61.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319153576 2021-03-26 06:21:08.096334 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Jefferson US-NY-045 13.0 Kelsey Creek, Watertown L273304 H 43.9906455 -75.9170911 2015-04-23 09:00:00 obsr585290 S23415651 Traveling P22 EBIRD 360.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309859925 2018-10-06 16:50:39 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--East Rd. L99686 H 43.009646 -76.7582003 2015-04-11 18:05:00 obsr711169 S22852011 Stationary P21 EBIRD 5.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289096972 2021-04-01 12:18:57.910168 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-01-04 15:22:00 obsr730231 S21192562 Stationary P21 EBIRD 9.0 2.0 1 G1095567 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288381695 2021-03-23 16:39:03.255227 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus 1 United States US New York US-NY Richmond US-NY-085 30.0 Freshkills Park L910281 H 40.5775746 -74.1861379 2015-01-01 16:12:00 obsr1032565 S21132598 Stationary P21 EBIRD 65.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288809144 2021-04-01 11:15:31.646886 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 8 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field--Boat Launch L1058531 H 40.5960975 -73.8814259 2015-01-03 11:14:00 obsr839844 S21167828 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316749938 2021-03-26 06:17:19.712573 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-06 10:30:00 obsr1379161 S23280952 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304730435 2021-12-10 08:21:29.396662 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-22 12:50:00 obsr1954215 S22474436 Traveling P22 EBIRD 25.0 0.966 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315491440 2021-11-09 18:17:17.335499 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Dutchess US-NY-027 13.0 Strever Farm Road, Pine Plains L1363519 H 41.9457427 -73.6491438 2015-05-03 09:12:00 obsr2343626 S23209196 Stationary P21 EBIRD 18.0 2.0 1 G1249915 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332435333 2021-03-30 19:13:38.458673 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 5 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-04-18 12:14:00 obsr334398 S24314985 Traveling P22 EBIRD 64.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320229472 2018-08-04 17:27:37 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Clay Pond WMA L745270 H 42.1168638 -79.1736603 2015-05-16 15:55:00 obsr1792012 S23475684 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294121503 2021-03-30 19:25:27.212017 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 3 United States US New York US-NY Richmond US-NY-085 30.0 Cameron Lake L1441085 H 40.6004365 -74.0804102 2015-01-31 11:06:00 obsr155915 S21611976 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320576902 2021-03-26 06:12:17.833181 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-05-17 07:00:00 obsr1380963 S23493857 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320705563 2021-03-19 16:19:20.977326 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Erie US-NY-029 13.0 Evangola SP L300496 H 42.6085236 -79.1111807 2015-05-17 14:51:00 obsr916033 S23500720 Stationary P21 EBIRD 306.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292100510 2021-04-01 12:32:15.282601 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-19 09:00:00 obsr1220115 S21432076 Traveling P22 EBIRD 60.0 3.219 2.0 1 G1118026 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290307514 2021-04-28 05:26:15.958627 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park--Southwest L154031 H 40.593426 -73.92352 2015-01-10 13:44:00 obsr2404047 S21289138 Traveling P22 EBIRD 134.0 1.979 2.0 1 G1105751 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302444462 2021-12-10 08:21:29.396662 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-11 09:30:00 obsr473055 S22297450 Traveling P22 EBIRD 70.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292284009 2018-08-04 16:54:49 662 species avibase-FB738385 Bufflehead Bucephala albeola 16 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-01-21 11:18:00 obsr800690 S21446081 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307568883 2021-03-30 19:13:38.458673 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-04 14:05:00 obsr2504709 S22688610 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314390772 2015-04-30 15:41:13 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 5 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-30 13:15:00 obsr1102914 S23146158 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316496093 2018-08-04 17:14:56 26890 species avibase-94A44032 European Starling Sturnus vulgaris 11 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College L1485004 H 44.4375537 -74.2530447 2015-05-06 05:45:00 obsr568671 S23266105 Stationary P21 EBIRD 270.0 5.0 1 G1254570 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299505430 2018-08-04 16:58:13 26278 species avibase-A381417F House Wren Troglodytes aedon 4 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-24 17:25:00 obsr1092576 S22065271 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300269491 2021-03-30 19:29:33.633096 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 5 United States US New York US-NY Suffolk US-NY-103 30.0 Sound Ave Farm Pond L2519483 P 40.968461 -72.675004 2015-03-01 14:13:00 obsr2485753 S22125604 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294477473 2022-02-17 14:32:23.002448 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-01 15:00:00 obsr2603801 S21639928 Traveling P22 EBIRD 40.0 1.609 2.0 1 G1132214 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312556233 2021-11-09 21:05:39.574432 23450 spuh avibase-55CCEE2D swallow sp. Hirundinidae sp. 1 United States US New York US-NY Rockland US-NY-087 30.0 Reed Pond, Pfizer Campus L3457488 P 41.0781219 -74.0227246 2015-04-21 10:10:00 obsr2346161 S23031616 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293226498 2019-11-30 13:09:26 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Dryden: Neimi Rd: E/Hanshaw Rd L3318020 P 42.50193 -76.4241117 2015-01-25 14:10:00 obsr2760150 S21541009 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319348672 2021-04-01 11:15:31.646886 3169 species avibase-0CF12F81 Yellow-billed Cuckoo Coccyzus americanus 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-13 09:00:00 obsr2078092 S23426598 Traveling P22 EBIRD 300.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288582462 2021-04-01 11:24:19.637193 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-01-02 16:10:00 obsr1545618 S21149618 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311774416 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-21 06:20:00 obsr1135516 S22978804 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292282246 2021-11-20 09:27:15.03549 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Creekwalk, Hiawatha Blvd. to lake L3077756 H 43.0668233 -76.1751186 2015-01-20 08:35:00 obsr1167884 S21445942 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309281946 2021-03-26 07:56:20.588749 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-11 09:30:00 obsr1160328 S22812878 Stationary P21 EBIRD 120.0 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294036269 2021-04-01 12:32:15.282601 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-01-30 10:15:00 obsr1160328 S21605407 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316462271 2018-08-04 17:14:59 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-06 08:56:00 obsr1201479 S23264392 Traveling P22 EBIRD 147.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311682531 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-20 17:00:00 obsr1659461 S22973086 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309565743 2021-03-24 20:04:09.481678 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Oneida US-NY-065 13.0 Verona Beach State Park, Swamp Trail L2824450 P 43.1793372 -75.7156105 2015-04-12 08:40:00 obsr660214 S22830833 Traveling P22 EBIRD 130.0 3.219 2.0 1 G1217158 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316794175 2021-03-24 19:35:34.045988 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Erie US-NY-029 13.0 Ecology & Environment, Inc. (Private) L682760 P 42.9367576 -78.6593628 2015-05-07 07:25:00 obsr48167 S23283640 Traveling P22 EBIRD 100.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301949782 2021-03-26 07:30:35.289997 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-08 08:30:00 obsr354239 S22252427 Stationary P21 EBIRD 45.0 11.0 1 G1170861 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321799452 2021-03-19 16:44:35.607263 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Hundred Acre Pond L139802 H 43.0289001 -77.5643997 2015-05-21 17:45:00 obsr934639 S23567479 Traveling P22 EBIRD 91.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320169728 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 06:28:00 obsr1189028 S23472638 Traveling P22 EBIRD 276.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299883029 2021-04-01 12:32:15.282601 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 65 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-27 10:25:00 obsr2505956 S22094883 Traveling P22 EBIRD 170.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314822027 2021-03-26 06:29:56.44369 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 2 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-01 06:08:00 obsr2595828 S23172801 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315648723 2021-04-01 10:57:06.520339 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-05-04 06:58:00 obsr2420101 S23217838 Traveling P22 EBIRD 89.0 1.609 1.0 1 G1253804 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301356934 2021-04-01 10:47:08.851048 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 10 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-07 07:15:00 obsr800690 S22206871 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296148684 2021-03-23 17:26:08.495143 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 JFK Memorial Wildlife Sanctuary L194386 H 40.6105495 -73.4519033 2015-02-11 11:00:00 obsr916370 S21772809 Traveling P22 EBIRD 150.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294322925 2015-02-01 10:14:43 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Oswego US-NY-075 13.0 Home, 27 Regan Drive L1538052 P 43.3788468 -76.545824 2015-01-18 09:00:00 obsr1769635 S21627895 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290149296 2015-01-10 10:34:20 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 4 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-01-10 08:48:00 obsr455249 S21275810 Traveling P22 EBIRD 105.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304028701 2021-03-30 19:36:57.660199 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 6 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-19 09:19:00 obsr1655171 S22421545 Traveling P22 EBIRD 82.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288600093 2018-08-04 16:52:31 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 Male, Adult (1) United States US New York US-NY Montgomery US-NY-057 13.0 Mindenville - Island L862680 P 42.9944779 -74.7209358 2015-01-02 14:35:00 obsr2694889 S21150974 Traveling P22 EBIRD 30.0 1.77 4.0 1 G1091790 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310333293 2021-03-30 19:22:51.561415 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 35 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr1982614 S22884939 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316828801 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-07 07:45:00 obsr916370 S23285426 Traveling P22 EBIRD 150.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292777028 2021-03-30 19:43:32.881136 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Westchester US-NY-119 30.0 Purdys Reservoirs L840070 H 41.3265942 -73.6621822 2015-01-23 13:35:00 obsr2688589 S21505565 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308059183 2021-04-01 12:24:14.132004 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Washington US-NY-115 13.0 Ft. Edward Yacht Basin L13170600 H 43.2682951 -73.5881413 2015-04-06 12:03:00 obsr1222746 S22723217 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309470718 2021-11-09 19:02:27.638861 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-04-12 13:30:00 obsr2103727 S22824309 Traveling P22 EBIRD 45.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288345962 2015-01-01 21:28:59 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Wayne US-NY-117 13.0 Clyde -Hunts Corners Road L3255467 P 43.1018759 -76.8670893 2015-01-01 12:25:00 obsr195058 S21130138 Traveling P22 EBIRD 10.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319439013 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:30:00 obsr294325 S23431785 Traveling P22 EBIRD 300.0 3.0 6.0 1 G1265613 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311175842 2021-11-09 21:48:00.368388 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Ulster US-NY-111 US-NY_1728 28.0 Mohonk Preserve--Shawangunk Ridge (the Gunks) L266133 H 41.7369558 -74.194517 2015-04-12 14:56:00 obsr2700277 S22940298 Incidental P20 EBIRD 1.0 1 G1225664 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320756223 2021-04-01 10:47:08.851048 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 4 United States US New York US-NY Broome US-NY-007 28.0 917 grant street L1861629 P 42.1114312 -76.0806034 2015-05-17 08:00:00 obsr1947568 S23503483 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290873229 2021-04-01 10:58:31.765174 591 species avibase-1929E1E1 Canvasback Aythya valisineria 3 United States US New York US-NY Franklin US-NY-033 14.0 Saranac Lake--Lake Flower L1509017 P 44.3247557 -74.1309928 2015-01-09 13:30:00 obsr422472 S21334626 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317866834 2021-04-01 11:15:31.646886 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys X United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-05-09 12:39:00 obsr150415 S23343909 Traveling P22 EBIRD 26.0 0.483 4.0 1 G1260346 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301391661 2021-03-24 20:33:47.533911 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 8 United States US New York US-NY Tompkins US-NY-109 28.0 ***Fitzpatrick home L124872 P 42.42879 -76.395065 2015-03-06 07:05:00 obsr2124298 S22209715 Traveling P22 EBIRD 45.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310397985 2015-04-16 10:14:49 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods, Dryden-side parking area L3270714 P 42.4803498 -76.449523 2015-04-16 08:40:00 obsr2001485 S22889516 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS451116382 2021-11-09 21:23:47.89824 7261 species avibase-86D45B8F Green Heron Butorides virescens 4 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-11 16:54:00 obsr1232026 S21776031 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288591937 2021-03-30 19:42:48.727031 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 1 United States US New York US-NY Rensselaer US-NY-083 13.0 Tomhannock Reservoir L213216 H 42.8487622 -73.548707 2015-01-02 08:50:00 obsr1735540 S21150363 Traveling P22 EBIRD 30.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322597844 2018-08-06 22:31:02 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Iroquois NWR--Swallow Hollow Trail L771567 H 43.1254425 -78.3256102 2015-05-24 10:30:00 obsr2537615 S23614894 Traveling P22 EBIRD 90.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302244729 2021-03-26 07:30:35.289997 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 8 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-10 12:07:00 obsr2211210 S22277855 Stationary P21 EBIRD 58.0 2.0 1 G1173976 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320168297 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-16 11:55:00 obsr1189028 S23472574 Traveling P22 EBIRD 81.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310219162 2015-04-15 13:24:50 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Broome US-NY-007 28.0 West Corners Marsh L1513804 H 42.1169195 -76.0743913 2015-04-15 10:20:00 obsr879105 S22877116 Stationary P21 EBIRD 5.0 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293062620 2015-01-25 00:11:46 7169 issf avibase-6A9DD06F Great Blue Heron Ardea herodias Great Blue Heron (Great Blue) Ardea herodias [herodias Group] 1 United States US New York US-NY Rensselaer US-NY-083 13.0 West Sand Lake, NY 1 L1766939 P 42.6226389 -73.6175931 2015-01-25 00:05:00 obsr2186523 S21527867 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311073480 2021-03-19 16:25:42.617988 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands L2287010 P 44.3046256 -74.0004301 2015-04-17 12:30:00 obsr2303787 S22934306 Traveling P22 EBIRD 210.0 3.219 4.0 1 G1225020 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308306544 2021-03-24 20:33:47.533911 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Tompkins US-NY-109 13.0 105 Eastern Heights Dr., Ithaca L2724192 P 42.425089 -76.455526 2015-04-07 14:07:00 obsr1318356 S22742259 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301839281 2018-08-04 16:59:06 5942 species avibase-0A0B8431 Purple Sandpiper Calidris maritima 1 United States US New York US-NY Albany US-NY-001 13.0 Mohawk River near Fonda Road L3467143 P 42.793766 -73.7143296 2015-03-08 16:20:00 obsr1787323 S22244415 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921510 2021-03-26 07:56:20.588749 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-12 16:00:00 obsr2218212 S22173324 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310877864 2021-03-26 06:52:34.887371 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 Male, Adult (1) United States US New York US-NY Niagara US-NY-063 13.0 my house L2567813 P 43.1456811 -78.6897147 2015-04-18 07:00:00 obsr621285 S22921927 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306539149 2021-12-28 15:50:27.785498 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-03-31 14:31:00 obsr606693 S22612732 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313909091 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-21 08:21:00 obsr2233270 S23116757 Traveling P22 EBIRD 459.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307141700 2021-04-01 11:54:40.172593 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 2 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-03 09:00:00 obsr666331 S22658262 Traveling P22 EBIRD 120.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288157768 2021-04-01 11:15:31.646886 279 species avibase-3E04020B Brant Branta bernicla N 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-01 08:28:00 obsr2152799 S21114062 Traveling P22 EBIRD 234.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306562857 2021-03-26 06:53:58.593564 6339 species avibase-8535345B Herring Gull Larus argentatus 7 United States US New York US-NY Oneida US-NY-065 13.0 Schneibles Inn L2783195 P 43.1647274 -75.7374541 2015-03-31 13:42:00 obsr1640315 S22614694 Stationary P21 EBIRD 44.0 1.0 1 G1199650 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295389738 2021-03-24 20:23:39.258075 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Cedar Beach L1019111 P 40.6285456 -73.3529663 2015-02-07 08:45:00 obsr247620 S21713246 Traveling P22 EBIRD 135.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315638188 2021-03-22 08:58:29.008072 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-04 06:17:00 obsr431494 S23217214 Traveling P22 EBIRD 77.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307368592 2021-03-24 20:16:00.852773 483 species avibase-85625D75 Mallard Anas platyrhynchos N 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-04 09:11:00 obsr1958124 S22674619 Traveling P22 EBIRD 8.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303609333 2015-05-09 11:58:16 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-01-14 13:30:00 obsr319738 S22388652 Traveling P22 EBIRD 45.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308720868 2021-04-01 11:49:53.573686 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 2 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay, Big Egg Marsh L722804 H 40.5963256 -73.8252819 2015-04-08 13:23:00 obsr1982614 S22774266 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299827998 2021-03-26 07:19:24.261425 483 species avibase-85625D75 Mallard Anas platyrhynchos N 4 United States US New York US-NY Steuben US-NY-101 13.0 My house, Prattsburgh NY L2470082 P 42.5299011 -77.2865868 2015-02-27 06:30:00 obsr1602357 S22090333 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306137014 2021-03-30 19:13:38.458673 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 80 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay L83 H 43.3130395 -77.7153471 2015-03-28 11:44:00 obsr1598543 S22581717 Traveling P22 EBIRD 76.0 1.287 4.0 1 G1196956 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297191018 2021-03-24 20:20:25.430732 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Schenectady US-NY-093 13.0 Karenwald L2635899 P 42.800376 -73.9004481 2015-02-15 15:05:00 obsr634949 S21865984 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307828187 2018-08-04 17:05:20 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-04-04 08:55:00 obsr711169 S22706802 Stationary P21 EBIRD 20.0 9.0 1 G1206299 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300567891 2015-03-02 17:29:30 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 Female, Adult (1) United States US New York US-NY Onondaga US-NY-067 13.0 Home L1479128 P 43.1502997 -76.3703906 2015-03-02 13:00:00 obsr2172593 S22146827 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311295069 2021-05-10 13:35:55.973042 30494 species avibase-240E3390 House Sparrow Passer domesticus 27 United States US New York US-NY Schuyler US-NY-097 13.0 Catharine Creek WMA--Rock Cabin Rd. L1359885 H 42.369661 -76.8471749 2015-04-19 10:34:00 obsr2436517 S22947527 Traveling P22 EBIRD 114.0 3.219 2.0 1 G1226340 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306478187 2021-03-23 17:00:13.087107 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Allan H. Treman State Marine Park--marina (not lakeshore or woods) L159024 H 42.4571425 -76.5143238 2015-03-31 08:20:00 obsr2001485 S22608126 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298752929 2021-03-19 16:29:59.503892 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 32 United States US New York US-NY Jefferson US-NY-045 13.0 Kelsey Creek, Watertown L273304 H 43.9906455 -75.9170911 2015-02-18 09:00:00 obsr585290 S22004224 Traveling P22 EBIRD 480.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290501411 2021-03-19 16:44:35.607263 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 150 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-11 14:20:00 obsr1962295 S21304737 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304095764 2021-03-19 16:44:35.607263 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus N 15 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-19 18:31:00 obsr334398 S22426635 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309587529 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-12 17:00:00 obsr2190210 S22832265 Traveling P22 EBIRD 60.0 1.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320460925 2018-08-06 22:30:05 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Essex US-NY-031 14.0 hulls falls rd L2837106 P 44.2383122 -73.7982559 2015-05-16 07:30:00 obsr2105231 S23487831 Traveling P22 EBIRD 270.0 2.414 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322035971 2021-03-19 16:06:54.047432 33049 species avibase-136451CF Yellow-throated Warbler Setophaga dominica X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-05-22 obsr1395007 S23582875 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307773080 2021-05-10 13:35:55.973042 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 255 United States US New York US-NY Schuyler US-NY-097 13.0 Catharine Creek WMA--Rock Cabin Rd. L1359885 H 42.369661 -76.8471749 2015-04-03 18:26:00 obsr2173269 S22702877 Traveling P22 EBIRD 47.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305936666 2021-03-23 17:18:00.959502 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Albany US-NY-001 13.0 Nott Rd. Park L5202023 P 42.68518 -73.9100504 2015-03-28 17:15:00 obsr30103 S22566972 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306090195 2021-03-23 16:52:36.900075 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-03-29 09:30:00 obsr544268 S22578110 Rusty Blackbird Spring Migration Blitz P41 EBIRD 180.0 4.828 3.0 1 G1196667 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294586472 2018-01-07 20:13:45 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 2 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-02-02 07:14:00 obsr2693145 S21648680 Stationary P21 EBIRD 32.0 2.0 1 G1133269 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318054953 2017-04-18 11:27:41 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Kings US-NY-047 Brooklyn Army Terminal Pier 4 L2598864 H 40.646519 -74.026074 2015-05-09 13:17:00 obsr1821546 S23354294 Incidental P20 EBIRD 4.0 0 G1261278 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300209906 2021-04-01 11:24:19.637193 27616 species avibase-D77E4B41 American Robin Turdus migratorius 60 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-03-01 09:10:00 obsr730231 S22120638 Traveling P22 EBIRD 3.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322367719 2018-08-06 22:30:57 622 species avibase-50566E50 Lesser Scaup Aythya affinis 5 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-05-23 11:48:00 obsr934639 S23602153 Traveling P22 EBIRD 138.0 5.633 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308851160 2018-08-04 17:08:20 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Oneida US-NY-065 14.0 Beaver Dam, Howd Rd, Camden, New York L2094585 P 43.3120796 -75.7817173 2015-04-10 09:57:00 obsr1640315 S22783802 Stationary P21 EBIRD 14.0 1.0 1 G1213234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311222482 2018-08-04 17:11:15 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Suffolk US-NY-103 30.0 Arshamomaque Pond Preserve L140131 H 41.079361 -72.4004135 2015-04-19 11:34:00 obsr2485753 S22943102 Traveling P22 EBIRD 39.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311433249 2015-04-19 21:27:49 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 Mashomack Preserve L122936 H 41.0562576 -72.2896713 2015-04-19 15:15:00 obsr1954215 S22956045 Traveling P22 EBIRD 55.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS351155197 2021-04-01 10:57:06.520339 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Essex US-NY-031 14.0 Corner of Bull Rock and Shattuck L3026671 P 43.815311 -73.498596 2015-04-21 09:52:00 obsr2693145 S25666662 Traveling P22 EBIRD 15.0 0.161 2.0 1 G1453156 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314823390 2021-04-01 11:30:42.037277 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-01 08:30:00 obsr1220115 S23172885 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320912512 2021-03-26 07:56:20.588749 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Nassau US-NY-059 30.0 Bayview Avenue, Manhasset Bay L1416657 P 40.7950657 -73.7090564 2015-05-18 11:00:00 obsr676630 S23512927 Traveling P22 EBIRD 35.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311337580 2021-04-01 11:15:31.646886 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-19 13:08:00 obsr1801902 S22950073 Traveling P22 EBIRD 167.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295033739 2021-03-26 06:55:00.227271 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 3 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua, Lake from Country Club L3195385 P 42.87136 -77.25756 2015-02-04 14:44:00 obsr1243175 S21686107 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313014474 2021-04-01 11:15:31.646886 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-25 16:00:00 obsr1731572 S23060864 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318558897 2021-03-19 16:02:45.308962 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-11 08:30:00 obsr800690 S23381308 Traveling P22 EBIRD 169.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324013423 2017-01-07 10:10:15 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Buttonwood Creek L587960 H 43.2963199 -77.7315706 2015-05-25 10:44:00 obsr1696616 S23708806 Traveling P22 EBIRD 4.0 0.05 2.0 1 G1296177 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311800623 2021-04-01 12:18:57.910168 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea N 2 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Palmer Woods L287796 H 42.4604469 -76.4789951 2015-04-21 08:20:00 obsr881968 S22980520 Traveling P22 EBIRD 80.0 1.609 7.0 1 G1230002 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289851691 2020-12-14 15:56:49.243642 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 2 United States US New York US-NY Lewis US-NY-049 13.0 Location H L4611970 P 43.940282 -75.401446 2015-01-07 08:28:00 obsr417887 S21251824 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318703338 2021-12-24 11:02:14.483178 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-11 07:56:00 obsr745890 S23389295 Traveling P22 EBIRD 105.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295391193 2021-04-01 11:54:40.172593 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 10 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-107 Mill Rd L3344341 P 40.566697 -74.110264 2015-02-07 12:15:00 obsr1958124 S21713355 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323558500 2021-04-01 11:30:42.037277 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-28 07:00:00 obsr1489009 S23677202 Traveling P22 EBIRD 150.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311180880 2021-03-26 06:21:54.883933 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 15:20:00 obsr2448957 S22940647 Traveling P22 EBIRD 60.0 1.207 3.0 1 G1225484 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304001139 2021-04-01 11:24:19.637193 279 species avibase-3E04020B Brant Branta bernicla 10 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-19 08:16:00 obsr334398 S22418984 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304897935 2021-04-01 10:55:39.308231 11528 species avibase-F3DA111C Merlin Falco columbarius 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-03-23 13:45:00 obsr2933610 S22486603 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318946227 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-08 07:00:00 obsr442686 S23403453 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314203438 2021-04-01 11:54:40.172593 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-28 16:50:00 obsr1032565 S23134875 Traveling P22 EBIRD 168.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322332098 2021-03-19 16:27:31.421791 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant--East L870144 H 42.990146 -78.2094383 2015-05-23 07:45:00 obsr393804 S23599955 Traveling P22 EBIRD 170.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294709621 2017-09-15 17:41:35 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 6 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, City Pier L357819 H 42.871907 -77.2725534 2015-01-31 13:30:00 obsr1981178 S21658290 Stationary P21 EBIRD 25.0 2.0 1 G1134157 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295346171 2021-04-01 12:14:19.266649 303 species avibase-B59E1863 Canada Goose Branta canadensis 11 United States US New York US-NY Suffolk US-NY-103 30.0 Reeves Ave. Buffalo Farm L586720 H 40.9519565 -72.6920271 2015-02-07 12:24:00 obsr2485753 S21709872 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289328768 2021-04-01 11:15:31.646886 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-01-05 13:30:00 obsr2448957 S21210612 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322323390 2021-04-01 11:14:02.420281 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 12 United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum L467369 H 44.0669903 -75.7229233 2015-05-23 07:00:00 obsr790491 S23599457 Traveling P22 EBIRD 420.0 24.14 2.0 1 G1303491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315563651 2018-08-04 17:14:37 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Essex US-NY-031 13.0 Bobcat Trail L3611406 P 44.2479351 -73.4319305 2015-05-03 14:45:00 obsr822321 S23212990 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311823356 2021-04-01 12:18:57.910168 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 4 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-04-18 17:32:00 obsr2683910 S22982218 Traveling P22 EBIRD 20.0 0.966 2.0 1 G1230105 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309172524 2021-04-01 11:49:53.573686 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-11 09:45:00 obsr2277801 S22805632 Historical P62 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296339436 2022-02-17 14:32:23.002448 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-12 13:00:00 obsr1152226 S21789782 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303577353 2015-03-16 18:58:19 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Mexico-20 Marsden Dr L3493422 P 43.523378 -76.250303 2015-03-16 18:50:00 obsr1321679 S22386147 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313746029 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 09:00:00 obsr2706811 S23030992 Traveling P22 EBIRD 120.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311257351 2015-04-29 11:51:33 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Oneida US-NY-065 13.0 Graffenburg Walk L2221935 P 43.0606105 -75.2140331 2015-04-19 10:01:00 obsr1309825 S22945242 Traveling P22 EBIRD 176.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289883687 2015-01-08 15:19:50 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Westchester US-NY-119 28.0 Brinton Brook Sanctuary L893096 H 41.2268584 -73.8992411 2015-01-08 11:15:00 obsr114791 S21254539 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311468419 2021-03-26 06:12:17.833181 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-04-19 11:30:00 obsr1380963 S22958193 Area P23 EBIRD 240.0 1.2141 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324125247 2018-08-06 22:31:28 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 S C2 S United States US New York US-NY Hamilton US-NY-041 14.0 Blue Mt. Summit L263560 H 43.8725478 -74.4011674 2015-05-30 10:10:00 obsr2937317 S23715979 Traveling P22 EBIRD 341.0 3.219 3.0 1 G1296977 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319198969 2021-03-19 16:06:54.047432 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Owasco Lake inlet area L302042 H 42.7542393 -76.4637132 2015-05-13 07:05:00 obsr943683 S23418178 Traveling P22 EBIRD 50.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301584405 2015-03-07 23:38:10 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Dam L160699 H 42.0864692 -76.8096739 2015-03-07 16:20:00 obsr1587816 S22223735 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294963308 2022-02-17 14:32:23.002448 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-04 13:00:00 obsr1711339 S21679591 Traveling P22 EBIRD 180.0 1.609 2.0 1 G1135526 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308772799 2021-03-30 19:13:38.458673 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Beatty Point L299148 H 43.2762602 -77.684471 2015-04-09 06:15:00 obsr991026 S22778171 Traveling P22 EBIRD 160.0 0.805 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294658089 2021-03-23 17:26:08.495143 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-25 11:38:00 obsr702007 S21654353 Traveling P22 EBIRD 180.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315211940 2019-01-07 15:35:30 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Canadaway Creek WMA L2266749 H 42.367272 -79.2358312 2015-05-03 08:03:00 obsr2497657 S23194535 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310612070 2021-03-26 07:30:35.289997 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-17 07:04:00 obsr1655171 S22904500 Traveling P22 EBIRD 70.0 0.644 2.0 1 G1223891 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316110486 2021-03-26 06:29:04.082451 26890 species avibase-94A44032 European Starling Sturnus vulgaris 7 United States US New York US-NY Lewis US-NY-049 14.0 Port Leyden, NY L3359032 P 43.58151 -75.3480148 2015-05-05 12:00:00 obsr2132676 S23243762 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290877537 2019-07-23 17:26:48 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 7 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-B L3288880 P 40.21933 -73.19694 2015-01-11 09:00:00 obsr782651 S21335002 Traveling P22 EBIRD 60.0 15.289 44.0 1 G1108334 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288231093 2021-11-09 22:33:07.565745 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 6 United States US New York US-NY Sullivan US-NY-105 28.0 Neversink River -Woodbourne north to Reservoir L1363573 P 41.7580474 -74.5985842 2015-01-01 12:30:00 obsr444155 S21120157 Traveling P22 EBIRD 30.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288498689 2017-08-16 16:10:26 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Cedar Beach Marina L283643 H 40.6342526 -73.3447755 2015-01-02 10:45:00 obsr1102914 S21142411 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321454324 2021-03-23 17:20:04.546757 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-13 11:00:00 obsr2475075 S23546511 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314044994 2021-11-09 21:50:48.44865 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-29 12:01:00 obsr1636520 S23125092 Traveling P22 EBIRD 26.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306683696 2021-03-26 06:07:45.516082 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 S C2 S United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-01 08:20:00 obsr128156 S22624099 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289362827 2018-08-04 16:52:46 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 6 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-01-05 07:15:00 obsr2812831 S21213220 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913327 2021-04-01 10:45:00.916278 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 6 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-19 09:30:00 obsr200707 S21417165 Traveling P22 EBIRD 120.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391533 2017-01-08 08:51:25 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 35 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College--Visitor Interpretive Center L212478 H 44.4486136 -74.2594002 2015-01-11 10:40:00 obsr835300 S21295856 Traveling P22 EBIRD 82.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293127399 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-25 12:25:00 obsr934639 S21533307 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301655509 2021-04-01 11:30:42.037277 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-08 09:35:00 obsr822430 S22228994 Traveling P22 EBIRD 160.0 4.828 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290857874 2018-11-19 00:15:51 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 06:45:00 obsr1417967 S21333246 Traveling P22 EBIRD 75.0 18.99 44.0 1 G1108327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305659597 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-27 17:30:00 obsr934639 S22546283 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304550891 2021-03-30 19:39:10.250398 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve 1st pond L630713 P 40.683925 -73.4595895 2015-03-21 14:35:00 obsr1160328 S22461260 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311155673 2021-03-31 04:01:10.517395 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 4 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 07:35:00 obsr454647 S22939055 Traveling P22 EBIRD 320.0 8.047 16.0 1 G1224971 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309442041 2021-11-09 19:47:28.367893 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 45 United States US New York US-NY Orange US-NY-071 28.0 Wickham Lake L2377339 P 41.2827085 -74.294014 2015-04-09 17:30:00 obsr1872991 S22822504 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311772960 2021-03-23 17:00:13.087107 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-04-21 07:35:00 obsr455249 S22978707 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308979505 2021-03-26 06:39:43.334073 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Harlem Meer L278127 H 40.7971185 -73.9523133 2015-04-10 13:41:00 obsr856524 S22792926 Traveling P22 EBIRD 40.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302501365 2021-03-26 07:20:31.408164 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Suffolk US-NY-103 30.0 41 Belton Road, Babylon L986538 P 40.6931311 -73.3296955 2015-03-11 07:00:00 obsr247620 S22301667 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321522945 2022-01-20 09:38:40.245267 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-20 15:39:00 obsr896341 S23550495 Traveling P22 EBIRD 63.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303480126 2021-03-24 19:28:50.176616 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 4 United States US New York US-NY Columbia US-NY-021 14.0 Larkspur Farm house (private) L3388369 P 42.1897621 -73.5989874 2015-03-16 09:30:00 obsr2842267 S22378823 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318245100 2021-03-26 07:46:52.994574 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-05-10 15:15:00 obsr2321296 S23364296 Stationary P21 EBIRD 99.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314987224 2021-03-26 06:29:56.44369 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-05-02 12:15:00 obsr1962295 S23181765 Stationary P21 EBIRD 30.0 2.0 1 G1247352 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289387519 2021-03-30 19:39:10.250398 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Nassau US-NY-059 30.0 Grant Park, Hewlett L3155768 H 40.6445543 -73.6884264 2015-01-05 10:00:00 obsr1494607 S21215187 Traveling P22 EBIRD 60.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290297620 2015-01-10 20:56:29 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-01-10 15:30:00 obsr1201479 S21288315 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304028673 2021-03-30 19:36:57.660199 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 20 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-19 09:19:00 obsr1655171 S22421545 Traveling P22 EBIRD 82.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303726685 2021-11-02 20:32:06.137153 30494 species avibase-240E3390 House Sparrow Passer domesticus 10 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-03-17 13:00:00 obsr317968 S22397611 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323138205 2021-11-09 18:11:48.679808 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY Dutchess US-NY-027 13.0 Andrew Haight Rd. L1268498 H 41.8140583 -73.645885 2015-05-24 13:14:00 obsr2343626 S23648872 Traveling P22 EBIRD 57.0 0.805 1.0 1 G1291339 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311076980 2021-04-24 09:25:32.068828 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 15:36:00 obsr924076 S22934530 Traveling P22 EBIRD 231.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310605712 2021-03-24 19:27:13.077399 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Chemung US-NY-015 28.0 Harris Hill Park L164401 H 42.12472 -76.8983 2015-04-17 08:40:00 obsr2871406 S22904055 Traveling P22 EBIRD 17.0 1.127 3.0 1 G1222661 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308953817 2021-11-09 21:30:09.663073 16788 species avibase-0A76713F Couch's Kingbird Tyrannus couchii 6 United States US New York US-NY Ulster US-NY-111 28.0 Nyquist-Harcourt Wildlife Sanctuary L1412659 H 41.7555313 -74.091749 2015-04-10 18:00:00 obsr1303376 S22791193 Traveling P22 EBIRD 60.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300865632 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Nassau US-NY-059 30.0 Thompson Place, Lynbrook L3382423 P 40.6502915 -73.6783307 2015-03-04 08:00:00 obsr2703784 S22169126 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310032115 2020-01-01 09:54:18 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Westchester US-NY-119 30.0 Sheldrake Lake (Larchmont Reservoir) L714112 H 40.9527912 -73.7738478 2015-04-14 15:48:00 obsr363163 S22864282 Traveling P22 EBIRD 64.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306144099 2021-11-09 21:23:47.89824 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-03-29 13:30:00 obsr610423 S22582271 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306768537 2021-03-26 07:46:52.994574 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-04-01 14:55:00 obsr1154 S22630104 Traveling P22 EBIRD 89.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299598768 2021-03-30 19:43:32.881136 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 12 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-25 10:40:00 obsr1327349 S22072730 Stationary P21 EBIRD 30.0 2.0 1 G1159857 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308938391 2018-08-04 17:08:21 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 10 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-10 12:15:00 obsr739254 S22790126 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309087093 2015-04-11 13:18:59 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Westchester US-NY-119 28.0 Brinton Brook Sanctuary L893096 H 41.2268584 -73.8992411 2015-04-11 09:00:00 obsr572503 S22800077 Traveling P22 EBIRD 120.0 5.633 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315426258 2021-11-15 03:06:58.889978 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 11:00:00 obsr2361317 S23205576 Traveling P22 EBIRD 150.0 4.828 2.0 1 G1249580 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307347447 2021-03-30 19:07:52.958398 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-03 14:15:00 obsr2448957 S22673039 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309438683 2021-03-24 19:47:16.07498 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 8 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-11 06:20:00 obsr2716320 S22822278 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296698127 2015-02-14 11:23:53 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-02-14 10:23:00 obsr967916 S21822058 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295936442 2015-02-10 09:19:48 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - boardwalk to white barn pond (0.04km) L1287548 P 42.480817 -76.4502794 2015-02-10 08:30:00 obsr2307843 S21756192 Traveling P22 EBIRD 5.0 0.04 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289416798 2021-04-01 11:24:19.637193 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-05 08:25:00 obsr1782363 S21217432 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297930855 2021-12-10 08:21:29.396662 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 30 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-16 12:30:00 obsr2343626 S21933251 Traveling P22 EBIRD 90.0 2.414 2.0 1 G1150447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299237605 2021-04-01 12:32:15.282601 32101 issf avibase-873DDCD2 White-crowned Sparrow Zonotrichia leucophrys White-crowned Sparrow (leucophrys) Zonotrichia leucophrys leucophrys 3 United States US New York US-NY Nassau US-NY-059 30.0 Hofstra University L639147 H 40.7145119 -73.6003128 2015-02-23 14:30:00 obsr904434 S22045064 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299455991 2015-02-24 21:09:58 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 6 CF C4 CF Female, Adult (2); Male, Adult (4) United States US New York US-NY Onondaga US-NY-067 13.0 My Birdfeeder L3249587 P 43.0098606 -76.17612 2015-02-18 13:00:00 obsr647419 S22061239 Stationary P21 EBIRD 220.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS342722797 2021-11-15 03:06:58.889978 5664 species avibase-27903EF7 Black-bellied Plover Pluvialis squatarola 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-24 18:30:00 obsr189780 S25061719 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS318802547 2021-04-01 12:32:15.282601 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-10 10:00:00 obsr1592950 S23395126 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306857929 2018-08-04 17:04:58 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-01 15:00:00 obsr1160328 S22636723 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319302711 2021-03-23 17:20:04.546757 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-05 09:00:00 obsr2475075 S23424085 Stationary P21 EBIRD 660.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315706189 2021-04-01 12:32:15.282601 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park /Hendr.Park L365070 P 40.6787341 -73.6936927 2015-05-04 08:25:00 obsr916370 S23220853 Traveling P22 EBIRD 125.0 3.541 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300115481 2021-04-01 12:11:50.996293 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Seneca US-NY-099 13.0 Stahl Rd., Fayette L3328757 P 42.85928 -76.77096 2015-02-28 14:40:00 obsr1092576 S22113357 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1162285 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299788176 2018-08-04 16:58:19 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 10 United States US New York US-NY Essex US-NY-031 13.0 Tin Pan Alley L3437247 P 43.834301 -73.42659 2015-02-26 17:03:00 obsr2693145 S22087193 Stationary P21 EBIRD 7.0 2.0 1 G1160681 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290923070 2021-02-04 13:11:09.63048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 34 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-E L3288970 P 39.52687 -72.39041 2015-01-11 12:00:00 obsr143739 S21338579 Traveling P22 EBIRD 60.0 19.795 44.0 1 G1108338 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS322212296 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-23 09:00:00 obsr481595 S23593297 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304580019 2021-11-15 03:06:58.889978 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-21 12:45:00 obsr1548221 S22463274 Traveling P22 EBIRD 122.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310325242 2021-03-26 06:17:19.712573 12258 species avibase-11783075 Monk Parakeet Myiopsitta monachus X United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-04-14 obsr2096529 S22884383 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303921956 2021-03-24 20:33:47.533911 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-03-18 18:16:00 obsr2211210 S22413083 Traveling P22 EBIRD 20.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298769800 2018-08-04 16:57:58 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 2 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-21 12:34:00 obsr1958124 S22005610 Traveling P22 EBIRD 5.0 0.322 2.0 1 G1155355 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS503645799 2017-05-23 05:25:39 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY New York US-NY-061 30.0 South St. Seaport L1793018 H 40.7042389 -74.0021634 2015-04-02 obsr203546 S37083996 Incidental P20 EBIRD 4.0 0 G2440867 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310323118 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-15 08:00:00 obsr1731572 S22884248 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308886726 2022-02-17 14:32:23.002448 303 species avibase-B59E1863 Canada Goose Branta canadensis 75 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-10 13:06:00 obsr1605975 S22786176 Traveling P22 EBIRD 135.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313059036 2015-04-30 10:51:03 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.4220913 -79.4281205 2015-04-26 08:08:00 obsr1092576 S23063683 Traveling P22 EBIRD 44.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315382588 2021-11-15 03:06:58.889978 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 13:00:00 obsr2031586 S23203255 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323672630 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-28 07:30:00 obsr1601967 S23684800 Traveling P22 EBIRD 330.0 8.047 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295380510 2021-04-01 12:14:19.266649 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 11 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree State Park L3344167 P 40.6370305 -73.2574046 2015-02-07 11:25:00 obsr1848026 S21712548 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290443578 2021-03-26 08:14:57.071052 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-01-11 12:30:00 obsr2924527 S21299902 Stationary P21 EBIRD 180.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316934863 2021-03-24 21:01:50.671145 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-07 13:30:00 obsr247620 S23291302 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321454339 2021-03-23 17:20:04.546757 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-13 11:00:00 obsr2475075 S23546511 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293053358 2015-01-27 21:12:47 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Seneca US-NY-099 13.0 US-NY-Seneca Falls-2797 Airport Rd L3315457 P 42.877481 -76.779003 2015-01-24 10:47:00 obsr1643235 S21527018 Incidental P20 EBIRD 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294704517 2018-01-07 20:13:45 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 11 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-02-03 08:57:00 obsr2420101 S21657845 Stationary P21 EBIRD 26.0 2.0 1 G1134074 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319197044 2021-04-01 12:26:53.827486 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Albany US-NY-001 13.0 Rte 155 and Normanskill L3110282 P 42.6761668 -73.9061529 2015-05-12 07:55:00 obsr634484 S23418075 Traveling P22 EBIRD 65.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307068199 2021-03-23 17:23:45.772216 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Livingston US-NY-051 13.0 Clay St. and Chase Rd., Lima L3332745 H 42.8768968 -77.5915523 2015-04-01 10:55:00 obsr528918 S22652815 Traveling P22 EBIRD 5.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319093629 2021-03-19 16:06:54.047432 5948 species avibase-A47B0BD4 Least Sandpiper Calidris minutilla N 2 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-05-09 15:06:00 obsr2683910 S23412413 Stationary P21 EBIRD 11.0 2.0 1 G1268154 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318936206 2021-03-19 16:44:35.607263 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-12 10:59:00 obsr2595828 S23402940 Traveling P22 EBIRD 46.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309725522 2021-04-01 12:45:19.712958 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Westchester US-NY-119 30.0 Backyard L1243032 P 41.1702553 -73.8428879 2015-04-12 10:00:00 obsr1540211 S22842041 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315004998 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-05-02 07:35:00 obsr1706920 S23182736 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319378386 2015-05-13 19:32:06 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 7 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-05-13 11:59:00 obsr2774009 S23428306 Traveling P22 EBIRD 35.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314299427 2015-04-30 10:43:43 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Fulton US-NY-035 13.0 8 Vanwyck St., Gloversville,N.Y.home L2979968 P 43.0465382 -74.339983 2015-04-30 10:30:00 obsr2590001 S23141043 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300361263 2021-11-09 21:57:19.381437 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Ulster US-NY-111 28.0 Sand Hill Rd L3449606 P 41.6653174 -74.1577628 2015-02-28 13:15:00 obsr1009338 S22132608 Traveling P22 EBIRD 165.0 32.187 3.0 1 G1171286 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309197576 2015-04-11 19:09:42 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-04-10 08:30:00 obsr2759466 S22807333 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979192 2021-04-01 10:45:00.916278 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe N 6 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr1348614 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304125251 2021-03-26 07:20:31.408164 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 Unknown Sex, Immature (1) United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point County Park L835192 H 41.1597479 -72.2347641 2015-03-19 09:50:00 obsr2712298 S22428880 Traveling P22 EBIRD 198.0 2.0 3.0 1 G1185506 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288981363 2018-08-04 16:52:42 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Podell Boardwalk (0.08 km) L1075029 P 42.4782515 -76.4511698 2015-01-04 09:27:00 obsr2307843 S21183403 Traveling P22 EBIRD 5.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310385691 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-16 07:07:00 obsr152435 S22888644 Traveling P22 EBIRD 110.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293215412 2021-04-01 10:55:39.308231 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-01-25 11:41:00 obsr2588479 S21540147 Stationary P21 EBIRD 22.0 14.0 1 G1123069 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309588995 2019-07-24 17:36:25 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 325 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr2906952 S22832361 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS307555733 2021-04-01 11:15:31.646886 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-04 06:36:00 obsr2404047 S22687656 Traveling P22 EBIRD 370.0 6.437 2.0 1 G1205525 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522831 2021-03-23 16:39:03.255227 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 4 United States US New York US-NY Richmond US-NY-085 Oakwood Beach--tidal marshes, NW to Mill Rd. L2167041 H 40.5494903 -74.1131688 2015-04-08 10:06:00 obsr155915 S22758868 Traveling P22 EBIRD 7.0 0.322 2.0 1 G1211599 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298198307 2021-03-26 07:20:31.408164 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 5 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-02-14 06:30:00 obsr1592950 S21955929 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315807823 2021-04-01 11:15:31.646886 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus N 10 United States US New York US-NY Kings US-NY-047 Owls Head Park L304833 H 40.6403687 -74.0322153 2015-05-04 07:40:00 obsr2731066 S23226350 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321067210 2015-05-18 20:24:49 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Albany US-NY-001 13.0 Albany St., near Mabey's Self Storage L2929139 P 42.729795 -73.860698 2015-05-09 12:25:00 obsr119187 S23522406 Stationary P21 EBIRD 5.0 2.0 1 G1278304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313334523 2021-03-19 16:44:35.607263 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-04-26 14:41:00 obsr2945658 S23080176 Traveling P22 EBIRD 107.0 8.047 3.0 1 G1237679 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307545843 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-04 09:00:00 obsr598381 S22686936 Traveling P22 EBIRD 140.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301395611 2021-03-26 07:07:10.758746 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Richmond US-NY-085 30.0 Lemon Creek, bridge at Hylan Blvd. L916052 H 40.517649 -74.2011237 2015-03-07 09:40:00 obsr1958124 S22210033 Traveling P22 EBIRD 20.0 0.483 2.0 1 G1169014 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294245898 2021-04-01 11:27:18.37144 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Montgomery US-NY-057 13.0 Stone Arabia Rd L3330307 P 42.9518053 -74.5661831 2015-01-31 15:40:00 obsr1708031 S21621921 Traveling P22 EBIRD 20.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317546889 2021-08-17 17:04:49.472211 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 12 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-08 19:30:00 obsr991026 S23326624 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293256296 2021-03-30 19:29:33.633096 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Suffolk US-NY-103 30.0 Swan Lake, East Patchogue L279859 H 40.770108 -72.9932633 2015-01-25 12:00:00 obsr1585511 S21543236 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312083886 2021-04-01 11:15:31.646886 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Kings US-NY-047 Owls Head Park L304833 H 40.6403687 -74.0322153 2015-04-22 10:15:00 obsr2078092 S22999018 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307381517 2021-03-30 13:50:38.713554 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 15 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-04 09:23:00 obsr2574755 S22675572 Traveling P22 EBIRD 54.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311791107 2019-03-04 17:55:09 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-21 08:30:00 obsr1918430 S22979848 Traveling P22 EBIRD 15.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323101915 2021-04-01 11:15:31.646886 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-26 07:00:00 obsr454647 S23646482 Traveling P22 EBIRD 240.0 3.219 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310092727 2021-11-09 19:57:48.990233 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-11 12:01:00 obsr2683910 S22868596 Traveling P22 EBIRD 20.0 0.322 2.0 1 G1219970 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309600892 2021-03-19 16:19:20.977326 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Erie US-NY-029 13.0 US-NY-Derby-7225-7451 Lakeshore Rd L3559895 P 42.684447 -79.034787 2015-04-12 09:34:00 obsr916033 S22833139 Traveling P22 EBIRD 16.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308106219 2021-11-09 19:45:59.882793 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 Unknown Sex, Immature (1) United States US New York US-NY Orange US-NY-071 28.0 Otisville swamp L2119430 P 41.4700009 -74.495759 2015-04-06 08:40:00 obsr986936 S22726909 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310663937 2021-03-24 20:49:55.752669 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-04-17 12:28:00 obsr1721609 S22907778 Stationary P21 EBIRD 62.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310715606 2021-03-24 20:23:39.258075 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-04-17 16:41:00 obsr2485753 S22911141 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307175450 2021-11-09 00:38:34.069905 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-03-30 08:30:00 obsr2133003 S22660566 Traveling P22 EBIRD 150.0 2.414 9.0 1 G1202639 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300004491 2021-03-26 07:30:35.289997 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 12 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-28 09:20:00 obsr800690 S22103661 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305242350 2021-03-26 07:19:24.261425 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 1 United States US New York US-NY Steuben US-NY-101 13.0 My house, Prattsburgh NY L2470082 P 42.5299011 -77.2865868 2015-03-25 13:45:00 obsr1602357 S22513857 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298220700 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 Male, Adult (2); Female, Adult (3) United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-18 10:04:00 obsr904434 S21957850 Traveling P22 EBIRD 110.0 5.954 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310326669 2019-07-23 17:28:19 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr238853 S22884499 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033311 2018-08-04 16:54:02 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica X United States US New York US-NY Seneca US-NY-099 13.0 Cayuga Lake, N end from Lake Road L2728869 H 42.91991 -76.749 2015-01-19 12:15:00 obsr1544235 S21426763 Traveling P22 EBIRD 30.0 8.047 2.0 1 G1116522 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316728312 2021-03-26 07:46:52.994574 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-06 16:56:00 obsr325436 S23279763 Traveling P22 EBIRD 183.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS432191289 2021-03-19 16:44:35.607263 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-03-14 obsr2326876 S31756204 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290115702 2021-04-01 11:24:19.637193 5962 species avibase-4A3B2CFF Short-billed Dowitcher Limnodromus griseus 4 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-09 07:40:00 obsr1782363 S21272952 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295216249 2018-08-04 16:55:44 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 39 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-02-06 13:47:00 obsr502830 S21698976 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298836997 2021-12-10 08:21:29.396662 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-01-24 12:30:00 obsr2193510 S22011116 Traveling P22 EBIRD 135.0 9.656 15.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291691786 2021-03-19 16:27:31.421791 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Iroquois NWR--Swallow Hollow Trail L771567 H 43.1254425 -78.3256102 2015-01-18 13:28:00 obsr2588479 S21400089 Traveling P22 EBIRD 54.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319559017 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 06:35:00 obsr2188716 S23438975 Traveling P22 EBIRD 390.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308423593 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 22 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-04-07 obsr1591201 S22751264 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288190133 2018-08-04 16:52:23 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Nassau US-NY-059 30.0 The Links, North Hills L1413680 P 40.7637038 -73.6753561 2015-01-01 13:10:00 obsr1760429 S21116664 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323282456 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-05-27 05:10:00 obsr1154 S23658303 Traveling P22 EBIRD 58.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296234476 2018-08-04 16:56:07 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River, Riverwalk Plaza L3479883 H 42.1255097 -77.961348 2015-02-11 16:30:00 obsr2700440 S21779596 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304400122 2021-03-30 06:01:28.020715 7200 species avibase-49D9148A Great Egret Ardea alba 2 United States US New York US-NY Suffolk US-NY-103 30.0 Avon Lake, Amityville L3265581 H 40.6748285 -73.4134072 2015-03-21 13:30:00 obsr544268 S22450080 Traveling P22 EBIRD 10.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314545411 2021-04-01 12:18:57.910168 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Palmer Woods L287796 H 42.4604469 -76.4789951 2015-04-30 16:45:00 obsr71667 S23156334 Traveling P22 EBIRD 105.0 0.805 2.0 1 G1245189 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308208275 2018-08-04 17:06:19 30494 species avibase-240E3390 House Sparrow Passer domesticus 13 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-07 07:03:00 obsr1222746 S22734969 Rusty Blackbird Spring Migration Blitz P41 EBIRD 77.0 1.046 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304487779 2021-04-01 11:54:40.172593 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-03-21 18:30:00 obsr1958124 S22456485 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321746208 2021-03-26 06:21:54.883933 7127 species avibase-13E9F9B4 American Bittern Botaurus lentiginosus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-21 07:20:00 obsr1152226 S23564240 Traveling P22 EBIRD 270.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295566313 2021-04-01 10:47:08.851048 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L3348863 P 42.0969951 -76.0031864 2015-02-08 09:21:00 obsr1764243 S21727292 Traveling P22 EBIRD 271.0 33.795 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294801360 2021-03-26 07:53:57.664705 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 3 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-02-02 16:18:00 obsr1060479 S21666305 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313041965 2021-03-24 21:12:31.336509 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-04-25 07:04:00 obsr1839967 S23062629 Traveling P22 EBIRD 480.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1097182186 2021-03-17 20:57:42.714388 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-05-20 09:30:00 obsr2155450 S83593089 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305613132 2021-03-24 20:20:25.430732 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 4 United States US New York US-NY Schenectady US-NY-093 13.0 Helen Court L2445371 P 42.8696739 -73.9155865 2015-03-27 13:45:00 obsr481595 S22542754 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301781992 2018-08-04 16:59:05 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-08 14:03:00 obsr59643 S22240075 Stationary P21 EBIRD 60.0 11.0 1 G1170855 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306779923 2021-03-26 07:42:06.558742 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2462 United States US New York US-NY Washington US-NY-115 13.0 Fort Miller, NY L2588693 P 43.1546669 -73.5772634 2015-04-01 11:03:00 obsr1222746 S22631070 Traveling P22 EBIRD 79.0 3.219 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315323090 2021-03-19 16:25:42.617988 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Essex US-NY-031 13.0 Noblewood Park L191517 H 44.3548774 -73.356574 2015-05-03 11:54:00 obsr822321 S23200149 Traveling P22 EBIRD 111.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307687576 2021-03-19 16:32:34.732091 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-05 09:57:00 obsr152435 S22696744 Traveling P22 EBIRD 117.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298427701 2021-04-01 12:32:15.282601 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-19 10:30:00 obsr2207991 S21976284 Traveling P22 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320317662 2015-05-16 20:32:43 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-North Harmony-5899–5973 Ramsey Rd L3648447 P 42.139743 -79.447443 2015-05-16 19:10:00 obsr1092576 S23480212 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321951946 2015-05-22 12:45:14 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Genesee US-NY-037 13.0 buckman rd L3663572 P 42.8780502 -78.0828037 2015-05-22 10:15:00 obsr393804 S23577292 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310982592 2021-04-01 12:32:15.282601 406 species avibase-27B2749A Wood Duck Aix sponsa X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-18 12:00:00 obsr2207991 S22928370 Traveling P22 EBIRD 150.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316002304 2016-03-06 22:55:23 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 3 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-05-05 05:25:00 obsr1154 S23237716 Traveling P22 EBIRD 36.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311453519 2021-04-01 11:30:42.037277 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 24 S C2 S United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-19 06:17:00 obsr924076 S22957285 Traveling P22 EBIRD 699.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298215638 2021-03-26 06:07:45.516082 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo -- NW perimeter (Restricted Access) L3396578 P 40.8546937 -73.8800722 2015-02-18 11:00:00 obsr128156 S21957504 Traveling P22 EBIRD 15.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305794283 2021-11-09 18:45:26.997771 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Dutchess US-NY-027 13.0 Fowler rd L3520252 P 41.7838411 -73.7435174 2015-03-28 09:30:00 obsr2862523 S22556372 Traveling P22 EBIRD 120.0 2.414 9.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314189394 2021-03-26 07:52:59.845315 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-28 07:30:00 obsr1000124 S23133940 Area P23 EBIRD 75.0 2.59 2.0 1 G1243713 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296861093 2021-11-09 21:57:09.307176 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus X United States US New York US-NY Ulster US-NY-111 28.0 search for Gyr roadside route L3371091 P 41.6264784 -74.2098141 2015-02-14 10:30:00 obsr1588136 S21836797 Traveling P22 EBIRD 360.0 56.327 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317557217 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 9 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 05:40:00 obsr2321296 S23327421 Traveling P22 EBIRD 290.0 4.828 1.0 1 G1258875 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314179699 2021-04-01 11:47:43.260314 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-26 07:00:00 obsr1831959 S23133369 Traveling P22 EBIRD 420.0 0.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304442851 2018-08-04 17:01:45 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 11 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-03-18 11:00:00 obsr1079517 S22452995 Area P23 EBIRD 35.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315513663 2021-03-26 06:29:56.44369 483 species avibase-85625D75 Mallard Anas platyrhynchos N 3 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-03 06:33:00 obsr2595828 S23210412 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291447210 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Monroe US-NY-055 13.0 42.9934x-77.6458 - Jan 17, 2015, 12:45 PM L3297981 P 42.993407 -77.64584 2015-01-17 12:25:00 obsr991026 S21381169 Stationary P21 EBIRD 68.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313522229 2021-04-01 10:47:08.851048 7011 species avibase-534FB490 Northern Gannet Morus bassanus 3 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-04-27 07:30:00 obsr1830659 S23092078 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1167371277 2021-05-25 20:33:40.402946 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 12 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-03 08:30:00 obsr2155450 S88993741 Traveling P22 EBIRD 105.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311323184 2021-03-26 06:21:54.883933 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 10:40:00 obsr2519357 S22949188 Traveling P22 EBIRD 260.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310954089 2021-01-16 12:21:17.683802 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Washington US-NY-115 13.0 Eldridge Ln, Fort Ann, NY L1475167 P 43.3518828 -73.4459553 2015-04-18 12:19:00 obsr1222746 S22926633 Traveling P22 EBIRD 26.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316093768 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 10:02:00 obsr2149836 S23241503 Traveling P22 EBIRD 69.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316145060 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L785945 P 40.783661 -73.9633942 2015-05-05 07:30:00 obsr2883401 S23245574 Traveling P22 EBIRD 420.0 6.437 16.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307755001 2019-10-25 15:46:48 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 19 United States US New York US-NY St. Lawrence US-NY-089 13.0 Oak Point Hwy pullout, Hammond L1390124 H 44.5225945 -75.7411393 2015-04-05 12:20:00 obsr1558090 S22701474 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290716754 2021-03-23 17:26:08.495143 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 14 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-11 15:00:00 obsr2175245 S21322086 Traveling P22 EBIRD 75.0 3.219 6.0 1 G1107399 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316716820 2015-05-07 21:20:37 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-05-06 07:30:00 obsr2978565 S23279125 Traveling P22 EBIRD 270.0 0.805 18.0 1 G1254989 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295478301 2015-02-07 23:04:10 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Delaware US-NY-025 28.0 NY, Del, 3205 Roses Brook Road L3343054 P 42.3272656 -74.7052657 2015-02-06 10:40:00 obsr2216678 S21720384 Stationary P21 EBIRD 3.0 3.0 1 G1138450 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314637339 2021-04-01 11:15:31.646886 7261 species avibase-86D45B8F Green Heron Butorides virescens N 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:05:00 obsr2514491 S23161629 Traveling P22 EBIRD 120.0 2.414 3.0 1 G1245777 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302919930 2015-03-13 18:30:43 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 5 United States US New York US-NY Suffolk US-NY-103 30.0 Meadow Lane L1895814 P 40.8562823 -72.4337526 2015-03-13 16:30:00 obsr1864342 S22333878 Stationary P21 EBIRD 10.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317743939 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 17 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-09 15:40:00 obsr1439545 S23337424 Traveling P22 EBIRD 180.0 6.437 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314161978 2018-08-04 17:13:03 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-29 17:00:00 obsr544268 S23132226 Traveling P22 EBIRD 80.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309194605 2021-03-24 20:58:53.646623 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-11 15:30:00 obsr72341 S22807124 Stationary P21 EBIRD 200.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320843178 2021-04-01 12:31:09.823741 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 Letchworth SP--Trail No. 17 L3653210 H 42.6868725 -77.9552157 2015-05-17 06:00:00 obsr2240964 S23509229 Traveling P22 EBIRD 360.0 27.359 2.0 1 G1277797 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306308461 2021-03-23 17:22:05.708166 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 3 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-29 07:23:00 obsr1000124 S22594680 Area P23 EBIRD 65.0 2.59 2.0 1 G1198834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS648363587 2021-12-03 21:50:44.732892 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-01-25 10:30:00 obsr280167 S47844474 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290257575 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-10 14:39:00 obsr870166 S21285155 Traveling P22 EBIRD 85.0 0.805 2.0 1 G1103898 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316853167 2018-08-06 22:29:07 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Columbia US-NY-021 13.0 Olana State Historic Site L357372 H 42.2183005 -73.8287207 2015-05-07 10:50:00 obsr481595 S23286649 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288679336 2021-11-09 18:33:57.518275 26890 species avibase-94A44032 European Starling Sturnus vulgaris 400 United States US New York US-NY Dutchess US-NY-027 28.0 Sugar Maple Farm, Poughquag L2506310 P 41.59521 -73.69676 2015-01-01 15:00:00 obsr1732267 S21157076 Stationary P21 EBIRD 5.0 2.0 1 G1108980 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300839508 2015-03-04 00:03:00 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 40 United States US New York US-NY Chemung US-NY-015 28.0 Dann Boulevard T Veteran L285440 P 42.2315257 -76.7892744 2015-02-28 09:06:00 obsr1587816 S22166794 Traveling P22 EBIRD 23.0 2.092 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305689350 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-03-22 11:00:00 obsr2319444 S22548578 Traveling P22 EBIRD 300.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299105468 2021-03-24 20:58:53.646623 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-02-22 11:45:00 obsr72341 S22034943 Stationary P21 EBIRD 330.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321305246 2021-11-15 03:06:58.889978 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-19 16:30:00 obsr2031586 S23537222 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316234648 2021-03-26 07:56:20.588749 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 3 United States US New York US-NY Nassau US-NY-059 30.0 bethpage bikeway, south Farmingdale, high school entrance L3607802 P 40.7106866 -73.4552979 2015-05-05 18:00:00 obsr798147 S23251608 Traveling P22 EBIRD 60.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289517442 2021-11-09 20:12:16.773384 6339 species avibase-8535345B Herring Gull Larus argentatus 8 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-01-05 14:16:00 obsr1912104 S21225511 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301263573 2015-03-10 16:24:53 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach--West L519918 H 40.5830444 -73.93058 2015-03-06 15:30:00 obsr454647 S22198693 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312386376 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-22 06:00:00 obsr150865 S23019565 Traveling P22 EBIRD 210.0 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310443968 2015-04-16 18:51:04 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Niagara US-NY-063 13.0 Joseph Davis SP L324316 H 43.2139755 -79.0390788 2015-04-16 12:22:00 obsr2588479 S22892468 Traveling P22 EBIRD 94.0 0.322 3.0 1 G1222150 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294462178 2021-12-10 08:21:29.396662 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 5 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-01 08:30:00 obsr114791 S21638728 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314731509 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-01 15:40:00 obsr2908667 S23167151 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307837055 2021-11-09 21:50:48.44865 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-05 16:30:00 obsr1588136 S22707409 Traveling P22 EBIRD 45.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309720027 2021-03-30 19:07:52.958398 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-13 08:13:00 obsr1605975 S22841669 Traveling P22 EBIRD 242.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293793166 2021-03-23 17:22:05.708166 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-25 07:55:00 obsr1000124 S21585895 Area P23 EBIRD 33.0 2.59 2.0 1 G1127993 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS341668819 2015-09-11 15:26:19 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Essex US-NY-031 13.0 125 Pine Springs Drive L3174221 P 43.8320347 -73.4437966 2015-04-09 obsr822321 S24983413 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314002578 2021-03-23 17:00:13.087107 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 2 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, 212 Tareyton L252844 P 42.4724094 -76.4601243 2015-04-29 07:24:00 obsr2307843 S23122678 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307106640 2020-05-16 18:11:44 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Otsego US-NY-077 28.0 207 Stoller Hill Rd L3359197 P 42.7034192 -75.0299799 2015-04-03 07:36:00 obsr131845 S22655676 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302222006 2022-03-05 22:03:50.715584 26109 species avibase-BAC33609 Brown Creeper Certhia americana 17 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-10 10:00:00 obsr444155 S22275186 Traveling P22 EBIRD 150.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288327874 2018-08-04 16:52:24 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Suffolk US-NY-103 30.0 Setauket Harbor L3250300 P 40.948853 -73.1009245 2015-01-01 13:40:00 obsr2448785 S21128644 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317732558 2021-03-26 06:17:19.712573 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-09 06:50:00 obsr736608 S23336824 Traveling P22 EBIRD 260.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309709982 2021-03-26 07:07:10.758746 6610 species avibase-6C50988A Red-throated Loon Gavia stellata N 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-13 11:54:00 obsr1958124 S22841023 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288620264 2021-03-23 17:22:05.708166 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Danube Grasslands L3258957 P 42.9740616 -74.7566307 2015-01-02 15:15:00 obsr1708031 S21152749 Traveling P22 EBIRD 100.0 14.967 6.0 1 G1091768 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313730459 2018-08-04 17:12:35 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Tompkins US-NY-109 28.0 Thomas Rd., south (Six Mile Creek ponds & marsh) L388439 H 42.4020377 -76.3778114 2015-04-28 08:21:00 obsr2074043 S23105363 Traveling P22 EBIRD 19.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308887386 2021-03-23 16:21:52.613913 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 H C2 H Male, Adult (4) United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--Bunker Hill Rd. X Coleman Rd. [Clifton Springs_NE] L978886 P 42.9842756 -77.1518862 2015-04-10 11:32:00 obsr606693 S22786225 Traveling P22 EBIRD 3.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296339447 2022-02-17 14:32:23.002448 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-12 13:00:00 obsr1152226 S21789782 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304512744 2021-03-26 08:14:57.071052 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-03-21 09:30:00 obsr2918150 S22458303 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322554844 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 10 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-24 05:30:00 obsr2233143 S23612590 Area P23 EBIRD 510.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309339501 2021-03-26 07:20:31.408164 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 20 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-04-12 08:00:00 obsr2011512 S22816504 Traveling P22 EBIRD 90.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318395623 2021-04-01 11:15:31.646886 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-10 12:30:00 obsr2448957 S23372408 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298496777 2017-08-15 17:00:56 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Oneida US-NY-065 13.0 US-NY-Barneveld-5-51 Blue Heron Rd L3384073 P 43.215149 -75.169187 2015-02-19 16:00:00 obsr403939 S21982185 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291306370 2021-03-26 06:39:43.334073 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-16 12:45:00 obsr150865 S21370053 Traveling P22 EBIRD 195.0 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312457280 2021-04-01 11:15:31.646886 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 08:40:00 obsr1601967 S23024348 Traveling P22 EBIRD 295.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312144376 2021-03-26 07:20:31.408164 11371 species avibase-75600969 Northern Flicker Colaptes auratus N 12 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L635183 H 40.8348529 -72.6153374 2015-04-22 15:30:00 obsr717785 S23003008 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306402965 2021-04-01 12:18:57.910168 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-03-28 17:55:00 obsr2683910 S22602021 Traveling P22 EBIRD 62.0 2.897 2.0 1 G1198726 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292948048 2021-03-24 20:33:47.533911 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-01-24 15:17:00 obsr730231 S21519255 Stationary P21 EBIRD 29.0 2.0 1 G1121223 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305482804 2015-03-26 19:03:42 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Saratoga US-NY-091 13.0 Schuylerville-South L3516779 P 43.0628289 -73.5886091 2015-03-26 15:10:00 obsr2186523 S22532743 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312637056 2021-11-09 20:14:19.755363 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Orange US-NY-071 US-NY_853 28.0 Sterling Forest SP--Lakeville Trail L553998 H 41.1935321 -74.2589736 2015-04-23 16:35:00 obsr2346161 S23037503 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304879836 2021-04-01 12:18:57.910168 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-03-23 11:06:00 obsr2871406 S22485259 Stationary P21 EBIRD 10.0 2.0 1 G1190190 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310375367 2021-03-30 19:22:51.561415 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 14 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr1175815 S22887907 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303912465 2021-11-09 19:51:09.255083 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-01-14 16:00:00 obsr186871 S22412381 Stationary P21 EBIRD 80.0 2.0 1 G1184376 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311165323 2021-11-09 21:30:58.952293 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Ulster US-NY-111 13.0 Esopus Bend Nature Preserve L1422709 H 42.069482 -73.9586939 2015-04-19 07:43:00 obsr118701 S22939668 Traveling P22 EBIRD 82.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316100901 2021-04-01 11:30:42.037277 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-05 07:00:00 obsr1220115 S23243278 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312031976 2021-04-01 10:45:00.916278 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 9 S C2 S United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-22 08:00:00 obsr128156 S22995867 Rusty Blackbird Spring Migration Blitz P41 EBIRD 40.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309764934 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-04-02 13:15:00 obsr2475766 S22845444 Traveling P22 EBIRD 40.0 0.805 12.0 1 G1201660 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303576643 2021-11-09 21:50:48.44865 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-16 16:00:00 obsr610423 S22386096 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289646717 2015-01-07 10:16:56 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 2 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-01-07 09:00:00 obsr2172593 S21235951 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306985063 2021-04-01 12:32:15.282601 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 14 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-02 10:40:00 obsr647628 S22646259 Traveling P22 EBIRD 270.0 8.047 5.0 1 G1201687 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308904143 2021-11-09 19:57:48.795138 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 14 United States US New York US-NY Orange US-NY-071 28.0 River Rd., Montgomery L3555349 H 41.5441694 -74.2160477 2015-04-10 13:56:00 obsr2574755 S22787451 Stationary P21 EBIRD 167.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303607415 2021-03-26 06:29:56.44369 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 18 United States US New York US-NY Monroe US-NY-055 13.0 Lehigh Valley Trail at E Henrietta Rd. L3461801 H 43.0258149 -77.630397 2015-03-16 17:50:00 obsr934639 S22388492 Traveling P22 EBIRD 40.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319198789 2018-08-06 22:29:47 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-13 05:57:00 obsr1165633 S23418171 Traveling P22 EBIRD 117.0 5.793 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316070741 2021-11-15 03:06:58.889978 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 obsr2192726 S23241669 Historical P62 EBIRD 1 G1253027 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307417087 2019-04-19 13:17:53 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-04 09:45:00 obsr481595 S22678200 Traveling P22 EBIRD 105.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307938990 2021-11-09 20:51:06.773494 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Rockland US-NY-087 28.0 Kakiat County Park L1023278 H 41.1461171 -74.11466 2015-04-06 07:05:00 obsr2346161 S22714954 Traveling P22 EBIRD_PA 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313065556 2021-03-26 06:09:25.361188 456 species avibase-D201EB72 American Wigeon Mareca americana N 4 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-04-26 08:30:00 obsr879105 S23064082 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305740323 2021-03-26 07:30:35.289997 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom36 L3513978 H 42.4167743 -76.3513288 2015-03-28 08:20:00 obsr1318356 S22552488 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312753524 2021-12-10 08:21:29.396662 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-04-25 06:30:00 obsr258431 S23045438 Traveling P22 EBIRD 253.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294214027 2021-03-30 19:03:28.117389 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr1655171 S21619153 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289483727 2021-03-26 06:29:56.44369 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Monroe US-NY-055 13.0 Oakmark Circle L3183126 P 43.0820381 -77.575922 2015-01-06 11:00:00 obsr2290061 S21222821 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310771499 2021-05-10 13:22:42.125601 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--DIL Woods & Mohawk Rd. L99395 H 42.4959541 -76.4513443 2015-04-17 19:55:00 obsr2200680 S22914960 Stationary P21 EBIRD 30.0 5.0 1 G1223458 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312292855 2021-03-23 17:40:24.452972 26278 species avibase-A381417F House Wren Troglodytes aedon 5 S C2 S Unknown Sex, Adult (5) United States US New York US-NY Warren US-NY-113 14.0 6 Vanare Lane lake luzerne ny L1615171 P 43.3733902 -73.7825699 2015-04-21 08:45:00 obsr2685359 S23013042 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305594290 2015-03-27 12:39:26 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 2 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-03-27 12:37:00 obsr1349676 S22541315 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288328246 2022-02-04 06:14:13.892644 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 3 Male, Adult (3) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-01-01 08:23:00 obsr1548221 S21128671 Traveling P22 EBIRD 69.0 2.575 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303365473 2021-04-01 11:54:40.172593 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N 100 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-03-15 18:20:00 obsr1958124 S22369290 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312715560 2021-03-26 07:07:10.758746 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-25 06:14:00 obsr1958124 S23042874 Traveling P22 EBIRD 7.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320178146 2021-03-24 19:48:44.880783 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-16 05:43:00 obsr1410564 S23473034 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306280202 2019-10-25 16:17:24 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-Potsdam-136-280 Waite Rd L3525550 P 44.663917 -75.066745 2015-03-30 11:15:00 obsr2398160 S22592669 Stationary P21 EBIRD 1.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304854391 2021-03-23 17:26:08.495143 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 5 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-23 08:30:00 obsr369788 S22483352 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324009586 2021-04-01 11:15:31.646886 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 1 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-30 09:36:00 obsr150415 S23708570 Traveling P22 EBIRD 115.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319012272 2021-03-19 16:08:39.161312 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 Male, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.4220913 -79.4281205 2015-05-07 08:30:00 obsr2592466 S23407118 Traveling P22 EBIRD 210.0 3.219 3.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS304451835 2021-03-26 06:11:29.8335 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Cayuga US-NY-011 13.0 Harris Park, Cayuga L388115 H 42.917605 -76.7300177 2015-03-21 12:34:00 obsr887540 S22453701 Stationary P21 EBIRD 25.0 10.0 1 G1198797 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300235372 2021-09-03 19:22:31.034431 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-03-01 08:38:00 obsr2497657 S22122887 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290828664 2015-01-13 12:38:42 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Ontario US-NY-069 13.0 east street L3147087 P 42.8983836 -77.2684765 2015-01-13 12:05:00 obsr2979658 S21330606 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761817 2021-03-26 07:56:20.588749 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-26 09:00:00 obsr2218212 S22629538 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292080332 2021-04-01 12:14:19.266649 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 Male, Unknown Age (1) United States US New York US-NY Suffolk US-NY-103 West Sayville Golf Course L2053285 P 40.7246244 -73.1003666 2015-01-17 13:10:00 obsr2934754 S21430364 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309010566 2021-03-24 20:33:47.533911 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-10 18:35:00 obsr241086 S22795184 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1214077 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288522352 2021-11-09 18:43:18.09306 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Dutchess US-NY-027 28.0 Beach Road, Poughquag, NY L3257981 P 41.6228218 -73.6704111 2015-01-01 12:10:00 obsr763723 S21144414 Traveling P22 EBIRD 2.0 0.322 3.0 1 G1091101 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317688533 2021-04-01 11:15:31.646886 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:40:00 obsr41879 S23334473 Traveling P22 EBIRD 560.0 15.771 6.0 1 G1259504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318703907 2018-08-06 22:29:40 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-11 09:52:00 obsr745890 S23389342 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323190463 2021-04-01 11:24:19.637193 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-05-07 06:29:00 obsr408487 S23652345 Traveling P22 EBIRD 42.0 0.483 2.0 1 G1291692 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300119496 2021-12-10 08:21:29.396662 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-28 12:30:00 obsr1135516 S22113681 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306243988 2021-03-23 17:00:13.087107 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-03-29 09:00:00 obsr67057 S22589777 Stationary P21 EBIRD 20.0 4.0 1 G1197078 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312319701 2021-03-30 19:28:38.115458 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-19 09:00:00 obsr2287860 S23014886 Traveling P22 EBIRD 60.0 3.219 4.0 1 G1232811 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305602171 2021-03-26 06:09:25.361188 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 2 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-03-27 09:00:00 obsr1830659 S22541878 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293110934 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 35 United States US New York US-NY Kings US-NY-047 Gravesend Bay, southern parking lot L1847433 H 40.5972024 -74.0049123 2015-01-25 07:50:00 obsr350767 S21532012 Traveling P22 EBIRD 45.0 0.322 3.0 1 G1122481 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318352480 2021-04-01 10:45:00.916278 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-05-10 11:00:00 obsr2114161 S23370023 Traveling P22 EBIRD 240.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293739628 2021-03-26 06:29:56.44369 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe N 12 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-28 16:23:00 obsr934639 S21581638 Traveling P22 EBIRD 40.0 2.816 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298967317 2021-11-09 22:39:47.565044 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Sullivan US-NY-105 28.0 Rondout Reservoir (Sullivan Co.) L2693079 H 41.8604243 -74.5100577 2015-02-22 09:30:00 obsr444155 S22021618 Traveling P22 EBIRD 20.0 3.219 2.0 1 G1156251 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295403742 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-07 07:55:00 obsr41879 S21714311 Traveling P22 EBIRD 240.0 8.047 3.0 1 G1138068 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303556900 2018-08-04 17:01:34 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-03-16 10:55:00 obsr1079517 S22384700 Area P23 EBIRD 45.0 16.1874 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311930477 2021-03-30 19:07:52.958398 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 15:00:00 obsr327318 S22989025 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313228086 2021-04-01 11:27:18.37144 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 6 United States US New York US-NY Montgomery US-NY-057 13.0 West Ames Rd., horse farm L1208609 H 42.8466304 -74.6416926 2015-04-26 09:00:00 obsr777630 S23073525 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292703247 2018-08-04 16:54:49 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 22 United States US New York US-NY Oswego US-NY-075 Oswego Harbor L247908 H 43.4658286 -76.5149873 2015-01-21 11:45:00 obsr438598 S21499944 Stationary P21 EBIRD 55.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304695517 2021-11-15 03:06:58.889978 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-21 11:48:00 obsr93451 S22471788 Traveling P22 EBIRD 120.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306160707 2021-11-09 18:45:27.186304 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Dutchess US-NY-027 13.0 Kidd lane L3524362 P 42.0470539 -73.899461 2015-03-29 17:00:00 obsr2862523 S22583508 Stationary P21 EBIRD 3.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308509875 2021-03-23 17:00:13.087107 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 9 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-27 08:57:00 obsr711169 S22757971 Stationary P21 EBIRD 30.0 4.0 1 G1211349 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313425842 2018-12-27 13:19:22 32955 species avibase-41062654 Northern Parula Setophaga americana 4 United States US New York US-NY Tompkins US-NY-109 13.0 Mulholland Wildflower Preserve L124514 H 42.431675 -76.48283 2015-04-25 09:56:00 obsr2211210 S23086389 Traveling P22 EBIRD 26.0 0.483 2.0 1 G1239003 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288795230 2021-03-26 06:55:00.227271 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Ontario US-NY-069 13.0 Home L1898533 P 42.8006436 -77.2645283 2015-01-03 10:09:00 obsr696564 S21166710 Stationary P21 EBIRD 16.0 2.0 1 G1093356 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307687877 2021-03-31 04:01:57.961467 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-05 10:19:00 obsr334398 S22696763 Stationary P21 EBIRD 71.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311773017 2015-05-07 17:07:25 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-21 07:09:00 obsr455249 S22978710 Traveling P22 EBIRD 14.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311243207 2021-03-24 20:33:47.533911 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-04-19 12:36:00 obsr2211210 S22944363 Traveling P22 EBIRD 38.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320198625 2021-11-09 17:44:00.03737 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Dutchess US-NY-027 13.0 Ludlow Woods Rd, Stanfordville NY L1062774 P 41.8618905 -73.6757755 2015-05-16 08:30:00 obsr1917973 S23474156 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297759035 2021-04-01 11:24:19.637193 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 3 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-02-16 07:40:00 obsr1782363 S21917803 Stationary P21 EBIRD 480.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311850614 2021-04-01 11:15:31.646886 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 08:15:00 obsr263005 S22983909 Traveling P22 EBIRD 315.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298380211 2021-04-01 12:32:15.282601 242 species avibase-D3A260BC Snow Goose Anser caerulescens N 18 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-19 09:21:00 obsr2574755 S21971618 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293893654 2021-03-24 21:09:00.82373 7429 species avibase-1327AC55 Osprey Pandion haliaetus N 1 United States US New York US-NY Rensselaer US-NY-083 13.0 US-NY-Troy-16 Crestwood Ln L3313814 P 42.693665 -73.669662 2015-01-29 12:45:00 obsr2186523 S21594232 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309793153 2021-04-01 12:18:57.910168 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 5 United States US New York US-NY Tompkins US-NY-109 13.0 NY--Tompkins County road birds L964265 P 42.5411292 -76.4496303 2015-04-11 14:00:00 obsr1167884 S22847314 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS602462335 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 08:00:00 obsr251507 S44748432 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312090314 2021-03-24 20:23:39.258075 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--Golf Course L507417 H 40.6235296 -73.2860184 2015-04-22 07:30:00 obsr247620 S22999459 Traveling P22 EBIRD 135.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310790949 2021-03-26 06:29:56.44369 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 5 Male, Adult (5) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-04-17 07:00:00 obsr2449897 S22916283 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307576316 2018-08-04 17:05:26 5327 species avibase-3EF081A8 Common Gallinule Gallinula galeata 1 United States US New York US-NY Washington US-NY-115 13.0 Towpath Rd., Kingsbury L1527296 H 43.3054212 -73.5459734 2015-04-04 15:20:00 obsr1731061 S22689215 Traveling P22 EBIRD 63.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292898330 2021-03-30 19:29:33.633096 5773 species avibase-671B69FE Piping Plover Charadrius melodus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Hook Pond L283133 H 40.9461611 -72.1907833 2015-01-17 11:30:00 obsr150865 S21515420 Traveling P22 EBIRD 45.0 1.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316832186 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY New York US-NY-061 30.0 US-NY-New York-200 Central Park West L3619618 P 40.780774 -73.972515 2015-05-07 11:16:00 obsr700851 S23285591 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315388550 2021-11-15 03:06:58.889978 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 09:15:00 obsr2033754 S23203579 Traveling P22 EBIRD 225.0 4.828 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310644 2015-05-31 11:12:24 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-01-16 11:50:00 obsr2505956 S21370373 Traveling P22 EBIRD 105.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313114015 2021-03-30 19:22:51.561415 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-26 07:30:00 obsr150865 S23066908 Traveling P22 EBIRD 169.0 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293672694 2015-01-28 08:27:10 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Nassau US-NY-059 30.0 Manhasset L1631885 P 40.7987064 -73.6994311 2015-01-27 14:45:00 obsr676630 S21576471 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305180401 2021-04-01 11:49:53.573686 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-22 07:15:00 obsr1982614 S22508971 Stationary P21 EBIRD 45.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS297916369 2021-03-23 17:18:00.959502 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Albany US-NY-001 13.0 Glenmont L282797 T 42.60478 -73.76957 2015-02-15 07:00:00 obsr2484720 S21931921 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298847569 2021-11-09 19:08:39.226314 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Dutchess US-NY-027 13.0 Stony Kill Farm EEC L635872 H 41.538564 -73.9537095 2015-02-21 09:00:00 obsr1339050 S22011895 Traveling P22 EBIRD 105.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308812428 2021-03-23 16:30:20.514143 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3552348 P 43.429016 -75.903778 2015-04-10 08:08:00 obsr1477887 S22781110 Stationary P21 EBIRD 53.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303564972 2021-03-30 19:13:38.458673 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-03-16 13:01:00 obsr745890 S22385260 Stationary P21 EBIRD 180.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303941872 2021-03-30 19:03:54.667077 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-18 11:00:00 obsr1792012 S22414565 Stationary P21 EBIRD 70.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319532405 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 P C3 P United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-14 08:54:00 obsr2512689 S23437445 Traveling P22 EBIRD 76.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317582066 2018-08-06 22:29:23 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Broome US-NY-007 28.0 Nathaniel Cole Park L2840663 H 42.1436445 -75.705164 2015-05-09 07:45:00 obsr879105 S23328781 Traveling P22 EBIRD 180.0 2.414 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306541684 2021-04-01 10:47:08.851048 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 10 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-03-31 11:40:00 obsr1830659 S22612880 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309585339 2021-04-03 10:02:53.930047 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-04-12 06:43:00 obsr1839967 S22832143 Traveling P22 EBIRD 480.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309824936 2015-04-13 19:25:03 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Albany US-NY-001 13.0 Pond and Open Space along New Salem Rd. L3562115 P 42.6457263 -73.9525366 2015-04-13 18:54:00 obsr2270510 S22849645 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296055104 2015-02-10 21:43:23 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Delaware US-NY-025 28.0 Quail Ridge Area L2327396 P 42.2085425 -74.587276 2015-02-10 08:30:00 obsr883142 S21765517 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309028091 2021-03-26 06:55:00.227271 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-04-10 obsr1338126 S22796404 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292822769 2021-08-10 10:40:09.752498 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Kings US-NY-047 Gravesend Bay, southern parking lot L1847433 H 40.5972024 -74.0049123 2015-01-23 10:05:00 obsr1821546 S21509344 Traveling P22 EBIRD 175.0 0.322 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306233866 2021-12-19 10:32:19.574298 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 9 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-03-29 08:15:00 obsr1139818 S22589063 Traveling P22 EBIRD 150.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306322524 2015-03-30 14:26:26 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Essex US-NY-031 14.0 home L1914193 P 44.2164782 -73.7556839 2015-03-29 08:00:00 obsr2105231 S22595754 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312436698 2018-08-04 17:11:45 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 12 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Tschache Pool L99391 H 42.9892318 -76.7711279 2015-04-22 09:48:00 obsr528918 S23022957 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312430944 2015-08-02 21:19:47 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Livingston US-NY-051 13.0 Conesus Inlet WMA--Inlet Boat Launch L201327 H 42.7225398 -77.7148231 2015-04-23 13:20:00 obsr393804 S23022562 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306256993 2021-03-26 08:09:53.772059 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 4 United States US New York US-NY Rensselaer US-NY-083 13.0 Poestenkill, Home Yard L940921 P 42.6943279 -73.5632408 2015-03-30 08:50:00 obsr1735540 S22590828 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321557802 2021-03-26 06:29:56.44369 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Monroe US-NY-055 13.0 374 Cromwell L1952255 P 43.1326227 -77.5253892 2015-05-14 12:00:00 obsr1463039 S23552606 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307393307 2021-04-01 11:54:40.172593 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-04 11:02:00 obsr1958124 S22676448 Traveling P22 EBIRD 5.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310942747 2015-04-18 14:40:03 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Chenango US-NY-017 28.0 Genegantslet Creek and Five Streams crossing L3132663 H 42.431767 -75.77919 2015-04-18 10:49:00 obsr1092576 S22925835 Stationary P21 EBIRD 7.0 2.0 1 G1224246 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312640429 2018-04-16 15:51:00 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-24 16:00:00 obsr2716320 S23037741 Traveling P22 EBIRD 90.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316550960 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 09:10:00 obsr1668936 S23269558 Traveling P22 EBIRD 405.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301346193 2021-04-01 10:55:39.308231 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 410 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-03-07 08:38:00 obsr502830 S22206032 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311635383 2021-03-24 20:11:57.676649 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Oswego US-NY-075 13.0 Sunset Bay Park L250628 H 43.5211406 -76.3839446 2015-04-20 09:10:00 obsr2700277 S22969721 Traveling P22 EBIRD 61.0 6.437 2.0 1 G1228845 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292506166 2018-08-04 16:54:50 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Cortland US-NY-023 28.0 Cortland Municipal Water Works L3270700 P 42.5957757 -76.1950618 2015-01-21 16:40:00 obsr2663400 S21484382 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293518104 2021-03-30 19:39:10.250398 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve--Massapequa Lake L881487 H 40.6669677 -73.4683228 2015-01-25 13:00:00 obsr391865 S21564323 Traveling P22 EBIRD 210.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297783994 2021-03-26 06:58:34.561206 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Orleans US-NY-073 13.0 US-NY-Medina-300 Mead Ave L2656564 P 43.22252 -78.374915 2015-02-14 08:00:00 obsr274914 S21920220 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298707003 2021-04-01 12:41:58.738824 16284 species avibase-33808812 Alder Flycatcher Empidonax alnorum 15 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-02-21 07:35:00 obsr2871406 S22000341 Stationary P21 EBIRD 30.0 2.0 1 G1154707 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313215378 2021-03-30 19:07:52.958398 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 06:28:00 obsr931103 S23072820 Traveling P22 EBIRD 30.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303601046 2021-03-26 06:17:19.712573 483 species avibase-85625D75 Mallard Anas platyrhynchos 35 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-03-16 14:45:00 obsr2071643 S22388034 Traveling P22 EBIRD 100.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135836 2021-03-26 07:56:20.588749 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-09 09:00:00 obsr2218212 S23589180 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320174969 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 Four Sparrow Marsh L510138 H 40.6000729 -73.9085591 2015-05-16 13:07:00 obsr152435 S23472902 Traveling P22 EBIRD 68.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302900044 2021-03-26 06:21:54.883933 26109 species avibase-BAC33609 Brown Creeper Certhia americana 7 United States US New York US-NY Kings US-NY-047 30.0 Brooklyn Botanic Garden L297912 H 40.6680222 -73.96367 2015-03-13 15:30:00 obsr817830 S22332224 Traveling P22 EBIRD 74.0 1.497 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301814989 2021-03-24 20:33:47.533911 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-02-28 13:55:00 obsr241086 S22242629 Traveling P22 EBIRD 55.0 1.609 2.0 1 G1170864 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316072508 2021-04-01 11:15:31.646886 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Kings US-NY-047 Owls Head Park L304833 H 40.6403687 -74.0322153 2015-05-05 07:30:00 obsr2078092 S23241782 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307021457 2015-04-02 18:57:50 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central park L3533261 P 40.7811426 -73.9652395 2015-04-01 15:00:00 obsr2862523 S22649232 Traveling P22 EBIRD 120.0 4.023 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310662626 2018-08-04 17:09:13 447 species avibase-C235A4D7 Gadwall Mareca strepera 3 United States US New York US-NY Rensselaer US-NY-083 US-NY_763 14.0 Babcock Lake, Grafton, NY L1531175 P 42.8177071 -73.3989717 2015-04-15 07:00:00 obsr1379674 S22907704 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313527747 2021-03-24 20:33:47.533911 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-27 12:25:00 obsr2001485 S23091624 Traveling P22 EBIRD 38.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300015381 2021-03-26 08:14:57.071052 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-02-27 07:15:00 obsr2918150 S22104759 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319657963 2021-04-01 11:30:42.037277 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 17:45:00 obsr2976 S23444454 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323799284 2021-03-19 16:19:20.977326 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Unity Island (aka Squaw Is.)--North End L2036486 H 42.9321075 -78.9062977 2015-05-29 10:15:00 obsr2071643 S23694891 Traveling P22 EBIRD 80.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309659925 2015-04-13 08:20:07 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field, Kings Co. L1341687 P 40.5925957 -73.8870594 2015-04-12 15:30:00 obsr827632 S22837048 Traveling P22 EBIRD 30.0 3.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315708543 2021-04-01 12:24:45.865424 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP, Sodus L712218 H 43.2673188 -77.0297813 2015-04-27 07:00:00 obsr2832110 S23220972 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323740681 2015-05-29 09:48:10 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Veteran-242–264 Dann Blvd L3680320 P 42.231304 -76.787746 2015-05-28 18:53:00 obsr1092576 S23681352 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319894463 2020-04-30 13:12:49 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Karner Barrens East L553196 H 42.7184131 -73.8640168 2015-04-06 11:00:00 obsr1023554 S23457802 Traveling P22 EBIRD 150.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316114918 2021-03-26 06:17:19.712573 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-05 07:22:00 obsr736608 S23244020 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304720992 2021-04-01 11:58:54.966271 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-415-609 NY-11C L3505304 P 44.784185 -74.803031 2015-03-22 07:57:00 obsr2211750 S22473734 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323134415 2021-03-26 06:29:56.44369 6254 species avibase-FB4D08F0 Black-legged Kittiwake Rissa tridactyla 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-26 08:20:00 obsr2966702 S23648653 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288355401 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-01-01 14:45:00 obsr2514491 S21130925 Stationary P21 EBIRD 20.0 4.0 1 G1089461 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297234881 2015-02-15 17:23:26 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Schoharie US-NY-095 28.0 Huntersland Road L3368192 P 42.5829164 -74.2971039 2015-02-15 16:39:00 obsr2161435 S21870047 Traveling P22 EBIRD 15.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308876416 2021-03-24 19:20:44.053843 505 species avibase-C732CB10 American Black Duck Anas rubripes 20 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-04-10 06:30:00 obsr800690 S22785451 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314170606 2021-03-24 20:33:47.533911 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-29 07:00:00 obsr1831959 S23132797 Traveling P22 EBIRD 240.0 0.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311400032 2021-11-15 03:06:58.889978 6201 species avibase-64F4DD81 Razorbill Alca torda 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-19 10:10:00 obsr2105033 S22954004 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309078685 2021-03-26 06:17:19.712573 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Buffalo and Erie Co. Naval and Military Park L3299181 H 42.8776565 -78.8792379 2015-04-11 08:35:00 obsr2071643 S22799577 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290839952 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-01-13 09:16:00 obsr916033 S21331574 Traveling P22 EBIRD 15.0 0.161 4.0 1 G1108282 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309691765 2018-08-04 17:08:58 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 4 Unknown Sex, Adult (1); Male, Adult (3) United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-13 07:15:00 obsr2843748 S22839889 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340805599 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-24 06:40:00 obsr2538893 S24923910 Traveling P22 EBIRD 160.0 6.437 2.0 1 G1399438 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307713417 2018-08-04 17:05:36 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Oswego US-NY-075 13.0 Biddlecum Pond on Six Mile Creek L248394 H 43.2959861 -76.2976017 2015-04-05 12:15:00 obsr2744341 S22698408 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308090396 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-06 14:00:00 obsr1460516 S22725701 Stationary P21 EBIRD 30.0 2.0 1 G1209775 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322513474 2015-05-24 13:31:52 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-05-24 13:00:00 obsr991026 S23610281 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321542812 2021-03-24 19:23:17.886063 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 The Farm L3377073 P 42.9586268 -76.4751756 2015-04-29 15:45:00 obsr2639433 S23551676 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319277788 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 45 United States US New York US-NY Kings US-NY-047 Coney Island Creek Park L614792 H 40.5813224 -74.0052688 2015-05-13 13:02:00 obsr187432 S23422641 Traveling P22 EBIRD 13.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294191368 2018-08-04 16:55:31 6339 species avibase-8535345B Herring Gull Larus argentatus 100 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-01-31 14:45:00 obsr1534851 S21617422 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313334599 2015-04-26 21:07:17 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Erie US-NY-029 13.0 Erie County L3588872 P 42.94904 -78.687961 2015-04-25 11:04:00 obsr2945658 S23080180 Incidental P20 EBIRD 3.0 1 G1236725 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305710796 2018-08-04 17:03:44 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Steuben US-NY-101 28.0 Whitesville Rod and Gun L3519269 P 42.0805386 -77.7231646 2015-03-27 11:55:00 obsr2700440 S22550091 Traveling P22 EBIRD 5.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299378763 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 2 United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-02-12 13:15:00 obsr2049647 S22055724 Traveling P22 EBIRD 30.0 1.127 14.0 1 G1143887 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314346079 2015-04-30 13:03:38 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-04-30 12:13:00 obsr2678807 S23143339 Traveling P22 EBIRD 49.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322478152 2022-01-12 18:14:50.403512 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail L212481 H 44.4128015 -74.121715 2015-05-16 07:30:00 obsr1565981 S23608334 Traveling P22 EBIRD 150.0 4.828 12.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311164515 2017-08-07 23:22:55 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Saratoga US-NY-091 13.0 Ballston Lake, Outlet Rd. L2593248 H 42.9563337 -73.8512971 2015-04-19 08:46:00 obsr2937317 S22939605 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313230617 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 09:00:00 obsr1659461 S23073681 Traveling P22 EBIRD 165.0 7.242 2.0 1 G1237452 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317610482 2021-04-01 11:24:19.637193 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 13.0 Tinker Nature Park L946685 H 43.0670694 -77.57339 2015-05-09 11:32:00 obsr2595828 S23330256 Traveling P22 EBIRD 86.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312726758 2021-03-26 07:30:35.289997 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 5 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-25 07:05:00 obsr34822 S23043673 Traveling P22 EBIRD 80.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302826806 2021-03-24 20:11:57.676649 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-New Haven- Kibby Rd - Home (Private) L5185742 P 43.449899 -76.30402 2015-03-13 09:19:00 obsr2945658 S22326569 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309493126 2021-03-24 19:30:07.33826 636 species avibase-B77377EE Common Eider Somateria mollissima 1 United States US New York US-NY Cortland US-NY-023 US-NY_2807 28.0 Andrew R. Fuller Recreational Park L2974830 H 42.7611609 -76.2683076 2015-04-06 13:03:00 obsr2279567 S22825918 Traveling P22 EBIRD 32.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000843 2021-03-26 07:56:20.588749 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-13 16:00:00 obsr2218212 S23775919 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298546335 2020-03-22 07:58:01 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-02-20 06:51:00 obsr1696616 S21985891 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299792550 2021-04-01 12:30:15.438381 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 106 United States US New York US-NY Herkimer US-NY-043 13.0 Mohawk R at Canal Pl L3310917 P 43.040085 -74.8579645 2015-02-26 15:59:00 obsr1195517 S22087576 Stationary P21 EBIRD 10.0 2.0 1 G1160723 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298881267 2021-03-24 20:58:53.646623 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-02-19 07:20:00 obsr72341 S22014617 Stationary P21 EBIRD 280.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312123311 2018-08-04 16:55:10 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 8 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-01-24 15:30:00 obsr1737482 S23001567 Stationary P21 EBIRD 30.0 2.0 1 G1231818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300922241 2021-04-01 12:32:15.282601 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 23 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-24 09:00:00 obsr2218212 S22173361 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309931153 2018-08-04 17:09:07 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Thomas Rd., south (Six Mile Creek ponds & marsh) L388439 H 42.4020377 -76.3778114 2015-04-14 08:27:00 obsr2074043 S22857141 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303284123 2015-03-15 16:26:28 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Road L2843782 P 42.43659 -76.39238 2015-03-15 10:09:00 obsr1655171 S22362531 Stationary P21 EBIRD 14.0 2.0 1 G1180898 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296374876 2021-11-09 21:23:47.89824 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-11 17:30:00 obsr2976435 S21792471 Stationary P21 EBIRD 20.0 2.0 1 G1144429 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311155588 2021-03-26 06:21:54.883933 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 15:20:00 obsr1077730 S22939049 Traveling P22 EBIRD 60.0 1.207 3.0 1 G1225484 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316420654 2021-03-26 06:29:56.44369 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-06 07:49:00 obsr2678807 S23261885 Traveling P22 EBIRD 53.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288775021 2021-04-01 11:54:40.172593 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 30 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-01-02 13:00:00 obsr1535951 S21165052 Stationary P21 EBIRD 60.0 4.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314382769 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:30:00 obsr1711339 S23145647 Traveling P22 EBIRD 462.0 6.437 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310659633 2021-03-23 17:23:45.772216 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Livingston US-NY-051 13.0 Sliker Hill Road L865467 P 42.714545 -77.6780793 2015-04-17 08:59:00 obsr72341 S22907518 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310093254 2021-03-23 17:00:13.087107 303 species avibase-B59E1863 Canada Goose Branta canadensis 22 United States US New York US-NY Tompkins US-NY-109 28.0 Herman Rd. wetlands L1108700 H 42.5157265 -76.3355194 2015-04-11 18:26:00 obsr2683910 S22868636 Stationary P21 EBIRD 28.0 2.0 1 G1219976 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS313529907 2021-04-01 11:15:31.646886 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-27 09:45:00 obsr2906952 S23092609 Traveling P22 EBIRD 105.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292969103 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-24 14:23:00 obsr2493447 S21520853 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318884735 2017-04-28 16:34:13 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 4 United States US New York US-NY Essex US-NY-031 14.0 Cemetery Rd., wetlands L903206 H 44.2347455 -73.7814331 2015-05-10 12:00:00 obsr2105231 S23400251 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291943430 2018-08-04 16:54:01 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 Unknown Sex, Immature (1) United States US New York US-NY Washington US-NY-115 13.0 Ft. Miller (hamlet) L199770 H 43.1618045 -73.5779071 2015-01-19 12:05:00 obsr2533499 S21419546 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288886499 2015-01-03 20:52:52 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Oswego US-NY-075 13.0 Baum Road yard L266171 P 43.3412537 -76.1184204 2015-01-03 07:55:00 obsr979921 S21176130 Stationary P21 EBIRD 140.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312706790 2021-03-23 17:22:05.708166 337 species avibase-694C127A Mute Swan Cygnus olor 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Herkimer US-NY-043 13.0 Saltsman Road L677810 P 43.0091035 -74.7420502 2015-04-24 17:10:00 obsr316199 S23042288 Traveling P22 EBIRD 46.0 2.414 3.0 1 G1234624 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291214252 2015-01-15 21:56:40 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-15 13:00:00 obsr1830659 S21362238 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308153175 2015-04-06 22:04:59 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Herkimer US-NY-043 13.0 Santmire Road L3232803 P 43.2876041 -74.9662429 2015-04-05 14:55:00 obsr2694889 S22730354 Incidental P20 EBIRD 0 G1209006 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319316280 2017-03-07 13:25:14 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP--Carlls River L2733652 H 40.7295875 -73.3410925 2015-04-30 07:32:00 obsr1987335 S23424838 Traveling P22 EBIRD 29.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307737859 2018-08-04 17:05:36 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southeast L879238 H 42.4674118 -76.4183235 2015-04-05 12:25:00 obsr730231 S22700289 Traveling P22 EBIRD 40.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319553934 2021-11-15 03:06:58.889978 662 species avibase-FB738385 Bufflehead Bucephala albeola N 27 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-14 06:28:00 obsr642993 S23438673 Traveling P22 EBIRD 265.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305615297 2021-04-01 10:47:08.851048 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 13 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-03-27 14:27:00 obsr800690 S22542932 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289173902 2015-01-04 20:42:13 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-04 07:00:00 obsr290506 S21198475 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296924695 2021-03-24 19:20:44.053843 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-02-13 14:50:00 obsr1626739 S21842259 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292994326 2018-08-04 16:54:57 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 10 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-01-24 07:00:00 obsr2812831 S21522680 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304189954 2021-04-01 12:14:19.266649 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 40 United States US New York US-NY Suffolk US-NY-103 30.0 Patchogue Lake L852362 H 40.7684842 -73.0212522 2015-03-20 10:00:00 obsr676630 S22434081 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314459625 2021-04-01 11:54:40.172593 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-04-30 18:30:00 obsr1958124 S23150758 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324177030 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis N 38 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-30 11:59:00 obsr1548221 S23719263 Traveling P22 EBIRD 175.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310624552 2019-07-24 17:33:24 11371 species avibase-75600969 Northern Flicker Colaptes auratus 21 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr1189028 S22905385 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294817210 2021-03-26 06:39:43.334073 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-02-03 08:00:00 obsr324709 S21667546 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308514429 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-08 07:00:00 obsr1220115 S22758276 Traveling P22 EBIRD 120.0 2.414 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322989288 2015-05-25 21:54:39 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-18 08:15:00 obsr1319071 S23639184 Traveling P22 EBIRD 90.0 2.993 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293745345 2015-01-28 17:37:37 5561 species avibase-E196D6F9 Sandhill Crane Antigone canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - boardwalk to white barn pond (0.04km) L1287548 P 42.480817 -76.4502794 2015-01-28 13:34:00 obsr2307843 S21582311 Traveling P22 EBIRD 5.0 0.04 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313308531 2018-08-04 17:12:28 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-04-26 16:00:00 obsr2096529 S23078539 Stationary P21 EBIRD 70.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312773891 2021-04-01 11:30:42.037277 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 5 United States US New York US-NY New York US-NY-061 30.0 Highbridge Park--S of Alexander Hamilton Bridge L2741553 H 40.8390425 -73.9348309 2015-04-18 16:16:00 obsr1513140 S23046634 Traveling P22 EBIRD 95.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322061208 2021-03-26 07:53:57.664705 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-19 06:20:00 obsr72341 S23584372 Stationary P21 EBIRD 700.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308752765 2021-11-09 21:57:40.329584 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Ulster US-NY-111 13.0 Sojourner Truth Co. Park L3551662 P 42.0032592 -73.945241 2015-04-09 16:15:00 obsr2862523 S22776703 Traveling P22 EBIRD 30.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316828734 2021-03-19 16:44:35.607263 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-07 07:52:00 obsr334398 S23285422 Traveling P22 EBIRD 88.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298213596 2021-05-21 00:06:20.034424 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Richmond US-NY-085 Mt. Loretto Unique Area L293510 H 40.5072899 -74.2180324 2015-02-18 10:05:00 obsr1958124 S21957359 Traveling P22 EBIRD 58.0 2.414 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS320648267 2021-11-15 03:06:58.889978 622 species avibase-50566E50 Lesser Scaup Aythya affinis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 07:31:00 obsr884514 S23497719 Traveling P22 EBIRD 360.0 3.219 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301878078 2021-04-01 12:18:57.910168 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--F.R. Newman Arboretum L799199 H 42.4520722 -76.4572692 2015-03-08 14:45:00 obsr1655171 S22247317 Traveling P22 EBIRD 52.0 3.219 2.0 1 G1171255 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296329245 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Kings US-NY-047 30.0 Seth Low Park L3350573 P 40.6077038 -73.9866039 2015-02-12 13:30:00 obsr2448957 S21789037 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297094838 2021-04-01 11:49:53.573686 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Queens US-NY-081 30.0 Fresh Meadows L2621024 P 40.7473737 -73.7799793 2015-02-14 08:00:00 obsr1878790 S21857165 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310390274 2021-04-01 12:18:57.910168 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 28.0 Goetchius Wetland Preserve (FLLT)--Flat Iron L109054 H 42.3860243 -76.3019298 2015-04-16 08:09:00 obsr2683910 S22888995 Traveling P22 EBIRD 15.0 0.805 4.0 1 G1221710 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301793119 2021-04-01 12:43:36.236969 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Tioga US-NY-107 28.0 Candor Fire Department L3454101 P 42.2342529 -76.3370365 2015-03-08 14:17:00 obsr1318356 S22240945 Stationary P21 EBIRD 18.0 2.0 1 G1170818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324195958 2021-03-26 06:39:43.334073 456 species avibase-D201EB72 American Wigeon Mareca americana 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-29 12:10:00 obsr1706920 S23720434 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297294464 2021-03-01 11:20:54.007808 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-02-15 10:50:00 obsr1655171 S21871178 Traveling P22 EBIRD 100.0 2.414 3.0 1 G1171294 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294443011 2021-03-26 06:39:43.334073 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-01 13:00:00 obsr150865 S21636751 Traveling P22 EBIRD 195.0 7.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299117699 2021-04-01 11:54:40.172593 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-02-22 12:15:00 obsr1032565 S22035869 Traveling P22 EBIRD 190.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296808159 2022-02-04 06:14:13.892644 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-02-14 12:30:00 obsr2796494 S21831986 Traveling P22 EBIRD 30.0 0.483 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310568671 2019-07-24 17:29:37 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr870166 S22901507 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302170709 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-09 16:15:00 obsr2031586 S22269142 Traveling P22 EBIRD 90.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315298806 2015-05-03 12:59:08 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-03 08:00:00 obsr2504709 S23198957 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306604511 2021-04-01 11:49:53.573686 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-03-29 obsr2976 S22618089 Historical P62 EBIRD 1 G1199899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304441168 2021-03-26 07:42:06.558742 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 Cary Rd, Fort Edward, NY L2588500 P 43.2209625 -73.5596037 2015-03-21 09:20:00 obsr1222746 S22452873 Traveling P22 EBIRD 46.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316510326 2018-08-04 17:15:01 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Fulton US-NY-035 13.0 Mayfield Beach, Burr Rd., Fulton Co., N.Y. L3104334 P 43.1404831 -74.2333639 2015-05-06 11:30:00 obsr2590001 S23267007 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321822675 2018-08-04 17:27:45 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-17 09:00:00 obsr1079517 S23568791 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS470306234 2021-11-15 03:06:58.889978 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 07:30:00 obsr1843598 S34785164 Traveling P22 EBIRD 120.0 3.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316582808 2021-03-24 19:35:34.045988 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Erie US-NY-029 13.0 Home L2093742 P 42.7338768 -78.7242615 2015-05-06 09:34:00 obsr916033 S23271498 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309326354 2021-03-30 19:29:33.633096 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Suffolk US-NY-103 30.0 Terrell River L242050 P 40.7886068 -72.7801338 2015-04-12 07:33:00 obsr2963457 S22815720 Traveling P22 EBIRD 65.0 4.007 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308012347 2021-03-26 07:07:10.758746 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Richmond US-NY-085 30.0 Goethals Bridge Pond--Observation Platform L884460 H 40.6281787 -74.1741575 2015-04-06 13:19:00 obsr1958124 S22719993 Stationary P21 EBIRD 12.0 2.0 1 G1208439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289538556 2021-11-09 21:36:59.310849 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 8 United States US New York US-NY Ulster US-NY-111 13.0 rosendale, ny L1465355 P 41.8499692 -74.081765 2015-01-06 10:00:00 obsr187701 S21227134 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288584495 2021-04-01 11:15:31.646886 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-01-02 12:00:00 obsr872554 S21149779 Traveling P22 EBIRD 120.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312752494 2021-04-01 11:54:40.172593 11494 species avibase-20C2214E American Kestrel Falco sparverius 2 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-25 08:00:00 obsr1620361 S23045380 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314854944 2021-12-24 11:02:14.483178 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-02 07:40:00 obsr991026 S23174835 Traveling P22 EBIRD 128.0 3.219 1.0 1 G1247727 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323613244 2021-04-01 11:15:31.646886 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-28 07:30:00 obsr139757 S23680692 Traveling P22 EBIRD 360.0 6.437 14.0 1 G1294122 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293717932 2021-03-30 19:43:32.881136 32955 species avibase-41062654 Northern Parula Setophaga americana 20 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-01-28 08:00:00 obsr2078798 S21579882 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320822075 2018-08-06 22:30:28 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Red House Lake L246474 H 42.1033333 -78.7458333 2015-05-18 07:16:00 obsr1092576 S23508037 Traveling P22 EBIRD 26.0 3.862 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310059175 2021-03-23 17:32:20.03109 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--Liverpool Marina L837889 H 43.1007479 -76.2093687 2015-04-14 08:05:00 obsr2561576 S22866217 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291876508 2021-03-19 16:08:39.161312 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 75 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-19 09:27:00 obsr2497657 S21414472 Traveling P22 EBIRD 27.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306553185 2021-03-19 16:43:17.120646 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Madison US-NY-053 28.0 Mason Hill, Hamilton, NY L2591505 P 42.8259191 -75.5196977 2015-03-31 14:00:00 obsr2843748 S22613896 Traveling P22 EBIRD 75.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295659648 2021-04-01 12:45:19.712958 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 10 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-08 13:15:00 obsr369788 S21734807 Stationary P21 EBIRD 60.0 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312007460 2015-04-22 06:44:03 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-04-22 05:49:00 obsr455249 S22994162 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314294759 2021-03-24 20:33:47.533911 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 18 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-30 09:44:00 obsr1655171 S23140747 Traveling P22 EBIRD 33.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318268869 2021-11-09 19:02:27.638861 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 2 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-05-10 08:30:00 obsr2103727 S23365490 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306146441 2021-04-01 11:24:19.637193 6616 species avibase-7E022378 Common Loon Gavia immer 91 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-27 07:18:00 obsr334398 S22582444 Stationary P21 EBIRD 53.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS304581430 2021-11-09 18:47:59.744367 526 species avibase-56CCA717 Northern Pintail Anas acuta 2 United States US New York US-NY Dutchess US-NY-027 13.0 FEEDERS & YARD T/O MILAN, NY L3728471 P 41.951314 -73.821144 2015-03-22 09:34:00 obsr1442681 S22463366 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290991012 2021-11-09 18:28:50.133002 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 4 United States US New York US-NY Dutchess US-NY-027 13.0 Home, Millbrook, NY L2119013 P 41.7923452 -73.6592703 2015-01-09 11:45:00 obsr1062217 S21343814 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296377820 2021-11-09 22:04:47.967972 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-12 13:16:00 obsr2449954 S21792762 Traveling P22 EBIRD 42.0 8.047 2.0 1 G1144440 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321023348 2021-03-26 06:20:10.658048 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-02 08:20:00 obsr1104059 S23519993 Area P23 EBIRD 60.0 121.4057 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310960854 2021-04-01 11:54:40.172593 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 2 United States US New York US-NY Richmond US-NY-085 US-NY_818 30.0 Goethals Bridge Pond--Goethals Homes L884458 H 40.6283428 -74.1779176 2015-04-18 15:11:00 obsr1958124 S22927055 Stationary P21 EBIRD 23.0 3.0 1 G1224788 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309646957 2021-11-09 19:47:29.45622 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Winding Waters Trail (NY) L2393335 H 41.2878143 -74.5339547 2015-04-12 17:30:00 obsr2054320 S22836236 Traveling P22 EBIRD 180.0 0.644 2.0 1 G1219457 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315092677 2015-05-02 20:47:11 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park L139800 H 43.0211215 -77.5739871 2015-05-02 09:30:00 obsr1338126 S23187713 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311706578 2021-04-01 12:35:52.669792 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-14 09:00:00 obsr786804 S22974655 Traveling P22 EBIRD 210.0 8.047 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310506664 2021-11-09 22:02:50.170302 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY Ulster US-NY-111 28.0 Mohonk Preserve--Duck Pond Rd. and Pond L4609134 H 41.7569716 -74.1428395 2015-04-16 09:30:00 obsr1917973 S22897223 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309630433 2021-03-26 06:39:43.334073 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-11 12:45:00 obsr1706920 S22835148 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312561216 2021-03-19 16:29:59.503892 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 50 United States US New York US-NY Jefferson US-NY-045 13.0 Black River Fishing site L2127803 P 43.9789116 -75.8680201 2015-04-24 10:00:00 obsr2091520 S23031927 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308859084 2021-04-01 11:49:53.573686 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N X United States US New York US-NY Queens US-NY-081 30.0 Kew Gardens L3552766 P 40.7075799 -73.8294983 2015-04-10 13:00:00 obsr1578888 S22784287 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288683140 2021-03-23 17:32:20.03109 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Onondaga US-NY-067 13.0 Carpenters Brook Fish Hatchery L982090 H 43.0161953 -76.3897419 2015-01-03 08:15:00 obsr2172593 S21157375 Traveling P22 EBIRD 47.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293586859 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-27 14:15:00 obsr454647 S21569902 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310378590 2016-01-10 13:57:01 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Essex US-NY-031 13.0 Maple Meadows L4115608 P 44.0422008 -73.4797356 2015-04-16 06:10:00 obsr2769235 S22888149 Traveling P22 EBIRD 45.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318256909 2021-03-19 16:32:34.732091 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 18 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-10 09:05:00 obsr2519357 S23364888 Traveling P22 EBIRD 68.0 3.219 4.0 1 G1262447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305506963 2015-03-26 20:55:16 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Columbia US-NY-021 14.0 Austerlitz L207556 P 42.3036668 -73.5189287 2015-03-26 11:00:00 obsr712039 S22534591 Traveling P22 EBIRD 120.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305425015 2021-03-26 06:55:00.227271 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 S C2 S United States US New York US-NY Ontario US-NY-069 13.0 Muar Lake west, Canandaigua L786557 H 42.8801468 -77.2634339 2015-03-26 09:32:00 obsr606693 S22528120 Traveling P22 EBIRD 9.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318598271 2021-04-01 11:15:31.646886 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-10 09:05:00 obsr150415 S23383427 Traveling P22 EBIRD 180.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303213940 2021-03-26 07:07:10.758746 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-03-15 09:20:00 obsr1958124 S22357011 Traveling P22 EBIRD 5.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290613029 2021-11-09 20:16:49.015193 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region--Skinners Lane L616593 H 41.3304039 -74.4442391 2015-01-11 11:50:00 obsr1665312 S21313055 Traveling P22 EBIRD 20.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312349568 2021-03-26 07:00:33.333856 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-04-23 15:04:00 obsr2574755 S23016895 Traveling P22 EBIRD 69.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304092641 2015-09-13 07:56:32 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-03-19 17:00:00 obsr2152799 S22426373 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313510059 2021-04-01 11:54:40.172593 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-27 08:00:00 obsr1620361 S23091467 Traveling P22 EBIRD 210.0 3.219 2.0 1 G1239560 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323412279 2021-04-01 11:15:31.646886 447 species avibase-C235A4D7 Gadwall Mareca strepera 10 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-27 10:55:00 obsr1516787 S23667094 Stationary P21 EBIRD 120.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290353848 2020-01-23 10:13:11 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Tompkins US-NY-109 13.0 Overlook, Rte. 89 N of Hog Hole L479673 H 42.4647843 -76.5246248 2015-01-11 07:54:00 obsr2211210 S21292676 Stationary P21 EBIRD 11.0 2.0 1 G1105908 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320159559 2018-08-06 22:30:09 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Albany US-NY-001 28.0 Partridge Run. Fawn Lake area L2840394 P 42.56191 -74.16549 2015-05-16 09:45:00 obsr777630 S23472168 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290842477 2021-03-24 19:35:34.045988 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L692296 H 42.8874107 -78.7166119 2015-01-13 13:40:00 obsr2939916 S21331798 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311256369 2021-03-30 19:07:52.958398 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-14 07:30:00 obsr2152799 S22945194 Traveling P22 EBIRD 330.0 4.828 4.0 1 G1226171 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303128428 2021-03-24 19:35:34.045988 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-03-14 11:00:00 obsr2071643 S22350601 Historical P62 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306536166 2021-04-01 11:54:40.172593 337 species avibase-694C127A Mute Swan Cygnus olor N X United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-31 14:25:00 obsr1958124 S22612488 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292704111 2015-01-22 22:14:42 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 4 United States US New York US-NY Wayne US-NY-117 Blind Sodus Bay/Metzger Rd L3311131 P 43.3319217 -76.7294799 2015-01-22 14:50:00 obsr438598 S21500003 Traveling P22 EBIRD 35.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309931968 2021-03-26 06:29:56.44369 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 2 United States US New York US-NY Monroe US-NY-055 13.0 10 Parkview Drive yard birds L690404 P 43.1565179 -77.5146952 2015-04-14 08:33:00 obsr2817239 S22857217 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307205222 2021-11-09 21:50:48.44865 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-03 14:00:00 obsr1588136 S22662586 Traveling P22 EBIRD 90.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288501752 2018-08-04 16:52:30 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Nassau US-NY-059 30.0 Grant Park, Hewlett L3155768 H 40.6445543 -73.6884264 2015-01-02 13:00:00 obsr1102914 S21142649 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316662624 2015-05-06 19:34:30 20294 species avibase-76158864 Northern Shrike Lanius borealis X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-06 18:20:00 obsr72341 S23276050 Stationary P21 EBIRD 50.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317811355 2022-03-06 12:39:33.700954 33216 species avibase-1F09CCCC Wilson's Warbler Cardellina pusilla X United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-05-09 05:45:00 obsr547602 S23340955 Traveling P22 EBIRD 75.0 2.414 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305153687 2015-03-24 21:25:38 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 14 United States US New York US-NY Suffolk US-NY-103 30.0 Maple Ln, Noyac L3512915 P 40.9888189 -72.3629093 2015-03-24 10:45:00 obsr1913951 S22507128 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305691550 2021-03-26 07:30:35.289997 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 12 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-26 07:11:00 obsr2683910 S22548751 Traveling P22 EBIRD 72.0 0.644 2.0 1 G1194520 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315409282 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-03 08:45:00 obsr247620 S23204675 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308003586 2021-04-01 11:15:31.646886 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-06 06:45:00 obsr1605975 S22719409 Traveling P22 EBIRD 315.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317020608 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-07 16:00:00 obsr2277801 S23296207 Historical P62 EBIRD 245.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311057678 2021-03-24 20:33:47.533911 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 7 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-04-18 18:54:00 obsr455249 S22933145 Stationary P21 EBIRD 100.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294158341 2020-09-27 08:54:21 27374 species avibase-B904BB22 Gray-cheeked Thrush Catharus minimus 1 United States US New York US-NY Wayne US-NY-117 13.0 Lyons, 4009 Route 14 L3329252 P 43.14949 -76.9892 2015-01-31 14:33:00 obsr2211210 S21614931 Stationary P21 EBIRD 2.0 1.0 1 G1130498 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309979355 2021-03-24 20:33:47.533911 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Tompkins US-NY-109 13.0 Eastern Heights dog walk L2954455 P 42.425232 -76.456589 2015-04-14 12:36:00 obsr1318356 S22860576 Traveling P22 EBIRD 11.0 0.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299728352 2018-08-04 16:56:25 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-14 08:03:00 obsr140280 S22082264 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319227220 2021-11-15 03:06:58.889978 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-12 08:15:00 obsr2619204 S23419930 Traveling P22 EBIRD 420.0 6.116 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305914691 2015-03-28 21:38:44 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Kings US-NY-047 30.0 Spring Creek Park - Kings L845584 P 40.6556046 -73.8627763 2015-03-28 11:40:00 obsr2519357 S22565400 Stationary P21 EBIRD 10.0 11.0 1 G1195437 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001635 2021-03-26 07:56:20.588749 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-28 09:00:00 obsr2218212 S23775942 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308210820 2021-03-23 17:00:13.087107 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom39 L3513981 H 42.5385919 -76.3764558 2015-04-07 09:01:00 obsr1696616 S22735169 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315963097 2021-03-24 20:58:53.646623 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-04 13:30:00 obsr72341 S23235118 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310473187 2021-03-26 06:55:00.227271 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-04-16 obsr1338126 S22894582 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311943781 2018-08-04 17:09:35 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Montgomery US-NY-057 13.0 Robwill Drive, Fort Plain L3581555 P 42.8662751 -74.6740669 2015-04-18 05:45:00 obsr1279927 S22990029 Traveling P22 EBIRD 150.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318770050 2021-11-15 03:06:58.889978 636 species avibase-B77377EE Common Eider Somateria mollissima 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-11 17:00:00 obsr2277801 S23393265 Historical P62 EBIRD 120.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313789507 2021-03-23 17:20:42.367321 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 2 United States US New York US-NY Chenango US-NY-017 28.0 Cincinnatus Lake (Chenango Co.) L2404270 H 42.4306156 -75.8623123 2015-04-28 08:46:00 obsr1303581 S23109075 Traveling P22 EBIRD 12.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309263768 2021-04-01 12:18:57.910168 337 species avibase-694C127A Mute Swan Cygnus olor N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-10 15:10:00 obsr2855945 S22811746 Stationary P21 EBIRD 55.0 3.0 1 G1216885 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312338617 2021-11-15 03:06:58.889978 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-22 07:30:00 obsr599682 S23016193 Traveling P22 EBIRD 120.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293890341 2021-03-23 17:14:01.933181 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Washington US-NY-115 13.0 Lock 8, Kingsbury L2814328 P 43.287074 -73.5635262 2015-01-29 16:30:00 obsr2533499 S21593993 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289085900 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-04 13:20:00 obsr2105033 S21191707 Traveling P22 EBIRD 170.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314739488 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-01 10:30:00 obsr1353449 S23167679 Traveling P22 EBIRD 150.0 4.828 2.0 1 G1246282 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318011252 2021-03-23 17:21:08.587586 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Delaware US-NY-025 28.0 O & W Road (West) L2823764 P 41.996701 -75.1506257 2015-05-08 09:18:00 obsr1788273 S23351968 Traveling P22 EBIRD 32.0 3.862 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313012242 2021-03-30 19:07:52.958398 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 08:15:00 obsr1348614 S23060740 Traveling P22 EBIRD 360.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296790477 2021-11-09 22:04:47.967972 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-13 09:00:00 obsr2734682 S21830472 Stationary P21 EBIRD 390.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304247164 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 8 United States US New York US-NY Albany US-NY-001 13.0 Our Yard 55 Brockley Drive Delmar NY L2206416 P 42.6172588 -73.859067 2015-03-20 12:00:00 obsr385090 S22438484 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306060025 2018-08-04 17:04:33 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Oneida US-NY-065 13.0 Schneibles, South Bay, Oneida Lake L3529803 P 43.1649505 -75.7373106 2015-03-29 obsr666964 S22575769 Historical P62 EBIRD 1 G1196491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294624300 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-02-02 08:13:00 obsr2595828 S21651737 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321622360 2021-03-26 06:17:19.712573 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-15 13:45:00 obsr1379161 S23556778 Traveling P22 EBIRD 300.0 3.219 2.0 1 G1281345 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312626095 2021-03-26 07:07:10.758746 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-24 09:26:00 obsr1032565 S23036821 Traveling P22 EBIRD 124.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311878821 2021-03-23 17:00:13.087107 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Palmer Woods L287796 H 42.4604469 -76.4789951 2015-04-21 15:35:00 obsr887540 S22985618 Traveling P22 EBIRD 27.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314284628 2021-03-26 07:46:52.994574 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-30 06:50:00 obsr1165633 S23140099 Traveling P22 EBIRD 166.0 5.472 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291255080 2021-12-28 15:50:27.785498 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 6 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-01-16 08:30:00 obsr606693 S21365573 Historical P62 EBIRD 0.048 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313329719 2021-03-26 07:42:06.558742 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Washington US-NY-115 13.0 5 Combines, Hudson Falls L3593631 P 43.2987445 -73.5534668 2015-04-26 10:30:00 obsr1647272 S23079905 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS537569019 2021-04-01 11:15:31.646886 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-12 14:19:00 obsr2775912 S39506222 Traveling P22 EBIRD 219.0 2.414 2.0 1 G2662567 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306299084 2018-08-04 17:04:46 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Schenectady US-NY-093 13.0 Mohawk-Hudson Bike Trail L3525735 P 42.7936487 -73.8413644 2015-03-30 10:30:00 obsr2851090 S22594064 Traveling P22 EBIRD 40.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315227606 2021-04-01 11:15:31.646886 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Kings US-NY-047 Owls Head Park L304833 H 40.6403687 -74.0322153 2015-05-03 08:00:00 obsr2731066 S23195377 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295851426 2021-03-24 21:10:11.310781 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-02-05 08:30:00 obsr1664745 S21749179 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314289325 2021-03-23 16:48:08.60516 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 Unknown Sex, Juvenile (1) United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-29 16:40:00 obsr214789 S23140404 Traveling P22 EBIRD 45.0 6.437 2.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303012726 2021-03-30 19:03:54.667077 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-14 10:15:00 obsr1792012 S22341440 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308641086 2021-03-30 12:05:58.533651 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-09 09:30:00 obsr2750470 S22767754 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319146809 2021-04-01 11:30:42.037277 11371 species avibase-75600969 Northern Flicker Colaptes auratus 11 S C2 S United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-11 05:43:00 obsr924076 S23415251 Traveling P22 EBIRD 145.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319153050 2018-08-06 22:29:39 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-11 08:09:00 obsr1334267 S23415620 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307463831 2022-02-18 10:47:29.953615 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 1 S C2 S United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-03 07:03:00 obsr1062070 S22655784 Stationary P21 EBIRD 115.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308915209 2015-04-10 20:15:26 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 4 United States US New York US-NY Suffolk US-NY-103 US-NY_839 Cedar Beach L149796 P 41.0363235 -72.3890305 2015-04-10 16:52:00 obsr2485753 S22788313 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312536065 2021-04-01 11:30:42.037277 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 08:41:00 obsr2142124 S23029625 Traveling P22 EBIRD 251.0 6.437 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317652565 2021-04-01 11:30:42.037277 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 06:00:00 obsr1760429 S23332547 Traveling P22 EBIRD 600.0 0.805 2.0 1 G1262228 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314221188 2021-03-26 06:55:00.227271 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, City Pier L357819 H 42.871907 -77.2725534 2015-04-29 14:30:00 obsr39511 S23135952 Traveling P22 EBIRD 10.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290427774 2019-01-03 10:54:11 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii X United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Shinnecock Inlet, west L3087424 H 40.8421473 -72.4781388 2015-01-10 15:05:00 obsr1848026 S21298668 Stationary P21 EBIRD 20.0 8.0 1 G1105265 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293481406 2021-03-23 16:21:52.613913 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Ontario US-NY-069 13.0 County Rd. 28 1/2 mile north of Herendeen Rd. L3202088 P 42.991927 -77.2780037 2015-01-26 08:46:00 obsr528918 S21561615 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299497671 2021-03-26 07:56:20.588749 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Nassau US-NY-059 30.0 Levittown L190680 T 40.7259 -73.51427 2015-02-15 09:00:00 obsr204112 S22064603 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320322928 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis N 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 11:40:00 obsr2519357 S23480502 Traveling P22 EBIRD 285.0 8.047 2.0 1 G1273909 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324567362 2021-03-26 06:52:34.887371 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-04-28 10:00:00 obsr2141910 S23745035 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309542326 2021-11-09 20:58:39.126446 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 1 United States US New York US-NY Rockland US-NY-087 28.0 Kennedy-Dells County Park L2557174 H 41.1705783 -73.9896369 2015-04-12 13:00:00 obsr1932005 S22829295 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315838327 2021-11-09 17:47:17.381431 5948 species avibase-A47B0BD4 Least Sandpiper Calidris minutilla 1 United States US New York US-NY Dutchess US-NY-027 13.0 * Ring Road, Salt Point, NY L1084767 P 41.7968319 -73.8318479 2015-04-30 16:45:00 obsr763723 S23227979 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302910406 2021-04-01 12:32:15.282601 11371 species avibase-75600969 Northern Flicker Colaptes auratus 5 United States US New York US-NY Nassau US-NY-059 Jones Beach West End to Field 6 L1521543 P 40.5754609 -73.4896668 2015-03-13 14:00:00 obsr547602 S22333070 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306560931 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 55 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Long Beach Park L1185681 H 40.5834529 -73.670969 2015-03-17 11:00:00 obsr2053730 S22614548 Traveling P22 EBIRD 150.0 4.828 2.0 1 G1201189 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293928117 2021-03-26 06:39:43.334073 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-01-29 08:30:00 obsr856524 S21596727 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298759807 2021-03-26 08:14:57.071052 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Westchester US-NY-119 30.0 Martling Avenue L1368836 P 41.0672048 -73.8554782 2015-02-21 12:31:00 obsr1055148 S22004796 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316291564 2021-03-19 16:32:34.732091 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 07:30:00 obsr2363365 S23254906 Traveling P22 EBIRD 360.0 4.828 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311867034 2021-11-03 18:05:42.061523 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Fire Island--Lighthouse & Trails L1247206 H 40.6316712 -73.219918 2015-04-18 11:45:00 obsr1987335 S22984299 Traveling P22 EBIRD 115.0 3.541 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309531896 2015-04-14 22:51:32 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Brooklyn - Floyd Bennet Field SE corner L1335425 P 40.5849423 -73.876624 2015-03-22 16:26:00 obsr598381 S22828585 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310941854 2015-04-18 14:36:50 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Franklin US-NY-033 14.0 Lake Colby Railroad Tracks L1509081 H 44.3364468 -74.1524597 2015-04-18 09:45:00 obsr2188170 S22925783 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321865089 2021-03-26 07:46:52.994574 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-21 07:15:00 obsr2083114 S23571949 Traveling P22 EBIRD 155.0 4.828 10.0 1 G1282738 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320357347 2021-03-26 07:53:57.664705 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-05-13 17:53:00 obsr1060479 S23482217 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320756194 2021-04-01 10:47:08.851048 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 1 United States US New York US-NY Broome US-NY-007 28.0 917 grant street L1861629 P 42.1114312 -76.0806034 2015-05-17 08:00:00 obsr1947568 S23503483 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291872410 2022-02-18 10:47:29.953615 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 19 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-01-19 09:17:00 obsr1062070 S21414106 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309311022 2015-04-12 08:19:40 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-04-12 08:19:00 obsr1764243 S22814763 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314346096 2018-08-04 17:11:28 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 10 ON C4 ON Female, Adult (2); Male, Adult (8) United States US New York US-NY Fulton US-NY-035 13.0 Cline Rd., marsh (west) L3151886 H 43.0689349 -74.6717227 2015-04-21 10:37:00 obsr2694889 S23143341 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305650653 2021-04-01 10:47:08.851048 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 6 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-03-27 17:04:00 obsr800690 S22545529 Traveling P22 EBIRD 42.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537524 2021-04-01 10:49:39.496318 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna N X United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake Near Railroad Tracks Rte 90 L1421871 P 42.895077 -76.7156056 2015-01-02 08:45:00 obsr1826325 S21145832 Traveling P22 EBIRD 60.0 32.187 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309626606 2021-04-01 11:15:31.646886 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-12 14:30:00 obsr2404047 S22834886 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289716271 2021-11-09 20:12:16.773384 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 11 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-01-07 12:29:00 obsr1912104 S21240739 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306922308 2021-01-26 11:54:44.804994 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 3 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-02 09:57:00 obsr606693 S22641498 Traveling P22 EBIRD 15.0 1.046 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316030405 2021-03-19 16:19:20.977326 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-05 06:51:00 obsr502830 S23239415 Traveling P22 EBIRD 136.0 1.207 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316543199 2021-03-23 17:22:05.708166 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Herkimer US-NY-043 13.0 Doyle Road L2742136 P 42.9102327 -75.1802845 2015-05-06 13:40:00 obsr1680059 S23269069 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294353673 2021-03-24 20:33:47.533911 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 40 United States US New York US-NY Tompkins US-NY-109 13.0 Tareyton Drive yard L1133152 P 42.4712343 -76.4592433 2015-01-25 16:16:00 obsr2683910 S21630258 Traveling P22 EBIRD 3.0 0.483 2.0 1 G1131407 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310165157 2020-05-16 18:07:32 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 2 United States US New York US-NY Otsego US-NY-077 28.0 Gifford Hill L1527128 P 42.5001084 -75.0253876 2015-04-05 08:00:00 obsr2659569 S22873582 Stationary P21 EBIRD 60.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297822544 2021-03-30 06:01:28.020715 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X 2 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-16 17:37:00 obsr1318356 S21923745 Traveling P22 EBIRD 34.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307336127 2021-03-26 06:39:43.334073 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Falconers Hill L787060 H 40.7739443 -73.974072 2015-04-03 09:30:00 obsr1706920 S22672225 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293110865 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 2 United States US New York US-NY Kings US-NY-047 Gravesend Bay, middle parking lot L1843449 H 40.6040297 -74.0243731 2015-01-25 07:30:00 obsr350767 S21532005 Stationary P21 EBIRD 10.0 3.0 1 G1122480 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313730158 2021-03-24 20:53:39.352228 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Albany US-NY-001 13.0 NY, ALB, Normanskill Farm Parking Lo L446383 P 42.6345981 -73.8004339 2015-04-28 07:46:00 obsr1885846 S23105343 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309776187 2018-08-04 17:08:59 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Washington US-NY-115 13.0 Carters Pond WMA L286367 H 43.1645889 -73.4238828 2015-04-13 09:00:00 obsr739254 S22846162 Traveling P22 EBIRD 90.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294174696 2018-08-04 16:55:28 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-31 09:19:00 obsr1407710 S21616178 Traveling P22 EBIRD 56.0 1.609 2.0 1 G1130183 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315420688 2021-03-24 19:35:34.045988 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-03 12:20:00 obsr1996460 S23205277 Traveling P22 EBIRD 52.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321824476 2021-03-26 06:12:17.833181 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-05-19 07:00:00 obsr479109 S23568916 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307099301 2021-11-09 19:38:27.588139 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Orange US-NY-071 28.0 Circle Drive, Tuxedo, NY L1457834 P 41.188319 -74.1869493 2015-04-03 06:40:00 obsr2346161 S22655040 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306465382 2021-11-09 21:57:19.605717 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 United States US New York US-NY Ulster US-NY-111 13.0 Rondout-Kingston L3465160 P 41.91695 -73.98631 2015-03-28 09:33:00 obsr1482758 S22607254 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308418657 2021-03-26 08:13:27.160698 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Tioga US-NY-107 28.0 Tioga Center, East River Rd. L3466824 H 42.0476992 -76.3423848 2015-04-08 08:27:00 obsr1318356 S22750791 Traveling P22 EBIRD 6.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS331398702 2020-10-15 15:34:10 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 Female, Adult (1) United States US New York US-NY Washington US-NY-115 13.0 Yoleberry Farms L4048976 P 43.4144232 -73.5374594 2015-04-11 10:56:00 obsr1204821 S24237021 Incidental P20 EBIRD 1.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290716977 2021-03-26 06:55:00.227271 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Ontario US-NY-069 13.0 The Swamp L1660257 P 42.8848133 -77.0413991 2015-01-12 15:50:00 obsr572658 S21322102 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309310886 2021-04-01 12:18:57.910168 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southeast L879238 H 42.4674118 -76.4183235 2015-04-12 06:55:00 obsr1696616 S22814756 Traveling P22 EBIRD 79.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317194282 2021-03-30 19:07:52.958398 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-08 08:20:00 obsr1516787 S23305659 Traveling P22 EBIRD 220.0 4.426 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310061148 2021-03-24 21:13:42.099821 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 NE C4 NE United States US New York US-NY Westchester US-NY-119 30.0 Home L3194169 P 41.1740736 -73.6296415 2015-04-14 16:30:00 obsr2962893 S22866375 Traveling P22 EBIRD 80.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313384846 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 Female, Unknown Age (2) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 06:23:00 obsr924076 S23083782 Traveling P22 EBIRD 703.0 11.265 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297589804 2021-04-01 11:54:40.172593 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-16 13:36:00 obsr1958124 S21901695 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305772075 2021-04-01 10:47:08.851048 303 species avibase-B59E1863 Canada Goose Branta canadensis N 15 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-03-28 12:03:00 obsr1764243 S22554970 Traveling P22 EBIRD 17.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306929557 2015-04-02 12:00:18 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Orleans US-NY-073 13.0 Behind Mt. Albion Cemetery L2419776 P 43.2383591 -78.152495 2015-04-02 08:30:00 obsr137150 S22642088 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292087757 2015-01-20 08:42:53 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Severinghaus & West trails westmost intersect (boardwalk) L301739 P 42.4767262 -76.4552146 2015-01-20 07:37:00 obsr2307843 S21430938 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310157257 2021-03-23 17:00:13.087107 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-04-15 07:34:00 obsr455249 S22873038 Traveling P22 EBIRD 11.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310326621 2019-07-23 17:28:19 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 15 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr544268 S22884492 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302881985 2021-03-26 07:00:33.333856 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Environmental Center L1476823 H 40.7621022 -73.7535993 2015-03-13 11:30:00 obsr676630 S22330802 Rusty Blackbird Spring Migration Blitz P41 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309409248 2021-03-26 06:12:17.833181 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-04-12 09:00:00 obsr1380963 S22820764 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308912561 2021-04-01 11:30:42.037277 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-09 07:00:00 obsr1312694 S22788095 Traveling P22 EBIRD 120.0 2.414 14.0 1 G1213495 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322554835 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 10 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-24 05:30:00 obsr2233143 S23612590 Area P23 EBIRD 510.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306810318 2021-03-26 06:21:54.883933 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-01 17:30:00 obsr1407710 S22633237 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001366 2021-03-26 07:56:20.588749 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-23 09:00:00 obsr2218212 S23775934 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296278012 2021-03-26 08:14:57.071052 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Westchester US-NY-119 30.0 Briarcliff Manor, NY L3355863 P 41.1631317 -73.834573 2015-02-10 11:00:00 obsr208719 S21783260 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320247036 2018-08-06 22:29:50 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 4 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-13 10:30:00 obsr1079517 S23476572 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315866596 2021-11-15 03:06:58.889978 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 06:48:00 obsr884514 S23229626 Traveling P22 EBIRD 594.0 4.828 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318523574 2021-03-26 06:29:56.44369 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-11 07:37:00 obsr195244 S23379488 Traveling P22 EBIRD 125.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314546988 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Nassau US-NY-059 Stepping Stone Park L1403484 H 40.8177813 -73.7565535 2015-05-01 07:40:00 obsr310469 S23156430 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302081760 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-09 15:45:00 obsr2750470 S22262779 Traveling P22 EBIRD 90.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323943268 2018-02-01 15:11:46 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor11 L3513953 H 42.5527608 -76.0336385 2015-05-30 07:56:00 obsr2173269 S23704659 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299684842 2022-03-08 13:50:22.901821 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-02-20 11:30:00 obsr1977990 S22079130 Traveling P22 EBIRD 20.0 0.08 4.0 1 G1592454 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309367729 2021-04-01 12:14:19.266649 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 14 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-12 09:07:00 obsr1228860 S22818240 Traveling P22 EBIRD 164.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310331915 2021-03-30 19:22:51.561415 636 species avibase-B77377EE Common Eider Somateria mollissima 55 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr1760429 S22884839 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309999320 2021-11-09 19:49:09.72711 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Orange US-NY-071 28.0 Storm King SP L2701877 H 41.423555 -74.0006526 2015-04-12 12:00:00 obsr2191656 S22861859 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291802514 2020-09-05 16:10:08 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-01-06 07:30:00 obsr2409011 S21408870 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316893292 2022-03-09 02:50:29.805088 26890 species avibase-94A44032 European Starling Sturnus vulgaris 22 M C3 M United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-07 07:50:00 obsr128156 S23288825 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303999209 2018-08-04 17:01:55 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Livingston US-NY-051 13.0 ColdSpring Rd Pond Caledonia L1063399 P 42.9451301 -77.8395456 2015-03-19 08:10:00 obsr1060479 S22418807 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294768366 2021-03-30 19:07:52.958398 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-03 14:43:00 obsr2152799 S21663553 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318706162 2021-03-19 16:19:20.977326 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 4 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-11 08:40:00 obsr1996460 S23389486 Traveling P22 EBIRD 420.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291639251 2015-01-18 16:28:10 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Washington US-NY-115 13.0 Cary Road and CR 46 intersection, Ft. Edward (town) L2500750 H 43.2273865 -73.5411072 2015-01-18 11:52:00 obsr2321296 S21396423 Stationary P21 EBIRD 5.0 8.0 1 G1113997 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308053342 2021-03-24 20:33:47.533911 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-06 12:10:00 obsr1655171 S22722800 Traveling P22 EBIRD 40.0 1.609 2.0 1 G1212806 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315794985 2021-04-01 11:15:31.646886 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 08:00:00 obsr1152226 S23225684 Traveling P22 EBIRD 300.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312008933 2021-03-23 16:39:03.255227 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-22 07:03:00 obsr1958124 S22994263 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312433708 2021-03-26 07:43:12.52294 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Morgan Rd. Marshes L99689 H 43.0673045 -76.7170787 2015-04-22 10:25:00 obsr528918 S23022754 Traveling P22 EBIRD 210.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310749862 2021-12-28 15:50:27.785498 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 S7 C3 S7 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-17 18:01:00 obsr606693 S22913558 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298914855 2021-04-01 11:30:42.037277 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-21 13:00:00 obsr2598985 S22017488 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308200154 2021-11-09 22:29:08.190744 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Sullivan US-NY-105 28.0 Yankee Lake - my yard L1100954 P 41.5857896 -74.5484966 2015-04-07 07:15:00 obsr444155 S22734333 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314207671 2021-04-01 11:54:40.172593 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 13 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-29 10:50:00 obsr1032565 S23135172 Traveling P22 EBIRD 220.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293615134 2021-04-01 11:58:54.966271 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 7 United States US New York US-NY St. Lawrence US-NY-089 US-NY_802 13.0 Barnhart Island L666955 H 44.9987416 -74.8464391 2015-01-27 14:00:00 obsr1717932 S21572094 Traveling P22 EBIRD_CAN 120.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317434946 2021-03-19 16:25:42.617988 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY Essex US-NY-031 13.0 Mt. Defiance L2814714 H 43.8313207 -73.406589 2015-05-09 06:10:00 obsr822321 S23319899 Traveling P22 EBIRD 176.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315739130 2021-03-26 07:56:20.588749 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-04 08:30:00 obsr1693806 S23222742 Traveling P22 EBIRD 180.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313827798 2021-11-09 21:47:06.320858 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Ulster US-NY-111 US-NY_1728 28.0 Minnewaska SP L254147 H 41.7237441 -74.2704102 2015-04-28 08:00:00 obsr2219590 S23111492 Traveling P22 EBIRD 255.0 9.817 27.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292658042 2015-01-22 17:18:10 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 150 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-01-22 17:05:00 obsr1958124 S21496389 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301657196 2019-07-23 17:27:46 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 11 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach State Park L230716 P 41.1295147 -72.2665183 2015-03-08 12:18:00 obsr2485753 S22229115 Traveling P22 EBIRD 56.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301216339 2021-11-09 21:05:39.574432 27616 species avibase-D77E4B41 American Robin Turdus migratorius 10 United States US New York US-NY Rockland US-NY-087 30.0 Reed Pond, Pfizer Campus L3457488 P 41.0781219 -74.0227246 2015-03-06 07:20:00 obsr2346161 S22195056 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307063186 2021-03-23 16:21:52.613913 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 1 United States US New York US-NY Ontario US-NY-069 13.0 Shortsville Rd. X Payne Rd., Farmington L800361 H 42.9615545 -77.3038334 2015-03-31 18:24:00 obsr528918 S22652469 Traveling P22 EBIRD 6.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292642200 2017-01-02 11:13:55 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 9 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-22 11:00:00 obsr128156 S21494990 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312511860 2022-02-13 06:32:05.759346 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-04-24 07:36:00 obsr1828453 S23028039 Traveling P22 EBIRD 20.0 1.609 2.0 1 G1233728 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304827888 2021-04-01 11:54:40.172593 27616 species avibase-D77E4B41 American Robin Turdus migratorius N X United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-23 07:34:00 obsr1958124 S22481115 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316021094 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 15:30:00 obsr644027 S23238869 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313527751 2021-03-24 20:33:47.533911 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-27 12:25:00 obsr2001485 S23091624 Traveling P22 EBIRD 38.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311008494 2015-04-18 18:10:15 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Rensselaer US-NY-083 13.0 Papscanee Island Nature Preserve L488165 H 42.5762804 -73.7484741 2015-04-18 08:20:00 obsr979921 S22930009 Traveling P22 EBIRD 55.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295950374 2015-02-10 11:03:22 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Vale of Cashmere L1149386 H 40.6690561 -73.9683616 2015-02-10 07:00:00 obsr2476180 S21757405 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303092560 2021-03-30 19:03:54.667077 7940 spuh avibase-CA08045E Accipiter sp. Accipiter sp. 4 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-14 16:23:00 obsr1195275 S22347830 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290203318 2021-03-26 07:07:10.758746 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Richmond US-NY-085 30.0 Faber Park L2489777 H 40.6410931 -74.135889 2015-01-10 13:15:00 obsr1958124 S21280367 Traveling P22 EBIRD 11.0 0.322 2.0 1 G1103715 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315566958 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 08:30:00 obsr2603801 S23213164 Traveling P22 EBIRD 480.0 12.875 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319015302 2021-04-01 12:32:15.282601 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park L693342 P 40.6618894 -73.719635 2015-05-12 08:00:00 obsr2505956 S23407325 Rusty Blackbird Spring Migration Blitz P41 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290463834 2021-01-22 14:51:58.422646 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 5 United States US New York US-NY Columbia US-NY-021 13.0 Ernest R. Lasher Memorial Park, Germantown L2515858 H 42.158409 -73.8868761 2015-01-11 15:30:00 obsr2954986 S21301582 Stationary P21 EBIRD 30.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310939701 2021-04-01 12:28:44.297881 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Chenango US-NY-017 28.0 Cincinnatus Lake (Chenango Co.) L2404270 H 42.4306156 -75.8623123 2015-04-18 07:36:00 obsr2211210 S22925642 Traveling P22 EBIRD 48.0 0.805 2.0 1 G1224234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305587737 2021-04-01 12:45:19.712958 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 8 United States US New York US-NY Westchester US-NY-119 30.0 Tarrytown, 153 West Main Street L3517846 P 41.07703 -73.86875 2015-03-27 11:26:00 obsr1566889 S22540757 Traveling P22 EBIRD 25.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288979850 2022-02-18 10:47:29.953615 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-01-04 10:38:00 obsr1062070 S21183286 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314918163 2021-04-01 11:15:31.646886 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 05:43:00 obsr2404047 S23178107 Traveling P22 EBIRD 300.0 4.828 2.0 1 G1247219 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288163781 2021-03-24 20:33:47.533911 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 28.0 Etna Lane - Route 13 - Kirk Road walk L2497262 P 42.483055 -76.377116 2015-01-01 11:05:00 obsr2238416 S21114541 Traveling P22 EBIRD 96.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304203199 2021-03-23 16:30:20.514143 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 200 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-19 09:30:00 obsr1633923 S22435126 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308036739 2021-04-01 11:30:42.037277 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-06 13:05:00 obsr2883698 S22721726 Traveling P22 EBIRD 55.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307893184 2021-03-23 17:14:01.933181 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 13 Female, Adult (3); Male, Adult (10) United States US New York US-NY Washington US-NY-115 13.0 Fort Miller, NY L2588693 P 43.1546669 -73.5772634 2015-04-05 10:24:00 obsr1222746 S22711874 Traveling P22 EBIRD 20.0 3.219 2.0 1 G1207226 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310938633 2016-04-02 21:11:18 20829 species avibase-B9B272F4 Common Raven Corvus corax 8 United States US New York US-NY Franklin US-NY-033 14.0 SL Home L1959847 P 44.3193539 -74.1282213 2015-04-18 obsr2188170 S22925579 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293059061 2021-03-26 06:21:54.883933 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 15 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-24 13:30:00 obsr2448957 S21527574 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291514741 2018-08-04 16:53:32 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 16 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.695478 2015-01-17 15:45:00 obsr2855945 S21386563 Stationary P21 EBIRD 30.0 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302687614 2021-03-30 06:01:28.020715 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 10 United States US New York US-NY Nassau US-NY-059 30.0 Florence Ave, Oyster Bay L3483063 P 40.8748272 -73.525089 2015-03-04 16:30:00 obsr93451 S22316072 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292162801 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-20 15:25:00 obsr934639 S21437009 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1348025862 2022-02-20 21:19:47.419139 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-16 09:30:00 obsr2807282 S103313245 Traveling P22 EBIRD 180.0 0.805 2.0 1 G7909914 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289118142 2015-01-04 18:00:00 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris X United States US New York US-NY Broome US-NY-007 28.0 Coleman St. Park L1916434 P 42.0338031 -76.0214424 2015-01-04 11:22:00 obsr1626739 S21194237 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293871653 2021-03-24 20:23:39.258075 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY Suffolk US-NY-103 30.0 Saxon Ave L2324505 P 40.7237388 -73.2270741 2015-01-29 13:05:00 obsr2902954 S21592612 Stationary P21 EBIRD 95.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317738448 2021-04-01 11:30:42.037277 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-09 13:00:00 obsr601383 S23337135 Stationary P21 EBIRD 240.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317133269 2021-04-01 11:15:31.646886 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 07:15:00 obsr2363365 S23302552 Traveling P22 EBIRD 420.0 4.828 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295982967 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 52 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-02-07 14:35:00 obsr1821546 S21759680 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319443686 2021-03-26 06:29:56.44369 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 3 United States US New York US-NY Monroe US-NY-055 13.0 Mt. Hope Cemetery L249453 H 43.1287817 -77.6206675 2015-05-13 17:10:00 obsr2796835 S23432052 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS879182290 2021-03-26 07:51:35.34016 279 species avibase-3E04020B Brant Branta bernicla X United States US New York US-NY Cattaraugus US-NY-009 28.0 USA - Ellicottville - Sugartown Rd. L10970863 P 42.2419492 -78.6246166 2015-03-16 16:30:00 obsr1728854 S65850188 Stationary P21 EBIRD_CAN 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289000440 2021-03-26 08:11:28.0353 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Stillwater, NY 52 county route 76 L1926398 P 42.933103 -73.680332 2015-01-04 10:00:00 obsr2564462 S21184941 Stationary P21 EBIRD 124.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290465703 2021-04-01 11:30:42.037277 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY New York US-NY-061 Randalls Island--NE fields and shoreline L1785381 H 40.7943072 -73.9138235 2015-01-11 12:05:00 obsr259298 S21301725 Traveling P22 EBIRD 45.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314586122 2021-03-26 06:39:43.334073 30494 species avibase-240E3390 House Sparrow Passer domesticus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-01 07:00:00 obsr1349960 S23158808 Traveling P22 EBIRD 261.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307186241 2018-08-04 17:05:13 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Chemung US-NY-015 28.0 Catharine Creek - The Domes L691362 P 42.2115936 -76.8450737 2015-04-03 11:29:00 obsr1334267 S22661252 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307894346 2021-11-15 03:06:58.889978 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-05 09:10:00 obsr599682 S22711963 Traveling P22 EBIRD 170.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314994404 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 06:25:00 obsr2514491 S23182158 Traveling P22 EBIRD 413.0 8.047 4.0 1 G1247369 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294153016 2020-05-02 15:38:26 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-31 13:33:00 obsr943683 S21614483 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304195007 2021-03-24 20:11:57.676649 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 25 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-20 09:00:00 obsr2945658 S22434480 Stationary P21 EBIRD 176.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303629971 2021-04-01 11:27:18.37144 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 3 United States US New York US-NY Montgomery US-NY-057 13.0 Mohawk River - North Shore Vicinity of NYS Canal Corp L2580860 P 42.9503882 -74.3704214 2015-03-16 17:50:00 obsr1000124 S22390297 Traveling P22 EBIRD 31.0 0.161 3.0 1 G1183749 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312757801 2021-03-30 19:29:33.633096 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-25 08:40:00 obsr2406624 S23045694 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309396139 2021-03-23 16:48:08.60516 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 19 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--East Rd. L99686 H 43.009646 -76.7582003 2015-04-12 13:12:00 obsr800690 S22819897 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313645933 2021-11-09 18:32:20.227374 337 species avibase-694C127A Mute Swan Cygnus olor 5 United States US New York US-NY Dutchess US-NY-027 13.0 2122 New Hackensack Road, Poughkeepsie, New York, US (41.66, -73.874) L233101 P 41.6600962 -73.8740462 2015-04-26 07:30:00 obsr842638 S23099861 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294922188 2019-07-23 17:27:16 406 species avibase-27B2749A Wood Duck Aix sponsa 6 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Harry's Harbor Place docks L2038088 P 42.943151 -78.9095592 2015-02-04 14:30:00 obsr2155111 S21675791 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308826604 2015-04-10 10:34:25 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Ontario US-NY-069 13.0 HemDale Farms Wheat Rd. L971652 P 42.9222405 -77.0993042 2015-04-10 10:28:00 obsr354090 S22782156 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322213048 2021-11-15 03:06:58.889978 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-23 08:15:00 obsr2797341 S23593333 Traveling P22 EBIRD 270.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310200490 2018-10-06 16:50:39 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--East Rd. L99686 H 43.009646 -76.7582003 2015-04-15 11:40:00 obsr2172593 S22875957 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296347619 2015-02-12 23:14:17 616 species avibase-25C94A8F Greater Scaup Aythya marila 4 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-12 12:20:00 obsr114791 S21790436 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294466915 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-02-01 11:35:00 obsr1706920 S21639110 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293594722 2021-03-24 20:04:09.481678 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-01-27 07:30:00 obsr2812831 S21570536 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315407335 2021-11-09 18:36:27.898762 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 10 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-05-03 13:19:00 obsr1732267 S23204575 Traveling P22 EBIRD 66.0 3.219 2.0 1 G1249925 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318848608 2021-03-30 19:13:38.458673 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-11 09:32:00 obsr528918 S23397858 Traveling P22 EBIRD 323.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322028845 2018-08-06 22:30:50 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Essex US-NY-031 13.0 Noblewood Park L191517 H 44.3548774 -73.356574 2015-05-22 11:30:00 obsr2105231 S23582455 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310619840 2018-08-21 20:28:43 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-17 09:59:00 obsr2211210 S22905061 Traveling P22 EBIRD 26.0 0.322 1.0 1 G1222720 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761729 2021-03-26 07:56:20.588749 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-24 09:00:00 obsr2218212 S22629534 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321400395 2021-11-09 18:47:30.003269 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Dutchess US-NY-027 13.0 MaloneRdFoxRunClintonAveSpookyHollowRuskeyRdSodomRdBrowningRd L3650430 P 41.8161288 -73.8243055 2015-05-16 17:10:00 obsr763723 S23543107 Traveling P22 EBIRD 55.0 8.69 3.0 1 G1275190 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295793785 2021-03-26 06:29:56.44369 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 Female, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-02-07 08:15:00 obsr1245041 S21744527 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308987066 2021-03-26 07:42:06.558742 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Washington US-NY-115 13.0 Fort Miller, NY L2588693 P 43.1546669 -73.5772634 2015-04-10 12:28:00 obsr1222746 S22793435 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298914877 2021-04-01 11:54:40.172593 483 species avibase-85625D75 Mallard Anas platyrhynchos 17 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-22 08:08:00 obsr1958124 S22017489 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302605222 2021-03-24 20:33:47.533911 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Tompkins US-NY-109 13.0 Enfield, 16 Enfield Center Road East L3482410 P 42.43765 -76.57109 2015-03-12 10:15:00 obsr2673845 S22310206 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321514503 2021-03-23 17:20:04.546757 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-19 10:30:00 obsr2475075 S23549945 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303883242 2021-03-24 19:35:34.045988 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Erie US-NY-029 13.0 Home L2093742 P 42.7338768 -78.7242615 2015-03-18 13:45:00 obsr916033 S22410171 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290313459 2021-04-01 11:24:19.637193 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-10 08:10:00 obsr1782363 S21289593 Stationary P21 EBIRD 60.0 3.0 1 G1104736 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315212466 2021-04-01 11:15:31.646886 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 09:00:00 obsr2499879 S23194562 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313737186 2021-11-09 18:40:19.746769 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 5 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--West L3002249 H 41.9197784 -73.6751747 2015-04-28 08:00:00 obsr1442681 S23105816 Traveling P22 EBIRD 87.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298866292 2021-11-09 22:04:47.967972 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 6 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-21 15:30:00 obsr856524 S22013395 Stationary P21 EBIRD 20.0 3.0 1 G1634038 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314558676 2021-04-01 11:30:42.037277 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 06:30:00 obsr2598985 S23157116 Traveling P22 EBIRD 150.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310375315 2016-10-11 17:00:32 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip D L3559811 P 40.162933 -73.250983 2015-04-11 10:00:00 obsr1175815 S22887903 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221326 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315927407 2021-11-09 19:02:27.638861 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-05-04 13:15:00 obsr2859800 S23233022 Traveling P22 EBIRD 30.0 0.531 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298738617 2019-07-23 17:27:25 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Fort Niagara SP L210265 H 43.2638703 -79.0567981 2015-02-21 11:01:00 obsr558077 S22003004 Traveling P22 EBIRD 43.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321822690 2018-08-04 17:27:45 23450 spuh avibase-55CCEE2D swallow sp. Hirundinidae sp. 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-17 09:00:00 obsr1079517 S23568791 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321726115 2021-03-26 06:29:56.44369 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-11 10:30:00 obsr1962295 S23562918 Traveling P22 EBIRD 300.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299163950 2021-11-09 22:04:47.967972 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-20 16:02:00 obsr1595836 S22039335 Incidental P20 EBIRD 4.0 0 G1156474 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314880173 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-02 10:40:00 obsr334398 S23176153 Stationary P21 EBIRD 18.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306038328 2021-03-24 19:48:44.880783 483 species avibase-85625D75 Mallard Anas platyrhynchos 34 United States US New York US-NY Monroe US-NY-055 13.0 Slater Creek (Russell Station) L140439 H 43.2691002 -77.6264038 2015-03-29 13:23:00 obsr334398 S22574252 Stationary P21 EBIRD 24.0 2.0 1 G1197108 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304726132 2015-03-22 19:17:45 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-03-22 08:00:00 obsr2812831 S22474102 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288764282 2018-08-04 16:52:40 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr1696616 S21164107 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306808723 2021-03-30 19:43:32.881136 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 1 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-04-01 13:35:00 obsr2255732 S22633117 Traveling P22 EBIRD 100.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291138887 2021-03-30 19:29:33.633096 11494 species avibase-20C2214E American Kestrel Falco sparverius N 2 United States US New York US-NY Suffolk US-NY-103 US-NY_780 30.0 USFWS_602 Wertheim NWR L295971 H 40.7754935 -72.8810839 2015-01-15 09:30:00 obsr395994 S21355963 Traveling P22 EBIRD 45.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305380156 2015-03-26 09:22:01 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 4 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-03-26 08:30:00 obsr2172593 S22524711 Traveling P22 EBIRD 51.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294982269 2021-03-26 06:29:56.44369 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-02-03 07:40:00 obsr2449897 S21680948 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305145282 2021-03-26 06:17:19.712573 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus X United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-03-24 obsr2096529 S22506462 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303707273 2015-03-17 15:51:41 456 species avibase-D201EB72 American Wigeon Mareca americana 4 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-17 11:40:00 obsr777630 S22396100 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312037355 2021-03-30 19:29:33.633096 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Pine Neck Sanctuary L122956 H 40.84111 -72.56528 2015-04-22 07:30:00 obsr1736113 S22996189 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS339683819 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-08 08:40:00 obsr294325 S24842757 Traveling P22 EBIRD 265.0 9.656 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309352760 2021-03-24 20:33:47.533911 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-12 08:32:00 obsr455249 S22817351 Traveling P22 EBIRD 9.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308905458 2021-04-01 12:14:19.266649 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 10 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point County Park L835192 H 41.1597479 -72.2347641 2015-04-10 10:20:00 obsr976676 S22787547 Stationary P21 EBIRD 15.0 2.0 1 G1213460 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291462086 2021-11-09 20:42:29.914366 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 9 United States US New York US-NY Putnam US-NY-079 28.0 Lake Mahopac L3261861 H 41.3804796 -73.738389 2015-01-17 08:08:00 obsr1386475 S21382399 Traveling P22 EBIRD 52.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292088429 2021-03-23 17:00:13.087107 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N Sherwood Pltform base - small brdg (0.15km) L1370979 P 42.4801875 -76.4541519 2015-01-20 08:06:00 obsr2307843 S21431005 Traveling P22 EBIRD 10.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318158872 2021-04-01 11:30:42.037277 242 species avibase-D3A260BC Snow Goose Anser caerulescens 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 08:30:00 obsr2633969 S23359521 Traveling P22 EBIRD 300.0 6.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304516386 2021-04-01 12:32:15.282601 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-21 11:43:00 obsr1982614 S22458597 Traveling P22 EBIRD 50.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306528492 2021-03-26 07:43:12.52294 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-03-31 12:10:00 obsr2914424 S22611866 Traveling P22 EBIRD 101.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313704440 2021-11-09 21:30:06.280029 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Ulster US-NY-111 13.0 Weston Rd., swamp L1411814 H 41.7887897 -74.0242416 2015-04-26 11:40:00 obsr2842267 S23103580 Stationary P21 EBIRD 80.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288529623 2015-01-02 16:13:07 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Columbia US-NY-021 14.0 Ancram L859453 T 42.05069 -73.63627 2015-01-01 09:00:00 obsr470489 S21145100 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310097312 2022-02-27 09:35:49.066489 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-04-14 16:15:00 obsr2087436 S22868928 Traveling P22 EBIRD 75.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312833781 2021-11-09 21:31:40.219848 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-25 11:47:00 obsr1482758 S23050128 Traveling P22 EBIRD 69.0 0.805 2.0 1 G1235164 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316070991 2021-03-19 16:44:35.607263 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-05 10:23:00 obsr2933610 S23241686 Traveling P22 EBIRD 60.0 0.322 2.0 1 G1254139 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307515916 2021-11-09 21:31:40.219848 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-04 13:30:00 obsr2700041 S22684803 Traveling P22 EBIRD 60.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309857174 2021-03-26 06:53:58.593564 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-04-13 09:00:00 obsr2812831 S22851801 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309078222 2015-04-11 12:51:53 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hillview Drive L3443007 P 43.0254708 -75.0088924 2015-04-10 obsr2556686 S22799551 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304764282 2021-12-24 11:05:53.916238 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Round Pond & Outlet, Greece L139794 H 43.2748148 -77.6451323 2015-03-22 10:27:00 obsr1696616 S22463900 Traveling P22 EBIRD 17.0 0.161 2.0 1 G1188288 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310425974 2021-11-09 19:51:09.255083 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-04-15 08:30:00 obsr186871 S22891331 Traveling P22 EBIRD 180.0 4.828 17.0 1 G1221890 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311115268 2021-03-30 19:07:52.958398 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 12:34:00 obsr1348614 S22936825 Traveling P22 EBIRD 252.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307930024 2018-08-04 17:05:29 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 Male, Adult (1) United States US New York US-NY Tioga US-NY-107 28.0 Pipe Creek Wetland L3542678 P 42.1073925 -76.3785839 2015-04-04 17:30:00 obsr317968 S22714401 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310212562 2021-03-23 16:45:39.358281 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 Brickhouse L3148579 P 44.5368599 -75.1395428 2015-04-15 10:30:00 obsr86161 S22876712 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300246022 2021-03-26 07:07:10.758746 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-01 12:22:00 obsr1958124 S22123726 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310615610 2021-04-01 11:15:31.646886 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 2 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park-Pier 1 L1064703 P 40.7014636 -73.9971256 2015-04-17 09:00:00 obsr263005 S22904793 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306961297 2015-04-02 14:37:42 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-02 12:31:00 obsr1472872 S22644510 Traveling P22 EBIRD 104.0 6.115 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312075014 2021-03-23 16:39:03.255227 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-5644 Amboy Rd L3582642 P 40.529336 -74.196906 2015-04-22 13:08:00 obsr1958124 S22998480 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300277839 2021-04-01 12:11:50.996293 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N X United States US New York US-NY Seneca US-NY-099 13.0 Canoga, NY Hoster Rd L3448663 P 42.8686789 -76.7772889 2015-02-28 15:00:00 obsr1303581 S22126259 Traveling P22 EBIRD 80.0 8.047 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS419873688 2016-07-24 16:10:49 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 obsr2036618 S30831300 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310865067 2020-11-12 19:46:23 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Nassau US-NY-059 30.0 North Woodmere Park L3514361 H 40.641285 -73.7363824 2015-04-17 13:23:00 obsr1693806 S22921084 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312872594 2018-08-04 17:09:31 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Monroe US-NY-055 13.0 near pond at Mill Landing L2103068 P 43.235551 -77.702571 2015-04-17 10:00:00 obsr1721347 S23052385 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313175209 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-26 06:30:00 obsr352522 S23070483 Traveling P22 EBIRD 60.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340804043 2021-04-26 04:57:02.963704 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 4 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-01 07:19:00 obsr2538893 S24923819 Traveling P22 EBIRD 260.0 4.023 2.0 1 G1399425 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317645972 2021-04-01 11:30:42.037277 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 08:15:00 obsr1814684 S23332163 Traveling P22 EBIRD 300.0 6.437 3.0 1 G1257992 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305824948 2021-04-01 12:14:19.266649 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 25 United States US New York US-NY Suffolk US-NY-103 US-NY_2796 USFWS_480 Seatuck National Wildlife Refuge L2497290 P 40.7141276 -73.2085836 2015-03-28 14:35:00 obsr2902954 S22558616 Traveling P22 EBIRD 10.0 0.805 2.0 1 G1195184 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317448669 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 10 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-09 07:17:00 obsr1189028 S23320700 Traveling P22 EBIRD 108.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321323417 2021-03-26 07:46:52.994574 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis X United States US New York US-NY Albany US-NY-001 13.0 Washington Park (Albany Co.) L1657899 H 42.6560581 -73.7657327 2015-05-19 18:49:00 obsr1165633 S23538324 Traveling P22 EBIRD 62.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288571738 2021-03-24 20:23:39.258075 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Suffolk US-NY-103 30.0 Staller Drive L2618497 P 40.8661125 -72.6181121 2015-01-02 13:15:00 obsr1736113 S21148834 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308497515 2021-03-23 17:37:19.520785 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 Male, Adult (5) United States US New York US-NY Saratoga US-NY-091 13.0 Nolan Rd., S. Glens Falls (boat launch and trail) L2894086 H 43.2704322 -73.6610529 2015-04-08 07:08:00 obsr1222746 S22756944 Rusty Blackbird Spring Migration Blitz P41 EBIRD 84.0 0.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299083847 2021-04-26 04:57:02.963704 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-22 13:30:00 obsr2363365 S22033322 Traveling P22 EBIRD 120.0 0.805 2.0 1 G1157090 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311253538 2021-03-24 20:33:47.533911 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Airport and vicinity L283707 P 42.4935345 -76.4545966 2015-04-19 10:45:00 obsr620377 S22945036 Traveling P22 EBIRD 114.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306897486 2021-11-15 03:06:58.889978 23450 spuh avibase-55CCEE2D swallow sp. Hirundinidae sp. 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-02 06:58:00 obsr894191 S22639499 Traveling P22 EBIRD 116.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314946824 2018-08-04 17:14:00 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-02 06:05:00 obsr1044068 S23179568 Traveling P22 EBIRD 100.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303317200 2018-08-04 17:01:30 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 14 United States US New York US-NY Chenango US-NY-017 28.0 Chenango River off Hogsback Rd Greene L3400995 P 42.3494853 -75.7156062 2015-03-15 14:09:00 obsr1303581 S22364995 Traveling P22 EBIRD 8.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290618978 2021-03-30 19:29:33.633096 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-12 08:31:00 obsr1228860 S21313623 Traveling P22 EBIRD 29.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302922296 2021-04-01 11:24:19.637193 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-13 08:15:00 obsr2223307 S22334066 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323168357 2021-11-09 18:46:29.989647 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 10 United States US New York US-NY Dutchess US-NY-027 13.0 Mashomack Preserve, Pine Plains, NY-Private L3600762 P 41.940154 -73.6593068 2015-05-01 12:30:00 obsr2786327 S23650984 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312087967 2019-04-02 20:13:05 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Barker Hill Rd. Bridge L450623 H 42.2985053 -75.9085891 2015-04-22 11:31:00 obsr879105 S22999298 Traveling P22 EBIRD 3.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321897581 2018-08-06 22:30:42 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-21 08:00:00 obsr30103 S23574049 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313205651 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 11:00:00 obsr2635084 S23072219 Traveling P22 EBIRD 180.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319541898 2020-06-10 12:44:04 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe X United States US New York US-NY Essex US-NY-031 13.0 Mt. Defiance L2814714 H 43.8313207 -73.406589 2015-05-14 07:56:00 obsr2769235 S23437977 Traveling P22 EBIRD 122.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290687085 2021-11-15 03:06:58.889978 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-05 13:45:00 obsr2079468 S21319686 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1229015272 2021-10-05 12:35:07.915713 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 obsr1927179 S50972755 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311730704 2021-03-26 07:30:35.289997 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-04-20 09:00:00 obsr2137468 S22976058 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313747023 2021-03-19 16:08:39.161312 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-04-25 15:43:00 obsr870166 S23106378 Stationary P21 EBIRD 11.0 3.0 1 G1240631 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299564147 2021-04-01 12:32:15.282601 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 6 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-25 13:00:00 obsr676630 S22069833 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303076206 2021-04-01 12:18:57.910168 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Milliken Station L99617 H 42.59868 -76.6335418 2015-03-14 14:44:00 obsr730231 S22346583 Traveling P22 EBIRD 28.0 1.448 2.0 1 G1179146 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316798900 2020-11-12 13:33:47 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 CN C4 CN United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-07 06:20:00 obsr1830659 S23283874 Traveling P22 EBIRD 190.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322420430 2018-08-06 22:30:58 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Yanty Creek Marsh L139805 H 43.3576374 -77.9375696 2015-05-24 05:14:00 obsr1696616 S23605223 Traveling P22 EBIRD 36.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315668777 2018-08-04 17:14:37 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Jefferson US-NY-045 US-NY_778 13.0 Perch River WMA--Vaadi Rd. L721316 H 44.094397 -75.9575415 2015-05-03 13:18:00 obsr408487 S23218889 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309374727 2021-03-19 16:02:45.308962 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata X United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-12 08:30:00 obsr290506 S22818654 Traveling P22 EBIRD 100.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315386498 2021-04-01 11:30:42.037277 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:20:00 obsr1047805 S23203462 Traveling P22 EBIRD 462.0 8.047 3.0 1 G1259290 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305100212 2021-03-30 19:37:33.521815 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Point, Rte 14 First Creek Boat Launch L3512196 P 43.26272 -76.99367 2015-03-21 09:13:00 obsr1386068 S22502919 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291446249 2021-03-30 19:07:52.958398 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-17 09:00:00 obsr1711339 S21381088 Traveling P22 EBIRD 195.0 3.219 3.0 1 G1111978 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320185876 2018-08-04 17:27:28 592 species avibase-3072CC16 Redhead Aythya americana 8 United States US New York US-NY Albany US-NY-001 US-NY_863 13.0 Black Creek Marsh. W. of Hennessy L3647501 P 42.6676408 -73.9745665 2015-05-16 07:30:00 obsr777630 S23473504 Traveling P22 EBIRD 20.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319668970 2021-03-26 06:39:43.334073 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-05-14 10:10:00 obsr1706920 S23445137 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296925510 2021-03-26 07:15:58.375907 7429 species avibase-1327AC55 Osprey Pandion haliaetus N 7 United States US New York US-NY St. Lawrence US-NY-089 13.0 Canton: NE neighborhood walk L1815904 P 44.5982045 -75.1673892 2015-02-14 07:50:00 obsr1558090 S21842335 Traveling P22 EBIRD 60.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316398277 2021-04-01 10:47:08.851048 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 6 United States US New York US-NY Broome US-NY-007 28.0 from my yard L2624869 P 42.1113056 -75.9594167 2015-05-05 16:07:00 obsr2001289 S23260586 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313480203 2018-08-04 17:12:31 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 4 United States US New York US-NY Oneida US-NY-065 13.0 Germany Road Marsh L910139 P 43.1560261 -75.6142462 2015-04-27 10:54:00 obsr2950436 S23089644 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311168695 2022-02-17 14:32:23.002448 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-18 13:20:00 obsr2519357 S22939858 Traveling P22 EBIRD 80.0 1.609 16.0 1 G1224973 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306447021 2021-03-26 07:30:35.289997 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-03-24 18:25:00 obsr1318356 S22605754 Traveling P22 EBIRD 75.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306208214 2021-03-30 19:03:28.117389 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 400 United States US New York US-NY Cayuga US-NY-011 13.0 Harris Park, Cayuga L388115 H 42.917605 -76.7300177 2015-03-29 14:13:00 obsr1655171 S22587220 Stationary P21 EBIRD 3.0 2.0 1 G1198689 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293200693 2021-04-01 11:58:54.966271 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 19 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-01-25 08:30:00 obsr2211750 S21539044 Stationary P21 EBIRD 200.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300459292 2021-03-26 08:14:57.071052 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 3 United States US New York US-NY Westchester US-NY-119 30.0 Seney Ave L3362269 P 40.9373411 -73.7317613 2015-03-02 07:45:00 obsr2420438 S22139285 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309825163 2021-03-23 16:30:20.514143 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 35 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 10:49:00 obsr1318356 S22849651 Stationary P21 EBIRD 299.0 5.0 1 G1218628 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314953865 2015-05-02 14:22:24 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L2861705 P 42.8899133 -78.7164241 2015-05-02 11:30:00 obsr1464134 S23179920 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292895218 2021-03-26 06:29:56.44369 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Monroe US-NY-055 13.0 374 Cromwell L1952255 P 43.1326227 -77.5253892 2015-01-17 10:30:00 obsr1463039 S21515124 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313135668 2015-04-26 14:49:33 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Tompkins US-NY-109 28.0 Shindagin Hollow SF L99407 H 42.3308189 -76.3347942 2015-04-26 11:20:00 obsr1418810 S23068128 Traveling P22 EBIRD 60.0 0.75 2.0 1 G1237112 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319789709 2021-11-09 17:50:20.071794 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook School Road, Millbrook, NY L1098111 P 41.8453963 -73.6169815 2015-05-15 06:15:00 obsr2175245 S23452289 Traveling P22 EBIRD 150.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305080083 2021-03-23 17:39:28.36772 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 15 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-03-24 13:10:00 obsr1565981 S22501374 Traveling P22 EBIRD 42.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309025860 2021-11-09 21:50:48.44865 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-11 08:00:00 obsr1482758 S22796262 Traveling P22 EBIRD 80.0 2.414 30.0 1 G1214172 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313739309 2021-03-23 17:18:00.959502 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 12 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-28 07:00:00 obsr1527551 S23105953 Traveling P22 EBIRD 122.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313808342 2021-03-23 16:52:36.900075 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Pine Neck Sanctuary L122956 H 40.84111 -72.56528 2015-04-28 12:45:00 obsr1693806 S23110290 Traveling P22 EBIRD 40.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292542383 2021-04-01 11:27:18.37144 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Montgomery US-NY-057 13.0 Otsauga Club Road & Lock 15 L834703 P 42.9388076 -74.623239 2015-01-21 13:50:00 obsr316199 S21487232 Traveling P22 EBIRD 48.0 2.897 4.0 1 G1118967 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295534608 2021-03-23 17:26:08.495143 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-07 08:45:00 obsr1137265 S21724871 Traveling P22 EBIRD 60.0 4.828 2.0 1 G1138955 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314250058 2021-04-01 10:45:00.916278 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Siwanoy Trail/So. Goose Creek Marsh Environs L1807476 P 40.8720932 -73.8197125 2015-04-29 14:00:00 obsr538462 S23137764 Traveling P22 EBIRD 105.0 1.7 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288477542 2015-01-02 13:04:21 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Erie US-NY-029 13.0 House L1989569 P 42.8657476 -78.7449306 2015-01-02 09:00:00 obsr2149313 S21140668 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315330434 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 08:30:00 obsr369788 S23200535 Traveling P22 EBIRD 210.0 4.828 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324566307 2021-03-26 06:52:34.887371 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-04-21 10:00:00 obsr2141910 S23744956 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320739749 2021-04-01 12:26:53.827486 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus 1 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-05-16 07:50:00 obsr2855945 S23502544 Traveling P22 EBIRD 175.0 2.414 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319175625 2021-03-26 06:29:56.44369 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-12 11:25:00 obsr1962295 S23416755 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302270485 2021-04-01 11:54:40.172593 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 10 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-10 14:30:00 obsr1958124 S22280927 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303606729 2021-03-26 07:07:10.758746 317 hybrid avibase-4797A222 Greater White-fronted x Canada Goose (hybrid) Anser albifrons x Branta canadensis 2 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-16 17:00:00 obsr1032565 S22388440 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308202697 2021-04-01 12:31:09.823741 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 1 United States US New York US-NY Livingston US-NY-051 13.0 Nations Rd. IBA--Huston Rd. L810213 H 42.8525297 -77.7958202 2015-04-07 08:08:00 obsr1060479 S22734564 Traveling P22 EBIRD 11.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301585200 2021-04-01 10:44:41.995232 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 3 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-03-07 12:00:00 obsr2700440 S22223795 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322106328 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Hundred Acre Pond L139802 H 43.0289001 -77.5643997 2015-05-22 14:58:00 obsr422472 S23587268 Traveling P22 EBIRD 66.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303703744 2021-03-30 19:29:33.633096 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Suffolk US-NY-103 30.0 observation post L3493564 P 40.9332718 -72.6137991 2015-03-17 12:44:00 obsr1277765 S22395826 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293104527 2021-04-01 12:14:19.266649 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-01-22 15:30:00 obsr105122 S21531512 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302896481 2021-04-01 10:55:39.308231 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 90 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-03-13 15:36:00 obsr502830 S22331937 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311081993 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 09:05:00 obsr609516 S22934802 Traveling P22 EBIRD 210.0 4.828 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321796471 2015-05-21 19:09:08 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Albany US-NY-001 13.0 Fiddlehead Lane L2890562 P 42.6559307 -73.9929585 2015-05-19 14:45:00 obsr2855945 S23567308 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313640965 2018-08-04 17:12:33 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Genesee US-NY-037 13.0 old creek rd L3503172 P 42.9419729 -78.2103825 2015-04-27 19:01:00 obsr393804 S23099596 Traveling P22 EBIRD 24.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290213739 2021-03-26 07:20:31.408164 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-01-04 07:30:00 obsr1592950 S21281331 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308871553 2021-12-19 10:32:19.574298 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-04-10 09:05:00 obsr1167884 S22785108 Traveling P22 EBIRD 115.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295602542 2022-02-17 14:32:23.002448 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-08 13:00:00 obsr2499879 S21730127 Traveling P22 EBIRD 135.0 3.219 2.0 0 G1139370 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302146681 2018-08-04 16:59:12 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Tioga US-NY-107 28.0 Confluence Park, Owego L2011248 H 42.0957386 -76.2724543 2015-03-09 18:00:00 obsr317968 S22267368 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300696145 2015-03-03 10:30:56 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 16 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-02 09:12:00 obsr1334267 S22156275 Traveling P22 EBIRD 17.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313248697 2021-11-09 20:39:07.000763 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 1 United States US New York US-NY Putnam US-NY-079 28.0 Fred Dill Wildlife Sanctuary--Carmel Marsh L1354703 H 41.4225272 -73.6721431 2015-04-26 11:07:00 obsr2798434 S23074792 Traveling P22 EBIRD 30.0 0.805 2.0 1 G1237532 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292468609 2021-04-01 11:54:40.172593 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-01-21 13:38:00 obsr1893950 S21481320 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311887110 2021-04-01 10:57:06.520339 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 4 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-04-21 15:11:00 obsr2693145 S22986176 Traveling P22 EBIRD 67.0 1.609 2.0 1 G1230320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309681206 2021-11-15 03:06:58.889978 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-13 07:59:00 obsr870166 S22839221 Traveling P22 EBIRD 86.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303282601 2017-07-29 09:55:40 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-03-15 14:30:00 obsr288410 S22362418 Stationary P21 EBIRD 10.0 2.0 1 G1180642 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292279378 2021-03-26 06:55:00.227271 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Ontario US-NY-069 13.0 2042 Buffalo St. MY YARD L588940 P 42.8875365 -77.1006775 2015-01-21 10:03:00 obsr354090 S21445702 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292041370 2021-11-09 18:33:27.252379 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 1 United States US New York US-NY Dutchess US-NY-027 14.0 Round Pond, Amenia-PRIVATE. MUST CALL TO ENTER. L2427977 P 41.8822416 -73.5246212 2015-01-17 15:40:00 obsr2175245 S21427332 Stationary P21 EBIRD 20.0 2.0 1 G1116547 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305581690 2021-03-26 07:30:35.289997 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 17 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-03-27 10:40:00 obsr1062070 S22540312 Stationary P21 EBIRD 39.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300206456 2018-03-31 23:10:41 6204 spuh avibase-4B2856FB large alcid sp. Uria/Alca sp. 1 United States US New York US-NY Delaware US-NY-025 28.0 Beaverkill Valley Road (Delaware County) L7152184 P 41.9671413 -74.8916316 2015-02-28 09:13:00 obsr1788273 S22120301 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304416899 2018-08-04 17:02:17 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 Unknown Sex, Juvenile (1) United States US New York US-NY Tioga US-NY-107 28.0 Cannon Hole (Barton Landing) L3319362 H 42.0246104 -76.4646721 2015-03-21 13:00:00 obsr317968 S22451196 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289277192 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-05 08:54:00 obsr2184966 S21206307 Traveling P22 EBIRD 170.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311880508 2015-04-21 17:40:13 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Heckscher SP, East Islip L547888 H 40.7129149 -73.1650615 2015-04-20 17:26:00 obsr1107696 S22985741 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303832521 2021-03-19 16:19:20.977326 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Erie US-NY-029 13.0 Delaware Park--Rumsey Woods L1348448 H 42.9307931 -78.8698229 2015-03-16 11:00:00 obsr736608 S22406111 Traveling P22 EBIRD 23.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306303935 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-30 08:15:00 obsr2729716 S22594393 Historical P62 EBIRD 210.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292766374 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-01-23 08:02:00 obsr870166 S21504766 Traveling P22 EBIRD 124.0 1.127 2.0 1 G1120224 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301954182 2021-04-01 11:54:40.172593 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 Female, Adult (2) United States US New York US-NY Richmond US-NY-085 Ocean Breeze L290766 P 40.5833144 -74.0728987 2015-03-08 12:55:00 obsr1032565 S22252764 Traveling P22 EBIRD 55.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296082546 2015-02-11 06:04:35 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 52 United States US New York US-NY Richmond US-NY-085 SI-Miller Field L291643 P 40.5674475 -74.0939199 2015-02-10 14:57:00 obsr1032565 S21767632 Traveling P22 EBIRD 38.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313525887 2021-11-09 21:48:00.368388 622 species avibase-50566E50 Lesser Scaup Aythya affinis 3 United States US New York US-NY Ulster US-NY-111 US-NY_1728 28.0 Mohonk Preserve--Shawangunk Ridge (the Gunks) L266133 H 41.7369558 -74.194517 2015-04-26 11:30:00 obsr2605333 S23092354 Traveling P22 EBIRD 30.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303575296 2021-03-26 06:21:54.883933 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-16 10:00:00 obsr2078092 S22386003 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305558363 2021-03-24 21:12:31.336509 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 1 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-03-27 06:00:00 obsr1839967 S22538417 Stationary P21 EBIRD 126.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303996015 2021-03-23 16:52:36.900075 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Suffolk US-NY-103 30.0 Miller Place-Yaphank Rd. Sod Farm L3490767 H 40.9265121 -72.9790027 2015-03-18 09:35:00 obsr758734 S22418509 Traveling P22 EBIRD 35.0 0.4 5.0 1 G1184873 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317218846 2015-05-10 12:54:34 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Fulton US-NY-035 13.0 Johnstown, 138 Harrison Street L3622430 P 43.02654 -74.35168 2015-05-08 14:58:00 obsr325436 S23306952 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291174932 2017-08-16 16:20:09 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-15 15:20:00 obsr2534001 S21358911 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302356860 2021-03-23 16:45:39.358281 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 Remington Recreation Trail L270558 H 44.6127667 -75.1665791 2015-03-10 16:55:00 obsr1558090 S22290884 Traveling P22 EBIRD 45.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306515311 2018-08-04 17:04:52 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 3 United States US New York US-NY Chenango US-NY-017 28.0 Chenango River off Hogsback Rd Greene L3400995 P 42.3494853 -75.7156062 2015-03-31 11:38:00 obsr1303581 S22610900 Traveling P22 EBIRD 25.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315267793 2021-04-01 12:32:15.282601 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-03 08:30:00 obsr647628 S23197442 Traveling P22 EBIRD 135.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312981828 2021-11-09 21:57:47.774936 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Ulster US-NY-111 13.0 Onteora Lake L3564792 P 41.9868652 -74.0812397 2015-04-25 17:50:00 obsr2862523 S23058988 Traveling P22 EBIRD 40.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1277413449 2021-11-14 20:33:59.685296 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Erie US-NY-029 13.0 Amherst Bike Path L358312 H 42.9991704 -78.7678313 2015-03-16 10:30:00 obsr2155450 S97599647 Traveling P22 EBIRD 40.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306111721 2021-03-19 16:32:34.732091 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-03-29 16:31:00 obsr152435 S22579781 Traveling P22 EBIRD 92.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304561392 2021-03-23 16:39:03.255227 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-03-22 07:24:00 obsr1958124 S22461916 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289651696 2021-03-23 17:22:05.708166 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-06 07:50:00 obsr1000124 S21236409 Area P23 EBIRD 78.0 2.59 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314857213 2021-03-26 06:17:19.712573 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 4 United States US New York US-NY Erie US-NY-029 13.0 UB North Campus L1560817 P 43.0080012 -78.7856713 2015-04-30 07:30:00 obsr2597186 S23174985 Traveling P22 EBIRD 65.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320665914 2015-05-17 18:49:07 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 1 United States US New York US-NY Columbia US-NY-021 14.0 Steepletop L3651110 P 42.3177808 -73.4431744 2015-05-17 08:00:00 obsr348210 S23498608 Traveling P22 EBIRD 180.0 2.414 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306716365 2021-11-15 03:06:58.889978 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-01 08:30:00 obsr599682 S22626537 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308910328 2021-03-23 17:37:19.520785 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Saratoga US-NY-091 13.0 Saratoga Lake Marine Park L2461422 H 43.0533404 -73.71987 2015-04-10 16:26:00 obsr2321296 S22787911 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320747259 2022-01-20 09:38:40.245267 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-17 06:15:00 obsr896341 S23502982 Traveling P22 EBIRD 373.0 4.023 20.0 1 G1275330 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303469685 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-15 11:50:00 obsr1706920 S22377998 Traveling P22 EBIRD 70.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291953893 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 4 United States US New York US-NY Kings US-NY-047 Coney Island Creek Park L614792 H 40.5813224 -74.0052688 2015-01-19 15:37:00 obsr187432 S21420470 Traveling P22 EBIRD 25.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305107449 2021-11-09 20:59:08.238638 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 38 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-03-24 09:20:00 obsr1121454 S22503471 Traveling P22 EBIRD 100.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322496881 2015-05-24 21:49:45 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Broome US-NY-007 28.0 NY, Binghamton, Aqua Terra Park L1207567 P 42.0322561 -75.9386158 2015-05-24 11:15:00 obsr1764243 S23609389 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307516493 2021-03-26 06:21:54.883933 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-04 17:49:00 obsr59386 S22684851 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290954133 2021-03-23 17:26:08.495143 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-13 12:30:00 obsr2555972 S21340990 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311267311 2022-03-05 22:03:50.715584 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-19 08:15:00 obsr890053 S22945880 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320557738 2021-11-09 18:09:06.55827 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Dutchess US-NY-027 28.0 Pawling Nature Reserve L122964 H 41.61833 -73.55833 2015-05-17 12:08:00 obsr1732267 S23492796 Traveling P22 EBIRD 45.0 1.931 2.0 1 G1277165 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309321919 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT east L1392614 P 42.6290176 -73.8623256 2015-04-12 07:51:00 obsr1885846 S22815427 Traveling P22 EBIRD 89.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295660807 2021-04-01 10:45:00.916278 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-02-08 07:45:00 obsr1160328 S21734884 Stationary P21 EBIRD 210.0 9.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311163371 2021-03-26 06:58:34.561206 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Orleans US-NY-073 13.0 South Woods Road L1346149 P 43.1586206 -78.3480136 2015-04-19 08:36:00 obsr2588479 S22939538 Traveling P22 EBIRD 4.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307277649 2015-04-03 19:56:53 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-03 19:00:00 obsr2214649 S22667816 Traveling P22 EBIRD 53.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289012710 2021-11-09 21:56:49.555782 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY Ulster US-NY-111 28.0 JBNHS Wallkill Valley Raptors L3261415 P 41.7190555 -74.1366005 2015-01-03 08:00:00 obsr727579 S21185923 Traveling P22 EBIRD 300.0 24.14 37.0 1 G1093120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323122825 2021-04-01 11:47:43.260314 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-04-15 06:30:00 obsr2409011 S23647875 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309113741 2018-08-04 17:08:26 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-04-11 08:00:00 obsr481595 S22801727 Traveling P22 EBIRD 150.0 0.805 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308425434 2018-12-30 09:53:26 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Crescent Rd., Colonie Landfill pull off L3289882 H 42.811988 -73.7252569 2015-04-08 09:01:00 obsr2321296 S22751422 Stationary P21 EBIRD 30.0 2.0 1 G1211509 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290386750 2021-04-01 11:15:31.646886 26109 species avibase-BAC33609 Brown Creeper Certhia americana 6 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-11 07:00:00 obsr2499879 S21295458 Traveling P22 EBIRD 180.0 1.609 2.0 1 G1105013 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292890487 2015-01-24 10:51:33 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 57 United States US New York US-NY Suffolk US-NY-103 30.0 Riverhead Sod Farms--Doctors Path L588228 H 40.9613311 -72.6676512 2015-01-24 10:47:00 obsr2485753 S21514676 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293056271 2020-05-16 18:10:05 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 3 United States US New York US-NY Otsego US-NY-077 28.0 mill rd & 31 L2878641 P 42.7879491 -74.8576856 2015-01-23 16:13:00 obsr1861127 S21527254 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309318293 2021-04-01 10:53:25.818871 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor10 L3513952 H 42.5109495 -76.0097765 2015-04-12 07:16:00 obsr1318356 S22815200 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315129440 2021-04-01 10:55:39.308231 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-02 09:45:00 obsr1043007 S23189702 Traveling P22 EBIRD 75.0 2.012 4.0 1 G1248148 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294473986 2021-04-28 05:26:15.958627 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-02-01 12:00:00 obsr2404047 S21639640 Traveling P22 EBIRD 102.0 3.219 2.0 1 G1132203 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312602289 2021-04-07 20:48:01.073565 7011 species avibase-534FB490 Northern Gannet Morus bassanus 6 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-24 09:45:00 obsr1738102 S23035055 Traveling P22 EBIRD 135.0 11.265 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135486 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 16 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-30 09:00:00 obsr2218212 S23589167 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305392394 2021-03-26 07:30:35.289997 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 Male, Adult (1) United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-03-26 09:00:00 obsr71667 S22525655 Traveling P22 EBIRD 30.0 0.161 9.0 1 G1192888 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308821323 2021-03-26 07:30:35.289997 27616 species avibase-D77E4B41 American Robin Turdus migratorius 12 United States US New York US-NY Tompkins US-NY-109 13.0 Drake Rd., Lansing L366342 H 42.5309152 -76.5116 2015-04-10 08:31:00 obsr1655171 S22781744 Traveling P22 EBIRD 16.0 3.219 2.0 1 G1219954 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307352664 2021-11-09 21:36:59.310849 27616 species avibase-D77E4B41 American Robin Turdus migratorius 19 United States US New York US-NY Ulster US-NY-111 13.0 rosendale, ny L1465355 P 41.8499692 -74.081765 2015-04-03 09:30:00 obsr187701 S22673399 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312866072 2021-03-19 16:02:45.308962 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-25 13:02:00 obsr800690 S23052013 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314267676 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 13.0 University of Rochester L1057695 H 43.1291149 -77.6293087 2015-04-30 06:08:00 obsr1958774 S23138997 Traveling P22 EBIRD 32.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311634408 2018-08-04 17:11:24 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 4 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-04-20 16:21:00 obsr1764243 S22969652 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305387773 2021-03-26 06:07:45.516082 406 species avibase-27B2749A Wood Duck Aix sponsa 5 S7 C3 S7 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-03-26 09:40:00 obsr128156 S22525304 Rusty Blackbird Spring Migration Blitz P41 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308773855 2018-08-04 17:08:09 20829 species avibase-B9B272F4 Common Raven Corvus corax X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-04-09 obsr1395007 S22778235 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316133272 2021-04-01 10:47:08.851048 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula X United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-05-05 08:55:00 obsr1044068 S23244999 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319798943 2021-03-26 07:46:52.994574 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-05-15 06:15:00 obsr2270510 S23452763 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312069783 2021-03-23 17:20:04.546757 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-04-18 10:30:00 obsr2475075 S22998199 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290471332 2021-03-30 19:29:33.633096 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Rd., Triton Lane L296189 H 40.8219025 -72.5469155 2015-01-10 16:00:00 obsr1615708 S21302228 Traveling P22 EBIRD 44.0 4.828 8.0 1 G1105517 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300159432 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-02-28 13:25:00 obsr350767 S22116679 Traveling P22 EBIRD 75.0 2.414 3.0 1 G1162655 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298228593 2021-04-01 12:32:15.282601 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 60 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-02-18 08:00:00 obsr247620 S21958663 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306893797 2021-03-23 17:39:28.36772 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 6 United States US New York US-NY Tioga US-NY-107 28.0 Confluence Park, Owego L2011248 H 42.0957386 -76.2724543 2015-04-02 18:15:00 obsr317968 S22639215 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313426990 2021-04-01 11:54:40.172593 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-27 07:05:00 obsr1958124 S23086458 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318063200 2021-11-15 03:06:58.889978 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-09 16:30:00 obsr2072398 S23354752 Traveling P22 EBIRD 105.0 2.414 2.0 1 G1261888 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295349250 2021-03-30 19:29:33.633096 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) N 9 United States US New York US-NY Suffolk US-NY-103 30.0 Sound Ave Farm Pond L2519483 P 40.968461 -72.675004 2015-02-07 12:40:00 obsr2485753 S21710142 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318676589 2021-04-01 11:15:31.646886 609 species avibase-67CEA1C1 Tufted Duck Aythya fuligula N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:30:00 obsr454647 S23387795 Traveling P22 EBIRD 300.0 3.0 6.0 1 G1265613 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314332670 2018-08-04 17:13:03 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-29 17:45:00 obsr1830659 S23142538 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305967345 2019-12-01 20:09:33 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-03-29 08:23:00 obsr1958124 S22569250 Traveling P22 EBIRD 4.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317306874 2021-03-19 16:44:35.607263 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush Henrietta Athletic Association (RHAA) ballfields L3457667 H 43.0335528 -77.6629158 2015-05-08 17:40:00 obsr934639 S23311942 Stationary P21 EBIRD 125.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317403166 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 9 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Plains Preserve L1575568 H 40.7240849 -73.5844534 2015-05-09 05:30:00 obsr2823378 S23317982 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293516586 2021-03-26 07:07:10.758746 303 species avibase-B59E1863 Canada Goose Branta canadensis 8 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-27 08:45:00 obsr1958124 S21564181 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621108 2020-03-13 20:12:39 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Albany US-NY-001 28.0 Fairview Farm L2504189 P 42.4713688 -74.1246808 2015-02-08 11:40:00 obsr1363650 S21731696 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319559027 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 06:35:00 obsr2188716 S23438975 Traveling P22 EBIRD 390.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302943993 2018-08-04 16:59:52 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Washington US-NY-115 13.0 US-NY-Greenwich-68 Fort Miller Rd L3485931 P 43.154009 -73.577272 2015-03-13 13:45:00 obsr1181085 S22336006 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316038872 2015-05-05 23:54:42 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-05 07:45:00 obsr1962295 S23239889 Traveling P22 EBIRD 75.0 0.483 2.0 1 G1254128 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309952096 2015-04-14 10:45:46 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Onondaga US-NY-067 13.0 Vesper Sparrow fields L1740241 P 43.220789 -76.421831 2015-04-14 10:30:00 obsr2172593 S22858674 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317128056 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tupelo Meadow L1797864 H 40.7777727 -73.9692761 2015-05-02 08:00:00 obsr1229227 S23302275 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311346617 2021-04-01 12:18:57.910168 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 20 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-04-18 11:20:00 obsr436489 S22950612 Traveling P22 EBIRD 10.0 0.5 2.0 1 G1226722 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316407117 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-06 05:36:00 obsr1154 S23261133 Traveling P22 EBIRD 104.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303484144 2021-04-01 12:12:56.033907 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Steuben US-NY-101 28.0 42.3500x-77.2759 Kniffen Rd. L3492426 P 42.349986 -77.275932 2015-03-16 10:15:00 obsr749440 S22379130 Traveling P22 EBIRD 25.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290163447 2021-03-26 08:11:28.0353 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-01-09 13:00:00 obsr1664745 S21277104 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304029699 2019-07-23 17:28:02 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Ontario US-NY-069 US-NY_803 13.0 Lakefront Park, Geneva L1030465 P 42.8699255 -76.9702148 2015-03-19 11:56:00 obsr354090 S22421601 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310096245 2021-03-26 07:30:35.289997 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-14 08:23:00 obsr2683910 S22868863 Traveling P22 EBIRD 32.0 0.483 2.0 1 G1220019 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290613983 2021-03-24 20:33:47.533911 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-01-12 08:20:00 obsr455249 S21313121 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314567494 2021-11-15 03:06:58.889978 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-01 08:50:00 obsr2797341 S23157662 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312031991 2018-08-04 17:11:30 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-04-21 15:30:00 obsr783450 S22995868 Traveling P22 EBIRD 60.0 0.805 21.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313527715 2021-03-30 19:13:38.458673 18512 species avibase-447A1BA5 Philadelphia Vireo Vireo philadelphicus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Beatty Point L299148 H 43.2762602 -77.684471 2015-04-26 20:00:00 obsr408487 S23092478 Traveling P22 EBIRD 60.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303019098 2021-03-26 07:30:35.289997 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Tompkins US-NY-109 13.0 East Ithaca Recreation Way L99400 H 42.4416113 -76.4630339 2015-03-14 10:14:00 obsr2255296 S22341981 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311198559 2021-03-24 20:49:55.752669 406 species avibase-27B2749A Wood Duck Aix sponsa 14 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-04-19 08:40:00 obsr1721609 S22941625 Stationary P21 EBIRD 72.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301404348 2018-08-04 16:58:54 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-07 10:45:00 obsr983655 S22210756 Stationary P21 EBIRD 60.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317546148 2021-03-26 06:07:45.516082 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 45 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-09 10:42:00 obsr2022298 S23326587 Traveling P22 EBIRD 144.0 2.414 2.0 1 G1266142 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295415011 2022-02-17 14:32:23.002448 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 6 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-07 12:00:00 obsr1488063 S21715208 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351812 2018-08-04 16:53:02 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 7 United States US New York US-NY Yates US-NY-123 13.0 Branchport L2521840 P 42.5848039 -77.148056 2015-01-10 13:50:00 obsr1602357 S21292490 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307894075 2015-04-07 18:00:25 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Lewis US-NY-049 14.0 Delles Road L3542269 P 43.8451672 -75.5664432 2015-04-05 17:45:00 obsr1882034 S22711941 Traveling P22 EBIRD 15.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306342040 2021-03-30 19:13:38.458673 579 spuh avibase-093E93E1 teal sp. Anatidae sp. (teal sp.) 7 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-03-30 08:20:00 obsr983655 S22597213 Traveling P22 EBIRD 25.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322490048 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 08:30:00 obsr1408339 S23608997 Traveling P22 EBIRD 159.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303325593 2021-03-26 06:21:54.883933 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 30.0 DH L487342 P 40.6123918 -74.0094442 2015-03-13 obsr1189028 S22366034 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309705570 2021-03-26 07:20:31.408164 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 18 United States US New York US-NY Suffolk US-NY-103 US-NY_766 30.0 Caumsett SP L259743 H 40.9308721 -73.4720876 2015-04-12 10:35:00 obsr2188716 S22840711 Traveling P22 EBIRD 135.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310479438 2021-04-01 10:47:08.851048 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-04-16 06:50:00 obsr646558 S22895027 Traveling P22 EBIRD 25.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288240342 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY New York US-NY-061 Randalls Island--NE fields and shoreline L1785381 H 40.7943072 -73.9138235 2015-01-01 07:20:00 obsr2184966 S21120947 Traveling P22 EBIRD 130.0 1.0 2.0 1 G1198900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311843796 2021-03-22 08:58:29.008072 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-04-18 17:30:00 obsr2688919 S22983480 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308767576 2021-03-23 17:00:13.087107 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-09 13:11:00 obsr1481464 S22777686 Traveling P22 EBIRD 34.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1052125388 2021-12-08 07:58:41.562209 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-10 08:34:00 obsr359384 S79281922 Incidental P20 EBIRD 2.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314214894 2021-11-15 03:06:58.889978 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 08:00:00 obsr1562881 S23135559 Traveling P22 EBIRD 120.0 2.0 2.0 1 G1243573 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291244272 2021-03-26 07:07:10.758746 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 5 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-01-15 15:40:00 obsr1032565 S21364631 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304376164 2021-03-24 19:48:44.880783 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 64 United States US New York US-NY Monroe US-NY-055 13.0 Slater Creek (Russell Station) L140439 H 43.2691002 -77.6264038 2015-03-21 11:10:00 obsr1696616 S22448277 Traveling P22 EBIRD 59.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319713712 2021-11-09 18:42:19.628792 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 4 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-14 07:13:00 obsr1732267 S23447676 Traveling P22 EBIRD 195.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319579055 2018-08-04 17:27:09 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-14 09:00:00 obsr2843748 S23440010 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307415881 2021-03-24 19:42:42.07177 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-04 10:47:00 obsr1821546 S22678107 Traveling P22 EBIRD 89.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312772507 2015-04-25 11:49:38 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-04-25 11:43:00 obsr2211210 S23046571 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302036815 2019-07-23 17:27:47 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 Male, Adult (1) United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Oswego-1830 Bridie Manor L3469643 P 43.451877 -76.506628 2015-03-09 12:38:00 obsr2224244 S22258965 Stationary P21 EBIRD 59.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS319536850 2021-12-24 11:02:14.483178 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-14 09:44:00 obsr2595828 S23437713 Traveling P22 EBIRD 103.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318712280 2021-11-15 03:06:58.889978 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-11 07:30:00 obsr259298 S23389821 Traveling P22 EBIRD 116.0 4.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290306149 2021-03-23 17:14:01.933181 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 Ft. Edward Grasslands IBA L358625 H 43.2650813 -73.5411072 2015-01-10 14:21:00 obsr1731061 S21289036 Traveling P22 EBIRD 122.0 32.186 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301778742 2022-03-08 13:50:22.901821 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Rockland US-NY-087 30.0 Piermont L152927 T 41.042 -73.91818 2015-03-08 12:00:00 obsr2219590 S22239851 Traveling P22 EBIRD 90.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290838043 2021-12-08 07:58:41.562209 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-01-13 10:50:00 obsr2184966 S21331406 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312972239 2022-03-05 22:03:50.715584 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-25 15:30:00 obsr1565981 S23058352 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS335956737 2021-03-23 16:52:36.900075 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 19 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven National Laboratory (restricted access) L2808445 H 40.8710034 -72.880066 2015-04-27 06:07:00 obsr2137822 S24576712 Traveling P22 EBIRD 97.0 4.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302705354 2018-08-04 16:59:48 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-03-12 19:00:00 obsr1958124 S22317559 Traveling P22 EBIRD 15.0 0.483 2.0 1 G1177149 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307455577 2015-04-04 14:41:52 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Tioga US-NY-107 28.0 US-NY-Spencer-15 Townline Rd L3537919 P 42.201454 -76.535852 2015-04-04 09:45:00 obsr1092576 S22680707 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288709032 2022-02-17 14:32:23.002448 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-03 08:32:00 obsr1605975 S21159756 Traveling P22 EBIRD 148.0 2.414 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316984941 2018-08-04 17:15:08 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 6 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-07 08:40:00 obsr1079517 S23294169 Area P23 EBIRD 35.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301394849 2021-03-23 16:39:03.255227 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-03-07 07:01:00 obsr1958124 S22209969 Stationary P21 EBIRD 1.0 2.0 1 G1169030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295317762 2021-03-23 17:00:13.087107 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Ecology House L550854 H 42.4584285 -76.4832383 2015-02-07 08:29:00 obsr2952480 S21707314 Traveling P22 EBIRD 5.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315419026 2021-03-26 06:21:54.883933 5922 species avibase-06B9BD24 Sanderling Calidris alba 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 10:55:00 obsr1152226 S23205189 Traveling P22 EBIRD 120.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309426290 2021-03-26 06:29:56.44369 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-12 13:37:00 obsr334398 S22821690 Traveling P22 EBIRD 66.0 0.805 3.0 1 G1472375 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324257412 2021-03-26 06:09:25.361188 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.9026012 2015-05-31 15:45:00 obsr646558 S23724373 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312918354 2021-03-31 04:00:49.932585 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Genesee US-NY-037 13.0 9605 Francis Rd , Batavia L3360943 P 42.947728 -78.1616086 2015-04-25 10:02:00 obsr393804 S23055035 Traveling P22 EBIRD 40.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304664951 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 16 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-03-22 12:50:00 obsr2105033 S22469314 Traveling P22 EBIRD 125.0 4.345 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301410689 2021-03-23 17:00:13.087107 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Orchard Hill Rd/Dubois Rd L3461551 P 42.4749141 -76.5466914 2015-03-07 11:20:00 obsr2673845 S22211239 Traveling P22 EBIRD 5.0 0.016 5.0 1 G1168938 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320438175 2021-03-19 16:08:39.161312 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Prendergast Point, Chautauqua Lake L605849 H 42.1892758 -79.4411194 2015-05-17 07:43:00 obsr1092576 S23486569 Traveling P22 EBIRD 37.0 0.402 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1068759584 2021-04-01 12:28:06.222372 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 Thomas Corners Road, West Valley, New York L11769835 P 42.4800657 -78.6597855 2015-05-29 08:00:00 obsr2155450 S80675968 Traveling P22 EBIRD 30.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321965826 2021-04-01 11:15:31.646886 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-22 09:00:00 obsr454647 S23578269 Traveling P22 EBIRD 270.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313289803 2017-04-08 06:07:23 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Tompkins US-NY-109 13.0 Buttermilk Falls SP--Upper L697854 H 42.4026874 -76.5109992 2015-04-26 15:05:00 obsr2137468 S23077376 Traveling P22 EBIRD 85.0 7.564 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312328994 2021-03-19 16:08:39.161312 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-23 13:36:00 obsr2497657 S23015575 Stationary P21 EBIRD 76.0 7.0 1 G1232915 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311186233 2021-04-01 10:57:06.520339 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-04-19 08:21:00 obsr2693145 S22940974 Traveling P22 EBIRD 119.0 1.609 2.0 1 G1225740 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318532039 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 3 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-05-11 07:50:00 obsr2796494 S23379875 Traveling P22 EBIRD 80.0 0.161 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293904897 2021-02-01 04:45:51.985731 242 species avibase-D3A260BC Snow Goose Anser caerulescens 1 United States US New York US-NY Livingston US-NY-051 13.0 Home - Feeders and Woodlot L3326245 P 42.7480094 -77.6821368 2015-01-29 13:00:00 obsr1962379 S21595031 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295451647 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Kings US-NY-047 Coney Island L1022251 P 40.5717588 -73.9911825 2015-02-07 08:00:00 obsr2454565 S21718309 Traveling P22 EBIRD 80.0 2.253 5.0 1 G1137983 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310758858 2021-11-09 20:12:16.773384 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-04-15 13:54:00 obsr1912104 S22914104 Stationary P21 EBIRD 187.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314264347 2015-04-30 12:33:42 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Fillmore Glen SP L518120 H 42.6916467 -76.390214 2015-04-30 07:14:00 obsr1828453 S23138768 Traveling P22 EBIRD 24.0 1.609 2.0 1 G1244192 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322746385 2021-03-26 06:29:56.44369 11494 species avibase-20C2214E American Kestrel Falco sparverius 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-25 08:02:00 obsr1696616 S23624037 Traveling P22 EBIRD 69.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310158182 2015-04-15 07:54:41 591 species avibase-1929E1E1 Canvasback Aythya valisineria 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-04-15 07:35:00 obsr2211210 S22873111 Traveling P22 EBIRD 13.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293569094 2021-03-26 07:07:10.758746 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-01-27 12:47:00 obsr1893950 S21568324 Stationary P21 EBIRD 138.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308523776 2021-04-01 11:54:40.172593 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 5 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-08 07:22:00 obsr396989 S22758930 Traveling P22 EBIRD_NJ 395.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303241715 2021-03-26 07:20:31.408164 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-03-15 10:37:00 obsr2485753 S22359313 Traveling P22 EBIRD 80.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294170648 2015-03-08 10:40:38 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 35 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-01-31 12:30:00 obsr2537615 S21615882 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289875010 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-01-08 12:00:00 obsr2590001 S21253779 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296178091 2019-10-25 15:54:28 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-02-11 07:17:00 obsr2211750 S21775201 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308756886 2021-11-09 21:50:48.44865 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 5 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-09 17:05:00 obsr2862523 S22776966 Traveling P22 EBIRD 50.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314205777 2015-10-17 16:11:51 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-04-29 06:40:00 obsr1886281 S23135034 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361803416 2016-04-22 12:05:44 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-01-02 obsr1645360 S26514097 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308351347 2018-08-16 09:17:59 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-04-05 09:53:00 obsr2233270 S22745677 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001549 2021-03-26 07:56:20.588749 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-26 16:00:00 obsr2218212 S23775939 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321886078 2021-03-26 06:12:17.833181 8773 species avibase-7AA076EF Barred Owl Strix varia 125 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Dunkirk-5372 Lakeside Blvd Ext L3589998 P 42.451118 -79.410467 2015-04-25 16:36:00 obsr2155111 S23573322 Stationary P21 EBIRD 19.0 2.0 1 G1282910 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319492007 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-11 15:00:00 obsr1601967 S23435091 Traveling P22 EBIRD 180.0 4.828 2.0 1 G1270189 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312981858 2020-07-20 09:16:51 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-25 18:40:00 obsr2224244 S23058994 Traveling P22 EBIRD 181.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312493217 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Albany US-NY-001 13.0 Rte 155 and Normanskill L3110282 P 42.6761668 -73.9061529 2015-04-24 08:30:00 obsr634484 S23026770 Traveling P22 EBIRD 50.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302668068 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-12 08:10:00 obsr2505956 S22314484 Traveling P22 EBIRD 110.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310420332 2018-08-04 17:09:16 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Fulton US-NY-035 14.0 West Lake L1149912 P 43.1733897 -74.5384866 2015-04-15 11:50:00 obsr316199 S22890958 Traveling P22 EBIRD 57.0 0.644 3.0 1 G1221855 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314575076 2021-04-01 11:54:40.172593 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-30 08:22:00 obsr396989 S23158159 Traveling P22 EBIRD_NJ 370.0 7.403 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312883455 2015-04-25 17:01:41 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 5 United States US New York US-NY Albany US-NY-001 13.0 Hollyhock Hollow Sanctuary L1146193 H 42.540149 -73.8703108 2015-04-25 15:47:00 obsr2214649 S23053061 Traveling P22 EBIRD 72.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288790203 2021-11-09 20:42:29.914366 30494 species avibase-240E3390 House Sparrow Passer domesticus 22 United States US New York US-NY Putnam US-NY-079 28.0 Lake Mahopac L3261861 H 41.3804796 -73.738389 2015-01-03 07:15:00 obsr258431 S21166343 Traveling P22 EBIRD 90.0 2.414 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317976078 2021-03-23 17:21:37.486392 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 4 United States US New York US-NY Fulton US-NY-035 13.0 Tillboro rd st johnsville L2255286 P 43.0266198 -74.5724702 2015-05-09 16:52:00 obsr1683226 S23350150 Traveling P22 EBIRD 159.0 4.828 2.0 1 G1261081 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309319724 2021-04-01 11:24:19.637193 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-04-12 08:45:00 obsr749440 S22815297 Stationary P21 EBIRD 23.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315808475 2020-07-27 15:41:41 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 S C2 S United States US New York US-NY Columbia US-NY-021 14.0 Harlem Valley Rail Trail--Copake Falls to Under Mountain Rd. L5803911 H 42.0757413 -73.5303798 2015-05-03 08:30:00 obsr798742 S23226382 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299030684 2021-04-01 11:49:53.573686 526 species avibase-56CCA717 Northern Pintail Anas acuta N 6 United States US New York US-NY Queens US-NY-081 30.0 Hampton Inn, Queens L3408436 P 40.667342 -73.7945947 2015-02-22 09:00:00 obsr2645443 S22026857 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305108507 2021-12-03 21:50:44.732892 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 100 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-02-22 15:00:00 obsr2783268 S22503542 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291179196 2021-03-30 19:39:10.250398 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-01-15 08:00:00 obsr1160328 S21359269 Area P23 EBIRD 105.0 30.3514 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308692845 2018-08-04 17:08:14 592 species avibase-3072CC16 Redhead Aythya americana 6 United States US New York US-NY Albany US-NY-001 13.0 Ann Lee Pond L213238 H 42.7376342 -73.813757 2015-04-09 14:56:00 obsr1154 S22772024 Traveling P22 EBIRD 71.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292137582 2021-11-09 18:43:20.381744 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Dutchess US-NY-027 13.0 US-NY-Rhinebeck-2735 New York 9G L3306296 P 41.894918 -73.868783 2015-01-20 14:38:00 obsr1181085 S21435037 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299699054 2021-03-24 19:39:17.849721 11371 species avibase-75600969 Northern Flicker Colaptes auratus 4 United States US New York US-NY Essex US-NY-031 13.0 Boat Launch on Lake George outlet. L2702253 P 43.822134 -73.427088 2015-02-24 12:17:00 obsr2420101 S22080088 Traveling P22 EBIRD 35.0 0.483 1.0 1 G1160277 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS333504721 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 S C2 S Male, Adult (1) United States US New York US-NY New York US-NY-061 30.0 Riverside Park--North of 96th St. L1018490 H 40.8073616 -73.9684904 2015-05-04 06:30:00 obsr2240960 S24394251 Traveling P22 EBIRD_WI 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307210590 2021-11-02 20:32:06.137153 7127 species avibase-13E9F9B4 American Bittern Botaurus lentiginosus 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-04-03 12:30:00 obsr317968 S22662986 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324274504 2021-03-26 06:13:28.501496 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.1752556 -76.8558787 2015-03-16 07:30:00 obsr2736418 S23725489 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290027959 2021-03-26 06:59:15.841579 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Oswego US-NY-075 13.0 Fulton NY yard L810572 P 43.3027778 -76.41 2015-01-09 14:30:00 obsr438598 S21266142 Stationary P21 EBIRD 80.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302614210 2018-08-04 16:59:44 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 4 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, German Brothers Marina L836553 H 42.836435 -77.2820914 2015-03-12 09:25:00 obsr983655 S22310867 Traveling P22 EBIRD 20.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313422913 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-26 08:30:00 obsr827632 S23086178 Traveling P22 EBIRD 245.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313085571 2019-07-23 17:28:28 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.4220913 -79.4281205 2015-04-26 10:45:00 obsr48167 S23065300 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316712152 2015-05-07 06:45:33 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-06 16:00:00 obsr2363365 S23278879 Traveling P22 EBIRD 180.0 0.322 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304043186 2018-08-04 17:01:59 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-03-19 13:26:00 obsr1958124 S22422590 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314300386 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 07:00:00 obsr2313260 S23141094 Traveling P22 EBIRD 226.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292600226 2021-03-23 17:00:13.087107 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 150 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-01-22 08:34:00 obsr2683910 S21491884 Stationary P21 EBIRD 25.0 2.0 1 G1119384 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317444988 2021-04-01 11:15:31.646886 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 10 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-09 05:42:00 obsr1189028 S23320481 Traveling P22 EBIRD 84.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS768675837 2021-03-26 08:14:57.071052 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-06 08:40:00 obsr363553 S56910131 Traveling P22 EBIRD 140.0 3.621 18.0 1 G1207928 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307735912 2021-03-23 17:41:09.545385 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Westchester US-NY-119 30.0 Croton Lake Road L3540309 P 41.2499571 -73.7169957 2015-04-05 13:00:00 obsr2357160 S22700152 Traveling P22 EBIRD 45.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315334032 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 05:30:00 obsr2404047 S23200737 Traveling P22 EBIRD 465.0 6.437 2.0 1 G1251451 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321950268 2018-08-06 22:30:49 32220 species avibase-AF49F890 Lincoln's Sparrow Melospiza lincolnii 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-22 08:20:00 obsr1830659 S23577201 Traveling P22 EBIRD 210.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321622381 2021-03-26 06:17:19.712573 5962 species avibase-4A3B2CFF Short-billed Dowitcher Limnodromus griseus X United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-15 13:45:00 obsr1379161 S23556778 Traveling P22 EBIRD 300.0 3.219 2.0 1 G1281345 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309259277 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-04-11 16:00:00 obsr1555046 S22811421 Stationary P21 EBIRD 60.0 2.0 1 G1223863 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313352033 2019-10-25 16:04:19 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 40 United States US New York US-NY St. Lawrence US-NY-089 US-NY_802 13.0 Jacques Cartier State Park L2441084 H 44.555858 -75.6810667 2015-04-26 07:25:00 obsr1558090 S23081201 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313747111 2021-03-24 19:24:40.212356 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 13:10:00 obsr870166 S23106381 Stationary P21 EBIRD 33.0 3.0 1 G1240628 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316556654 2021-03-26 06:21:54.883933 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-06 15:38:00 obsr1711339 S23269917 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305633566 2021-03-30 19:07:52.958398 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-27 13:31:00 obsr1711339 S22544237 Traveling P22 EBIRD 173.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298985828 2021-04-01 11:15:31.646886 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis N X United States US New York US-NY Kings US-NY-047 30.0 Flatbush Ave -- Plaza to Atlantic L1988258 P 40.678311 -73.9732593 2015-02-12 08:35:00 obsr904434 S22023050 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310885595 2018-08-04 17:09:43 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Franklin US-NY-033 14.0 Saranac Lake High School Pond L824183 H 44.326734 -74.146986 2015-04-18 10:35:00 obsr2630526 S22922400 Traveling P22 EBIRD 60.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321643519 2021-03-26 06:13:28.501496 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Chemung US-NY-015 28.0 Tanglewood Nature Center and Museum L1134359 H 42.1063498 -76.8769491 2015-05-17 10:00:00 obsr569311 S23558052 Traveling P22 EBIRD 120.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291688610 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola N X United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-18 08:50:00 obsr856524 S21399871 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305610696 2021-03-24 20:16:00.852773 303 species avibase-B59E1863 Canada Goose Branta canadensis 8 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-03-27 13:31:00 obsr1958124 S22542570 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297771973 2021-11-09 22:04:47.967972 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-16 13:00:00 obsr1339557 S21918909 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311777307 2021-03-24 20:58:04.794277 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-19 07:13:00 obsr316199 S22979002 Area P23 EBIRD 105.0 2.59 2.0 1 G1229918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289922431 2021-04-01 11:47:43.260314 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 25 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-01-08 12:45:00 obsr1633923 S21257691 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302835558 2018-08-04 16:59:50 505 species avibase-C732CB10 American Black Duck Anas rubripes 12 United States US New York US-NY Seneca US-NY-099 13.0 Elm Beach Rd. L375247 H 42.698202 -76.742181 2015-03-13 10:31:00 obsr2871406 S22327316 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299751227 2021-04-01 12:14:19.266649 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Oak Beach L267998 H 40.63923 -73.28832 2015-02-26 13:30:00 obsr2534001 S22084262 Traveling P22 EBIRD 45.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291738506 2021-04-01 11:54:40.172593 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus N 5 United States US New York US-NY Richmond US-NY-085 SI-Miller Field L291643 P 40.5674475 -74.0939199 2015-01-17 08:45:00 obsr1032565 S21403817 Traveling P22 EBIRD 112.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300069064 2021-03-24 20:16:00.852773 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-02-28 07:18:00 obsr1893950 S22108993 Traveling P22 EBIRD 14.0 0.644 2.0 1 G1161961 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308201060 2021-11-09 19:38:27.588139 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Orange US-NY-071 28.0 Circle Drive, Tuxedo, NY L1457834 P 41.188319 -74.1869493 2015-04-07 07:05:00 obsr2346161 S22734449 Traveling P22 EBIRD 55.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300727205 2021-03-24 20:33:47.533911 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 35 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-03-03 13:45:00 obsr271498 S22158588 Stationary P21 EBIRD 17.0 2.0 1 G1167289 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299496509 2021-03-24 20:06:25.370375 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY Ontario US-NY-069 13.0 603 State Route 21 L3226119 P 43.0072264 -77.2256456 2015-02-18 07:15:00 obsr2832110 S22064498 Stationary P21 EBIRD 75.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298557374 2021-03-26 06:17:19.712573 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-02-20 10:28:00 obsr502830 S21987067 Traveling P22 EBIRD 53.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294321076 2021-04-01 11:54:40.172593 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes - Heart Healthy Trail L1175194 P 40.6224465 -74.1183186 2015-02-01 08:10:00 obsr1231731 S21627723 Traveling P22 EBIRD 109.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313632302 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-27 16:15:00 obsr1659461 S23099014 Traveling P22 EBIRD 180.0 4.828 3.0 1 G1240494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314118692 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-29 08:35:00 obsr827632 S23129593 Traveling P22 EBIRD 130.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320085864 2021-03-24 05:37:45.927792 505 species avibase-C732CB10 American Black Duck Anas rubripes 9 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-16 07:08:00 obsr502830 S23468507 Traveling P22 EBIRD 156.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313993685 2021-03-26 06:55:00.227271 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-29 07:02:00 obsr606693 S23121684 Traveling P22 EBIRD 16.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305279227 2021-03-23 17:00:13.087107 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-25 16:30:00 obsr1363650 S22516749 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305851840 2021-03-23 17:32:20.03109 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Onondaga US-NY-067 28.0 Tully Lakes L1129390 P 42.79011 -76.1278725 2015-03-28 08:47:00 obsr1178949 S22560528 Traveling P22 EBIRD 146.0 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318281669 2021-11-15 03:06:58.889978 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-10 10:30:00 obsr1089184 S23366139 Traveling P22 EBIRD 90.0 0.998 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303146155 2015-03-14 20:34:07 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-14 08:18:00 obsr334398 S22352092 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312345150 2021-03-26 06:21:54.883933 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-23 11:09:00 obsr1821546 S23016627 Traveling P22 EBIRD 62.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313203556 2021-04-01 12:14:19.266649 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 4 United States US New York US-NY Suffolk US-NY-103 30.0 Chandler Estate L1355478 H 40.9559916 -73.0192018 2015-04-26 08:00:00 obsr2338506 S23072112 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310683726 2021-03-26 07:46:52.994574 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-17 11:35:00 obsr481595 S22908964 Traveling P22 EBIRD 130.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303927561 2021-03-30 19:43:32.881136 8806 species avibase-FC4D40D2 Long-eared Owl Asio otus 32 United States US New York US-NY Westchester US-NY-119 30.0 Purdys Reservoirs L840070 H 41.3265942 -73.6621822 2015-03-17 16:37:00 obsr858943 S22413502 Stationary P21 EBIRD 5.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309565789 2018-08-04 17:08:50 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Oneida US-NY-065 13.0 Sylvan Beach at Breakwall L1768296 P 43.1937463 -75.7315385 2015-04-12 11:10:00 obsr660214 S22830836 Stationary P21 EBIRD 25.0 2.0 1 G1217159 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305130113 2021-03-26 07:30:35.289997 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-03-24 09:00:00 obsr2137468 S22505216 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302455227 2021-04-01 11:42:50.317679 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 8 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-03-09 08:00:00 obsr2892286 S22298252 Stationary P21 EBIRD 180.0 2.0 1 G1174877 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306599899 2021-03-19 16:14:11.035882 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Cortland US-NY-023 28.0 AviCor30 L3513972 H 42.745 -76.2441865 2015-03-30 10:46:00 obsr2279567 S22617680 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313092650 2015-05-31 16:47:08 616 species avibase-25C94A8F Greater Scaup Aythya marila 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Oven and The Point L1480317 H 40.7756262 -73.9700541 2015-04-26 10:59:00 obsr2149836 S23065714 Traveling P22 EBIRD 13.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314228413 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 H C2 H United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 15:44:00 obsr924076 S23136397 Traveling P22 EBIRD 240.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306158490 2021-11-09 22:12:17.655802 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Ulster US-NY-111 13.0 Stone Ridge Pond off Mill Dam Rd. L624963 H 41.8618905 -74.1432953 2015-03-29 17:45:00 obsr2862523 S22583339 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294031970 2021-03-26 07:07:10.758746 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-01-30 14:55:00 obsr1893950 S21605077 Stationary P21 EBIRD 137.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296293609 2020-06-29 22:16:16 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 5 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-12 16:00:00 obsr2796494 S21784698 Traveling P22 EBIRD 35.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302839590 2021-03-24 20:33:47.533911 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 3 United States US New York US-NY Tompkins US-NY-109 13.0 CLO Office-2M15 L1313831 P 42.4800694 -76.4515024 2015-03-13 10:48:00 obsr2074043 S22327624 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305207980 2021-11-09 19:21:07.406501 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 12 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-03-25 07:45:00 obsr671490 S22511098 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305681525 2021-11-09 21:47:19.35706 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Ulster US-NY-111 13.0 my house L2630330 P 41.8322234 -74.0801293 2015-03-26 08:30:00 obsr2382993 S22548049 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290160028 2021-04-01 12:32:15.282601 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 220 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-01-10 11:06:00 obsr1744397 S21276808 Stationary P21 EBIRD 36.0 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311779040 2021-03-24 20:33:47.533911 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Tompkins US-NY-109 13.0 east hill recreation trail south L2816554 P 42.433197 -76.468891 2015-04-21 08:07:00 obsr241086 S22979124 Traveling P22 EBIRD 28.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311304092 2021-04-01 11:15:31.646886 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 5 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-04-19 08:15:00 obsr150415 S22948059 Traveling P22 EBIRD 158.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312280632 2021-11-09 18:33:58.039151 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Dutchess US-NY-027 13.0 Cobb Ridge L2517475 P 42.0382655 -73.8797092 2015-04-23 10:00:00 obsr671490 S23012301 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305713973 2021-03-23 17:22:05.708166 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 6 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-26 07:17:00 obsr1000124 S22550383 Area P23 EBIRD 75.0 2.59 2.0 1 G1198836 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304637607 2018-08-04 17:02:27 6186 species avibase-B0932D89 Dovekie Alle alle 1 United States US New York US-NY Richmond US-NY-085 Mill Creek L1302294 H 40.5198919 -74.2406809 2015-03-22 13:04:00 obsr1958124 S22467380 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309795211 2021-03-26 07:20:31.408164 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L635183 H 40.8348529 -72.6153374 2015-04-13 10:00:00 obsr717785 S22847486 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312008319 2021-03-24 19:30:07.33826 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor25 L3513967 H 42.4531944 -76.1188705 2015-04-22 06:51:00 obsr1696616 S22994214 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315405007 2021-04-01 11:30:42.037277 406 species avibase-27B2749A Wood Duck Aix sponsa X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L2020281 P 40.783661 -73.963995 2015-05-03 08:00:00 obsr2436774 S23204430 Traveling P22 EBIRD 480.0 16.093 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS300728294 2015-03-05 22:16:04 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-03 10:15:00 obsr2855945 S22158678 Stationary P21 EBIRD 25.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309833494 2021-03-24 20:53:39.352228 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca X United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-04-13 18:34:00 obsr2214649 S22850193 Traveling P22 EBIRD 28.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308516445 2021-03-26 07:46:52.994574 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Albany US-NY-001 13.0 Stanton Pond L273495 H 42.5094164 -73.9012973 2015-04-08 15:19:00 obsr1154 S22756299 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314414450 2018-08-04 17:13:05 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Albany US-NY-001 13.0 Lions L2803969 P 42.772447 -73.80926 2015-04-30 06:49:00 obsr648176 S23147605 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306136235 2021-12-23 15:00:47.137144 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-03-29 11:50:00 obsr1598543 S22581667 Traveling P22 EBIRD 296.0 0.08 3.0 1 G1196949 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315386520 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 45 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:20:00 obsr1047805 S23203462 Traveling P22 EBIRD 462.0 8.047 3.0 1 G1259290 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318404557 2021-11-09 19:01:40.008558 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-10 06:15:00 obsr1433400 S23372915 Traveling P22 EBIRD 300.0 8.561 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307845090 2021-04-01 11:54:40.172593 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 6 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-04-04 08:00:00 obsr666331 S22708002 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314835998 2015-05-02 08:23:18 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Deep Pond L139803 H 43.0227013 -77.5707016 2015-05-02 08:10:00 obsr1097423 S23173721 Traveling P22 EBIRD 13.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288778034 2021-09-24 19:17:17.418399 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP--Beaver Island L1781444 H 42.9603249 -78.9603013 2015-01-03 11:16:00 obsr1603345 S21165281 Traveling P22 EBIRD 61.0 2.092 5.0 0 G7229365 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322558095 2018-08-06 22:31:01 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 16 Unknown Sex, Juvenile (10); Unknown Sex, Adult (6) United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area - NCAE L474355 P 43.0923966 -77.3768806 2015-05-24 09:20:00 obsr2113616 S23612778 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313315151 2017-09-07 00:30:33 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Clinton US-NY-019 13.0 Ausable Marsh WMA--Ausable Point L143224 H 44.5680008 -73.4219971 2015-04-26 18:30:00 obsr2508112 S23078966 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361564359 2021-11-09 22:04:47.967972 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 20 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-07 09:10:00 obsr132593 S26494836 Traveling P22 EBIRD 172.0 56.327 2.0 1 G1516811 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305570508 2021-03-23 17:00:13.087107 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-03-27 08:40:00 obsr241086 S22539380 Stationary P21 EBIRD 18.0 2.0 1 G1194007 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309712381 2021-11-09 19:49:09.316529 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 15 United States US New York US-NY Orange US-NY-071 28.0 Montgomery L2680387 P 41.5263147 -74.2366791 2015-04-10 13:28:00 obsr1987335 S22841186 Stationary P21 EBIRD 42.0 3.0 1 G1218113 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309822117 2016-12-20 11:34:38 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-04-13 18:17:00 obsr2270510 S22849439 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312249743 2021-11-09 21:43:58.300436 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 1 United States US New York US-NY Ulster US-NY-111 13.0 Black Creek Preserve L2086582 H 41.8236532 -73.9574718 2015-04-23 06:20:00 obsr1136997 S23010320 Traveling P22 EBIRD 110.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312173484 2021-03-26 06:39:43.334073 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-22 16:00:00 obsr2277801 S23005107 Historical P62 EBIRD 180.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312780091 2018-08-04 17:12:05 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-25 08:00:00 obsr706483 S23046986 Traveling P22 EBIRD 135.0 1.931 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322975276 2018-08-06 22:30:12 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Cayuga US-NY-011 US-NY_1726 13.0 Montezuma (NMWMA)--Howland Island--West L318895 H 43.0781 -76.69762 2015-05-16 12:05:00 obsr2683910 S23638356 Traveling P22 EBIRD 14.0 1.448 2.0 1 G1289996 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301180265 2018-08-04 16:58:42 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 278 United States US New York US-NY Erie US-NY-029 13.0 University at Buffalo - Ellicott Creek at St. Rita's lane L3459511 P 43.0064674 -78.7754381 2015-03-04 08:25:00 obsr2597186 S22191919 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309347134 2021-11-09 18:25:59.179016 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina X United States US New York US-NY Dutchess US-NY-027 13.0 Strever Farm Rd, Pine Plains, NY L1828766 P 41.9405617 -73.6553262 2015-04-12 08:28:00 obsr2175245 S22817004 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306828879 2021-03-23 16:45:39.358281 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY St. Lawrence US-NY-089 13.0 Remington Recreation Trail L270558 H 44.6127667 -75.1665791 2015-04-01 17:04:00 obsr1558090 S22634643 Traveling P22 EBIRD 68.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322610565 2021-04-01 11:24:19.637193 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-24 12:28:00 obsr934639 S23615592 Traveling P22 EBIRD 378.0 9.656 4.0 1 G1337409 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306621082 2021-11-09 20:25:59.805509 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Orange US-NY-071 28.0 Laurel Grove Cemetery L760290 H 41.3619453 -74.6869469 2015-03-28 10:00:00 obsr1872991 S22619287 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291306367 2021-03-26 06:39:43.334073 16284 species avibase-33808812 Alder Flycatcher Empidonax alnorum 317 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-16 12:45:00 obsr150865 S21370053 Traveling P22 EBIRD 195.0 6.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS362272925 2015-12-31 17:28:00 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 St. Charles Cemetery L1063079 H 40.7349661 -73.4009886 2015-01-20 10:00:00 obsr167648 S26562933 Stationary P21 EBIRD 45.0 3.0 1 G1521799 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322953031 2021-03-26 06:17:19.712573 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-05-25 obsr2096529 S23636836 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300281655 2022-02-17 14:32:23.002448 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-01 05:35:00 obsr1189028 S22126571 Traveling P22 EBIRD 165.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293887248 2021-03-26 07:20:31.408164 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L635183 H 40.8348529 -72.6153374 2015-01-29 09:00:00 obsr2846902 S21593757 Traveling P22 EBIRD 120.0 1.609 2.0 0 G1128390 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308011498 2021-03-23 16:52:36.900075 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Uplands Farm Sanctuary L123000 H 40.8574672 -73.4535553 2015-04-06 12:35:00 obsr2635084 S22719930 Traveling P22 EBIRD 25.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293834790 2021-04-01 11:54:40.172593 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-01-29 11:01:00 obsr1958124 S21589399 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299142948 2021-03-26 07:53:57.664705 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 2 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-02-22 09:35:00 obsr1060479 S22037614 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303866993 2021-03-26 07:30:35.289997 26109 species avibase-BAC33609 Brown Creeper Certhia americana 2 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-03-18 13:17:00 obsr2211210 S22408710 Traveling P22 EBIRD 12.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290571856 2021-03-26 07:20:31.408164 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Miller Place, Suffolk County, NY L3286845 P 40.9590301 -73.0179262 2015-01-11 13:00:00 obsr1760429 S21310214 Stationary P21 EBIRD 105.0 3.0 1 G1111156 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314268180 2018-08-04 17:12:42 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-04-29 09:00:00 obsr794187 S23139028 Traveling P22 EBIRD 30.0 0.644 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301250793 2018-08-04 16:58:50 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum X United States US New York US-NY Queens US-NY-081 US-NY_1722 Queens County Location L2485808 P 40.6316723 -73.8032341 2015-03-06 14:00:00 obsr2436774 S22197714 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313883144 2019-10-25 16:18:46 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 Macomb: CR 11_1 L3598367 P 44.4100795 -75.4561937 2015-04-28 05:11:00 obsr1558090 S23115119 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315027844 2021-03-26 06:11:29.8335 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Owasco Lake inlet area L302042 H 42.7542393 -76.4637132 2015-05-02 07:03:00 obsr1655171 S23184009 Traveling P22 EBIRD 83.0 0.805 2.0 1 G1247590 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316416359 2021-04-01 10:55:39.308231 483 species avibase-85625D75 Mallard Anas platyrhynchos 24 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 20 Queens Drive L1383581 P 43.0393001 -78.946665 2015-05-06 07:40:00 obsr502830 S23261673 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291626639 2021-04-01 12:18:57.910168 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Tompkins US-NY-109 13.0 Overlook, Rte. 89 N of Hog Hole L479673 H 42.4647843 -76.5246248 2015-01-18 09:46:00 obsr2211210 S21395327 Stationary P21 EBIRD 52.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321401011 2021-11-09 18:38:50.078856 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Dutchess US-NY-027 13.0 Ludlow&Shuman Rds between Shunpike&Tamarack Lake - 1mile L2848883 P 41.8424073 -73.6558015 2015-05-16 15:14:00 obsr763723 S23543148 Traveling P22 EBIRD 35.0 3.058 3.0 1 G1274828 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304390608 2017-04-13 20:50:24 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 80 United States US New York US-NY Richmond US-NY-085 30.0 Mission of Immaculate Virgin, Mt. Loretto L890042 H 40.511334 -74.2196149 2015-03-21 08:29:00 obsr1958124 S22449392 Incidental P20 EBIRD 2.0 1 G1186874 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS432201795 2016-09-25 19:55:03 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-23 obsr2326876 S31756906 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322074157 2018-08-06 22:30:20 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Columbia US-NY-021 14.0 Steepletop, Edna St. Vincent Millay's home L3664883 H 42.3142817 -73.452487 2015-05-17 08:00:00 obsr2978565 S23585225 Traveling P22 EBIRD 180.0 2.414 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314983252 2021-04-01 11:15:31.646886 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 07:15:00 obsr1407710 S23181527 Traveling P22 EBIRD 360.0 4.828 28.0 1 G1247342 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303569784 2021-03-24 20:33:47.533911 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Freeville-55-199 Co Rd 182 L3493347 P 42.501681 -76.430338 2015-03-16 17:40:00 obsr2871406 S22385607 Traveling P22 EBIRD 12.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319932111 2018-02-01 15:11:46 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor22 L3513964 H 42.5801264 -76.092219 2015-05-09 13:24:00 obsr2535282 S23459865 Stationary P21 EBIRD 9.0 2.0 1 G1272241 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308324465 2018-08-04 17:05:07 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.9339927 -76.7278183 2015-04-02 17:15:00 obsr1957925 S22743600 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304106718 2018-08-04 17:02:01 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Onondaga US-NY-067 28.0 Tully Lakes L1129390 P 42.79011 -76.1278725 2015-03-19 16:14:00 obsr1178949 S22427494 Traveling P22 EBIRD 69.0 8.1 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299745361 2021-03-23 16:52:36.900075 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 4 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Ocean Parkway =Tobay-Captree SP L1845678 P 40.6242756 -73.3739671 2015-02-26 13:00:00 obsr547602 S22083775 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321528061 2021-03-19 16:02:45.308962 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-05-20 15:10:00 obsr290506 S23550847 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303962896 2021-03-30 19:13:38.458673 11494 species avibase-20C2214E American Kestrel Falco sparverius 28 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-18 17:35:00 obsr302343 S22416212 Traveling P22 EBIRD 55.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319005270 2021-04-01 10:47:08.851048 591 species avibase-1929E1E1 Canvasback Aythya valisineria N X United States US New York US-NY Broome US-NY-007 28.0 Murphy's Gravel Pit L1167821 P 42.1038265 -75.9965515 2015-05-12 10:30:00 obsr1826325 S23406810 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310534929 2021-03-22 09:17:32.016297 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Oneida US-NY-065 13.0 Sylvan Beach at Breakwall L1768296 P 43.1937463 -75.7315385 2015-04-16 08:05:00 obsr545221 S22899265 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295435829 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-02-07 13:50:00 obsr350767 S21716879 Stationary P21 EBIRD 175.0 3.0 1 G1138074 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290801506 2021-03-24 19:19:28.646223 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-01-12 08:20:00 obsr2700440 S21328231 Stationary P21 EBIRD 90.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS323073138 2021-03-26 07:46:52.994574 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-26 08:35:00 obsr2113222 S23644633 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301491924 2019-07-23 17:27:43 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-03-07 16:07:00 obsr2871406 S22216776 Stationary P21 EBIRD 13.0 4.0 1 G1169154 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291106187 2017-08-16 16:19:01 279 species avibase-3E04020B Brant Branta bernicla 10 United States US New York US-NY Kings US-NY-047 NY Bay L3293438 P 40.6251582 -74.0511131 2015-01-11 12:00:00 obsr2039276 S21353462 Traveling P22 EBIRD 120.0 8.047 47.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297498417 2015-02-16 10:34:38 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Suffolk US-NY-103 30.0 US-NY-Wading River-85 20th St L3029005 P 40.957156 -72.809895 2015-02-16 10:31:00 obsr1006926 S21893364 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311065633 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 07:30:00 obsr2078092 S22933716 Traveling P22 EBIRD 360.0 4.828 22.0 1 G1226459 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297064260 2021-03-24 21:01:50.671145 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Nassau US-NY-059 30.0 Kelly Feeder L3368378 P 40.6848638 -73.5348469 2015-02-15 09:30:00 obsr2954714 S21854379 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298411600 2021-03-23 17:26:08.495143 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 1 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-02-19 08:00:00 obsr1494607 S21974310 Traveling P22 EBIRD 120.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316714835 2021-03-26 06:17:19.712573 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-06 08:40:00 obsr1996460 S23279008 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304416211 2021-04-01 11:54:40.172593 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 4 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-21 15:00:00 obsr1958124 S22451145 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS560702084 2021-03-19 16:08:39.161312 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Saint Hyacinth Chapel and Cemetery L2057391 H 42.5051356 -79.3030071 2015-05-17 10:11:00 obsr916033 S23489514 Traveling P22 EBIRD 58.0 0.402 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311333364 2021-03-24 19:23:17.886063 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Cayuga US-NY-011 13.0 Harris Park, Cayuga L388115 H 42.917605 -76.7300177 2015-04-19 09:19:00 obsr1655171 S22949813 Stationary P21 EBIRD 5.0 2.0 1 G1230117 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314482707 2022-02-17 14:32:23.002448 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-30 14:30:00 obsr979921 S23152281 Traveling P22 EBIRD 70.0 1.609 2.0 0 G1244786 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308496926 2021-03-26 06:29:56.44369 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-04-08 11:30:00 obsr2504709 S22756889 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309807433 2017-04-01 17:05:26 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-04-12 09:10:00 obsr1005220 S22848350 Traveling P22 EBIRD 10.0 0.322 7.0 1 G1218532 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312264811 2021-03-23 17:15:00.080143 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Morgan Rd. Marshes L99689 H 43.0673045 -76.7170787 2015-04-22 09:33:00 obsr1721609 S23011269 Traveling P22 EBIRD 63.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309424370 2021-03-23 16:39:03.255227 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Richmond US-NY-085 US-NY_818 30.0 Bridge Creek, Western Ave. L880325 H 40.6324936 -74.1838624 2015-04-12 08:38:00 obsr155915 S22821618 Stationary P21 EBIRD 6.0 2.0 1 G1216230 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307695020 2021-03-26 07:43:12.52294 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata N 7 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-04-03 10:24:00 obsr1721609 S22697237 Stationary P21 EBIRD 88.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294215238 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-01-31 09:00:00 obsr2207991 S21619232 Traveling P22 EBIRD 60.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308067424 2021-12-03 21:50:44.732892 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 10 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-04-06 09:57:00 obsr155915 S22723838 Traveling P22 EBIRD 21.0 0.805 2.0 1 G1208446 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308978823 2021-11-09 19:57:48.795138 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 1 United States US New York US-NY Orange US-NY-071 28.0 River Rd., Montgomery L3555349 H 41.5441694 -74.2160477 2015-04-10 13:55:00 obsr1181085 S22792870 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307057273 2018-08-04 17:05:05 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Oswego US-NY-075 13.0 Derby Hill L711154 P 43.5275955 -76.2394685 2015-04-02 12:49:00 obsr2716320 S22651976 Stationary P21 EBIRD 221.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292913473 2018-08-04 16:55:08 337 species avibase-694C127A Mute Swan Cygnus olor 40 United States US New York US-NY Tompkins US-NY-109 13.0 Eastshore Railroad Tracks L484271 P 42.4816306 -76.5097336 2015-01-24 12:30:00 obsr1655171 S21516627 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293084871 2019-12-01 20:09:32 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-01-25 08:42:00 obsr1958124 S21529730 Traveling P22 EBIRD 2.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316567367 2020-03-15 09:14:53 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-06 15:59:00 obsr1603345 S23270575 Traveling P22 EBIRD 55.0 0.402 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308979882 2021-03-26 07:42:06.558742 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Washington US-NY-115 13.0 De Groot Rd., Ft. Edward L2480252 H 43.2146148 -73.5800314 2015-04-10 11:45:00 obsr1222746 S22792949 Traveling P22 EBIRD 17.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310771751 2021-03-26 06:12:17.833181 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-04-17 08:00:00 obsr479109 S22914986 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309932885 2021-03-26 08:14:57.071052 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-04-13 08:20:00 obsr206659 S22857291 Traveling P22 EBIRD 150.0 2.414 20.0 1 G1218134 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323810135 2021-11-15 03:06:58.889978 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas N 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-29 12:30:00 obsr511959 S23695668 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306003513 2021-03-26 07:20:31.408164 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 5 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L635183 H 40.8348529 -72.6153374 2015-03-29 07:30:00 obsr1327990 S22571910 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294424478 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 24 United States US New York US-NY Nassau US-NY-059 30.0 Smith Pond, Rockville Center L444839 H 40.6608056 -73.6545278 2015-02-01 13:10:00 obsr916370 S21635871 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292524377 2021-04-01 12:14:19.266649 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Suffolk US-NY-103 Lake Montauk L1878330 P 41.0642757 -71.924088 2015-01-21 10:45:00 obsr247620 S21485780 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308811599 2021-04-01 11:54:40.172593 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 8 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-04-08 15:10:00 obsr1032565 S22781056 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306417965 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus 25 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-03-30 18:50:00 obsr934639 S22603185 Traveling P22 EBIRD 40.0 2.012 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295250959 2021-04-01 11:49:53.573686 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 1 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-02-04 06:36:00 obsr1982614 S21701892 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291303426 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY New York US-NY-061 30.0 Riverside Park--South of 96th St. L1018494 H 40.7902571 -73.9812093 2015-01-15 15:44:00 obsr2793388 S21369827 Traveling P22 EBIRD 90.0 0.322 3.0 1 G1110967 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309193268 2021-09-08 04:42:53.165995 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus N 31 United States US New York US-NY New York US-NY-061 30.0 Sherman Creek Park and Swindler Cove L1018912 H 40.8580281 -73.921085 2015-04-11 15:40:00 obsr1513140 S22807030 Traveling P22 EBIRD 50.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308201969 2021-03-26 07:30:35.289997 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-06 17:16:00 obsr1092576 S22734516 Traveling P22 EBIRD 38.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316870076 2021-03-26 06:14:19.776945 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 1 United States US New York US-NY Columbia US-NY-021 13.0 Gale Hill Road L213117 P 42.4809659 -73.4958735 2015-05-07 06:15:00 obsr570335 S23287503 Traveling P22 EBIRD 150.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290760228 2021-04-01 12:14:19.266649 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 3 United States US New York US-NY Suffolk US-NY-103 Lake Montauk Inlet L1036512 H 41.076981 -71.937511 2015-01-10 10:10:00 obsr2852365 S21325451 Stationary P21 EBIRD 40.0 8.0 1 G1107640 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288486093 2018-08-04 16:52:30 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Brookside GSBAS L365345 P 40.7372424 -73.0921698 2015-01-02 12:20:00 obsr706483 S21141338 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303507300 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Kings US-NY-047 Brooklyn Army Terminal Pier 4 L2598864 H 40.646519 -74.026074 2015-03-16 11:10:00 obsr263005 S22380967 Traveling P22 EBIRD 35.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307030152 2021-03-26 07:30:35.289997 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-04-02 09:00:00 obsr2137468 S22649886 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313623729 2021-11-09 18:49:39.300433 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Dutchess US-NY-027 US-NY_2790 28.0 Dennings Point SP L393533 H 41.4888644 -73.9865263 2015-04-27 16:00:00 obsr1787323 S23098419 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288226450 2021-04-01 11:27:18.37144 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Montgomery US-NY-057 13.0 Fort Hunter Bridge, Montgomery County,N.Y. L3227859 P 42.9435044 -74.2882258 2015-01-01 14:00:00 obsr2590001 S21119767 Traveling P22 EBIRD 30.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289004282 2015-02-14 18:44:27 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Bird Song Trail L290845 H 43.0202323 -77.5809949 2015-01-04 10:11:00 obsr991026 S21185163 Traveling P22 EBIRD 90.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296427754 2021-03-26 07:20:31.408164 483 species avibase-85625D75 Mallard Anas platyrhynchos N 4 United States US New York US-NY Suffolk US-NY-103 30.0 Sachem Public Library L3359447 P 40.8227163 -73.0806899 2015-02-13 07:30:00 obsr1578146 S21797628 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290884949 2021-02-04 13:11:09.63048 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 85 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-E L3288970 P 39.52687 -72.39041 2015-01-11 12:00:00 obsr986025 S21335615 Traveling P22 EBIRD 60.0 19.795 44.0 1 G1108338 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322986974 2018-08-06 22:30:20 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Herkimer US-NY-043 14.0 Lake Rondaxe, Burgers Camp L992096 P 43.761071 -74.9080167 2015-05-17 08:15:00 obsr2535282 S23639044 Traveling P22 EBIRD 180.0 4.828 4.0 1 G1289899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309963311 2021-03-24 20:33:47.533911 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 1 United States US New York US-NY Tompkins US-NY-109 28.0 Ellis Hollow Rd. marsh L305355 H 42.4256205 -76.3860617 2015-04-14 09:54:00 obsr2871406 S22859412 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313051597 2015-04-26 08:16:08 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3591390 P 43.429016 -75.903778 2015-04-26 07:43:00 obsr1477887 S23063244 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290213718 2021-03-26 07:20:31.408164 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 3 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-01-02 07:30:00 obsr1592950 S21281329 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310876183 2021-11-09 18:49:29.473548 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA--Cruger Island Rd. L3840109 H 42.0303286 -73.9201355 2015-04-18 07:00:00 obsr671490 S22921815 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316571323 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 12 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-05-06 06:45:00 obsr646558 S23270789 Traveling P22 EBIRD 20.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303893853 2021-03-24 19:35:34.045988 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-03-14 15:55:00 obsr2597186 S22410959 Traveling P22 EBIRD 25.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312484698 2019-01-03 22:08:58 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Essex US-NY-031 13.0 Mt. Defiance L2814714 H 43.8313207 -73.406589 2015-04-23 07:15:00 obsr2420101 S23026248 Traveling P22 EBIRD 59.0 0.644 2.0 1 G1235054 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305558415 2021-03-23 17:21:08.587586 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 4 United States US New York US-NY Delaware US-NY-025 28.0 Bridge St., Downsville L2384566 H 42.0755272 -74.9899937 2015-03-22 09:36:00 obsr1788273 S22538424 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305917375 2021-04-01 11:24:19.637193 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 11 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-28 17:30:00 obsr991026 S22565607 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305597779 2021-03-26 07:07:10.758746 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 50 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-03-27 12:53:00 obsr1958124 S22541591 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307511016 2021-03-30 19:13:38.458673 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-04 10:33:00 obsr745890 S22684431 Stationary P21 EBIRD 30.0 6.0 1 G1204408 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303668009 2021-04-01 11:15:31.646886 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo N 50 United States US New York US-NY Kings US-NY-047 Gravesend Bay, southern parking lot L1847433 H 40.5972024 -74.0049123 2015-03-16 11:30:00 obsr2505956 S22393196 Traveling P22 EBIRD 90.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302372370 2021-04-01 10:49:39.496318 11494 species avibase-20C2214E American Kestrel Falco sparverius X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-03-10 09:40:00 obsr2255296 S22292091 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308556749 2021-11-09 21:50:48.44865 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-08 13:00:00 obsr677511 S22761562 Stationary P21 EBIRD 25.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309259278 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-04-11 16:00:00 obsr1555046 S22811421 Stationary P21 EBIRD 60.0 2.0 1 G1223863 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310382423 2021-03-26 07:30:35.289997 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-16 07:27:00 obsr1076139 S22888371 Stationary P21 EBIRD 58.0 4.0 1 G1227832 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306259017 2021-04-01 10:58:47.067498 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 400 United States US New York US-NY Genesee US-NY-037 13.0 Cockram Rd. (Byron) L2616838 P 43.0669126 -78.0833101 2015-03-28 11:10:00 obsr2339578 S22590991 Traveling P22 EBIRD 12.0 2.414 2.0 1 G1197926 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317362166 2021-03-26 07:52:59.845315 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-08 06:43:00 obsr316199 S23315031 Area P23 EBIRD 210.0 2.59 2.0 1 G1258297 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294122255 2021-04-01 11:15:31.646886 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 15 United States US New York US-NY Kings US-NY-047 US-NY_1722 Dead Horse Bay, Marina L151656 H 40.585205 -73.901276 2015-01-31 10:01:00 obsr152435 S21612059 Stationary P21 EBIRD 74.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298410288 2021-04-01 11:42:50.317679 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 50 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-02-17 10:45:00 obsr2892286 S21974178 Stationary P21 EBIRD 150.0 2.0 1 G1152652 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311149159 2021-03-23 16:39:03.255227 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-19 06:58:00 obsr1958124 S22938579 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309954732 2021-04-01 11:24:19.637193 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay L83 H 43.3130395 -77.7153471 2015-04-14 09:00:00 obsr2933610 S22858850 Stationary P21 EBIRD 115.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311415982 2021-11-09 21:05:40.237019 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Rockland US-NY-087 28.0 Bear Mountain SP--Hessian Lake L3576797 H 41.3171498 -73.9920777 2015-04-19 12:00:00 obsr1121454 S22954987 Traveling P22 EBIRD 40.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305961720 2021-03-26 07:07:10.758746 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--S entrance (maint. bldgs) L1350789 H 40.5146545 -74.2124928 2015-03-29 07:18:00 obsr1958124 S22568826 Traveling P22 EBIRD 2.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307530950 2021-03-24 20:33:47.533911 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Arrowwood Drive-Tareyton Park L2393851 P 42.4770939 -76.4614749 2015-04-04 17:45:00 obsr620377 S22685788 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294147598 2021-04-01 11:15:31.646886 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 2 United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-01-31 08:16:00 obsr1189028 S21614075 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740169 2021-04-01 12:26:53.827486 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Albany US-NY-001 13.0 mohawk below cohoes falls L3186923 P 42.7786769 -73.7002158 2015-01-17 obsr2774749 S23337227 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288763815 2021-12-03 21:50:44.732892 303 species avibase-B59E1863 Canada Goose Branta canadensis 60 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-01-03 12:31:00 obsr1893950 S21164069 Traveling P22 EBIRD 20.0 1.609 2.0 1 G1093019 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322746387 2021-03-26 06:29:56.44369 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-25 08:02:00 obsr1696616 S23624037 Traveling P22 EBIRD 69.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311788755 2021-04-01 11:15:31.646886 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 07:40:00 obsr152435 S22979694 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317662832 2021-04-01 11:30:42.037277 6043 species avibase-2C7A2673 Lesser Yellowlegs Tringa flavipes 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:20:00 obsr1055148 S23333101 Traveling P22 EBIRD 462.0 8.047 3.0 1 G1259290 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312821899 2021-03-30 19:29:33.633096 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-25 09:45:00 obsr1693806 S23049488 Traveling P22 EBIRD 45.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312140430 2015-12-18 19:52:35 27616 species avibase-D77E4B41 American Robin Turdus migratorius 20 United States US New York US-NY Suffolk US-NY-103 30.0 Smith Point County Park L621111 H 40.7352017 -72.8641286 2015-04-22 10:20:00 obsr717785 S23002748 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308138577 2021-03-26 07:42:06.558742 11371 species avibase-75600969 Northern Flicker Colaptes auratus X United States US New York US-NY Washington US-NY-115 13.0 Ft. Miller Rd. L1357316 H 43.1553093 -73.5771559 2015-04-04 14:30:00 obsr2774749 S22729297 Traveling P22 EBIRD 30.0 4.828 4.0 1 G1208937 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306136243 2021-12-23 15:00:47.137144 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 230 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-03-29 11:50:00 obsr2468772 S22581668 Traveling P22 EBIRD 296.0 0.08 3.0 1 G1196949 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320270013 2017-06-27 14:02:44 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Burger Park L390594 H 43.3099074 -77.7326596 2015-05-16 17:30:00 obsr1929165 S23477702 Stationary P21 EBIRD 10.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315107298 2021-04-01 11:15:31.646886 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 30 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 07:30:00 obsr2078092 S23188477 Traveling P22 EBIRD 480.0 6.437 28.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307719016 2015-04-05 13:50:09 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-05 11:30:00 obsr2105033 S22698738 Traveling P22 EBIRD 110.0 3.541 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306371305 2021-04-01 11:23:42.170869 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditchbank Auto tour L1001436 P 43.1068108 -75.7973814 2015-03-30 14:00:00 obsr2716320 S22599504 Traveling P22 EBIRD 132.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313989978 2021-03-26 08:09:53.772059 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 2 United States US New York US-NY Rensselaer US-NY-083 13.0 Burden Pond L599063 H 42.7052531 -73.6862898 2015-04-22 16:50:00 obsr1735540 S23121890 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297485680 2021-03-26 06:09:25.361188 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-02-16 09:40:00 obsr879105 S21892175 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303612001 2022-02-13 06:32:05.759346 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 25 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-03-16 17:47:00 obsr1318356 S22388847 Stationary P21 EBIRD 108.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309479703 2018-08-04 17:08:54 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-12 13:56:00 obsr800690 S22824952 Stationary P21 EBIRD 10.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318091507 2015-05-10 11:52:21 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo X United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-10 08:10:00 obsr1534851 S23356178 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313766447 2018-08-04 17:12:35 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-04-28 08:30:00 obsr473055 S23107613 Traveling P22 EBIRD 75.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304094327 2015-03-20 20:39:12 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Richmond US-NY-085 Lemon Creek Park L508340 H 40.5121298 -74.198581 2015-03-19 14:00:00 obsr1535951 S22426524 Stationary P21 EBIRD 60.0 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS306086980 2021-03-30 19:07:52.958398 8829 species avibase-8F123A11 Short-eared Owl Asio flammeus 50 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-29 13:30:00 obsr1807494 S22577852 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1196641 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295660412 2021-03-26 07:30:35.289997 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-08 13:08:00 obsr2683910 S21734856 Traveling P22 EBIRD 42.0 0.483 2.0 1 G1139917 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316582799 2021-03-24 19:35:34.045988 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Erie US-NY-029 13.0 Home L2093742 P 42.7338768 -78.7242615 2015-05-06 09:34:00 obsr916033 S23271498 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307010285 2021-03-30 19:29:33.633096 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Avalon Gardens and East Farm Preserve L525770 H 40.9118667 -73.1454921 2015-04-02 17:13:00 obsr1228860 S22648500 Traveling P22 EBIRD 59.0 1.046 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309457233 2021-03-23 16:30:20.514143 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 15 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3558447 P 43.429016 -75.903778 2015-04-12 15:12:00 obsr1477887 S22823433 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304621171 2021-03-24 05:37:45.927792 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-03-22 10:00:00 obsr2537615 S22466190 Stationary P21 EBIRD 45.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316111338 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 07:45:00 obsr189780 S23243822 Area P23 EBIRD 120.0 2.4281 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290523318 2021-04-01 12:14:19.266649 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis X United States US New York US-NY Suffolk US-NY-103 30.0 Lake Capri L1133165 H 40.6961927 -73.3003521 2015-01-11 08:00:00 obsr2207991 S21306494 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320093541 2018-04-16 15:51:00 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 Female, Adult (1); Male, Adult (3) United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-16 06:50:00 obsr2843748 S23468907 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291533085 2021-04-01 12:14:19.266649 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-17 13:30:00 obsr1160328 S21388069 Stationary P21 EBIRD 45.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314266486 2021-03-23 17:00:13.087107 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-04-30 07:33:00 obsr455249 S23138920 Traveling P22 EBIRD 11.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320246743 2021-11-09 17:58:40.313796 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 3 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-16 11:00:00 obsr2241630 S23476555 Traveling P22 EBIRD 290.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298638948 2018-08-04 16:57:27 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus X United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-20 13:45:00 obsr2744341 S21993895 Stationary P21 EBIRD 120.0 2.0 1 G1154271 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325234436 2021-03-23 17:23:45.772216 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 US-NY PORTAGE-Letchworth SP-River Rd.-Dygert-ShortTrack-Williams L3699279 P 42.575554 -78.020111 2015-05-26 10:10:00 obsr731272 S23792644 Traveling P22 EBIRD 298.0 12.07 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292798574 2021-11-09 22:37:20.108383 12258 species avibase-11783075 Monk Parakeet Myiopsitta monachus 2 United States US New York US-NY Sullivan US-NY-105 28.0 Bashakill L1566572 P 41.5241759 -74.5163684 2015-01-23 07:00:00 obsr2219590 S21507362 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304649916 2019-07-23 17:28:02 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk L141361 T 42.4794617 -79.3339691 2015-03-19 12:20:00 obsr430081 S22468212 Stationary P21 EBIRD 83.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313731146 2018-08-04 17:12:35 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 34 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-04-28 08:15:00 obsr2588479 S23105413 Traveling P22 EBIRD 15.0 0.161 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317865983 2022-02-17 14:32:23.002448 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-09 04:53:00 obsr150415 S23343869 Traveling P22 EBIRD 7.0 0.402 4.0 1 G1260343 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310325993 2021-03-30 19:22:51.561415 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr544268 S22884437 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317575622 2021-11-09 19:18:50.164977 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 5 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L900098 P 41.7307464 -73.8804388 2015-05-08 11:00:00 obsr2954986 S23328439 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288782760 2021-03-26 07:20:31.408164 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 15 United States US New York US-NY Suffolk US-NY-103 30.0 Reeves Ave. and Roanoake Ave. vicinity L2691333 H 40.9544584 -72.6921648 2015-01-03 13:00:00 obsr547602 S21165670 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318268842 2021-03-19 16:44:35.607263 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-05-10 12:05:00 obsr2504709 S23365487 Traveling P22 EBIRD 65.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317841770 2021-03-19 16:08:39.161312 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius X United States US New York US-NY Chautauqua US-NY-013 13.0 Cheney Point, Chautauqua Lake L2853116 H 42.1319065 -79.3897203 2015-05-08 08:30:00 obsr2418 S23342620 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314297058 2015-04-30 10:33:36 7200 species avibase-49D9148A Great Egret Ardea alba 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-04-29 09:45:00 obsr1334267 S23140895 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317499996 2021-03-30 19:13:38.458673 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-09 06:03:00 obsr1545618 S23324158 Traveling P22 EBIRD 146.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312784254 2021-03-26 06:39:43.334073 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-04-25 11:20:00 obsr431494 S23047214 Traveling P22 EBIRD 59.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311243427 2018-08-04 17:11:17 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 4 United States US New York US-NY Schuyler US-NY-097 28.0 Turtle Pond, Alpine L3524673 H 42.312646 -76.74167 2015-04-19 12:51:00 obsr2173269 S22944379 Stationary P21 EBIRD 21.0 2.0 1 G1226338 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305691332 2021-03-23 17:00:13.087107 7261 species avibase-86D45B8F Green Heron Butorides virescens 8 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-03-26 17:40:00 obsr2683910 S22548740 Traveling P22 EBIRD 25.0 0.483 2.0 1 G1194516 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311902376 2021-03-26 08:05:20.615241 5923 species avibase-15369E8E Dunlin Calidris alpina 1 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--West Shore Trail, Lakeview Point L2992400 H 43.0894736 -76.2202692 2015-04-21 13:00:00 obsr800690 S22987138 Traveling P22 EBIRD 120.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310172993 2021-11-09 19:59:19.95918 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY Orange US-NY-071 28.0 Caracara Stakeout L3565304 P 41.538952 -74.220227 2015-04-10 13:35:00 obsr1982614 S22874130 Stationary P21 EBIRD 250.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316956034 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 11 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-07 09:49:00 obsr2054320 S23292549 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299824117 2021-03-24 20:21:40.993321 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 8 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-02-27 08:55:00 obsr2211210 S22089990 Stationary P21 EBIRD 13.0 2.0 1 G1160930 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302589104 2021-03-26 06:29:56.44369 662 species avibase-FB738385 Bufflehead Bucephala albeola N 2 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-03-10 08:10:00 obsr1245041 S22308842 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS920853594 2021-03-23 16:30:20.514143 6616 species avibase-7E022378 Common Loon Gavia immer 2 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Mexico-192 Sage Creek Dr L3572034 P 43.52566 -76.238123 2015-04-30 06:44:00 obsr2720788 S68975045 Traveling P22 EBIRD 55.0 1.609 2.0 1 G5326508 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297739609 2021-04-01 12:32:15.282601 30494 species avibase-240E3390 House Sparrow Passer domesticus 8 United States US New York US-NY Nassau US-NY-059 30.0 base camp L2230587 P 40.6756935 -73.4391327 2015-02-16 16:30:00 obsr205586 S21915883 Traveling P22 EBIRD 60.0 12.875 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322935133 2018-08-06 22:31:02 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Hamilton US-NY-041 14.0 Willis Lake Swamp L1160273 P 43.3721139 -74.2425156 2015-05-24 10:30:00 obsr739254 S23635740 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307884679 2021-04-01 11:30:42.037277 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-05 15:45:00 obsr1555046 S22710898 Traveling P22 EBIRD 30.0 0.402 3.0 1 G1208363 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305609197 2021-04-22 12:55:05.75868 26109 species avibase-BAC33609 Brown Creeper Certhia americana 3 United States US New York US-NY Oneida US-NY-065 13.0 Waterville Home Grounds L1257983 P 42.9688865 -75.3351134 2015-03-27 11:00:00 obsr2139704 S22542448 Traveling P22 EBIRD 135.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317102072 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-08 06:50:00 obsr2797341 S23300953 Stationary P21 EBIRD 25.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294343465 2022-02-17 14:32:23.002448 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 100 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-01 09:40:00 obsr1605975 S21629548 Traveling P22 EBIRD 95.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303160310 2018-08-04 17:00:43 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Cayuga US-NY-011 13.0 Harris Park, Cayuga L388115 H 42.917605 -76.7300177 2015-03-14 13:47:00 obsr1655171 S22353163 Stationary P21 EBIRD 14.0 2.0 1 G1181034 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317183675 2018-08-04 17:05:10 616 species avibase-25C94A8F Greater Scaup Aythya marila 533 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 31 Mucklands L1446883 P 43.0208375 -76.7318913 2015-04-03 08:42:00 obsr533086 S23305078 International Shorebird Survey (ISS) P74 EBIRD 198.0 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311921847 2021-06-25 16:14:35.989575 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum N 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 13:30:00 obsr2448957 S22988422 Traveling P22 EBIRD 300.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS390031646 2021-03-26 06:39:43.334073 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-17 15:18:00 obsr1559830 S28859514 Traveling P22 EBIRD 180.0 2.0 1.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291517756 2021-04-01 12:14:19.266649 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 Unknown Sex, Adult (1) United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Rd., Road K L2498666 H 40.8361218 -72.5053489 2015-01-17 09:30:00 obsr2207991 S21386816 Traveling P22 EBIRD 60.0 8.047 4.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299838504 2021-03-23 16:48:08.60516 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 20 United States US New York US-NY Seneca US-NY-099 13.0 Fayette, Hoster Road L3442937 P 42.85922 -76.77822 2015-02-27 10:56:00 obsr1062070 S22091174 Traveling P22 EBIRD 8.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317103649 2021-04-01 11:15:31.646886 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-08 07:12:00 obsr1189081 S23301033 Traveling P22 EBIRD 129.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298929622 2021-03-26 06:29:56.44369 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-22 09:30:00 obsr934639 S22018624 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293235430 2021-04-01 12:32:15.282601 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Zachs Bay L610793 H 40.6014415 -73.4918618 2015-01-25 11:30:00 obsr1575529 S21541702 Stationary P21 EBIRD 15.0 2.0 1 G1126908 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297465486 2015-02-16 09:17:25 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-02-16 08:39:00 obsr2172593 S21890299 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313644469 2021-04-01 11:30:42.037277 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 09:00:00 obsr2683517 S23099770 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303375375 2016-07-31 19:46:53 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Westchester US-NY-119 28.0 Charles Point, Peekskill L651242 H 41.2780121 -73.9418079 2015-03-15 11:05:00 obsr2081926 S22369984 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS345437562 2015-09-30 23:18:29 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-03-28 14:30:00 obsr1379161 S25248401 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304954926 2019-07-23 17:28:06 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 67 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-03-23 19:06:00 obsr502830 S22491453 Traveling P22 EBIRD 19.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309172710 2015-04-13 11:02:27 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_858 Accabonac Harbor L140939 H 41.0359237 -72.1389771 2015-04-11 11:45:00 obsr1460516 S22805642 Traveling P22 EBIRD 45.0 1.609 3.0 1 G1217995 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319804320 2021-03-26 07:52:59.845315 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-14 07:35:00 obsr1000124 S23453061 Area P23 EBIRD 75.0 2.59 2.0 1 G1271759 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307219053 2021-03-26 07:16:36.956617 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius N 2 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake Neighborhood Yard L2649561 P 42.83175 -73.95388 2015-04-03 15:30:00 obsr2371917 S22663615 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323545495 2018-08-06 22:31:18 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Chemung US-NY-015 28.0 Sullivanville Dam L312295 H 42.1930881 -76.7819872 2015-05-28 11:36:00 obsr1318356 S23676318 Traveling P22 EBIRD 15.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296496395 2021-11-09 18:27:18.873475 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 3 United States US New York US-NY Dutchess US-NY-027 13.0 Allen Road yard list, Salt Point L1943130 P 41.8350253 -73.8021156 2015-02-13 15:21:00 obsr2175245 S21803703 Stationary P21 EBIRD 55.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306371580 2021-03-19 16:02:45.308962 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-30 17:43:00 obsr1764243 S22599540 Traveling P22 EBIRD 21.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290812120 2021-04-01 10:57:06.520339 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Essex US-NY-031 13.0 Alexandria Ave bridge L2589364 P 43.8362139 -73.4292054 2015-01-07 10:40:00 obsr2693145 S21329201 Traveling P22 EBIRD 14.0 0.483 2.0 1 G1108078 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301874727 2022-02-17 14:32:23.002448 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 6 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-08 13:30:00 obsr2448957 S22247141 Traveling P22 EBIRD 330.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310042420 2021-04-01 11:15:31.646886 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-14 15:30:00 obsr2750470 S22864989 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314421461 2021-04-01 12:32:15.282601 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-04-30 09:30:00 obsr2534001 S23148045 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307427960 2015-04-04 13:07:49 26278 species avibase-A381417F House Wren Troglodytes aedon 2000 United States US New York US-NY Seneca US-NY-099 13.0 US-NY-Seneca Falls-2545-2791 Farron Rd L3537663 P 42.892845 -76.773972 2015-04-04 13:04:00 obsr2377251 S22678863 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293114706 2018-08-04 16:55:14 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus 6 United States US New York US-NY Broome US-NY-007 28.0 320-372 Doolittle Road, 310-372 Dutchtown Road L2584030 P 42.12504 -75.64709 2015-01-25 11:40:00 obsr800690 S21532328 Stationary P21 EBIRD 21.0 1.0 0 G1123309 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613481 2021-03-26 07:30:35.289997 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-01-17 16:06:00 obsr2683910 S21394148 Traveling P22 EBIRD 32.0 0.483 2.0 1 G1113294 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324082975 2021-03-24 19:48:44.880783 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Manitou Beach Road - Owl Woods L1010800 P 43.3198701 -77.7262115 2015-05-07 09:10:00 obsr2966702 S23713175 Traveling P22 EBIRD 65.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303900090 2021-03-26 07:56:20.588749 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-03-16 07:30:00 obsr676630 S22411482 Rusty Blackbird Spring Migration Blitz P41 EBIRD 35.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313677939 2021-04-01 10:51:06.899622 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-25 13:50:00 obsr1092576 S23101930 Traveling P22 EBIRD 74.0 3.219 4.0 1 G1240629 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290449766 2021-04-01 12:35:52.669792 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Onondaga US-NY-067 13.0 Baldwinsville Towns: VanBuren+Lysander L1862452 P 43.1391142 -76.3621294 2015-01-10 09:00:00 obsr1947877 S21300439 Traveling P22 EBIRD 75.0 48.28 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308932524 2021-03-26 07:46:52.994574 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus N X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-10 16:57:00 obsr1154 S22789721 Traveling P22 EBIRD 111.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312576922 2021-03-23 17:17:06.468947 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps N 2 United States US New York US-NY Wyoming US-NY-121 13.0 Silver Lake SP, inlet L811468 H 42.6724654 -78.0553293 2015-04-24 10:35:00 obsr660214 S23033128 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298597645 2021-04-01 11:54:40.172593 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 6 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-20 14:50:00 obsr1958124 S21990764 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303312960 2021-04-01 12:43:36.236969 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tioga US-NY-107 28.0 AA Dairy, Candor L3490118 P 42.2384 -76.36348 2015-03-15 12:33:00 obsr2683910 S22364654 Traveling P22 EBIRD 12.0 0.483 2.0 1 G1180907 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302458545 2021-03-30 19:29:33.633096 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 Ludlow Creek, Oakdale, Suffolk, NY L3480871 P 40.7320069 -73.1228542 2015-03-11 10:00:00 obsr2534001 S22298467 Traveling P22 EBIRD 150.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295256767 2021-03-26 07:20:31.408164 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 41 Belton Road, Babylon L986538 P 40.6931311 -73.3296955 2015-02-06 07:00:00 obsr247620 S21702367 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314606962 2021-03-24 20:23:39.258075 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Suffolk US-NY-103 30.0 Roosevelt Estate County Park L7273270 H 40.7386078 -73.0728777 2015-04-30 17:25:00 obsr1107696 S23159989 Traveling P22 EBIRD 72.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313108544 2018-08-04 17:12:20 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-26 08:00:00 obsr2843748 S23066607 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313464621 2021-03-26 07:46:52.994574 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-04-27 06:23:00 obsr2512689 S23088681 Traveling P22 EBIRD 97.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310068858 2021-11-09 19:02:27.638861 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-04-14 17:30:00 obsr1944688 S22866893 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297180322 2015-02-15 15:41:40 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 3 United States US New York US-NY Westchester US-NY-119 30.0 home L3377866 P 41.1196477 -73.8147354 2015-02-15 14:57:00 obsr1604194 S21865011 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295998118 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-10 12:15:00 obsr1353449 S21760919 Traveling P22 EBIRD 165.0 2.414 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS318888206 2021-03-26 06:29:56.44369 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-12 07:46:00 obsr2678807 S23400431 Traveling P22 EBIRD 68.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302471505 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-10 17:00:00 obsr2072398 S22299420 Traveling P22 EBIRD 75.0 1.609 2.0 1 G1175051 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292803123 2021-03-26 06:29:56.44369 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-23 16:46:00 obsr934639 S21507810 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301837605 2021-04-01 11:24:19.637193 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-03-08 17:30:00 obsr934639 S22244296 Stationary P21 EBIRD 35.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322056272 2021-03-26 06:29:56.44369 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 483 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-21 06:50:00 obsr334398 S23584038 Traveling P22 EBIRD 109.0 0.402 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS313909104 2021-04-01 11:15:31.646886 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-21 08:21:00 obsr2233270 S23116757 Traveling P22 EBIRD 459.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302826852 2021-04-01 11:15:31.646886 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek L845821 H 40.5811388 -73.9927912 2015-03-13 07:58:00 obsr1189028 S22326575 Traveling P22 EBIRD 36.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305451398 2021-04-01 12:18:57.910168 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Farmers Market L302685 H 42.4499031 -76.5090841 2015-03-26 08:54:00 obsr1655171 S22529757 Traveling P22 EBIRD 37.0 0.322 2.0 1 G1194519 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289608163 2018-02-20 13:22:31 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-01-06 13:30:00 obsr2253165 S21232504 Traveling P22 EBIRD 180.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309327420 2016-01-27 10:57:15 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 11:00:00 obsr1765043 S22815780 Traveling P22 EBIRD 180.0 4.828 12.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326327641 2021-04-01 11:24:19.637193 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-23 18:43:00 obsr745890 S23868456 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300025188 2021-04-01 12:14:19.266649 32433 spuh avibase-E6552A7D sparrow sp. Passerellidae sp. (sparrow sp.) 31 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-02-28 10:18:00 obsr2485753 S22105551 Traveling P22 EBIRD 86.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324328745 2021-03-22 08:58:29.008072 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Blockhouse L1148924 H 40.79868 -73.9562829 2015-05-31 11:35:00 obsr1706920 S23729068 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297615967 2021-11-09 22:04:47.967972 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-16 11:30:00 obsr1585090 S21904045 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310290929 2021-03-30 19:07:52.958398 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-15 16:00:00 obsr1807494 S22881933 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309546580 2021-03-26 06:55:00.227271 662 species avibase-FB738385 Bufflehead Bucephala albeola N 6 United States US New York US-NY Ontario US-NY-069 13.0 Risser Rd. Swamp, Canandaigua L771877 H 42.9382814 -77.29738 2015-04-12 18:00:00 obsr171901 S22829605 Traveling P22 EBIRD 60.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305352784 2021-04-01 11:49:53.573686 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-03-25 13:00:00 obsr1489009 S22522398 Traveling P22 EBIRD 60.0 0.161 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293122654 2021-11-09 20:12:16.773384 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-01-25 11:52:00 obsr1912104 S21532989 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322266620 2021-03-19 16:12:42.877422 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Columbia US-NY-021 14.0 Hand Hollow Conservation Area L2171768 H 42.468045 -73.4858322 2015-05-23 08:00:00 obsr2842267 S23596232 Traveling P22 EBIRD 285.0 3.058 4.0 1 G1286068 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321423420 2018-08-06 22:30:35 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Watts Flats WMA L490893 H 42.0350422 -79.4263016 2015-05-20 05:23:00 obsr2910282 S23544574 Traveling P22 EBIRD 95.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317679688 2015-05-09 16:58:59 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Monroe US-NY-055 13.0 Durand-Eastman Park--Horseshoe Rd. L1167931 H 43.2369181 -77.564064 2015-05-09 08:38:00 obsr2774009 S23333978 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322265005 2021-04-01 11:15:31.646886 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:15:00 obsr1407710 S23596159 Traveling P22 EBIRD 420.0 8.047 20.0 1 G1285843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308805873 2015-04-10 08:11:46 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Tompkins US-NY-109 13.0 Future road trail, Ithaca L1745631 H 42.473917 -76.4556491 2015-04-10 08:05:00 obsr2211210 S22780619 Traveling P22 EBIRD 6.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316770854 2022-02-17 14:32:23.002448 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-07 05:45:00 obsr2404047 S23282315 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291863890 2015-01-19 08:24:31 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Allegany US-NY-003 28.0 Route 248A, big pine tree L2946666 P 42.0211129 -77.8145233 2015-01-18 13:20:00 obsr2700440 S21413384 Traveling P22 EBIRD 5.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295389724 2021-03-24 20:23:39.258075 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 30 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Cedar Beach L1019111 P 40.6285456 -73.3529663 2015-02-07 08:45:00 obsr247620 S21713246 Traveling P22 EBIRD 135.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314297079 2021-03-26 06:17:19.712573 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-30 06:35:00 obsr736608 S23140897 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303532276 2021-03-23 16:21:52.613913 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Ontario US-NY-069 13.0 Johnson Rd, Wells Curtice, Middle Cheshire L3492921 P 42.8098217 -77.3119068 2015-03-16 12:45:00 obsr2486868 S22382851 Traveling P22 EBIRD 70.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309367735 2021-04-01 12:14:19.266649 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-12 09:07:00 obsr1228860 S22818240 Traveling P22 EBIRD 164.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302080758 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-09 15:00:00 obsr2416285 S22262697 Traveling P22 EBIRD 75.0 0.402 4.0 1 G1172903 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305653442 2015-03-27 18:05:42 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Wayne US-NY-117 13.0 North Rose, 6444 Shaker Tract Road L3518642 P 43.23395 -76.94846 2015-03-27 18:03:00 obsr1721609 S22545755 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289989530 2015-01-09 10:51:44 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.8729471 2015-01-08 07:45:00 obsr2837502 S21263052 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297307848 2021-03-19 16:32:34.732091 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-15 11:35:00 obsr2908667 S21876673 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315902698 2021-03-30 19:07:52.958398 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 17:00:00 obsr1801902 S23231699 Traveling P22 EBIRD 90.0 2.414 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314204051 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Great Lawn L593577 H 40.7814351 -73.9665967 2015-04-29 07:15:00 obsr2277801 S23134915 Historical P62 EBIRD 35.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292554216 2021-03-30 19:37:33.521815 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-01-21 12:00:00 obsr1633923 S21488254 Stationary P21 EBIRD 112.0 2.0 1 G1119110 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309611190 2022-02-04 06:14:13.892644 7429 species avibase-1327AC55 Osprey Pandion haliaetus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-04-12 15:40:00 obsr516108 S22833765 Traveling P22 EBIRD 80.0 1.609 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318043194 2016-01-27 10:57:57 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Altamont-230-294 NY-146 L3630293 P 42.700118 -73.938509 2015-05-10 09:50:00 obsr2698963 S23353684 Traveling P22 EBIRD 240.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300056877 2021-04-01 12:11:50.996293 31530 species avibase-B48335B1 Pine Siskin Spinus pinus N 50 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Landfill (restricted access) L99684 H 42.9143943 -76.8409517 2015-02-28 12:55:00 obsr620377 S22108020 Traveling P22 EBIRD 59.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315083835 2021-03-26 06:21:54.883933 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Kings US-NY-047 30.0 Brooklyn Botanic Garden L297912 H 40.6680222 -73.96367 2015-05-01 13:40:00 obsr2363365 S23187232 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297358353 2021-04-01 12:14:19.266649 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Cedar Beach Marina L283643 H 40.6342526 -73.3447755 2015-02-15 15:00:00 obsr1325561 S21881104 Traveling P22 EBIRD 105.0 11.265 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316246905 2021-03-24 19:48:44.880783 27616 species avibase-D77E4B41 American Robin Turdus migratorius 12 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-05 16:30:00 obsr991026 S23252346 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302170664 2021-04-01 11:47:43.260314 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Oswego US-NY-075 13.0 Oswego River, Lock 6 L1883838 H 43.4443141 -76.4956891 2015-03-07 12:11:00 obsr1828453 S22269136 Traveling P22 EBIRD 12.0 0.161 4.0 1 G1168808 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316822104 2021-04-01 12:32:15.282601 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-07 06:15:00 obsr547602 S23285069 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316798504 2015-05-07 09:39:32 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Rochester-irondequoit 14622 yard L3146197 P 43.22078 -77.556809 2015-05-05 14:15:00 obsr140077 S23283859 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1259796683 2021-10-17 12:47:30.496611 303 species avibase-B59E1863 Canada Goose Branta canadensis N 2 United States US New York US-NY Erie US-NY-029 13.0 University at Buffalo (North Campus) L6275102 H 43.0008539 -78.7889698 2015-04-18 07:35:00 obsr2155450 S96280952 Traveling P22 EBIRD 30.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313959538 2016-11-05 15:32:06 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wilgoose Field L1280439 H 42.9632064 -76.7703581 2015-04-28 20:05:00 obsr528918 S23119802 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135630 2021-03-26 07:56:20.588749 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-02 16:00:00 obsr2218212 S23589172 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314032781 2021-11-09 19:01:40.008558 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-04-29 08:05:00 obsr2175245 S23124430 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317030064 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 18:00:00 obsr2493447 S23296766 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308745094 2021-03-19 16:54:27.713469 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Montgomery US-NY-057 13.0 Crum Creek Road L951022 P 43.0224863 -74.6916032 2015-04-09 09:10:00 obsr1000124 S22776163 Traveling P22 EBIRD 38.0 3.058 4.0 1 G1212709 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS770457817 2021-03-30 19:43:32.881136 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-16 12:15:00 obsr363553 S57031855 Stationary P21 EBIRD 20.0 4.0 1 G1149056 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317706219 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 45 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:40:00 obsr350767 S23335355 Traveling P22 EBIRD 560.0 15.771 6.0 1 G1259504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291450479 2021-03-24 19:48:44.880783 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 4 United States US New York US-NY Monroe US-NY-055 13.0 Rush Dam L1066995 H 42.9928613 -77.6449406 2015-01-17 13:26:00 obsr2211210 S21381410 Stationary P21 EBIRD 23.0 1.0 1 G1112434 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309790425 2021-03-26 07:42:06.558742 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 Male, Adult (1) United States US New York US-NY Washington US-NY-115 13.0 Bradley Beach, Ft. Edward L2477571 H 43.266989 -73.5908235 2015-04-13 13:23:00 obsr1222746 S22847101 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289892078 2021-03-30 19:29:33.633096 6339 species avibase-8535345B Herring Gull Larus argentatus 18 United States US New York US-NY Suffolk US-NY-103 30.0 centerport mill pond and harnour, ny L3278156 P 40.8872706 -73.3721924 2015-01-08 13:30:00 obsr2534001 S21255259 Stationary P21 EBIRD 105.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300892099 2015-03-04 20:28:14 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-04 12:25:00 obsr1393782 S22171128 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294469551 2021-11-09 18:43:48.417488 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 38 United States US New York US-NY Dutchess US-NY-027 28.0 US-NY-Dover Plains-2476 NY-22 L3331277 P 41.692654 -73.578607 2015-02-01 10:30:00 obsr1982614 S21639296 Stationary P21 EBIRD 150.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292956643 2018-08-04 16:55:09 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-01-24 13:55:00 obsr887540 S21519898 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317163779 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-08 08:34:00 obsr2054320 S23304146 Traveling P22 EBIRD 280.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313069519 2018-08-04 17:12:23 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 15 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-26 09:44:00 obsr48167 S23064349 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310325662 2019-07-24 17:31:47 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 8 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr782651 S22884411 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS313060022 2021-03-24 20:16:00.852773 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-26 08:20:00 obsr1958124 S23063739 Traveling P22 EBIRD 37.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312448828 2021-03-26 07:46:52.994574 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-23 15:00:00 obsr30103 S23023810 Traveling P22 EBIRD 135.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315921196 2021-04-01 11:30:42.037277 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia N 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 17:30:00 obsr1135516 S23232709 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315069338 2015-05-02 19:46:06 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus-Back Woods L698393 P 42.6703198 -77.6733398 2015-05-02 18:42:00 obsr72341 S23186410 Traveling P22 EBIRD 43.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313299054 2021-03-26 06:55:00.227271 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-04-26 obsr1338126 S23077930 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319604746 2021-04-01 11:14:02.420281 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY Jefferson US-NY-045 US-NY_759 13.0 Robert G. Wehle SP L453148 H 43.8733029 -76.2704372 2015-05-14 07:45:00 obsr490751 S23441440 Traveling P22 EBIRD 180.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312449586 2015-04-23 23:30:22 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-04-22 10:19:00 obsr1334267 S23023869 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314918194 2021-04-01 11:15:31.646886 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 05:43:00 obsr2404047 S23178107 Traveling P22 EBIRD 300.0 4.828 2.0 1 G1247219 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294666551 2021-03-23 16:33:05.415158 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 25 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-02-01 11:30:00 obsr1113580 S21655061 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308691597 2021-03-26 06:55:00.227271 303 species avibase-B59E1863 Canada Goose Branta canadensis N 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-04-09 13:02:00 obsr606693 S22771897 Traveling P22 EBIRD 25.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290399784 2015-02-02 19:51:28 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Skaneateles- Old Seneca Tpke to Co. line L3284754 P 42.959865 -76.445406 2015-01-11 12:06:00 obsr2279567 S21296478 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315690578 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L785945 P 40.783661 -73.9633942 2015-05-03 12:30:00 obsr2883401 S23220056 Traveling P22 EBIRD 300.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294784837 2021-03-19 16:19:20.977326 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Erie US-NY-029 13.0 Lakeside Memorial Park L1449510 P 42.7581321 -78.8706007 2015-02-03 15:55:00 obsr2597186 S21664883 Traveling P22 EBIRD 40.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314333951 2021-03-26 07:07:10.758746 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-30 09:00:00 obsr666331 S23142629 Traveling P22 EBIRD 180.0 1.609 22.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310500366 2021-03-26 06:52:34.887371 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Niagara US-NY-063 13.0 Private Yard Burt, NY L1353182 P 43.3261861 -78.7740533 2015-04-16 16:00:00 obsr2588479 S22896794 Stationary P21 EBIRD 21.0 3.0 1 G1222156 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296335998 2015-02-12 21:40:15 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Rensselaer US-NY-083 14.0 Man of Kent Tavern L2890546 P 42.8459695 -73.3628776 2015-02-12 12:20:00 obsr2855945 S21789547 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305316099 2021-03-26 07:52:59.845315 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-25 07:30:00 obsr1000124 S22519613 Area P23 EBIRD 48.0 2.59 2.0 1 G1192422 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291960624 2022-03-05 22:03:50.715584 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-01-19 08:30:00 obsr890053 S21421020 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299571317 2021-04-01 10:55:39.308231 27616 species avibase-D77E4B41 American Robin Turdus migratorius 26 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-02-25 16:05:00 obsr502830 S22070423 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS412866958 2018-06-10 23:14:51 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Warren US-NY-113 14.0 Warren County Bikeway, Ash Drive L738640 H 43.3589558 -73.6848307 2015-04-09 obsr2943723 S30294171 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS353077053 2021-04-01 12:24:14.132004 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 Ft. Edward Grasslands IBA L358625 H 43.2650813 -73.5411072 2015-02-22 16:00:00 obsr478499 S25810673 Traveling P22 EBIRD 120.0 4.828 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289474390 2021-03-24 19:27:13.077399 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-06 10:00:00 obsr1334267 S21222021 Traveling P22 EBIRD 33.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319873839 2021-04-01 11:15:31.646886 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-15 09:00:00 obsr1516787 S23456738 Traveling P22 EBIRD 240.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300076277 2021-11-09 21:57:18.897513 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Ulster US-NY-111 28.0 Farmer's Turnpike L3445715 P 41.6841413 -74.1633207 2015-02-08 09:30:00 obsr2326680 S22109577 Stationary P21 EBIRD 210.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321487516 2021-03-30 19:39:10.250398 681 species avibase-407E2CA8 Common Merganser Mergus merganser 6 United States US New York US-NY Nassau US-NY-059 30.0 East Shore Rd, Great Neck L1414428 P 40.7977755 -73.7126586 2015-05-18 08:00:00 obsr676630 S23548343 International Shorebird Survey (ISS) P74 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308645750 2018-08-04 17:08:12 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-09 10:37:00 obsr2750671 S22768077 Traveling P22 EBIRD 20.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307696511 2021-03-26 08:14:57.071052 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Westchester US-NY-119 30.0 Rye Rec L3540294 P 40.975581 -73.681385 2015-04-05 11:10:00 obsr2918150 S22697326 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307365470 2020-07-20 09:16:51 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-04 08:58:00 obsr2172593 S22674443 Traveling P22 EBIRD 8.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318055622 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 06:54:00 obsr1821546 S23354333 Traveling P22 EBIRD 258.0 4.828 4.0 1 G1260339 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311940034 2015-04-21 23:52:08 406 species avibase-27B2749A Wood Duck Aix sponsa 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 16:00:00 obsr2908667 S22989704 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301145757 2021-04-01 10:52:54.724403 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Columbia US-NY-021 13.0 Town of Stuyvesant L1153717 P 42.3903113 -73.7820339 2015-03-05 15:30:00 obsr712039 S22189488 Traveling P22 EBIRD 60.0 17.703 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314534589 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-30 06:25:00 obsr870166 S23155578 Traveling P22 EBIRD 115.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290716316 2021-11-09 18:28:50.133002 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Home, Millbrook, NY L2119013 P 41.7923452 -73.6592703 2015-01-12 07:15:00 obsr1062217 S21322048 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313379935 2021-03-30 19:22:51.561415 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-04-26 14:40:00 obsr1348614 S23082829 Traveling P22 EBIRD 150.0 0.5 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299083843 2021-04-26 04:57:02.963704 11494 species avibase-20C2214E American Kestrel Falco sparverius N 25 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-22 13:30:00 obsr2363365 S22033322 Traveling P22 EBIRD 120.0 0.805 2.0 1 G1157090 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306097278 2021-03-30 19:29:33.633096 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow State Park, Suffolk, NY L2601819 P 40.9085423 -73.2595342 2015-03-29 13:30:00 obsr2534001 S22578648 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296091973 2021-03-24 20:33:47.533911 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Podell Boardwalk (0.08 km) L1075029 P 42.4782515 -76.4511698 2015-02-11 08:13:00 obsr2307843 S21768445 Traveling P22 EBIRD 5.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323231313 2022-02-17 14:32:23.002448 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-26 13:00:00 obsr1310902 S23654980 Historical P62 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304108101 2015-03-19 19:47:48 5956 species avibase-F35821AA Semipalmated Sandpiper Calidris pusilla 2 United States US New York US-NY Albany US-NY-001 13.0 Place Between Cohoes Falls and Crescent Power Plant L3500054 P 42.7918736 -73.7128866 2015-03-19 18:05:00 obsr2270510 S22427601 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320705578 2021-03-19 16:19:20.977326 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Erie US-NY-029 13.0 Evangola SP L300496 H 42.6085236 -79.1111807 2015-05-17 14:51:00 obsr916033 S23500720 Stationary P21 EBIRD 306.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320912521 2021-03-26 07:56:20.588749 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Nassau US-NY-059 30.0 Bayview Avenue, Manhasset Bay L1416657 P 40.7950657 -73.7090564 2015-05-18 11:00:00 obsr676630 S23512927 Traveling P22 EBIRD 35.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312297849 2020-01-01 09:54:18 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Westchester US-NY-119 30.0 Sheldrake Lake (Larchmont Reservoir) L714112 H 40.9527912 -73.7738478 2015-04-22 13:30:00 obsr363163 S23013366 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294322982 2018-08-04 16:55:32 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 9 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.9026012 2015-02-01 08:10:00 obsr290506 S21627898 Traveling P22 EBIRD 35.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317489313 2018-08-06 22:29:18 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-09 05:45:00 obsr290506 S23323639 Traveling P22 EBIRD 240.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301508944 2015-11-28 19:02:08 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-02-22 13:00:00 obsr2277801 S22218026 Historical P62 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295987113 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-10 12:00:00 obsr2706811 S21760014 Traveling P22 EBIRD 90.0 3.219 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314055619 2021-04-01 12:31:09.823741 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 3 United States US New York US-NY Livingston US-NY-051 13.0 PFA West York Route L1192722 P 42.8701771 -77.9178715 2015-04-29 06:34:00 obsr1060479 S23125750 Traveling P22 EBIRD 90.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310108060 2021-11-09 21:41:38.795423 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla X United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-04-14 06:00:00 obsr1588136 S22869656 Stationary P21 EBIRD 660.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292029260 2021-04-01 11:24:19.637193 681 species avibase-407E2CA8 Common Merganser Mergus merganser 300 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-19 09:19:00 obsr2683910 S21426425 Traveling P22 EBIRD 64.0 0.322 2.0 1 G1116497 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290810008 2021-03-30 19:43:32.881136 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Westchester US-NY-119 30.0 Deans Bridge, North Salem L2152201 H 41.3368943 -73.6588245 2015-01-13 07:05:00 obsr2688589 S21329006 Traveling P22 EBIRD 40.0 0.161 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS362513774 2021-03-24 20:52:26.336264 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Wyoming US-NY-121 28.0 2700 Centerline Road, Varysburg L11026787 P 42.736555 -78.3020117 2015-02-01 08:00:00 obsr2888451 S26583830 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318754444 2021-03-19 16:43:17.120646 1806 species avibase-32DCEC14 Eared Grebe Podiceps nigricollis X United States US New York US-NY Madison US-NY-053 28.0 Colgate University L1247581 H 42.8172219 -75.5373652 2015-05-11 19:22:00 obsr378453 S23392358 Traveling P22 EBIRD 47.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308004423 2021-03-30 19:22:51.561415 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 300 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-06 12:02:00 obsr2574755 S22719459 Traveling P22 EBIRD 64.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290799458 2021-03-26 06:29:14.715704 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 12 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-01-11 10:19:00 obsr589593 S21328084 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324203985 2022-02-17 14:32:23.002448 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo N 20 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-31 08:00:00 obsr2078092 S23720922 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316122718 2018-08-04 17:04:51 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Tschache Pool L99391 H 42.9892318 -76.7711279 2015-03-31 09:10:00 obsr533086 S23244457 International Shorebird Survey (ISS) P74 EBIRD 92.0 4.023 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305442543 2015-03-26 15:17:32 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 45 United States US New York US-NY Madison US-NY-053 13.0 Lake Rd, Durhamville L3516273 P 43.1207205 -75.6812096 2015-03-25 obsr666964 S22529617 Incidental P20 EBIRD 0 G1193221 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294196122 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-01-31 07:35:00 obsr2595828 S21617778 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301505143 2018-08-04 16:58:53 681 species avibase-407E2CA8 Common Merganser Mergus merganser 10 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-07 09:53:00 obsr2211210 S22217746 Stationary P21 EBIRD 26.0 3.0 1 G1169539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS354008752 2021-12-08 07:58:41.562209 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-01-03 09:00:00 obsr663350 S25890175 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315040400 2015-07-13 21:51:12 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hoag Ave. (Lick to Salt) L276050 H 42.666186 -76.3318223 2015-05-02 09:56:00 obsr2683910 S23184779 Traveling P22 EBIRD 10.0 1.609 2.0 1 G1247598 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304176056 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Kings US-NY-047 BJs Wholesale Club Waterfront (Brooklyn) L3311662 H 40.5917716 -73.9990756 2015-03-20 07:08:00 obsr1189028 S22432844 Stationary P21 EBIRD 24.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS319657343 2021-04-01 11:30:42.037277 6616 species avibase-7E022378 Common Loon Gavia immer 27 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 05:50:00 obsr150865 S23444413 Traveling P22 EBIRD 360.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294403727 2021-11-09 18:18:59.735531 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Dutchess US-NY-027 13.0 Greig Farm L1398659 P 42.0238868 -73.8620972 2015-02-01 11:45:00 obsr671490 S21634181 Traveling P22 EBIRD 120.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311657561 2015-05-07 17:07:25 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-20 17:46:00 obsr455249 S22971343 Traveling P22 EBIRD 11.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322640310 2018-08-06 22:31:01 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-24 09:15:00 obsr2071643 S23617430 Traveling P22 EBIRD 145.0 3.541 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735218 2019-07-23 17:27:05 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-18 12:19:00 obsr59643 S21403528 Stationary P21 EBIRD 20.0 7.0 1 G1114095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295605476 2021-04-26 04:57:02.963704 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-08 11:30:00 obsr1659461 S21730384 Traveling P22 EBIRD 75.0 0.805 2.0 1 G1139379 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290135541 2021-03-23 16:39:03.255227 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-10 08:03:00 obsr1958124 S21274504 Traveling P22 EBIRD 4.0 0.483 2.0 1 G1103732 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317103662 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-08 07:12:00 obsr1189081 S23301033 Traveling P22 EBIRD 129.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318680737 2022-02-04 06:14:13.892644 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-05-10 12:16:00 obsr2054320 S23388000 Traveling P22 EBIRD 6.0 0.322 2.0 1 G1265671 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314130518 2022-03-05 22:03:50.715584 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 Unknown Sex, Adult (1) United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-29 08:30:00 obsr2219590 S23130313 Traveling P22 EBIRD 150.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324760118 2015-06-03 07:39:52 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 S C2 S United States US New York US-NY Hamilton US-NY-041 US-NY_864 14.0 Inlet, Moose River Plains, Moose River Rd., milepoint 4.5 L3693100 P 43.69277 -74.74803 2015-05-31 06:42:00 obsr2937317 S23758756 Stationary P21 EBIRD 11.0 3.0 1 G1301424 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303621066 2015-03-17 21:47:26 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Herkimer US-NY-043 13.0 Rt 28 & West Canada Creek - South of Middleville. L1425907 P 43.1257246 -74.9780628 2015-03-16 14:02:00 obsr1000124 S22389560 Incidental P20 EBIRD 3.0 0 G1183752 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318632732 2021-04-01 12:31:09.823741 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Livingston US-NY-051 13.0 Conesus Inlet WMA Marshbird survey L2831974 P 42.7026229 -77.7038956 2015-05-08 05:31:00 obsr1060479 S23385400 Traveling P22 EBIRD 149.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304132218 2021-03-30 19:39:10.250398 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-03-13 08:45:00 obsr548996 S22429421 Historical P62 EBIRD 120.0 1.609 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324064615 2021-03-26 06:13:28.501496 7429 species avibase-1327AC55 Osprey Pandion haliaetus N 7 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.1752556 -76.8558787 2015-03-03 07:10:00 obsr2736418 S23711907 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322743941 2021-04-01 11:12:52.834774 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 1 United States US New York US-NY Greene US-NY-039 13.0 New Baltimore Yard L7304489 P 42.4429607 -73.7862812 2015-05-25 07:50:00 obsr1181085 S23623916 Stationary P21 EBIRD 72.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316141941 2021-03-19 16:02:45.308962 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Broome US-NY-007 28.0 Stewart Rd. Marsh L3615496 P 42.096982 -75.999813 2015-05-05 14:45:00 obsr1830659 S23245423 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309010556 2021-03-24 20:33:47.533911 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-10 18:35:00 obsr241086 S22795184 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1214077 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301565241 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 10 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-03-07 11:30:00 obsr1407710 S22217122 Traveling P22 EBIRD 30.0 0.805 3.0 1 G1169182 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288841343 2021-03-24 19:42:42.07177 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-01 13:00:00 obsr1160328 S21172719 Stationary P21 EBIRD 120.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324410478 2018-08-06 22:31:30 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP L246469 H 42.055 -78.7661111 2015-05-31 07:30:00 obsr1463039 S23734511 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310327860 2019-07-24 17:29:37 5923 species avibase-15369E8E Dunlin Calidris alpina 16 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr1958124 S22884582 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294405314 2022-02-17 14:32:23.002448 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-01 13:00:00 obsr1807494 S21634312 Traveling P22 EBIRD 90.0 0.805 3.0 1 G1131719 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304522274 2020-05-16 18:11:44 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 5 United States US New York US-NY Otsego US-NY-077 28.0 207 Stoller Hill Rd L3359197 P 42.7034192 -75.0299799 2015-03-20 08:08:00 obsr131845 S22459008 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310064856 2021-03-23 17:00:13.087107 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - boardwalk to white barn pond (0.04km) L1287548 P 42.480817 -76.4502794 2015-04-14 13:02:00 obsr2307843 S22866633 Traveling P22 EBIRD 5.0 0.04 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305309289 2021-04-01 12:26:53.827486 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 3 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-03-13 16:00:00 obsr30103 S22519080 Traveling P22 EBIRD 30.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314265549 2015-04-30 13:35:43 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Farm Pond Circle L2080608 P 42.5383387 -76.4633042 2015-04-30 07:00:00 obsr596741 S23138855 Traveling P22 EBIRD 30.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303518596 2021-04-01 10:51:06.899622 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-16 12:40:00 obsr2497657 S22381834 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309517483 2021-03-26 06:59:15.841579 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Oswego US-NY-075 13.0 Oneida Lake, Constantia (Mill St. parking area) L2196011 H 43.2463281 -76.0001457 2015-04-12 08:00:00 obsr2409011 S22827614 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288236563 2021-04-01 12:40:54.473014 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-01-01 15:30:00 obsr1664745 S21120620 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312576117 2021-03-26 06:29:56.44369 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-04-24 14:49:00 obsr934639 S23033093 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309146539 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-09 07:15:00 obsr139757 S22803817 Traveling P22 EBIRD 330.0 8.047 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289067804 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 20 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-03 06:50:00 obsr2404047 S21190105 Traveling P22 EBIRD 480.0 14.484 2.0 1 G1095844 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309531892 2015-04-14 22:51:32 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Brooklyn - Floyd Bennet Field SE corner L1335425 P 40.5849423 -73.876624 2015-03-22 16:26:00 obsr598381 S22828585 Stationary P21 EBIRD 27.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291294456 2021-03-26 08:09:53.772059 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 3 United States US New York US-NY Rensselaer US-NY-083 14.0 West Road L3295959 P 42.5699913 -73.3789515 2015-01-16 09:00:00 obsr1735540 S21369097 Traveling P22 EBIRD 15.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326109316 2021-03-26 06:21:54.883933 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Kings US-NY-047 30.0 Home L468661 P 40.6361565 -73.9647943 2015-02-25 08:00:00 obsr1666581 S23851864 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308722445 2015-04-09 18:32:53 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-09 09:33:00 obsr155915 S22774362 Traveling P22 EBIRD 7.0 0.644 2.0 1 G1212587 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314236183 2018-08-04 17:11:47 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Hamilton US-NY-041 14.0 Griffin Road - Co. Rt 8 L838313 P 43.419949 -74.2665482 2015-04-22 12:53:00 obsr2694889 S23136919 Traveling P22 EBIRD 40.0 4.184 4.0 1 G1243701 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300020562 2021-11-09 00:38:34.069905 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-02-28 08:15:00 obsr258431 S22105213 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313109250 2021-03-23 16:30:20.514143 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Mexico-28-94 Sage Creek Dr L3591923 P 43.516939 -76.234604 2015-04-26 11:12:00 obsr1351949 S23066647 Stationary P21 EBIRD 40.0 2.0 1 G5326518 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292551380 2021-11-09 19:30:40.312662 592 species avibase-3072CC16 Redhead Aythya americana 10 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR (NY) L1238320 H 41.2865783 -74.5264006 2015-01-19 07:00:00 obsr2800626 S21488031 Traveling P22 EBIRD 180.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621061 2021-12-19 10:32:19.574298 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 9 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-02-07 09:00:00 obsr1139818 S21731693 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309081902 2018-08-04 17:08:31 32949 species avibase-15EB3000 Hooded Warbler Setophaga citrina 2 United States US New York US-NY Tompkins US-NY-109 28.0 Herman Rd. wetlands L1108700 H 42.5157265 -76.3355194 2015-04-11 11:43:00 obsr1008519 S22799763 Stationary P21 EBIRD 55.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322237015 2021-12-08 07:58:41.562209 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-23 12:00:00 obsr1223279 S23594630 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298257744 2021-12-10 08:21:29.396662 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-18 09:20:00 obsr238853 S21961197 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322514735 2017-01-07 10:09:45 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-22 12:33:00 obsr334398 S23610339 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312201668 2021-04-01 11:49:53.573686 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge--East Pond L109144 H 40.6226854 -73.8220096 2015-04-19 16:14:00 obsr839844 S23007073 Traveling P22 EBIRD 53.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307423892 2018-02-15 11:13:57 6040 species avibase-E7A14E91 Willet Tringa semipalmata 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-04-04 10:53:00 obsr1764243 S22678574 Incidental P20 EBIRD 4.0 0 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS296144580 2021-03-24 20:16:00.852773 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca N 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-02-11 15:38:00 obsr1958124 S21772488 Traveling P22 EBIRD 7.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298816291 2020-03-22 07:58:01 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-02-21 17:18:00 obsr1696616 S22009430 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311275915 2021-03-26 08:12:51.35913 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Schuyler US-NY-097 13.0 Seneca Harbor Park L150677 H 42.383846 -76.873375 2015-04-19 09:56:00 obsr2173269 S22946452 Stationary P21 EBIRD 4.0 2.0 1 G1226341 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310092920 2021-11-09 22:41:29.888948 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 800 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA--Haven Rd. (causeway bridge) L2865409 H 41.5356812 -74.5166769 2015-04-11 14:46:00 obsr2683910 S22868608 Traveling P22 EBIRD 22.0 0.805 2.0 1 G1219972 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS295792521 2021-03-26 06:29:56.44369 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos N 10 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-02-05 08:15:00 obsr1245041 S21744419 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300121466 2021-04-26 04:57:02.963704 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 14 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-28 14:35:00 obsr1189028 S22113832 Traveling P22 EBIRD 136.0 4.023 2.0 1 G1162320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299697896 2018-08-04 16:58:17 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Kings US-NY-047 The Narrows (Brooklyn) L1918391 H 40.6218575 -74.0503407 2015-02-26 12:10:00 obsr454647 S22080028 Stationary P21 EBIRD 20.0 2.0 1 G1160544 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294936408 2021-04-01 11:24:19.637193 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-02-04 10:40:00 obsr1782363 S21677766 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306284934 2021-03-24 19:46:49.147482 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Lewis US-NY-049 14.0 Lowville Village L1791251 P 43.7883908 -75.4987824 2015-03-27 15:00:00 obsr1882034 S22593039 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314002092 2018-11-23 12:30:13 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Dayhoff Boardwalk (0.087 km) L835705 P 42.4764691 -76.4547345 2015-04-29 07:41:00 obsr2307843 S23122656 Traveling P22 EBIRD 5.0 0.05 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311000781 2021-03-24 20:57:48.241391 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 1 United States US New York US-NY Fulton US-NY-035 13.0 Cline Rd., marsh (east) L1144401 H 43.061062 -74.6492232 2015-04-18 08:36:00 obsr119187 S22929531 Traveling P22 EBIRD 32.0 0.322 3.0 1 G1224392 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309551199 2022-03-05 22:03:50.715584 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-12 07:15:00 obsr890053 S22829915 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300018432 2021-12-19 10:32:19.574298 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-02-28 10:50:00 obsr2172593 S22105041 Traveling P22 EBIRD 16.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306100413 2021-04-01 12:18:57.910168 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--Comstock Knoll L290965 H 42.4498398 -76.4723566 2015-03-29 16:56:00 obsr2361816 S22578878 Traveling P22 EBIRD 25.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295621074 2021-12-19 10:32:19.574298 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 5 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-02-07 09:00:00 obsr1139818 S21731693 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316464951 2018-08-04 17:14:58 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-06 07:25:00 obsr1830659 S23264512 Traveling P22 EBIRD 225.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307255560 2021-03-24 20:23:39.258075 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 PI--Route 14 L985269 P 41.1889248 -72.1641684 2015-04-03 08:29:00 obsr2485753 S22666136 Rusty Blackbird Spring Migration Blitz P41 EBIRD 43.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302311080 2018-08-04 16:59:16 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--CLW office L2388208 P 42.4799683 -76.4513107 2015-03-10 15:55:00 obsr1696616 S22284969 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300293910 2021-03-26 07:20:31.408164 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 11 United States US New York US-NY Suffolk US-NY-103 30.0 Magnolia Drive and Talbot Lane, Selden, NY L2620004 P 40.8894264 -73.0453113 2015-03-01 14:30:00 obsr2958873 S22127568 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317190238 2018-08-28 16:43:15 447 species avibase-C235A4D7 Gadwall Mareca strepera 14 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Knox-Marsellus and Puddler Marshes L679571 H 43.0074716 -76.7464542 2015-04-03 08:53:00 obsr533086 S23305426 International Shorebird Survey (ISS) P74 EBIRD 42.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290199673 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-10 08:30:00 obsr1407710 S21280025 Traveling P22 EBIRD 300.0 4.828 3.0 1 G1103277 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293158660 2021-11-09 18:43:47.969705 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Dutchess US-NY-027 14.0 Perrys Corners Road L3317070 P 41.90037 -73.53956 2015-01-25 14:50:00 obsr1732267 S21535688 Stationary P21 EBIRD 25.0 2.0 1 G1127523 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302000002 2021-03-23 17:41:09.545385 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 6 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-03-09 08:15:00 obsr206659 S22256203 Traveling P22 EBIRD 180.0 3.219 12.0 1 G1172167 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313204343 2021-03-30 19:25:27.212017 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus N 6 United States US New York US-NY Richmond US-NY-085 30.0 Wolfe's Pond Park--Acme Pond L1131894 H 40.5222942 -74.1931951 2015-04-26 12:30:00 obsr1605975 S23072151 Traveling P22 EBIRD 120.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294742677 2021-11-09 22:39:47.565044 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Sullivan US-NY-105 28.0 Rondout Reservoir (Sullivan Co.) L2693079 H 41.8604243 -74.5100577 2015-02-03 10:00:00 obsr444155 S21661074 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317784306 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 07:30:00 obsr2078092 S23339443 Traveling P22 EBIRD 480.0 4.828 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295861409 2021-03-26 06:29:56.44369 31855 species avibase-5BFFE091 Grasshopper Sparrow Ammodramus savannarum N 35 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-02-09 10:36:00 obsr745890 S21750059 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317982889 2021-03-23 17:22:05.708166 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-05-08 05:40:00 obsr2694889 S23350509 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308313208 2021-04-01 12:18:57.910168 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-07 16:40:00 obsr2001485 S22742707 Traveling P22 EBIRD 26.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290910538 2021-04-01 11:42:15.525388 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 100 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Niagara--Lewiston (NY) L356887 H 43.174301 -79.04921 2015-01-13 12:05:00 obsr1895272 S21337494 Stationary P21 EBIRD 21.0 3.0 1 G1108701 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307103246 2021-11-09 20:37:50.466368 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY Putnam US-NY-079 28.0 Garrison Institute L1070109 H 41.3694134 -73.9517879 2015-04-02 17:25:00 obsr2188716 S22655397 Traveling P22 EBIRD 65.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295067595 2021-03-26 07:30:35.289997 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L3340760 P 42.43842 -76.474681 2015-02-05 08:27:00 obsr2501204 S21689003 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319792807 2021-03-19 16:54:27.713469 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-05-15 06:10:00 obsr286403 S23452449 Traveling P22 EBIRD 150.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312524725 2021-03-26 06:39:43.334073 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Greywacke Arch L2179946 H 40.7792619 -73.9657742 2015-04-24 08:25:00 obsr1548221 S23028901 Traveling P22 EBIRD 17.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290162376 2015-01-10 11:54:48 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University Bradfield Tower L3281444 P 42.447795 -76.474406 2015-01-10 11:50:00 obsr2001485 S21277027 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309782320 2021-03-26 07:42:06.558742 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Washington US-NY-115 13.0 New Swamp Rd. L3805899 H 43.3275378 -73.5075903 2015-04-13 08:22:00 obsr1222746 S22846579 Traveling P22 EBIRD 47.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312680685 2021-11-09 19:22:58.690008 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region--Indiana Rd. (private) L1041928 H 41.3398293 -74.4361496 2015-04-14 19:00:00 obsr1872991 S23040656 Stationary P21 EBIRD 40.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309440355 2018-08-04 17:08:33 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-11 13:20:00 obsr2154746 S22822396 Traveling P22 EBIRD 130.0 6.437 87.0 1 G1216338 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317804980 2021-03-30 19:39:10.250398 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-05-08 17:00:00 obsr547602 S23340594 Traveling P22 EBIRD 180.0 6.437 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322445365 2018-08-06 22:31:00 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Clinton US-NY-019 13.0 Ausable Marsh WMA L1672642 H 44.5704068 -73.4418894 2015-05-24 07:45:00 obsr2937317 S23606572 Traveling P22 EBIRD 103.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292520616 2021-04-01 12:32:15.282601 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-21 09:15:00 obsr2404509 S21485512 Traveling P22 EBIRD 125.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310736531 2020-03-22 07:58:01 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-17 07:15:00 obsr1696616 S22912625 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320108629 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-16 09:33:00 obsr1885846 S23469632 Traveling P22 EBIRD 91.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313233727 2021-03-23 17:23:45.772216 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 5 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake Park L792637 H 42.7759994 -77.6113701 2015-04-26 10:32:00 obsr393804 S23073870 Traveling P22 EBIRD 74.0 0.404 1.0 1 G1237474 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300534886 2018-08-04 16:58:36 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 5 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-03-02 12:40:00 obsr1711339 S22144350 Traveling P22 EBIRD 106.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299104451 2022-03-06 12:39:33.700954 30494 species avibase-240E3390 House Sparrow Passer domesticus 20 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-02-21 12:30:00 obsr1494607 S22034850 Traveling P22 EBIRD 25.0 0.322 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311541968 2021-04-01 12:32:15.282601 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-18 10:00:00 obsr1987335 S22962757 Traveling P22 EBIRD 42.0 3.219 2.0 1 G1228235 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294624295 2021-03-26 06:29:56.44369 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 65 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-02-02 08:13:00 obsr2595828 S21651737 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309481064 2021-04-01 12:30:15.438381 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Vicinity of Brockett & Lyon Road L664921 P 43.0933994 -74.7911453 2015-04-12 09:28:00 obsr316199 S22825037 Stationary P21 EBIRD 4.0 4.0 1 G1216555 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309802840 2021-03-30 19:39:10.250398 592 species avibase-3072CC16 Redhead Aythya americana 6 United States US New York US-NY Nassau US-NY-059 30.0 Shu Swamp Nature Preserve L503050 H 40.8803597 -73.5648394 2015-04-12 09:15:00 obsr2555972 S22848073 Traveling P22 EBIRD 135.0 3.621 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318629331 2021-03-24 20:11:57.676649 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-03-19 07:30:00 obsr2409011 S23385209 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308460134 2021-12-08 07:58:41.562209 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-08 07:12:00 obsr2206421 S22753984 Traveling P22 EBIRD 48.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304093469 2021-03-23 17:38:38.809066 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 500 United States US New York US-NY Schuyler US-NY-097 13.0 Satterly Hill Rd. Blackbirds L3499889 P 42.4376314 -76.8291199 2015-03-19 07:36:00 obsr1092576 S22426439 Incidental P20 EBIRD 3.0 0 G1185370 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293356036 2021-11-09 18:43:48.145012 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus N 15 United States US New York US-NY Dutchess US-NY-027 13.0 Millerton, Morse Hill Rd L3319596 P 41.89616 -73.57058 2015-01-25 14:08:00 obsr1732267 S21550798 Stationary P21 EBIRD 21.0 2.0 1 G1127524 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323962108 2021-03-26 06:29:56.44369 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Monroe US-NY-055 13.0 near pond at Mill Landing L2103068 P 43.235551 -77.702571 2015-05-18 07:40:00 obsr1721347 S23705807 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309660200 2021-11-09 20:51:10.420953 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Rockland US-NY-087 30.0 Lake Tappan (NY), Convent Rd. L1038277 H 41.0545394 -73.9821377 2015-04-13 07:39:00 obsr2628711 S22837072 Traveling P22 EBIRD 20.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311904002 2021-03-30 19:25:27.212017 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-21 09:45:00 obsr396989 S22987247 Traveling P22 EBIRD_NJ 335.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309382790 2021-04-01 11:49:53.573686 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Queens US-NY-081 30.0 Kissena Corridor Park L1285332 H 40.747257 -73.8202286 2015-04-12 07:00:00 obsr676630 S22819110 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294777717 2021-03-26 07:52:40.224846 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Fulton US-NY-035 13.0 mom's place L1207546 P 42.9963298 -74.371047 2015-02-02 08:45:00 obsr2590001 S21664242 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307942193 2018-08-04 17:05:43 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Richmond US-NY-085 Conference House Park L302089 H 40.4995098 -74.2516756 2015-04-06 09:17:00 obsr1958124 S22715183 Traveling P22 EBIRD 13.0 0.483 2.0 1 G1208448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320555394 2020-03-15 09:14:53 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-17 09:13:00 obsr997992 S23492654 Traveling P22 EBIRD 244.0 2.414 2.0 1 G1274998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313562005 2021-03-30 19:37:33.521815 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Larkin Rd. L4342619 H 43.3037091 -76.7905645 2015-04-27 13:56:00 obsr1721609 S23094514 Traveling P22 EBIRD 127.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322217784 2021-03-19 16:44:35.607263 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-23 11:22:00 obsr730231 S23593574 Traveling P22 EBIRD 42.0 1.127 2.0 1 G1285656 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317989052 2020-08-24 21:30:56 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 John Boyd Thacher SP--Beaver Dam Road Trail L3630909 H 42.6363582 -74.0147853 2015-05-10 06:19:00 obsr1165633 S23350826 Traveling P22 EBIRD 90.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311922476 2021-03-24 20:21:02.634125 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Schoharie US-NY-095 28.0 Franklinton Vlaie L876603 H 42.5407577 -74.2995715 2015-04-21 06:33:00 obsr2846677 S22988477 Stationary P21 EBIRD 28.0 1.0 1 G1230540 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296240317 2021-03-26 07:00:33.333856 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 8 United States US New York US-NY Queens US-NY-081 30.0 Glendale L3355332 P 40.7111298 -73.8641685 2015-02-12 08:30:00 obsr1902847 S21780052 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317201503 2021-03-26 06:29:56.44369 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Monroe US-NY-055 13.0 Oak Leaf Ln L1952075 P 43.0583843 -77.488085 2015-05-08 07:30:00 obsr2223307 S23305998 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS925692803 2021-03-26 06:39:43.334073 27616 species avibase-D77E4B41 American Robin Turdus migratorius N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 07:00:00 obsr1012618 S69256987 Historical P62 EBIRD 600.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300898992 2021-03-26 07:30:35.289997 26890 species avibase-94A44032 European Starling Sturnus vulgaris 97 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-04 12:18:00 obsr1696616 S22171626 Stationary P21 EBIRD 24.0 1.0 1 G1166506 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288167142 2021-09-03 19:22:31.034431 30494 species avibase-240E3390 House Sparrow Passer domesticus 9 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-01-01 11:16:00 obsr2497657 S21114776 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308194628 2021-03-26 07:43:12.52294 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 1 United States US New York US-NY Wayne US-NY-117 13.0 Powell's Yard L783199 P 43.0918854 -77.3488167 2015-04-06 17:30:00 obsr749440 S22733946 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291908590 2020-05-07 21:20:14 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 32 United States US New York US-NY Suffolk US-NY-103 30.0 Amagansett (Atlantic Ave Seawatch) [ACW] L1302382 P 40.9694406 -72.1238118 2015-01-19 07:58:00 obsr598381 S21416804 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307356756 2021-03-30 19:22:51.561415 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus 21 United States US New York US-NY Queens US-NY-081 30.0 Brookville Park L2687495 H 40.6629513 -73.7429361 2015-04-04 07:20:00 obsr2574755 S22673741 Traveling P22 EBIRD 43.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS371745423 2022-03-08 13:50:22.901821 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-02-20 11:30:00 obsr798918 S27370559 Traveling P22 EBIRD 20.0 0.08 4.0 1 G1592454 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288345965 2015-01-01 21:28:59 8099 form avibase-65613235 Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (abieticola) Buteo jamaicensis abieticola 1 United States US New York US-NY Wayne US-NY-117 13.0 Clyde -Hunts Corners Road L3255467 P 43.1018759 -76.8670893 2015-01-01 12:25:00 obsr195058 S21130138 Traveling P22 EBIRD 10.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305562982 2021-04-01 11:30:42.037277 32757 species avibase-EF47E15D Boat-tailed Grackle Quiscalus major 1 United States US New York US-NY New York US-NY-061 30.0 Park Ave. L3515848 P 40.7507496 -73.9787559 2015-03-27 08:45:00 obsr2211210 S22538814 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288600896 2021-04-01 12:45:19.712958 5923 species avibase-15369E8E Dunlin Calidris alpina 7 United States US New York US-NY Westchester US-NY-119 30.0 Hutchinson Pkwy L3259212 P 40.9898761 -73.7341404 2015-01-02 14:10:00 obsr979921 S21151038 Incidental P20 EBIRD 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316283869 2021-11-15 03:06:58.889978 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 09:15:00 obsr1552744 S23254484 Traveling P22 EBIRD 120.0 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299923170 2021-03-24 19:27:13.077399 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-02-27 16:39:00 obsr1334267 S22097269 Traveling P22 EBIRD 18.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309644402 2018-08-04 17:08:44 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-12 08:30:00 obsr1472872 S22836107 Traveling P22 EBIRD 104.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294141835 2021-03-26 06:29:56.44369 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 15 United States US New York US-NY Monroe US-NY-055 13.0 Cook Rd Swale near Hapgood's L3328999 P 43.3594748 -77.9706037 2015-01-28 10:40:00 obsr2966702 S21613620 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314167800 2021-11-09 18:47:59.744367 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 4 United States US New York US-NY Dutchess US-NY-027 13.0 FEEDERS & YARD T/O MILAN, NY L3728471 P 41.951314 -73.821144 2015-04-29 17:20:00 obsr1442681 S23132606 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301273312 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 2 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-03-06 14:00:00 obsr1731572 S22199456 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320435539 2021-03-24 20:58:04.794277 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Herkimer US-NY-043 13.0 Soncody Road (between Albany and Foster) L2875073 P 42.9502624 -75.1736069 2015-05-16 18:30:00 obsr1680059 S23486399 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288334096 2021-11-09 21:56:49.428438 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Ulster US-NY-111 28.0 Wallkill Area L3254366 P 41.59847 -74.18181 2015-01-01 13:00:00 obsr2214649 S21129123 Traveling P22 EBIRD 30.0 9.656 2.0 0 G1089467 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311642489 2021-03-23 17:26:08.495143 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--median strip L3310253 H 40.5875594 -73.5588285 2015-04-03 11:30:00 obsr601383 S22970230 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293042818 2021-04-01 12:31:09.823741 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N X United States US New York US-NY Livingston US-NY-051 13.0 Harter Road L994427 P 42.5953532 -77.7058214 2015-01-24 10:44:00 obsr72341 S21526157 Traveling P22 EBIRD 5.0 2.897 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313611069 2021-04-01 11:23:42.170869 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-04-26 09:00:00 obsr589593 S23097638 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297840837 2021-11-09 21:23:47.89824 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-16 15:45:00 obsr2848443 S21925490 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312309520 2021-11-09 22:38:24.637382 32757 species avibase-EF47E15D Boat-tailed Grackle Quiscalus major 1 United States US New York US-NY Sullivan US-NY-105 28.0 Kiamesha Lake L1787103 H 41.6720017 -74.6661486 2015-04-23 12:00:00 obsr444155 S23014136 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310467353 2021-03-26 08:09:53.772059 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Rensselaer US-NY-083 13.0 149 Horizon View Drive, East Greenbush, L3568104 P 42.5869925 -73.6912814 2015-04-16 06:00:00 obsr2932678 S22894167 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320261690 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-16 07:30:00 obsr2364166 S23477297 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316212087 2021-03-30 19:39:10.250398 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Nassau US-NY-059 30.0 Saint Johns Pond Sanctuary L123034 H 40.85417 -73.46333 2015-05-05 07:29:00 obsr1107696 S23250218 Traveling P22 EBIRD 44.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304186590 2021-04-01 11:15:31.646886 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-20 07:30:00 obsr1605975 S22433775 Traveling P22 EBIRD 170.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306791307 2021-03-30 19:13:38.458673 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-01 16:30:00 obsr2223307 S22631882 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320261730 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-16 07:30:00 obsr2364166 S23477297 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293605283 2021-11-28 10:19:03.145971 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Montauk L1051370 P 41.0550198 -71.8984795 2015-01-25 09:50:00 obsr1987335 S21571353 Stationary P21 EBIRD 11.0 2.0 0 G1126997 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS306991865 2021-03-23 16:29:02.691496 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-02 09:55:00 obsr408487 S22646792 Stationary P21 EBIRD 230.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304390759 2021-03-26 07:07:10.758746 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Richmond US-NY-085 30.0 40.5178x-74.2350 - Mar 21, 2015, 9:13 AM L3503294 P 40.517836 -74.235004 2015-03-21 09:13:00 obsr1958124 S22449407 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312930534 2021-03-23 17:15:00.080143 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP, Sodus L712218 H 43.2673188 -77.0297813 2015-04-25 08:07:00 obsr2827982 S23055769 Traveling P22 EBIRD 135.0 1.931 13.0 1 G1235657 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299830695 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-27 08:15:00 obsr454647 S22090507 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292144102 2021-03-30 19:07:52.958398 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-20 11:45:00 obsr2152799 S21435543 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319161747 2021-03-26 06:09:25.361188 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-05-06 14:45:00 obsr2562905 S23416062 Traveling P22 EBIRD 90.0 1.609 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS963294934 2020-08-02 09:29:57 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Columbia US-NY-021 13.0 Olana State Historic Site L357372 H 42.2183005 -73.8287207 2015-05-02 obsr712650 S72037705 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288320379 2021-11-09 21:56:47.283823 6029 species avibase-D4A73324 Solitary Sandpiper Tringa solitaria 2 United States US New York US-NY Ulster US-NY-111 28.0 Wallkill River Walk L3161419 H 41.6024469 -74.1829652 2015-01-01 08:00:00 obsr890053 S21128032 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307204066 2021-03-23 16:52:36.900075 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_847 30.0 West Meadow Wetlands Reserve L1166126 H 40.9327414 -73.1451702 2015-04-03 14:50:00 obsr1228860 S22662499 Traveling P22 EBIRD 69.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307961615 2020-05-16 18:13:13 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Otsego US-NY-077 28.0 Worcester Rest Area L3543154 P 42.60946 -74.68428 2015-04-06 10:41:00 obsr2211210 S22716734 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315878333 2018-04-16 15:51:00 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-04 18:18:00 obsr589593 S23230312 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312081686 2021-03-26 07:56:20.588749 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-22 08:40:00 obsr916370 S22998881 Traveling P22 EBIRD 120.0 4.184 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323195160 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 5 United States US New York US-NY Nassau US-NY-059 30.0 Planting Fields Arboretum L517497 H 40.8638744 -73.5580158 2015-05-26 15:45:00 obsr1895507 S23652636 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316586614 2021-04-01 11:30:42.037277 7011 species avibase-534FB490 Northern Gannet Morus bassanus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 06:30:00 obsr1911748 S23271696 Traveling P22 EBIRD 420.0 6.437 2.0 1 G1254906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306517096 2021-03-23 17:20:42.367321 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Chenango US-NY-017 28.0 Chenango River off Brisben Bridge L3477382 P 42.3639088 -75.6804693 2015-03-31 11:27:00 obsr1303581 S22611022 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323814869 2021-11-09 18:44:30.376878 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 3 United States US New York US-NY Dutchess US-NY-027 28.0 Berkshire Rd., Dover L3408350 H 41.6906482 -73.5582539 2015-05-29 09:15:00 obsr1917973 S23695989 Traveling P22 EBIRD 120.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319549095 2021-03-26 06:14:19.776945 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 4 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-05-14 10:15:00 obsr570335 S23438398 Traveling P22 EBIRD 90.0 3.219 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292631771 2021-04-01 11:42:15.525388 32469 species avibase-3E2D0C9B Yellow-headed Blackbird Xanthocephalus xanthocephalus 2 United States US New York US-NY Niagara US-NY-063 13.0 Niagara Falls SP L918348 H 43.0863978 -79.0690431 2015-01-22 12:38:00 obsr294236 S21494375 Traveling P22 EBIRD 80.0 3.219 2.0 1 G1120225 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289714253 2015-01-07 15:59:51 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Suffolk US-NY-103 30.0 Arshamomaque Pond Preserve L140131 H 41.079361 -72.4004135 2015-01-02 08:33:00 obsr535265 S21240576 Traveling P22 EBIRD 38.0 1.77 1.0 1 G1100196 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307426187 2018-12-10 21:26:13 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 5 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-04 09:00:00 obsr820113 S22678747 Traveling P22 EBIRD 90.0 2.414 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291627159 2020-05-16 18:10:06 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Otsego US-NY-077 28.0 ninja HQ L2949037 P 42.474204 -75.053505 2015-01-18 08:56:00 obsr1536762 S21395375 Traveling P22 EBIRD 105.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304719081 2019-07-23 17:28:04 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia X United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-03-21 10:10:00 obsr59643 S22473598 Stationary P21 EBIRD 30.0 10.0 1 G1190039 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308528342 2021-04-01 11:15:31.646886 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 6 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-04-08 12:30:00 obsr2448957 S22759349 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS359630349 2021-03-30 19:22:51.561415 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-25 10:21:00 obsr2022298 S26344803 Traveling P22 EBIRD 122.0 1.609 2.0 1 G1501715 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318256806 2021-04-01 11:15:31.646886 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 4 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-10 07:10:00 obsr2519357 S23364882 Traveling P22 EBIRD 106.0 3.219 4.0 1 G1262445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295795891 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY New York US-NY-061 East River, Brooklyn Bridge to S.I. Ferry L3339003 H 40.7039737 -74.0059423 2015-02-09 12:05:00 obsr2179748 S21744682 Traveling P22 EBIRD 59.0 2.301 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305962198 2018-08-04 17:04:33 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Long Pond--Northrup Creek L462594 H 43.2849534 -77.7069855 2015-03-29 07:00:00 obsr749440 S22568878 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290416140 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-11 09:30:00 obsr822430 S21297740 Traveling P22 EBIRD 170.0 4.828 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298320235 2015-02-18 20:36:16 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Suffolk US-NY-103 30.0 East Farm Preserve L123033 H 40.90472 -73.14889 2015-02-18 15:00:00 obsr1585511 S21966434 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304918578 2022-02-17 14:32:23.002448 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-23 13:29:00 obsr1605975 S22488324 Traveling P22 EBIRD 100.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299409274 2021-11-09 21:17:58.494129 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 20 United States US New York US-NY Ulster US-NY-111 28.0 Lippincott Rd., Wallkill L1097498 H 41.6194441 -74.1931401 2015-02-22 16:30:00 obsr2228257 S22057869 Stationary P21 EBIRD 20.0 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307812451 2021-03-26 07:20:31.408164 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 3 United States US New York US-NY Suffolk US-NY-103 30.0 Montauk Beach L2242121 P 41.0323285 -71.942988 2015-04-05 10:00:00 obsr150865 S22705613 Stationary P21 EBIRD 120.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290709965 2017-08-16 16:18:59 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Suffolk County Golf Course, West Sayville, NY L3288390 P 40.7275845 -73.0978192 2015-01-11 10:50:00 obsr2175245 S21321499 Traveling P22 EBIRD 40.0 0.402 6.0 1 G1107340 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292112290 2018-08-04 16:54:46 636 species avibase-B77377EE Common Eider Somateria mollissima 3 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-01-20 11:45:00 obsr258431 S21433043 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303076162 2019-07-23 17:27:58 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 8 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-14 13:42:00 obsr730231 S22346580 Traveling P22 EBIRD 51.0 1.287 2.0 1 G1179145 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319553898 2021-11-15 03:06:58.889978 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-14 06:28:00 obsr642993 S23438673 Traveling P22 EBIRD 265.0 4.828 1.0 1 0 0 1 Species-Introduced/Exotic +URN:CornellLabOfOrnithology:EBIRD:OBS314390723 2018-08-04 17:13:08 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 5 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-30 08:34:00 obsr1222746 S23146155 Rusty Blackbird Spring Migration Blitz P41 EBIRD 178.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323116167 2018-08-06 22:31:11 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Panama Rocks Scenic Park L7686395 H 42.072845 -79.488153 2015-05-26 09:15:00 obsr2816437 S23647436 Traveling P22 EBIRD 90.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292731271 2021-03-26 07:20:31.408164 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-01-13 07:00:00 obsr1592950 S21501937 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304064599 2021-03-26 06:52:34.887371 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Niagara US-NY-063 Wilson Pier L1305695 H 43.3175398 -78.8350582 2015-03-19 15:03:00 obsr1310178 S22424258 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300092731 2018-08-04 16:58:27 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 2 United States US New York US-NY Saratoga US-NY-091 13.0 Hudson Crossing Park L1476458 H 43.1155261 -73.577908 2015-02-28 13:28:00 obsr1222746 S22111387 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309794930 2018-08-04 17:09:04 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Rensselaer US-NY-083 13.0 Papscanee Island Nature Preserve L488165 H 42.5762804 -73.7484741 2015-04-13 16:10:00 obsr1181085 S22847460 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300453226 2021-03-24 19:48:44.880783 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-03-01 08:28:00 obsr2595828 S22138828 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308792019 2015-04-10 14:54:58 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Nassau US-NY-059 30.0 Bailey Arboretum L2167566 H 40.8882664 -73.5840304 2015-04-08 09:00:00 obsr1160328 S22779550 Stationary P21 EBIRD 90.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291496505 2021-11-09 19:51:09.255083 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 Male, Adult (2); Unknown Sex, Immature (2); Female, Adult (1) United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-01-17 14:12:00 obsr258431 S21385121 Traveling P22 EBIRD 50.0 0.402 1.0 0 G1112198 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310941304 2021-03-30 12:05:58.533651 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-18 07:45:00 obsr377694 S22925749 Traveling P22 EBIRD 180.0 6.437 10.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296219596 2015-02-12 03:20:48 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 41 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-01-19 07:30:00 obsr2694889 S21778494 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323727081 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-27 06:50:00 obsr2449897 S23690088 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304005694 2021-03-26 08:12:51.35913 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 150 United States US New York US-NY Schuyler US-NY-097 13.0 Seneca Harbor Park L150677 H 42.383846 -76.873375 2015-03-19 08:55:00 obsr1092576 S22419382 Stationary P21 EBIRD 15.0 3.0 1 G1184991 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300152931 2018-08-04 16:58:24 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 10 United States US New York US-NY Seneca US-NY-099 13.0 Wyers Point and Wyers Point Rd. L285461 H 42.6736408 -76.7156979 2015-02-28 09:01:00 obsr2683910 S22116221 Traveling P22 EBIRD 9.0 2.414 2.0 1 G1162603 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319578649 2021-04-01 11:30:42.037277 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 07:30:00 obsr1102914 S23439986 Traveling P22 EBIRD 270.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312155183 2019-04-19 13:17:53 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 8 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-22 16:15:00 obsr1918430 S23003724 Stationary P21 EBIRD 20.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288193662 2019-10-25 15:54:27 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-01-01 13:08:00 obsr2211750 S21116978 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294210762 2019-01-03 10:54:11 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 500 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet, east L1867552 H 40.8427805 -72.4742851 2015-01-23 07:30:00 obsr1864342 S21618914 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS470303378 2021-11-15 03:06:58.889978 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-13 07:30:00 obsr1843598 S34784919 Traveling P22 EBIRD 120.0 3.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307161809 2022-02-04 06:14:13.892644 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-04-03 10:45:00 obsr1223279 S22659651 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311751812 2021-03-26 06:59:15.841579 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-16 09:15:00 obsr1481464 S22977288 Stationary P21 EBIRD 210.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311514802 2021-04-01 11:42:50.317679 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 7 United States US New York US-NY Oneida US-NY-065 13.0 Utica Marsh WMA L129227 H 43.1183434 -75.2374573 2015-04-17 15:00:00 obsr2694889 S22961037 Traveling P22 EBIRD 165.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317103358 2021-03-26 06:39:43.334073 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Cherry Hill L1089061 H 40.7747813 -73.972173 2015-05-08 07:20:00 obsr2797341 S23301020 Stationary P21 EBIRD 20.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298695316 2021-11-09 18:32:20.227374 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Dutchess US-NY-027 13.0 2122 New Hackensack Road, Poughkeepsie, New York, US (41.66, -73.874) L233101 P 41.6600962 -73.8740462 2015-02-18 10:00:00 obsr842638 S21999371 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312438633 2021-03-26 07:43:12.52294 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Deep Muck and Mitigation Marsh L1280474 H 43.0737585 -76.7234516 2015-04-22 14:38:00 obsr528918 S23023088 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305197659 2021-04-01 11:42:50.317679 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-03-25 07:40:00 obsr666964 S22510300 Stationary P21 EBIRD 26.0 2.0 1 G1191958 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291043379 2021-03-30 19:29:33.633096 483 species avibase-85625D75 Mallard Anas platyrhynchos 64 United States US New York US-NY Suffolk US-NY-103 30.0 Southaven County Park L2117422 H 40.8157861 -72.8972683 2015-01-14 15:37:00 obsr1107696 S21348289 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319205356 2021-03-26 06:21:54.883933 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-13 07:00:00 obsr1407710 S23418573 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312622229 2021-03-30 19:29:33.633096 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Suffolk US-NY-103 30.0 Goldsmiths Inlet L138043 H 41.0541647 -72.4740449 2015-04-24 18:33:00 obsr2485753 S23036548 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315511889 2021-12-24 11:02:14.483178 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-02 08:00:00 obsr1534851 S23210316 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303227075 2015-09-13 11:57:51 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-03-14 10:30:00 obsr1079517 S22358135 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289113893 2021-03-23 17:26:08.495143 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-04 10:50:00 obsr856524 S21193903 Traveling P22 EBIRD 5.0 1.287 2.0 1 G1095726 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313976748 2021-11-15 03:06:58.889978 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-28 18:20:00 obsr794187 S23120944 Traveling P22 EBIRD 60.0 1.287 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313776378 2021-03-24 20:33:47.533911 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias X United States US New York US-NY Tompkins US-NY-109 28.0 Mr. C. Feeder Station L3541750 P 42.3927043 -76.3720956 2015-04-28 08:05:00 obsr581835 S23108247 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302856376 2021-04-01 11:47:43.260314 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-03-09 13:58:00 obsr2700277 S22328861 Traveling P22 EBIRD 46.0 0.483 2.0 1 G1177756 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296338824 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 Brooklyn Army Terminal Pier 4 L2598864 H 40.646519 -74.026074 2015-02-12 12:17:00 obsr454647 S21789738 Stationary P21 EBIRD 80.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS323677739 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-28 07:00:00 obsr1312694 S23685139 Traveling P22 EBIRD 120.0 2.414 10.0 1 G1294408 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306705161 2021-03-26 06:09:25.361188 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-04-01 10:32:00 obsr800690 S22625740 Traveling P22 EBIRD 68.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309369987 2015-04-12 12:15:06 5134 species avibase-E893F98D Clapper Rail Rallus crepitans X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-04-12 06:00:00 obsr290506 S22818363 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318537919 2018-08-06 22:29:33 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Columbia US-NY-021 13.0 Lewis A. Swyer Preserve L122991 H 42.41944 -73.77222 2015-05-10 07:25:00 obsr2842267 S23380156 Traveling P22 EBIRD 245.0 0.805 8.0 1 G1264826 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314456793 2021-03-24 19:48:44.880783 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-04-30 06:03:00 obsr1410564 S23150535 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313631990 2021-04-01 11:54:40.172593 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-04-24 08:00:00 obsr666331 S23098990 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311841914 2021-03-30 19:43:32.881136 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 6 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-21 09:00:00 obsr1364971 S22983372 Traveling P22 EBIRD 180.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300953221 2021-04-01 11:15:31.646886 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 50 United States US New York US-NY Kings US-NY-047 Manhattan Beach Park L852391 H 40.5762169 -73.9441681 2015-03-04 10:39:00 obsr150415 S22175667 Traveling P22 EBIRD 65.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302536621 2019-07-23 17:27:53 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 25 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach SP L502729 H 41.1286489 -72.2700955 2015-03-11 10:30:00 obsr1781960 S22304626 Traveling P22 EBIRD 150.0 4.828 4.0 1 G1175461 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS462405494 2021-04-01 11:54:40.172593 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-01-29 11:01:00 obsr1958124 S34094445 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309974589 2021-04-07 20:48:00.643023 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-14 11:29:00 obsr354090 S22860238 Traveling P22 EBIRD 51.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322825447 2022-02-17 14:32:23.002448 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-23 08:30:00 obsr2502574 S23628813 Traveling P22 EBIRD 180.0 1.77 5.0 1 G1288834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298061235 2021-03-23 17:26:08.495143 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-17 09:00:00 obsr800463 S21944603 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305180478 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-03-24 07:15:00 obsr2449897 S22508978 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288991961 2021-04-01 11:15:31.646886 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina X United States US New York US-NY Kings US-NY-047 30.0 Brooklyn Botanic Garden L297912 H 40.6680222 -73.96367 2015-01-04 09:36:00 obsr173911 S21184275 Traveling P22 EBIRD 60.0 4.023 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309688795 2021-03-24 21:09:00.82373 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 Male, Adult (2) United States US New York US-NY Rensselaer US-NY-083 13.0 Jensis Rd L998226 P 42.5520845 -73.7279069 2015-04-12 07:30:00 obsr489496 S22839699 Area P23 EBIRD 25.0 0.4047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302563940 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-03-11 10:10:00 obsr2846677 S22306919 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306718077 2021-03-23 16:48:08.60516 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-04-01 10:00:00 obsr204036 S22626656 Traveling P22 EBIRD 50.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312726762 2021-03-26 07:30:35.289997 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 47 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-25 07:05:00 obsr34822 S23043673 Traveling P22 EBIRD 80.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298780691 2021-04-01 11:54:40.172593 592 species avibase-3072CC16 Redhead Aythya americana 10 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-21 15:03:00 obsr1958124 S22006515 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310856017 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 06:10:00 obsr1433400 S22920469 Traveling P22 EBIRD 200.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296445061 2021-04-01 12:18:57.910168 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 75 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-02-13 12:20:00 obsr869999 S21799195 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300047427 2021-03-26 07:07:10.758746 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 2 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-02-28 09:25:00 obsr1958124 S22107260 Traveling P22 EBIRD 30.0 0.805 2.0 1 G1161952 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001088 2021-03-26 07:56:20.588749 32860 species avibase-4D08EE7E Prothonotary Warbler Protonotaria citrea 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-19 09:00:00 obsr2218212 S23775926 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309752674 2020-07-20 09:16:51 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-13 14:00:00 obsr2172593 S22844675 Traveling P22 EBIRD 16.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302868522 2021-04-01 11:54:40.172593 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 6 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-13 13:37:00 obsr1958124 S22329761 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291208386 2021-11-09 18:33:00.158786 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 12 United States US New York US-NY Dutchess US-NY-027 28.0 Red Wing/Greenhaven Road, Hopewell, NY L2422293 P 41.6022222 -73.7195921 2015-01-10 13:30:00 obsr1062217 S21361755 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312534672 2021-01-26 11:55:02.346497 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 S7 C3 S7 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-04-24 11:59:00 obsr606693 S23029530 Traveling P22 EBIRD 5.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293581028 2021-04-01 12:45:19.712958 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-01-25 11:34:00 obsr2022298 S21569425 Stationary P21 EBIRD 21.0 2.0 1 G1126851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297094848 2021-04-01 11:54:40.172593 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-02-15 10:19:00 obsr1893950 S21857166 Stationary P21 EBIRD 137.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307004732 2021-03-23 17:00:13.087107 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 3 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-1000-1016 Teeter Rd L3533099 P 42.422134 -76.573154 2015-04-02 17:14:00 obsr2625207 S22648067 Traveling P22 EBIRD 30.0 0.998 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303209453 2021-03-19 16:32:34.732091 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Kings US-NY-047 BJs Wholesale Club Waterfront (Brooklyn) L3311662 H 40.5917716 -73.9990756 2015-03-15 08:37:00 obsr1821546 S22356639 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300005354 2015-02-28 09:49:35 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-02-27 obsr1591201 S22103754 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310607240 2018-12-30 09:55:59 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 28.0 Alcove Reservoir spillway, Rt. 111 L2396759 P 42.466916 -73.9314265 2015-04-17 08:38:00 obsr2321296 S22904166 Stationary P21 EBIRD 34.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298480998 2021-03-23 16:39:03.255227 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-02-19 07:42:00 obsr1893950 S21980836 Traveling P22 EBIRD 9.0 0.322 2.0 1 G1153109 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307555104 2021-03-26 06:39:43.334073 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-30 obsr2277801 S22687614 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322134308 2021-04-01 11:15:31.646886 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 5 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-23 05:34:00 obsr1821546 S23589116 Traveling P22 EBIRD 112.0 1.046 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300937663 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 2 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park- Pier 6 L1067631 P 40.6935409 -74.0010524 2015-03-04 11:10:00 obsr263005 S22174501 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307096314 2021-03-30 19:22:51.561415 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-02 13:00:00 obsr1102914 S22654781 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311434036 2021-11-15 03:06:58.889978 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-19 12:00:00 obsr968874 S22956090 Traveling P22 EBIRD 300.0 3.219 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315300227 2021-03-30 19:07:52.958398 7261 species avibase-86D45B8F Green Heron Butorides virescens 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 06:33:00 obsr1711339 S23199034 Traveling P22 EBIRD 384.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308678410 2021-03-26 07:30:35.289997 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Tompkins US-NY-109 13.0 Nelson's House L3547421 P 42.4923209 -76.63849 2015-04-09 14:00:00 obsr246591 S22770815 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304436914 2021-03-24 19:19:28.646223 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 4 United States US New York US-NY Allegany US-NY-003 28.0 Chenunda Drive L1473325 P 42.0884737 -77.9247651 2015-03-21 06:48:00 obsr1310178 S22452602 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312867092 2021-11-09 19:48:27.2595 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Orange US-NY-071 US-NY_853 28.0 Harriman SP--Silver Mine Lake L2429448 H 41.2945762 -74.0590062 2015-04-25 12:00:00 obsr1121454 S23052073 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305845366 2022-03-05 22:03:50.715584 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 6 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-28 12:05:00 obsr1544235 S22560095 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296336467 2021-11-09 21:56:47.283823 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Ulster US-NY-111 28.0 Wallkill River Walk L3161419 H 41.6024469 -74.1829652 2015-02-12 14:01:00 obsr1906365 S21789580 Traveling P22 EBIRD 28.0 8.047 2.0 1 G1144439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312867425 2021-04-01 11:12:52.834774 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Greene US-NY-039 13.0 Coxsackie Boat Launch L474746 H 42.3533746 -73.7957346 2015-04-25 07:45:00 obsr2855945 S23052087 Stationary P21 EBIRD 25.0 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315374434 2021-03-19 16:02:45.308962 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-05-03 05:52:00 obsr1044068 S23202846 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297548812 2021-11-09 19:56:57.147405 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Orange US-NY-071 28.0 Gasho. L3384828 P 41.337493 -74.126258 2015-02-16 11:45:00 obsr2906952 S21897931 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305167373 2021-03-26 06:55:00.227271 5948 species avibase-A47B0BD4 Least Sandpiper Calidris minutilla 4 United States US New York US-NY Ontario US-NY-069 13.0 Co. Rd. 8 Between Holtz Rd. and Sheldon Rd. L3513018 P 43.0177872 -77.3244381 2015-03-23 10:45:00 obsr528918 S22508038 Traveling P22 EBIRD 5.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291402892 2021-04-01 12:32:15.282601 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-01-17 08:45:00 obsr2844530 S21377448 Traveling P22 EBIRD 18.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289438077 2021-04-01 11:30:42.037277 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-01 10:30:00 obsr1828047 S21218841 Traveling P22 EBIRD 90.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312150742 2021-04-01 12:14:19.266649 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-22 15:00:00 obsr544268 S23003430 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314028745 2021-03-30 19:29:33.633096 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Suffolk US-NY-103 US-NY_780 30.0 USFWS_602 Wertheim NWR L295971 H 40.7754935 -72.8810839 2015-04-29 10:12:00 obsr613775 S23124204 Traveling P22 EBIRD 67.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310381986 2021-11-09 21:11:17.996623 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Rockland US-NY-087 US-NY_765 30.0 Hook Mountain L461000 H 41.1208833 -73.9180667 2015-04-15 17:00:00 obsr1489009 S22888332 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304438281 2021-04-01 12:32:15.282601 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Nassau US-NY-059 30.0 Milburn Pond Park L632761 H 40.6522759 -73.6026542 2015-03-21 11:00:00 obsr2207991 S22452692 Traveling P22 EBIRD 60.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322666901 2015-05-24 21:33:57 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Broome US-NY-007 28.0 Windsor, 234 Ostrander Road L3670080 P 42.07609 -75.59048 2015-05-24 17:28:00 obsr800690 S23619050 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320277203 2021-04-01 11:15:31.646886 11528 species avibase-F3DA111C Merlin Falco columbarius 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 15:07:00 obsr152435 S23478076 Traveling P22 EBIRD 226.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292521249 2021-03-30 19:29:33.633096 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 26 United States US New York US-NY Suffolk US-NY-103 30.0 Hook Pond L283133 H 40.9461611 -72.1907833 2015-01-21 09:45:00 obsr247620 S21485568 Traveling P22 EBIRD 30.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308416001 2021-03-26 07:07:10.758746 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Richmond US-NY-085 Lemon Creek Park L508340 H 40.5121298 -74.198581 2015-04-08 08:01:00 obsr1958124 S22750487 Traveling P22 EBIRD 5.0 0.483 2.0 1 G1211606 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317114859 2021-03-26 06:17:19.712573 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-08 06:44:00 obsr502830 S23301606 Traveling P22 EBIRD 189.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303721280 2021-03-30 12:05:58.533651 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery L2827319 P 40.6555736 -73.9938211 2015-03-17 10:30:00 obsr827632 S22397261 Traveling P22 EBIRD 105.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295994798 2021-03-26 07:52:19.474233 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Delaware US-NY-025 28.0 Pepacton Reservoir, headwaters L2062588 H 42.114524 -74.7351837 2015-02-10 11:00:00 obsr15220 S21760662 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310927083 2021-03-24 20:33:47.533911 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom32 L3513974 H 42.58 -76.281481 2015-04-18 12:25:00 obsr1655171 S22924846 Stationary P21 EBIRD 6.0 2.0 1 G1229846 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300078705 2021-04-01 11:15:31.646886 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-28 12:41:00 obsr2404047 S22109736 Traveling P22 EBIRD 86.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317012959 2021-03-23 17:22:05.708166 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-07 08:55:00 obsr1000124 S23295762 Area P23 EBIRD 65.0 2.59 2.0 1 G1256610 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312718666 2021-03-23 16:51:24.016808 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Steuben US-NY-101 28.0 Keuka Lake, Champlin Beach L745394 H 42.4022754 -77.2142529 2015-04-25 06:58:00 obsr1092576 S23043114 Traveling P22 EBIRD 17.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290576428 2022-01-09 18:48:43.534861 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 4 United States US New York US-NY New York US-NY-061 30.0 Greenwich Village (14th St.-Houston St.; Broadway-Hudson River) L3238737 H 40.7342063 -74.0027145 2015-01-11 12:00:00 obsr2863596 S21310568 Traveling P22 EBIRD 90.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314022344 2021-03-26 06:21:08.096334 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-04-29 09:10:00 obsr1302604 S23123845 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307101995 2021-03-23 16:39:03.255227 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 30 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-03 07:50:00 obsr1958124 S22655276 Traveling P22 EBIRD 19.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312341367 2018-08-04 17:11:52 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Westchester US-NY-119 US-NY_871 30.0 Ward Pound Ridge Reservation L746022 H 41.2455683 -73.5888076 2015-04-23 07:30:00 obsr1336375 S23016372 Traveling P22 EBIRD 30.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308201128 2021-03-23 17:00:13.087107 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-07 06:53:00 obsr455249 S22734454 Traveling P22 EBIRD 7.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317221604 2021-11-15 03:06:58.889978 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 10:00:00 obsr90751 S23307127 Traveling P22 EBIRD 150.0 3.219 2.0 1 G1257994 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321851327 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-18 16:45:00 obsr2603801 S23570802 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1282662 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288972291 2021-03-23 17:15:00.080143 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-01-04 09:41:00 obsr2914424 S21182668 Traveling P22 EBIRD 35.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303116212 2021-03-26 06:29:56.44369 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-14 13:30:00 obsr334398 S22349645 Stationary P21 EBIRD 25.0 2.0 1 G1179459 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313827771 2021-11-09 21:47:06.320858 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 6 United States US New York US-NY Ulster US-NY-111 US-NY_1728 28.0 Minnewaska SP L254147 H 41.7237441 -74.2704102 2015-04-28 08:00:00 obsr2219590 S23111492 Traveling P22 EBIRD 255.0 9.817 27.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299096026 2018-08-04 16:58:03 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Seneca US-NY-099 13.0 Varick--Cayuga Lake from Town Line Rd. L2716130 P 42.8092 -76.75607 2015-02-22 13:43:00 obsr2683910 S22034214 Traveling P22 EBIRD 16.0 2.414 3.0 1 G1156982 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303824390 2021-03-19 16:14:11.035882 7346 species avibase-D4540F88 Glossy Ibis Plegadis falcinellus 2 United States US New York US-NY Cortland US-NY-023 28.0 Kellogg Road - Cortlandville L3448567 P 42.5851915 -76.1467123 2015-03-14 08:15:00 obsr931232 S22405351 Traveling P22 EBIRD 25.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296338275 2021-03-26 08:14:57.071052 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 3 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-02-12 07:30:00 obsr2918150 S21789703 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294932008 2021-03-26 07:07:10.758746 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 2 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-02-04 17:20:00 obsr1958124 S21677451 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310338585 2019-11-30 11:44:49 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 NY:SEN:Tyre: Wildlife Dr (personal) (Montezuma NWR) L2309816 P 42.9761125 -76.7373562 2015-04-11 13:08:00 obsr2760150 S22885296 Traveling P22 EBIRD 228.0 4.619 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319232423 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 07:00:00 obsr1088395 S23420217 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309110305 2021-03-26 06:39:43.334073 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-04-11 09:30:00 obsr1223279 S22801509 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316212509 2021-03-30 06:01:28.020715 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Madison US-NY-053 28.0 Mason Hill, Hamilton, NY L2591505 P 42.8259191 -75.5196977 2015-05-05 17:00:00 obsr2843748 S23250236 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302699469 2021-03-30 19:07:52.958398 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect park L3483220 P 40.6563306 -73.9713979 2015-03-12 16:00:00 obsr377694 S22317051 Traveling P22 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319843075 2015-05-15 13:02:25 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-15 11:54:00 obsr334398 S23455188 Traveling P22 EBIRD 25.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312386377 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-22 06:00:00 obsr150865 S23019565 Traveling P22 EBIRD 210.0 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304513010 2015-03-21 21:21:31 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Oneida US-NY-065 13.0 Whitestown L210157 P 43.17351 -75.4187135 2015-03-21 obsr1384380 S22458330 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297269643 2021-03-26 07:00:33.333856 483 species avibase-85625D75 Mallard Anas platyrhynchos 25 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Restoration Pond L1396506 H 40.7531752 -73.7424416 2015-02-15 16:45:00 obsr676630 S21873309 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311736869 2021-03-26 06:29:56.44369 616 species avibase-25C94A8F Greater Scaup Aythya marila N 5 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-04-20 07:45:00 obsr2449897 S22976400 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307742774 2015-04-09 21:01:06 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cayuga Heights, 412 Klinewoods Road L3540733 P 42.46946 -76.48413 2015-04-05 13:46:00 obsr1655171 S22700595 Incidental P20 EBIRD 2.0 0 G1212789 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309438766 2018-08-04 17:08:52 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-12 12:00:00 obsr2313260 S22822284 Traveling P22 EBIRD 120.0 1.609 6.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309683307 2021-03-23 16:39:03.255227 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo N 5 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-13 10:01:00 obsr1958124 S22839354 Traveling P22 EBIRD 9.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288174039 2015-01-01 13:11:24 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 4 United States US New York US-NY Suffolk US-NY-103 30.0 Montauk Area L2452624 H 41.0370998 -71.9542837 2015-01-01 12:00:00 obsr57416 S21115320 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288262274 2021-04-26 05:03:09.627903 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-01 12:30:00 obsr547602 S21122826 Traveling P22 EBIRD 120.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308358030 2022-02-17 14:32:23.002448 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-07 14:00:00 obsr2448957 S22746171 Traveling P22 EBIRD 210.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294506877 2021-03-26 06:53:58.593564 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Oneida US-NY-065 13.0 Belle Avenue, Utica, NY Yard / Feeders L1957437 P 43.0891137 -75.2091622 2015-02-01 10:30:00 obsr1066808 S21642352 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308003252 2015-04-06 13:51:51 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Chenango US-NY-017 28.0 535 Moran Rd, Oxford L2650908 P 42.3464446 -75.6593978 2015-04-06 07:30:00 obsr1303581 S22719384 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322376664 2021-04-01 10:45:00.916278 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.8929476 2015-05-23 08:00:00 obsr1348614 S23602698 Traveling P22 EBIRD 240.0 2.414 7.0 1 G1286711 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS314235093 2018-08-04 17:13:03 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Franklin US-NY-033 13.0 Private Property - Alderon Marsh L3601092 P 44.9946705 -74.5498753 2015-04-29 18:00:00 obsr2161273 S23136843 Traveling P22 EBIRD 180.0 1.609 8.0 1 G1243686 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318954629 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-10 08:00:00 obsr442686 S23403895 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317709364 2021-04-01 11:15:31.646886 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 3 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-09 16:08:00 obsr2404047 S23335509 Traveling P22 EBIRD 100.0 4.828 4.0 1 G1260337 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299048078 2021-03-30 19:43:32.881136 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-22 14:00:00 obsr1008756 S22030149 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322657709 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-24 07:55:00 obsr302343 S23618491 Traveling P22 EBIRD 235.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313482232 2021-03-26 06:29:14.715704 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 4 United States US New York US-NY Madison US-NY-053 28.0 Backyard Feeders L1106615 P 42.8417296 -75.7263565 2015-04-26 07:45:00 obsr2240720 S23089781 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311894835 2015-04-21 17:13:23 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 11 United States US New York US-NY Columbia US-NY-021 13.0 Dutch Farming Heritage Trail L3581142 P 42.3791497 -73.7070179 2015-04-21 14:30:00 obsr349211 S22986615 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312190456 2021-11-09 21:10:22.93363 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus N 1 United States US New York US-NY Rockland US-NY-087 30.0 Hamlets L3583566 P 41.1175692 -74.0226227 2015-04-22 06:00:00 obsr218870 S23006286 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309292439 2018-08-04 17:08:02 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 20 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR (Seneca County) L6199904 P 42.9801 -76.7408323 2015-04-07 18:59:00 obsr924076 S22813508 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298769063 2021-03-26 07:07:10.758746 33216 species avibase-1F09CCCC Wilson's Warbler Cardellina pusilla 250 United States US New York US-NY Richmond US-NY-085 Page Ave. Beach L1340800 H 40.5023216 -74.2288034 2015-02-21 09:30:00 obsr1958124 S22005543 Stationary P21 EBIRD 30.0 2.0 1 G1155364 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314320740 2021-03-23 16:21:52.613913 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--CR 27 X Bird Rd. (3176D) [Palmyra_SE] L3351642 P 43.0166328 -77.1598363 2015-04-30 07:54:00 obsr606693 S23141922 Traveling P22 EBIRD 5.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309751442 2021-03-24 20:21:40.993321 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-13 09:00:00 obsr1655171 S22844602 Traveling P22 EBIRD 41.0 3.219 2.0 1 G1220002 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321659226 2021-03-26 06:39:43.334073 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-05-21 07:18:00 obsr894191 S23558897 Traveling P22 EBIRD 117.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304058965 2015-03-19 15:14:05 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 3 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N. & W. Trail intersection L250375 P 42.4790392 -76.4547486 2015-03-19 08:03:00 obsr2307843 S22423839 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300745119 2021-03-22 09:17:32.016297 622 species avibase-50566E50 Lesser Scaup Aythya affinis 15 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-03-03 13:45:00 obsr1842004 S22160063 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302709395 2015-03-12 19:39:37 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 28 United States US New York US-NY Saratoga US-NY-091 13.0 Hudson River @ Bunce Lane, Stillwater L2738236 P 42.9363913 -73.6592692 2015-03-12 08:40:00 obsr2855945 S22317859 Stationary P21 EBIRD 20.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296413492 2021-12-10 08:21:29.396662 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-13 08:45:00 obsr1801902 S21796367 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304504196 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 33 H C2 H United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-21 14:29:00 obsr924076 S22457649 Traveling P22 EBIRD 326.0 8.047 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293238660 2021-12-03 21:50:44.732892 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 Female, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-01-25 11:40:00 obsr1032565 S21541925 Traveling P22 EBIRD 190.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311456359 2018-08-04 17:11:20 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail L1498729 H 42.4795201 -76.4551642 2015-04-19 16:45:00 obsr2200680 S22957462 Traveling P22 EBIRD 45.0 1.127 3.0 1 G1227536 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340107189 2021-04-26 04:57:02.963704 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 6 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-01 13:00:00 obsr294325 S24873706 Traveling P22 EBIRD 90.0 6.437 3.0 1 G1395742 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316036017 2021-03-26 06:55:00.227271 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Ontario US-NY-069 13.0 SEOW Survey point L3614756 P 42.8781607 -77.5071099 2015-04-21 19:30:00 obsr2966702 S23239724 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293102384 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-25 10:05:00 obsr1349960 S21531333 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323923264 2021-03-26 06:29:56.44369 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-29 06:11:00 obsr2595828 S23703457 Stationary P21 EBIRD 100.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313103176 2021-04-01 12:18:57.910168 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Beebe Lake L281786 H 42.4512932 -76.4767515 2015-04-26 08:35:00 obsr881968 S23066314 Traveling P22 EBIRD 65.0 0.161 3.0 1 G1239951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295540022 2021-03-30 19:03:28.117389 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4500 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-02-08 10:16:00 obsr1828453 S21725288 Traveling P22 EBIRD 15.0 0.322 3.0 1 G1138933 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313911712 2020-05-16 18:12:51 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Otsego US-NY-077 28.0 Quarry House L3364190 P 42.7359074 -74.8563686 2015-04-28 18:00:00 obsr189015 S23116936 Stationary P21 EBIRD 120.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308161330 2015-04-06 22:43:58 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 8 United States US New York US-NY Wayne US-NY-117 13.0 Brown Road & Harnden Drive L2188241 P 43.3000702 -76.8064838 2015-04-03 11:10:00 obsr195058 S22730961 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305760767 2021-03-26 06:39:43.334073 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-28 07:05:00 obsr150865 S22554150 Traveling P22 EBIRD 190.0 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307075868 2021-04-01 11:46:19.761029 27616 species avibase-D77E4B41 American Robin Turdus migratorius 35 United States US New York US-NY Orleans US-NY-073 13.0 Lakeshore Rd. (Orleans Cty.) L749858 P 43.37149 -78.1236935 2015-04-02 09:40:00 obsr408487 S22653369 Traveling P22 EBIRD 7.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311812472 2021-04-01 11:15:31.646886 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 09:36:00 obsr2906952 S22981438 Traveling P22 EBIRD 124.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309248959 2021-03-23 17:00:13.087107 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Tompkins US-NY-109 28.0 Herman Rd. wetlands L1108700 H 42.5157265 -76.3355194 2015-04-11 18:26:00 obsr1655171 S22810797 Stationary P21 EBIRD 28.0 2.0 1 G1219976 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320952693 2018-08-06 22:30:29 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-18 08:20:00 obsr2504709 S23515044 Traveling P22 EBIRD 190.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314364808 2021-04-01 11:30:42.037277 681 species avibase-407E2CA8 Common Merganser Mergus merganser 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 09:00:00 obsr2369927 S23144349 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314570035 2022-03-09 02:50:29.805088 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 14 M C3 M United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-01 08:00:00 obsr128156 S23157832 Rusty Blackbird Spring Migration Blitz P41 EBIRD 65.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303022396 2021-12-03 21:50:44.732892 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-03-14 08:33:00 obsr1958124 S22342262 Traveling P22 EBIRD 15.0 0.805 2.0 1 G1178974 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323739140 2021-03-26 06:29:56.44369 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-29 08:10:00 obsr1962295 S23690856 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293258997 2019-07-23 17:27:12 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 35 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point, lighthouse overlook L2451456 H 41.0709727 -71.8565091 2015-01-25 14:00:00 obsr110238 S21543421 Stationary P21 EBIRD 75.0 4.0 1 G1123348 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303331421 2019-07-23 17:27:58 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 25 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-03-14 11:47:00 obsr2683910 S22366545 Stationary P21 EBIRD 31.0 2.0 1 G1181021 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319191269 2021-03-23 17:22:05.708166 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 Female, Adult (2) United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-05-12 06:10:00 obsr2694889 S23417745 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303619101 2021-04-01 10:47:08.851048 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.0905225 2015-03-15 11:25:00 obsr1626739 S22389432 Traveling P22 EBIRD 57.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294544581 2018-08-04 16:55:33 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-02-01 09:15:00 obsr241086 S21645348 Stationary P21 EBIRD 15.0 2.0 1 G1132865 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289246933 2018-08-04 16:52:43 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 45 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-01-04 11:30:00 obsr2155111 S21203854 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295677180 2015-02-08 20:56:31 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Crookes Point L1212271 H 40.5321718 -74.1351929 2015-02-08 13:30:00 obsr1417659 S21736114 Traveling P22 EBIRD 180.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324013520 2021-03-26 06:29:56.44369 431 species avibase-90E2543E Blue-winged Teal Spatula discors 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-25 07:28:00 obsr1696616 S23708810 Traveling P22 EBIRD 75.0 0.8 2.0 1 G1296178 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294472170 2021-03-24 21:10:11.310781 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 1 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-01-30 08:00:00 obsr1664745 S21639485 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314652747 2018-08-04 17:13:55 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-01 11:13:00 obsr1472872 S23162491 Traveling P22 EBIRD 160.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310092356 2021-11-09 19:57:49.39749 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Orange US-NY-071 28.0 Brach's Dairy, River Rd. L3556353 P 41.53858 -74.22072 2015-04-11 10:30:00 obsr2683910 S22868567 Traveling P22 EBIRD 35.0 0.483 2.0 1 G1219967 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313423826 2021-11-09 19:01:40.008558 26890 species avibase-94A44032 European Starling Sturnus vulgaris 11 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-04-26 08:13:00 obsr1433400 S23086248 Traveling P22 EBIRD 75.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319651879 2021-03-19 16:08:39.161312 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-05-14 10:15:00 obsr1380963 S23444094 Traveling P22 EBIRD 60.0 9.656 1.0 1 G1270925 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309159165 2015-04-11 17:17:14 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Washington US-NY-115 13.0 Summit Lake L3135101 P 43.2107767 -73.4633602 2015-04-11 12:22:00 obsr1222746 S22804720 Traveling P22 EBIRD 11.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312038857 2021-05-10 13:35:55.973042 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum N 4 United States US New York US-NY Schuyler US-NY-097 13.0 Catharine Creek WMA--Rock Cabin Rd. L1359885 H 42.369661 -76.8471749 2015-04-22 06:28:00 obsr2173269 S22995765 Traveling P22 EBIRD 51.0 2.414 3.0 1 G1231215 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311235245 2021-03-26 06:29:56.44369 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 16 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park L139800 H 43.0211215 -77.5739871 2015-04-19 08:00:00 obsr137150 S22943868 Traveling P22 EBIRD 130.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319644458 2021-03-26 06:39:43.334073 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-05-14 17:00:00 obsr2796494 S23443699 Traveling P22 EBIRD 75.0 0.322 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288843465 2021-04-01 12:32:15.282601 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-03 10:10:00 obsr964539 S21172896 Traveling P22 EBIRD 89.0 1.609 3.0 1 G1093766 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315334058 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 15 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 05:30:00 obsr2404047 S23200737 Traveling P22 EBIRD 465.0 6.437 2.0 1 G1251451 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293166158 2021-03-01 11:20:54.007808 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-25 15:17:00 obsr1092576 S21536272 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311045023 2021-03-26 07:07:10.758746 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-04-18 09:57:00 obsr155915 S22932311 Traveling P22 EBIRD 27.0 0.805 3.0 1 G1224797 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1068753020 2021-04-01 12:28:06.222372 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 Thomas Corners Road, West Valley, New York L11769835 P 42.4800657 -78.6597855 2015-05-29 08:00:00 obsr2155450 S80675968 Traveling P22 EBIRD 30.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300964406 2021-04-01 10:57:06.520339 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 10 Female, Adult (5); Male, Adult (5) United States US New York US-NY Essex US-NY-031 13.0 Westport Grasslands L2507792 H 44.1497168 -73.4473479 2015-03-04 12:30:00 obsr1016945 S22176561 Traveling P22 EBIRD 180.0 32.187 2.0 1 G1167633 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309351125 2021-12-10 08:21:29.396662 456 species avibase-D201EB72 American Wigeon Mareca americana 3 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-04-11 14:30:00 obsr1502560 S22817254 Traveling P22 EBIRD 45.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314420553 2021-04-01 11:30:42.037277 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 07:00:00 obsr1220115 S23147977 Traveling P22 EBIRD 135.0 2.414 10.0 1 G1244719 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308527452 2018-08-04 17:08:07 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-08 13:25:00 obsr1472872 S22759279 Traveling P22 EBIRD 98.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294936405 2021-04-01 11:24:19.637193 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla N 15 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-02-04 10:40:00 obsr1782363 S21677766 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308284548 2021-04-01 11:30:42.037277 11494 species avibase-20C2214E American Kestrel Falco sparverius N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-07 11:00:00 obsr1353449 S22740617 Traveling P22 EBIRD 240.0 4.828 2.0 1 G1209984 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304094450 2021-03-26 06:29:56.44369 11371 species avibase-75600969 Northern Flicker Colaptes auratus 3 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-19 17:20:00 obsr934639 S22426541 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294101208 2021-04-01 11:24:19.637193 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-01-29 07:41:00 obsr2595828 S21598851 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320558677 2021-03-30 19:13:38.458673 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-17 07:20:00 obsr528918 S23492847 Traveling P22 EBIRD 150.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311784299 2021-03-24 20:33:47.533911 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Tareyton Drive yard L1133152 P 42.4712343 -76.4592433 2015-04-20 17:01:00 obsr1655171 S22979427 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314023556 2021-03-19 16:06:54.047432 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Owasco Lake inlet area L302042 H 42.7542393 -76.4637132 2015-04-29 09:51:00 obsr943683 S23123915 Traveling P22 EBIRD 66.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320114737 2021-11-02 20:32:06.137153 11371 species avibase-75600969 Northern Flicker Colaptes auratus 6 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-16 07:11:00 obsr2683805 S23469929 Traveling P22 EBIRD 240.0 4.828 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298425081 2022-03-05 22:03:50.715584 7429 species avibase-1327AC55 Osprey Pandion haliaetus 6 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-19 11:45:00 obsr2219590 S21976010 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307188554 2021-04-01 11:24:19.637193 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-04-03 12:50:00 obsr934639 S22661402 Traveling P22 EBIRD 58.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318092200 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-10 07:05:00 obsr822430 S23356215 Traveling P22 EBIRD 240.0 4.828 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301571097 2018-08-04 16:58:58 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-03-07 15:39:00 obsr184660 S22222730 Traveling P22 EBIRD 3.0 0.322 4.0 1 G1169098 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312993890 2021-11-15 03:06:58.889978 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-25 13:30:00 obsr1008756 S23059704 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315345929 2021-03-19 16:44:35.607263 505 species avibase-C732CB10 American Black Duck Anas rubripes 6 United States US New York US-NY Monroe US-NY-055 13.0 Whiting Rd. Nature Preserve L524399 H 43.251267 -77.4698353 2015-05-03 06:40:00 obsr302343 S23201356 Traveling P22 EBIRD 170.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309489166 2021-04-01 12:18:57.910168 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom45 L3513987 H 42.3312349 -76.5993162 2015-04-12 14:45:00 obsr71667 S22825622 Stationary P21 EBIRD 15.0 6.0 1 G1216621 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288526042 2021-04-01 12:32:15.282601 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 15 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-02 13:28:00 obsr2394424 S21144713 Traveling P22 EBIRD 84.0 2.414 2.0 1 G1094188 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324938723 2021-03-24 19:48:44.880783 483 species avibase-85625D75 Mallard Anas platyrhynchos N 9 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-30 06:29:00 obsr334398 S23771533 Traveling P22 EBIRD 175.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292731327 2021-03-26 07:20:31.408164 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria 10 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-01-17 07:15:00 obsr1592950 S21501941 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311000798 2021-03-24 20:57:48.241391 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 25 United States US New York US-NY Fulton US-NY-035 13.0 Cline Rd., marsh (east) L1144401 H 43.061062 -74.6492232 2015-04-18 08:36:00 obsr119187 S22929531 Traveling P22 EBIRD 32.0 0.322 3.0 1 G1224392 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307072376 2021-03-26 07:42:06.558742 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 34 United States US New York US-NY Washington US-NY-115 13.0 River Rd., Ft. Miller L2742155 H 43.1343397 -73.5892952 2015-04-02 10:30:00 obsr1731061 S22653131 Traveling P22 EBIRD 240.0 32.186 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291018215 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-01-14 13:30:00 obsr2505956 S21346110 Traveling P22 EBIRD 145.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317403162 2021-04-01 12:32:15.282601 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Plains Preserve L1575568 H 40.7240849 -73.5844534 2015-05-09 05:30:00 obsr2823378 S23317982 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288153062 2015-01-01 12:07:13 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southeast L879238 H 42.4674118 -76.4183235 2015-01-01 10:48:00 obsr887540 S21113677 Traveling P22 EBIRD 75.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324117732 2021-03-26 06:21:54.883933 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 250 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 19:30:00 obsr647628 S23715505 Traveling P22 EBIRD 50.0 0.805 2.0 1 G1297105 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312959331 2021-03-24 19:35:34.045988 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 3 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-25 13:00:00 obsr2096529 S23057583 Traveling P22 EBIRD 300.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300862607 2021-04-01 11:54:40.172593 8773 species avibase-7AA076EF Barred Owl Strix varia 136 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-02 12:20:00 obsr1032565 S22168797 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293318188 2021-03-19 16:12:42.877422 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Columbia US-NY-021 14.0 Austerlitz L207556 P 42.3036668 -73.5189287 2015-01-25 09:00:00 obsr712039 S21547722 Traveling P22 EBIRD 180.0 9.656 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294447274 2021-04-01 11:42:50.317679 447 species avibase-C235A4D7 Gadwall Mareca strepera 3 United States US New York US-NY Oneida US-NY-065 13.0 Pennystreet Road, Griffiss Tech Park L3332797 P 43.24884 -75.42864 2015-02-01 16:12:00 obsr666964 S21637542 Traveling P22 EBIRD 10.0 0.483 1.0 1 G1131983 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320544479 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-17 09:30:00 obsr145923 S23492077 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290084701 2021-10-25 22:39:17.830109 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 25 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 5 Loaves Farm L2932697 H 42.9223276 -78.8966062 2015-01-09 11:00:00 obsr762001 S21270671 Incidental P20 EBIRD 5.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320457117 2021-11-09 18:37:59.539398 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Dutchess US-NY-027 28.0 Dover Plains, Ridge Road L2829089 P 41.69367 -73.60211 2015-05-16 14:45:00 obsr1732267 S23487610 Traveling P22 EBIRD 13.0 1.609 2.0 1 G1277101 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323263170 2021-03-26 07:52:59.845315 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 3 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-22 07:20:00 obsr316199 S23656955 Area P23 EBIRD 75.0 2.59 2.0 1 G1292246 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303792565 2021-11-15 03:06:58.889978 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-17 18:10:00 obsr1555046 S22402958 Traveling P22 EBIRD 60.0 3.219 2.0 1 G1186128 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305450192 2016-10-24 20:34:10 303 species avibase-B59E1863 Canada Goose Branta canadensis 50 United States US New York US-NY Richmond US-NY-085 30.0 Blue Heron Park L300535 H 40.5303351 -74.1774023 2015-03-26 10:00:00 obsr1535951 S22530214 Traveling P22 EBIRD 60.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309659239 2021-03-24 20:33:47.533911 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-04-13 06:54:00 obsr455249 S22837010 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309690308 2015-04-13 10:42:35 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Rensselaer US-NY-083 13.0 Jensis Rd L998226 P 42.5520845 -73.7279069 2015-04-06 19:45:00 obsr489496 S22839791 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303701768 2021-03-26 07:30:35.289997 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 5 United States US New York US-NY Tompkins US-NY-109 13.0 Plantations Restaurant L592633 H 42.4667747 -76.4113913 2015-03-16 17:48:00 obsr1006348 S22395678 Stationary P21 EBIRD 55.0 3.0 1 G1183317 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305243330 2021-03-26 07:56:20.588749 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-03-25 13:40:00 obsr1296638 S22513929 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301295887 2021-04-01 11:15:31.646886 406 species avibase-27B2749A Wood Duck Aix sponsa N X United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-03-06 13:30:00 obsr2448957 S22201120 Traveling P22 EBIRD 270.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302063529 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 24 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-09 08:29:00 obsr1548221 S22261293 Traveling P22 EBIRD 51.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522983 2021-03-26 07:07:10.758746 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Richmond US-NY-085 Lemon Creek Park L508340 H 40.5121298 -74.198581 2015-04-08 08:01:00 obsr155915 S22758876 Traveling P22 EBIRD 5.0 0.483 2.0 1 G1211606 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321344733 2018-08-06 22:30:25 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 1 United States US New York US-NY Essex US-NY-031 US-NY_846 14.0 Marcy Dam L404695 H 44.1587366 -73.9514583 2015-05-17 12:00:00 obsr1995798 S23539566 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309083325 2021-11-09 21:57:40.409598 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Ulster US-NY-111 13.0 The Vly L3554956 P 42.13442 -73.94398 2015-04-11 11:00:00 obsr1446126 S22799847 Traveling P22 EBIRD 90.0 3.219 10.0 1 G1214308 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310834852 2021-03-24 20:16:00.852773 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-18 07:09:00 obsr1958124 S22919044 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292033215 2021-03-19 16:06:54.047432 26890 species avibase-94A44032 European Starling Sturnus vulgaris 30 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.9339927 -76.7278183 2015-01-19 14:00:00 obsr1544235 S21426749 Traveling P22 EBIRD 20.0 8.047 2.0 1 G1116521 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306146046 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 30 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-29 17:23:00 obsr334398 S22582412 Stationary P21 EBIRD 89.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305478332 2021-11-15 03:06:58.889978 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-26 16:00:00 obsr93451 S22532364 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312348953 2019-10-25 15:53:08 681 species avibase-407E2CA8 Common Merganser Mergus merganser 40 United States US New York US-NY St. Lawrence US-NY-089 13.0 old potsdam-parishville rd L1850419 P 44.6508536 -74.9179753 2015-04-23 15:45:00 obsr1016945 S23016857 Incidental P20 EBIRD 2.0 0 G1232951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323282449 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 7 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-05-27 05:10:00 obsr1154 S23658303 Traveling P22 EBIRD 58.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300026860 2021-03-26 07:30:35.289997 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-02-28 10:25:00 obsr2634885 S22105678 Stationary P21 EBIRD 30.0 5.0 1 G1161713 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311175836 2021-11-09 21:48:00.368388 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 3 United States US New York US-NY Ulster US-NY-111 US-NY_1728 28.0 Mohonk Preserve--Shawangunk Ridge (the Gunks) L266133 H 41.7369558 -74.194517 2015-04-12 14:56:00 obsr2700277 S22940298 Incidental P20 EBIRD 1.0 1 G1225664 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290298814 2021-03-24 20:49:55.752669 406 species avibase-27B2749A Wood Duck Aix sponsa 4 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Feeders in Savannah L1790820 P 43.0734788 -76.7648262 2015-01-10 15:15:00 obsr195058 S21288435 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306021098 2019-09-29 09:48:34 6339 species avibase-8535345B Herring Gull Larus argentatus 5 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-03-29 11:00:00 obsr943683 S22573135 Stationary P21 EBIRD 114.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332424307 2021-04-01 11:24:19.637193 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-10 06:35:00 obsr334398 S24314226 Stationary P21 EBIRD 112.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS317277478 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 10:00:00 obsr111994 S23310276 Traveling P22 EBIRD 300.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310070848 2021-03-30 19:07:52.958398 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N X United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-04-14 14:30:00 obsr2448957 S22867027 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871009 2021-03-26 07:56:20.588749 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-09 16:00:00 obsr2218212 S21672025 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320070755 2022-02-17 14:32:23.002448 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-16 07:33:00 obsr1605975 S23467752 Traveling P22 EBIRD 62.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308224710 2021-03-26 06:14:19.776945 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Columbia US-NY-021 13.0 Columbia-Greene Community College L2429955 P 42.2165679 -73.8188553 2015-04-07 08:20:00 obsr481595 S22736278 Traveling P22 EBIRD 115.0 0.322 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316763525 2018-08-04 17:15:05 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-05-07 05:25:00 obsr1154 S23281819 Traveling P22 EBIRD 40.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295937106 2021-11-28 10:15:20.169577 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus N 1 United States US New York US-NY Suffolk US-NY-103 Lake Montauk Inlet L1036512 H 41.076981 -71.937511 2015-02-08 09:32:00 obsr1987335 S21756255 Traveling P22 EBIRD 63.0 0.805 4.0 0 G1142199 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319109041 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 08:30:00 obsr1301982 S23413283 Traveling P22 EBIRD 180.0 2.414 10.0 1 G1251698 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308374274 2021-03-26 06:12:17.833181 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe N 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-04-07 09:00:00 obsr479109 S22747328 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313029820 2021-11-09 18:32:20.227374 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Dutchess US-NY-027 13.0 2122 New Hackensack Road, Poughkeepsie, New York, US (41.66, -73.874) L233101 P 41.6600962 -73.8740462 2015-04-25 09:30:00 obsr842638 S23061764 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310491555 2021-04-01 11:24:19.637193 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Monroe US-NY-055 13.0 North Hamlin Rd. fields L3961448 H 43.3365323 -77.8318002 2015-04-16 13:15:00 obsr408487 S22896155 Traveling P22 EBIRD 5.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313825256 2021-03-26 07:56:20.588749 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-28 09:40:00 obsr2505956 S23111383 Rusty Blackbird Spring Migration Blitz P41 EBIRD 180.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314267120 2021-11-15 03:06:58.889978 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 19 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-30 05:55:00 obsr1135516 S23138956 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288536993 2015-01-02 16:41:33 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-01-02 16:32:00 obsr2485753 S21145776 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291644288 2021-03-24 20:33:47.533911 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southwest L879237 H 42.4634388 -76.4367664 2015-01-18 10:56:00 obsr1696616 S21396830 Traveling P22 EBIRD 82.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313926937 2021-03-26 06:29:56.44369 662 species avibase-FB738385 Bufflehead Bucephala albeola N 2 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-04-28 07:45:00 obsr2449897 S23117891 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311922641 2021-04-01 11:24:19.637193 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Park West L1756090 H 43.1831991 -77.5278997 2015-04-21 18:25:00 obsr1545618 S22988490 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318919674 2018-08-06 22:29:43 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-05-12 06:50:00 obsr2546168 S23402075 Traveling P22 EBIRD 86.0 3.219 2.0 1 G1267336 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295437518 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-02-07 14:00:00 obsr1711339 S21717025 Traveling P22 EBIRD 105.0 1.609 3.0 1 G1138080 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309393145 2021-04-01 12:18:57.910168 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Libe Slope L1483567 H 42.44786 -76.48595 2015-04-12 12:38:00 obsr2211210 S22819736 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303056463 2021-04-01 11:24:19.637193 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 55 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-14 07:35:00 obsr302343 S22345094 Traveling P22 EBIRD 85.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS551523274 2021-11-09 22:04:47.967972 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-02 obsr455725 S40669525 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320978017 2021-03-19 16:00:00.303051 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-18 15:40:00 obsr128156 S23516696 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305076117 2021-11-09 22:33:06.548946 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Sullivan US-NY-105 28.0 Smith Road Rayano feeders L1345731 P 41.8702457 -74.6953253 2015-03-24 12:00:00 obsr444155 S22501085 Stationary P21 EBIRD 15.0 2.0 1 G1191443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321112250 2015-05-18 22:29:07 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-05-18 15:10:00 obsr528918 S23525064 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320615399 2021-11-15 03:06:58.889978 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 11:21:00 obsr1418672 S23495842 Traveling P22 EBIRD 319.0 2.253 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323813347 2021-03-19 16:02:45.308962 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.9026012 2015-05-29 16:04:00 obsr1764243 S23695894 Traveling P22 EBIRD 59.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294786008 2015-02-03 18:13:43 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 960 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-02-03 17:25:00 obsr1958124 S21664969 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304656610 2021-04-01 12:32:15.282601 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Nassau US-NY-059 30.0 Lister Park L444840 H 40.6546376 -73.6543393 2015-03-22 10:30:00 obsr2505956 S22468712 Rusty Blackbird Spring Migration Blitz P41 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316474015 2021-04-01 11:15:31.646886 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-06 06:15:00 obsr2499879 S23264932 Traveling P22 EBIRD 300.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323193746 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-26 17:37:00 obsr152435 S23652553 Traveling P22 EBIRD 50.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322465395 2021-03-26 06:09:25.361188 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-05-24 10:17:00 obsr1092576 S23607683 Traveling P22 EBIRD 22.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313738004 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 07:00:00 obsr1668936 S23105864 Traveling P22 EBIRD 144.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288261076 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 33 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-01-01 08:00:00 obsr1135516 S21122724 Traveling P22 EBIRD 120.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315000906 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:05:00 obsr2519357 S23182505 Traveling P22 EBIRD 120.0 2.414 3.0 1 G1245777 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307676774 2021-03-19 16:32:34.732091 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 25 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 08:16:00 obsr2692140 S22696014 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316215258 2016-05-14 19:56:23 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 United States US New York US-NY Monroe US-NY-055 13.0 Mt. Hope Cemetery L249453 H 43.1287817 -77.6206675 2015-05-05 16:35:00 obsr2065230 S23250416 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302661609 2021-03-23 17:15:00.080143 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-03-06 16:40:00 obsr1721609 S22314067 Stationary P21 EBIRD 36.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307356760 2021-03-30 19:22:51.561415 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Queens US-NY-081 30.0 Brookville Park L2687495 H 40.6629513 -73.7429361 2015-04-04 07:20:00 obsr2574755 S22673741 Traveling P22 EBIRD 43.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313404429 2021-04-01 11:58:54.966271 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY St. Lawrence US-NY-089 13.0 SLU Campus L2183682 P 44.5897948 -75.1596165 2015-04-26 14:00:00 obsr2056110 S23084964 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305988386 2021-03-30 19:19:56.775388 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 1 United States US New York US-NY Ontario US-NY-069 13.0 Victor L122440 T 42.98256 -77.40891 2015-03-29 08:00:00 obsr2206278 S22570807 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292627831 2015-02-21 22:33:12 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons 1 United States US New York US-NY Broome US-NY-007 28.0 48 Smith Hill Rd L2230271 P 42.148777 -75.9197693 2015-02-13 21:06:00 obsr1976894 S21494080 Stationary P21 EBIRD 600.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296924818 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N X United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-14 14:10:00 obsr150415 S21842274 Traveling P22 EBIRD 60.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315263841 2021-11-09 19:01:40.008558 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-03 08:00:00 obsr1433400 S23197260 Traveling P22 EBIRD 105.0 2.897 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291635936 2021-04-01 11:24:19.637193 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 7 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-16 08:30:00 obsr1782363 S21396131 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310349308 2017-04-15 20:22:11 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip E L3559835 P 40.093967 -72.878533 2015-04-11 12:00:00 obsr155915 S22886043 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221332 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS317035038 2021-03-19 16:08:39.161312 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Chautauqua US-NY-013 13.0 Long Point SP, Chautauqua Lake L2138384 H 42.1732349 -79.4142671 2015-05-06 19:15:00 obsr2418 S23297082 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293872534 2021-03-24 19:48:44.880783 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 17 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-01-29 07:50:00 obsr334398 S21592667 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306907921 2021-04-01 10:55:39.308231 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 1 United States US New York US-NY Erie US-NY-029 13.0 Delaware Park--Rumsey Woods L1348448 H 42.9307931 -78.8698229 2015-04-02 08:00:00 obsr736608 S22640388 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303270848 2015-03-15 14:11:08 11371 species avibase-75600969 Northern Flicker Colaptes auratus 3 United States US New York US-NY Oneida US-NY-065 13.0 US-NY-Rome-7001 Lock Rd L3489975 P 43.202497 -75.613245 2015-03-15 13:55:00 obsr1828453 S22361529 Stationary P21 EBIRD 4.0 2.0 1 G1180592 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310217347 2015-04-15 13:18:09 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 14 United States US New York US-NY Broome US-NY-007 28.0 Harold Moore Park L1464971 H 42.099743 -76.0129688 2015-04-15 09:03:00 obsr879105 S22877002 Traveling P22 EBIRD 15.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314706924 2021-03-19 16:44:35.607263 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-01 17:10:00 obsr749440 S23165672 Traveling P22 EBIRD 58.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297036355 2015-02-15 10:27:13 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY Suffolk US-NY-103 30.0 US-NY-Wading River-85 20th St L3029005 P 40.957156 -72.809895 2015-02-15 10:20:00 obsr1006926 S21851791 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306764979 2022-02-17 14:32:23.002448 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-01 09:10:00 obsr1605975 S22629781 Traveling P22 EBIRD 200.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS638264165 2021-03-26 06:17:19.712573 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo--Mirror Lake L2809120 H 42.9268351 -78.8632295 2015-05-17 obsr219053 S47080565 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314831441 2021-03-19 16:14:11.035882 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 6 United States US New York US-NY Cortland US-NY-023 28.0 AviCor24 L3513966 H 42.634037 -76.1144502 2015-05-02 05:51:00 obsr620377 S23173427 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310302682 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-12 14:15:00 obsr968874 S22882754 Traveling P22 EBIRD 120.0 6.437 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307512880 2021-03-26 07:43:12.52294 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Wayne US-NY-117 13.0 2155 Evergreen Circle, Ontario, NY L1847173 P 43.2480127 -77.2772876 2015-04-04 16:30:00 obsr2914424 S22684579 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295469473 2022-02-17 14:32:23.002448 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-07 13:15:00 obsr1152226 S21719701 Traveling P22 EBIRD 105.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315941064 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 15:30:00 obsr2750470 S23233817 Traveling P22 EBIRD 180.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303617827 2021-04-01 12:32:15.282601 7200 species avibase-49D9148A Great Egret Ardea alba 100 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Long Beach Park L1185681 H 40.5834529 -73.670969 2015-03-16 15:15:00 obsr2053730 S22389352 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294504837 2021-09-08 17:22:56.334642 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Oswego US-NY-075 13.0 Home L9190121 P 43.6053848 -76.1471608 2015-02-01 16:10:00 obsr193855 S21642100 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295165476 2021-03-26 06:55:00.227271 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Ontario US-NY-069 13.0 yard - 5030 Butler Rd. L824954 P 42.8530016 -77.2913074 2015-02-06 08:15:00 obsr983655 S21695052 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307830661 2021-03-26 07:52:40.224846 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-04-05 13:11:00 obsr1708031 S22706986 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316686236 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-06 14:15:00 obsr30103 S23277423 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312458736 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-16 07:25:00 obsr1601967 S23024425 Traveling P22 EBIRD 360.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312853667 2015-06-02 17:49:59 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 3 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Sour Springs Rd. (Genesee Co.) L153399 H 43.125275 -78.37028 2015-04-24 16:45:00 obsr303203 S23051302 Traveling P22 EBIRD 15.0 2.414 2.0 1 G1235232 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310837031 2021-03-23 17:18:00.959502 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 5 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-04-18 06:22:00 obsr1154 S22919190 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319906374 2021-03-26 07:56:20.588749 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-15 11:45:00 obsr2008637 S23458422 Traveling P22 EBIRD 135.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296060377 2015-02-10 22:16:34 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Delaware US-NY-025 28.0 Quail Ridge Area L2327396 P 42.2085425 -74.587276 2015-02-01 08:50:00 obsr883142 S21765991 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310770519 2021-11-09 20:06:29.536516 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon N 1 United States US New York US-NY Orange US-NY-071 28.0 Fancher Davidge Park L4424296 H 41.4575972 -74.4327749 2015-04-17 19:30:00 obsr1544235 S22914891 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320639460 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 10:00:00 obsr2361317 S23497164 Traveling P22 EBIRD 120.0 3.219 2.0 1 G1275423 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292780628 2015-01-23 17:04:32 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 50 United States US New York US-NY Yates US-NY-123 13.0 Branchport L635753 P 42.6006091 -77.1559525 2015-01-23 09:45:00 obsr195058 S21505903 Stationary P21 EBIRD 25.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323875124 2021-04-01 11:24:19.637193 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-05-29 20:03:00 obsr934639 S23700019 Stationary P21 EBIRD 35.0 2.0 1 G1337404 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000186 2021-03-26 07:56:20.588749 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 12 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-01 09:00:00 obsr2218212 S23775898 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303573695 2021-03-30 19:29:33.633096 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 34 United States US New York US-NY Suffolk US-NY-103 30.0 Southaven County Park L472010 P 40.8064684 -72.8892231 2015-01-19 09:25:00 obsr395994 S22385889 Traveling P22 EBIRD 35.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288808839 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 15 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Plains Preserve L1575568 H 40.7240849 -73.5844534 2015-01-03 11:05:00 obsr904434 S21167803 Traveling P22 EBIRD 30.0 1.287 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311849539 2015-04-21 14:18:57 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-21 06:57:00 obsr72341 S22983858 Stationary P21 EBIRD 78.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312844094 2018-08-04 17:12:14 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.7628129 2015-04-25 14:00:00 obsr2214649 S23050724 Traveling P22 EBIRD 69.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS395739858 2016-04-27 17:30:58 242 species avibase-D3A260BC Snow Goose Anser caerulescens 3 United States US New York US-NY Erie US-NY-029 13.0 East Hill L1537450 P 42.65489 -78.70496 2015-05-10 08:26:00 obsr1905321 S29245592 Traveling P22 EBIRD 45.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296311479 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-12 15:50:00 obsr934639 S21787590 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305897648 2021-04-01 11:54:40.172593 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 Male, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-28 16:19:00 obsr1032565 S22564104 Traveling P22 EBIRD 113.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290199672 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-10 08:30:00 obsr1407710 S21280025 Traveling P22 EBIRD 300.0 4.828 3.0 1 G1103277 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302421444 2018-08-04 16:59:18 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-03-11 09:29:00 obsr1165633 S22295805 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309202855 2021-01-26 11:54:44.804994 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-11 17:57:00 obsr606693 S22807667 Traveling P22 EBIRD 14.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323194317 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-24 10:00:00 obsr90751 S23652581 Traveling P22 EBIRD 120.0 4.828 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323735231 2021-11-09 18:39:19.906387 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Dutchess US-NY-027 28.0 Pawling, Tracy Road L2858253 P 41.57534 -73.5599 2015-05-29 08:07:00 obsr1732267 S23690601 Traveling P22 EBIRD 53.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312563195 2021-04-01 11:54:40.172593 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas N X United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-24 14:30:00 obsr1958124 S23032028 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288980700 2022-02-17 14:32:23.002448 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-04 07:41:00 obsr2404047 S21183354 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311185064 2021-03-30 03:50:45.179409 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Farm L137715 P 41.0795555 -72.4394913 2015-04-19 09:34:00 obsr2485753 S22940913 Traveling P22 EBIRD 48.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295766315 2015-02-09 11:02:37 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Washington US-NY-115 13.0 Granville L131798 T 43.4078712 -73.259552 2015-02-09 06:30:00 obsr2196530 S21742511 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321734167 2021-11-09 18:47:56.584479 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Dutchess US-NY-027 14.0 Sharon Station Rd US-NY-Amenia-241 County Rd 1 L3661701 P 41.885017 -73.516182 2015-05-21 15:01:00 obsr1442681 S23563372 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304850395 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-03-23 08:20:00 obsr1245041 S22482916 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290255618 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-01-10 14:30:00 obsr2448957 S21284984 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312109739 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-21 19:00:00 obsr2072398 S23000688 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1231680 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313913826 2017-09-09 13:29:46 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 NE C4 NE United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail, Sherwood Pltform base - West Trail (0.137km) L1369671 P 42.4793682 -76.4546071 2015-04-28 16:51:00 obsr2307843 S23117091 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293963973 2018-08-04 16:55:24 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-01-29 10:55:00 obsr1079517 S21599634 Area P23 EBIRD 30.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296799248 2021-04-01 12:32:15.282601 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-14 08:30:00 obsr876649 S21831158 Traveling P22 EBIRD 145.0 6.437 6.0 1 G1145831 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308013453 2015-04-06 13:38:34 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Farm L137715 P 41.0795555 -72.4394913 2015-04-06 13:17:00 obsr2485753 S22720085 Traveling P22 EBIRD 20.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296796057 2021-04-01 11:54:40.172593 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 3 United States US New York US-NY Richmond US-NY-085 Joline Ave. Beach L1340805 H 40.5011224 -74.2331594 2015-02-14 10:04:00 obsr1958124 S21830898 Stationary P21 EBIRD 6.0 2.0 1 G1145904 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291649586 2021-04-01 12:32:15.282601 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-18 07:30:00 obsr2207991 S21397284 Traveling P22 EBIRD 60.0 0.322 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319559320 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-14 11:40:00 obsr2595828 S23438991 Traveling P22 EBIRD 45.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310235041 2016-09-15 22:03:48 337 species avibase-694C127A Mute Swan Cygnus olor 4 Male, Adult (4) United States US New York US-NY Allegany US-NY-003 28.0 5541 Jericho Hill Rd L2230290 P 42.2385979 -77.7931671 2015-04-14 09:15:00 obsr2911979 S22878118 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318292379 2021-03-30 19:13:38.458673 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 15 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-10 10:20:00 obsr983655 S23366719 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302657258 2021-03-30 19:37:33.521815 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 25 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-03-09 15:17:00 obsr1721609 S22313761 Stationary P21 EBIRD 49.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311424802 2021-03-26 06:29:56.44369 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 4 United States US New York US-NY Monroe US-NY-055 13.0 744 Plank Rd., Penfield, NY L747676 P 43.1829034 -77.4731022 2015-04-19 15:30:00 obsr1545618 S22955500 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423153 2021-04-01 11:24:19.637193 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-24 12:28:00 obsr1846130 S24163340 Traveling P22 EBIRD 378.0 9.656 4.0 1 G1337409 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289314174 2021-03-30 19:13:38.458673 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Monroe US-NY-055 13.0 Turning Point Park to O'Rourke Bridge L3268746 P 43.2396381 -77.6143312 2015-01-05 10:00:00 obsr2504709 S21209263 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312814527 2021-04-01 11:15:31.646886 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 07:25:00 obsr1407710 S23049098 Traveling P22 EBIRD 349.0 5.633 18.0 1 G1235092 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291401527 2021-03-30 19:13:38.458673 26890 species avibase-94A44032 European Starling Sturnus vulgaris 15 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-17 08:00:00 obsr991026 S21377336 Stationary P21 EBIRD 43.0 1.0 1 G1114599 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303025690 2019-07-23 17:27:57 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-14 10:17:00 obsr1092576 S22342527 Stationary P21 EBIRD 45.0 2.0 1 G1182540 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312500298 2018-08-04 17:11:51 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Oswego US-NY-075 US-NY_768 13.0 Three Mile Bay WMA--Phillips Pt. L298675 H 43.2392316 -76.0503864 2015-04-23 05:45:00 obsr979921 S23027236 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298978058 2015-11-05 11:19:11 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 105 Eastern Heights Dr., Ithaca L2724192 P 42.425089 -76.455526 2015-02-22 14:00:00 obsr1318356 S22022472 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300026866 2021-03-26 07:30:35.289997 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 10 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-02-28 10:25:00 obsr1227417 S22105679 Stationary P21 EBIRD 30.0 5.0 1 G1161713 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309433974 2021-03-26 06:59:15.841579 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 4 United States US New York US-NY Oswego US-NY-075 13.0 Potter Bay L1152616 P 43.2321969 -75.8889627 2015-04-12 11:27:00 obsr1842004 S22822000 Stationary P21 EBIRD 10.0 1.0 1 G1215939 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308955334 2021-03-26 06:29:56.44369 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Monroe US-NY-055 13.0 near pond at Mill Landing L2103068 P 43.235551 -77.702571 2015-04-08 10:00:00 obsr1721347 S22791287 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322580268 2018-08-06 22:31:00 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Greene US-NY-039 28.0 Mountain Top Arboretum L919375 P 42.2222092 -74.1346586 2015-05-24 08:00:00 obsr2978565 S23613940 Traveling P22 EBIRD 195.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311964064 2021-11-09 19:21:07.406501 11528 species avibase-F3DA111C Merlin Falco columbarius 1 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-04-21 07:30:00 obsr671490 S22991292 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313632331 2021-04-01 11:15:31.646886 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-27 16:15:00 obsr1659461 S23099014 Traveling P22 EBIRD 180.0 4.828 3.0 1 G1240494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307824564 2022-02-17 14:32:23.002448 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-04 11:30:00 obsr1152226 S22706535 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS321148683 2018-08-06 22:30:32 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 My Yard & lower Barent Winne Rd. L1275103 P 42.5497407 -73.7620354 2015-05-19 05:35:00 obsr1154 S23527800 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320359161 2021-03-26 07:52:59.845315 5923 species avibase-15369E8E Dunlin Calidris alpina 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-16 17:30:00 obsr1000124 S23482301 Area P23 EBIRD 150.0 2.59 1.0 1 G1274062 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296885919 2021-03-23 17:22:05.708166 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 1 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-02-14 07:00:00 obsr2694889 S21838939 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315761759 2021-04-01 11:15:31.646886 32476 issf avibase-46C33764 Eastern Meadowlark Sturnella magna Eastern Meadowlark (Eastern) Sturnella magna [magna Group] N 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-04 10:00:00 obsr263005 S23223925 Traveling P22 EBIRD 165.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298189978 2021-04-01 11:30:42.037277 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-02-18 08:55:00 obsr259298 S21955179 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292501625 2021-04-01 11:15:31.646886 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 750 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-01-21 14:44:00 obsr187432 S21483971 Stationary P21 EBIRD 113.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310609324 2021-03-24 19:27:13.077399 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 7 United States US New York US-NY Chemung US-NY-015 28.0 Harris Hill Park L164401 H 42.12472 -76.8983 2015-04-17 08:40:00 obsr1828453 S22904309 Traveling P22 EBIRD 17.0 1.127 3.0 1 G1222661 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322295118 2021-03-23 17:18:00.959502 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Albany US-NY-001 13.0 Stanton Pond L273495 H 42.5094164 -73.9012973 2015-05-23 17:43:00 obsr1154 S23597824 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290157716 2015-01-10 11:28:45 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-01-10 10:43:00 obsr2485753 S21276488 Traveling P22 EBIRD 44.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316670176 2016-12-29 19:37:31 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-05-06 18:48:00 obsr2270510 S23276504 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313551253 2021-03-26 07:53:57.664705 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe X United States US New York US-NY Livingston US-NY-051 13.0 Avon DEC L1279462 P 42.9022052 -77.6699013 2015-04-27 12:30:00 obsr72341 S23093827 Traveling P22 EBIRD 75.0 2.334 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309396814 2018-02-01 15:11:46 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor9 L3513951 H 42.73125 -76.0049915 2015-04-12 11:18:00 obsr1318356 S22819942 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291080444 2021-03-23 17:22:05.708166 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-12 08:55:00 obsr316199 S21351253 Area P23 EBIRD 70.0 2.59 2.0 1 G1109825 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313245388 2021-03-23 16:48:08.60516 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-26 11:10:00 obsr572503 S23074584 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312940643 2021-03-24 19:24:40.212356 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 16:02:00 obsr1655171 S23056438 Stationary P21 EBIRD 75.0 3.0 1 G1240632 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302594916 2021-04-01 12:41:58.738824 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-03-11 18:19:00 obsr2173269 S22309333 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317119154 2021-03-30 19:13:38.458673 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-05-08 09:22:00 obsr2595828 S23301801 Traveling P22 EBIRD 50.0 0.322 2.0 1 G1257533 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292855613 2021-03-26 07:52:59.845315 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-23 07:23:00 obsr316199 S21511841 Area P23 EBIRD 93.0 2.59 2.0 1 G1120672 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304862840 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-23 08:45:00 obsr2793388 S22483979 Traveling P22 EBIRD 130.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324177603 2021-03-26 07:53:57.664705 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Livingston US-NY-051 13.0 Sanctuary L2153388 P 42.7294005 -77.7443326 2015-05-28 16:30:00 obsr2399151 S23719294 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305297533 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field, Kings Co. L1341687 P 40.5925957 -73.8870594 2015-03-25 12:30:00 obsr827632 S22518167 Traveling P22 EBIRD 120.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294934029 2021-03-26 06:55:00.227271 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Ontario US-NY-069 13.0 2042 Buffalo St. MY YARD L588940 P 42.8875365 -77.1006775 2015-02-04 15:00:00 obsr354090 S21677604 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311450680 2021-03-26 07:07:10.758746 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-19 16:55:00 obsr1958124 S22957077 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312858497 2021-03-23 17:15:00.080143 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP, Sodus L712218 H 43.2673188 -77.0297813 2015-04-25 08:07:00 obsr278057 S23051557 Traveling P22 EBIRD 135.0 1.931 13.0 1 G1235657 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321355387 2018-08-06 22:28:59 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Erie US-NY-029 13.0 Counterfeiters Ledge Preserve L123089 H 43.02444 -78.48139 2015-05-05 08:53:00 obsr2588479 S23540196 Traveling P22 EBIRD 61.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308139629 2021-04-01 12:14:19.266649 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Fire Island--Wilderness East L253315 H 40.7325463 -72.8669289 2015-04-06 09:00:00 obsr1592950 S22729370 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295638915 2021-03-24 21:12:31.336509 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Tioga US-NY-107 28.0 Tioga County L3344978 P 42.2410195 -76.2180805 2015-02-08 10:48:00 obsr1626739 S21733199 Traveling P22 EBIRD 68.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309499605 2018-08-04 17:08:55 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 2 United States US New York US-NY Oneida US-NY-065 13.0 Oneida Creek L3544087 P 43.16167 -75.727 2015-04-12 14:13:00 obsr1640315 S22826384 Traveling P22 EBIRD 15.0 1.207 1.0 1 G1216677 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294665308 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-28 07:30:00 obsr324709 S21654935 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315841070 2021-11-09 18:56:49.988387 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 3 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies L428335 H 41.7861111 -73.7397222 2015-05-03 07:00:00 obsr1835267 S23228131 Traveling P22 EBIRD 150.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317201193 2021-03-30 19:13:38.458673 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 28 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-08 06:32:00 obsr334398 S23305985 Traveling P22 EBIRD 156.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298879364 2021-03-26 06:29:56.44369 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 9 United States US New York US-NY Monroe US-NY-055 13.0 Backyard Webster Village L2521930 P 43.203862 -77.427156 2015-02-21 07:30:00 obsr302343 S22014444 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309148779 2018-08-04 17:08:36 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 9 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-11 16:30:00 obsr455249 S22803967 Traveling P22 EBIRD 12.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292643839 2021-03-26 06:29:56.44369 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-22 15:12:00 obsr934639 S21495115 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304758619 2017-08-16 16:53:48 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Tobay Beach Park L1060282 H 40.6113752 -73.4314372 2015-03-22 15:10:00 obsr2206421 S22476365 Stationary P21 EBIRD 10.0 2.0 1 G1189342 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314993892 2015-05-02 16:11:39 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 5 United States US New York US-NY Chemung US-NY-015 28.0 Tanglewood Nature Center--Personius Woods L826647 H 42.1149378 -76.8878603 2015-05-02 10:03:00 obsr1334267 S23182130 Traveling P22 EBIRD 78.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301876368 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-03-08 11:00:00 obsr2448957 S22247229 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308201990 2021-03-26 07:30:35.289997 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-06 17:16:00 obsr1092576 S22734516 Traveling P22 EBIRD 38.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290427839 2022-02-04 06:14:13.892644 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-01-11 09:41:00 obsr1801902 S21298672 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312564476 2021-03-30 19:39:10.250398 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 13 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-04-24 12:00:00 obsr247620 S23032157 Traveling P22 EBIRD 120.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305587382 2021-03-19 16:44:35.607263 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-03-27 10:25:00 obsr2914424 S22540721 Traveling P22 EBIRD 82.0 2.414 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299788173 2018-08-04 16:58:19 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Essex US-NY-031 13.0 Tin Pan Alley L3437247 P 43.834301 -73.42659 2015-02-26 17:03:00 obsr2693145 S22087193 Stationary P21 EBIRD 7.0 2.0 1 G1160681 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306415219 2015-03-30 21:17:37 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Monroe US-NY-055 13.0 Webster Park L164450 H 43.2575016 -77.4515302 2015-03-28 09:00:00 obsr1995798 S22602970 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309123402 2021-11-09 21:50:48.44865 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo N X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-11 08:00:00 obsr2862523 S22802282 Traveling P22 EBIRD 80.0 2.414 30.0 1 G1214172 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311369020 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 30 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.8929476 2015-04-19 12:50:00 obsr1348614 S22952039 Traveling P22 EBIRD 167.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308616553 2021-03-23 16:39:03.255227 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Richmond US-NY-085 30.0 Goethals Bridge Pond--Observation Platform L884460 H 40.6281787 -74.1741575 2015-04-09 09:08:00 obsr1958124 S22765916 Stationary P21 EBIRD 8.0 2.0 1 G1212590 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297621948 2022-02-17 14:32:23.002448 303 species avibase-B59E1863 Canada Goose Branta canadensis 25 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-16 13:36:00 obsr152435 S21904601 Traveling P22 EBIRD 74.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292874625 2021-04-01 11:54:40.172593 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 Male, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-01-22 13:40:00 obsr1032565 S21513283 Traveling P22 EBIRD 115.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308805131 2021-03-24 19:23:17.886063 32666 species avibase-5110842F Baltimore Oriole Icterus galbula X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-04-03 obsr1395007 S22780569 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319932550 2018-08-06 22:29:27 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor3 L3513944 H 42.6877445 -75.901219 2015-05-09 10:17:00 obsr2535282 S23459886 Stationary P21 EBIRD 27.0 2.0 1 G1272246 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290297994 2015-01-10 20:58:54 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 New St. Overlook Park L2595921 H 42.7756979 -73.695478 2015-01-10 16:00:00 obsr1201479 S21288356 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295525609 2019-01-07 15:28:32 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-02-08 10:17:00 obsr2497657 S21724212 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312358341 2021-03-24 19:27:13.077399 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-04-23 09:15:00 obsr142874 S23017494 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289172983 2018-08-04 16:52:46 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Buttermilk Falls SP--Upper L697854 H 42.4026874 -76.5109992 2015-01-04 15:45:00 obsr2137468 S21198397 Traveling P22 EBIRD 82.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292937181 2021-06-13 05:18:24.710376 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Kings US-NY-047 30.0 Wyckoff Street Home L903070 P 40.683806 -73.9857732 2015-01-24 11:03:00 obsr2883698 S21518364 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312383697 2022-03-05 22:03:50.715584 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-23 15:30:00 obsr444155 S23019364 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295471952 2021-03-24 20:33:47.533911 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-02-01 11:19:00 obsr2683910 S21719902 Stationary P21 EBIRD 17.0 2.0 1 G1138397 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761641 2021-03-26 07:56:20.588749 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-20 09:00:00 obsr2218212 S22629530 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323084741 2020-12-14 15:56:49.243642 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Lewis US-NY-049 13.0 Location H L4611970 P 43.940282 -75.401446 2015-05-25 20:10:00 obsr417887 S23645475 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315067306 2021-03-24 20:58:53.646623 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-02 06:20:00 obsr72341 S23186272 Stationary P21 EBIRD 700.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301987573 2021-03-30 19:39:10.250398 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-03-09 09:30:00 obsr369788 S22255311 Traveling P22 EBIRD 90.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000984 2021-03-26 07:56:20.588749 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-16 09:00:00 obsr2218212 S23775923 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303998055 2015-05-07 17:07:24 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-03-19 07:11:00 obsr455249 S22418714 Traveling P22 EBIRD 16.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318190240 2020-03-15 09:14:53 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-10 10:00:00 obsr2537615 S23361206 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310467951 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-16 14:00:00 obsr1693806 S22894199 Traveling P22 EBIRD 30.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307287806 2021-04-01 10:53:25.818871 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 7 United States US New York US-NY Cortland US-NY-023 28.0 Marathon Village - Vicinity L2511078 P 42.4415744 -76.0321712 2015-04-01 18:20:00 obsr931232 S22668601 Traveling P22 EBIRD 20.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310448637 2018-08-04 17:09:24 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Ponquogue Bridge L593299 H 40.8400478 -72.4976635 2015-04-16 08:00:00 obsr1864342 S22892788 Traveling P22 EBIRD 45.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299354090 2021-04-01 12:14:19.266649 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-02-24 09:15:00 obsr1488063 S22054013 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320561310 2021-04-01 11:30:42.037277 6616 species avibase-7E022378 Common Loon Gavia immer 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-15 05:30:00 obsr150865 S23492982 Traveling P22 EBIRD 252.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291934280 2018-08-04 16:54:02 11371 species avibase-75600969 Northern Flicker Colaptes auratus 10 United States US New York US-NY Richmond US-NY-085 30.0 Neck Creek Preserve L958581 H 40.5964133 -74.1930269 2015-01-19 12:37:00 obsr1893950 S21418782 Stationary P21 EBIRD 7.0 3.0 1 G1115740 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313045227 2021-03-23 17:00:13.087107 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom33 L3513975 H 42.3289943 -76.28706 2015-04-26 06:54:00 obsr620377 S23062806 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298246698 2021-03-26 07:30:35.289997 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Tompkins US-NY-109 13.0 101 Warwick Place Ithaca, NY L3396904 P 42.4743068 -76.4787054 2015-02-13 06:54:00 obsr2410601 S21960154 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313796337 2021-03-26 06:17:19.712573 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Feeder Area L424961 P 42.7607926 -78.8063961 2015-04-28 13:00:00 obsr2083851 S23109513 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296930718 2021-11-09 18:27:18.485647 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 1 United States US New York US-NY Dutchess US-NY-027 13.0 Kimlin Cider Mill L1938526 P 41.666292 -73.904171 2015-02-14 08:00:00 obsr932528 S21842711 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307687569 2021-03-19 16:32:34.732091 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-05 09:57:00 obsr152435 S22696744 Traveling P22 EBIRD 117.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316697984 2021-03-26 06:29:56.44369 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-05-06 16:40:00 obsr934639 S23278077 Traveling P22 EBIRD 70.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298703042 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-02-21 07:04:00 obsr259298 S21999889 Stationary P21 EBIRD 69.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306111202 2021-04-26 04:57:02.963704 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-28 11:49:00 obsr2404047 S22579734 Traveling P22 EBIRD 240.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288526268 2018-08-04 16:52:31 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea X United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-01-02 14:29:00 obsr488746 S21144737 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313493857 2021-03-19 16:29:59.503892 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 1 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-04-27 11:10:00 obsr1302604 S23090466 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316316381 2021-03-19 16:27:31.421791 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Genesee US-NY-037 US-NY_2802 13.0 Bergen Swamp--Hessenthaler Trail L732710 H 43.0938068 -78.0246663 2015-05-05 13:47:00 obsr408487 S23256399 Traveling P22 EBIRD 99.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298468733 2021-03-23 17:26:08.495143 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-19 14:10:00 obsr916370 S21979912 Traveling P22 EBIRD 110.0 2.092 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302496092 2021-04-01 11:24:19.637193 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-11 10:10:00 obsr1376838 S22301209 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311825678 2021-09-12 21:01:20.335007 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-19 09:33:00 obsr2683910 S22982378 Traveling P22 EBIRD 20.0 0.322 2.0 1 G1230118 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316095930 2021-03-19 16:19:20.977326 26278 species avibase-A381417F House Wren Troglodytes aedon 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-05 09:34:00 obsr2939916 S23243024 Traveling P22 EBIRD 183.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307193672 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-03 10:30:00 obsr1135516 S22661738 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312931286 2021-03-23 17:15:00.080143 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP, Sodus L712218 H 43.2673188 -77.0297813 2015-04-25 08:07:00 obsr2827982 S23055769 Traveling P22 EBIRD 135.0 1.931 13.0 1 G1235657 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300271169 2021-11-15 03:06:58.889978 7200 species avibase-49D9148A Great Egret Ardea alba N 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-27 08:34:00 obsr1548221 S22125724 Traveling P22 EBIRD 38.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293104516 2021-04-01 12:14:19.266649 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 7 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-01-22 15:30:00 obsr105122 S21531512 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320715083 2021-11-15 03:06:58.889978 431 species avibase-90E2543E Blue-winged Teal Spatula discors 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 11:30:00 obsr1706920 S23501093 Area P23 EBIRD 220.0 14.5687 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289626349 2021-03-26 08:11:28.0353 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Stillwater, NY 52 county route 76 L1926398 P 42.933103 -73.680332 2015-01-07 08:19:00 obsr2564462 S21234143 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306079052 2021-11-15 03:06:58.889978 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-29 14:15:00 obsr1555046 S22577230 Traveling P22 EBIRD 45.0 0.805 3.0 1 G1208369 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315847405 2015-10-09 17:23:51 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 1 United States US New York US-NY Albany US-NY-001 13.0 Guilderland, NY L1819771 P 42.6970288 -73.8770027 2015-05-04 16:45:00 obsr30103 S23228510 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303329806 2015-03-15 17:12:42 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Seneca US-NY-099 13.0 SEN-3-SenecaLkSPEast L823512 P 42.8697997 -76.9406891 2015-03-15 09:20:00 obsr278057 S22366407 Stationary P21 EBIRD 20.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314248849 2021-03-19 16:00:00.303051 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--The Meadow and adj. woodland L1816634 H 40.8628317 -73.7972195 2015-04-29 17:50:00 obsr538462 S23137706 Traveling P22 EBIRD 30.0 0.7 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299125424 2022-02-17 14:32:23.002448 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 7 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-22 10:20:00 obsr2363365 S22036333 Traveling P22 EBIRD 160.0 1.287 2.0 1 G1157283 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310544412 2021-03-24 20:58:53.646623 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-16 11:30:00 obsr72341 S22899935 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306591662 2021-03-19 16:12:42.877422 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 16 United States US New York US-NY Columbia US-NY-021 13.0 Harrier Hill Park, Rod and Gun Road, Hudson L3222634 P 42.365025 -73.784759 2015-03-31 16:00:00 obsr349211 S22616959 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305710795 2018-08-04 17:03:44 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Steuben US-NY-101 28.0 Whitesville Rod and Gun L3519269 P 42.0805386 -77.7231646 2015-03-27 11:55:00 obsr2700440 S22550091 Traveling P22 EBIRD 5.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307836022 2021-11-09 21:41:38.795423 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-04-05 08:00:00 obsr1588136 S22707328 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314273109 2021-03-23 16:30:20.514143 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Mexico-192 Sage Creek Dr L3572034 P 43.52566 -76.238123 2015-04-30 06:44:00 obsr1351949 S23139360 Traveling P22 EBIRD 55.0 1.609 2.0 1 G5326508 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321498312 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Monroe US-NY-055 13.0 Tinker Nature Park L946685 H 43.0670694 -77.57339 2015-05-20 07:40:00 obsr1534851 S23548938 Traveling P22 EBIRD 60.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290243148 2021-03-30 19:29:33.633096 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point SP L109151 H 41.0719093 -71.8838119 2015-01-10 09:00:00 obsr706483 S21283963 Traveling P22 EBIRD 200.0 6.437 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295294640 2015-02-07 23:04:17 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 6 United States US New York US-NY Delaware US-NY-025 28.0 NY, Del, 3991 Betty Brook Road L3343067 P 42.3992857 -74.7326826 2015-02-06 12:30:00 obsr1885846 S21705609 Stationary P21 EBIRD 5.0 3.0 1 G1138453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS689747170 2021-09-24 21:32:49.405763 7346 species avibase-D4540F88 Glossy Ibis Plegadis falcinellus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 obsr1927179 S50972757 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281405 2021-03-26 06:29:56.44369 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 4 United States US New York US-NY Monroe US-NY-055 13.0 stakeout Yellow-headed Blackbird, Jeffords Rd., Rush (2015) L3304693 H 43.00988 -77.62134 2015-01-21 08:05:00 obsr2914424 S21445875 Stationary P21 EBIRD 135.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306350256 2022-02-04 06:14:13.892644 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 7 Female, Adult (3); Male, Adult (4) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-03-27 16:00:00 obsr1289811 S22597874 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295529315 2018-08-04 16:55:53 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 50 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Aurora-1849 Honoco Rd L3346401 P 42.709315 -76.702003 2015-02-08 09:42:00 obsr2871406 S21724504 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1138935 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313101150 2015-04-26 11:38:08 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Oswego US-NY-075 13.0 Oswego County Airport--Howard Rd. L1814858 H 43.3553061 -76.3795964 2015-04-25 14:30:00 obsr877361 S23066192 Stationary P21 EBIRD 60.0 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320322824 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-16 08:00:00 obsr2519357 S23480500 Traveling P22 EBIRD 200.0 4.023 2.0 1 G1273908 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307944690 2021-03-26 07:30:35.289997 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 40 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-06 08:36:00 obsr1655171 S22715456 Stationary P21 EBIRD 19.0 2.0 1 G1212805 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323079761 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-26 09:10:00 obsr1201479 S23645124 Stationary P21 EBIRD 47.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299505426 2018-08-04 16:58:13 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 15 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-24 17:25:00 obsr1092576 S22065271 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321000345 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-18 13:38:00 obsr454647 S23518755 Traveling P22 EBIRD 220.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309941328 2021-03-26 06:55:00.227271 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 4 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-14 09:40:00 obsr606693 S22857926 Traveling P22 EBIRD 13.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302109754 2021-03-23 17:22:05.708166 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-07 07:35:00 obsr1000124 S22264844 Area P23 EBIRD 120.0 2.59 2.0 1 G1173377 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312108825 2015-04-22 15:29:55 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-22 obsr666964 S23000631 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301823593 2015-03-09 18:52:51 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tioga US-NY-107 28.0 US-NY-Barton-State Highway 282 L3467009 P 42.029503 -76.384151 2015-03-08 12:35:00 obsr1092576 S22243292 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296954220 2021-03-19 16:12:42.877422 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 4 United States US New York US-NY Columbia US-NY-021 14.0 Austerlitz L207556 P 42.3036668 -73.5189287 2015-02-14 09:15:00 obsr712039 S21844766 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311449246 2021-03-26 07:30:35.289997 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-04-19 08:30:00 obsr2137468 S22956983 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291024949 2021-11-09 19:41:59.550966 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Orange US-NY-071 28.0 Moodna Creek L1861445 P 41.4539939 -74.0193627 2015-01-14 12:45:00 obsr1665312 S21346666 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306164169 2018-08-04 17:04:24 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Dam L160699 H 42.0864692 -76.8096739 2015-03-27 18:43:00 obsr1587816 S22583768 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288187432 2021-03-30 19:07:52.958398 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-01-01 12:28:00 obsr1165633 S21116432 Traveling P22 EBIRD 63.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322266255 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:15:00 obsr1807494 S23596214 Traveling P22 EBIRD 420.0 8.047 20.0 1 G1285843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313151585 2015-04-26 13:51:38 11494 species avibase-20C2214E American Kestrel Falco sparverius 3 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-04-26 13:45:00 obsr1349676 S23069078 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313109255 2021-03-23 16:30:20.514143 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Mexico-28-94 Sage Creek Dr L3591923 P 43.516939 -76.234604 2015-04-26 11:12:00 obsr1351949 S23066647 Stationary P21 EBIRD 40.0 2.0 1 G5326518 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302871157 2021-04-01 11:54:40.172593 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica N X United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-13 13:55:00 obsr1958124 S22329957 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310232841 2021-03-26 06:29:56.44369 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus N 4 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-04-14 08:00:00 obsr2504709 S22877969 Traveling P22 EBIRD 25.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292589122 2016-03-11 09:00:40 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 F C1 F United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson trail west split n side main pond (on small bridge) L301742 P 42.4804482 -76.4531896 2015-01-22 08:35:00 obsr2307843 S21490944 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302600021 2019-07-23 17:27:54 681 species avibase-407E2CA8 Common Merganser Mergus merganser 4 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-12 08:48:00 obsr1655171 S22309706 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319015082 2015-05-12 16:12:07 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Fulton US-NY-035 14.0 HOME L2580910 P 43.1207486 -74.5033795 2015-05-12 16:10:00 obsr117560 S23407314 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318803560 2021-04-01 11:30:42.037277 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-11 19:02:00 obsr1548221 S23395218 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1068788600 2021-02-08 19:40:57.165026 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 Keller Rd. L1196666 H 42.4657256 -78.5749054 2015-05-29 10:15:00 obsr2155450 S80677806 Traveling P22 EBIRD 30.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309766999 2017-01-08 08:50:20 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College L1485004 H 44.4375537 -74.2530447 2015-04-13 13:00:00 obsr568671 S22845579 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312081691 2021-03-26 07:56:20.588749 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-22 08:40:00 obsr916370 S22998881 Traveling P22 EBIRD 120.0 4.184 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307317124 2021-03-26 08:05:20.615241 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Home, Thatchwood Dr., Manlius L1789277 P 43.008956 -76.0102533 2015-04-03 14:55:00 obsr724731 S22670739 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314085177 2015-04-29 17:12:05 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 15 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-04-29 07:40:00 obsr2842267 S23127581 Traveling P22 EBIRD 245.0 0.966 19.0 1 G1242821 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316014144 2021-03-24 19:19:28.646223 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Allegany US-NY-003 28.0 Alfred Area L898157 P 42.2107194 -77.7494717 2015-05-05 05:30:00 obsr1868960 S23238445 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293352854 2021-04-01 11:49:53.573686 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 1 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-01-26 10:41:00 obsr2574755 S21550558 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293225228 2021-04-01 11:42:50.317679 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-01-25 10:30:00 obsr2812831 S21540898 Traveling P22 EBIRD 80.0 6.325 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316451887 2018-12-30 10:00:33 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-06 06:20:00 obsr2321296 S23263791 Traveling P22 EBIRD 268.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319176577 2018-08-06 22:29:40 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-11 08:45:00 obsr1962295 S23416805 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299918776 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-02-27 10:45:00 obsr827632 S22096910 Traveling P22 EBIRD 150.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309353947 2021-03-26 06:17:19.712573 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 17 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-04-12 11:05:00 obsr502830 S22817415 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302458550 2021-03-30 19:29:33.633096 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 Ludlow Creek, Oakdale, Suffolk, NY L3480871 P 40.7320069 -73.1228542 2015-03-11 10:00:00 obsr2534001 S22298467 Traveling P22 EBIRD 150.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288596301 2021-11-09 18:33:57.278584 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 3 United States US New York US-NY Dutchess US-NY-027 28.0 Stowe Drive, Poughquag, NY L2501799 P 41.629185 -73.6510241 2015-01-01 07:48:00 obsr2175245 S21150668 Traveling P22 EBIRD 24.0 0.966 3.0 1 G1091113 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316526864 2021-03-26 07:53:57.664705 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 4 United States US New York US-NY Livingston US-NY-051 13.0 Home - Feeders and Woodlot L3326245 P 42.7480094 -77.6821368 2015-05-06 14:40:00 obsr1962379 S23268013 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310599779 2015-04-17 08:16:20 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 8 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-04-17 08:03:00 obsr2211210 S22903651 Traveling P22 EBIRD 12.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301437538 2021-04-01 10:49:39.496318 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-03-07 15:30:00 obsr2871406 S22212786 Stationary P21 EBIRD 8.0 4.0 1 G1169100 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303568887 2022-02-18 10:47:29.953615 6339 species avibase-8535345B Herring Gull Larus argentatus 18 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-16 17:37:00 obsr1062070 S22385552 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316046400 2021-03-26 07:46:52.994574 406 species avibase-27B2749A Wood Duck Aix sponsa 7 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-05 06:42:00 obsr2512689 S23240345 Traveling P22 EBIRD 108.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297036795 2015-02-15 10:28:16 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus X United States US New York US-NY Suffolk US-NY-103 30.0 Ft Pond Bay/Tuttles Pond L371346 P 41.0442748 -71.9628525 2015-02-15 09:30:00 obsr2741494 S21851827 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314884140 2015-05-02 11:15:07 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-02 08:50:00 obsr1764243 S23176339 Traveling P22 EBIRD 143.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310380903 2021-03-23 17:17:06.468947 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis N 6 United States US New York US-NY Wyoming US-NY-121 13.0 comet rd L3567134 P 42.8152596 -78.1902981 2015-04-15 10:27:00 obsr393804 S22888251 Traveling P22 EBIRD 9.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291098178 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 18 United States US New York US-NY Kings US-NY-047 Coney Island Creek Park L614792 H 40.5813224 -74.0052688 2015-01-14 16:02:00 obsr187432 S21352706 Traveling P22 EBIRD 13.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315649895 2021-03-24 19:47:16.07498 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-05-04 06:30:00 obsr589593 S23217909 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302658495 2019-07-23 17:27:54 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-03-12 13:42:00 obsr916033 S22313856 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330578258 2015-07-06 21:11:20 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus X United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--22nd-29th St. L1392119 H 40.7512103 -74.0085463 2015-05-31 06:35:00 obsr2863596 S24173895 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312706851 2018-08-04 17:11:59 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Herkimer US-NY-043 13.0 Weaver Lake L886805 P 42.8479322 -74.927604 2015-04-24 12:17:00 obsr316199 S23042300 Stationary P21 EBIRD 11.0 3.0 1 G1234635 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312302555 2021-03-23 16:21:52.613913 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-04-23 11:38:00 obsr606693 S23013678 Traveling P22 EBIRD 4.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313066195 2021-04-01 11:15:31.646886 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 07:59:00 obsr152435 S23064128 Traveling P22 EBIRD 92.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290922878 2021-03-30 19:39:10.250398 26890 species avibase-94A44032 European Starling Sturnus vulgaris 70 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 17:00:00 obsr143739 S21338563 Traveling P22 EBIRD 30.0 4.828 44.0 1 G1108343 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314263851 2021-03-24 20:33:47.533911 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southwest L879237 H 42.4634388 -76.4367664 2015-04-30 06:29:00 obsr1696616 S23138737 Traveling P22 EBIRD 42.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292581249 2018-08-04 16:54:48 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 35 United States US New York US-NY Niagara US-NY-063 US-NY_1724 13.0 Niagara Falls SP--Goat Island L207766 H 43.080477 -79.0683617 2015-01-21 09:15:00 obsr2155111 S21490301 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313119733 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 08:20:00 obsr2206421 S23067199 Traveling P22 EBIRD 190.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302448161 2021-03-26 06:39:43.334073 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY New York US-NY-061 30.0 Riverside Park at 79th L3321784 P 40.7827186 -73.9868259 2015-03-11 09:00:00 obsr1555046 S22297734 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1175052 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302082320 2019-01-27 11:09:05 32666 species avibase-5110842F Baltimore Oriole Icterus galbula X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-09 16:15:00 obsr1781960 S22262813 Traveling P22 EBIRD 180.0 0.805 4.0 1 G1172937 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300638416 2019-07-23 17:27:36 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 100 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-02 09:35:00 obsr1826325 S22151764 Stationary P21 EBIRD 30.0 2.0 1 G1165344 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310946432 2021-03-26 06:58:34.561206 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Orleans US-NY-073 13.0 Wilson Rd. Overpass L2130026 H 43.3631953 -78.2149261 2015-04-18 10:00:00 obsr2756208 S22926132 Stationary P21 EBIRD 46.0 4.0 1 G1224262 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306544288 2021-04-01 12:14:19.266649 32666 species avibase-5110842F Baltimore Oriole Icterus galbula N 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Captree Island L2865928 H 40.6469348 -73.2632673 2015-03-30 07:45:00 obsr1987335 S22613132 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291116290 2018-08-04 16:53:21 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-01-15 10:35:00 obsr1079517 S21354301 Area P23 EBIRD 35.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310171640 2021-11-09 18:40:19.746769 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--West L3002249 H 41.9197784 -73.6751747 2015-04-15 06:30:00 obsr2862523 S22874041 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317556120 2017-01-09 20:25:08 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 13 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Manitou Beach Preserve L2105165 H 43.3211034 -77.7145064 2015-05-09 05:47:00 obsr1545618 S23327374 Traveling P22 EBIRD 14.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298276484 2021-04-01 11:15:31.646886 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 11 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-02-18 14:58:00 obsr904434 S21962768 Traveling P22 EBIRD 46.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323596245 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-28 06:45:00 obsr547602 S23679631 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302324083 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 8 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-10 08:40:00 obsr1291655 S22285936 Traveling P22 EBIRD 270.0 4.828 3.0 1 G1174182 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311089654 2021-03-26 06:29:56.44369 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-04-18 07:00:00 obsr2449897 S22935277 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301965650 2021-04-01 12:32:15.282601 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-08 16:00:00 obsr2416285 S22253620 Traveling P22 EBIRD 150.0 3.219 4.0 1 G1171966 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302168791 2021-03-30 19:39:10.250398 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-06 08:20:00 obsr1112275 S22268975 Traveling P22 EBIRD 135.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317173145 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 09:45:00 obsr654841 S23304532 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318120766 2018-08-04 17:15:51 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Nassau US-NY-059 30.0 Old Westbury Gardens L818565 H 40.7737819 -73.594923 2015-05-10 11:19:00 obsr1228860 S23357661 Traveling P22 EBIRD 91.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302641553 2018-08-04 16:59:45 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-03-12 12:30:00 obsr1472872 S22312896 Traveling P22 EBIRD 63.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302007450 2021-04-01 12:11:16.886124 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 2 United States US New York US-NY Schoharie US-NY-095 28.0 Middleburgh area L3469379 P 42.5959438 -74.3383026 2015-03-09 08:15:00 obsr2846677 S22256779 Traveling P22 EBIRD 70.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317136931 2021-03-26 06:12:17.833181 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 Male, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 Cardinal Rd., Chautauqa, NY L3621771 P 42.1792961 -79.4457301 2015-04-29 13:00:00 obsr2675691 S23302753 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310738982 2021-03-26 08:14:04.726922 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Warren US-NY-113 13.0 Shermantown Rd. Portage Trail L960269 H 43.3064521 -73.6251848 2015-04-17 09:13:00 obsr1222746 S22912820 Traveling P22 EBIRD 31.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313150932 2020-04-25 20:25:02 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--Comstock Knoll L290965 H 42.4498398 -76.4723566 2015-04-26 13:27:00 obsr34822 S23069037 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288882918 2021-11-01 23:11:19.414929 31530 species avibase-B48335B1 Pine Siskin Spinus pinus N 3 United States US New York US-NY Kings US-NY-047 Coney Island Beach & Boardwalk L845817 H 40.5719793 -73.9778996 2015-01-03 08:15:00 obsr876649 S21175866 Traveling P22 EBIRD 105.0 1.207 12.0 1 G1093829 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313638989 2021-11-09 18:36:27.898762 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-04-27 15:45:00 obsr1917973 S23099436 Traveling P22 EBIRD 60.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309499448 2021-11-09 21:23:47.89824 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 1 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-04-12 11:00:00 obsr547602 S22826376 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312245582 2021-03-19 16:02:45.308962 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-23 07:29:00 obsr1764243 S23010085 Traveling P22 EBIRD 25.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318079105 2021-03-19 16:19:20.977326 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-10 08:20:00 obsr1996460 S23355561 Traveling P22 EBIRD 95.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001320 2021-03-26 07:56:20.588749 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-22 16:00:00 obsr2218212 S23775933 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298203578 2021-03-23 16:51:24.016808 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 11 United States US New York US-NY Steuben US-NY-101 28.0 7077 Early Road L2650322 P 42.4873437 -77.2881284 2015-02-13 09:15:00 obsr200430 S21956411 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296024895 2021-03-26 07:20:31.408164 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Suffolk US-NY-103 30.0 Stony Brook L2751160 P 40.8882764 -72.4450278 2015-02-10 16:00:00 obsr1693806 S21763121 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305569288 2021-03-26 06:07:45.516082 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-03-27 07:33:00 obsr128156 S22539330 Rusty Blackbird Spring Migration Blitz P41 EBIRD 43.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295427238 2021-04-01 11:15:31.646886 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek L845821 H 40.5811388 -73.9927912 2015-02-07 09:45:00 obsr305304 S21716093 Traveling P22 EBIRD 145.0 2.575 5.0 1 G1137824 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304598761 2019-07-23 17:28:05 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 24 United States US New York US-NY Orleans US-NY-073 Point Breeze (Orleans Co.) L469835 H 43.3716945 -78.1916691 2015-03-22 11:10:00 obsr991026 S22464615 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288449380 2015-01-02 11:14:34 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Erie US-NY-029 13.0 Gallagher Beach L2138552 H 42.8407505 -78.8598984 2015-01-01 15:30:00 obsr2537615 S21138178 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323766368 2018-08-06 22:31:22 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Lewis US-NY-049 14.0 Location SM L2244543 P 43.9154545 -75.214119 2015-05-29 11:23:00 obsr417887 S23692701 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308831073 2018-08-26 20:31:17 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-10 09:37:00 obsr1655171 S22782452 Stationary P21 EBIRD 2.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297467743 2021-11-09 18:34:59.251714 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Dutchess US-NY-027 13.0 Jones Street, Rhinecliff, NY L2638985 P 41.9155792 -73.9516997 2015-02-16 08:00:00 obsr26794 S21890522 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313187805 2021-12-08 07:58:41.562209 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-26 12:57:00 obsr2206421 S23071222 Traveling P22 EBIRD 53.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310035699 2021-04-01 10:47:08.851048 609 species avibase-67CEA1C1 Tufted Duck Aythya fuligula 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-04-14 06:50:00 obsr646558 S22864525 Traveling P22 EBIRD 20.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309509631 2021-03-24 19:27:13.077399 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Chemung US-NY-015 28.0 Martz/Shafer Farm L3558884 P 42.0250049 -76.7728901 2015-04-12 12:15:00 obsr1957925 S22827084 Traveling P22 EBIRD 65.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312268313 2015-04-23 10:10:37 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 Male, Adult (1) United States US New York US-NY Allegany US-NY-003 28.0 5541 Jericho Hill Rd L2230290 P 42.2385979 -77.7931671 2015-04-16 09:00:00 obsr2911979 S23011520 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314108774 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 08:00:00 obsr2319444 S23129015 Traveling P22 EBIRD 240.0 3.219 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318876265 2021-11-15 03:06:58.889978 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-12 06:45:00 obsr884514 S23399736 Traveling P22 EBIRD 63.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301786431 2018-08-04 16:59:04 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-03-08 13:37:00 obsr1565981 S22240425 Traveling P22 EBIRD 45.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291881518 2021-03-26 07:56:20.588749 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Nassau US-NY-059 Baxter Pond Park L1813627 H 40.8338411 -73.6990004 2015-01-19 08:45:00 obsr676630 S21414787 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310420714 2021-11-09 19:51:09.255083 431 species avibase-90E2543E Blue-winged Teal Spatula discors 1 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-04-15 08:30:00 obsr2273061 S22890984 Traveling P22 EBIRD 180.0 4.828 17.0 1 G1221890 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290448404 2021-04-01 12:35:52.669792 279 species avibase-3E04020B Brant Branta bernicla X United States US New York US-NY Onondaga US-NY-067 13.0 Baldwinsville,NY, Marble St L2517945 P 43.1561501 -76.3295639 2015-01-11 11:00:00 obsr1947877 S21300306 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322180353 2018-08-06 22:30:55 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Nassau US-NY-059 US-NY_872 30.0 Muttontown Preserve L250511 H 40.8315708 -73.5416646 2015-05-23 09:27:00 obsr1578741 S23591660 Traveling P22 EBIRD 119.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308811621 2021-04-01 12:26:53.827486 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-04-10 07:50:00 obsr2512689 S22781058 Traveling P22 EBIRD 40.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313334445 2021-11-15 03:06:58.889978 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-26 16:59:00 obsr856524 S23080171 Traveling P22 EBIRD 32.0 0.966 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314700202 2021-04-01 11:24:19.637193 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Monroe US-NY-055 13.0 University of Rochester--River Front and Pedestrian Bridge L899443 H 43.1310098 -77.6327848 2015-05-01 16:59:00 obsr2678807 S23165229 Traveling P22 EBIRD 44.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309008548 2015-04-11 19:09:34 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-04-11 05:55:00 obsr2214649 S22795035 Incidental P20 EBIRD 2.0 0 G1214919 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291290866 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-16 11:30:00 obsr1349960 S21368767 Traveling P22 EBIRD 170.0 4.828 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309080659 2021-04-01 11:47:43.260314 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-04-11 11:33:00 obsr2224244 S22799704 Traveling P22 EBIRD 37.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317200459 2021-12-24 11:02:14.483178 337 species avibase-694C127A Mute Swan Cygnus olor 19 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-08 11:40:00 obsr334398 S23305948 Traveling P22 EBIRD 85.0 1.77 2.0 1 G1257587 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312490984 2021-12-28 15:50:27.785498 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-24 08:57:00 obsr606693 S23026628 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302500643 2018-08-04 16:59:41 279 species avibase-3E04020B Brant Branta bernicla 32 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Fire Island Inlet L2497980 P 40.6314117 -73.2909966 2015-03-11 14:30:00 obsr247620 S22301606 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317183461 2018-08-06 22:29:09 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-08 06:30:00 obsr1830659 S23301078 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297849870 2021-03-26 07:43:12.52294 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Feeders in Savannah L1790820 P 43.0734788 -76.7648262 2015-02-14 14:00:00 obsr195058 S21926314 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306989754 2021-03-26 06:29:56.44369 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 850 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-02 16:30:00 obsr334398 S22646625 Stationary P21 EBIRD 11.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290922972 2017-04-15 20:22:12 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-H L3289015 P 40.16753 -73.15285 2015-01-11 15:00:00 obsr143739 S21338571 Traveling P22 EBIRD 60.0 33.523 44.0 1 G1108341 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315961994 2018-08-04 17:14:43 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Fulton US-NY-035 14.0 Cline Road Marsh/Forest Loop L2499202 P 43.0665479 -74.65976 2015-05-04 11:00:00 obsr531609 S23235058 Traveling P22 EBIRD 140.0 4.506 2.0 1 G1252395 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314610304 2021-04-01 11:15:31.646886 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-01 09:15:00 obsr2883698 S23160183 Traveling P22 EBIRD 180.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310456564 2015-04-16 21:16:05 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF L1341670 H 40.51575 -74.2252678 2015-04-16 14:26:00 obsr1958124 S22893366 Traveling P22 EBIRD 31.0 0.805 2.0 1 G1222340 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316690073 2021-04-01 10:47:08.851048 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-05-06 17:00:00 obsr1626739 S23277642 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300230791 2021-04-01 11:49:53.573686 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 20 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-02-28 10:41:00 obsr1407710 S22122521 Traveling P22 EBIRD 147.0 4.0 13.0 1 G1162162 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302030271 2015-03-09 16:47:50 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Suffolk US-NY-103 30.0 Edwards and Riley Ave L3469557 P 40.9301801 -72.7470446 2015-03-08 13:30:00 obsr1864342 S22258507 Stationary P21 EBIRD 30.0 4.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311603002 2021-04-01 12:32:15.282601 7346 species avibase-D4540F88 Glossy Ibis Plegadis falcinellus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-19 18:00:00 obsr2233270 S22967409 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001646 2021-03-26 07:56:20.588749 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 4 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-28 09:00:00 obsr2218212 S23775942 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320761370 2021-03-31 04:01:57.961467 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-16 18:30:00 obsr1561508 S23503766 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1276357 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315940745 2015-05-04 22:40:17 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 1 Male, Adult (1) United States US New York US-NY Fulton US-NY-035 14.0 Private Forest - Vicinity of Middle Sprite Creek L3613895 P 43.1134653 -74.6813115 2015-05-04 06:36:00 obsr1000124 S23233798 Area P23 EBIRD 618.0 11.3312 2.0 1 G1252393 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312563200 2021-04-01 11:54:40.172593 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 10 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-24 14:30:00 obsr1958124 S23032028 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308422576 2021-11-09 19:21:07.406501 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-04-08 07:30:00 obsr671490 S22751174 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300101768 2021-03-23 17:22:05.708166 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-23 07:10:00 obsr316199 S22112144 Area P23 EBIRD 50.0 2.59 2.0 1 G1162121 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316178640 2021-03-26 06:17:19.712573 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 6 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-05-05 14:00:00 obsr2096529 S23247398 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315957452 2021-04-01 11:30:42.037277 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-03 09:35:00 obsr1548221 S23234780 Traveling P22 EBIRD 40.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313051476 2021-03-23 16:39:03.255227 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 4 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF--Snag Swamp L1473094 H 40.515363 -74.2213938 2015-04-26 07:46:00 obsr1958124 S23063237 Traveling P22 EBIRD 29.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292939636 2021-03-26 07:46:10.228013 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 60 United States US New York US-NY Yates US-NY-123 US-NY_803 13.0 Perry Point L1044860 H 42.675526 -76.9384789 2015-01-24 14:06:00 obsr1828453 S21518563 Traveling P22 EBIRD 63.0 0.161 2.0 1 G1121765 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305557801 2021-03-30 19:29:33.633096 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 2 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Upper Mills Dam L389904 P 40.9142261 -72.687521 2015-03-10 10:20:00 obsr395994 S22538373 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299290854 2021-03-23 17:26:08.495143 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-23 12:30:00 obsr143739 S22049266 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316063277 2021-03-26 06:17:19.712573 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Erie US-NY-029 13.0 Allentown L1280687 P 42.8951414 -78.8788801 2015-05-05 10:50:00 obsr2597186 S23241255 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323924164 2021-04-01 11:15:31.646886 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 08:08:00 obsr152435 S23703513 Traveling P22 EBIRD 103.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289249264 2021-04-01 11:54:40.172593 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 Male, Adult (2) United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-01-04 10:20:00 obsr1032565 S21204062 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300922235 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-24 09:00:00 obsr2218212 S22173361 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300221975 2020-04-10 18:51:05 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-28 15:15:00 obsr1633923 S22121758 Traveling P22 EBIRD 120.0 0.322 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310021615 2021-11-15 03:06:58.889978 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-14 13:00:00 obsr1223279 S22863393 Historical P62 EBIRD_CAN 120.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292735857 2018-08-04 16:54:53 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Westchester US-NY-119 28.0 Half Moon Bay home L3253911 P 41.1967264 -73.8883481 2015-01-23 09:00:00 obsr114791 S21502310 Stationary P21 EBIRD 10.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309316179 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-04-10 06:15:00 obsr259298 S22815056 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320818195 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-16 05:30:00 obsr2233143 S23507807 Area P23 EBIRD 480.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318666844 2018-08-04 17:11:58 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma National Wildlife Refuge L3635305 P 42.967752 -76.740521 2015-04-24 08:30:00 obsr1780608 S23387247 Traveling P22 EBIRD 300.0 8.047 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294300271 2018-08-04 16:55:29 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 34 United States US New York US-NY Nassau US-NY-059 30.0 Forest Pond L672805 P 40.6818096 -73.5161734 2015-01-31 12:15:00 obsr1160328 S21625890 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291744358 2021-04-01 11:24:19.637193 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-18 10:20:00 obsr1782363 S21404277 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315723286 2021-11-09 17:58:40.313796 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-04 06:55:00 obsr1482758 S23221912 Traveling P22 EBIRD 260.0 6.116 23.0 1 G1251189 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308057445 2021-11-15 03:06:58.889978 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-05 18:00:00 obsr2072398 S22723110 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1208359 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303570560 2022-02-04 06:14:13.892644 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-03-16 12:45:00 obsr2105033 S22385662 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317073735 2021-03-26 06:29:56.44369 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-07 05:23:00 obsr2595828 S23299311 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316573765 2021-04-01 11:30:42.037277 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 4 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-06 08:08:00 obsr2054320 S23270929 Traveling P22 EBIRD 400.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322869890 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 12:30:00 obsr1488063 S23631503 Traveling P22 EBIRD 90.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294963309 2022-02-17 14:32:23.002448 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-04 13:00:00 obsr1711339 S21679591 Traveling P22 EBIRD 180.0 1.609 2.0 1 G1135526 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320408420 2021-03-31 04:01:57.961467 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-16 18:30:00 obsr1962295 S23484867 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1276357 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300252658 2017-01-04 05:22:18 26278 species avibase-A381417F House Wren Troglodytes aedon 5 United States US New York US-NY Cortland US-NY-023 28.0 Woodchuck Hill Road - Virgil L2038209 P 42.5076982 -76.1277437 2015-02-22 07:00:00 obsr931232 S22124273 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292500923 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-21 16:40:00 obsr934639 S21483914 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323190880 2021-03-26 06:29:56.44369 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-07 10:31:00 obsr408487 S23652370 Traveling P22 EBIRD 5.0 0.644 2.0 1 G1291699 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316968978 2021-11-15 03:06:58.889978 406 species avibase-27B2749A Wood Duck Aix sponsa 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-07 16:15:00 obsr654841 S23293244 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290819040 2022-02-17 14:32:23.002448 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-13 09:50:00 obsr1605975 S21329817 Traveling P22 EBIRD 70.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303352729 2021-04-01 12:14:19.266649 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 2 United States US New York US-NY Suffolk US-NY-103 30.0 Argyle Lake L623005 H 40.6965832 -73.329277 2015-03-15 18:15:00 obsr1137265 S22368309 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317293669 2022-02-17 14:32:23.002448 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-08 15:30:00 obsr1801902 S23311235 Traveling P22 EBIRD 80.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299176577 2021-04-01 12:45:19.712958 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-23 10:45:00 obsr258431 S22040290 Stationary P21 EBIRD 10.0 9.0 1 G1157697 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304365762 2021-03-23 17:32:20.03109 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 1 United States US New York US-NY Onondaga US-NY-067 28.0 Tully Lakes L1129390 P 42.79011 -76.1278725 2015-03-21 08:39:00 obsr1178949 S22447476 Traveling P22 EBIRD 120.0 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS354012241 2021-12-10 08:21:29.396662 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-07 12:00:00 obsr663350 S25890395 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310457909 2018-08-04 17:09:26 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Basset Road L2205631 P 42.410139 -75.964405 2015-04-16 10:49:00 obsr1472872 S22893462 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323943881 2018-08-06 22:31:27 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor21 L3513963 H 42.6488131 -76.0917255 2015-05-30 09:29:00 obsr2173269 S23704698 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308739484 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-09 07:00:00 obsr1220115 S22775714 Traveling P22 EBIRD 120.0 2.414 14.0 1 G1213495 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313483196 2021-03-26 06:39:43.334073 279 species avibase-3E04020B Brant Branta bernicla 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Greywacke Arch L2179946 H 40.7792619 -73.9657742 2015-04-27 08:22:00 obsr1548221 S23089835 Traveling P22 EBIRD 24.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324642295 2021-11-09 18:45:27.272498 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Dutchess US-NY-027 13.0 near Verbank L3534485 P 41.7142739 -73.677063 2015-05-29 obsr191447 S23750341 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314332384 2021-03-24 20:33:47.533911 456 species avibase-D201EB72 American Wigeon Mareca americana 3 United States US New York US-NY Tompkins US-NY-109 28.0 Thomas Rd., south (Six Mile Creek ponds & marsh) L388439 H 42.4020377 -76.3778114 2015-04-30 08:24:00 obsr2683910 S23142546 Traveling P22 EBIRD 10.0 3.54 2.0 1 G1244182 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305787882 2021-03-26 07:56:20.588749 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 12 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-26 14:00:00 obsr271871 S22555918 Traveling P22 EBIRD 60.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307202362 2021-03-26 06:39:43.334073 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 36 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-03 13:45:00 obsr1135516 S22662357 Traveling P22 EBIRD 75.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296244925 2021-04-01 12:18:57.910168 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-02-12 06:50:00 obsr869999 S21780475 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302863631 2015-03-13 13:20:08 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Hamilton US-NY-041 14.0 Elm Lake Road L3446404 P 43.5073079 -74.3584728 2015-03-13 12:05:00 obsr1735540 S22329411 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386311264 2021-12-08 07:58:41.562209 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-02 14:55:00 obsr1559830 S28587964 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292913544 2021-03-01 11:20:54.007808 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-24 12:44:00 obsr1655171 S21516631 Traveling P22 EBIRD 29.0 0.483 2.0 1 G1121998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315074036 2021-03-30 19:07:52.958398 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 08:00:00 obsr2363365 S23186664 Traveling P22 EBIRD 300.0 3.219 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313904478 2021-09-08 17:22:56.334642 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 2 United States US New York US-NY Oswego US-NY-075 13.0 Home L9190121 P 43.6053848 -76.1471608 2015-04-28 14:30:00 obsr193855 S23116438 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314889605 2021-03-19 16:19:20.977326 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-02 08:44:00 obsr1603345 S23176642 Traveling P22 EBIRD 165.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304388044 2021-11-09 21:50:48.44865 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-21 12:20:00 obsr1482758 S22449194 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319653809 2021-11-15 03:06:58.889978 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-14 10:35:00 obsr1706920 S23444206 Traveling P22 EBIRD 160.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305643261 2021-04-01 11:54:40.172593 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-27 14:00:00 obsr496520 S22544945 Traveling P22 EBIRD 130.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289699835 2015-01-07 16:07:38 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus 2 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-01-07 07:40:00 obsr2716320 S21239567 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307426194 2018-12-10 21:26:13 303 species avibase-B59E1863 Canada Goose Branta canadensis 15 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-04 09:00:00 obsr820113 S22678747 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522995 2021-03-23 16:39:03.255227 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-08 07:54:00 obsr155915 S22758877 Traveling P22 EBIRD 5.0 0.322 2.0 1 G1211607 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288516905 2020-01-01 09:54:18 30494 species avibase-240E3390 House Sparrow Passer domesticus 32 United States US New York US-NY Westchester US-NY-119 30.0 Sheldrake Lake (Larchmont Reservoir) L714112 H 40.9527912 -73.7738478 2015-01-02 14:00:00 obsr1227089 S21143900 Stationary P21 EBIRD 5.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315316618 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 12:00:00 obsr398982 S23199828 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1249073 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315038966 2021-03-26 06:11:29.8335 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Owasco Lake inlet area L302042 H 42.7542393 -76.4637132 2015-05-02 07:03:00 obsr2683910 S23184702 Traveling P22 EBIRD 83.0 0.805 2.0 1 G1247590 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311923871 2015-04-24 16:21:14 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Schoharie US-NY-095 28.0 42.4575x-74.4569 - Apr 21, 2015, 9:12 AM L3580882 P 42.457508 -74.456917 2015-04-21 09:12:00 obsr2846677 S22988591 Stationary P21 EBIRD 3.0 1.0 1 G1230553 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308208582 2021-03-26 06:09:25.361188 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-04-07 08:00:00 obsr879105 S22734990 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304704613 2021-03-26 08:14:57.071052 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-03-22 16:01:00 obsr258431 S22472460 Stationary P21 EBIRD 121.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292757896 2021-04-01 11:54:40.172593 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 Female, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-01-20 09:00:00 obsr666331 S21504127 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293868853 2021-11-15 03:06:58.889978 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-29 14:05:00 obsr2906952 S21592416 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296557764 2021-03-19 16:32:34.732091 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-13 13:20:00 obsr1668936 S21809515 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310387837 2021-03-26 07:46:52.994574 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-04-16 08:00:00 obsr2798912 S22888813 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302458557 2021-03-30 19:29:33.633096 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 Ludlow Creek, Oakdale, Suffolk, NY L3480871 P 40.7320069 -73.1228542 2015-03-11 10:00:00 obsr2534001 S22298467 Traveling P22 EBIRD 150.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312221360 2021-03-26 08:14:57.071052 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 2 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-06 08:40:00 obsr2973651 S23008380 Traveling P22 EBIRD 140.0 3.621 18.0 1 G1207928 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305652132 2021-11-09 18:09:08.212564 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 12 United States US New York US-NY Dutchess US-NY-027 US-NY_870 13.0 Thompson Pond Preserve L123019 H 41.9677583 -73.6819272 2015-03-27 16:20:00 obsr2862523 S22545651 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296570364 2021-03-26 07:07:10.758746 245 species avibase-7A24F57F Ross's Goose Anser rossii 2 United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-02-12 14:17:00 obsr1893950 S21810590 Stationary P21 EBIRD 136.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302413471 2018-08-04 16:59:15 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Essex US-NY-031 13.0 Boat Launch on Lake George outlet. L2702253 P 43.822134 -73.427088 2015-03-10 11:54:00 obsr2693145 S22295114 Traveling P22 EBIRD 19.0 0.161 1.0 1 G1174672 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308097164 2021-11-09 21:30:58.952293 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 14 United States US New York US-NY Ulster US-NY-111 13.0 Esopus Bend Nature Preserve L1422709 H 42.069482 -73.9586939 2015-04-06 17:00:00 obsr2862523 S22726261 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320683232 2021-11-15 03:06:58.889978 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 09:20:00 obsr1706920 S23499537 Traveling P22 EBIRD 260.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315316272 2021-03-26 06:17:19.712573 7429 species avibase-1327AC55 Osprey Pandion haliaetus N X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-03 09:30:00 obsr2537615 S23199812 Traveling P22 EBIRD 120.0 1.207 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303837409 2021-04-01 10:55:39.308231 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 12 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-03-18 10:22:00 obsr252591 S22406472 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320829297 2018-08-06 22:30:20 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Herkimer US-NY-043 14.0 Lake Rondaxe, Burgers Camp L992096 P 43.761071 -74.9080167 2015-05-17 08:15:00 obsr620377 S23508413 Traveling P22 EBIRD 180.0 4.828 4.0 1 G1289899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310892787 2015-04-18 12:04:27 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 3 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Dam Pond L137721 P 41.1336632 -72.3326111 2015-04-18 11:29:00 obsr2485753 S22922837 Traveling P22 EBIRD 34.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309375586 2021-11-09 19:57:48.990233 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 2 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-12 08:50:00 obsr186871 S22818708 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314852462 2021-03-19 16:44:35.607263 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 15 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area - NCAE L474355 P 43.0923966 -77.3768806 2015-04-29 08:00:00 obsr2113616 S23174691 Traveling P22 EBIRD 100.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300702785 2015-03-03 11:25:10 5155 species avibase-4880DC55 Virginia Rail Rallus limicola 3 United States US New York US-NY Saratoga US-NY-091 13.0 Personal residence L1937009 P 42.9576788 -74.0717125 2015-03-03 07:30:00 obsr1557094 S22156809 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314198924 2021-04-01 12:14:19.266649 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-29 09:00:00 obsr1489009 S23134586 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296901248 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek L845821 H 40.5811388 -73.9927912 2015-02-14 14:00:00 obsr2277801 S21840289 Historical P62 EBIRD 135.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288188326 2020-01-01 09:54:18 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Westchester US-NY-119 30.0 Sheldrake Lake (Larchmont Reservoir) L714112 H 40.9527912 -73.7738478 2015-01-01 13:15:00 obsr1227089 S21116516 Stationary P21 EBIRD 15.0 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310636702 2021-03-23 17:37:19.520785 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 20 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-16 18:00:00 obsr2699288 S22906074 Traveling P22 EBIRD 140.0 3.219 12.0 1 G1222819 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320040467 2021-03-30 19:13:38.458673 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-15 16:53:00 obsr528918 S23465771 Traveling P22 EBIRD 115.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305969478 2015-03-29 08:49:48 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 24 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-03-29 08:47:00 obsr1349676 S22569427 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317417947 2021-03-19 16:44:35.607263 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Monroe US-NY-055 13.0 117 Lyons Rd L154230 P 43.0025601 -77.6175928 2015-05-09 06:56:00 obsr270659 S23318911 Stationary P21 EBIRD 71.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293237205 2021-11-09 17:56:58.743752 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 42 United States US New York US-NY Dutchess US-NY-027 13.0 Haight Road, Millbrook, NY L1143777 P 41.8132907 -73.6437607 2015-01-25 15:00:00 obsr1062217 S21541828 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316135148 2018-08-04 17:14:53 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-05-05 12:45:00 obsr286403 S23245084 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299091847 2018-08-04 16:58:06 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay, Big Egg Marsh L722804 H 40.5963256 -73.8252819 2015-02-22 16:00:00 obsr1982614 S22033902 Traveling P22 EBIRD 60.0 0.306 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299152290 2021-03-23 17:22:05.708166 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 Female, Adult (3); Male, Adult (2) United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-02-22 07:45:00 obsr1680059 S22038429 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288317522 2021-03-30 19:39:10.250398 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula N 12 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-01-01 10:00:00 obsr1494607 S21127823 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322935132 2018-08-06 22:31:02 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Hamilton US-NY-041 14.0 Willis Lake Swamp L1160273 P 43.3721139 -74.2425156 2015-05-24 10:30:00 obsr739254 S23635740 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309055628 2022-02-27 09:35:49.066489 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-04-11 09:20:00 obsr545221 S22798194 Traveling P22 EBIRD 45.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310272995 2021-04-01 12:35:52.669792 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Old Erie Canal SHP (Onondaga Co.) L269872 H 43.0534657 -76.000677 2015-04-15 10:47:00 obsr1167884 S22880675 Traveling P22 EBIRD 110.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306827847 2021-03-26 06:21:08.096334 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 1 United States US New York US-NY Jefferson US-NY-045 13.0 Rt. 26, Leray L1449088 P 44.0790671 -75.7871488 2015-04-01 06:49:00 obsr1558090 S22634554 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313788690 2020-07-20 09:16:51 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-28 08:50:00 obsr660214 S23107254 Traveling P22 EBIRD 100.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318953166 2021-04-01 11:30:42.037277 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 6 Male, Adult (4); Female, Adult (2) United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-09 08:00:00 obsr2030638 S23403829 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291967315 2017-04-28 16:25:25 26890 species avibase-94A44032 European Starling Sturnus vulgaris 9 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-01-19 10:58:00 obsr1565981 S21421565 Traveling P22 EBIRD 43.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321612553 2021-11-15 03:06:58.889978 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-20 07:30:00 obsr599682 S23556126 Area P23 EBIRD 180.0 7.689 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304058752 2015-03-19 15:11:52 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Oswego US-NY-075 US-NY_759 13.0 US-NY-Pulaski-7382 NY-3 L3499507 P 43.560145 -76.187683 2015-03-19 13:45:00 obsr1321679 S22423818 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315287091 2021-03-30 19:07:52.958398 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 10:00:00 obsr1135516 S23198400 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288471291 2021-03-30 19:13:38.458673 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Park West L1756090 H 43.1831991 -77.5278997 2015-01-02 12:03:00 obsr1545618 S21140161 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332448480 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-04-18 18:53:00 obsr334398 S24315888 Traveling P22 EBIRD 38.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311778217 2022-02-18 10:47:29.953615 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-21 06:58:00 obsr1062070 S22979070 Stationary P21 EBIRD 93.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313629990 2021-03-23 16:45:39.358281 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 St. Lawrence University: Kip Tract L1816662 P 44.5842494 -75.1466074 2015-04-27 07:45:00 obsr1558090 S23098850 Traveling P22 EBIRD 41.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315486090 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 45 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-04-29 07:24:00 obsr334398 S23208870 Traveling P22 EBIRD 65.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288652756 2021-03-26 07:15:58.375907 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris X United States US New York US-NY St. Lawrence US-NY-089 13.0 Judson St. L1944435 P 44.5989093 -75.1599008 2015-01-02 obsr2056110 S21155196 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316060851 2021-11-09 18:46:28.516062 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 1 United States US New York US-NY Dutchess US-NY-027 13.0 US-NY-Rhinebeck-271-425 Enterprise Rd L3580433 P 41.9316 -73.83331 2015-05-05 09:43:00 obsr1442681 S23241117 Traveling P22 EBIRD 66.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300235785 2021-03-30 19:29:33.633096 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-03-01 09:51:00 obsr2485753 S22122929 Traveling P22 EBIRD 100.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302483567 2021-04-01 11:54:40.172593 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 2 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-11 15:20:00 obsr1958124 S22300308 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311369035 2021-04-01 10:45:00.916278 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.8929476 2015-04-19 12:50:00 obsr1348614 S22952039 Traveling P22 EBIRD 167.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315380279 2021-03-19 16:02:45.308962 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina X United States US New York US-NY Broome US-NY-007 28.0 Parsons Rd. L1497949 H 42.2404567 -75.8516071 2015-05-03 06:47:00 obsr1044068 S23203144 Traveling P22 EBIRD 30.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307920661 2015-04-06 07:25:17 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 50 United States US New York US-NY Saratoga US-NY-091 13.0 Hudson Crossing Park L1476458 H 43.1155261 -73.577908 2015-04-04 14:25:00 obsr2774749 S22713783 Traveling P22 EBIRD 35.0 0.402 4.0 1 G1207256 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318744766 2021-11-15 03:06:58.889978 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 40 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-11 07:40:00 obsr258560 S23391754 Traveling P22 EBIRD 360.0 8.851 2.0 1 G1266014 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292964752 2021-11-09 18:27:18.873475 6189 species avibase-39F29B55 Common Murre Uria aalge 23 United States US New York US-NY Dutchess US-NY-027 13.0 Allen Road yard list, Salt Point L1943130 P 41.8350253 -73.8021156 2015-01-24 07:20:00 obsr2175245 S21520516 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306603234 2015-11-05 11:19:11 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 105 Eastern Heights Dr., Ithaca L2724192 P 42.425089 -76.455526 2015-03-31 19:53:00 obsr1318356 S22617999 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309130582 2021-11-09 21:57:40.409598 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis X United States US New York US-NY Ulster US-NY-111 13.0 The Vly L3554956 P 42.13442 -73.94398 2015-04-11 11:00:00 obsr2862523 S22802288 Traveling P22 EBIRD 90.0 3.219 10.0 1 G1214308 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302152241 2021-03-30 19:03:14.123633 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Broome US-NY-007 28.0 1449 Front St. Binghamton NY L1890566 P 42.1678573 -75.8887213 2015-03-10 08:45:00 obsr290506 S22267695 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303019426 2019-07-23 17:27:58 6339 species avibase-8535345B Herring Gull Larus argentatus 45 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Unity Island (aka Squaw Is.)--North End L2036486 H 42.9321075 -78.9062977 2015-03-14 11:04:00 obsr1195275 S22342007 Stationary P21 EBIRD 19.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299272045 2021-03-26 07:07:10.758746 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii N 4 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-02-23 17:10:00 obsr1958124 S22047910 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318404506 2021-11-09 19:01:40.008558 11494 species avibase-20C2214E American Kestrel Falco sparverius 3 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-10 06:15:00 obsr1433400 S23372915 Traveling P22 EBIRD 300.0 8.561 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309962110 2021-11-09 19:55:29.587179 11494 species avibase-20C2214E American Kestrel Falco sparverius 3 United States US New York US-NY Orange US-NY-071 28.0 Six and a Half Station Rd. Sanctuary L306143 H 41.4025242 -74.3499176 2015-04-14 08:15:00 obsr1568163 S22859320 Traveling P22 EBIRD 180.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304457405 2021-03-30 19:13:38.458673 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 12 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Buck Pond L139795 H 43.2809982 -77.6672974 2015-03-21 16:30:00 obsr1598543 S22454113 Traveling P22 EBIRD 60.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312032989 2015-04-22 10:09:12 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--CLW office L2388208 P 42.4799683 -76.4513107 2015-04-22 09:30:00 obsr596741 S22995928 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292899158 2021-03-23 16:52:36.900075 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-17 13:00:00 obsr150865 S21515499 Stationary P21 EBIRD 45.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292892638 2021-03-26 06:29:56.44369 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 10 United States US New York US-NY Monroe US-NY-055 13.0 stakeout Yellow-headed Blackbird, Jeffords Rd., Rush (2015) L3304693 H 43.00988 -77.62134 2015-01-20 08:45:00 obsr2290061 S21514886 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293559594 2021-03-26 07:53:57.664705 20829 species avibase-B9B272F4 Common Raven Corvus corax 5 United States US New York US-NY Livingston US-NY-051 13.0 River Rd - Cuylerville L830935 P 42.7817952 -77.8697205 2015-01-27 11:30:00 obsr983655 S21567652 Traveling P22 EBIRD 30.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309042995 2022-03-05 22:03:50.715584 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-11 07:30:00 obsr890053 S22797387 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310123796 2021-03-26 06:29:56.44369 7261 species avibase-86D45B8F Green Heron Butorides virescens 2 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-04-06 08:30:00 obsr2449897 S22870772 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299846339 2015-02-27 12:05:30 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-02-27 12:01:00 obsr2871406 S22091790 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317861479 2021-03-26 07:56:20.588749 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 1 United States US New York US-NY Nassau US-NY-059 30.0 base camp L2230587 P 40.6756935 -73.4391327 2015-05-09 06:24:00 obsr205586 S23343634 Stationary P21 EBIRD 300.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304101230 2021-03-26 07:20:31.408164 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-19 17:00:00 obsr1489009 S22427041 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304656343 2015-03-22 15:19:58 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Suffolk US-NY-103 30.0 South Fork Natural History Museum L1053005 H 40.9482533 -72.2979784 2015-03-22 11:30:00 obsr1736113 S22468686 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296737404 2018-08-04 16:56:29 26109 species avibase-BAC33609 Brown Creeper Certhia americana 4 United States US New York US-NY Kings US-NY-047 BJs Wholesale Club Waterfront (Brooklyn) L3311662 H 40.5917716 -73.9990756 2015-02-14 12:01:00 obsr1189028 S21825788 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294707733 2021-03-24 20:23:39.258075 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-02-03 09:42:00 obsr2485753 S21658117 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310872083 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 08:15:00 obsr512869 S22921553 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296999474 2021-11-09 22:04:47.967972 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 12 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-15 07:46:00 obsr539141 S21848313 Traveling P22 EBIRD 43.0 6.711 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306939815 2018-08-04 17:05:05 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--CLO deck L747847 P 42.480014 -76.451595 2015-04-02 12:40:00 obsr1062070 S22642886 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295317734 2015-02-07 08:44:01 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-02-07 07:53:00 obsr2172593 S21707307 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306743803 2021-03-19 15:59:05.496822 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Allegany US-NY-003 28.0 E W Brooks home L2760823 P 42.237613 -77.792387 2015-04-01 obsr993220 S22628412 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322439334 2018-08-06 22:30:52 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 1 United States US New York US-NY Hamilton US-NY-041 14.0 Stanton Road, Indian Lake, NY L2380943 P 43.774555 -74.256253 2015-05-23 06:35:00 obsr2177751 S23606246 Stationary P21 EBIRD 600.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292936192 2021-03-26 07:17:57.136956 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Mays Point Lock 25 L481733 P 42.9993744 -76.7625904 2015-01-24 13:35:00 obsr204036 S21518281 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319537932 2021-04-01 11:30:42.037277 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 14 NY C4 NY United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 17:30:00 obsr2796494 S23437767 Traveling P22 EBIRD 140.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304178236 2021-03-26 06:29:56.44369 33061 species avibase-E36325FA Prairie Warbler Setophaga discolor 1 United States US New York US-NY Monroe US-NY-055 13.0 My yard, Brighton L421505 P 43.1258223 -77.5576454 2015-03-19 09:00:00 obsr2220829 S22433020 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304461687 2021-11-09 19:55:29.587179 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 5 United States US New York US-NY Orange US-NY-071 28.0 Six and a Half Station Rd. Sanctuary L306143 H 41.4025242 -74.3499176 2015-03-21 08:15:00 obsr498923 S22454420 Rusty Blackbird Spring Migration Blitz P41 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303508791 2021-04-01 12:40:54.473014 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 300 United States US New York US-NY Saratoga US-NY-091 13.0 Blockhouse Park L495270 H 42.937331 -73.6567533 2015-03-16 11:00:00 obsr481595 S22381094 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308935118 2021-12-03 21:50:44.732892 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 6 S C2 S United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-04-10 12:56:00 obsr1032565 S22789893 Traveling P22 EBIRD 214.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299607748 2021-03-30 19:29:33.633096 406 species avibase-27B2749A Wood Duck Aix sponsa 35 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-02-25 12:45:00 obsr2534001 S22073426 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291098037 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-14 10:53:00 obsr187432 S21352691 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319443695 2021-03-26 06:29:56.44369 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 2 United States US New York US-NY Monroe US-NY-055 13.0 Mt. Hope Cemetery L249453 H 43.1287817 -77.6206675 2015-05-13 17:10:00 obsr2796835 S23432052 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308029272 2021-03-26 07:20:31.408164 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 16 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--Golf Course L507417 H 40.6235296 -73.2860184 2015-04-06 12:15:00 obsr247620 S22721230 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318897382 2021-03-26 06:29:56.44369 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-12 08:08:00 obsr195244 S23400935 Traveling P22 EBIRD 82.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315533863 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 Rivers Run Adult Community L3611251 P 43.06342 -77.69758 2015-05-03 16:47:00 obsr722710 S23211512 Traveling P22 EBIRD 35.0 1.609 1.0 1 G1256555 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295529323 2018-08-04 16:55:53 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 3 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Aurora-1849 Honoco Rd L3346401 P 42.709315 -76.702003 2015-02-08 09:42:00 obsr2871406 S21724504 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1138935 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307801079 2021-03-23 16:47:03.540174 662 species avibase-FB738385 Bufflehead Bucephala albeola 80 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-05 11:55:00 obsr2855945 S22704838 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311780630 2021-03-26 08:13:27.160698 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Tioga US-NY-107 28.0 Kinney Rd., Campville L5641564 H 42.0824661 -76.1514652 2015-04-21 08:05:00 obsr1318356 S22979220 Traveling P22 EBIRD 35.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309508916 2021-03-19 16:26:51.561076 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Franklin US-NY-033 13.0 Private Property - Alderon Marsh L1179127 P 44.9946705 -74.5498753 2015-04-12 09:00:00 obsr568671 S22827042 Traveling P22 EBIRD 360.0 6.437 3.0 1 G1216733 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312891435 2021-11-09 19:13:28.211139 26890 species avibase-94A44032 European Starling Sturnus vulgaris 25 United States US New York US-NY Dutchess US-NY-027 13.0 Locust Grove L752319 H 41.673617 -73.9343405 2015-04-25 12:30:00 obsr2241630 S23053498 Traveling P22 EBIRD 195.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311792003 2020-07-20 09:16:51 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-21 06:36:00 obsr2224244 S22979919 Traveling P22 EBIRD 93.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312949635 2021-04-01 12:24:14.132004 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Washington US-NY-115 13.0 Easton L2821504 P 43.052407 -73.514906 2015-04-25 11:32:00 obsr648176 S23056978 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312482285 2021-04-01 11:30:42.037277 7429 species avibase-1327AC55 Osprey Pandion haliaetus X United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-04-23 13:15:00 obsr958911 S23026082 Traveling P22 EBIRD 35.0 1.127 12.0 1 G1232894 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302493331 2021-03-23 16:30:20.514143 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 145 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-11 09:49:00 obsr2945658 S22300957 Stationary P21 EBIRD 232.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307143089 2021-04-01 12:24:45.865424 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-02 09:23:00 obsr1721609 S22658364 Traveling P22 EBIRD 313.0 1.609 3.0 1 G1202494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295608494 2021-03-30 06:01:28.020715 7429 species avibase-1327AC55 Osprey Pandion haliaetus 23 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-02-08 13:00:00 obsr1124122 S21730642 Traveling P22 EBIRD 20.0 0.805 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300762850 2015-04-07 11:16:01 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Chenango US-NY-017 28.0 535 Moran Rd, Oxford L2650908 P 42.3464446 -75.6593978 2015-03-03 06:30:00 obsr1303581 S22161127 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307278148 2018-08-04 17:05:18 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-04-03 18:44:00 obsr749440 S22667856 Traveling P22 EBIRD 74.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299780171 2021-03-24 21:10:11.310781 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 6 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-02-23 09:00:00 obsr1664745 S22086634 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313039348 2015-04-26 05:49:12 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Oneida US-NY-065 13.0 Whitestown L210157 P 43.17351 -75.4187135 2015-04-23 obsr1384380 S23062442 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423240 2021-03-30 19:13:38.458673 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-18 17:48:00 obsr1846130 S24163342 Traveling P22 EBIRD 92.0 1.207 2.0 1 G1337410 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304444770 2021-03-23 17:41:09.545385 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary--HQ L92442 H 40.968598 -73.6647309 2015-03-21 16:52:00 obsr363163 S22453125 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312137556 2021-03-23 17:23:45.772216 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake Park L792637 H 42.7759994 -77.6113701 2015-04-22 12:55:00 obsr39511 S23002569 Traveling P22 EBIRD 85.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295414497 2021-12-10 08:21:29.396662 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-07 11:30:00 obsr2796494 S21715168 Traveling P22 EBIRD 150.0 2.414 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305937215 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY New York US-NY-061 Randalls Island--NE fields and shoreline L2595643 P 40.79431 -73.91382 2015-03-28 10:47:00 obsr1348614 S22567035 Traveling P22 EBIRD 120.0 1.0 2.0 1 G1198899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288877334 2018-08-04 16:52:38 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 8 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-01-03 11:42:00 obsr979921 S21175425 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300197178 2021-11-09 21:57:18.991937 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 1 United States US New York US-NY Ulster US-NY-111 28.0 Walkill River-- Gardiner L3446732 P 41.682894 -74.162051 2015-02-28 12:42:00 obsr840142 S22119449 Traveling P22 EBIRD 90.0 0.161 2.0 1 G1163060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307785652 2021-11-15 03:06:58.889978 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-05 14:45:00 obsr1165633 S22703805 Traveling P22 EBIRD 170.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311925547 2021-03-23 17:39:28.36772 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 30 United States US New York US-NY Tioga US-NY-107 28.0 Confluence Park, Owego L2011248 H 42.0957386 -76.2724543 2015-04-21 06:51:00 obsr1318356 S22988727 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314606963 2021-03-24 20:23:39.258075 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Suffolk US-NY-103 30.0 Roosevelt Estate County Park L7273270 H 40.7386078 -73.0728777 2015-04-30 17:25:00 obsr1107696 S23159989 Traveling P22 EBIRD 72.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294042274 2021-03-26 06:21:54.883933 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-30 08:00:00 obsr454647 S21605969 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292458856 2021-04-01 12:45:19.712958 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 5 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Playland Lake Overlook (Hawk Watch Site) L92440 H 40.9683291 -73.6664001 2015-01-21 10:00:00 obsr363163 S21480626 Traveling P22 EBIRD 120.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303675705 2021-04-01 10:57:06.520339 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Essex US-NY-031 14.0 Shattuck Rd L2787791 P 43.8133487 -73.5017967 2015-03-13 16:10:00 obsr2693145 S22393832 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310095621 2021-03-26 07:30:35.289997 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 28.0 Herman Rd. wetlands L1108700 H 42.5157265 -76.3355194 2015-04-14 07:53:00 obsr2683910 S22868829 Traveling P22 EBIRD 14.0 0.644 2.0 1 G1220018 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303792567 2021-11-15 03:06:58.889978 5923 species avibase-15369E8E Dunlin Calidris alpina 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-17 18:10:00 obsr1555046 S22402958 Traveling P22 EBIRD 60.0 3.219 2.0 1 G1186128 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323190633 2021-03-19 16:44:35.607263 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-07 09:04:00 obsr408487 S23652353 Traveling P22 EBIRD 46.0 0.402 2.0 1 G1291694 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309710857 2021-03-26 06:21:54.883933 5976 species avibase-F4829920 American Woodcock Scolopax minor 6 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-13 11:15:00 obsr1821546 S22841081 Traveling P22 EBIRD 51.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321446085 2021-03-26 06:29:56.44369 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Monroe US-NY-055 13.0 374 Cromwell L1952255 P 43.1326227 -77.5253892 2015-05-13 12:00:00 obsr1463039 S23546079 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314331307 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 15 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-30 08:00:00 obsr1731572 S23142489 Traveling P22 EBIRD 210.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294231702 2021-03-23 16:48:08.60516 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 18 United States US New York US-NY Seneca US-NY-099 13.0 Sampson SP L356616 H 42.7288824 -76.9038166 2015-01-31 17:00:00 obsr1092576 S21620789 Traveling P22 EBIRD 4.0 1.127 1.0 1 G1130510 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308519806 2021-03-23 16:48:08.60516 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 24 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-08 17:00:00 obsr204036 S22758638 Traveling P22 EBIRD 40.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301974354 2015-03-09 16:09:34 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-09 09:15:00 obsr1201479 S22254287 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311837776 2021-04-01 11:15:31.646886 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 07:30:00 obsr454647 S22983134 Traveling P22 EBIRD 300.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317093335 2018-08-06 22:29:10 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Hamilton US-NY-041 14.0 Oxbow Road L3484590 P 43.4488874 -74.4700098 2015-05-08 06:40:00 obsr1735540 S23300479 Traveling P22 EBIRD 20.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313995194 2021-03-22 09:17:32.016297 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Oneida US-NY-065 13.0 Godfrey Point DEC Boat Launch L1570638 H 43.2235924 -75.8505869 2015-04-29 05:51:00 obsr1640315 S23122255 Stationary P21 EBIRD 60.0 1.0 1 G1242295 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304854375 2021-03-23 17:26:08.495143 27616 species avibase-D77E4B41 American Robin Turdus migratorius 7 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-23 08:30:00 obsr369788 S22483352 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315865327 2021-03-24 19:57:24.612804 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-04 08:36:00 obsr521443 S23229553 Traveling P22 EBIRD 494.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297872806 2015-03-12 13:59:19 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-02-16 10:45:00 obsr1488063 S21928441 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315479118 2015-08-02 21:38:41 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Hamlin-683-773 Redman Rd L3610889 P 43.342729 -77.965404 2015-05-01 06:49:00 obsr334398 S23208468 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315092683 2015-05-02 20:47:11 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park L139800 H 43.0211215 -77.5739871 2015-05-02 09:30:00 obsr1338126 S23187713 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320564490 2021-03-26 06:39:43.334073 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-17 08:58:00 obsr856524 S23493156 Traveling P22 EBIRD 60.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299269994 2021-03-24 20:23:39.258075 279 species avibase-3E04020B Brant Branta bernicla 10 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-02-23 14:45:00 obsr1137265 S22047734 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303657079 2021-03-30 19:40:59.354574 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 50 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-17 08:30:00 obsr2172593 S22392328 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299989350 2016-09-05 10:52:36 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 14 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-02-27 14:48:00 obsr2574755 S22102246 Traveling P22 EBIRD 35.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306097291 2021-03-30 19:29:33.633096 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris 1 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow State Park, Suffolk, NY L2601819 P 40.9085423 -73.2595342 2015-03-29 13:30:00 obsr2534001 S22578648 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302269646 2021-04-01 11:47:43.260314 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 50 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-03-10 11:07:00 obsr2224244 S22280868 Traveling P22 EBIRD 54.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297321136 2021-03-26 06:21:54.883933 681 species avibase-407E2CA8 Common Merganser Mergus merganser 10 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-15 15:02:00 obsr2180607 S21877858 Traveling P22 EBIRD 60.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317836497 2018-08-06 22:29:26 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Broome US-NY-007 28.0 Rt 26 Endicott - Whitney Pt L1871519 P 42.2188833 -76.0242126 2015-05-09 08:45:00 obsr1626739 S23342348 Traveling P22 EBIRD 17.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290877476 2021-01-30 10:27:08.559792 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-I L3289026 P 40.29866 -73.31405 2015-01-11 16:00:00 obsr782651 S21334993 Traveling P22 EBIRD 60.0 10.622 44.0 1 G1108342 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS307892103 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-05 18:00:00 obsr1555046 S22711731 Traveling P22 EBIRD 60.0 1.609 3.0 1 G1208359 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288597974 2021-03-30 19:29:33.633096 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Suffolk US-NY-103 30.0 Hook Pond L283133 H 40.9461611 -72.1907833 2015-01-02 10:30:00 obsr1832543 S21150787 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317878093 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 16:30:00 obsr924076 S23344465 Traveling P22 EBIRD 236.0 1.609 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318600473 2021-11-09 17:58:40.313796 23383 species avibase-F5C181CA Cliff Swallow Petrochelidon pyrrhonota 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-11 07:00:00 obsr763723 S23383557 Traveling P22 EBIRD 180.0 4.731 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317250665 2019-10-05 18:11:27 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Headquarters L153039 H 43.112325 -78.4048443 2015-05-07 14:30:00 obsr1054748 S23308824 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321662277 2021-03-19 16:14:11.035882 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Cortland US-NY-023 28.0 Willow Crossing, Harford L3661080 P 42.4472 -76.24801 2015-05-21 09:07:00 obsr1655171 S23559066 Traveling P22 EBIRD 15.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309279712 2015-04-12 00:24:56 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 3 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 ISR 90 - between Exits 40 & 41 L1519729 P 42.9996451 -76.7233336 2015-04-11 07:33:00 obsr1000124 S22812718 Incidental P20 EBIRD 0 G1215529 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305619764 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 15 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-27 12:45:00 obsr547602 S22543280 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311974905 2021-03-30 19:07:52.958398 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-04-20 16:05:00 obsr1821546 S22991971 Traveling P22 EBIRD 78.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301502932 2015-03-07 20:52:58 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 10 United States US New York US-NY Tioga US-NY-107 28.0 Nichols- 2777 River Rd. L3462096 P 42.046371 -76.3408356 2015-03-07 12:15:00 obsr317968 S22217568 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313392584 2021-03-23 16:52:36.900075 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-04-26 08:05:00 obsr2852365 S23084225 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293095146 2021-11-15 03:06:58.889978 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 101 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-24 12:38:00 obsr1548221 S21530741 Traveling P22 EBIRD 111.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315645201 2021-03-26 07:20:31.408164 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Suffolk US-NY-103 US-NY_766 30.0 Caumsett State Park L1289051 P 40.9301152 -73.4676361 2015-04-25 09:00:00 obsr2934754 S23217604 Traveling P22 EBIRD 240.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312298252 2018-04-22 19:17:40 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 2 United States US New York US-NY Ontario US-NY-069 13.0 Risser Rd. Swamp, Canandaigua L771877 H 42.9382814 -77.29738 2015-04-22 07:56:00 obsr1243175 S23013402 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288580031 2021-11-01 23:11:19.414929 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Kings US-NY-047 Coney Island Beach & Boardwalk L845817 H 40.5719793 -73.9778996 2015-01-02 14:00:00 obsr1135516 S21149438 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317058227 2021-03-19 16:26:51.561076 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Franklin US-NY-033 14.0 Bellmont Center L496226 P 44.8417513 -74.1741943 2015-05-01 07:00:00 obsr2507995 S23298391 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314477914 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:15:00 obsr1152226 S23151957 Traveling P22 EBIRD 300.0 3.219 26.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315477744 2021-03-24 19:48:44.880783 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 22 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-01 07:18:00 obsr334398 S23208397 Traveling P22 EBIRD 85.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340805495 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Kings US-NY-047 Four Sparrow Marsh L510138 H 40.6000729 -73.9085591 2015-05-24 07:09:00 obsr2538893 S24923905 Traveling P22 EBIRD 153.0 4.023 2.0 1 G1399437 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323503283 2018-08-04 17:28:19 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Herkimer US-NY-043 13.0 Milky Way Farm Pond & Vicinity L681238 P 43.1062939 -74.8197913 2015-05-21 11:45:00 obsr2694889 S23673376 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318971891 2021-03-23 17:23:45.772216 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-11 13:00:00 obsr72341 S23404864 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300098860 2021-03-23 16:30:20.514143 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 3 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-02-25 07:15:00 obsr2409011 S22111926 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303108519 2021-03-24 20:52:47.158779 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas N 15 United States US New York US-NY Yates US-NY-123 13.0 Seneca Lake, Glenora Falls and Spit L463248 H 42.4907071 -76.9120216 2015-03-14 17:22:00 obsr1092576 S22349038 Traveling P22 EBIRD 21.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314622330 2021-03-26 07:46:52.994574 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-01 10:15:00 obsr2590001 S23160817 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309948328 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 17 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-14 06:34:00 obsr150415 S22858399 Traveling P22 EBIRD 175.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300076278 2021-11-09 21:57:18.897513 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Ulster US-NY-111 28.0 Farmer's Turnpike L3445715 P 41.6841413 -74.1633207 2015-02-08 09:30:00 obsr2326680 S22109577 Stationary P21 EBIRD 210.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313809348 2015-10-04 17:51:37 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Martens Tract L266868 H 43.0847778 -76.7093333 2015-04-25 18:40:00 obsr2292652 S23110354 Traveling P22 EBIRD 63.0 0.805 2.0 1 G1241275 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288416980 2021-03-26 08:05:20.615241 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Onondaga US-NY-067 13.0 Skan - 5 E. Lake St L631480 P 42.9468657 -76.4167383 2015-01-02 07:35:00 obsr2279567 S21135333 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311610095 2021-03-22 09:17:32.016297 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-20 13:30:00 obsr666964 S22967833 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288522662 2021-11-09 18:18:59.43692 6616 species avibase-7E022378 Common Loon Gavia immer 12 United States US New York US-NY Dutchess US-NY-027 28.0 Sterling Court, Beekman, NY L1397145 P 41.6235588 -73.6469304 2015-01-01 10:45:00 obsr763723 S21144448 Traveling P22 EBIRD 10.0 0.161 3.0 1 G1091106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304565736 2021-03-30 19:25:27.212017 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-03-22 07:51:00 obsr1958124 S22462222 Traveling P22 EBIRD 25.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311985232 2021-04-01 11:15:31.646886 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 12:20:00 obsr2404047 S22992667 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311332581 2021-04-01 11:30:42.037277 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 10 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-19 09:30:00 obsr814887 S22949764 Traveling P22 EBIRD 195.0 5.633 4.0 1 G1226625 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298257089 2016-09-12 10:28:00 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-02-16 11:30:00 obsr2475075 S21961145 Stationary P21 EBIRD 390.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321113068 2018-08-06 22:30:31 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-18 18:10:00 obsr1778524 S23525112 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296759057 2021-04-01 12:14:19.266649 33034 species avibase-6283E61E Pine Warbler Setophaga pinus N 6 United States US New York US-NY Suffolk US-NY-103 30.0 Home L1765628 P 40.8141352 -73.1443806 2015-02-13 11:30:00 obsr1037459 S21827790 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296677966 2021-03-23 17:00:13.087107 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-02-14 09:00:00 obsr455249 S21820071 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301983462 2021-03-26 06:29:56.44369 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 2 United States US New York US-NY Monroe US-NY-055 13.0 Private property L3358535 P 43.2067086 -77.8944933 2015-03-09 09:57:00 obsr1713903 S22255001 Traveling P22 EBIRD 30.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358247260 2018-06-19 19:10:47 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Nassau US-NY-059 30.0 The Cantors' Backyard L3774372 P 40.8043802 -73.4644979 2015-05-12 15:57:00 obsr1503076 S26227694 Stationary P21 EBIRD 6.0 2.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310216308 2021-03-26 06:11:29.8335 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 1 United States US New York US-NY Cayuga US-NY-011 13.0 stakeout Yellow-headed Blackbird, Number 1 Rd., Union Springs (2015) L3560616 H 42.8357 -76.65637 2015-04-15 06:38:00 obsr2871406 S22876943 Traveling P22 EBIRD 16.0 0.161 3.0 1 G1220757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298919158 2021-03-30 19:28:38.115458 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-02-22 08:44:00 obsr1092576 S22017830 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311706598 2021-04-01 12:35:52.669792 591 species avibase-1929E1E1 Canvasback Aythya valisineria 12 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-14 09:00:00 obsr786804 S22974655 Traveling P22 EBIRD 210.0 8.047 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314286599 2021-03-26 07:46:52.994574 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 15 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-30 06:26:00 obsr2321296 S23140229 Traveling P22 EBIRD 200.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313730159 2021-03-24 20:53:39.352228 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Albany US-NY-001 13.0 NY, ALB, Normanskill Farm Parking Lo L446383 P 42.6345981 -73.8004339 2015-04-28 07:46:00 obsr1885846 S23105343 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303053428 2021-03-19 16:44:35.607263 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Monroe US-NY-055 13.0 Moscow Rd., Hamlin L618044 H 43.3504475 -77.9462321 2015-03-14 14:05:00 obsr334398 S22344865 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310874955 2021-03-19 16:44:35.607263 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Monroe US-NY-055 13.0 Mt. Hope Cemetery L249453 H 43.1287817 -77.6206675 2015-04-17 14:50:00 obsr2065230 S22921733 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316275154 2021-03-26 06:21:54.883933 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 17:30:00 obsr1407710 S23253978 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289659758 2021-03-24 21:13:42.099821 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 1 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-01-07 09:00:00 obsr258431 S21236867 Stationary P21 EBIRD 140.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312151516 2021-03-24 21:06:05.39641 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Onondaga US-NY-067 28.0 Labrador Hollow Unique Area (Onondaga Co.) L271400 H 42.7902013 -76.053309 2015-04-22 13:17:00 obsr2279567 S23003486 Traveling P22 EBIRD 51.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311985209 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 12:20:00 obsr2404047 S22992667 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300239809 2021-04-01 12:45:19.712958 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 10 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-28 09:30:00 obsr2962893 S22123240 Traveling P22 EBIRD 210.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321729196 2018-08-06 22:30:44 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Iroquois NWR--Swallow Hollow Trail L771567 H 43.1254425 -78.3256102 2015-05-21 13:15:00 obsr916033 S23563081 Traveling P22 EBIRD 83.0 3.219 2.0 1 G1281890 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521331 2018-08-04 16:53:05 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Seneca US-NY-099 13.0 South of Sheldrake Point to CR 141 L1031120 H 42.652205 -76.6959858 2015-01-11 08:35:00 obsr869999 S21306338 Traveling P22 EBIRD 10.0 2.414 1.0 1 G1105906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314387217 2021-03-24 05:37:45.927792 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-30 08:15:00 obsr319738 S23145917 Traveling P22 EBIRD 225.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322311071 2021-03-30 19:07:52.958398 456 species avibase-D201EB72 American Wigeon Mareca americana 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:30:00 obsr1077730 S23598694 Traveling P22 EBIRD 645.0 8.047 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299103027 2021-03-26 07:52:59.845315 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-18 09:00:00 obsr316199 S22034729 Area P23 EBIRD 80.0 2.59 2.0 1 G1157023 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307841563 2021-04-01 11:15:31.646886 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 10 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-05 07:00:00 obsr2404047 S22707735 Traveling P22 EBIRD 300.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299438214 2021-04-01 10:57:06.520339 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Essex US-NY-031 13.0 Alexandria Ave bridge L2589364 P 43.8362139 -73.4292054 2015-02-24 16:35:00 obsr2693145 S22059959 Traveling P22 EBIRD 31.0 0.322 2.0 1 G1160276 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921314 2021-03-30 19:39:10.250398 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 7 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-07 09:00:00 obsr2218212 S22173317 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313990663 2021-04-01 10:57:06.520339 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 4 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-04-29 06:49:00 obsr2420101 S23121935 Traveling P22 EBIRD 88.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296835859 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-14 14:22:00 obsr1828453 S21834506 Traveling P22 EBIRD 123.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319239217 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-13 06:50:00 obsr1828453 S23420581 Traveling P22 EBIRD 200.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292957118 2021-04-01 12:18:57.910168 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 300 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-01-24 10:17:00 obsr887540 S21519928 Stationary P21 EBIRD 74.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296099537 2021-11-09 20:12:16.773384 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-02-11 09:39:00 obsr1912104 S21769087 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290232895 2018-08-04 16:52:58 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 27 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-10 08:30:00 obsr324569 S21282983 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292877291 2021-03-24 19:47:16.07498 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-01-13 08:13:00 obsr589593 S21513509 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314556450 2021-03-26 06:21:08.096334 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-01 08:35:00 obsr1302604 S23156999 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297237723 2017-08-15 17:00:28 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 28.0 Rte 353, Rensselaerville L3379149 P 42.5032373 -74.1772842 2015-02-15 14:00:00 obsr2161435 S21870322 Traveling P22 EBIRD 15.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301287818 2021-03-26 08:05:20.615241 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis N 3 United States US New York US-NY Onondaga US-NY-067 13.0 Skan - 5 E. Lake St L631480 P 42.9468657 -76.4167383 2015-03-06 10:26:00 obsr2279567 S22200513 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314235091 2018-08-04 17:13:03 483 species avibase-85625D75 Mallard Anas platyrhynchos 100 United States US New York US-NY Franklin US-NY-033 13.0 Private Property - Alderon Marsh L3601092 P 44.9946705 -74.5498753 2015-04-29 18:00:00 obsr2161273 S23136843 Traveling P22 EBIRD 180.0 1.609 8.0 1 G1243686 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316186455 2021-01-12 09:57:55.46315 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Nickerson Beach L508149 H 40.5871823 -73.6024 2015-05-05 09:00:00 obsr916370 S23247944 Traveling P22 EBIRD 15.0 0.322 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305490123 2021-04-01 11:54:40.172593 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-03-26 18:25:00 obsr1958124 S22533291 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296937725 2015-02-14 22:00:55 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 9 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-02-14 09:00:00 obsr1708031 S21843336 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319931575 2018-02-01 15:11:46 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Cortland US-NY-023 28.0 AviCor14 L3513956 H 42.6350553 -76.0431764 2015-05-09 14:14:00 obsr2535282 S23459842 Stationary P21 EBIRD 8.0 2.0 1 G1272236 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308510246 2021-03-19 16:25:42.617988 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Essex US-NY-031 13.0 102 Racetrack Rd, Ticonderoga, NY L2849942 P 43.8534847 -73.441565 2015-04-08 09:34:00 obsr2693145 S22757998 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318188537 2021-03-19 16:19:20.977326 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus X United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-10 07:30:00 obsr2537615 S23361126 Traveling P22 EBIRD 120.0 0.805 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293151899 2016-01-27 15:21:38 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 2 United States US New York US-NY Tompkins US-NY-109 28.0 125C Yellow Barn Rd. L1044911 P 42.4758637 -76.3421112 2015-01-25 13:00:00 obsr1655171 S21535185 Stationary P21 EBIRD 49.0 2.0 1 G1122854 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319504507 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-13 10:28:00 obsr2595828 S23435881 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291023989 2019-01-03 10:54:11 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-G L3289012 P 40.06773 -73.02048 2015-01-11 14:00:00 obsr613775 S21346576 Traveling P22 EBIRD 60.0 26.554 44.0 1 G1108340 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294995404 2015-02-05 06:34:32 337 species avibase-694C127A Mute Swan Cygnus olor 6 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-02-04 12:30:00 obsr1472872 S21682215 Traveling P22 EBIRD 100.0 5.472 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291418986 2021-04-01 12:14:19.266649 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Kmart, Holtsville L3297560 P 40.82837 -73.024275 2015-01-17 10:14:00 obsr613775 S21378788 Traveling P22 EBIRD 54.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312089825 2015-04-22 14:14:07 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 13.0 CLO Office-2M15 L1313831 P 42.4800694 -76.4515024 2015-04-22 14:10:00 obsr2074043 S22999431 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310546512 2021-03-23 17:26:08.495143 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-16 07:00:00 obsr1160328 S22900078 Area P23 EBIRD 180.0 30.3514 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317072464 2018-08-04 17:15:06 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 3 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College--Visitor Interpretive Center L212478 H 44.4486136 -74.2594002 2015-05-07 07:05:00 obsr2818734 S23299236 Traveling P22 EBIRD 210.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311235497 2019-03-11 14:43:15 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Seneca US-NY-099 13.0 Rt. 89 near Schuyler Creek L805638 H 42.803374 -76.7630877 2015-04-19 12:28:00 obsr1092576 S22943880 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315409294 2021-03-26 07:56:20.588749 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-03 08:45:00 obsr247620 S23204675 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322434743 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 05:15:00 obsr2906952 S23605994 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295922709 2015-02-10 07:23:06 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-02-10 07:15:00 obsr2074043 S21755019 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319932631 2021-11-09 18:47:29.006727 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Dutchess US-NY-027 28.0 Crown Maple farm L3645570 P 41.70082 -73.61783 2015-05-15 06:06:00 obsr444273 S23459894 Traveling P22 EBIRD 315.0 5.311 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300731600 2021-04-01 11:42:50.317679 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 2 United States US New York US-NY Oneida US-NY-065 13.0 Delta Lake Dam L3440985 H 43.2736746 -75.4303479 2015-03-03 10:16:00 obsr2716320 S22158936 Stationary P21 EBIRD 53.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220308 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-01-01 07:01:00 obsr2321296 S21119277 Traveling P22 EBIRD 210.0 2.012 12.0 1 G1094761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291306360 2021-03-26 06:39:43.334073 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 80 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-16 12:45:00 obsr150865 S21370053 Traveling P22 EBIRD 195.0 6.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309129550 2018-08-04 17:08:27 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Queens US-NY-081 30.0 Flushing Meadows Golf Center L3555413 P 40.753369 -73.8400984 2015-04-11 09:00:00 obsr377694 S22802690 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317851134 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-05-09 13:30:00 obsr547602 S23343089 Traveling P22 EBIRD 60.0 1.609 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313882190 2019-10-25 16:18:46 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY St. Lawrence US-NY-089 13.0 Gouverneur: Intersection Welch Road & CR 11 L3598359 P 44.3911076 -75.4527283 2015-04-28 05:05:00 obsr1558090 S23115067 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316411541 2021-11-15 03:06:58.889978 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-06 06:41:00 obsr884514 S23261393 Traveling P22 EBIRD 69.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301654294 2021-03-26 07:20:31.408164 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-03-08 10:42:00 obsr2485753 S22228917 Traveling P22 EBIRD 82.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298999032 2021-03-26 07:56:20.588749 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-02-20 09:55:00 obsr1296638 S22024121 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302657260 2021-03-30 19:37:33.521815 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis X United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-03-09 15:17:00 obsr1721609 S22313761 Stationary P21 EBIRD 49.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311544634 2015-04-20 10:38:39 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Round Top Park L717506 H 42.0901975 -76.0712242 2015-04-12 12:00:00 obsr998593 S22962944 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299176344 2018-08-04 16:58:07 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-02-23 10:17:00 obsr2313260 S22040278 Traveling P22 EBIRD 71.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS295382010 2015-03-08 10:40:38 6339 species avibase-8535345B Herring Gull Larus argentatus 200 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-01-31 12:30:00 obsr303203 S21712658 Stationary P21 EBIRD 15.0 2.0 1 G1137708 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305216460 2021-11-09 21:44:27.635828 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 1 United States US New York US-NY Ulster US-NY-111 US-NY_1728 28.0 Minnewaska SP--Peter's Kill L2097884 P 41.7386686 -74.2188638 2015-03-25 09:50:00 obsr1303376 S22511772 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302821897 2021-04-01 12:43:36.236969 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 6 United States US New York US-NY Tioga US-NY-107 28.0 Confluence Park, Owego L2011248 H 42.0957386 -76.2724543 2015-03-12 18:30:00 obsr317968 S22326179 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311974340 2018-08-04 17:11:23 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Oneida US-NY-065 13.0 West Canada Creek Rec Area - Prospect Site. L1512027 P 43.3076791 -75.1334018 2015-04-20 11:24:00 obsr1000124 S22978865 Traveling P22 EBIRD 17.0 0.161 3.0 1 G1229915 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306318805 2021-03-24 19:20:44.053843 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Broome US-NY-007 28.0 Harold Moore Park L1464971 H 42.099743 -76.0129688 2015-03-30 10:20:00 obsr1830659 S22595332 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294380968 2021-03-30 19:03:28.117389 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-31 12:15:00 obsr2683910 S21632368 Traveling P22 EBIRD 49.0 0.805 2.0 1 G1131558 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292810149 2021-03-30 19:29:33.633096 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 6 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-01-23 15:00:00 obsr1137265 S21508366 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324068988 2021-04-01 10:47:08.851048 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Broome US-NY-007 28.0 Vestal L2177398 P 42.1016932 -75.9767246 2015-05-30 11:10:00 obsr1626739 S23712178 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315316586 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 12:00:00 obsr360223 S23199825 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1249073 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312076443 2021-03-30 19:29:33.633096 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Suffolk US-NY-103 Mt. Sinai Harbor L834919 H 40.9604561 -73.0357361 2015-04-22 08:43:00 obsr1946430 S22998564 Traveling P22 EBIRD 17.0 0.1 3.0 1 G1231300 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312723636 2018-08-04 17:12:05 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Steuben US-NY-101 28.0 Almond Lake L268790 H 42.3492255 -77.7133725 2015-04-25 07:53:00 obsr1092576 S23043473 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312473707 2016-10-11 17:00:32 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 245 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip D L3559811 P 40.162933 -73.250983 2015-04-11 10:00:00 obsr2404047 S23025485 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221326 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305540219 2018-08-04 17:02:51 303 species avibase-B59E1863 Canada Goose Branta canadensis 16 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP--Lakeshore E of Creek L633467 H 42.5451843 -76.5957087 2015-03-25 13:01:00 obsr528918 S22537069 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314877304 2016-12-22 20:17:37 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 5 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hoag Ave. (Townline to Lick) L2205949 H 42.6656022 -76.3560855 2015-05-02 08:46:00 obsr1655171 S23175989 Traveling P22 EBIRD 48.0 1.287 2.0 1 G1247594 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305193743 2015-03-25 07:05:41 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--S entrance (maint. bldgs) L1350789 H 40.5146545 -74.2124928 2015-03-25 07:04:00 obsr1958124 S22509963 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305492216 2015-03-26 19:58:19 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Parking lot area L1772918 P 42.4803959 -76.4497041 2015-03-26 09:45:00 obsr1655171 S22529084 Traveling P22 EBIRD 4.0 0.483 2.0 1 G1193477 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318141856 2021-04-01 11:30:42.037277 26109 species avibase-BAC33609 Brown Creeper Certhia americana 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-10 07:30:00 obsr512869 S23358728 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299434675 2021-03-30 19:39:10.250398 7261 species avibase-86D45B8F Green Heron Butorides virescens 5 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-02-24 13:30:00 obsr1489009 S22059712 Traveling P22 EBIRD 30.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313640966 2018-08-04 17:12:33 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Genesee US-NY-037 13.0 old creek rd L3503172 P 42.9419729 -78.2103825 2015-04-27 19:01:00 obsr393804 S23099596 Traveling P22 EBIRD 24.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302030684 2018-08-04 16:58:59 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Burnett Creek L2730627 P 40.8953487 -72.3538971 2015-03-07 16:30:00 obsr1864342 S22258550 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298428426 2018-04-06 02:37:56 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 2 United States US New York US-NY Kings US-NY-047 Gravesend Bay, middle parking lot L1843449 H 40.6040297 -74.0243731 2015-02-19 14:37:00 obsr1821546 S21976342 Traveling P22 EBIRD 11.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307957828 2021-03-23 16:47:03.540174 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-06 09:30:00 obsr820113 S22716449 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307020052 2021-03-26 06:07:45.516082 6339 species avibase-8535345B Herring Gull Larus argentatus 21 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-02 17:08:00 obsr128156 S22649141 Rusty Blackbird Spring Migration Blitz P41 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313438015 2018-08-04 17:11:28 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Warren US-NY-113 14.0 Rogers Rock Campgound L799286 H 43.7930769 -73.4800172 2015-04-21 10:12:00 obsr2693145 S23087159 Traveling P22 EBIRD 109.0 0.805 2.0 1 G1239067 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316596044 2015-05-06 18:35:36 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 1 United States US New York US-NY Lewis US-NY-049 14.0 My back yard L892527 P 43.5545199 -75.3677559 2015-05-06 18:00:00 obsr1783124 S23272271 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317968661 2021-08-17 17:04:56.844007 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Essex US-NY-031 14.0 Garden L2923461 P 43.820541 -73.494179 2015-05-08 20:04:00 obsr2693145 S23349688 Traveling P22 EBIRD 28.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307144823 2018-08-04 17:05:13 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-04-03 11:20:00 obsr2887137 S22658472 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316488089 2021-04-01 11:15:31.646886 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-06 09:58:00 obsr150415 S23265629 Traveling P22 EBIRD 168.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309506430 2015-04-12 18:21:29 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Greene US-NY-039 28.0 Ashland Yard: Greene County L2082214 P 42.3292669 -74.3436134 2015-04-12 obsr407134 S22826883 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323923245 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-29 06:11:00 obsr2595828 S23703457 Stationary P21 EBIRD 100.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322968657 2021-11-09 19:01:40.008558 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-25 06:45:00 obsr671490 S23637931 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320191044 2021-04-01 12:32:15.282601 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-05-16 10:30:00 obsr2207991 S23473800 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290418095 2021-04-01 12:29:50.209479 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Fulton US-NY-035 13.0 saltsman rd. L1074445 P 43.0062359 -74.5819116 2015-01-01 09:30:00 obsr1683226 S21297917 Traveling P22 EBIRD 15.0 1.609 2.0 1 G1105172 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290277741 2015-01-10 19:29:36 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Montgomery US-NY-057 13.0 Rt.5S - between Argersinger Rd & Conable Dr. L3282909 P 42.9249773 -74.4215527 2015-01-09 14:09:00 obsr1000124 S21286745 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289866926 2015-01-08 13:24:33 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Westchester US-NY-119 30.0 Valhalla L1293558 P 41.0825132 -73.8110018 2015-01-08 12:30:00 obsr1932005 S21253061 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297002996 2021-03-24 20:53:39.352228 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers L3373678 P 42.6093292 -73.8910925 2015-02-14 11:20:00 obsr2957835 S21848626 Traveling P22 EBIRD 30.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386311277 2021-11-15 03:06:58.889978 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-22 13:48:00 obsr1559830 S28587965 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316059084 2019-10-17 11:32:42 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-05-05 10:00:00 obsr1792012 S23241014 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291616403 2021-11-09 19:24:49.75497 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Orange US-NY-071 28.0 Pulaski Highway Farmland--CR 6 L1098032 P 41.3341581 -74.4045639 2015-01-17 09:08:00 obsr1502560 S21394426 Traveling P22 EBIRD 107.0 8.047 1.0 0 G1112191 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319115484 2021-03-30 19:07:52.958398 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 12:40:00 obsr150415 S23413633 Traveling P22 EBIRD 315.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289781751 2021-03-24 20:53:39.352228 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Albany US-NY-001 13.0 Delmar - Kendall Drive L2187464 P 42.60292 -73.81624 2015-01-07 13:00:00 obsr1636520 S21245788 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321963231 2021-03-26 06:21:54.883933 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-22 06:30:00 obsr1407710 S23578111 Traveling P22 EBIRD 120.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306157164 2021-11-09 18:17:17.335499 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Dutchess US-NY-027 13.0 Strever Farm Road, Pine Plains L1363519 H 41.9457427 -73.6491438 2015-03-29 16:20:00 obsr2862523 S22583247 Stationary P21 EBIRD 10.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301650301 2021-03-26 06:21:54.883933 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Kings US-NY-047 Owls Head Park L304833 H 40.6403687 -74.0322153 2015-03-08 09:14:00 obsr1189028 S22228656 Traveling P22 EBIRD 25.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307082060 2021-03-26 07:52:59.845315 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-02 08:45:00 obsr316199 S22653769 Area P23 EBIRD 80.0 2.59 2.0 1 G1202223 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314036068 2021-03-26 07:20:31.408164 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-29 08:00:00 obsr2739465 S23124628 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS354453990 2021-04-01 11:24:19.637193 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 5 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-01-17 12:13:00 obsr2276013 S25925645 Traveling P22 EBIRD 88.0 0.483 3.0 1 G1472319 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314540397 2015-05-01 07:31:17 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 28.0 ***Fitzpatrick home L124872 P 42.42879 -76.395065 2015-04-28 17:45:00 obsr2124298 S23155973 Traveling P22 EBIRD 45.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317037466 2021-04-01 10:47:08.851048 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-05-07 13:18:00 obsr1826325 S23297227 Traveling P22 EBIRD 55.0 1.609 1.0 1 G1256736 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307231407 2021-03-26 07:07:10.758746 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 16 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-03 09:50:00 obsr1032565 S22664553 Traveling P22 EBIRD 235.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316569968 2018-08-04 17:15:00 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-06 11:15:00 obsr1410564 S23270705 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306729470 2021-03-30 19:13:38.458673 1796 species avibase-018B3169 Horned Grebe Podiceps auritus N 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-01 12:48:00 obsr2914424 S22627436 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300714445 2021-11-09 17:47:17.381431 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Dutchess US-NY-027 13.0 * Ring Road, Salt Point, NY L1084767 P 41.7968319 -73.8318479 2015-03-03 11:30:00 obsr763723 S22157619 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308096281 2021-03-30 19:13:38.458673 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 75 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Buck Pond L139795 H 43.2809982 -77.6672974 2015-04-06 10:44:00 obsr1243175 S22726190 Traveling P22 EBIRD 40.0 0.161 2.0 1 G1208664 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296662010 2021-03-24 21:09:00.82373 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Rensselaer US-NY-083 13.0 Coopers Pond, Brunswick L1008485 H 42.7363667 -73.6531746 2015-02-14 09:27:00 obsr2211210 S21818586 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316243634 2021-04-01 10:57:06.520339 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 5 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-05-04 06:58:00 obsr2693145 S23252166 Traveling P22 EBIRD 89.0 1.609 1.0 1 G1253804 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340507664 2021-04-01 11:14:02.420281 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Jefferson US-NY-045 13.0 West Carthage, NY ( vicinity) L1579261 P 43.9691016 -75.645775 2015-05-04 16:00:00 obsr2251037 S24903112 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317116866 2018-08-04 17:15:16 447 species avibase-C235A4D7 Gadwall Mareca strepera X United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-08 07:30:00 obsr2843748 S23301712 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312487648 2021-03-24 20:33:47.533911 33034 species avibase-6283E61E Pine Warbler Setophaga pinus X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-24 07:05:00 obsr711169 S23026456 Traveling P22 EBIRD 90.0 0.644 3.0 1 G1233636 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318687067 2018-08-04 17:14:49 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College--Visitor Interpretive Center L212478 H 44.4486136 -74.2594002 2015-05-05 07:18:00 obsr2818734 S23388356 Traveling P22 EBIRD 190.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317026517 2021-11-15 03:06:58.889978 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-07 15:30:00 obsr574573 S23296562 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309781963 2015-04-13 16:36:44 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 3 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-13 11:15:00 obsr2321296 S22846554 Traveling P22 EBIRD 70.0 2.414 2.0 1 G1218385 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322304209 2021-03-26 07:56:20.588749 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina X United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-23 11:55:00 obsr916370 S23598326 Traveling P22 EBIRD 80.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318318010 2021-04-01 12:32:15.282601 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-05-09 13:30:00 obsr2207991 S23368100 Traveling P22 EBIRD 60.0 1.609 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308126208 2021-11-09 21:29:33.71224 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Ulster US-NY-111 13.0 George Freer Memorial Beach L1396692 H 41.9102459 -73.9727658 2015-04-06 18:15:00 obsr1136997 S22728415 Incidental P20 EBIRD 3.0 0 G1209511 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306981862 2017-07-29 13:38:06 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 4 United States US New York US-NY Wayne US-NY-117 13.0 Erie Canal, Wide Waters (Wayne Co.) L875261 H 43.0450563 -77.1399879 2015-04-02 12:55:00 obsr606693 S22646012 Traveling P22 EBIRD 7.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302691092 2021-04-01 11:54:40.172593 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-12 17:40:00 obsr1958124 S22316340 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312019972 2015-04-22 08:53:30 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard to Garden L332946 P 42.3697437 -76.3665764 2015-04-22 06:38:00 obsr2074043 S22995075 Traveling P22 EBIRD 25.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308952233 2015-04-10 20:10:24 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Washington US-NY-115 13.0 McDougall Lake Rd., E. Greenwich L3553655 P 43.150432 -73.393693 2015-04-09 15:15:00 obsr2037491 S22791072 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310703810 2017-11-27 07:55:42 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip F L3559849 P 40.22115 -73.03615 2015-04-11 13:00:00 obsr248226 S22910345 Traveling P22 EBIRD 120.0 32.187 45.0 0 G1221325 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS323992323 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-25 08:14:00 obsr1384082 S23707549 Traveling P22 EBIRD 233.0 6.437 2.0 1 G1347621 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319123847 2021-11-13 12:47:25.390808 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-08 08:45:00 obsr1996460 S23414061 Traveling P22 EBIRD 210.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302633438 2015-03-12 13:52:54 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-16 Enfield Center Rd E L3482684 P 42.437649 -76.571372 2015-03-12 01:15:00 obsr2001485 S22312381 Stationary P21 EBIRD 757.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309974586 2021-04-07 20:48:00.643023 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-14 11:29:00 obsr354090 S22860238 Traveling P22 EBIRD 51.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294229103 2021-03-26 06:17:19.712573 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-01-31 obsr2096529 S21620574 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325151124 2019-07-23 17:28:19 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip G L3559870 P 40.435667 -73.336683 2015-04-11 15:00:00 obsr109265 S23786941 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306141510 2015-04-09 09:13:50 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.7298675 2015-03-29 15:16:00 obsr59643 S22582085 Stationary P21 EBIRD 12.0 4.0 0 G1197068 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317196479 2021-03-19 16:44:35.607263 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-08 11:30:00 obsr2223307 S23305768 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323099686 2020-09-05 16:32:30 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 1 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-04-08 07:00:00 obsr2409011 S23646330 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302024518 2021-03-30 19:39:10.250398 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-03-09 09:30:00 obsr1102914 S22258058 Traveling P22 EBIRD 90.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298607066 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 15 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-02-20 15:20:00 obsr2321296 S21991505 Stationary P21 EBIRD 52.0 2.0 1 G1165036 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304612428 2015-11-28 19:02:08 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-22 08:35:00 obsr1711339 S22465578 Traveling P22 EBIRD 234.0 6.437 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318720983 2021-04-01 11:30:42.037277 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys N 18 United States US New York US-NY New York US-NY-061 30.0 Madison Square Park L525218 H 40.7424206 -73.9879739 2015-05-11 18:19:00 obsr408099 S23390332 Traveling P22 EBIRD 11.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303095552 2021-03-24 20:03:01.953443 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 6 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Goat island L1931762 P 43.1265466 -79.0438843 2015-02-22 15:30:00 obsr1043007 S22348061 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306055764 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-29 09:00:00 obsr1659461 S22575450 Traveling P22 EBIRD 180.0 6.437 2.0 1 G1196469 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307464856 2021-03-30 19:29:33.633096 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Wading River Marsh Preserve L123013 H 40.96167 -72.85778 2015-04-04 08:55:00 obsr1954215 S22681336 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS339694541 2021-04-01 11:15:31.646886 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 09:30:00 obsr294325 S24843583 Traveling P22 EBIRD 300.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309885271 2021-04-01 11:43:48.927316 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) X United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, City Pier L357819 H 42.871907 -77.2725534 2015-04-13 09:05:00 obsr528918 S22853887 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290811038 2018-08-04 16:53:15 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Warren US-NY-113 14.0 Peggie's Point L3187023 P 43.745544 -73.497391 2015-01-13 09:18:00 obsr2693145 S21329117 Traveling P22 EBIRD 19.0 0.322 2.0 1 G1108086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309862100 2021-03-19 16:06:54.047432 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Cayuga US-NY-011 US-NY_1726 13.0 Montezuma (NMWMA)--Howland Island--Coot Pond L882802 H 43.0680726 -76.6719532 2015-04-12 07:33:00 obsr711169 S22852159 Traveling P22 EBIRD 150.0 1.207 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288739518 2015-01-03 13:26:39 406 species avibase-27B2749A Wood Duck Aix sponsa 77 United States US New York US-NY Suffolk US-NY-103 US-NY_842 30.0 Cupsogue Beach County Park L566310 H 40.7713119 -72.7373457 2015-01-03 08:30:00 obsr1736113 S21162193 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322136090 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-15 09:00:00 obsr2218212 S23589189 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301218877 2018-08-04 16:58:50 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 13 United States US New York US-NY Suffolk US-NY-103 30.0 Marratooka L143474 P 40.9934692 -72.5238113 2015-03-06 13:20:00 obsr2485753 S22195241 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314407792 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 10:30:00 obsr454647 S23147204 Traveling P22 EBIRD 350.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305062371 2021-11-09 17:48:39.818677 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 2 United States US New York US-NY Dutchess US-NY-027 13.0 104 Bedell Rd, Poughkeepsie L10910414 P 41.7239345 -73.8816366 2015-03-24 10:30:00 obsr788817 S22500129 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319852196 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-15 05:45:00 obsr1433400 S23455609 Traveling P22 EBIRD 195.0 4.007 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291945581 2021-04-01 12:32:15.282601 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-19 11:30:00 obsr2207991 S21419724 Traveling P22 EBIRD 60.0 0.322 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303280150 2018-08-04 16:59:47 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 30 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Hunter Island, Orchard Beach L636088 P 40.8730262 -73.7889862 2015-03-12 17:15:00 obsr2448283 S22362250 Traveling P22 EBIRD 30.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316596047 2015-05-06 18:35:36 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Lewis US-NY-049 14.0 My back yard L892527 P 43.5545199 -75.3677559 2015-05-06 18:00:00 obsr1783124 S23272271 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300152515 2021-03-26 07:17:57.136956 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Seneca US-NY-099 13.0 Kime Rd., Fayette L3446793 P 42.8492104 -76.91347 2015-02-28 10:47:00 obsr1655171 S22116194 Stationary P21 EBIRD 2.0 2.0 1 G1162638 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311371599 2021-04-01 11:24:19.637193 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 13.0 Meridian Centre Park L3458221 H 43.1034641 -77.5862944 2015-04-19 16:03:00 obsr934639 S22952217 Traveling P22 EBIRD 135.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302928097 2015-03-13 19:20:50 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport (ITH) L285060 H 42.4917181 -76.4594906 2015-03-13 19:12:00 obsr1696616 S22334583 Traveling P22 EBIRD 5.0 1.609 2.0 1 G1178135 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316008977 2022-02-17 14:32:23.002448 8773 species avibase-7AA076EF Barred Owl Strix varia 6 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-05 05:40:00 obsr2404047 S23238156 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302929355 2021-03-24 20:13:27.613389 5976 species avibase-F4829920 American Woodcock Scolopax minor 8 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-03-13 15:20:00 obsr1982614 S22334795 Traveling P22 EBIRD 75.0 2.993 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288578801 2015-01-02 19:02:11 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Wayne US-NY-117 13.0 Powell's Yard L783199 P 43.0918854 -77.3488167 2015-01-02 16:30:00 obsr749440 S21149348 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295413821 2021-03-23 16:39:03.255227 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 1 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-02-07 13:40:00 obsr1893950 S21715113 Traveling P22 EBIRD 21.0 0.644 2.0 1 G1137885 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310349372 2016-10-11 17:02:02 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip C L3559792 P 40.186003 -73.417567 2015-04-11 09:00:00 obsr155915 S22886046 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221331 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305640166 2021-04-01 11:54:40.172593 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus N 12 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-27 16:35:00 obsr1958124 S22544752 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314500113 2021-03-26 07:30:35.289997 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Stewart Park and Renwick Woods L1131448 H 42.4589608 -76.5055355 2015-04-30 18:53:00 obsr71667 S23153335 Traveling P22 EBIRD 90.0 0.322 6.0 1 G1244946 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307514119 2021-03-30 19:13:38.458673 26890 species avibase-94A44032 European Starling Sturnus vulgaris 150 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-04 10:33:00 obsr1243175 S22684665 Stationary P21 EBIRD 30.0 6.0 1 G1204408 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289603540 2021-03-26 07:20:31.408164 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Home - 24 Dundee Ave L2579807 P 40.696771 -73.333767 2015-01-04 13:00:00 obsr2555972 S21232159 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313665541 2021-03-23 17:22:05.708166 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 5 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-25 07:15:00 obsr316199 S23101161 Area P23 EBIRD 80.0 2.59 2.0 1 G1240533 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291678706 2021-03-19 16:32:34.732091 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 Floyd Bennett Field--Ecology Village Area L1099706 H 40.5863535 -73.8851488 2015-01-18 11:12:00 obsr1982614 S21399252 Traveling P22 EBIRD 90.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324089278 2021-03-26 07:56:20.588749 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Nickerson Beach L508149 H 40.5871823 -73.6024 2015-05-29 07:44:00 obsr2233270 S23713549 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312482126 2015-04-24 08:43:57 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Suffolk US-NY-103 US-NY_839 Cedar Beach County Park L464706 H 41.0349525 -72.387886 2015-04-22 15:00:00 obsr2586816 S23026066 Traveling P22 EBIRD 60.0 0.805 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314710742 2021-04-01 11:15:31.646886 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-01 09:40:00 obsr827632 S23165912 Traveling P22 EBIRD 205.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292530315 2021-11-09 21:36:59.310849 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 9 United States US New York US-NY Ulster US-NY-111 13.0 rosendale, ny L1465355 P 41.8499692 -74.081765 2015-01-21 10:30:00 obsr187701 S21486240 Traveling P22 EBIRD 240.0 41.843 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315921193 2021-04-01 11:30:42.037277 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 17:30:00 obsr1135516 S23232709 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312577708 2021-03-26 07:07:10.758746 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-04-24 15:42:00 obsr1958124 S23033179 Traveling P22 EBIRD 3.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293008423 2015-01-24 21:56:58 7200 species avibase-49D9148A Great Egret Ardea alba 4 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-01-24 10:00:00 obsr1962295 S21523730 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310056351 2021-03-19 16:10:30.527219 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Chemung US-NY-015 28.0 Park Station Park L168043 H 42.228996 -76.670654 2015-04-14 15:45:00 obsr2430746 S22866029 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304436919 2021-03-24 19:19:28.646223 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Allegany US-NY-003 28.0 Chenunda Drive L1473325 P 42.0884737 -77.9247651 2015-03-21 06:48:00 obsr1310178 S22452602 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304000327 2021-03-23 17:39:28.36772 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 30 United States US New York US-NY Tioga US-NY-107 28.0 Confluence Park, Owego L2011248 H 42.0957386 -76.2724543 2015-03-18 17:30:00 obsr317968 S22418917 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311280189 2020-03-22 07:58:01 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-19 12:15:00 obsr1696616 S22946681 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300136646 2021-04-01 11:30:42.037277 592 species avibase-3072CC16 Redhead Aythya americana 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-02-28 11:40:00 obsr1706920 S22114977 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305266917 2021-03-26 07:56:20.588749 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-03-25 15:40:00 obsr1296638 S22515761 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300667037 2021-03-23 16:48:08.60516 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 United States US New York US-NY Seneca US-NY-099 13.0 Rt. 414 Near Fayette L3452417 P 42.8155629 -76.8097544 2015-03-02 13:12:00 obsr528918 S22153777 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307053682 2021-03-23 16:48:08.60516 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-02 12:40:00 obsr354090 S22651691 Stationary P21 EBIRD 40.0 2.0 1 G1206132 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306017093 2021-11-15 03:06:58.889978 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-29 10:29:00 obsr431494 S22572837 Traveling P22 EBIRD 128.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291780261 2021-04-01 11:47:43.260314 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 4 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-01-05 07:40:00 obsr2409011 S21407113 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312083314 2021-03-23 17:00:13.087107 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-22 12:48:00 obsr2001485 S22998979 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308217146 2021-03-24 20:16:00.852773 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus N 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-07 09:39:00 obsr1958124 S22735689 Traveling P22 EBIRD 7.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320341612 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-05-16 12:30:00 obsr2072398 S23481428 Traveling P22 EBIRD 90.0 1.609 2.0 1 G1273988 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324566811 2021-03-26 06:52:34.887371 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-04-25 10:00:00 obsr2141910 S23744996 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319617356 2018-08-04 17:27:07 5155 species avibase-4880DC55 Virginia Rail Rallus limicola 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft NP L1078447 P 42.8492576 -78.8532543 2015-05-14 07:30:00 obsr1079517 S23442137 Traveling P22 EBIRD 180.0 2.414 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310123676 2018-08-04 17:09:03 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Lewis US-NY-049 14.0 Castorland: Ridge Road just S of village L3564796 P 43.8860242 -75.5087221 2015-04-13 14:59:00 obsr1558090 S22870761 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312865135 2015-04-30 10:51:03 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis X United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.4220913 -79.4281205 2015-04-25 15:30:00 obsr1092576 S23051953 Traveling P22 EBIRD 39.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313569622 2021-04-01 12:32:15.282601 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 50 United States US New York US-NY Nassau US-NY-059 30.0 Norman J. Levy Park and Preserve L284148 H 40.6471523 -73.5630634 2015-04-26 13:50:00 obsr564905 S23094960 Traveling P22 EBIRD 87.0 4.345 2.0 1 G1239968 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305668627 2021-04-01 10:53:25.818871 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Cortland US-NY-023 28.0 Cortland County L3388068 P 42.749705 -76.137767 2015-03-27 19:03:00 obsr2945658 S22547039 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309943898 2021-04-01 12:10:56.762826 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 2 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-14 08:30:00 obsr1918430 S22858131 Traveling P22 EBIRD 45.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298817619 2021-03-26 06:29:56.44369 406 species avibase-27B2749A Wood Duck Aix sponsa X United States US New York US-NY Monroe US-NY-055 13.0 stakeout Yellow-headed Blackbird, Jeffords Rd., Rush (2015) L3304693 H 43.00988 -77.62134 2015-01-24 16:00:00 obsr2955569 S22009547 Stationary P21 EBIRD 45.0 4.0 1 G1133880 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288498347 2021-03-30 06:01:28.020715 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 4 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-02 12:38:00 obsr241086 S21142387 Stationary P21 EBIRD 32.0 2.0 1 G1090923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288964400 2021-03-30 19:29:33.633096 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Inlet Pond County Park L689239 H 41.108233 -72.3808479 2015-01-03 07:15:00 obsr2528068 S21181987 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291948342 2021-04-01 12:14:19.266649 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree SP L283564 H 40.6394313 -73.2644575 2015-01-19 12:00:00 obsr547602 S21419963 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324308937 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-31 09:30:00 obsr585997 S23727869 Traveling P22 EBIRD 90.0 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313554994 2018-08-04 17:12:32 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Chemung US-NY-015 28.0 Sullivanville Dam L312295 H 42.1930881 -76.7819872 2015-04-27 15:23:00 obsr1696616 S23094045 Traveling P22 EBIRD 11.0 0.322 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS323603919 2021-04-01 10:47:08.851048 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-05-28 06:45:00 obsr646558 S23680069 Traveling P22 EBIRD 20.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316047718 2021-03-26 06:29:56.44369 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 1 United States US New York US-NY Monroe US-NY-055 13.0 Webster Park L164450 H 43.2575016 -77.4515302 2015-04-27 14:45:00 obsr2966702 S23240408 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299497762 2021-03-24 19:48:44.880783 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-02-24 11:00:00 obsr2449897 S22064615 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307855986 2021-04-01 11:15:31.646886 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 18 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-04-05 07:19:00 obsr150415 S22708732 Traveling P22 EBIRD 102.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307877962 2021-07-29 22:13:08.471938 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-05 obsr1220115 S22710266 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320085880 2021-03-24 05:37:45.927792 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-16 07:08:00 obsr502830 S23468507 Traveling P22 EBIRD 156.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291984549 2021-03-24 19:35:34.045988 1796 species avibase-018B3169 Horned Grebe Podiceps auritus N 7 United States US New York US-NY Erie US-NY-029 13.0 Sawusch Backyard L819844 P 43.0177877 -78.7195301 2015-01-19 10:00:00 obsr303203 S21422905 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305746234 2021-04-28 05:22:52.046239 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-03-28 08:09:00 obsr2404047 S22552969 Traveling P22 EBIRD 231.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294349387 2021-03-26 07:30:35.289997 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 my back yard Trumansburg L2594789 P 42.5410818 -76.6596392 2015-02-01 12:00:00 obsr2260025 S21629999 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301116347 2015-03-06 12:05:07 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-05 11:07:00 obsr2760150 S22186901 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311145116 2021-03-31 04:01:10.517395 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 07:35:00 obsr1711339 S22938342 Traveling P22 EBIRD 320.0 8.047 16.0 1 G1224971 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319409315 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 30.0 Central Park L2683792 P 40.7819713 -73.9565277 2015-05-13 13:00:00 obsr2363365 S23430147 Traveling P22 EBIRD 285.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292979191 2021-04-01 10:45:00.916278 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 5 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-01-24 10:44:00 obsr1348614 S21521435 Traveling P22 EBIRD 173.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316419825 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 5 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-05-06 07:01:00 obsr564905 S23261848 Traveling P22 EBIRD 32.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312026700 2021-03-26 07:46:52.994574 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-22 07:00:00 obsr1165633 S22995530 Traveling P22 EBIRD 156.0 5.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309123451 2021-11-09 21:29:33.71224 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 11 United States US New York US-NY Ulster US-NY-111 13.0 George Freer Memorial Beach L1396692 H 41.9102459 -73.9727658 2015-04-11 09:30:00 obsr2862523 S22802286 Stationary P21 EBIRD 20.0 20.0 1 G1214173 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289728789 2021-03-26 06:09:25.361188 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 40 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-30 Charles St L1811019 P 42.108367 -75.925906 2015-01-07 16:10:00 obsr1764243 S21241709 Traveling P22 EBIRD 58.0 40.072 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319197061 2021-04-01 12:26:53.827486 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula X United States US New York US-NY Albany US-NY-001 13.0 Rte 155 and Normanskill L3110282 P 42.6761668 -73.9061529 2015-05-12 07:55:00 obsr634484 S23418075 Traveling P22 EBIRD 65.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304082152 2021-04-01 11:24:19.637193 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 30 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-19 15:20:00 obsr983655 S22425586 Traveling P22 EBIRD 40.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309744521 2021-03-23 16:30:20.514143 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Oswego US-NY-075 13.0 Oswego County Airport--Howard Rd. L1814858 H 43.3553061 -76.3795964 2015-04-13 12:30:00 obsr2224244 S22844154 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304370932 2021-11-09 21:43:58.300436 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Ulster US-NY-111 13.0 Black Creek Preserve L2086582 H 41.8236532 -73.9574718 2015-03-21 09:40:00 obsr1136997 S22447923 Traveling P22 EBIRD 115.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293955688 2015-01-30 07:54:15 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-01-30 07:27:00 obsr666964 S21598889 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289829684 2022-02-18 10:47:29.953615 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 6 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-01-08 08:22:00 obsr1062070 S21249903 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312032608 2021-03-19 16:27:31.421791 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Headquarters L153039 H 43.112325 -78.4048443 2015-04-21 15:00:00 obsr783450 S22995910 Stationary P21 EBIRD 20.0 21.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314859940 2021-03-24 19:48:44.880783 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-05-02 08:33:00 obsr1124114 S23175137 Traveling P22 EBIRD 94.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306381537 2021-12-10 08:21:29.396662 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-21 11:50:00 obsr1190754 S22600307 Traveling P22 EBIRD 240.0 3.219 3.0 1 G1190626 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301367030 2021-04-01 12:35:52.669792 27616 species avibase-D77E4B41 American Robin Turdus migratorius 35 United States US New York US-NY Onondaga US-NY-067 13.0 US-NY-Phoenix-9434 Pendergast Rd L3460935 P 43.229934 -76.30642 2015-03-07 10:45:00 obsr1828453 S22207726 Stationary P21 EBIRD 38.0 4.0 1 G1168728 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295455797 2021-11-09 18:32:20.227374 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 9 United States US New York US-NY Dutchess US-NY-027 13.0 2122 New Hackensack Road, Poughkeepsie, New York, US (41.66, -73.874) L233101 P 41.6600962 -73.8740462 2015-02-07 07:10:00 obsr842638 S21718639 Stationary P21 EBIRD 195.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299658130 2021-11-09 18:27:18.873475 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Dutchess US-NY-027 13.0 Allen Road yard list, Salt Point L1943130 P 41.8350253 -73.8021156 2015-02-26 07:30:00 obsr2175245 S22077204 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308667531 2021-04-01 12:18:57.910168 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: Cass Pk: CWT L2309652 P 42.4559374 -76.5122471 2015-04-07 15:30:00 obsr2760150 S22769793 Traveling P22 EBIRD 68.0 2.317 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320252029 2021-03-30 19:07:52.958398 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 07:15:00 obsr1152226 S23476831 Traveling P22 EBIRD 345.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288606050 2021-04-01 11:49:53.573686 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 2 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-01-02 07:00:00 obsr352522 S21151408 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320025472 2021-03-19 16:06:54.047432 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-05-15 obsr1395007 S23464983 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319932537 2021-03-19 16:14:11.035882 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor1 L3513941 H 42.6076737 -75.8867458 2015-05-09 11:06:00 obsr2535282 S23459883 Stationary P21 EBIRD 17.0 2.0 1 G1272245 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305230790 2018-08-04 17:02:51 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 4 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Mud Lock L849114 P 42.9433552 -76.7422485 2015-03-25 12:33:00 obsr354090 S22512932 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297031901 2021-03-26 07:30:35.289997 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata 2 United States US New York US-NY Tompkins US-NY-109 28.0 399 Main St L1556260 P 42.4927048 -76.3720711 2015-02-15 09:00:00 obsr1245678 S21851393 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309973900 2021-11-09 22:38:24.637382 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 20 United States US New York US-NY Sullivan US-NY-105 28.0 Kiamesha Lake L1787103 H 41.6720017 -74.6661486 2015-04-14 09:00:00 obsr444155 S22860180 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295575438 2021-04-01 11:30:42.037277 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-02-08 12:00:00 obsr2033754 S21728033 Traveling P22 EBIRD 20.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290184948 2015-01-10 13:36:28 456 species avibase-D201EB72 American Wigeon Mareca americana 1 Male, Immature (1) United States US New York US-NY Nassau US-NY-059 Stepping Stone Park L1403484 H 40.8177813 -73.7565535 2015-01-10 10:30:00 obsr676630 S21278866 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291109406 2021-02-04 13:11:09.63048 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 85 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-E L3288970 P 39.52687 -72.39041 2015-01-11 12:00:00 obsr598381 S21353780 Traveling P22 EBIRD 60.0 19.795 44.0 1 G1108338 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305557845 2021-03-24 20:33:47.533911 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-03-27 07:18:00 obsr455249 S22538376 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302463746 2021-03-23 16:21:52.613913 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Ontario US-NY-069 13.0 14547 Seneca Castle L200700 PC 42.905224 -77.12749 2015-03-11 10:00:00 obsr354090 S22298848 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309830690 2021-03-23 16:30:20.514143 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 10:49:00 obsr2074043 S22850019 Stationary P21 EBIRD 299.0 5.0 1 G1218628 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299188870 2021-03-26 07:07:10.758746 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Richmond US-NY-085 30.0 Tottenville High School L884731 P 40.5282185 -74.1924763 2015-02-23 12:25:00 obsr1958124 S22041253 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300034430 2018-08-04 16:58:25 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-28 11:10:00 obsr916033 S22106237 Stationary P21 EBIRD 71.0 2.0 1 G1163151 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291448508 2021-03-23 17:23:45.772216 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 3 United States US New York US-NY Livingston US-NY-051 13.0 Fish Hatchery, Caledonia L810170 H 42.9856569 -77.8607512 2015-01-17 13:03:00 obsr749440 S21381253 Traveling P22 EBIRD 37.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315361067 2021-04-01 11:30:42.037277 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-03 07:00:00 obsr2976 S23201963 Traveling P22 EBIRD 300.0 3.219 2.0 1 G1249262 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292783715 2016-10-10 10:35:42 5948 species avibase-A47B0BD4 Least Sandpiper Calidris minutilla 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 06:45:00 obsr870166 S21506183 Traveling P22 EBIRD 75.0 18.99 44.0 1 G1108327 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310338733 2018-08-04 17:09:12 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-04-15 obsr1395007 S22885307 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314405760 2021-04-01 11:30:42.037277 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 15:25:00 obsr2793388 S23147082 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324300823 2021-03-26 06:29:56.44369 447 species avibase-C235A4D7 Gadwall Mareca strepera 3 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-31 06:45:00 obsr2449897 S23727297 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316304827 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Vale of Cashmere L1149386 H 40.6690561 -73.9683616 2015-05-05 11:00:00 obsr329727 S23255672 Traveling P22 EBIRD 90.0 4.023 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299012243 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Monroe US-NY-055 13.0 Lehigh Valley Trail at E Henrietta Rd. L3461801 H 43.0258149 -77.630397 2015-02-22 16:05:00 obsr1097423 S22025243 Traveling P22 EBIRD 25.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292144120 2021-03-30 19:07:52.958398 616 species avibase-25C94A8F Greater Scaup Aythya marila 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-20 11:45:00 obsr2152799 S21435543 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319558686 2021-03-26 07:46:52.994574 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-14 07:15:00 obsr2837502 S23438961 Traveling P22 EBIRD 195.0 6.759 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318922462 2021-12-08 07:58:41.562209 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-12 07:03:00 obsr2054320 S23402231 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313613996 2021-04-01 12:26:53.827486 27380 species avibase-E53FC25C Swainson's Thrush Catharus ustulatus 11 United States US New York US-NY Albany US-NY-001 13.0 Lions L2803969 P 42.772447 -73.80926 2015-04-27 15:56:00 obsr648176 S23097852 Traveling P22 EBIRD 178.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301953851 2021-04-01 11:15:31.646886 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 4 United States US New York US-NY Kings US-NY-047 Gravesend Bay, middle parking lot L1843449 H 40.6040297 -74.0243731 2015-03-08 15:00:00 obsr2603801 S22252733 Traveling P22 EBIRD 120.0 8.047 2.0 1 G1171896 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303136829 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-14 15:30:00 obsr1659461 S22351300 Traveling P22 EBIRD 65.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291062105 2021-04-01 11:24:19.637193 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-14 10:00:00 obsr1782363 S21349799 Stationary P21 EBIRD 60.0 2.0 1 G1111818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308203741 2021-04-01 10:49:39.496318 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Ledyard: Lake Rd: bluffs & field L2109288 P 42.7340502 -76.7060602 2015-04-05 16:54:00 obsr2760150 S22734628 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304391033 2021-12-03 21:50:44.732892 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-03-21 10:43:00 obsr1958124 S22449431 Traveling P22 EBIRD 17.0 0.805 2.0 1 G1186866 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314603495 2021-11-09 17:54:09.395076 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook School Rd L1122291 P 41.8551144 -73.6171532 2015-05-01 09:00:00 obsr1917973 S23159804 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292851166 2021-04-01 12:32:15.282601 26278 species avibase-A381417F House Wren Troglodytes aedon N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-23 09:50:00 obsr186539 S21511535 Traveling P22 EBIRD 150.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311968119 2021-03-24 05:37:45.927792 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-21 10:10:00 obsr319738 S22991526 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289259993 2021-03-26 06:29:56.44369 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-01-04 07:45:00 obsr2449897 S21204840 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314813520 2021-03-23 17:23:45.772216 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake Park L792637 H 42.7759994 -77.6113701 2015-05-01 14:20:00 obsr528918 S23172198 Traveling P22 EBIRD 72.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318332547 2021-03-26 07:53:57.664705 279 species avibase-3E04020B Brant Branta bernicla X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-10 06:30:00 obsr72341 S23368937 Stationary P21 EBIRD 780.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295391632 2021-04-01 12:32:15.282601 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-02-07 12:00:00 obsr247620 S21713397 Traveling P22 EBIRD 180.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304288729 2021-03-26 06:14:19.776945 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Columbia US-NY-021 13.0 Home, Spencertown L2667042 P 42.3317289 -73.5557671 2015-03-20 13:00:00 obsr1901122 S22441831 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302422289 2021-03-30 19:07:52.958398 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-11 09:20:00 obsr1536880 S22295883 Traveling P22 EBIRD 20.0 0.644 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316243623 2021-04-01 10:57:06.520339 28886 species avibase-AEF821EC Bohemian Waxwing Bombycilla garrulus 5 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-05-04 06:58:00 obsr2693145 S23252166 Traveling P22 EBIRD 89.0 1.609 1.0 1 G1253804 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299663326 2016-03-11 08:58:42 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 3 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - West Trail intersect spur trail to Winston Court L301740 P 42.4781834 -76.4567368 2015-02-26 07:44:00 obsr2307843 S22077641 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306913148 2019-07-23 17:28:12 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 15 United States US New York US-NY Niagara US-NY-063 13.0 Olcott Pier L1345996 H 43.3399055 -78.7176999 2015-04-02 10:17:00 obsr1181085 S22640811 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311255622 2021-03-26 06:29:56.44369 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-04-19 09:50:00 obsr934639 S22945146 Traveling P22 EBIRD 199.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322977723 2015-05-25 21:21:14 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-05-16 15:40:00 obsr2683910 S23638477 Stationary P21 EBIRD 6.0 2.0 1 G1290023 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288222577 2021-04-01 12:14:19.266649 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 5 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Ocean Parkway L286801 P 40.6159065 -73.402978 2015-01-01 10:45:00 obsr706483 S21119488 Traveling P22 EBIRD 120.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317652580 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 06:00:00 obsr1760429 S23332547 Traveling P22 EBIRD 600.0 0.805 2.0 1 G1262228 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325077466 2018-08-04 17:06:12 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 5 United States US New York US-NY Monroe US-NY-055 13.0 Martin Rd., N fields and transient pond L1170980 H 43.3450614 -77.8750849 2015-04-06 11:43:00 obsr334398 S23781519 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314153904 2021-11-15 03:06:58.889978 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 09:00:00 obsr2303233 S23131683 Traveling P22 EBIRD 210.0 4.828 4.0 1 G1243147 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309963887 2018-08-04 17:09:06 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-14 07:13:00 obsr1222746 S22859450 Rusty Blackbird Spring Migration Blitz P41 EBIRD 79.0 1.046 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295956227 2015-02-10 11:47:41 26890 species avibase-94A44032 European Starling Sturnus vulgaris 74 United States US New York US-NY Madison US-NY-053 28.0 Home to Coulter walkabout L790370 P 42.8733852 -75.8207703 2015-02-10 10:01:00 obsr2716320 S21757881 Traveling P22 EBIRD 85.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300455224 2021-03-24 20:33:47.533911 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-03-02 07:02:00 obsr1696616 S22139000 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309363434 2018-08-04 17:08:50 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Martin Rd., N fields and transient pond L1170980 H 43.3450614 -77.8750849 2015-04-12 11:20:00 obsr334398 S22817985 Stationary P21 EBIRD 14.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522911 2021-03-30 19:25:27.212017 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 2 United States US New York US-NY Richmond US-NY-085 30.0 Arbutus Lake L1096289 H 40.5227091 -74.1783006 2015-04-08 09:18:00 obsr155915 S22758872 Stationary P21 EBIRD 9.0 2.0 1 G1211603 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306919128 2021-11-09 17:49:28.345986 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 4 United States US New York US-NY Dutchess US-NY-027 13.0 Vanderbilt Mansion National Historic Site L1094717 H 41.7975558 -73.9413866 2015-04-02 11:01:00 obsr915089 S22641280 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298090684 2018-08-04 16:56:44 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 50 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-17 12:20:00 obsr2663400 S21947125 Stationary P21 EBIRD 60.0 2.0 1 G1151106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291898340 2021-03-24 20:23:39.258075 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-01-19 10:55:00 obsr2485753 S21416016 Traveling P22 EBIRD 44.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304736348 2021-11-15 03:06:58.889978 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-22 12:01:00 obsr2885680 S22474849 Traveling P22 EBIRD 167.0 0.966 2.0 1 G1188914 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295399603 2021-12-10 08:21:29.396662 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii N 8 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-07 11:00:00 obsr258431 S21713991 Traveling P22 EBIRD 240.0 0.805 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305878087 2021-03-24 20:33:47.533911 681 species avibase-407E2CA8 Common Merganser Mergus merganser 11 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail L1498729 H 42.4795201 -76.4551642 2015-03-28 14:10:00 obsr2154746 S22562492 Traveling P22 EBIRD 60.0 1.207 94.0 1 G1195982 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306063570 2021-11-15 03:06:58.889978 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-29 08:30:00 obsr599682 S22576070 Traveling P22 EBIRD 180.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297566999 2021-11-09 21:17:58.494129 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 8 United States US New York US-NY Ulster US-NY-111 28.0 Lippincott Rd., Wallkill L1097498 H 41.6194441 -74.1931401 2015-02-16 12:27:00 obsr613775 S21899579 Traveling P22 EBIRD 26.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307050473 2021-04-01 11:49:53.573686 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Queens US-NY-081 30.0 Ridgewood Reservoir L393007 H 40.688969 -73.8863182 2015-04-02 10:00:00 obsr247782 S22651439 Traveling P22 EBIRD 150.0 3.219 10.0 1 G1202002 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301829896 2021-04-01 12:18:57.910168 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 10 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-03-08 18:10:00 obsr620377 S22243747 Traveling P22 EBIRD 38.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315017669 2021-11-09 22:38:29.959869 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 7 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill WMA L2168766 P 41.528628 -74.529705 2015-04-29 06:44:00 obsr1788273 S23136220 Traveling P22 EBIRD 46.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323855939 2021-10-24 08:57:36.372025 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-29 17:00:00 obsr2499879 S23698602 Traveling P22 EBIRD 105.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315506863 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 12:45:00 obsr1077730 S23210042 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312962226 2021-03-30 12:05:58.533651 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-25 08:45:00 obsr2277801 S23057749 Historical P62 EBIRD 135.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312245572 2021-03-26 06:15:05.840405 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor18 L3513960 H 42.4410677 -76.0746521 2015-04-23 07:48:00 obsr1092576 S23010084 Stationary P21 EBIRD 5.0 2.0 1 G1232704 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310983172 2021-04-01 12:40:54.473014 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-18 14:04:00 obsr2893884 S22928408 Traveling P22 EBIRD 161.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297828831 2015-02-16 21:40:23 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Saratoga US-NY-091 14.0 30 Acre Woods L2268000 P 43.1003228 -73.8689804 2015-02-16 09:28:00 obsr2893884 S21924415 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288504812 2017-04-17 23:30:06 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 50 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Manitou Beach, Ontario Blvd. L667384 H 43.3241521 -77.7162155 2015-01-02 14:25:00 obsr2595828 S21142885 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309119072 2021-03-23 17:00:13.087107 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla N 4 United States US New York US-NY Tompkins US-NY-109 28.0 Mount Pleasant L99402 H 42.4581378 -76.3845436 2015-04-11 14:04:00 obsr1696616 S22802048 Stationary P21 EBIRD 60.0 2.0 1 G1215129 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304440796 2021-04-26 04:57:02.963704 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-21 10:20:00 obsr2404047 S22452846 Traveling P22 EBIRD 233.0 4.828 2.0 1 G1188498 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291781394 2021-03-26 06:59:15.841579 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-01-04 07:45:00 obsr2409011 S21293756 Stationary P21 EBIRD 540.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299331427 2018-01-07 20:13:45 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 10 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-02-24 07:29:00 obsr2693145 S22052293 Stationary P21 EBIRD 73.0 2.0 1 G1158431 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320377387 2015-05-16 23:02:08 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Castle Creek-538-798 King St L3648903 P 42.293692 -75.915775 2015-05-16 14:35:00 obsr246469 S23483251 Traveling P22 EBIRD 53.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304586887 2019-02-02 17:17:33 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-03-22 09:00:00 obsr1135516 S22463759 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315970460 2021-03-26 06:17:19.712573 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-04 09:58:00 obsr916033 S23235555 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314742907 2021-03-24 20:57:48.241391 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 4 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-04-30 17:00:00 obsr1708031 S23167877 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318658631 2021-04-01 11:30:42.037277 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 Female, Adult (1) United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-05-11 09:50:00 obsr1760429 S23386771 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324082964 2021-03-24 19:48:44.880783 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Manitou Beach Road - Owl Woods L1010800 P 43.3198701 -77.7262115 2015-05-07 09:10:00 obsr2966702 S23713175 Traveling P22 EBIRD 65.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294480026 2021-03-26 07:20:31.408164 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Suffolk US-NY-103 30.0 Soundview Avenue, Mattituck L3333176 P 41.022573 -72.542707 2015-02-01 15:00:00 obsr2528068 S21640125 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307356736 2021-03-30 19:22:51.561415 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Queens US-NY-081 30.0 Brookville Park L2687495 H 40.6629513 -73.7429361 2015-04-04 07:20:00 obsr2574755 S22673741 Traveling P22 EBIRD 43.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305353295 2021-11-15 03:06:58.889978 11494 species avibase-20C2214E American Kestrel Falco sparverius 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-25 13:20:00 obsr516108 S22522442 Traveling P22 EBIRD 85.0 0.483 2.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293174318 2018-08-04 16:55:15 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Madison US-NY-053 28.0 Seven Oaks Golf Course L2672447 P 42.8285661 -75.5365849 2015-01-25 13:15:00 obsr2843748 S21536866 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308523737 2021-04-01 11:54:40.172593 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-08 07:22:00 obsr396989 S22758930 Traveling P22 EBIRD_NJ 395.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303553986 2018-08-04 17:00:42 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP--North Point L2721599 H 42.548268 -76.601241 2015-03-14 11:12:00 obsr2871406 S22384509 Stationary P21 EBIRD 10.0 2.0 1 G1182541 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309328361 2021-11-09 21:35:18.646328 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-12 07:30:00 obsr1355788 S22815825 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307288154 2021-03-24 21:10:11.310781 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 6 United States US New York US-NY Saratoga US-NY-091 13.0 Betar Byway L1528567 H 43.2984602 -73.6411847 2015-04-03 08:50:00 obsr1222746 S22668622 Traveling P22 EBIRD 230.0 1.77 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291152757 2021-11-09 21:30:06.280029 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Ulster US-NY-111 13.0 Weston Rd., swamp L1411814 H 41.7887897 -74.0242416 2015-01-15 10:55:00 obsr1665312 S21357111 Traveling P22 EBIRD 45.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302162259 2021-03-26 06:12:17.833181 6526 species avibase-4D2FF6F1 Common Tern Sterna hirundo N 1 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.2483999 2015-03-10 10:00:00 obsr45779 S22268454 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295074372 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-02-04 09:30:00 obsr2759466 S21689557 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301624430 2021-03-26 07:56:20.588749 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Nassau US-NY-059 30.0 US-NY-Syosset-15-27 School House Ln L3463737 P 40.832926 -73.501903 2015-03-08 10:39:00 obsr2416285 S22226826 Stationary P21 EBIRD 15.0 1.0 1 G1170084 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309132431 2021-04-01 11:15:31.646886 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 5 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-11 08:10:00 obsr384772 S22802891 Traveling P22 EBIRD 320.0 8.047 2.0 1 G1214489 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302022507 2021-04-01 11:54:40.172593 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-09 15:15:00 obsr1958124 S22257912 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313504995 2021-04-01 12:32:15.282601 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 12 United States US New York US-NY Nassau US-NY-059 Morgan Memorial Park L1440142 H 40.8649583 -73.6531285 2015-04-27 11:15:00 obsr1296638 S23091178 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310095404 2015-04-14 20:43:10 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Powerline Cut L1477502 H 42.4801543 -76.4473029 2015-04-14 13:39:00 obsr1655171 S22868807 Traveling P22 EBIRD 13.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298469125 2021-03-23 16:39:03.255227 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 75 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-02-19 12:09:00 obsr1958124 S21979939 Traveling P22 EBIRD 25.0 0.483 2.0 1 G1153093 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322774893 2022-02-17 14:32:23.002448 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-23 08:30:00 obsr2289692 S23625787 Traveling P22 EBIRD 180.0 1.77 5.0 1 G1288834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288887796 2021-11-01 23:11:19.414929 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 80 United States US New York US-NY Kings US-NY-047 Coney Island Beach & Boardwalk L845817 H 40.5719793 -73.9778996 2015-01-03 08:15:00 obsr1575091 S21176211 Traveling P22 EBIRD 105.0 1.207 12.0 1 G1093829 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298886230 2018-08-04 16:57:54 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Columbia US-NY-021 14.0 Noster Kill X Rte 22, Copake L3406606 P 42.0940986 -73.5424268 2015-02-21 08:20:00 obsr2855945 S22015030 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302936103 2021-12-10 08:21:29.396662 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-13 17:45:00 obsr258431 S22333244 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320519652 2021-04-01 10:51:06.899622 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Town of Busti L2076554 P 42.0197126 -79.3120193 2015-05-17 07:15:00 obsr2910282 S23490824 Traveling P22 EBIRD 52.0 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293519877 2015-02-04 20:18:55 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 15 United States US New York US-NY Tompkins US-NY-109 28.0 ***Fitzpatrick home L124872 P 42.42879 -76.395065 2015-01-27 07:30:00 obsr2124298 S21564465 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295535810 2021-03-24 19:24:40.212356 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota N X United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-02-08 11:11:00 obsr2497657 S21724990 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320827907 2021-04-01 11:15:31.646886 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-17 06:40:00 obsr2519357 S23508336 Traveling P22 EBIRD 680.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321238758 2018-08-04 17:27:59 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Erie US-NY-029 13.0 Delaware Park--Rumsey Woods L1348448 H 42.9307931 -78.8698229 2015-05-19 11:30:00 obsr2071643 S23533380 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311772966 2021-03-23 17:00:13.087107 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-04-21 07:35:00 obsr455249 S22978707 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297122668 2021-03-19 16:42:57.886401 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Lewis US-NY-049 14.0 Port Leyden, NY L3359032 P 43.58151 -75.3480148 2015-02-15 10:15:00 obsr2132676 S21859712 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313046127 2021-03-24 20:16:00.852773 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-26 06:58:00 obsr1958124 S23062869 Traveling P22 EBIRD 31.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294243587 2015-02-03 16:41:24 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-01-25 09:10:00 obsr2113150 S21621745 Traveling P22 EBIRD 40.0 1.0 2.0 1 G1134598 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318577613 2021-03-26 07:56:20.588749 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-11 10:12:00 obsr904434 S23382266 Traveling P22 EBIRD 79.0 3.331 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306919549 2015-04-02 11:06:07 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-02 07:15:00 obsr666964 S22641307 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304014641 2021-03-24 20:20:08.05015 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 3 United States US New York US-NY St. Lawrence US-NY-089 13.0 Remington Recreation Trail L270558 H 44.6127667 -75.1665791 2015-03-19 08:12:00 obsr1558090 S22420011 Traveling P22 EBIRD 82.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309021138 2021-03-19 16:10:30.527219 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Chemung US-NY-015 28.0 Sperr Memorial Park L7578475 H 42.1465676 -76.9144776 2015-04-10 15:54:00 obsr1334267 S22795935 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310327413 2019-07-24 17:34:53 6361 issf avibase-0C55DFCC Iceland Gull Larus glaucoides Iceland Gull (kumlieni) Larus glaucoides kumlieni 16 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr238853 S22884547 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291450236 2021-03-26 07:07:10.758746 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 100 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-01-17 10:48:00 obsr1958124 S21381391 Traveling P22 EBIRD 21.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313233182 2018-08-04 17:12:21 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Saratoga US-NY-091 13.0 Ballston Creek Preserve L2837609 H 42.9666232 -73.8342962 2015-04-26 08:39:00 obsr1222746 S23073839 Traveling P22 EBIRD 147.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313257136 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 06:50:00 obsr1732267 S23075301 Traveling P22 EBIRD 300.0 4.023 2.0 1 G1239166 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307161508 2017-01-09 20:42:54 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Buck Pond L139795 H 43.2809982 -77.6672974 2015-04-03 11:45:00 obsr2504709 S22659627 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311787182 2020-05-13 10:56:53 662 species avibase-FB738385 Bufflehead Bucephala albeola 5 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Mexico-192 Sage Creek Dr L3572034 P 43.52566 -76.238123 2015-04-21 07:30:00 obsr1351949 S22979595 Traveling P22 EBIRD 60.0 0.805 2.0 1 G5326522 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307982601 2021-03-26 07:30:35.289997 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 4 United States US New York US-NY Tompkins US-NY-109 13.0 my back yard Trumansburg L2594789 P 42.5410818 -76.6596392 2015-04-06 11:35:00 obsr2260025 S22718194 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318245093 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-05-10 15:15:00 obsr2321296 S23364296 Stationary P21 EBIRD 99.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291957958 2018-08-04 16:54:02 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-19 12:25:00 obsr2448785 S21420802 Traveling P22 EBIRD 70.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312773413 2021-03-26 06:07:26.162322 31855 species avibase-5BFFE091 Grasshopper Sparrow Ammodramus savannarum 7 United States US New York US-NY Allegany US-NY-003 28.0 Cuba Lake L1326387 H 42.2508599 -78.2923025 2015-04-25 11:08:00 obsr1655171 S23046616 Traveling P22 EBIRD 29.0 8.047 3.0 1 G1240624 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS323885599 2021-04-01 12:26:53.827486 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.5747387 -74.1554202 2015-05-29 15:00:00 obsr30103 S23700807 Traveling P22 EBIRD 120.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303072206 2021-04-01 11:43:48.927316 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-03-13 obsr1338126 S22346256 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319804317 2021-03-26 07:52:59.845315 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-14 07:35:00 obsr1000124 S23453061 Area P23 EBIRD 75.0 2.59 2.0 1 G1271759 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306790769 2021-03-24 20:11:57.676649 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 175 United States US New York US-NY Oswego US-NY-075 13.0 Derby Hill Bird Observatory L982887 P 43.5273932 -76.2341309 2015-04-01 08:05:00 obsr979921 S22631836 Stationary P21 EBIRD 85.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322490962 2021-11-09 19:02:27.638861 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-05-24 09:10:00 obsr1732267 S23609051 Traveling P22 EBIRD 173.0 2.736 1.0 1 G1291337 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS327326685 2015-06-19 09:47:34 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-04 obsr39610 S23939487 Historical P62 EBIRD 2.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305245633 2021-04-01 12:24:45.865424 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 14 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-03-25 08:30:00 obsr1213920 S22514124 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316917144 2018-08-04 17:15:10 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-07 12:10:00 obsr646558 S23290223 Traveling P22 EBIRD 30.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310185752 2021-03-26 07:30:35.289997 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-15 07:32:00 obsr1655171 S22875035 Traveling P22 EBIRD 36.0 0.483 2.0 1 G1221849 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312834499 2021-03-26 06:39:43.334073 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 08:30:00 obsr800463 S23050150 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307924101 2021-03-26 07:30:35.289997 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Tompkins US-NY-109 13.0 Allan Treman State Marine Park L3542613 P 42.46125 -76.5155053 2015-04-05 16:30:00 obsr2535282 S22714008 Traveling P22 EBIRD 90.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291146043 2021-03-30 19:29:33.633096 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-15 07:45:00 obsr1137265 S21356575 Traveling P22 EBIRD 75.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312956018 2021-03-23 17:00:13.087107 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-25 19:40:00 obsr1418810 S23057372 Traveling P22 EBIRD 45.0 1.0 2.0 1 G1237114 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321434919 2021-03-19 16:54:27.713469 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-05-20 06:45:00 obsr286403 S23545356 Traveling P22 EBIRD 135.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321400578 2021-11-09 18:47:29.776257 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 10 United States US New York US-NY Dutchess US-NY-027 13.0 Salt Point Quarry L3649854 P 41.7984156 -73.7978911 2015-05-16 16:30:00 obsr763723 S23543118 Stationary P21 EBIRD 35.0 3.0 1 G1274936 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305651482 2021-03-23 17:26:08.495143 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 4 United States US New York US-NY Nassau US-NY-059 30.0 Grant Park, Hewlett L3155768 H 40.6445543 -73.6884264 2015-03-27 13:20:00 obsr916370 S22545594 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313627617 2021-11-09 20:37:49.117197 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 P C3 P United States US New York US-NY Putnam US-NY-079 28.0 Manitou Point Preserve L1070091 H 41.3373022 -73.96174 2015-04-27 17:38:00 obsr2188716 S23098691 Traveling P22 EBIRD 109.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS638261946 2021-03-26 06:17:19.712573 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Erie US-NY-029 13.0 Knox Farm SP L160588 H 42.7715237 -78.636327 2015-05-09 obsr219053 S47080372 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288326002 2015-01-01 20:29:00 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 8 United States US New York US-NY Wayne US-NY-117 13.0 Pilgrimport Road North L676376 P 43.1880313 -76.9803429 2015-01-01 08:10:00 obsr195058 S21128497 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315980185 2021-03-26 06:39:43.334073 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Shakespeare Garden L1673419 H 40.7798887 -73.9697911 2015-05-02 12:27:00 obsr2885680 S23236111 Traveling P22 EBIRD 27.0 0.161 3.0 1 G1252519 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312872204 2021-04-01 11:54:40.172593 30494 species avibase-240E3390 House Sparrow Passer domesticus N 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-25 16:15:00 obsr1958124 S23052357 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322433150 2021-04-01 10:57:06.520339 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 US-NY-Crown Point - 44.0264x-73.4281 - May 24, 2015, 8:12 AM L3668015 P 44.026384 -73.428057 2015-05-24 07:45:00 obsr369720 S23605911 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307012297 2021-03-22 09:17:32.016297 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Oneida US-NY-065 13.0 Schneibles, South Bay, Oneida Lake L3529803 P 43.1649505 -75.7373106 2015-04-02 16:45:00 obsr666964 S22648637 Stationary P21 EBIRD 15.0 2.0 1 G1201805 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314862201 2015-05-02 10:15:27 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--South Meadow Trail L591205 H 43.0076599 -77.5658798 2015-05-02 09:17:00 obsr1097423 S23175259 Traveling P22 EBIRD 40.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321128376 2021-11-15 03:06:58.889978 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-18 18:40:00 obsr1548221 S23526009 Traveling P22 EBIRD 22.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303262614 2021-03-23 16:52:36.900075 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-03-15 11:10:00 obsr2528068 S22360854 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310948088 2022-02-27 09:35:49.066489 337 species avibase-694C127A Mute Swan Cygnus olor 11 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-04-18 10:00:00 obsr545221 S22926250 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322091280 2022-01-20 09:38:40.245267 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-21 08:30:00 obsr896341 S23586336 Traveling P22 EBIRD 120.0 4.828 7.0 1 G1285032 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311700190 2021-03-26 06:12:17.833181 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-04-20 07:30:00 obsr479109 S22974263 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300600503 2021-11-09 19:30:40.312662 26109 species avibase-BAC33609 Brown Creeper Certhia americana N 4 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR (NY) L1238320 H 41.2865783 -74.5264006 2015-02-21 11:10:00 obsr271871 S22149356 Stationary P21 EBIRD 60.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290395775 2021-03-30 19:37:33.521815 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-01-11 10:54:00 obsr2914424 S21296174 Traveling P22 EBIRD 85.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294980884 2022-01-20 13:44:29.539827 6339 species avibase-8535345B Herring Gull Larus argentatus 18 United States US New York US-NY Seneca US-NY-099 US-NY_803 13.0 Geneva Lakefront Park, birds over water ONLY (Seneca Co.) L360643 H 42.8659781 -76.9714307 2015-02-04 10:25:00 obsr528918 S21680839 Traveling P22 EBIRD 55.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296044143 2018-12-25 13:19:10 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 Unknown Sex, Juvenile (2) United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-10 15:20:00 obsr979921 S21764655 Traveling P22 EBIRD 40.0 0.322 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293233963 2021-11-09 17:50:20.071794 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 8 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook School Road, Millbrook, NY L1098111 P 41.8453963 -73.6169815 2015-01-25 08:00:00 obsr1062217 S21541592 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302502309 2021-03-26 07:07:10.758746 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Richmond US-NY-085 30.0 Stately Richman Manor L2489256 P 40.6333994 -74.104638 2015-03-11 10:00:00 obsr2904420 S22301757 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296137422 2018-08-04 16:56:04 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-02-11 09:10:00 obsr1792012 S21771954 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298695385 2021-04-01 11:49:53.573686 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 70 United States US New York US-NY Queens US-NY-081 30.0 Flushing Meadows Corona Park--Meadow Lake L1788995 H 40.7351876 -73.8404751 2015-02-21 07:00:00 obsr2574755 S21999378 Traveling P22 EBIRD 10.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303700171 2021-03-19 16:43:17.120646 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Madison US-NY-053 13.0 Caz Patch L1138637 P 42.9656245 -75.8726978 2015-03-15 08:00:00 obsr735566 S22395572 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323719020 2021-03-26 06:29:56.44369 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-28 06:41:00 obsr2595828 S23689616 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325826094 2021-10-31 10:28:34.83045 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-22 07:00:00 obsr1500485 S23831326 Traveling P22 EBIRD 720.0 8.0 2.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309851061 2021-03-26 07:52:59.845315 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-13 07:30:00 obsr1000124 S22851330 Area P23 EBIRD 108.0 2.59 2.0 1 G1218813 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292257593 2021-04-01 12:32:15.282601 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-20 14:50:00 obsr1352186 S21443822 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS304951526 2021-12-10 08:21:29.396662 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 6 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-21 11:50:00 obsr2161273 S22491189 Traveling P22 EBIRD 240.0 3.219 3.0 1 G1190626 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319555401 2021-04-01 12:31:09.823741 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 5 United States US New York US-NY Livingston US-NY-051 13.0 PFA South Caledonia route L1168673 P 42.9306621 -77.8268051 2015-05-14 05:25:00 obsr1060479 S23438769 Traveling P22 EBIRD 84.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325151111 2019-07-23 17:28:22 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr109265 S23786939 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS307320012 2021-12-27 21:06:26.931657 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY St. Lawrence US-NY-089 US-NY_775 13.0 Upper & Lower Lakes WMA--Observation Tower (Hwy. 15) L270474 H 44.5796495 -75.3091865 2015-04-03 15:50:00 obsr1558090 S22670924 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304472231 2021-04-01 12:18:57.910168 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 NY:TOM:Ithaca: home to Renwick Sanc, Newman Golf, Jetty Wds, Stewart Pk L2136757 P 42.4588006 -76.5057528 2015-03-21 13:57:00 obsr2760150 S22455304 Traveling P22 EBIRD 174.0 7.306 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291972836 2021-11-09 18:43:20.231443 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 140 Deer Ridge Drive, Staatsburg, NY L3304431 P 41.8697691 -73.847958 2015-01-17 09:42:00 obsr1062217 S21422007 Stationary P21 EBIRD 13.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298128133 2021-04-01 11:47:43.260314 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 27 United States US New York US-NY Oswego US-NY-075 13.0 104 - East limits of Oswego L3395194 P 43.4654751 -76.4275074 2015-02-14 14:45:00 obsr2113150 S21950155 Traveling P22 EBIRD 15.0 3.0 2.0 1 G1154639 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314777742 2021-03-24 20:53:39.352228 7429 species avibase-1327AC55 Osprey Pandion haliaetus 7 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-01 18:10:00 obsr2512689 S23170134 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295530027 2021-03-26 07:30:35.289997 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 15 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-02-08 08:10:00 obsr2871406 S21724571 Stationary P21 EBIRD 12.0 3.0 1 G1138945 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295548302 2015-02-08 12:22:49 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Hoyt-Pileated Trail intersect w spur to CLO L301129 P 42.47886 -76.4462 2015-02-08 09:03:00 obsr2307843 S21725910 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304943765 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-23 17:00:00 obsr544268 S22490528 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316810101 2018-12-30 10:00:49 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-07 06:25:00 obsr2321296 S23284435 Traveling P22 EBIRD 233.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310168440 2016-02-17 10:40:11 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Ontario US-NY-069 13.0 Fawn Ridge, Bristol L1020468 P 42.7886141 -77.4285507 2015-04-15 07:00:00 obsr1752243 S22873818 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303574612 2021-03-30 19:29:33.633096 7429 species avibase-1327AC55 Osprey Pandion haliaetus N 7 United States US New York US-NY Suffolk US-NY-103 30.0 Swan Lake, Patchogue L296215 P 40.7689182 -72.9940066 2015-01-19 10:20:00 obsr395994 S22385952 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299162798 2021-11-09 19:56:57.990702 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 Male, Adult (1) United States US New York US-NY Orange US-NY-071 28.0 Rt. 17 at Rt. 52 L3409872 P 41.59033 -74.24421 2015-02-22 12:14:00 obsr1431246 S22039242 Incidental P20 EBIRD 2.0 0 G1157837 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305848929 2021-03-23 16:39:03.255227 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Richmond US-NY-085 30.0 Lemon Creek, bridge at Hylan Blvd. L916052 H 40.517649 -74.2011237 2015-03-28 15:08:00 obsr1893950 S22560326 Traveling P22 EBIRD 5.0 0.322 2.0 1 G1195275 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314342093 2015-04-30 14:39:59 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Jones Park L1598748 H 42.0156115 -75.983731 2015-04-30 09:55:00 obsr1830659 S23143038 Traveling P22 EBIRD 95.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309478181 2017-08-16 17:03:37 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Wayne US-NY-117 13.0 WAY-2-BroadwayRd L208364 P 43.3108562 -76.7812207 2015-04-12 09:36:00 obsr278057 S22824861 Stationary P21 EBIRD 123.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319593904 2021-03-19 16:27:31.421791 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Feeder Rd. Trail (Genesee Co.) L153041 H 43.1242469 -78.429129 2015-05-14 14:02:00 obsr800690 S23440861 Traveling P22 EBIRD 78.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294322493 2021-03-30 19:13:38.458673 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 7 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-02-01 09:50:00 obsr2595828 S21627854 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294374273 2021-11-09 19:48:29.257082 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 75 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region L2435952 P 41.3280998 -74.4639587 2015-02-01 09:00:00 obsr1872991 S21631847 Traveling P22 EBIRD 210.0 24.14 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306173859 2021-04-01 11:30:42.037277 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-03-29 13:15:00 obsr601383 S22584535 Traveling P22 EBIRD 20.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312475458 2018-08-04 17:11:55 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Lakeland County Park L2680286 H 40.8044899 -73.1562702 2015-04-23 12:51:00 obsr1987335 S23025599 Rusty Blackbird Spring Migration Blitz P41 EBIRD 29.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315646806 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 06:00:00 obsr1135516 S23217699 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301647577 2015-03-08 12:37:34 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Eagle Park, W. River Rd L2078703 P 43.0163208 -79.0203667 2015-03-08 10:36:00 obsr1187276 S22228456 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298078707 2021-03-24 20:33:47.533911 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Huis L2298977 P 42.481722 -76.397413 2015-02-17 11:30:00 obsr1008519 S21946092 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299325916 2021-03-23 16:45:39.358281 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-02-23 07:15:00 obsr2211750 S22051793 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1348025842 2022-02-20 21:19:47.419139 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-16 09:30:00 obsr2807282 S103313245 Traveling P22 EBIRD 180.0 0.805 2.0 1 G7909914 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294426463 2015-02-01 17:15:07 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3332621 P 42.693501 -77.711644 2015-02-01 14:30:00 obsr682121 S21636019 Stationary P21 EBIRD 164.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322772879 2022-02-23 10:49:57.435801 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Jefferson US-NY-045 13.0 Ashland Flats WMA--Dike L2236085 H 44.1163071 -76.1958504 2015-05-25 09:19:00 obsr1302604 S23625659 Traveling P22 EBIRD 95.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319853362 2015-05-15 13:33:15 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY Monroe US-NY-055 13.0 Lehigh Swamp L491875 H 43.1081894 -77.6410675 2015-05-15 12:08:00 obsr2678807 S23455664 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314186680 2021-03-26 07:52:59.845315 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 6 Female, Adult (5); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-29 07:45:00 obsr1000124 S23133748 Area P23 EBIRD 95.0 2.59 2.0 1 G1243714 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304441016 2021-04-01 10:51:50.668112 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 1 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Dam L160699 H 42.0864692 -76.8096739 2015-03-21 09:32:00 obsr1092576 S22452859 Stationary P21 EBIRD 18.0 2.0 1 G1187060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298459516 2021-11-09 18:09:08.212564 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Dutchess US-NY-027 US-NY_870 13.0 Thompson Pond Preserve L123019 H 41.9677583 -73.6819272 2015-02-11 09:00:00 obsr1339050 S21979163 Traveling P22 EBIRD 180.0 3.219 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314273108 2021-03-23 16:30:20.514143 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 4 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Mexico-192 Sage Creek Dr L3572034 P 43.52566 -76.238123 2015-04-30 06:44:00 obsr1351949 S23139360 Traveling P22 EBIRD 55.0 1.609 2.0 1 G5326508 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322305554 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-22 13:15:00 obsr145923 S23598388 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307413831 2021-03-26 07:56:20.588749 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Nassau US-NY-059 30.0 001home, bethpage, ny L1333196 P 40.719284 -73.4770712 2015-04-04 07:00:00 obsr547602 S22677974 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303266153 2015-03-15 13:38:14 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Partridge Hill Road L783101 P 43.2585965 -75.15183 2015-03-13 16:52:00 obsr316199 S22361144 Traveling P22 EBIRD 14.0 4.184 3.0 1 G1180567 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311002306 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 14:36:00 obsr2493447 S22929625 Traveling P22 EBIRD 194.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316891220 2021-11-02 20:32:06.137153 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-07 12:15:00 obsr317968 S23288722 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290370244 2018-08-04 16:52:56 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L462664 P 41.2146028 -73.8659227 2015-01-09 11:00:00 obsr2078798 S21294068 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309462979 2021-04-01 11:15:31.646886 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-12 13:00:00 obsr173911 S22823801 Traveling P22 EBIRD 203.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299775248 2018-08-04 16:58:18 26278 species avibase-A381417F House Wren Troglodytes aedon 24 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-02-26 14:03:00 obsr2186523 S22086308 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322288911 2021-04-01 11:15:31.646886 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:15:00 obsr2078092 S23597477 Traveling P22 EBIRD 510.0 8.047 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313611457 2021-04-01 11:30:42.037277 242 species avibase-D3A260BC Snow Goose Anser caerulescens N 60 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-27 15:30:00 obsr2793388 S23097658 Traveling P22 EBIRD 180.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312738685 2022-02-18 10:47:29.953615 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-25 09:19:00 obsr1062070 S23044429 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310094886 2018-08-04 17:09:01 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 20 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Tschache Pool L99391 H 42.9892318 -76.7711279 2015-04-13 09:49:00 obsr2683910 S22868763 Stationary P21 EBIRD 6.0 2.0 1 G1220003 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308620557 2022-01-30 05:40:13.589887 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-07 15:00:00 obsr2585137 S22766189 Traveling P22 EBIRD 60.0 1.609 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321444321 2021-03-26 06:29:56.44369 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Monroe US-NY-055 13.0 374 Cromwell L1952255 P 43.1326227 -77.5253892 2015-05-07 11:00:00 obsr1463039 S23545992 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307944699 2021-03-26 07:30:35.289997 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-06 08:36:00 obsr1655171 S22715456 Stationary P21 EBIRD 19.0 2.0 1 G1212805 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323950988 2018-08-06 22:31:26 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Broome US-NY-007 28.0 Aquaterra Park L209925 H 42.032165 -75.939463 2015-05-30 08:00:00 obsr879105 S23705148 Traveling P22 EBIRD 180.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314116428 2021-04-01 11:23:42.170869 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 1 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-04-29 06:44:00 obsr589593 S23129457 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316861501 2018-08-04 17:15:06 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Essex US-NY-031 13.0 Maple Meadows L4115608 P 44.0422008 -73.4797356 2015-05-07 07:00:00 obsr2769235 S23287066 Traveling P22 EBIRD 80.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311784240 2018-08-26 17:23:02 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-20 16:50:00 obsr1655171 S22979424 Traveling P22 EBIRD 4.0 0.322 2.0 1 G1230767 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288254399 2021-11-09 21:31:40.219848 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 5 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-01-01 11:00:00 obsr2862523 S21122136 Traveling P22 EBIRD 120.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302073169 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 20 United States US New York US-NY New York US-NY-061 Randalls Island--NE fields and shoreline L1785381 H 40.7943072 -73.9138235 2015-03-08 13:15:00 obsr2105033 S22262066 Traveling P22 EBIRD 40.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308207894 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-07 06:43:00 obsr1433400 S22734934 Traveling P22 EBIRD 129.0 4.667 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319424735 2021-03-19 16:25:42.617988 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Essex US-NY-031 13.0 Port Henry Pier L478351 H 44.0499664 -73.4508991 2015-05-09 08:27:00 obsr2693145 S23431036 Traveling P22 EBIRD 24.0 0.161 2.0 1 G1269862 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293228652 2018-08-04 16:55:17 279 species avibase-3E04020B Brant Branta bernicla X United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-01-25 16:15:00 obsr2902954 S21541164 Traveling P22 EBIRD 20.0 0.483 2.0 0 G1123100 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309782329 2021-03-26 07:42:06.558742 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 3 United States US New York US-NY Washington US-NY-115 13.0 New Swamp Rd. L3805899 H 43.3275378 -73.5075903 2015-04-13 08:22:00 obsr1222746 S22846579 Traveling P22 EBIRD 47.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289771124 2021-03-24 20:58:53.646623 406 species avibase-27B2749A Wood Duck Aix sponsa 3 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-01-07 10:50:00 obsr72341 S21245027 Stationary P21 EBIRD 330.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295372178 2019-07-23 17:27:17 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 185 United States US New York US-NY Suffolk US-NY-103 30.0 Breakwater L457165 P 41.0134625 -72.5607249 2015-02-07 14:21:00 obsr2485753 S21711863 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308754093 2021-03-26 07:30:35.289997 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 160 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-05 11:35:00 obsr2683910 S22776741 Traveling P22 EBIRD 74.0 1.127 2.0 1 G1212786 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294062979 2021-03-26 07:30:35.289997 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 2 United States US New York US-NY Tompkins US-NY-109 13.0 Trumansburg L122670 T 42.54227 -76.66607 2015-01-31 08:00:00 obsr2822386 S21607553 Stationary P21 EBIRD 540.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303140407 2019-07-23 17:26:55 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Campground area L901648 H 43.3610073 -77.9600143 2015-01-11 11:01:00 obsr334398 S22351622 Traveling P22 EBIRD 158.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323738598 2021-11-09 18:39:49.944201 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Dutchess US-NY-027 US-NY_756 28.0 Great Swamp, Dutcher Ave Pawling L2927194 P 41.55292 -73.60323 2015-05-29 09:05:00 obsr1732267 S23690817 Traveling P22 EBIRD 11.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330448448 2021-04-01 11:30:42.037277 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca X United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--22nd-29th St. L1392119 H 40.7512103 -74.0085463 2015-05-17 07:11:00 obsr2863596 S24165140 Traveling P22 EBIRD 99.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321247028 2015-05-19 14:43:58 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-17 13:25:00 obsr1463039 S23533838 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294971274 2021-11-15 03:06:58.889978 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-04 16:10:00 obsr870166 S21680154 Traveling P22 EBIRD 47.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308635018 2019-04-19 13:17:53 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 8 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-09 10:40:00 obsr2321296 S22767282 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298261265 2021-03-26 07:20:31.408164 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Northville, New York L676461 P 40.9819715 -72.6113892 2015-02-16 08:00:00 obsr194364 S21961492 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290184389 2021-03-30 19:43:32.881136 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-01-10 08:45:00 obsr258431 S21278702 Stationary P21 EBIRD 60.0 39.0 1 G1103905 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306915100 2015-04-02 10:39:27 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 Male, Adult (3); Female, Adult (2) United States US New York US-NY Westchester US-NY-119 30.0 Wilton L963070 P 41.0891766 -73.8526082 2015-02-02 14:30:00 obsr1538953 S22640963 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316070989 2021-03-19 16:44:35.607263 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-05 10:23:00 obsr2933610 S23241686 Traveling P22 EBIRD 60.0 0.322 2.0 1 G1254139 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314745644 2021-03-26 07:52:40.224846 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-05-01 14:00:00 obsr1708031 S23168019 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305888737 2021-11-09 19:57:10.419973 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region—Lynch Avenue L3521344 P 41.3556157 -74.4491529 2015-03-28 16:20:00 obsr2346161 S22563377 Traveling P22 EBIRD 34.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302476749 2021-03-26 06:55:00.227271 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-03-11 13:43:00 obsr606693 S22299823 Traveling P22 EBIRD 12.0 0.724 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307313559 2021-04-01 11:49:53.573686 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Queens US-NY-081 30.0 Brookville Park L2687495 H 40.6629513 -73.7429361 2015-04-02 10:37:00 obsr1982614 S22670459 Traveling P22 EBIRD 65.0 0.499 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308694583 2021-11-09 21:19:57.847424 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Ulster US-NY-111 28.0 Tricor Ave L1153679 P 41.7441655 -74.0853979 2015-04-09 09:00:00 obsr2434888 S22772146 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307099896 2016-05-02 20:54:06 406 species avibase-27B2749A Wood Duck Aix sponsa 3 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-04-03 07:28:00 obsr2377251 S22655086 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305258811 2021-03-26 07:20:31.408164 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 1 United States US New York US-NY Suffolk US-NY-103 30.0 West Islip L2173144 P 40.7062511 -73.3065621 2015-03-15 13:46:00 obsr564905 S22515187 Traveling P22 EBIRD 16.0 0.483 2.0 1 G1192353 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302047820 2021-11-09 21:23:47.89824 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-03-08 16:30:00 obsr717528 S22259969 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320589783 2021-11-15 03:06:58.889978 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 07:55:00 obsr2475766 S23494549 Traveling P22 EBIRD 220.0 2.414 7.0 1 G1275166 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315481315 2021-04-01 11:30:42.037277 662 species avibase-FB738385 Bufflehead Bucephala albeola 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 09:00:00 obsr2319444 S23208578 Traveling P22 EBIRD 300.0 3.219 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310007064 2018-08-04 17:09:03 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Lakeland County Park L2680286 H 40.8044899 -73.1562702 2015-04-13 13:15:00 obsr1987335 S22862407 Rusty Blackbird Spring Migration Blitz P41 EBIRD 7.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303550455 2021-03-19 16:44:35.607263 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Monroe US-NY-055 13.0 personal location L3492643 P 43.2017973 -77.7033806 2015-03-16 13:00:00 obsr2845160 S22384250 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297758629 2015-03-06 10:05:09 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-01-25 09:30:00 obsr2360922 S21917764 Stationary P21 EBIRD 45.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304174752 2020-01-27 21:36:43 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-03-20 09:15:00 obsr1828453 S22432730 Traveling P22 EBIRD 16.0 0.322 2.0 1 G1185814 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302664100 2021-04-01 11:49:53.573686 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-12 07:10:00 obsr1982614 S22314256 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313682210 2021-04-01 11:54:40.172593 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-26 11:00:00 obsr1531062 S23102197 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308974749 2018-06-07 12:05:17 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 Female, Adult (2); Male, Adult (3) United States US New York US-NY Saratoga US-NY-091 13.0 Fenimore Bridge, Hudson Falls, NY L1476893 P 43.2979263 -73.5901746 2015-04-10 09:54:00 obsr1222746 S22792607 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307973058 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-06 09:21:00 obsr2321296 S22717520 Traveling P22 EBIRD 124.0 1.931 2.0 1 G1208105 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305978760 2015-03-29 09:42:47 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 125 United States US New York US-NY Montgomery US-NY-057 13.0 Mohawk River near NYS Thruway marker 178 L3522457 P 42.9339927 -74.3039274 2015-03-28 14:45:00 obsr1847946 S22570088 Incidental P20 EBIRD_CAN 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298194731 2021-03-24 05:37:45.927792 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 85 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-02-18 09:20:00 obsr502830 S21955598 Traveling P22 EBIRD 34.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292284490 2021-03-26 08:14:04.726922 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Warren US-NY-113 13.0 Warren Cty Bikeway - Country Club Rd parking L748823 P 43.339524 -73.6670981 2015-01-21 08:58:00 obsr1222746 S21446112 Traveling P22 EBIRD 45.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317625978 2021-11-09 17:42:28.618392 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Dutchess US-NY-027 28.0 Slocum-Mostachetti Preserve L1022232 H 41.6475828 -73.5758257 2015-04-25 08:00:00 obsr1339050 S23331052 Traveling P22 EBIRD 180.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320076053 2021-04-01 11:30:42.037277 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 14:14:00 obsr1353449 S23468033 Traveling P22 EBIRD 120.0 3.219 2.0 1 G1273002 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290202725 2021-03-23 16:39:03.255227 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 8 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-01-10 11:25:00 obsr1958124 S21280304 Traveling P22 EBIRD 15.0 0.483 2.0 1 G1103719 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304039038 2021-11-09 19:47:29.45622 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Winding Waters Trail (NY) L2393335 H 41.2878143 -74.5339547 2015-03-19 10:50:00 obsr1597672 S22422278 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300367787 2021-03-26 06:38:32.090082 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 2 United States US New York US-NY Montgomery US-NY-057 13.0 Hwy 5 and Old State Rd L3449667 P 43.0058044 -74.7368091 2015-03-01 13:37:00 obsr1708031 S22133049 Traveling P22 EBIRD 11.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299839427 2021-03-24 20:21:40.993321 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Seneca US-NY-099 13.0 Cove L678244 P 42.6487254 -76.8698493 2015-02-27 obsr2731440 S22091250 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309760869 2021-03-24 19:27:13.077399 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-04-13 11:35:00 obsr142874 S22845167 Stationary P21 EBIRD 145.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316835505 2015-05-07 11:34:59 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-06 08:05:00 obsr1561508 S23285750 Traveling P22 EBIRD 65.0 0.805 2.0 1 G1255843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310912521 2015-05-08 13:56:18 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm sugarbush transect L3270338 P 42.3482684 -76.2983322 2015-04-18 09:09:00 obsr455249 S22924001 Traveling P22 EBIRD 18.0 0.628 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294962440 2021-03-26 07:52:40.224846 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 Male, Adult (1) United States US New York US-NY Fulton US-NY-035 13.0 Youker's Bush Road L660482 P 43.0341674 -74.6843089 2015-02-03 13:30:00 obsr1000124 S21679517 Traveling P22 EBIRD 21.0 3.862 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308114422 2021-03-30 19:03:54.667077 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 18 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-04-06 09:21:00 obsr916033 S22727535 Traveling P22 EBIRD 74.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300246937 2021-03-24 20:04:09.481678 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-02-25 07:30:00 obsr2892286 S22123813 Stationary P21 EBIRD 240.0 2.0 1 G1163363 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324166117 2021-04-01 12:26:53.827486 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Karner Barrens East L553196 H 42.7184131 -73.8640168 2015-05-31 09:15:00 obsr2270510 S23718637 Traveling P22 EBIRD 25.0 0.483 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317235051 2018-08-04 17:15:21 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Livingston US-NY-051 13.0 Mackay Wildlife Preserve, Caledonia L902499 H 42.9762774 -77.8612876 2015-05-08 15:22:00 obsr749440 S23307909 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332448477 2021-03-26 06:29:56.44369 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-04-18 18:53:00 obsr334398 S24315888 Traveling P22 EBIRD 38.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308232537 2021-03-23 16:39:03.255227 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-07 11:04:00 obsr1958124 S22736911 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296408443 2021-03-26 07:20:31.408164 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Suffolk US-NY-103 30.0 Home L2620856 P 40.867343 -73.4006774 2015-02-13 10:00:00 obsr2404263 S21795905 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS341226802 2015-09-08 17:55:06 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-10 obsr2167884 S24951605 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098641 2021-12-23 15:00:47.137144 26890 species avibase-94A44032 European Starling Sturnus vulgaris 22 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-01-03 11:50:00 obsr1598543 S21192679 Stationary P21 EBIRD 8.0 4.0 1 G1095580 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302414242 2021-03-26 06:19:47.07548 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Essex US-NY-031 13.0 Tin Pan Alley L3437247 P 43.834301 -73.42659 2015-03-10 11:23:00 obsr2420101 S22295178 Stationary P21 EBIRD 21.0 2.0 1 G1174680 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310406267 2021-04-01 10:45:00.916278 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-16 08:50:00 obsr128156 S22890020 Rusty Blackbird Spring Migration Blitz P41 EBIRD 35.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309672071 2021-03-26 07:56:20.588749 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Nassau US-NY-059 30.0 N 2nd St. L2585098 P 40.738664 -73.6975363 2015-04-13 08:00:00 obsr143739 S22838605 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316794184 2021-03-24 19:35:34.045988 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Erie US-NY-029 13.0 Ecology & Environment, Inc. (Private) L682760 P 42.9367576 -78.6593628 2015-05-07 07:25:00 obsr48167 S23283640 Traveling P22 EBIRD 100.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307052311 2021-03-24 20:58:53.646623 505 species avibase-C732CB10 American Black Duck Anas rubripes N X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-02 13:40:00 obsr72341 S22651586 Stationary P21 EBIRD 200.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317077022 2021-04-01 11:30:42.037277 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park, Manhattan L1305077 P 40.7756018 -73.968544 2015-05-07 11:20:00 obsr827632 S23299513 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294118239 2017-09-06 22:40:19 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 10 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point, lighthouse overlook L2451456 H 41.0709727 -71.8565091 2015-01-01 14:30:00 obsr1224027 S21611706 Traveling P22 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294331207 2021-11-09 21:43:58.300436 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Ulster US-NY-111 13.0 Black Creek Preserve L2086582 H 41.8236532 -73.9574718 2015-01-31 07:38:00 obsr1136997 S21628501 Traveling P22 EBIRD 67.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300681716 2021-03-26 06:09:25.361188 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-03-03 07:40:00 obsr879105 S22155089 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS768272074 2021-03-30 19:07:52.958398 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 obsr192641 S56880485 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291079448 2021-11-15 03:06:58.889978 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-07 08:45:00 obsr601383 S21351154 Traveling P22 EBIRD 15.0 0.402 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290365421 2021-03-30 19:29:33.633096 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-11 07:58:00 obsr2588479 S21293664 Stationary P21 EBIRD 80.0 4.0 1 G1105097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303064364 2021-04-01 11:42:50.317679 406 species avibase-27B2749A Wood Duck Aix sponsa 3 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-03-14 13:48:00 obsr666964 S22345668 Stationary P21 EBIRD 70.0 1.0 1 G1179071 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314383944 2022-03-05 22:03:50.715584 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-30 08:30:00 obsr2219590 S23145698 Traveling P22 EBIRD 210.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290869606 2015-01-13 17:10:43 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1500 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-01-13 11:55:00 obsr1885846 S21334328 Stationary P21 EBIRD 5.0 2.0 1 G1108416 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305152263 2021-03-30 19:19:56.775388 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua, West Lake Road School Park L3501023 P 42.8512 -77.28042 2015-03-20 13:10:00 obsr1243175 S22507015 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315292697 2021-12-08 07:58:41.562209 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-03 10:00:00 obsr1223279 S23198697 Historical P62 EBIRD_CAN 120.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302497143 2021-03-26 06:07:45.516082 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-03-11 15:00:00 obsr128156 S22301295 Rusty Blackbird Spring Migration Blitz P41 EBIRD 35.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522761 2021-03-26 07:07:10.758746 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-08 11:28:00 obsr155915 S22758863 Traveling P22 EBIRD 79.0 1.609 2.0 1 G1211595 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306833745 2021-03-30 19:07:52.958398 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-01 13:30:00 obsr2078092 S22635040 Traveling P22 EBIRD 300.0 4.828 2.0 1 G1201046 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314261687 2021-03-24 20:58:04.794277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 Female, Adult (3); Male, Adult (3) United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-04-29 06:15:00 obsr2694889 S23138597 Stationary P21 EBIRD 135.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298492938 2021-03-26 07:56:20.588749 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-02-19 17:15:00 obsr676630 S21981865 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316049033 2021-04-01 11:15:31.646886 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 06:44:00 obsr41879 S23240477 Traveling P22 EBIRD 138.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316556653 2021-03-26 06:21:54.883933 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-06 15:38:00 obsr1711339 S23269917 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306910361 2018-08-04 17:05:03 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Oneida US-NY-065 13.0 Sylvan Beach at Breakwall L1768296 P 43.1937463 -75.7315385 2015-04-02 10:00:00 obsr2950436 S22640613 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292947495 2021-03-26 08:12:51.35913 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Schuyler US-NY-097 13.0 Williamee Rd. x Updyke Rd. fields (NE of intersection) L2687064 H 42.4857069 -76.7084312 2015-01-24 09:30:00 obsr1042912 S21519207 Traveling P22 EBIRD 30.0 7.403 2.0 1 G1121222 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292218143 2021-04-01 11:49:53.573686 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 100 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-01-20 07:20:00 obsr187432 S21440920 Traveling P22 EBIRD 200.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS331317119 2022-02-17 14:32:23.002448 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 6 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-02 08:30:00 obsr117100 S24231683 Traveling P22 EBIRD 150.0 1.931 5.0 1 G1247128 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308076887 2021-03-30 19:07:52.958398 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-06 15:30:00 obsr1407710 S22724546 Traveling P22 EBIRD 70.0 1.609 2.0 1 G1208519 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302663007 2021-03-31 04:03:32.881251 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-03-12 14:33:00 obsr1958124 S22314181 Traveling P22 EBIRD 28.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304583003 2015-03-22 10:17:17 337 species avibase-694C127A Mute Swan Cygnus olor 60 United States US New York US-NY Monroe US-NY-055 13.0 Curtis Road - The Big Puddle L3505577 P 43.311618 -77.805812 2015-03-22 10:15:00 obsr991026 S22463475 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311269568 2021-03-23 16:48:08.60516 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Seneca US-NY-099 13.0 Rt. 89 near Schuyler Creek L805638 H 42.803374 -76.7630877 2015-04-19 13:30:00 obsr34822 S22946045 Stationary P21 EBIRD 40.0 6.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS315991981 2021-04-01 11:30:42.037277 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 8 H C2 H United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 15:07:00 obsr924076 S23236897 Traveling P22 EBIRD 282.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300757643 2021-03-26 07:56:20.588749 303 species avibase-B59E1863 Canada Goose Branta canadensis 90 United States US New York US-NY Nassau US-NY-059 30.0 Roslyn Pond Town Park L592300 H 40.7979205 -73.6473307 2015-03-03 12:30:00 obsr676630 S22160701 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296811199 2021-03-26 08:14:57.071052 447 species avibase-C235A4D7 Gadwall Mareca strepera 3 United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-02-14 09:00:00 obsr2924527 S21832261 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314359236 2019-05-07 15:30:03 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Stadlen and Hoyt-Pileated Trail L1498735 H 42.4777154 -76.4481604 2015-04-30 13:08:00 obsr1655171 S23144055 Traveling P22 EBIRD 19.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310875096 2021-11-09 19:01:40.008558 483 species avibase-85625D75 Mallard Anas platyrhynchos 12 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-04-17 08:30:00 obsr671490 S22921746 Traveling P22 EBIRD 150.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309667981 2021-11-09 19:48:57.929847 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Orange US-NY-071 28.0 US-NY-Goshen-1-99 Garden Terrace L2594445 P 41.402788 -74.340205 2015-04-13 08:15:00 obsr1568163 S22837572 Stationary P21 EBIRD 56.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298614744 2018-08-04 16:57:26 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Erie US-NY-029 13.0 River Rd water treatment pond L2663480 P 42.9679013 -78.9236516 2015-02-19 15:10:00 obsr2597186 S21992105 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS419871324 2021-03-26 06:39:43.334073 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-11 obsr2036618 S30831156 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310723463 2021-03-19 16:44:35.607263 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-04-17 13:45:00 obsr302343 S22911624 Traveling P22 EBIRD 125.0 3.621 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296003011 2018-08-04 16:54:56 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata 150 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-01-23 16:00:00 obsr140280 S21761307 Traveling P22 EBIRD 22.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290045013 2021-11-09 19:34:18.590596 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-01-09 15:20:00 obsr1665312 S21267536 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302567278 2021-03-26 07:15:58.375907 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N X United States US New York US-NY St. Lawrence US-NY-089 13.0 Judson St. L1944435 P 44.5989093 -75.1599008 2015-03-11 17:15:00 obsr2056110 S22307151 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289061027 2021-03-30 12:05:58.533651 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Nassau US-NY-059 30.0 Baldwin L193543 T 40.6565 -73.60927 2015-01-03 07:34:00 obsr564905 S21189546 Traveling P22 EBIRD 142.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289952541 2021-03-26 08:14:57.071052 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 5 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-01-08 08:00:00 obsr2918150 S21259991 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295455263 2021-04-01 10:51:50.668112 483 species avibase-85625D75 Mallard Anas platyrhynchos N 50 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Holiday Inn L160744 H 42.08827 -76.79419 2015-02-07 13:18:00 obsr1092576 S21710944 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307545748 2018-08-04 17:05:16 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY Washington US-NY-115 13.0 Granville L131798 T 43.4078712 -73.259552 2015-04-03 17:00:00 obsr2196530 S22686930 Traveling P22 EBIRD 20.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304725484 2015-03-22 19:14:34 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 Female, Adult (1) United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-03-21 08:15:00 obsr2812831 S22474050 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318611949 2021-04-01 11:24:19.637193 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Monroe US-NY-055 13.0 Seneca Park L836388 H 43.2101643 -77.623546 2015-05-11 11:40:00 obsr1545618 S23384321 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309061766 2021-04-01 12:30:15.438381 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Herkimer US-NY-043 13.0 Milky Way Farm Pond & Vicinity L681238 P 43.1062939 -74.8197913 2015-04-11 08:30:00 obsr2694889 S22798565 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298639392 2021-04-01 11:49:53.573686 11371 species avibase-75600969 Northern Flicker Colaptes auratus 4 United States US New York US-NY Queens US-NY-081 30.0 Brookville Park L2687495 H 40.6629513 -73.7429361 2015-02-18 15:42:00 obsr1982614 S21993930 Traveling P22 EBIRD 180.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318696043 2021-03-26 06:29:56.44369 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-05-11 15:10:00 obsr934639 S23388855 Traveling P22 EBIRD 52.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299853457 2021-04-01 12:14:19.266649 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-02-27 11:55:00 obsr1228860 S22092270 Traveling P22 EBIRD 52.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309962101 2021-11-09 19:55:29.587179 591 species avibase-1929E1E1 Canvasback Aythya valisineria 10 United States US New York US-NY Orange US-NY-071 28.0 Six and a Half Station Rd. Sanctuary L306143 H 41.4025242 -74.3499176 2015-04-14 08:15:00 obsr1568163 S22859320 Traveling P22 EBIRD 180.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312074659 2022-03-05 22:03:50.715584 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-22 09:00:00 obsr444155 S22998461 Traveling P22 EBIRD 210.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321163463 2021-03-23 17:18:00.959502 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-19 06:15:00 obsr1165633 S23528721 Traveling P22 EBIRD 141.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314072039 2018-08-04 17:11:58 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 2 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-24 08:30:00 obsr1200152 S23126784 Traveling P22 EBIRD 90.0 0.805 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307202930 2021-04-01 12:32:15.282601 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park L693342 P 40.6618894 -73.719635 2015-04-02 08:15:00 obsr2505956 S22662394 Rusty Blackbird Spring Migration Blitz P41 EBIRD 135.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS458692210 2017-01-19 17:12:17 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina X United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-11 13:00:00 obsr189984 S33789286 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296001255 2015-02-10 16:12:43 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY New York US-NY-061 30.0 Riverside Park--North of 96th St. L1018490 H 40.8073616 -73.9684904 2015-02-10 16:11:00 obsr2793388 S21761143 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321997903 2021-04-01 12:32:15.282601 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-05-22 07:30:00 obsr890053 S23580576 Traveling P22 EBIRD 70.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289334014 2021-04-01 12:45:19.712958 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-01-05 08:20:00 obsr1198912 S21210942 Traveling P22 EBIRD 130.0 3.219 11.0 1 G1097660 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310702808 2021-11-09 19:57:48.990233 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 3 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-15 10:00:00 obsr1152226 S22910297 Traveling P22 EBIRD 120.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298713035 2021-04-01 12:41:58.738824 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 40 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-02-21 07:35:00 obsr1092576 S22000914 Stationary P21 EBIRD 30.0 2.0 1 G1154707 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306168886 2021-11-09 21:57:30.262039 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 1 Male, Adult (1) United States US New York US-NY Ulster US-NY-111 13.0 Bed rd ash res L3524443 P 41.9472026 -74.2032695 2015-03-29 17:30:00 obsr2862523 S22584140 Stationary P21 EBIRD 2.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310547496 2019-11-29 20:50:43 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 NY:SEN:Tyre: NYS-31: mucklands: E end, N side L3568833 P 43.0201917 -76.7178297 2015-04-12 09:08:00 obsr2760150 S22900141 Traveling P22 EBIRD 67.0 0.402 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303222612 2021-11-09 20:51:06.773494 483 species avibase-85625D75 Mallard Anas platyrhynchos N 3 United States US New York US-NY Rockland US-NY-087 28.0 Kakiat County Park L1023278 H 41.1461171 -74.11466 2015-03-15 07:55:00 obsr1253931 S22357767 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS768272002 2021-03-30 19:07:52.958398 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 obsr192641 S56880485 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289954865 2015-01-08 22:53:53 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY Hamilton US-NY-041 14.0 Haskells Road - Piseco L788730 P 43.4533083 -74.523772 2015-01-08 14:36:00 obsr1000124 S21260155 Traveling P22 EBIRD 13.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309661462 2021-03-26 08:13:27.160698 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria 2 United States US New York US-NY Tioga US-NY-107 28.0 Lockheed Martin Pond L2347076 H 42.097235 -76.221474 2015-04-11 14:15:00 obsr317968 S22837156 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313113983 2021-03-30 19:22:51.561415 303 species avibase-B59E1863 Canada Goose Branta canadensis 8 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-26 07:30:00 obsr150865 S23066908 Traveling P22 EBIRD 169.0 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295067764 2021-04-01 11:54:40.172593 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 Male, Adult (1); Female, Adult (2) United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-02-01 09:00:00 obsr666331 S21689018 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319555905 2022-01-30 05:51:35.389484 636 species avibase-B77377EE Common Eider Somateria mollissima 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 11:00:00 obsr2313216 S23438809 Historical P62 EBIRD 300.0 4.0469 30.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303720623 2018-08-04 16:58:52 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 10 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-07 08:00:00 obsr2342280 S22397215 Traveling P22 EBIRD 60.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304511468 2018-08-04 17:02:17 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 4 United States US New York US-NY Richmond US-NY-085 SI-Sawmill Creek/River Road/Old Place L274655 P 40.6134278 -74.1902816 2015-03-21 12:55:00 obsr1032565 S22458203 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1259802847 2021-10-17 12:47:30.138344 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Erie US-NY-029 13.0 University at Buffalo (North Campus) L6275102 H 43.0008539 -78.7889698 2015-04-18 07:35:00 obsr2155450 S96280952 Traveling P22 EBIRD 30.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305622844 2018-08-04 17:03:47 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-27 15:24:00 obsr1958124 S22543479 Traveling P22 EBIRD 8.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318791804 2021-04-01 11:15:31.646886 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-11 14:00:00 obsr2114161 S23394549 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292822256 2021-03-26 07:30:35.289997 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: home to Cayuga L: Cass Pk - AHTreman SMP L365140 P 42.4586739 -76.5173721 2015-01-23 16:10:00 obsr2760150 S21509299 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289078319 2021-03-30 19:29:33.633096 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 50 United States US New York US-NY Suffolk US-NY-103 30.0 Brightwaters Lakes L4991297 H 40.7140158 -73.2635926 2015-01-01 11:40:00 obsr1987335 S21191072 Traveling P22 EBIRD 20.0 1.127 2.0 1 G1095443 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289961275 2021-04-01 12:14:19.266649 11494 species avibase-20C2214E American Kestrel Falco sparverius 20 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Dune Road L1795482 P 40.8340099 -72.4679113 2015-01-06 10:30:00 obsr2846902 S21260729 Traveling P22 EBIRD 140.0 9.656 2.0 1 G1101812 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311449498 2021-03-26 06:55:00.227271 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 1 United States US New York US-NY Ontario US-NY-069 13.0 Eastview Mall L2951940 P 43.0322075 -77.442627 2015-04-19 18:03:00 obsr528918 S22957008 Stationary P21 EBIRD 50.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307780322 2021-04-01 12:32:15.282601 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 12 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-05 14:03:00 obsr564905 S22703419 Traveling P22 EBIRD 32.0 3.219 2.0 1 G1207236 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306973705 2022-03-05 22:03:50.715584 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-02 08:30:00 obsr2219590 S22645434 Traveling P22 EBIRD 300.0 10.461 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305933329 2021-03-23 17:35:57.093178 6339 species avibase-8535345B Herring Gull Larus argentatus 80 United States US New York US-NY Rensselaer US-NY-083 13.0 Hoosic River along Knickerbocker Road L3521868 P 42.9166031 -73.6458996 2015-03-27 16:00:00 obsr313833 S22566745 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318939024 2015-05-12 11:58:44 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 8 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-12 11:09:00 obsr2355059 S23403104 Traveling P22 EBIRD 48.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307041873 2021-04-01 11:30:42.037277 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-02 12:47:00 obsr1961042 S22650747 Traveling P22 EBIRD 120.0 4.007 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310969747 2021-03-24 20:57:48.241391 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Fulton US-NY-035 13.0 Cline Rd., marsh (east) L1144401 H 43.061062 -74.6492232 2015-04-18 08:36:00 obsr2321296 S22927638 Traveling P22 EBIRD 32.0 0.322 3.0 1 G1224392 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311198449 2018-08-04 17:11:13 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-04-19 09:38:00 obsr2588479 S22941621 Traveling P22 EBIRD 53.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300034537 2018-08-04 16:58:25 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-02-28 10:37:00 obsr613775 S22106252 Traveling P22 EBIRD 114.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321682969 2021-09-19 18:57:52.903665 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY New York US-NY-061 30.0 Morningside Park, Manhattan L1799559 H 40.8067376 -73.9580993 2015-05-20 09:55:00 obsr1706920 S23560378 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292489722 2021-04-01 10:44:41.995232 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 1 United States US New York US-NY Allegany US-NY-003 28.0 Genesee Valley Greenway - Houghton L3073924 P 42.4251791 -78.1518325 2015-01-21 13:30:00 obsr2674467 S21483068 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311784103 2019-03-03 16:25:13 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Montgomery US-NY-057 13.0 Touareuna Rd, west L3555994 P 42.9209407 -74.0884018 2015-04-21 07:30:00 obsr1918430 S22979416 Traveling P22 EBIRD 70.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305765871 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-28 09:30:00 obsr2797341 S22554511 Traveling P22 EBIRD 120.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295003939 2018-08-04 16:55:42 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 17 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Trumansburg-1679 Taughannock Blvdz L3339853 P 42.540826 -76.592319 2015-02-05 07:17:00 obsr1791331 S21683516 Stationary P21 EBIRD 88.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312496848 2015-04-24 10:11:12 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Greene US-NY-039 28.0 Purling L3358133 P 42.2972028 -74.0221721 2015-04-21 09:30:00 obsr951823 S23026989 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS359629687 2019-07-23 17:28:28 456 species avibase-D201EB72 American Wigeon Mareca americana X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-25 17:28:00 obsr2022298 S26344765 Traveling P22 EBIRD 84.0 3.219 2.0 1 G1501690 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302528546 2021-11-20 09:30:27.481745 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake, end of Creekwalk L1331492 H 43.0680178 -76.1778662 2015-03-11 17:15:00 obsr660214 S22304008 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304745616 2016-01-27 10:56:55 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Jefferson US-NY-045 13.0 Black River Fishing site L2127803 P 43.9789116 -75.8680201 2015-03-22 14:14:00 obsr2091520 S22475455 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298185914 2021-03-23 16:39:03.255227 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-02-18 08:41:00 obsr1958124 S21954794 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290946527 2021-04-01 11:30:42.037277 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris N 25 United States US New York US-NY New York US-NY-061 30.0 Manhattan -- Greeley Square L3146654 P 40.748549 -73.988345 2015-01-14 08:41:00 obsr1384082 S21340334 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314097746 2018-08-04 17:12:42 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Clinton US-NY-019 13.0 Ausable Marsh WMA--Ausable Marsh L143227 H 44.5630989 -73.4313965 2015-04-29 09:35:00 obsr884584 S23128304 Traveling P22 EBIRD 75.0 2.414 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321622510 2021-03-19 16:19:20.977326 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-13 13:45:00 obsr1379161 S23556781 Traveling P22 EBIRD 210.0 1.609 2.0 1 G1281347 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302422572 2021-04-01 11:49:53.573686 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-04 07:55:00 obsr1982614 S22295910 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313833216 2021-03-23 17:00:13.087107 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-28 08:01:00 obsr34822 S23111845 Traveling P22 EBIRD 42.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314833535 2021-03-24 19:35:34.045988 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-02 06:41:00 obsr1603345 S23173567 Traveling P22 EBIRD 81.0 2.092 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323350742 2021-03-19 16:44:35.607263 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Monroe US-NY-055 13.0 Northampton Park L732014 H 43.1842763 -77.8865647 2015-05-27 08:10:00 obsr137150 S23662857 Traveling P22 EBIRD 160.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320928204 2021-03-19 16:25:42.617988 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-18 07:15:00 obsr2769235 S23513774 Traveling P22 EBIRD 300.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293927282 2021-03-26 06:39:43.334073 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus N 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-01-29 13:20:00 obsr856524 S21596673 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316982983 2021-03-24 19:48:44.880783 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-07 07:00:00 obsr1410564 S23294044 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300520052 2018-08-04 16:58:35 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 20 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-02 11:17:00 obsr2871406 S22143259 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295258221 2019-07-23 17:27:16 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 PI--Route 12 L992044 P 41.1860343 -72.1802831 2015-02-06 14:16:00 obsr2485753 S21702487 Traveling P22 EBIRD 47.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290248744 2018-08-04 16:53:01 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 60 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-01-10 11:56:00 obsr1893950 S21284399 Traveling P22 EBIRD 21.0 0.805 2.0 1 G1103717 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310120981 2020-02-24 20:02:45 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Jefferson US-NY-045 US-NY_762 13.0 Fort Drum: Training Area 12 & 13 fields (restricted access) L2570251 P 44.1394851 -75.6551372 2015-04-13 07:55:00 obsr1558090 S22870583 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319225901 2021-11-15 03:06:58.889978 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-13 07:25:00 obsr2105033 S23419834 Stationary P21 EBIRD 155.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321005715 2018-08-06 22:30:28 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College--Visitor Interpretive Center L212478 H 44.4486136 -74.2594002 2015-05-18 07:00:00 obsr1222746 S23519038 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292913775 2019-07-23 17:27:11 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 1 United States US New York US-NY Steuben US-NY-101 13.0 US-NY-Hammondsport-12215 E Lake Rd L3313829 P 42.466944 -77.15971 2015-01-24 11:23:00 obsr1092576 S21516655 Stationary P21 EBIRD 25.0 2.0 1 G1121010 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315980345 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 2 Male, Adult (2) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 12:54:00 obsr2885680 S23236119 Traveling P22 EBIRD 123.0 0.805 3.0 1 G1252520 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317676670 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 8 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 06:15:00 obsr1778524 S23333813 Traveling P22 EBIRD 420.0 6.437 4.0 1 G1259440 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307077975 2021-04-01 11:24:19.637193 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Monroe US-NY-055 13.0 Turning Point Park L473126 H 43.2299768 -77.6170778 2015-04-01 16:15:00 obsr1725472 S22653501 Traveling P22 EBIRD 100.0 1.931 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299567290 2017-08-16 16:41:31 591 species avibase-1929E1E1 Canvasback Aythya valisineria 65 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Gilgo Beach L499715 H 40.6172753 -73.3947659 2015-02-21 11:05:00 obsr1987335 S22070110 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291735477 2021-03-23 16:52:36.900075 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 15 United States US New York US-NY Suffolk US-NY-103 30.0 Riverhead Sod Farms--Doctors Path L588228 H 40.9613311 -72.6676512 2015-01-18 10:15:00 obsr2863596 S21403553 Traveling P22 EBIRD 88.0 3.219 2.0 1 G1114107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321654088 2018-08-06 22:30:42 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-05-21 07:24:00 obsr2588479 S23558610 Traveling P22 EBIRD 78.0 3.219 2.0 0 G1281490 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319237000 2017-04-28 16:44:45 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 12 United States US New York US-NY Fulton US-NY-035 13.0 Cline Rd., marsh (east) L1144401 H 43.061062 -74.6492232 2015-05-13 09:45:00 obsr2590001 S23420470 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297767341 2021-03-23 16:52:36.900075 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven, Old Stump Road L1796581 P 40.774188 -72.89986 2015-02-14 07:18:00 obsr613775 S21918559 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301609090 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 30 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-08 08:24:00 obsr1154 S22225636 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311517809 2021-11-09 22:38:55.83044 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 Male, Adult (3); Female, Adult (3) United States US New York US-NY Sullivan US-NY-105 US-NY_2792 28.0 644 River Road L2326174 P 41.782401 -75.1017773 2015-04-20 08:00:00 obsr279522 S22961260 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291615920 2019-01-03 10:54:11 7200 species avibase-49D9148A Great Egret Ardea alba 2 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-18 08:13:00 obsr431494 S21394389 Traveling P22 EBIRD 64.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300791222 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 19 United States US New York US-NY Kings US-NY-047 30.0 Sheepshead Bay L835012 H 40.582363 -73.9434105 2015-03-03 16:00:00 obsr2448957 S22163765 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314606377 2021-03-30 19:39:10.250398 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Nassau US-NY-059 30.0 Saint Johns Pond Sanctuary L123034 H 40.85417 -73.46333 2015-04-29 09:33:00 obsr1107696 S23159951 Traveling P22 EBIRD 47.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293238653 2021-12-03 21:50:44.732892 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-01-25 11:40:00 obsr1032565 S21541925 Traveling P22 EBIRD 190.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322248215 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 10:42:00 obsr904434 S23595226 Traveling P22 EBIRD 225.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296267039 2021-11-09 18:34:57.804398 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 4 United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-02-12 11:00:00 obsr1264675 S21782371 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315495901 2021-04-01 12:26:53.827486 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Albany US-NY-001 13.0 Watervliet Reservoir L452992 H 42.7326396 -73.9795303 2015-05-03 12:00:00 obsr30103 S23209452 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307097039 2021-04-01 10:53:25.818871 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 8 United States US New York US-NY Cortland US-NY-023 28.0 Yaman Park L1887040 H 42.6093841 -76.158183 2015-04-02 13:41:00 obsr1696616 S22644145 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311186622 2021-03-26 07:56:20.588749 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 200 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-18 14:45:00 obsr1736113 S22940988 Traveling P22 EBIRD 60.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292575377 2015-01-22 05:11:48 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 5 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-21 13:40:00 obsr1472872 S21489709 Traveling P22 EBIRD 95.0 5.729 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322995981 2021-03-26 06:17:19.712573 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Erie US-NY-029 13.0 Knox Farm SP L160588 H 42.7715237 -78.636327 2015-05-25 09:00:00 obsr319738 S23639614 Traveling P22 EBIRD 90.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315124471 2021-03-19 16:19:20.977326 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-02 07:30:00 obsr1043007 S23189418 Traveling P22 EBIRD 120.0 1.609 4.0 1 G1248106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301631442 2022-02-21 13:41:55.027797 406 species avibase-27B2749A Wood Duck Aix sponsa 3 United States US New York US-NY New York US-NY-061 30.0 Fort Tryon Park L591127 H 40.8629374 -73.9327457 2015-03-08 09:30:00 obsr781996 S22227313 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300038757 2021-03-30 19:29:33.633096 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 33 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach State Park L230716 P 41.1295147 -72.2665183 2015-02-28 11:57:00 obsr2485753 S22106573 Traveling P22 EBIRD 58.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300861886 2020-05-16 18:11:44 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Otsego US-NY-077 28.0 207 Stoller Hill Rd L3359197 P 42.7034192 -75.0299799 2015-03-04 07:35:00 obsr131845 S22168744 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306540915 2021-03-30 19:03:14.123633 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-03-31 11:00:00 obsr1830659 S22612801 Traveling P22 EBIRD 18.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317667285 2015-05-09 16:57:20 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Owen-Bartel Rd. (Genesee County) L3626715 P 43.1060119 -78.4601283 2015-05-09 12:35:00 obsr408487 S23333331 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307949279 2015-04-06 10:01:32 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Oswego US-NY-075 13.0 20 Marsden Dr L3008209 P 43.523378 -76.250303 2015-04-06 08:45:00 obsr1321679 S22715891 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313201662 2018-08-04 17:12:26 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Oneida US-NY-065 13.0 Verona Beach State Park, Swamp Trail L2824450 P 43.1793372 -75.7156105 2015-04-26 13:24:00 obsr545221 S23072011 Traveling P22 EBIRD 83.0 3.219 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311825061 2021-03-26 06:11:29.8335 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-04-19 08:34:00 obsr2683910 S22982337 Stationary P21 EBIRD 7.0 2.0 1 G1230113 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310543592 2021-11-09 20:43:00.341926 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Putnam US-NY-079 US-NY_868 28.0 East Mountain/Round Hill Fahnestock State Park L3568832 P 41.4493767 -73.893528 2015-04-16 10:30:00 obsr2898234 S22899873 Traveling P22 EBIRD 300.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301082018 2015-03-08 09:45:24 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-03-05 11:00:00 obsr676630 S22184523 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 1.127 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312322344 2021-03-23 16:39:03.255227 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-23 13:58:00 obsr1958124 S23015098 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311763573 2021-03-26 06:14:19.776945 23450 spuh avibase-55CCEE2D swallow sp. Hirundinidae sp. 6 United States US New York US-NY Columbia US-NY-021 13.0 Mud Creek Environmental Learning Center L2793575 H 42.2806092 -73.7101454 2015-04-19 07:30:00 obsr349211 S22978048 Traveling P22 EBIRD 150.0 1.609 12.0 1 G1228299 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318812206 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 16:00:00 obsr2182516 S23395716 Traveling P22 EBIRD 120.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310600119 2018-08-04 17:09:29 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-04-17 07:53:00 obsr2588479 S22903678 Stationary P21 EBIRD 22.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320867917 2021-04-01 10:45:00.916278 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 S7 C3 S7 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-18 09:00:00 obsr128156 S23510539 Rusty Blackbird Spring Migration Blitz P41 EBIRD 33.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310551743 2021-03-24 19:47:16.07498 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-16 06:15:00 obsr2716320 S22900400 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310980374 2021-04-01 12:32:15.282601 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Lido Beach Passive Nature Area L723695 H 40.5923663 -73.5957384 2015-04-18 09:45:00 obsr2207991 S22928230 Traveling P22 EBIRD 60.0 0.322 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322225547 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-23 12:00:00 obsr2369927 S23593990 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313908006 2021-03-23 17:32:20.03109 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 6 United States US New York US-NY Onondaga US-NY-067 13.0 Hamlin Marsh WMA--Wetzel Rd. Blind L1488405 H 43.1504641 -76.1724972 2015-04-28 18:00:00 obsr214789 S23116688 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320858188 2018-08-06 22:30:20 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area - NCAE L474355 P 43.0923966 -77.3768806 2015-05-17 08:00:00 obsr2113616 S23510029 Traveling P22 EBIRD 175.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288479722 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-02 11:00:00 obsr512869 S21140852 Traveling P22 EBIRD 75.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307103346 2021-03-24 19:48:44.880783 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-02 14:15:00 obsr1092576 S22655407 Traveling P22 EBIRD 44.0 0.805 3.0 1 G1202325 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310225366 2018-08-04 17:09:17 33061 species avibase-E36325FA Prairie Warbler Setophaga discolor 1 United States US New York US-NY Suffolk US-NY-103 30.0 Lakeland County Park L2680286 H 40.8044899 -73.1562702 2015-04-15 13:03:00 obsr1987335 S22877505 Rusty Blackbird Spring Migration Blitz P41 EBIRD 19.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305079391 2021-03-30 19:43:32.881136 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Westchester US-NY-119 30.0 Mill Pond at Mill Pond Offices, Somers L3511959 H 41.320247 -73.6896942 2015-03-24 08:00:00 obsr858943 S22501321 Stationary P21 EBIRD 1.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307110178 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 30.0 Dyker Beach Park L1044216 H 40.6123885 -74.0192327 2015-04-03 06:32:00 obsr1189028 S22655941 Traveling P22 EBIRD 111.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312749957 2021-04-01 10:44:41.995232 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Allegany US-NY-003 28.0 Cuba Lake L1326387 H 42.2508599 -78.2923025 2015-04-25 08:49:00 obsr1092576 S23045194 Traveling P22 EBIRD 74.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313201842 2021-03-30 12:05:58.533651 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-26 09:00:00 obsr2909711 S23072025 Traveling P22 EBIRD 180.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296665542 2021-03-24 20:21:40.993321 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Seneca US-NY-099 13.0 Cove L678244 P 42.6487254 -76.8698493 2015-02-14 obsr2731440 S21818931 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313199114 2021-04-01 11:30:42.037277 33216 species avibase-1F09CCCC Wilson's Warbler Cardellina pusilla N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 08:30:00 obsr822430 S23071877 Traveling P22 EBIRD 240.0 4.828 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317480010 2021-04-01 10:45:00.916278 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N X United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.8929476 2015-05-09 08:00:00 obsr2054320 S23322497 Traveling P22 EBIRD 150.0 1.609 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321323408 2021-03-26 07:46:52.994574 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus X United States US New York US-NY Albany US-NY-001 13.0 Washington Park (Albany Co.) L1657899 H 42.6560581 -73.7657327 2015-05-19 18:49:00 obsr1165633 S23538324 Traveling P22 EBIRD 62.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312385922 2021-03-30 19:25:27.212017 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 2 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-23 08:55:00 obsr396989 S23019531 Traveling P22 EBIRD_NJ 315.0 7.886 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314884128 2015-05-02 11:15:07 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-02 08:50:00 obsr1764243 S23176339 Traveling P22 EBIRD 143.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291767872 2021-03-19 16:32:34.732091 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 25 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-18 14:02:00 obsr150415 S21406132 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320963844 2021-04-01 12:31:09.823741 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 Letchworth SP--Trail No. 17 L3653210 H 42.6868725 -77.9552157 2015-05-17 06:00:00 obsr1009338 S23515687 Traveling P22 EBIRD 360.0 27.359 2.0 1 G1277797 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313069803 2015-05-13 20:19:57 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA, Baldwinsville, NY L1462062 P 43.1963229 -76.3252222 2015-04-26 07:30:00 obsr2172593 S23064360 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310533483 2020-05-16 18:13:14 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Otsego US-NY-077 28.0 Ottaway Pond L3568681 P 42.7363566 -74.8490193 2015-04-15 16:30:00 obsr189015 S22899169 Traveling P22 EBIRD 40.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312312588 2021-03-24 20:33:47.533911 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Tompkins US-NY-109 13.0 South Hill L2628474 P 42.407156 -76.4965 2015-04-23 08:35:00 obsr1951879 S23014349 Stationary P21 EBIRD 10.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306872632 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 15 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Long Beach Park L1185681 H 40.5834529 -73.670969 2015-03-17 11:00:00 obsr2197911 S22637794 Traveling P22 EBIRD 150.0 4.828 2.0 1 G1201189 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298212623 2021-03-30 19:43:32.881136 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 4 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-17 16:00:00 obsr114791 S21957281 Traveling P22 EBIRD 45.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305989393 2022-01-01 15:48:16.226995 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 3 United States US New York US-NY Nassau US-NY-059 30.0 428F House Area L1065546 P 40.8524945 -73.4621347 2015-03-29 09:54:00 obsr2423982 S22570895 Traveling P22 EBIRD 43.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295565693 2021-03-26 07:20:31.408164 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Suffolk US-NY-103 30.0 Marratooka L143474 P 40.9934692 -72.5238113 2015-02-08 13:35:00 obsr2485753 S21727242 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319825463 2021-11-09 18:22:29.372367 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Dutchess US-NY-027 13.0 River paddle L1487368 P 42.0469932 -73.927686 2015-05-15 07:45:00 obsr671490 S23454287 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313213747 2021-03-26 07:56:20.588749 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-26 12:15:00 obsr1137265 S23072727 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1237358 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310382954 2017-11-27 07:55:42 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip F L3559849 P 40.22115 -73.03615 2015-04-11 13:00:00 obsr856524 S22888419 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221325 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS304644397 2021-04-01 12:32:15.282601 505 species avibase-C732CB10 American Black Duck Anas rubripes 16 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-21 09:52:00 obsr870166 S22467833 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311261875 2015-04-19 14:03:44 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 US-NY-Marathon - 42.4066x-75.9710 - Apr 19, 2015, 1:47 PM L3575520 P 42.406573 -75.971049 2015-04-19 13:45:00 obsr246469 S22945504 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323231361 2021-04-01 12:14:19.266649 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-29 06:35:00 obsr1137265 S23654981 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306133846 2021-03-26 07:46:52.994574 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-03-28 08:14:00 obsr648176 S22581478 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302859590 2021-03-23 16:39:03.255227 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Richmond US-NY-085 30.0 Tottenville High School L884731 P 40.5282185 -74.1924763 2015-03-13 07:55:00 obsr1958124 S22329126 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320963230 2018-08-06 22:29:55 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-05-14 09:00:00 obsr118940 S23515647 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310705218 2021-04-01 12:35:52.669792 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Syracuse University L1011823 H 43.0380933 -76.1348462 2015-04-17 07:41:00 obsr2964544 S22910462 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294790367 2015-02-03 18:48:22 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-02-03 14:12:00 obsr1472872 S21665413 Traveling P22 EBIRD 73.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295659650 2021-04-01 12:45:19.712958 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N X United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-08 13:15:00 obsr369788 S21734807 Stationary P21 EBIRD 60.0 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293357247 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 6 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-01-24 07:40:00 obsr2449897 S21550888 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317480029 2021-04-01 10:45:00.916278 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.8929476 2015-05-09 08:00:00 obsr2054320 S23322497 Traveling P22 EBIRD 150.0 1.609 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290402481 2021-03-30 19:29:33.633096 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-11 07:58:00 obsr2756208 S21296688 Stationary P21 EBIRD 80.0 6.0 1 G1105097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309460872 2021-04-01 12:29:11.66536 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Delaware US-NY-025 28.0 Bunkhouse L3543418 P 42.1563852 -74.6267152 2015-04-12 08:30:00 obsr211499 S22823673 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299773035 2018-08-04 16:58:18 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chemung US-NY-015 28.0 Mill St. Pond Trail, Horseheads L292227 H 42.1655917 -76.8085669 2015-02-26 15:23:00 obsr967916 S22086097 Stationary P21 EBIRD 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318706133 2021-03-19 16:19:20.977326 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-11 08:40:00 obsr1996460 S23389486 Traveling P22 EBIRD 420.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS339694508 2021-04-01 11:15:31.646886 16285 species avibase-5BC4E0EF Willow Flycatcher Empidonax traillii 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 09:30:00 obsr294325 S24843583 Traveling P22 EBIRD 300.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300657760 2021-11-15 03:06:58.889978 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus N 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-02 12:45:00 obsr516108 S22152748 Traveling P22 EBIRD 300.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318706154 2021-03-19 16:19:20.977326 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-11 08:40:00 obsr1996460 S23389486 Traveling P22 EBIRD 420.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307117604 2018-08-04 17:05:12 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Richmond US-NY-085 Sprague Ave. Waterfront L2167027 H 40.4999968 -74.2364216 2015-04-03 09:49:00 obsr1958124 S22656518 Stationary P21 EBIRD 2.0 2.0 1 G1202543 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305258577 2021-11-09 21:30:09.663073 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 10 United States US New York US-NY Ulster US-NY-111 28.0 Nyquist-Harcourt Wildlife Sanctuary L1412659 H 41.7555313 -74.091749 2015-03-25 13:00:00 obsr1303376 S22515169 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292647234 2021-04-01 11:15:31.646886 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis N 11 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-22 13:15:00 obsr454647 S21495401 Traveling P22 EBIRD 165.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322837675 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 17 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 11:20:00 obsr2906952 S23629534 Traveling P22 EBIRD 120.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299389791 2015-02-24 23:30:13 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Madison US-NY-053 28.0 US-NY-Georgetown-1740 Carpenter Rd L3188949 P 42.795105 -75.810842 2015-02-24 14:41:00 obsr2945658 S22056472 Stationary P21 EBIRD 19.0 2.0 1 G1159213 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311945357 2021-03-30 19:29:33.633096 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia N 2 United States US New York US-NY Suffolk US-NY-103 30.0 Chandler Estate L1355478 H 40.9559916 -73.0192018 2015-04-19 14:00:00 obsr2338506 S22990135 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308514199 2021-11-09 22:38:28.656289 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Sullivan US-NY-105 US-NY_796 28.0 Mongaup Falls Reservoir L2144764 H 41.5517877 -74.7803736 2015-04-08 16:50:00 obsr986936 S22758261 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308161186 2018-08-04 17:05:16 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Milky Way Farm Pond & Vicinity L681238 P 43.1062939 -74.8197913 2015-04-03 15:50:00 obsr316199 S22730951 Stationary P21 EBIRD 8.0 3.0 1 G1209074 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316865654 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-06 17:00:00 obsr2499879 S23287285 Traveling P22 EBIRD 135.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303391764 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-03-15 08:20:00 obsr2595828 S22371303 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292035642 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Kings US-NY-047 Coney Island Creek Park L614792 H 40.5813224 -74.0052688 2015-01-19 12:15:00 obsr189780 S21426934 Traveling P22 EBIRD 45.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313296276 2021-03-26 07:30:35.289997 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-25 07:39:00 obsr1655171 S23077755 Traveling P22 EBIRD 42.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314970244 2021-04-01 11:30:42.037277 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L2824334 P 40.7709469 -73.974402 2015-05-02 07:00:00 obsr2207991 S23180774 Traveling P22 EBIRD 300.0 8.047 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301630835 2021-03-30 19:07:52.958398 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-07 11:30:00 obsr1077730 S22227266 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300549106 2021-04-01 11:49:53.573686 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus N 4 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-02-26 07:40:00 obsr1982614 S22145426 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310060751 2021-03-26 06:39:43.334073 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-14 10:00:00 obsr800463 S22866355 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS314488538 2021-03-26 06:39:43.334073 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 Female, Adult (2); Male, Adult (3) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Greywacke Arch L2179946 H 40.7792619 -73.9657742 2015-04-30 08:25:00 obsr1548221 S23152649 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323113441 2021-03-19 16:19:20.977326 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-24 09:45:00 obsr1079517 S23647281 Area P23 EBIRD 35.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290845175 2021-11-09 19:51:09.255083 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 33 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-01-13 11:00:00 obsr2273061 S21332051 Traveling P22 EBIRD 150.0 4.023 3.0 1 G1184377 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304890471 2021-12-10 08:21:29.396662 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 5 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-23 08:20:00 obsr2133003 S22485992 Traveling P22 EBIRD 170.0 3.862 11.0 1 G1190278 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303497980 2021-04-01 12:39:55.985714 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N X United States US New York US-NY Rensselaer US-NY-083 13.0 Herrington Farm L3492563 P 42.7890077 -73.5359788 2015-03-16 09:50:00 obsr481595 S22380243 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308162235 2021-03-24 21:12:31.336509 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 2 United States US New York US-NY Tioga US-NY-107 28.0 Spencer Lake L2347622 H 42.2473269 -76.5017509 2015-04-06 18:44:00 obsr1318356 S22731013 Traveling P22 EBIRD 18.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321367619 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-06 06:15:00 obsr1778524 S23540912 Traveling P22 EBIRD 150.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322818608 2021-04-01 12:29:11.66536 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Delaware US-NY-025 28.0 The Farm at Russell Hill L3671614 P 42.241647 -74.796979 2015-05-22 08:56:00 obsr457038 S23628383 Traveling P22 EBIRD 400.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301527646 2018-08-04 16:58:55 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 12 United States US New York US-NY Kings US-NY-047 Gravesend Bay, middle parking lot L1843449 H 40.6040297 -74.0243731 2015-03-07 11:30:00 obsr2499879 S22219423 Traveling P22 EBIRD 60.0 3.219 2.0 1 G1174294 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303566940 2021-04-01 12:24:45.865424 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 40 United States US New York US-NY Wayne US-NY-117 13.0 Chimney Bluffs -- including Garner Rd & East Bay Rd. L3290263 P 43.2760518 -76.9212055 2015-03-16 16:10:00 obsr983655 S22385408 Traveling P22 EBIRD 30.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321699883 2021-04-01 12:26:53.827486 16223 species avibase-951C150C Olive-sided Flycatcher Contopus cooperi 2 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-05-21 10:30:00 obsr1181085 S23561332 Traveling P22 EBIRD 121.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319282303 2021-11-09 17:58:40.313796 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-13 07:02:00 obsr1732267 S23422918 Traveling P22 EBIRD 273.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332422583 2018-11-13 18:52:18 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-11 13:45:00 obsr334398 S24314125 Traveling P22 EBIRD 66.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317637385 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 08:50:00 obsr1932533 S23331683 Traveling P22 EBIRD 250.0 4.828 15.0 1 G1261209 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291964087 2018-08-04 16:53:57 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Onondaga US-NY-067 13.0 Skaneateles Lake--SE Corner (Onondaga Co) L1377473 P 42.782901 -76.2715918 2015-01-18 11:40:00 obsr2279567 S21421302 Traveling P22 EBIRD 21.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314157315 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-04-29 16:00:00 obsr2321296 S23131927 Stationary P21 EBIRD 192.0 2.0 1 G1250009 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307330777 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-03-20 obsr1220115 S22671674 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299019386 2021-03-23 17:00:13.087107 591 species avibase-1929E1E1 Canvasback Aythya valisineria X United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-02-22 13:00:00 obsr2223307 S22025808 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307179101 2021-03-23 17:32:20.03109 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-03 11:14:00 obsr2224244 S22660797 Stationary P21 EBIRD 167.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292754460 2015-01-23 11:54:03 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Oswego US-NY-075 13.0 George Road L1504395 P 43.4772007 -76.2674157 2015-01-23 11:53:00 obsr979921 S21503846 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318677032 2021-04-01 11:15:31.646886 11371 species avibase-75600969 Northern Flicker Colaptes auratus 5 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-09 16:30:00 obsr1077730 S23387813 Traveling P22 EBIRD 80.0 1.0 6.0 1 G1265607 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304402873 2021-03-23 16:39:03.255227 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 25 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-03-21 11:02:00 obsr1893950 S22450266 Traveling P22 EBIRD 21.0 0.483 2.0 1 G1186865 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306833751 2021-03-30 19:07:52.958398 5852 species avibase-BF1DA86E Upland Sandpiper Bartramia longicauda 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-01 13:30:00 obsr2078092 S22635040 Traveling P22 EBIRD 300.0 4.828 2.0 1 G1201046 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320729722 2018-08-06 22:30:12 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Albany US-NY-001 13.0 Deer Mt. Nature Trail L561077 H 42.4965307 -73.8529566 2015-05-16 11:51:00 obsr2321296 S23502000 Traveling P22 EBIRD 54.0 1.609 2.0 1 G1276036 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291944591 2021-04-01 12:32:15.282601 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-01-19 08:30:00 obsr2207991 S21419637 Traveling P22 EBIRD 90.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304280678 2021-03-26 06:29:56.44369 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-03-20 10:20:00 obsr1782363 S22441225 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313146691 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 10:30:00 obsr1135516 S23068777 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312714380 2018-08-04 17:11:20 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature Preserve, Rexford, NY L3587945 P 42.7923775 -73.7953484 2015-04-19 18:09:00 obsr1933201 S23042781 Traveling P22 EBIRD 157.0 3.219 9.0 1 G1234677 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300588638 2021-03-30 19:07:52.958398 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-02 14:15:00 obsr1807494 S22148467 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294148606 2015-03-08 10:40:38 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-01-31 12:39:00 obsr502830 S21614136 Traveling P22 EBIRD 66.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320857926 2021-11-09 18:09:06.55827 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 15 United States US New York US-NY Dutchess US-NY-027 28.0 Pawling Nature Reserve L122964 H 41.61833 -73.55833 2015-05-17 12:08:00 obsr2343626 S23510015 Traveling P22 EBIRD 45.0 1.931 2.0 1 G1277165 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305378134 2015-03-26 09:06:05 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-03-25 08:00:00 obsr1380963 S22524525 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293106439 2021-03-26 07:07:10.758746 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 21 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-01-25 10:47:00 obsr1958124 S21531689 Traveling P22 EBIRD 28.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302418933 2015-03-11 11:15:55 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-11 08:48:00 obsr1165633 S22295563 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294157154 2015-01-31 14:29:42 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 13 United States US New York US-NY Suffolk US-NY-103 30.0 Breakwater L457165 P 41.0134625 -72.5607249 2015-01-31 14:14:00 obsr2485753 S21614828 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322790196 2021-03-19 16:25:42.617988 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Essex US-NY-031 14.0 Mirror Lake L3671368 P 44.2898207 -73.9827061 2015-05-25 10:45:00 obsr1135516 S23626708 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310166638 2021-04-01 12:11:50.996293 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 5 United States US New York US-NY Seneca US-NY-099 13.0 Verrill's - Private Property L715867 P 42.6489855 -76.856854 2015-04-15 07:45:00 obsr2731440 S22873676 Traveling P22 EBIRD 10.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316407184 2021-03-23 17:22:05.708166 34699 spuh avibase-CFD25837 passerine sp. Passeriformes sp. 3 United States US New York US-NY Herkimer US-NY-043 13.0 Babcock Hill Road near Albany Road L2752141 P 42.9330463 -75.192009 2015-05-05 13:45:00 obsr1680059 S23261137 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311454790 2021-07-29 22:34:50.725795 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-19 obsr1220115 S22957360 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315656707 2021-08-30 03:53:26.158283 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 2 United States US New York US-NY New York US-NY-061 30.0 Peter Detmold Park (incl. East River Overlook) L1264834 H 40.7534114 -73.9631798 2015-05-04 08:42:00 obsr259298 S23218260 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289732924 2021-11-09 21:56:49.555782 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Ulster US-NY-111 28.0 JBNHS Wallkill Valley Raptors L3261415 P 41.7190555 -74.1366005 2015-01-03 08:00:00 obsr658445 S21242081 Traveling P22 EBIRD 300.0 24.14 37.0 1 G1093120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321091528 2021-03-19 16:10:30.527219 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Chemung US-NY-015 28.0 Tanglewood Nature Center--Personius Woods L826647 H 42.1149378 -76.8878603 2015-05-18 06:58:00 obsr1334267 S23523839 Traveling P22 EBIRD 78.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320555360 2020-03-15 09:14:53 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-17 09:13:00 obsr997992 S23492654 Traveling P22 EBIRD 244.0 2.414 2.0 1 G1274998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306415850 2021-03-23 16:30:20.514143 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 2 United States US New York US-NY Oswego US-NY-075 13.0 Baum Road yard L266171 P 43.3412537 -76.1184204 2015-03-30 07:20:00 obsr979921 S22603014 Stationary P21 EBIRD 260.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994662 2021-03-24 05:37:45.927792 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-01-04 11:20:00 obsr2497657 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314467538 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-04-30 07:08:00 obsr2595828 S23151269 Stationary P21 EBIRD 100.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307438412 2019-07-23 17:28:13 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 24 United States US New York US-NY Suffolk US-NY-103 30.0 Goldsmiths Inlet L138043 H 41.0541647 -72.4740449 2015-04-04 13:36:00 obsr2485753 S22679589 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301609089 2021-04-01 12:26:53.827486 26109 species avibase-BAC33609 Brown Creeper Certhia americana 6 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-08 08:24:00 obsr1154 S22225636 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316938176 2021-04-01 11:30:42.037277 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 08:30:00 obsr2448505 S23291520 Traveling P22 EBIRD 300.0 4.828 2.0 1 G1256415 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320501935 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 06:41:00 obsr2729727 S23489988 Traveling P22 EBIRD 180.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302822661 2015-03-13 08:52:31 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Monroe US-NY-055 13.0 Black Creek Park L1175542 H 43.0844986 -77.8050041 2015-03-12 09:37:00 obsr745890 S22326254 Traveling P22 EBIRD 7.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307672812 2015-04-05 11:30:33 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-05 08:09:00 obsr1476346 S22695734 Traveling P22 EBIRD 120.0 1.609 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308195770 2021-03-23 17:26:08.495143 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-06 08:45:00 obsr1160328 S22734030 Area P23 EBIRD 120.0 30.3514 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320150549 2015-12-17 20:51:24 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Nassau US-NY-059 30.0 Theodore Roosevelt Audubon Sanctuary L511570 H 40.8698622 -73.5058951 2015-05-16 12:30:00 obsr2844530 S23471738 Traveling P22 EBIRD 39.0 0.322 2.0 1 G1501702 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304683293 2021-04-01 11:30:42.037277 5561 species avibase-E196D6F9 Sandhill Crane Antigone canadensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-03-22 11:00:00 obsr1555046 S22470870 Traveling P22 EBIRD 30.0 0.805 2.0 1 G1190687 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322640313 2018-08-06 22:31:01 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-24 09:15:00 obsr2071643 S23617430 Traveling P22 EBIRD 145.0 3.541 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314214283 2021-04-01 11:30:42.037277 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 15:40:00 obsr822430 S23135521 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS302613721 2021-03-23 17:00:13.087107 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southwest L879237 H 42.4634388 -76.4367664 2015-03-11 18:22:00 obsr1696616 S22310832 Traveling P22 EBIRD 13.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323070964 2021-03-19 16:06:54.047432 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt, Hoag and Dresser Rd. area L573479 H 42.6674167 -76.3267422 2015-05-23 10:39:00 obsr241086 S23644510 Traveling P22 EBIRD 80.0 4.023 9.0 1 G1290855 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1277431596 2021-11-14 21:07:41.312218 242 species avibase-D3A260BC Snow Goose Anser caerulescens 9 United States US New York US-NY Erie US-NY-029 13.0 University at Buffalo (North Campus) L6275102 H 43.0008539 -78.7889698 2015-04-29 07:35:00 obsr2155450 S97600716 Traveling P22 EBIRD 30.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323427901 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-26 09:00:00 obsr800463 S23668374 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316934070 2021-03-30 19:39:10.250398 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-05-03 09:00:00 obsr1494607 S23291253 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313937036 2021-03-30 19:07:52.958398 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-28 07:30:00 obsr2363365 S23118476 Traveling P22 EBIRD 270.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300214029 2018-08-04 16:58:30 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-01 08:00:00 obsr2172593 S22121011 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290944910 2022-02-18 10:47:29.953615 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-01-14 07:20:00 obsr1062070 S21340298 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303001036 2021-03-30 19:03:14.123633 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-03-12 17:06:00 obsr1626739 S22340463 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301191355 2021-04-01 11:49:53.573686 5942 species avibase-0A0B8431 Purple Sandpiper Calidris maritima 1 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-03-06 09:23:00 obsr2574755 S22192839 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301825778 2021-03-26 07:56:20.588749 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 Female, Adult (1) United States US New York US-NY Nassau US-NY-059 30.0 New Hyde Park Yard: Nassau County L2082174 P 40.7269986 -73.6824596 2015-03-01 obsr407134 S22243452 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324129491 2021-03-19 16:06:54.047432 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Cayuga US-NY-011 28.0 Summerhill SF--Lick St. Christmas Tree Farm L1318052 H 42.6464402 -76.3459897 2015-05-31 06:39:00 obsr1696616 S23716269 Traveling P22 EBIRD 17.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316107514 2021-04-01 11:15:31.646886 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 08:30:00 obsr369788 S23243601 Traveling P22 EBIRD 180.0 4.023 24.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295539786 2021-04-01 11:15:31.646886 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-02-07 13:00:00 obsr544268 S21725266 Stationary P21 EBIRD 120.0 2.0 1 G1138958 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291338986 2021-03-24 20:58:53.646623 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum N X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-01-16 07:23:00 obsr72341 S21372421 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305563778 2018-08-04 17:03:41 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Red Creek Unit L1528347 H 43.3006399 -76.7825379 2015-03-26 17:16:00 obsr211814 S22538881 Stationary P21 EBIRD 15.0 3.0 1 G1193968 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298207905 2021-03-23 16:51:24.016808 337 species avibase-694C127A Mute Swan Cygnus olor 10 United States US New York US-NY Steuben US-NY-101 28.0 7077 Early Road L2650322 P 42.4873437 -77.2881284 2015-02-16 08:00:00 obsr200430 S21956866 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308209059 2022-02-18 10:47:29.953615 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 S C2 S United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-07 08:39:00 obsr1062070 S22735022 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293794338 2021-03-26 07:52:59.845315 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 86 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-27 07:40:00 obsr1000124 S21585976 Area P23 EBIRD 78.0 2.59 2.0 1 G1127991 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319726283 2021-03-19 16:10:30.527219 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Chemung US-NY-015 28.0 Tanglewood Nature Center, 443 Coleman Ave, Elmira, New York 14903 L1293857 P 42.1047222 -76.8652778 2015-05-02 08:50:00 obsr778043 S23448446 Traveling P22 EBIRD 170.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304940044 2021-03-26 08:14:57.071052 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-03-23 07:45:00 obsr2918150 S22490224 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322925534 2015-05-25 18:43:26 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Herkimer US-NY-043 13.0 Fairview Road - Town of Salisbury L637821 P 43.1284259 -74.7896004 2015-05-25 09:19:00 obsr1000124 S23635069 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311297670 2021-03-19 16:19:20.977326 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-19 08:20:00 obsr2071643 S22947665 Traveling P22 EBIRD 245.0 2.414 3.0 1 G1226244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309827286 2022-02-13 06:32:05.759346 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-04-13 06:20:00 obsr1318356 S22849798 Traveling P22 EBIRD 77.0 0.8 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314152438 2021-03-23 17:26:08.495143 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-24 08:20:00 obsr1112275 S23131569 Traveling P22 EBIRD 90.0 2.253 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306478190 2021-03-23 17:00:13.087107 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Tompkins US-NY-109 13.0 Allan H. Treman State Marine Park--marina (not lakeshore or woods) L159024 H 42.4571425 -76.5143238 2015-03-31 08:20:00 obsr2001485 S22608126 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315810197 2021-11-15 03:06:58.889978 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 09:00:00 obsr93451 S23226474 Traveling P22 EBIRD 165.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319034377 2021-03-26 06:39:43.334073 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Greywacke Arch L2179946 H 40.7792619 -73.9657742 2015-05-12 08:17:00 obsr1548221 S23408743 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741494 2021-04-01 11:24:19.637193 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 25 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-18 09:15:00 obsr1962295 S21404075 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302222430 2018-08-04 16:59:15 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 20 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-10 11:30:00 obsr820113 S22275217 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305039515 2018-08-04 17:02:42 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 2 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-03-24 07:45:00 obsr258431 S22498271 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292841100 2021-03-30 19:43:32.881136 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-01-23 14:48:00 obsr964539 S21510715 Traveling P22 EBIRD 110.0 2.414 3.0 1 G1120994 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308667934 2022-03-05 22:03:50.715584 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-09 09:00:00 obsr444155 S22769827 Traveling P22 EBIRD 210.0 6.437 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302471958 2021-04-01 11:15:31.646886 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-11 09:30:00 obsr1397560 S22299458 Traveling P22 EBIRD 180.0 4.828 3.0 1 G1175054 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313106917 2021-03-24 20:33:47.533911 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-26 08:18:00 obsr34822 S23066530 Traveling P22 EBIRD 141.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293686173 2018-08-04 16:55:21 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 8 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-01-28 10:06:00 obsr2914424 S21577584 Traveling P22 EBIRD 41.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290451581 2021-03-26 06:38:32.090082 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Montgomery US-NY-057 13.0 Otsquago Club Rd L2578072 P 42.9487583 -74.6281636 2015-01-01 11:50:00 obsr1683226 S21300598 Traveling P22 EBIRD 28.0 6.437 2.0 1 G1105365 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309941329 2021-03-26 06:55:00.227271 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-14 09:40:00 obsr606693 S22857926 Traveling P22 EBIRD 13.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314308158 2016-01-28 21:34:37 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Chenango US-NY-017 28.0 Home woods L3452888 P 42.3471065 -75.6650519 2015-04-30 07:25:00 obsr1303581 S23141492 Traveling P22 EBIRD 170.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310043939 2021-04-01 11:15:31.646886 486 domestic avibase-07FFC1E5 Mallard (Domestic type) Anas platyrhynchos (Domestic type) 6 United States US New York US-NY Kings US-NY-047 30.0 Dyker Beach Park L1044216 H 40.6123885 -74.0192327 2015-04-14 06:25:00 obsr1028468 S22865093 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295577004 2018-08-04 16:55:58 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 5 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-02-08 14:29:00 obsr502830 S21728146 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306069997 2021-03-30 19:39:10.250398 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-03-29 08:30:00 obsr2814122 S22576559 Traveling P22 EBIRD 180.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290468787 2018-08-04 16:53:05 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 2 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-01-11 08:20:00 obsr241086 S21301997 Stationary P21 EBIRD 25.0 12.0 1 G1105485 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289726481 2021-11-09 19:34:18.590596 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 5 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-01-07 15:30:00 obsr1665312 S21241515 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291401536 2021-03-30 19:13:38.458673 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-17 08:00:00 obsr991026 S21377336 Stationary P21 EBIRD 43.0 1.0 1 G1114599 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320765900 2021-03-26 06:29:56.44369 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Monroe US-NY-055 13.0 Home L389912 P 43.1355744 -77.5996113 2015-05-17 08:10:00 obsr1124114 S23504038 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305643268 2021-04-01 11:54:40.172593 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-27 14:00:00 obsr496520 S22544945 Traveling P22 EBIRD 130.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300262317 2015-03-01 13:47:52 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-03-01 09:00:00 obsr1842004 S22125064 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306580231 2021-04-01 11:30:42.037277 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park, Manhattan L1305077 P 40.7756018 -73.968544 2015-03-31 09:45:00 obsr827632 S22616018 Traveling P22 EBIRD 120.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312732990 2021-03-24 20:16:00.852773 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Richmond US-NY-085 Mill Creek L1302294 H 40.5198919 -74.2406809 2015-04-25 08:49:00 obsr1958124 S23044075 Stationary P21 EBIRD 14.0 2.0 1 G1237336 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311806458 2021-03-24 19:48:44.880783 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 3 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-04-21 09:57:00 obsr1124114 S22981002 Traveling P22 EBIRD 71.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308506489 2021-01-12 19:50:23.677101 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 9 United States US New York US-NY Warren US-NY-113 14.0 Warren County Bikeway--Ash Dr, Queensbury, NY L2588444 P 43.356634 -73.6842245 2015-04-08 11:45:00 obsr1222746 S22757718 Traveling P22 EBIRD 56.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317840342 2017-03-08 20:24:10 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 11 United States US New York US-NY Jefferson US-NY-045 US-NY_759 13.0 Robert Wehle SP--Snakefoot Trail L1457175 H 43.8768141 -76.2719339 2015-05-09 08:35:00 obsr1558090 S23342560 Traveling P22 EBIRD 90.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312433602 2018-04-16 15:51:00 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 25 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-23 07:01:00 obsr589593 S23022750 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288732340 2021-03-19 16:44:35.607263 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Durand-Eastman Park--Hoffman Rd. L818008 H 43.223715 -77.56868 2015-01-03 11:15:00 obsr2290061 S21161651 Traveling P22 EBIRD 45.0 3.219 2.0 1 G1092868 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308096760 2021-12-08 07:58:41.562209 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-06 17:13:00 obsr2206421 S22726232 Traveling P22 EBIRD 43.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305956672 2021-03-24 20:33:47.533911 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail L1498729 H 42.4795201 -76.4551642 2015-03-28 14:10:00 obsr2487430 S22568521 Traveling P22 EBIRD 60.0 1.207 94.0 1 G1195982 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302732102 2018-08-04 16:59:48 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 39 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-03-12 19:00:00 obsr1893950 S22319593 Traveling P22 EBIRD 15.0 0.483 2.0 1 G1177149 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300004980 2021-03-23 17:15:00.080143 337 species avibase-694C127A Mute Swan Cygnus olor 3 United States US New York US-NY Wayne US-NY-117 13.0 Chimney Bluffs SP L217010 H 43.28386 -76.9222569 2015-02-16 12:44:00 obsr1721609 S22103708 Traveling P22 EBIRD 144.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314730565 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 10:00:00 obsr1303086 S23167090 Traveling P22 EBIRD 285.0 4.828 21.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307582602 2021-04-01 11:15:31.646886 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 18 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-03 16:23:00 obsr150415 S22689616 Traveling P22 EBIRD 101.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300704739 2021-03-26 07:20:31.408164 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-03-03 08:00:00 obsr2011512 S22156952 Traveling P22 EBIRD 85.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323572700 2018-08-04 17:30:31 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-28 11:50:00 obsr2504709 S23678157 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312620030 2021-03-23 17:14:01.933181 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 6 United States US New York US-NY Washington US-NY-115 13.0 Pember Nature Preserve, Hebron L2689047 H 43.2909169 -73.2836677 2015-04-24 09:07:00 obsr1222746 S23036380 Traveling P22 EBIRD 68.0 0.563 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313089754 2015-04-30 23:26:32 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Essex US-NY-031 14.0 Fiegel's Field L3445655 P 43.826187 -73.491547 2015-04-26 09:12:00 obsr2693145 S23065525 Traveling P22 EBIRD 88.0 0.966 2.0 1 G1236702 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310337382 2016-10-11 17:00:32 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip D L3559811 P 40.162933 -73.250983 2015-04-11 10:00:00 obsr2883074 S22885216 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221326 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308279850 2018-08-04 17:06:20 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Ontario US-NY-069 13.0 Risser Rd. Swamp, Canandaigua L771877 H 42.9382814 -77.29738 2015-04-07 08:09:00 obsr1243175 S22740282 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326328133 2018-08-06 22:30:26 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Burger Park L390594 H 43.3099074 -77.7326596 2015-05-17 14:20:00 obsr745890 S23868479 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306901629 2021-03-19 16:19:20.977326 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 3 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-03-29 09:50:00 obsr1079517 S22639844 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305691715 2021-03-24 20:33:47.533911 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Mt. Sapsucker L1772923 H 42.4817726 -76.449865 2015-03-25 11:59:00 obsr2001485 S22548760 Stationary P21 EBIRD 53.0 2.0 1 G1194525 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312886660 2015-04-25 17:10:27 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 13.0 NYS Thruway onramp L3589914 P 43.046067 -77.652521 2015-04-25 17:07:00 obsr979921 S23053251 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307045215 2021-03-24 20:11:57.676649 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-02 08:10:00 obsr2914424 S22650997 Stationary P21 EBIRD 413.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311173048 2021-03-19 16:08:39.161312 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Chautauqua US-NY-013 13.0 College Lodge SUNY L2220962 H 42.3440743 -79.4279337 2015-04-19 07:55:00 obsr2497657 S22940137 Traveling P22 EBIRD 106.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288542847 2021-03-26 07:56:20.588749 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas X United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-01 12:00:00 obsr1121454 S21146281 Traveling P22 EBIRD 90.0 4.426 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309990127 2021-03-26 07:07:10.758746 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-14 13:33:00 obsr1958124 S22861254 Traveling P22 EBIRD 6.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312498826 2021-04-01 12:35:52.669792 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY Onondaga US-NY-067 13.0 Skaneateles Lake, North Village Parks L276075 H 42.945145 -76.4294109 2015-04-24 06:37:00 obsr2279567 S23027118 Stationary P21 EBIRD 51.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308508241 2021-03-23 17:00:13.087107 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Herman Rd. wetlands L1108700 H 42.5157265 -76.3355194 2015-04-08 16:30:00 obsr869999 S22757857 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310094791 2021-03-24 20:21:40.993321 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-13 09:00:00 obsr2683910 S22868759 Traveling P22 EBIRD 41.0 3.219 2.0 1 G1220002 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307920085 2021-03-24 20:16:00.852773 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-06 07:05:00 obsr1958124 S22713739 Traveling P22 EBIRD 8.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310537957 2021-04-01 10:47:08.851048 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 3 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-04-16 obsr800690 S22899473 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307102951 2021-03-26 06:17:19.712573 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Erie US-NY-029 13.0 University at Buffalo (North Campus)--east side L2866122 H 43.0053117 -78.7777213 2015-04-02 07:35:00 obsr2597186 S22655370 Traveling P22 EBIRD 45.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311217371 2015-04-20 23:09:15 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--Snyder Rd. L763841 H 42.4976053 -76.4600587 2015-04-19 11:53:00 obsr1062070 S22942773 Traveling P22 EBIRD 9.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310617049 2021-04-01 11:30:42.037277 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 9 United States US New York US-NY New York US-NY-061 30.0 West Harlem Piers Park L1799555 H 40.819888 -73.9604382 2015-04-16 16:00:00 obsr1706920 S22904887 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299774656 2021-04-01 11:15:31.646886 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 8 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-26 12:30:00 obsr150415 S22086272 Traveling P22 EBIRD 165.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315310362 2021-03-26 06:29:56.44369 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 The Yard L2639964 P 43.3201667 -77.7224135 2015-05-03 12:50:00 obsr1482218 S23199497 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299278486 2021-03-26 06:12:17.833181 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-02-23 08:30:00 obsr479109 S22048373 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297006871 2021-04-01 10:47:08.851048 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Water St., Binghamton L1874991 P 42.106369 -75.9111307 2015-02-14 17:00:00 obsr998593 S21848989 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314904824 2021-04-01 10:51:06.899622 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Watts Flats WMA L490893 H 42.0350422 -79.4263016 2015-05-02 07:25:00 obsr2910282 S23177430 Traveling P22 EBIRD 130.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292080067 2021-03-26 07:20:31.408164 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Suffolk US-NY-103 30.0 418 Jamaica Avenue L653849 P 40.8152383 -72.9672861 2015-01-19 14:20:00 obsr2934754 S21430343 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292940653 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 30 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-01-24 10:16:00 obsr870166 S21518636 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317582067 2018-08-06 22:29:23 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Broome US-NY-007 28.0 Nathaniel Cole Park L2840663 H 42.1436445 -75.705164 2015-05-09 07:45:00 obsr879105 S23328781 Traveling P22 EBIRD 180.0 2.414 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297238937 2021-04-01 12:28:44.297881 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 38 United States US New York US-NY Chenango US-NY-017 28.0 Oxford L285390 T 42.44197 -75.59773 2015-02-15 14:00:00 obsr1303581 S21870440 Traveling P22 EBIRD 105.0 24.14 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291873691 2021-03-30 19:29:33.633096 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Ice House Pond, Montauk L1036496 H 41.051156 -71.956973 2015-01-18 13:30:00 obsr271871 S21414224 Stationary P21 EBIRD 15.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312803657 2021-04-01 12:14:19.266649 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Suffolk US-NY-103 30.0 Nissequogue River SP L501705 H 40.9004069 -73.2310757 2015-04-25 11:14:00 obsr1228860 S23048560 Traveling P22 EBIRD 109.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312500300 2018-08-04 17:11:51 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Oswego US-NY-075 US-NY_768 13.0 Three Mile Bay WMA--Phillips Pt. L298675 H 43.2392316 -76.0503864 2015-04-23 05:45:00 obsr979921 S23027236 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324138064 2021-03-19 16:19:20.977326 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-05-31 07:58:00 obsr502830 S23716837 Traveling P22 EBIRD 29.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307186653 2018-08-04 17:05:14 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 2 United States US New York US-NY Chemung US-NY-015 28.0 Sullivanville Dam L312295 H 42.1930881 -76.7819872 2015-04-03 12:16:00 obsr1334267 S22661282 Traveling P22 EBIRD 37.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321513365 2021-04-01 10:57:06.520339 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-20 08:40:00 obsr265018 S23549865 Traveling P22 EBIRD 168.0 0.402 2.0 1 G1281508 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305096889 2021-03-30 19:37:33.521815 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 3 United States US New York US-NY Wayne US-NY-117 13.0 43.2740 X -76.9745Sodus Point SP L3512187 P 43.27405 -76.97449 2015-03-16 12:15:00 obsr1386068 S22502702 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311240198 2021-03-26 07:20:31.408164 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Theodore Roosevelt County Park, Montauk L1301751 H 41.0548256 -71.8999386 2015-04-19 12:42:00 obsr598381 S22944138 Traveling P22 EBIRD 21.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311515308 2021-04-01 12:32:15.282601 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-10 13:58:00 obsr2233270 S22961055 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298871429 2021-04-01 12:30:15.438381 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 8 United States US New York US-NY Herkimer US-NY-043 13.0 5s ( Little Falls ) L3406420 P 43.0165287 -74.8892283 2015-02-21 10:51:00 obsr1708031 S22013804 Incidental P20 EBIRD 4.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299935160 2021-03-19 16:32:34.732091 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 2 United States US New York US-NY Kings US-NY-047 Gravesend Bay, middle parking lot L1843449 H 40.6040297 -74.0243731 2015-02-27 14:14:00 obsr1821546 S22098232 Traveling P22 EBIRD 36.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297659090 2021-03-30 19:43:32.881136 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-16 15:00:00 obsr1732267 S21908072 Stationary P21 EBIRD 15.0 2.0 1 G1150446 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308717864 2021-04-01 11:15:31.646886 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 5 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-04-09 12:00:00 obsr2078092 S22774046 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317048364 2021-03-24 19:48:44.880783 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-07 19:43:00 obsr1545618 S23297859 Traveling P22 EBIRD 53.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317377518 2021-03-26 06:17:19.712573 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-08 11:00:00 obsr1379161 S23316091 Stationary P21 EBIRD 210.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316138332 2021-05-13 19:31:54.715042 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Inlet WMA--Sliker Hill Rd. dike & wetlands L674319 H 42.7145597 -77.7100646 2015-05-05 10:40:00 obsr1060479 S23245250 Traveling P22 EBIRD 89.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319780099 2018-08-06 22:29:59 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Franklin US-NY-033 14.0 US-NY-Paul Smiths - 44.4392x-74.2518 - May 15, 2015, 8:12 AM L3644433 P 44.439151 -74.251841 2015-05-15 08:12:00 obsr2630526 S23451732 Traveling P22 EBIRD 57.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316055204 2021-03-26 07:46:52.994574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-05-05 06:59:00 obsr2270510 S23240801 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311770565 2018-08-04 17:11:23 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-20 13:28:00 obsr1472872 S22978579 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288129394 2021-04-01 11:24:19.637193 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-01 08:41:00 obsr749440 S21111453 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1087915 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319502551 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 8 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-14 06:15:00 obsr547602 S23435774 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312329354 2021-03-26 06:55:00.227271 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Ontario US-NY-069 13.0 Home L1898533 P 42.8006436 -77.2645283 2015-04-23 11:15:00 obsr696564 S23015596 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292901347 2018-08-04 16:55:07 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-01-24 11:20:00 obsr325018 S21515682 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310617068 2015-04-17 10:12:14 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Mt. Sapsucker L1772923 H 42.4817726 -76.449865 2015-04-17 10:11:00 obsr1092576 S22904889 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312299064 2020-07-20 09:16:51 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-23 07:16:00 obsr2224244 S23013450 Traveling P22 EBIRD 99.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306093795 2021-03-23 16:52:36.900075 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-03-29 09:30:00 obsr1137265 S22578395 Rusty Blackbird Spring Migration Blitz P41 EBIRD 180.0 4.828 3.0 1 G1196667 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321730261 2018-08-06 22:30:28 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Montgomery US-NY-057 13.0 East Canada Lake L1013520 P 43.0329254 -74.7437561 2015-05-18 07:25:00 obsr2694889 S23563139 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322734961 2021-03-26 06:17:19.712573 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Erie US-NY-029 13.0 Delaware Park--Rumsey Woods L1348448 H 42.9307931 -78.8698229 2015-05-25 07:35:00 obsr749440 S23623409 Traveling P22 EBIRD 38.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320602233 2021-03-26 06:20:10.658048 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Genesee US-NY-037 13.0 Feeder Ditch, south L906683 H 43.0867199 -78.4419882 2015-05-17 15:23:00 obsr749440 S23495173 Traveling P22 EBIRD 44.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS447628642 2018-08-04 17:02:27 337 species avibase-694C127A Mute Swan Cygnus olor X United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-03-22 13:00:00 obsr2983531 S32900324 Historical P62 EBIRD 90.0 3.0 1 G1663535 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332252634 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-29 14:06:00 obsr1987335 S24302135 Traveling P22 EBIRD 109.0 1.127 2.0 1 G1349792 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308935534 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 16 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-10 13:45:00 obsr186539 S22789918 Traveling P22 EBIRD 120.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303144936 2022-02-17 14:32:23.002448 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 13 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-14 14:30:00 obsr2448957 S22351992 Traveling P22 EBIRD 300.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312988165 2021-03-19 16:43:17.120646 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 Male, Adult (1) United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditchbank Auto tour L1001436 P 43.1068108 -75.7973814 2015-04-25 11:42:00 obsr2716320 S23059356 Traveling P22 EBIRD 120.0 9.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321603285 2021-11-15 03:06:58.889978 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-20 09:00:00 obsr1548221 S23555495 Traveling P22 EBIRD 28.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320167508 2015-10-17 16:11:51 5956 species avibase-F35821AA Semipalmated Sandpiper Calidris pusilla X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-13 05:45:00 obsr1009338 S23472524 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308099993 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-06 15:30:00 obsr2750470 S22726446 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300104916 2019-01-03 10:54:11 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Cedar Beach & Ocean Pkwy L3446152 P 40.6336829 -73.34095 2015-02-28 12:43:00 obsr1848026 S22112405 Traveling P22 EBIRD 23.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323826700 2021-03-23 17:20:04.546757 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Wolf Run Rd. L246481 H 42.0197222 -78.8863889 2015-05-29 07:19:00 obsr2588479 S23696729 Traveling P22 EBIRD 187.0 4.023 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306553515 2015-03-31 16:06:20 591 species avibase-1929E1E1 Canvasback Aythya valisineria 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Iroquois NWR--Swallow Hollow Trail L771567 H 43.1254425 -78.3256102 2015-03-31 15:30:00 obsr2939916 S22613915 Traveling P22 EBIRD 34.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309994223 2015-04-14 14:07:32 32901 species avibase-1A0096F2 Mourning Warbler Geothlypis philadelphia X United States US New York US-NY Westchester US-NY-119 30.0 Valhalla L1293558 P 41.0825132 -73.8110018 2015-04-14 12:15:00 obsr1932005 S22861518 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309367738 2021-04-01 12:14:19.266649 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-12 09:07:00 obsr1228860 S22818240 Traveling P22 EBIRD 164.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320747223 2022-01-20 09:38:40.245267 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-17 06:15:00 obsr896341 S23502982 Traveling P22 EBIRD 373.0 4.023 20.0 1 G1275330 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321872838 2021-03-26 06:17:19.712573 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-21 14:20:00 obsr1379161 S23572447 Traveling P22 EBIRD 180.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313173016 2021-11-09 20:43:00.370448 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 2 United States US New York US-NY Putnam US-NY-079 US-NY_868 28.0 Jordan Pond/Perkins Trail Loop L3592405 P 41.4512423 -73.8614702 2015-04-26 06:30:00 obsr2898234 S23070350 Traveling P22 EBIRD 360.0 11.265 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292486535 2021-03-23 16:52:36.900075 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-19 12:20:00 obsr1987335 S21482821 Traveling P22 EBIRD 67.0 1.609 2.0 1 G1118670 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312901900 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-25 14:46:00 obsr598381 S23054063 Traveling P22 EBIRD 144.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292797905 2021-03-26 06:29:56.44369 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 4 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-01-23 09:44:00 obsr2595828 S21507309 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303601045 2021-03-26 06:17:19.712573 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-03-16 14:45:00 obsr2071643 S22388034 Traveling P22 EBIRD 100.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315285498 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-03 07:30:00 obsr827632 S23198329 Traveling P22 EBIRD 240.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314273113 2021-03-23 16:30:20.514143 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 2 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Mexico-192 Sage Creek Dr L3572034 P 43.52566 -76.238123 2015-04-30 06:44:00 obsr1351949 S23139360 Traveling P22 EBIRD 55.0 1.609 2.0 1 G5326508 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314877664 2015-07-13 21:51:12 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hoag Ave. (Lick to Salt) L276050 H 42.666186 -76.3318223 2015-05-02 09:56:00 obsr1655171 S23176010 Traveling P22 EBIRD 10.0 1.609 2.0 1 G1247598 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291919547 2021-04-01 12:45:19.712958 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 3 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-01-19 10:00:00 obsr1502560 S21417610 Stationary P21 EBIRD 30.0 10.0 1 G1115638 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311240648 2018-08-04 17:11:16 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-19 12:28:00 obsr1764243 S22944169 Traveling P22 EBIRD 36.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291967089 2021-04-01 10:51:50.668112 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 Unknown Sex, Adult (1) United States US New York US-NY Chemung US-NY-015 28.0 Coldbrook Creek at bridge on Laurentian Place, Southport, NY L3017069 P 42.0645633 -76.7879373 2015-01-18 12:00:00 obsr778043 S21421541 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314964881 2021-11-09 22:27:57.096501 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Sullivan US-NY-105 28.0 Yankee Lake L1031003 P 41.5830932 -74.5566559 2015-04-30 07:30:00 obsr444155 S23180471 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320808036 2021-03-26 06:21:54.883933 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Kings US-NY-047 30.0 Park Place (Backyard list), Brooklyn L1355824 P 40.678271 -73.9753908 2015-05-17 13:30:00 obsr827632 S23506972 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304039955 2021-03-24 20:33:47.533911 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 3 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-19 12:19:00 obsr2074043 S22422343 Traveling P22 EBIRD 50.0 1.448 1.0 1 G1185101 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309665378 2021-04-01 11:42:50.317679 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-13 06:59:00 obsr666964 S22837398 Stationary P21 EBIRD 80.0 1.0 1 G1217869 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310511769 2018-08-04 17:09:28 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-16 18:20:00 obsr334398 S22897555 Stationary P21 EBIRD 40.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310599769 2015-04-17 08:16:20 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-04-17 08:03:00 obsr2211210 S22903651 Traveling P22 EBIRD 12.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296796545 2018-08-04 16:56:29 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-14 11:26:00 obsr1958124 S21830932 Traveling P22 EBIRD 29.0 1.609 2.0 1 G1145902 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311295408 2015-04-19 15:37:33 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Schuyler US-NY-097 13.0 US-NY-Trumansburg-5902–6024 State Route 79 L3538206 P 42.459538 -76.717527 2015-04-19 05:59:00 obsr2436517 S22947547 Stationary P21 EBIRD 2.0 2.0 1 G1226355 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316932000 2021-03-30 19:39:10.250398 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 2 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-05-04 10:00:00 obsr1494607 S23291126 Traveling P22 EBIRD 140.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292881844 2021-03-26 06:39:43.334073 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-24 09:00:00 obsr1668936 S21513888 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322026679 2018-08-06 22:30:48 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-05-22 07:45:00 obsr2449897 S23582347 Traveling P22 EBIRD 130.0 3.46 2.0 1 G1284646 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305869898 2018-08-04 17:04:32 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Holiday Inn L160744 H 42.08827 -76.79419 2015-03-28 17:18:00 obsr1334267 S22561880 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317736590 2021-03-26 06:29:56.44369 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 8 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-09 06:27:00 obsr2595828 S23337036 Stationary P21 EBIRD 100.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320097528 2021-03-19 16:02:45.308962 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-16 06:05:00 obsr800690 S23469117 Traveling P22 EBIRD 254.0 3.219 2.0 1 G1273111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313162101 2021-04-01 11:15:31.646886 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe N 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 10:11:00 obsr2313260 S23069680 Traveling P22 EBIRD 248.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307665208 2021-03-26 08:09:53.772059 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Rensselaer US-NY-083 13.0 Coopers Pond, Brunswick L1008485 H 42.7363667 -73.6531746 2015-04-05 09:34:00 obsr2211210 S22695233 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324210153 2021-04-01 11:47:43.260314 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-04-26 05:55:00 obsr2409011 S23721303 Area P23 EBIRD 80.0 1.2141 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1138403143 2021-05-01 16:46:42.286989 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-11 05:45:00 obsr1372480 S86837568 Traveling P22 EBIRD 420.0 8.047 5.0 1 G1266741 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298191225 2021-03-24 20:33:47.533911 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Hungerford Rd L3396119 P 42.4286517 -76.4355326 2015-02-15 08:30:00 obsr1987448 S21955269 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291500067 2021-11-09 18:43:19.688381 27616 species avibase-D77E4B41 American Robin Turdus migratorius 28 United States US New York US-NY Dutchess US-NY-027 13.0 Rockefeller Lane L3298648 P 42.0211792 -73.8741302 2015-01-17 14:20:00 obsr2573652 S21385407 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301871417 2021-04-01 12:14:19.266649 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Suffolk US-NY-103 Lake Montauk, Coast Guard Station L283127 H 41.07305 -71.9339556 2015-03-08 12:51:00 obsr598381 S22246916 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312843414 2021-04-01 12:45:19.712958 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 25 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-25 11:30:00 obsr2962893 S23050686 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311824311 2021-04-01 10:49:39.496318 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 5 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-04-19 07:38:00 obsr2683910 S22982289 Traveling P22 EBIRD 45.0 0.483 2.0 1 G1230111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319415394 2022-02-17 14:32:23.002448 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-12 11:48:00 obsr454647 S23430496 Traveling P22 EBIRD 145.0 3.219 4.0 1 G1269781 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291619209 2021-03-23 16:52:36.900075 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 12 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Rd., Triton Lane L296189 H 40.8219025 -72.5469155 2015-01-18 09:22:00 obsr431494 S21394699 Traveling P22 EBIRD 23.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320365685 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY New York US-NY-061 30.0 Riverside Park at 79th L3321784 P 40.7827186 -73.9868259 2015-05-11 18:10:00 obsr2072398 S23482644 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305656730 2021-03-19 16:02:45.308962 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Broome US-NY-007 28.0 Tri-City Airport L2347159 H 42.08439 -76.093867 2015-03-27 18:06:00 obsr800690 S22546042 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294982353 2018-08-04 16:55:41 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-02-04 12:30:00 obsr2186523 S21680958 Stationary P21 EBIRD 52.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295548699 2017-08-16 16:33:53 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2796 USFWS_480 Seatuck National Wildlife Refuge L2497290 P 40.7141276 -73.2085836 2015-02-07 14:15:00 obsr2902954 S21725955 Traveling P22 EBIRD 30.0 0.805 2.0 1 G1139015 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292513725 2021-11-09 18:43:47.507179 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook Orthopedic Physical Therapy L3308677 P 41.782948 -73.696509 2015-01-20 08:15:00 obsr2175245 S21485088 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302286813 2019-07-23 17:27:48 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Niagara US-NY-063 13.0 Dietz Rd. L1528040 H 43.2751803 -78.9874831 2015-03-10 09:50:00 obsr2756208 S22282722 Traveling P22 EBIRD 60.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312606114 2021-11-15 03:06:58.889978 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-24 17:23:00 obsr1889800 S23035356 Traveling P22 EBIRD 13.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291418477 2021-03-30 19:07:52.958398 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 2 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek--23rd St. overlook L1847440 H 40.5793572 -73.9907261 2015-01-16 14:00:00 obsr2363365 S21378750 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310623837 2021-03-30 19:29:33.633096 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 4 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-16 06:45:00 obsr717785 S22905336 Traveling P22 EBIRD 60.0 4.828 2.0 1 G1223379 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300885708 2021-03-26 06:12:17.833181 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-03-02 08:00:00 obsr1224512 S22170699 Stationary P21 EBIRD 75.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291659908 2021-04-01 12:18:57.910168 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Tompkins US-NY-109 13.0 Black Diamond Trail, Ithaca (southern end) L3300863 H 42.4524707 -76.517061 2015-01-18 12:23:00 obsr1655171 S21398209 Traveling P22 EBIRD 31.0 0.966 2.0 1 G1116208 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307834705 2021-03-23 16:52:36.900075 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-04-03 10:15:00 obsr150865 S22706120 Traveling P22 EBIRD 105.0 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317433577 2021-03-30 19:13:38.458673 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 20 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-09 07:42:00 obsr195244 S23319825 Traveling P22 EBIRD 81.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295869420 2021-03-26 07:20:31.408164 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 67 United States US New York US-NY Suffolk US-NY-103 30.0 Fort Pond, Montauk L1036490 H 41.042464 -71.9525567 2015-02-08 12:55:00 obsr564905 S21750802 Traveling P22 EBIRD 10.0 0.322 2.0 1 G1142205 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303573694 2021-03-30 19:29:33.633096 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 17 United States US New York US-NY Suffolk US-NY-103 30.0 Southaven County Park L472010 P 40.8064684 -72.8892231 2015-01-19 09:25:00 obsr395994 S22385889 Traveling P22 EBIRD 35.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291405496 2018-08-04 16:53:27 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-01-17 09:20:00 obsr2321296 S21377671 Stationary P21 EBIRD 8.0 2.0 1 G1112757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302918638 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 40 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-13 09:25:00 obsr916370 S22333771 Traveling P22 EBIRD 80.0 3.058 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295820932 2021-03-26 06:29:56.44369 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus N 3 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-02-08 07:40:00 obsr2449897 S21746672 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311780046 2021-03-23 17:00:13.087107 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--CLW office L2388208 P 42.4799683 -76.4513107 2015-04-21 08:37:00 obsr1696616 S22979193 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304853758 2021-03-23 17:00:13.087107 431 species avibase-90E2543E Blue-winged Teal Spatula discors N 2 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--Snyder Rd. L763841 H 42.4976053 -76.4600587 2015-03-22 11:38:00 obsr2683910 S22483328 Traveling P22 EBIRD 12.0 1.127 2.0 1 G1190064 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323118891 2021-04-01 11:15:31.646886 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 4 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 13:10:00 obsr150415 S23647629 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309493140 2021-03-24 19:30:07.33826 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Cortland US-NY-023 US-NY_2807 28.0 Andrew R. Fuller Recreational Park L2974830 H 42.7611609 -76.2683076 2015-04-06 13:03:00 obsr2279567 S22825918 Traveling P22 EBIRD 32.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303217542 2021-03-23 16:39:03.255227 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 25 United States US New York US-NY Richmond US-NY-085 Conference House Park L302089 H 40.4995098 -74.2516756 2015-03-15 09:22:00 obsr155915 S22357339 Traveling P22 EBIRD 45.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295373869 2021-03-24 19:40:03.542262 11371 species avibase-75600969 Northern Flicker Colaptes auratus 3 United States US New York US-NY Greene US-NY-039 13.0 Athens, NY L1955236 P 42.2732443 -73.8116455 2015-01-27 10:00:00 obsr1211835 S21711981 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300060745 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-21 11:00:00 obsr2182516 S22108315 Traveling P22 EBIRD 120.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321653916 2018-08-06 22:30:42 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Erie US-NY-029 13.0 WNY Land Conservancy Office L2058573 P 42.7636185 -78.5480404 2015-05-21 08:30:00 obsr2537615 S23558602 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296737196 2021-11-09 21:43:19.738495 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Ulster US-NY-111 13.0 Beaver Lake Road L1973484 P 41.8867238 -74.253974 2015-02-14 10:50:00 obsr2745190 S21825766 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300208683 2021-03-24 21:10:11.310781 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 225 United States US New York US-NY Saratoga US-NY-091 13.0 Blockhouse Park L495270 H 42.937331 -73.6567533 2015-03-01 08:40:00 obsr1154 S22120528 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306475985 2021-04-01 11:42:50.317679 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 7 F C1 F United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-03-31 07:30:00 obsr1640315 S22607969 Stationary P21 EBIRD 42.0 1.0 1 G1199258 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317401656 2021-03-26 06:29:56.44369 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-05-09 05:42:00 obsr934639 S23317868 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1301856366 2021-12-24 08:00:17.692628 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 62 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Unity Island (aka Squaw Is.) L671414 H 42.9244717 -78.9034653 2015-02-08 09:40:00 obsr2155450 S99352462 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322482227 2015-05-24 11:38:29 5664 species avibase-27903EF7 Black-bellied Plover Pluvialis squatarola 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 US-NY-Triangle-51–199 Upper Lisle Rd L3668463 P 42.400963 -75.97474 2015-05-24 11:14:00 obsr1092576 S23608570 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319698770 2021-03-26 06:17:19.712573 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Erie US-NY-029 13.0 Buffalo - Marriott Niagara L3643671 P 42.9883253 -78.7954849 2015-05-14 19:30:00 obsr2503906 S23446735 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316828737 2021-03-19 16:44:35.607263 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-07 07:52:00 obsr334398 S23285422 Traveling P22 EBIRD 88.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314983264 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 07:15:00 obsr1407710 S23181527 Traveling P22 EBIRD 360.0 4.828 28.0 1 G1247342 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317652586 2021-04-01 11:30:42.037277 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 06:00:00 obsr1760429 S23332547 Traveling P22 EBIRD 600.0 0.805 2.0 1 G1262228 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291115704 2015-01-15 11:32:23 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-01-14 14:42:00 obsr2224244 S21354249 Traveling P22 EBIRD 21.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288748756 2021-11-09 20:40:20.366096 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Putnam US-NY-079 28.0 Pine St. L2175760 P 41.422812 -73.9468879 2015-01-03 09:30:00 obsr2211514 S21162877 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322949235 2015-05-25 19:59:30 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Herkimer US-NY-043 14.0 ALC - Mountain Lodge L1925960 P 43.6990152 -74.9244404 2015-05-23 09:00:00 obsr2255732 S23636609 Stationary P21 EBIRD 60.0 2.0 1 G1289795 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318065573 2021-03-19 16:27:31.421791 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 3 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Sour Springs Rd. (Genesee Co.) L153399 H 43.125275 -78.37028 2015-05-10 09:14:00 obsr1097423 S23354875 Traveling P22 EBIRD 15.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310595691 2018-02-01 15:11:46 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom31 L3513973 H 42.4442101 -76.280451 2015-04-17 07:04:00 obsr620377 S22903366 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322795466 2015-05-25 12:07:14 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-25 08:40:00 obsr1119101 S23626993 Stationary P21 EBIRD 40.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294076406 2021-03-24 19:27:13.077399 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 8 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-29 09:03:00 obsr1334267 S21608527 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296003010 2018-08-04 16:54:56 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-01-23 16:00:00 obsr140280 S21761307 Traveling P22 EBIRD 22.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304041542 2021-03-24 20:33:47.533911 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-19 13:05:00 obsr626755 S22422458 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295531990 2021-03-26 07:20:31.408164 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-02-08 08:00:00 obsr2011512 S21724714 Traveling P22 EBIRD 80.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292987448 2021-03-26 06:39:43.334073 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-24 14:02:00 obsr642993 S21522123 Traveling P22 EBIRD 83.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302455936 2021-03-26 07:43:12.52294 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-03-10 07:51:00 obsr1721609 S22298303 Stationary P21 EBIRD 113.0 3.0 1 G1176066 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS306022650 2021-03-26 07:30:35.289997 11494 species avibase-20C2214E American Kestrel Falco sparverius X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-29 11:13:00 obsr2001485 S22573249 Traveling P22 EBIRD 107.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312431061 2015-04-23 22:00:47 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southold home L1569205 P 41.0410639 -72.416292 2015-04-22 12:00:00 obsr1293386 S23022573 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310956164 2021-03-26 07:42:06.558742 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 6 United States US New York US-NY Washington US-NY-115 13.0 New Swamp Rd. L3805899 H 43.3275378 -73.5075903 2015-04-18 12:51:00 obsr1222746 S22926770 Traveling P22 EBIRD 36.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319451214 2021-04-01 11:24:19.637193 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-05-13 10:50:00 obsr1782363 S23432485 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311259335 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 08:00:00 obsr454647 S22945364 Traveling P22 EBIRD 270.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS314560936 2018-08-04 17:13:15 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-01 07:50:00 obsr1830659 S23157249 Traveling P22 EBIRD 92.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292931027 2021-04-01 12:32:15.282601 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-01-24 10:00:00 obsr547602 S21517845 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317409132 2021-12-23 15:00:47.137144 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-05-09 06:45:00 obsr1598543 S23318371 Stationary P21 EBIRD 39.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288196261 2021-03-30 19:29:33.633096 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 2 United States US New York US-NY Suffolk US-NY-103 30.0 Grist Mill Pond, Stony Brook L504633 H 40.9138855 -73.1465167 2015-01-01 11:45:00 obsr1832543 S21117221 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287265 2018-08-04 16:52:18 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 60 United States US New York US-NY Richmond US-NY-085 Sprague Ave. Waterfront L2167027 H 40.4999968 -74.2364216 2015-01-01 10:55:00 obsr1893950 S21125161 Stationary P21 EBIRD 6.0 2.0 1 G1088909 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307274966 2021-03-22 09:17:32.016297 622 species avibase-50566E50 Lesser Scaup Aythya affinis 40 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-03 17:55:00 obsr666964 S22667620 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299093552 2017-08-02 19:50:32 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-02-22 12:30:00 obsr1982614 S22034036 Traveling P22 EBIRD 60.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314445081 2021-12-08 07:58:41.562209 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-30 18:02:00 obsr2571303 S23149697 Traveling P22 EBIRD 78.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307559955 2019-09-10 13:56:02 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-04-04 15:53:00 obsr2154746 S22687982 Stationary P21 EBIRD 20.0 95.0 1 G1204772 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318937501 2015-05-12 11:50:36 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Greene US-NY-039 28.0 Purling L3358133 P 42.2972028 -74.0221721 2015-05-09 09:30:00 obsr951823 S23403010 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312318875 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-23 12:00:00 obsr2706811 S23014826 Traveling P22 EBIRD 60.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323751822 2022-02-27 09:35:49.066489 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-05-28 16:27:00 obsr589593 S23691734 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315708565 2021-04-01 12:24:45.865424 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus X United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP, Sodus L712218 H 43.2673188 -77.0297813 2015-04-27 07:00:00 obsr2832110 S23220972 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313734039 2018-02-01 15:11:46 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor20 L3513962 H 42.7170586 -76.0855457 2015-04-28 06:47:00 obsr620377 S23105604 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316968958 2021-11-15 03:06:58.889978 3174 species avibase-41E9F54B Black-billed Cuckoo Coccyzus erythropthalmus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-07 16:15:00 obsr654841 S23293244 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288540045 2021-03-19 16:32:34.732091 3543 species avibase-8D3E8871 Chuck-will's-widow Antrostomus carolinensis 91 United States US New York US-NY Kings US-NY-047 30.0 Hendrix Creek L821734 H 40.6482804 -73.8749027 2015-01-02 12:20:00 obsr1189028 S21146048 Traveling P22 EBIRD 45.0 0.805 2.0 1 G1091697 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311984840 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 15:45:00 obsr2404047 S22992643 Traveling P22 EBIRD 180.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315794955 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 08:00:00 obsr1152226 S23225684 Traveling P22 EBIRD 300.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304447382 2021-03-26 07:42:06.558742 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 1 United States US New York US-NY Washington US-NY-115 13.0 River Rd., Ft. Miller L2742155 H 43.1343397 -73.5892952 2015-03-21 12:03:00 obsr1222746 S22453350 Traveling P22 EBIRD 33.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313430891 2016-01-27 15:21:38 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 28.0 125C Yellow Barn Rd. L1044911 P 42.4758637 -76.3421112 2015-04-26 07:00:00 obsr2001485 S23086680 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309098644 2019-10-01 15:53:27 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Tompkins US-NY-109 28.0 Jim Schug Trail--Weber to Keith including Dryden Pond L520931 H 42.4769082 -76.2953818 2015-04-11 07:06:00 obsr1655171 S22800791 Stationary P21 EBIRD 2.0 2.0 1 G1219958 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303029251 2015-03-14 12:15:48 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Westchester US-NY-119 30.0 39 Moran Place (yard list) L797605 P 40.9199498 -73.7637278 2015-03-06 15:30:00 obsr2196583 S22342812 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315251229 2021-03-19 16:08:39.161312 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Boutwell Hill SF L2054628 H 42.3186058 -79.1861057 2015-05-03 09:22:00 obsr2497657 S23196627 Traveling P22 EBIRD 104.0 6.84 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318065596 2021-03-19 16:27:31.421791 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Sour Springs Rd. (Genesee Co.) L153399 H 43.125275 -78.37028 2015-05-10 09:14:00 obsr1097423 S23354875 Traveling P22 EBIRD 15.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292450986 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-01-20 07:40:00 obsr2449897 S21479913 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312351075 2019-10-25 15:51:29 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 Female, Adult (1); Male, Adult (4) United States US New York US-NY St. Lawrence US-NY-089 13.0 home L1850306 P 44.6162578 -74.8236293 2015-04-23 08:00:00 obsr2834886 S23012266 Stationary P21 EBIRD 120.0 2.0 1 G1232597 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317351354 2015-05-08 22:34:49 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-08 19:30:00 obsr72341 S23314489 Stationary P21 EBIRD 60.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315479115 2021-03-26 06:29:56.44369 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-01 07:06:00 obsr334398 S23208469 Traveling P22 EBIRD 11.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308201979 2021-03-26 07:30:35.289997 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-06 17:16:00 obsr1092576 S22734516 Traveling P22 EBIRD 38.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313589886 2021-03-26 06:21:54.883933 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-27 12:30:00 obsr2078092 S23096292 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS362505806 2021-03-26 07:45:44.030579 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Wyoming US-NY-121 28.0 2700 Centerline Road, Varysburg L11026787 P 42.736555 -78.3020117 2015-02-22 08:00:00 obsr2888451 S26583076 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319932658 2021-11-09 18:47:29.006727 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Dutchess US-NY-027 28.0 Crown Maple farm L3645570 P 41.70082 -73.61783 2015-05-15 06:06:00 obsr444273 S23459894 Traveling P22 EBIRD 315.0 5.311 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298802331 2021-04-01 11:15:31.646886 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-21 12:25:00 obsr1601967 S22008299 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316765241 2021-03-26 06:17:19.712573 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 1 Male, Adult (1) United States US New York US-NY Erie US-NY-029 13.0 Green Acres L500059 P 43.013183 -78.8305092 2015-05-06 18:30:00 obsr1831158 S23281931 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316417216 2021-03-24 19:48:44.880783 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-06 08:04:00 obsr2595828 S23261717 Traveling P22 EBIRD 21.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305027274 2017-08-02 19:52:11 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 8 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-03-24 05:55:00 obsr2505956 S22497281 Rusty Blackbird Spring Migration Blitz P41 EBIRD 35.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290606217 2021-03-30 19:29:33.633096 32433 spuh avibase-E6552A7D sparrow sp. Passerellidae sp. (sparrow sp.) 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-11 07:23:00 obsr1189028 S21312520 Traveling P22 EBIRD 132.0 0.483 3.0 1 G1106578 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304017397 2021-04-01 11:30:42.037277 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-19 10:07:00 obsr2574755 S22420218 Traveling P22 EBIRD 42.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303138970 2021-04-01 11:49:53.573686 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-03-14 11:00:00 obsr676630 S22351493 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS356719884 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-19 10:00:00 obsr1387984 S26097569 Stationary P21 EBIRD 240.0 2.0 1 G5871584 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312980697 2018-08-04 17:12:18 5773 species avibase-671B69FE Piping Plover Charadrius melodus 1 United States US New York US-NY Erie US-NY-029 13.0 Meahl Rd L3590675 P 43.0398498 -78.5368824 2015-04-25 19:15:00 obsr2597186 S23058915 Stationary P21 EBIRD 5.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301940110 2018-01-07 20:13:45 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-03-09 07:26:00 obsr2420101 S22251723 Stationary P21 EBIRD 13.0 2.0 1 G1171846 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304475090 2021-12-10 08:21:29.396662 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-15 16:45:00 obsr258560 S22455538 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317028149 2021-11-15 03:06:58.889978 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-07 16:15:00 obsr1659461 S23296662 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306997103 2021-03-26 07:30:35.289997 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Libe Slope L1483567 H 42.44786 -76.48595 2015-04-02 12:20:00 obsr2436517 S22647516 Stationary P21 EBIRD 40.0 2.0 1 G1201734 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304448150 2021-11-09 21:35:18.646328 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-03-21 08:00:00 obsr2862523 S22453396 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135756 2021-03-26 07:56:20.588749 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 10 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-07 09:00:00 obsr2218212 S23589177 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309209606 2021-03-26 06:39:43.334073 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 6 Unknown Sex, Adult (2); Male, Adult (2); Female, Adult (2) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-11 11:05:00 obsr2885680 S22808161 Traveling P22 EBIRD 93.0 0.805 2.0 1 G1214978 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324201393 2021-04-01 11:47:43.260314 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-04-20 obsr2409011 S23720766 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307545842 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-04 09:00:00 obsr598381 S22686936 Traveling P22 EBIRD 140.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306913435 2018-08-04 17:04:59 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas X United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-04-01 16:45:00 obsr290506 S22640832 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308843344 2021-03-26 07:00:33.333856 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Queens US-NY-081 30.0 Kissena Park L491873 H 40.7462409 -73.8080852 2015-04-10 11:26:00 obsr2574755 S22783268 Traveling P22 EBIRD 39.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305891728 2021-04-01 11:24:19.637193 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 12 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-28 15:55:00 obsr934639 S22563601 Stationary P21 EBIRD 25.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295231101 2021-11-09 20:12:16.773384 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 6 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-02-06 09:00:00 obsr1912104 S21700156 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290538681 2018-08-04 16:53:09 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 10 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP--Belmont Islands L1656456 H 40.7357853 -73.342391 2015-01-11 13:00:00 obsr2017304 S21307681 Traveling P22 EBIRD 120.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321962617 2021-11-09 19:01:40.008558 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-22 09:59:00 obsr2175245 S23578072 Traveling P22 EBIRD 156.0 5.311 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301538593 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 30 United States US New York US-NY New York US-NY-061 30.0 Central Park--The Ramble L2063844 P 40.7576 -73.99379 2015-03-07 14:15:00 obsr1658026 S22220292 Traveling P22 EBIRD 90.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313506294 2021-11-09 19:55:29.587179 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 3 United States US New York US-NY Orange US-NY-071 28.0 Six and a Half Station Rd. Sanctuary L306143 H 41.4025242 -74.3499176 2015-04-27 09:15:00 obsr1568163 S23091265 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292633474 2015-01-22 23:23:10 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Cohoes-32 New Cortland St L3306347 P 42.778765 -73.700787 2015-01-22 15:00:00 obsr2186523 S21494501 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323096516 2021-03-19 16:19:20.977326 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Erie US-NY-029 13.0 Knollwood L1231571 P 42.5787453 -78.6847687 2015-05-26 08:00:00 obsr444901 S23646114 Traveling P22 EBIRD 120.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306683654 2018-08-04 17:04:53 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Saratoga US-NY-091 13.0 Coveville L2789900 P 43.060207 -73.59286 2015-03-31 14:14:00 obsr648176 S22624098 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311051513 2021-03-23 16:52:36.900075 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Suffolk US-NY-103 30.0 North Fork Preserve L1421657 H 40.97294 -72.6178146 2015-04-18 08:00:00 obsr717785 S22932748 Traveling P22 EBIRD 210.0 4.828 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304265573 2015-03-20 18:20:45 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 Female, Adult (1) United States US New York US-NY Washington US-NY-115 13.0 Granville L131798 T 43.4078712 -73.259552 2015-03-17 10:00:00 obsr2196530 S22440016 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303059367 2015-03-26 09:39:55 616 species avibase-25C94A8F Greater Scaup Aythya marila 3 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Upper Loop L214381 P 42.3717347 -76.3653982 2015-03-14 13:00:00 obsr2074043 S22345296 Traveling P22 EBIRD 90.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307653949 2021-03-23 16:39:03.255227 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-05 09:14:00 obsr1958124 S22694488 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312967010 2018-08-04 17:12:15 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-04-25 15:15:00 obsr2504709 S23058052 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309453885 2015-04-12 15:59:44 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Tompkins US-NY-109 28.0 143 Howland Road L3442761 P 42.2876594 -76.4194393 2015-04-12 09:40:00 obsr2430746 S22823235 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304316449 2021-04-01 12:40:54.473014 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 2 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Mechanicville-1 Ferry St L3502419 P 42.906292 -73.683986 2015-03-19 09:10:00 obsr648176 S22443768 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293083414 2020-03-22 07:58:01 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 3 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-01-19 07:33:00 obsr730231 S21529629 Stationary P21 EBIRD 34.0 2.0 1 G1122353 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309043364 2022-02-18 10:47:29.953615 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 19 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-11 10:24:00 obsr1062070 S22797415 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322773576 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-25 06:00:00 obsr2883074 S23625713 Traveling P22 EBIRD 280.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308292615 2021-03-23 17:41:09.545385 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 4 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve--Buttermilk Hill area L2724302 H 41.1067994 -73.8138199 2015-04-07 09:30:00 obsr1742994 S22741187 Traveling P22 EBIRD 210.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317201494 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Monroe US-NY-055 13.0 Oak Leaf Ln L1952075 P 43.0583843 -77.488085 2015-05-08 07:30:00 obsr2223307 S23305998 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 diff --git a/tests/mocked/small3.txt b/tests/mocked/small3.txt new file mode 100644 index 0000000..fcb61c9 --- /dev/null +++ b/tests/mocked/small3.txt @@ -0,0 +1,10001 @@ +global_unique_identifier last_edited_date taxonomic_order category taxon_concept_id common_name scientific_name subspecies_common_name subspecies_scientific_name exotic_code observation_count breeding_code breeding_category behavior_code age_sex country country_code state state_code county county_code iba_code bcr_code usfws_code atlas_block locality locality_id locality_type latitude longitude observation_date time_observations_started observer_id sampling_event_identifier protocol_type protocol_code project_code duration_minutes effort_distance_km effort_area_ha number_observers all_species_reported group_identifier has_media approved reviewed reason trip_comments species_comments +URN:CornellLabOfOrnithology:EBIRD:OBS316144875 2016-01-28 21:57:37 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 2 United States US New York US-NY Chenango US-NY-017 28.0 Home woods L3452888 P 42.3471065 -75.6650519 2015-05-05 10:24:00 obsr1303581 S23245565 Traveling P22 EBIRD 130.0 1.609 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1124286074 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-05 09:24:00 obsr1574708 S85773000 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310693467 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-04-17 06:02:00 obsr934639 S22909607 Traveling P22 EBIRD 40.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303153516 2021-04-01 10:51:06.899622 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-14 11:00:00 obsr479109 S22352663 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289939195 2018-12-08 13:34:25 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Tompkins US-NY-109 28.0 Mount Pleasant, east hill L693939 H 42.4591964 -76.3726723 2015-01-03 09:25:00 obsr2760150 S21258949 Traveling P22 EBIRD 10.0 1.368 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354161 2021-03-26 06:11:29.8335 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-30 10:14:00 obsr2683910 S21630309 Stationary P21 EBIRD 5.0 2.0 1 G1131419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311773141 2015-05-08 13:53:16 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm sugarbush transect L3270338 P 42.3482684 -76.2983322 2015-04-21 07:23:00 obsr455249 S22978716 Traveling P22 EBIRD 11.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309115057 2018-08-04 17:08:34 292 species avibase-60214D49 Cackling Goose Branta hutchinsii 1 United States US New York US-NY Wyoming US-NY-121 13.0 Akron Reservoir L811457 P 42.8666543 -78.3625603 2015-04-11 13:40:00 obsr1104059 S22801800 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305092106 2021-11-09 18:28:19.853663 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Dutchess US-NY-027 13.0 The Fly, Pine Plains, NY L2010420 P 41.991917 -73.6307949 2015-03-23 16:10:00 obsr1062217 S22502299 Stationary P21 EBIRD 40.0 2.0 1 G1194872 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318570958 2015-05-11 11:50:29 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Monroe US-NY-055 13.0 Trolley Trail and Ayrault Road L2274899 P 43.079568 -77.426087 2015-05-11 09:30:00 obsr2391541 S23381948 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295435792 2018-11-05 19:34:01 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Chemung US-NY-015 28.0 Soaring Hill Dr. L3345309 P 42.122506 -76.9019741 2015-02-07 14:37:00 obsr1092576 S21716875 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289687120 2021-03-23 16:30:20.514143 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 2 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3274807 P 43.429016 -75.903778 2015-01-07 12:58:00 obsr1477887 S21238761 Stationary P21 EBIRD 53.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306006621 2021-03-26 07:20:31.408164 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-03-29 11:03:00 obsr2485753 S22572118 Traveling P22 EBIRD 48.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313973266 2015-04-29 02:48:25 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 4 United States US New York US-NY Schuyler US-NY-097 US-NY_845 13.0 Finger Lakes NF--Teeter Pond Area L940987 H 42.5426153 -76.7982316 2015-04-28 11:45:00 obsr2260025 S23120646 Traveling P22 EBIRD 90.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288248282 2021-03-23 16:52:36.900075 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree SP L283564 H 40.6394313 -73.2644575 2015-01-01 13:05:00 obsr41879 S21121631 Traveling P22 EBIRD 10.0 0.805 4.0 1 G1089458 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291670275 2021-03-23 17:40:24.452972 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris N 2 United States US New York US-NY Warren US-NY-113 14.0 Pickle Hill Rd L3300895 P 43.4116341 -73.6389795 2015-01-18 10:07:00 obsr1222746 S21398662 Traveling P22 EBIRD 23.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308610055 2021-03-23 16:39:03.255227 6339 species avibase-8535345B Herring Gull Larus argentatus 10 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-09 08:10:00 obsr1958124 S22765398 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290411765 2021-03-26 06:29:56.44369 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus N 30 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-11 11:45:00 obsr934639 S21297407 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299348188 2018-08-04 16:58:09 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-24 09:33:00 obsr1893950 S22053534 Traveling P22 EBIRD 79.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309873618 2021-11-09 21:41:38.795423 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-04-13 07:00:00 obsr1588136 S22853085 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309360672 2021-03-19 16:19:20.977326 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 22 United States US New York US-NY Erie US-NY-029 13.0 Buffalo Harbor State Park L2480018 H 42.8458185 -78.8622071 2015-04-12 11:29:00 obsr502830 S22817819 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320728396 2015-05-17 21:16:07 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Albany US-NY-001 13.0 Hennessey Rd powerline ROW L3651514 P 42.6713933 -73.9683643 2015-05-16 07:30:00 obsr2855945 S23501924 Stationary P21 EBIRD 15.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306193381 2015-03-29 22:18:40 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-03-25 06:45:00 obsr2716320 S22586070 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304380561 2018-08-04 17:02:12 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Genesee US-NY-037 13.0 creek rd-radio tower L3492960 P 42.9767719 -78.1852341 2015-03-21 09:20:00 obsr393804 S22448608 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307024787 2021-04-01 11:15:31.646886 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-02 15:30:00 obsr2750470 S22649468 Traveling P22 EBIRD 120.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315066833 2021-03-30 19:13:38.458673 20829 species avibase-B9B272F4 Common Raven Corvus corax 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Burger Park L390594 H 43.3099074 -77.7326596 2015-05-02 10:04:00 obsr34861 S23186240 Traveling P22 EBIRD 100.0 0.805 1.0 1 G1247728 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304699640 2021-11-09 19:21:17.284552 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus N 20 United States US New York US-NY Dutchess US-NY-027 13.0 Wappinger Creek L990982 H 41.5824512 -73.9459705 2015-03-22 10:48:00 obsr1732267 S22472093 Traveling P22 EBIRD 16.0 1.931 2.0 1 G1189942 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315265201 2021-11-09 19:01:40.008558 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-02 06:15:00 obsr1433400 S23197338 Traveling P22 EBIRD 225.0 6.083 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293744847 2021-03-26 06:29:56.44369 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Monroe US-NY-055 13.0 Jeffords Road L3310183 P 43.01 -77.62 2015-01-28 14:30:00 obsr1463039 S21582275 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313051489 2021-03-23 16:39:03.255227 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF--Snag Swamp L1473094 H 40.515363 -74.2213938 2015-04-26 07:46:00 obsr1958124 S23063237 Traveling P22 EBIRD 29.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309604515 2021-03-19 16:19:20.977326 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY Erie US-NY-029 13.0 11 Ironwood Court L2904834 P 43.0168464 -78.723591 2015-04-09 16:30:00 obsr2741295 S22833364 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313909898 2020-05-16 18:13:14 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 30 United States US New York US-NY Otsego US-NY-077 28.0 Ottaway Pond L3568681 P 42.7363566 -74.8490193 2015-04-28 14:00:00 obsr189015 S23116806 Traveling P22 EBIRD 90.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293132360 2021-03-26 06:29:56.44369 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-25 13:13:00 obsr934639 S21533690 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305265889 2021-04-01 11:15:31.646886 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 40 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-03-25 06:45:00 obsr2233143 S22515694 Area P23 EBIRD 420.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309355525 2021-04-01 12:18:57.910168 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 13.0 Salt Point Natural Area L353038 H 42.5394116 -76.5496267 2015-04-12 10:10:00 obsr1418810 S22817505 Traveling P22 EBIRD 60.0 0.75 2.0 1 G1216802 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309561777 2022-03-05 22:03:50.715584 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-12 08:00:00 obsr1544235 S22830579 Traveling P22 EBIRD 210.0 6.437 3.0 1 G1379909 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719796 2021-03-26 06:07:45.516082 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 26 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-11 15:24:00 obsr1513140 S21322336 Traveling P22 EBIRD 80.0 3.283 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304344086 2018-08-04 17:02:10 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-03-21 08:37:00 obsr59643 S22445782 Stationary P21 EBIRD 16.0 10.0 1 G1187141 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871010 2021-03-26 07:56:20.588749 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-09 16:00:00 obsr2218212 S21672025 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313646401 2021-05-19 16:43:11.173131 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Oswego US-NY-075 US-NY_759 13.0 Deer Creek Marsh WMA--Kelly Dr. L15014201 H 43.5949775 -76.1752212 2015-04-25 16:30:00 obsr193855 S23099891 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315257446 2022-02-17 14:32:23.002448 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-03 08:50:00 obsr1605975 S23196940 Traveling P22 EBIRD 152.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315171944 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-01 15:41:00 obsr924076 S23192027 Traveling P22 EBIRD 130.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289026255 2021-11-09 20:12:16.773384 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 Female, Adult (2) United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-01-04 13:09:00 obsr1912104 S21187013 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322578245 2021-03-26 06:21:54.883933 447 species avibase-C235A4D7 Gadwall Mareca strepera X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 10:00:00 obsr1077730 S23613836 Traveling P22 EBIRD 270.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305086017 2021-04-01 11:43:48.927316 483 species avibase-85625D75 Mallard Anas platyrhynchos N 10 United States US New York US-NY Ontario US-NY-069 13.0 US-NY-ONT Canandaigua--McDonald's, across from Walgreen's [Canandaigua_SE] L972218 P 42.877473 -77.2681358 2015-03-24 10:33:00 obsr606693 S22501833 Stationary P21 EBIRD 6.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310169076 2016-03-11 09:00:40 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson trail west split n side main pond (on small bridge) L301742 P 42.4804482 -76.4531896 2015-04-15 08:02:00 obsr2307843 S22873869 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315115219 2021-03-26 06:29:56.44369 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-02 05:30:00 obsr2595828 S23188920 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311973982 2021-03-26 06:39:43.334073 337 species avibase-694C127A Mute Swan Cygnus olor 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Cherry Hill L1089061 H 40.7747813 -73.972173 2015-04-21 09:21:00 obsr1548221 S22991896 Traveling P22 EBIRD 19.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318537983 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-11 09:10:00 obsr1201479 S23380158 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304390321 2018-08-04 17:02:10 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-03-21 08:10:00 obsr1958124 S22449375 Traveling P22 EBIRD 5.0 0.322 2.0 1 G1186878 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297240941 2018-08-04 16:56:36 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 5 United States US New York US-NY Richmond US-NY-085 NY Harbor/Hudson River L3379180 P 40.5960975 -74.0418434 2015-02-15 14:20:00 obsr1801902 S21870610 Traveling P22 EBIRD 120.0 12.875 40.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322629905 2018-08-04 17:28:06 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Cattaraugus US-NY-009 13.0 Conewango Swamp WMA L246473 H 42.1794444 -78.9861111 2015-05-20 16:30:00 obsr551881 S23616815 Traveling P22 EBIRD 165.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298630611 2021-03-26 07:30:35.289997 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-02-20 08:30:00 obsr2137468 S21993263 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311677567 2015-04-20 19:37:32 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-04-20 19:15:00 obsr620377 S22972721 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288754919 2021-03-19 16:44:35.607263 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 20 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-03 08:52:00 obsr916033 S21163380 Traveling P22 EBIRD 229.0 4.828 2.0 1 G1092968 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311393811 2021-03-26 06:17:19.712573 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-04-19 obsr2096529 S22953625 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307991235 2021-04-01 11:15:31.646886 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-06 09:01:00 obsr904434 S22718793 Traveling P22 EBIRD 203.0 8.53 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306991260 2021-03-24 20:33:47.533911 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 Male, Adult (2) United States US New York US-NY Tompkins US-NY-109 28.0 Bald Hill Road L3274565 P 42.3406201 -76.4929392 2015-04-02 11:20:00 obsr2023592 S22646753 Stationary P21 EBIRD 315.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307240913 2021-03-23 17:38:38.809066 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Schuyler US-NY-097 13.0 Seneca Harbor Park L150677 H 42.383846 -76.873375 2015-04-03 17:57:00 obsr2173269 S22665279 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312761921 2021-03-26 07:46:52.994574 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-25 06:10:00 obsr1154 S23045928 Traveling P22 EBIRD 170.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298997306 2021-03-26 07:56:20.588749 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-02-20 08:30:00 obsr1296638 S22023973 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311961437 2021-03-26 06:39:43.334073 622 species avibase-50566E50 Lesser Scaup Aythya affinis N 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Greywacke Arch L2179946 H 40.7792619 -73.9657742 2015-04-19 08:35:00 obsr1548221 S22991122 Traveling P22 EBIRD 26.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304605457 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-22 07:26:00 obsr642993 S22465099 Traveling P22 EBIRD 146.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318237614 2021-03-26 06:17:19.712573 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Erie US-NY-029 13.0 Snyderwoods Court L3523236 P 42.9772429 -78.7945461 2015-05-09 12:30:00 obsr1043007 S23363921 Stationary P21 EBIRD 270.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311244838 2022-03-05 22:03:50.715584 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-19 09:00:00 obsr444155 S22944471 Traveling P22 EBIRD 120.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319336552 2021-03-26 07:56:20.588749 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park L693342 P 40.6618894 -73.719635 2015-05-13 08:00:00 obsr2505956 S23425944 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313840532 2021-03-26 06:29:56.44369 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 1 United States US New York US-NY Monroe US-NY-055 13.0 Harwick Rd., Irondequoit (Varied Thrush 2015) L3592824 H 43.1740003 -77.5539672 2015-04-28 11:40:00 obsr2817239 S23112320 Stationary P21 EBIRD 45.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320758648 2021-04-01 11:15:31.646886 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 12 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-17 06:05:00 obsr150415 S23503618 Traveling P22 EBIRD 545.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302904410 2021-03-26 08:14:57.071052 7103 spuh avibase-528F0652 cormorant sp. Phalacrocoracidae sp. N 2 United States US New York US-NY Westchester US-NY-119 30.0 Northwest Yonkers L3480034 P 40.9553 -73.882866 2015-03-13 16:00:00 obsr1333670 S22332566 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294343956 2021-03-30 19:29:33.633096 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 23 United States US New York US-NY Suffolk US-NY-103 Cedar Beach, Town of Brookhaven L834922 H 40.9648162 -73.039813 2015-02-01 10:00:00 obsr2338506 S21629580 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288826675 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-01 08:30:00 obsr145923 S21171347 Traveling P22 EBIRD 225.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309844580 2021-04-22 12:55:05.75868 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Oneida US-NY-065 13.0 Waterville Home Grounds L1257983 P 42.9688865 -75.3351134 2015-04-13 11:00:00 obsr2139704 S22850843 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310334937 2021-11-09 19:51:09.255083 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-04-15 17:15:00 obsr1628992 S22885049 Traveling P22 EBIRD 135.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311358130 2018-08-04 17:11:14 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-04-19 10:15:00 obsr286403 S22951326 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290551200 2021-03-23 16:52:36.900075 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Orchard Neck Ct L3277637 P 40.7927711 -72.7881896 2015-01-11 08:00:00 obsr2846902 S21308574 Stationary P21 EBIRD 540.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305837588 2022-02-17 14:32:23.002448 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 10 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-28 15:50:00 obsr152435 S22559548 Traveling P22 EBIRD 48.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311386004 2016-10-24 20:34:10 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Richmond US-NY-085 30.0 Blue Heron Park L300535 H 40.5303351 -74.1774023 2015-04-19 09:00:00 obsr1535951 S22953115 Traveling P22 EBIRD 360.0 6.437 50.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316144876 2016-01-28 21:57:37 11371 species avibase-75600969 Northern Flicker Colaptes auratus 5 United States US New York US-NY Chenango US-NY-017 28.0 Home woods L3452888 P 42.3471065 -75.6650519 2015-05-05 10:24:00 obsr1303581 S23245565 Traveling P22 EBIRD 130.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321094648 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Nassau US-NY-059 30.0 Nassau Coliseum L3655553 P 40.7228844 -73.5905322 2015-05-18 14:30:00 obsr1468815 S23524025 Traveling P22 EBIRD_NJ 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323111623 2021-03-30 19:39:10.250398 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-26 07:35:00 obsr1895507 S23647149 Traveling P22 EBIRD 195.0 3.219 2.0 1 G1291190 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299088818 2021-03-23 17:22:05.708166 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Herkimer US-NY-043 13.0 Sheep Run Daylily Farm L655147 H 43.2036169 -74.9769688 2015-02-22 13:10:00 obsr2855945 S22033705 Stationary P21 EBIRD 50.0 2.0 1 G1156978 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312260940 2021-03-23 16:47:03.540174 7200 species avibase-49D9148A Great Egret Ardea alba 5 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-23 07:30:00 obsr1918430 S23011033 Traveling P22 EBIRD 30.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310091850 2021-03-26 06:20:10.658048 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 5 United States US New York US-NY Genesee US-NY-037 13.0 paradise rd, bethany L3564512 P 42.9358381 -78.1478119 2015-04-12 14:15:00 obsr393804 S22868536 Traveling P22 EBIRD 60.0 3.058 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305380843 2017-09-09 13:14:35 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Hoyt spur powerline cut trail (0.223 km) L1368198 P 42.4797939 -76.4474848 2015-03-26 08:28:00 obsr2307843 S22524770 Traveling P22 EBIRD 5.0 0.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332422783 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-10 13:37:00 obsr334398 S24314134 Stationary P21 EBIRD 93.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302525191 2021-03-26 07:20:31.408164 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Suffolk US-NY-103 30.0 USFWS_636 Elizabeth A. Morton NWR L2309447 P 40.98818 -72.36968 2015-03-11 13:30:00 obsr613775 S22303692 Rusty Blackbird Spring Migration Blitz P41 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320882518 2018-08-06 22:30:30 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Veteran-1505–1523 State Route 13 L3653547 P 42.245367 -76.752995 2015-05-18 11:19:00 obsr1092576 S23511377 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318565589 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 15:00:00 obsr2793388 S23381650 Traveling P22 EBIRD 80.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288286492 2021-04-01 11:15:31.646886 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Kings US-NY-047 Floyd Bennett Field--Community Gardens L996212 H 40.5863861 -73.892777 2015-01-01 12:00:00 obsr2207991 S21125096 Traveling P22 EBIRD 180.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306030951 2021-04-01 10:51:50.668112 32949 species avibase-15EB3000 Hooded Warbler Setophaga citrina 35 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Dam L160699 H 42.0864692 -76.8096739 2015-03-29 11:45:00 obsr1334267 S22573665 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305687198 2021-03-23 16:30:20.514143 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-03-27 14:00:00 obsr979921 S22548432 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304391462 2018-08-04 17:02:17 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-21 12:54:00 obsr1958124 S22449472 Traveling P22 EBIRD 6.0 0.483 2.0 1 G1186861 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306825198 2021-08-05 15:12:08.31456 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Heckscher SP, East Islip L547888 H 40.7129149 -73.1650615 2015-04-01 14:30:00 obsr706483 S22634343 Traveling P22 EBIRD 60.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319545193 2018-08-04 17:27:10 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-05-14 09:27:00 obsr1201479 S23438174 Traveling P22 EBIRD 158.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310510821 2021-03-26 06:55:00.227271 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Ontario US-NY-069 13.0 Risser Rd. Swamp, Canandaigua L771877 H 42.9382814 -77.29738 2015-04-16 18:45:00 obsr749440 S22897497 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310923006 2021-12-28 15:50:27.785498 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-18 10:28:00 obsr606693 S22924602 Traveling P22 EBIRD 10.0 0.032 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294359083 2021-11-09 18:43:48.469321 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 12 United States US New York US-NY Dutchess US-NY-027 13.0 Perrotti Road L3331813 P 41.900369 -73.563875 2015-02-01 09:30:00 obsr1433400 S21630692 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315646770 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 06:00:00 obsr1135516 S23217699 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319648830 2021-11-15 03:06:58.889978 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-12 08:55:00 obsr1706920 S23443913 Traveling P22 EBIRD 190.0 0.483 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297278592 2021-04-01 12:29:50.209479 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Fulton US-NY-035 13.0 County Highway 108 (Crum Creek Corner) L2589121 P 43.0392303 -74.7140694 2015-02-15 14:55:00 obsr1708031 S21874089 Traveling P22 EBIRD 10.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304416214 2021-04-01 11:54:40.172593 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-21 15:00:00 obsr1958124 S22451145 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297611372 2015-02-16 14:27:48 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Tioga US-NY-107 28.0 home L3334738 P 42.3541279 -76.1759403 2015-02-14 07:30:00 obsr1737753 S21903645 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314967881 2021-04-01 12:32:15.282601 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 15 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-05-02 13:30:00 obsr544268 S23180634 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316682686 2021-03-24 20:57:48.241391 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-05-06 16:05:00 obsr1708031 S23277213 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310852196 2021-03-23 17:20:42.367321 6189 species avibase-39F29B55 Common Murre Uria aalge 1 United States US New York US-NY Chenango US-NY-017 US-NY_2780 28.0 Long Pond SF--Rt. 41 fishing access L3074026 H 42.422518 -75.851062 2015-04-18 08:26:00 obsr1092576 S22920236 Stationary P21 EBIRD 20.0 2.0 1 G1224239 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305691443 2021-04-01 12:18:57.910168 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Farmers Market L302685 H 42.4499031 -76.5090841 2015-03-26 08:54:00 obsr2683910 S22548747 Traveling P22 EBIRD 37.0 0.322 2.0 1 G1194519 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303241726 2021-03-26 07:20:31.408164 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-03-15 10:37:00 obsr2485753 S22359313 Traveling P22 EBIRD 80.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS376882195 2019-07-23 17:26:39 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southold Town Beach L142618 H 41.0892334 -72.4137115 2015-01-01 11:03:00 obsr1214394 S27808231 Stationary P21 EBIRD 23.0 1.0 1 G1100191 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310941311 2021-03-30 12:05:58.533651 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-18 07:45:00 obsr377694 S22925749 Traveling P22 EBIRD 180.0 6.437 10.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS615872910 2018-08-04 17:02:23 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay L629399 H 43.2183125 -77.536869 2015-03-22 obsr2796835 S45564192 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316853170 2018-08-06 22:29:07 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 4 United States US New York US-NY Columbia US-NY-021 13.0 Olana State Historic Site L357372 H 42.2183005 -73.8287207 2015-05-07 10:50:00 obsr481595 S23286649 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306472159 2021-11-09 18:27:18.873475 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 8 United States US New York US-NY Dutchess US-NY-027 13.0 Allen Road yard list, Salt Point L1943130 P 41.8350253 -73.8021156 2015-03-30 08:45:00 obsr2175245 S22607741 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305171471 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-24 10:40:00 obsr334398 S22508310 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293284125 2021-04-01 11:15:31.646886 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 150 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-25 12:50:00 obsr2404047 S21545326 Traveling P22 EBIRD 55.0 0.805 2.0 1 G1124404 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312954910 2021-04-01 11:49:53.573686 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N X United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-25 11:00:00 obsr492329 S23057290 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312282982 2021-04-01 11:15:31.646886 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-23 07:15:00 obsr827632 S23012429 Traveling P22 EBIRD 210.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309484481 2015-04-12 18:11:59 26890 species avibase-94A44032 European Starling Sturnus vulgaris 9 United States US New York US-NY Richmond US-NY-085 30.0 Goethals Bridge Pond--Observation Platform L884460 H 40.6281787 -74.1741575 2015-04-12 07:45:00 obsr41879 S22825277 Stationary P21 EBIRD 25.0 6.0 1 G1216704 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300253809 2021-03-26 07:56:20.588749 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-27 08:32:00 obsr753816 S22124383 Traveling P22 EBIRD 156.0 2.736 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308340647 2018-08-04 17:07:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-07 10:05:00 obsr319738 S22744833 Traveling P22 EBIRD 120.0 8.787 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310607519 2021-03-23 17:32:20.03109 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-04-17 08:15:00 obsr2172593 S22904183 Traveling P22 EBIRD 61.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307389763 2021-03-19 16:08:39.161312 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-04-04 10:22:00 obsr2497657 S22676182 Traveling P22 EBIRD 30.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305780149 2021-04-01 12:32:15.282601 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Plains Preserve L1575568 H 40.7240849 -73.5844534 2015-03-28 08:00:00 obsr2207991 S22555471 Traveling P22 EBIRD 120.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315036804 2015-05-02 18:07:29 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.8768877 -73.7898123 2015-04-25 09:45:00 obsr98313 S23184569 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288786874 2021-11-09 21:56:49.555782 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Ulster US-NY-111 28.0 JBNHS Wallkill Valley Raptors L3261415 P 41.7190555 -74.1366005 2015-01-03 08:00:00 obsr1482758 S21166044 Traveling P22 EBIRD 300.0 24.14 37.0 1 G1093120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288969335 2021-04-01 11:30:42.037277 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 3 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-02 07:35:00 obsr259298 S21182432 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317728126 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 06:15:00 obsr2499879 S23336570 Traveling P22 EBIRD 225.0 4.828 3.0 1 G1259632 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316451877 2018-12-30 10:00:33 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-06 06:20:00 obsr2321296 S23263791 Traveling P22 EBIRD 268.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313114991 2021-03-24 20:11:57.676649 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Oswego US-NY-075 Noyes Sanctuary L249716 H 43.5237609 -76.3690253 2015-04-17 18:24:00 obsr2955569 S23066953 Traveling P22 EBIRD 45.0 1.609 3.0 1 G1225673 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293881067 2019-07-23 17:27:14 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 7 United States US New York US-NY Suffolk US-NY-103 30.0 Goldsmiths Inlet L138043 H 41.0541647 -72.4740449 2015-01-29 16:59:00 obsr2485753 S21593301 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308094907 2021-04-01 11:15:31.646886 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park--Pier 2 and Pier 3 Terrace L1117224 H 40.6984488 -73.9976664 2015-04-05 09:00:00 obsr263005 S22726075 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317140432 2015-06-11 22:50:13 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 07:30:00 obsr601383 S23302908 Traveling P22 EBIRD 20.0 0.402 12.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311353264 2018-08-04 17:10:30 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 13 United States US New York US-NY Herkimer US-NY-043 13.0 McKoons Road pond near Smith Road L2812296 P 42.9248029 -75.0358315 2015-04-19 08:30:00 obsr1680059 S22951027 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288608258 2021-03-30 19:39:10.250398 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-02 09:00:00 obsr352522 S21151560 Traveling P22 EBIRD 60.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322081302 2021-04-01 10:51:50.668112 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera N 2 United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-05-21 13:00:00 obsr967916 S23585655 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292136289 2021-03-30 19:39:10.250398 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-01-20 11:00:00 obsr2404509 S21434945 Traveling P22 EBIRD 40.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324584712 2021-03-30 19:13:38.458673 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 43.2889x-77.6755 - May 10, 2015, 7:31 PM L3632623 P 43.288987 -77.675735 2015-05-10 18:30:00 obsr1598543 S23746269 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306904671 2021-04-01 11:42:50.317679 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 3 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-03-31 09:30:00 obsr1195517 S22640108 Stationary P21 EBIRD 210.0 2.0 1 G1201293 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295378093 2021-04-01 12:14:19.266649 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 8 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Robert Moses State Park, Suffolk Cty , NY L3077121 P 40.6295186 -73.2333559 2015-02-07 11:30:00 obsr2534001 S21712290 Traveling P22 EBIRD 90.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306020909 2018-08-04 17:04:35 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Oswego US-NY-075 13.0 Great Bear Recreation Area L664197 H 43.2666087 -76.3654238 2015-03-29 08:52:00 obsr2224244 S22573125 Traveling P22 EBIRD 199.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315638170 2021-03-22 08:58:29.008072 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-04 06:17:00 obsr431494 S23217214 Traveling P22 EBIRD 77.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320856853 2022-01-20 09:38:40.245267 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 Male, Adult (4) United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-17 06:15:00 obsr2966702 S23509944 Traveling P22 EBIRD 373.0 4.023 20.0 1 G1275330 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314527678 2021-11-15 03:06:58.889978 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-30 15:35:00 obsr516108 S23155073 Traveling P22 EBIRD 240.0 0.644 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319268782 2019-04-02 20:14:27 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park--Basset Rd. L3134836 H 42.4079263 -75.9690476 2015-05-13 08:40:00 obsr879105 S23422162 Traveling P22 EBIRD 60.0 0.805 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS352754949 2021-03-26 07:46:52.994574 26278 species avibase-A381417F House Wren Troglodytes aedon 8 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-17 06:00:00 obsr478499 S25787042 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294973152 2021-03-30 19:18:56.909873 30494 species avibase-240E3390 House Sparrow Passer domesticus 141 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-02-04 14:45:00 obsr150865 S21680309 Traveling P22 EBIRD 120.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301411683 2021-03-26 07:56:20.588749 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-03-07 09:30:00 obsr247620 S22211327 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288214656 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-01 11:20:00 obsr2906952 S21118827 Traveling P22 EBIRD 40.0 0.402 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315349522 2021-04-01 11:15:31.646886 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 07:40:00 obsr454647 S23201548 Traveling P22 EBIRD 400.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295515964 2021-11-09 21:57:08.187493 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Ulster US-NY-111 28.0 USFWS_760 US-NY-Wallkill - 41.6360x-74.2166 - Feb 8, 2015, 9:25 AM L3346197 P 41.63603 -74.216581 2015-02-08 09:25:00 obsr66097 S21723386 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312145686 2018-08-04 17:11:50 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Oswego US-NY-075 13.0 Peter Scott Swamp L248391 H 43.2444498 -76.2705344 2015-04-22 17:23:00 obsr2945658 S23003101 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316525067 2021-03-19 16:19:20.977326 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-06 11:37:00 obsr2324853 S23267936 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307657391 2019-07-23 17:27:46 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 West Side Rowing Club L3505499 P 42.901615 -78.901459 2015-03-08 14:46:00 obsr2155111 S22694713 Stationary P21 EBIRD 13.0 2.0 1 G1205438 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292169241 2015-01-20 17:30:47 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 30 United States US New York US-NY Westchester US-NY-119 28.0 Croton-On-Hudson L122414 T 41.20839 -73.89128 2015-01-20 13:30:00 obsr1780608 S21437535 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296003671 2018-08-04 16:55:59 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 98 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-09 17:20:00 obsr1318356 S21761363 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324001612 2021-03-26 07:52:59.845315 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-27 09:10:00 obsr1000124 S23708086 Area P23 EBIRD 67.0 2.59 2.0 1 G1296115 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291673577 2021-03-30 19:29:33.633096 6339 species avibase-8535345B Herring Gull Larus argentatus 130 United States US New York US-NY Suffolk US-NY-103 30.0 Williams - Shore Rd L3300932 P 40.872385 -73.4651577 2015-01-18 08:15:00 obsr2423982 S21398892 Stationary P21 EBIRD 5.0 2.0 1 G1113885 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089188 2021-03-23 17:00:13.087107 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata X United States US New York US-NY Tompkins US-NY-109 13.0 845 Taughannock Blvd L3301517 P 42.4635812 -76.5241528 2015-01-18 08:45:00 obsr2255296 S21431070 Stationary P21 EBIRD 70.0 7.0 1 G1114093 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298088400 2021-04-01 11:24:19.637193 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-02-17 15:52:00 obsr334398 S21946937 Stationary P21 EBIRD 66.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317736410 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 29 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-09 18:01:00 obsr991026 S23337028 Stationary P21 EBIRD 35.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308034302 2018-08-04 17:06:14 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L692296 H 42.8874107 -78.7166119 2015-04-06 12:30:00 obsr2149313 S22721574 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311874095 2021-03-26 06:17:19.712573 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 3 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-04-21 09:17:00 obsr2071643 S22985309 Traveling P22 EBIRD 65.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303473705 2015-03-16 15:10:12 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Rensselaer US-NY-083 13.0 West Sand Lake, NY 1 L1766939 P 42.6226389 -73.6175931 2015-03-16 09:35:00 obsr2186523 S22378324 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310265818 2021-04-01 11:30:42.037277 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-15 15:30:00 obsr1353449 S22880181 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322721857 2021-03-19 16:44:35.607263 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Monroe US-NY-055 13.0 Kirkwood Rd. south to Slater Creek L823860 H 43.26855 -77.6372024 2015-05-25 05:36:00 obsr1696616 S23622549 Traveling P22 EBIRD 31.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288205786 2018-08-04 16:52:24 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Suffolk US-NY-103 30.0 Bay Club L1299839 P 40.8476447 -72.5768852 2015-01-01 13:25:00 obsr717785 S21117774 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298259577 2021-03-26 06:29:56.44369 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 2 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-02-18 09:06:00 obsr2756208 S21961359 Traveling P22 EBIRD 297.0 0.322 4.0 1 G1151981 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303697533 2021-03-30 19:13:38.458673 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-16 15:34:00 obsr1782363 S22395401 Traveling P22 EBIRD 52.0 0.402 2.0 1 G1194841 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314358681 2021-04-01 11:30:42.037277 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 12:00:00 obsr2706811 S23144028 Traveling P22 EBIRD 90.0 1.609 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307837065 2021-11-09 21:50:48.44865 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-05 16:30:00 obsr1588136 S22707409 Traveling P22 EBIRD 45.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317336477 2015-05-09 20:13:02 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-08 19:08:00 obsr1603345 S23313591 Stationary P21 EBIRD 60.0 8.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308750711 2021-03-24 20:58:53.646623 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-08 07:35:00 obsr72341 S22776570 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303345802 2021-03-30 19:28:38.115458 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Seneca US-NY-099 US-NY_764 13.0 NY:SEN:Ovid: CR-153 - Sheldrake Pt - Wyers Pt Rd: all lakefront L2514527 P 42.6638424 -76.6950417 2015-03-15 11:00:00 obsr2760150 S22367727 Traveling P22 EBIRD 94.0 6.26 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307844885 2021-03-26 07:52:59.845315 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-04 07:40:00 obsr1000124 S22707983 Area P23 EBIRD 45.0 2.59 2.0 1 G1209072 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312621342 2021-04-07 20:48:00.906231 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-24 09:45:00 obsr2862769 S23036496 Traveling P22 EBIRD 135.0 11.265 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322646122 2021-04-01 12:26:53.827486 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-24 13:45:00 obsr1154 S23617656 Stationary P21 EBIRD 135.0 3.0 1 G1288067 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314364490 2021-04-01 11:30:42.037277 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 09:00:00 obsr2369927 S23144349 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323751764 2018-08-06 22:31:22 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 S C2 S United States US New York US-NY Columbia US-NY-021 14.0 Taconic SP--Copake Falls Area L1259200 H 42.124201 -73.5012817 2015-05-29 09:25:00 obsr798742 S23691731 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316899091 2021-03-26 06:39:43.334073 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-06 17:10:00 obsr601383 S23289103 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301017128 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-03 08:29:00 obsr1548221 S22180422 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS359745135 2015-12-18 17:13:05 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Erie US-NY-029 13.0 Margaret Louise Park L4074862 H 43.0147136 -78.7418737 2015-05-09 15:20:00 obsr1155039 S26353769 Traveling P22 EBIRD 20.0 0.402 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308818328 2021-03-26 06:29:56.44369 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 2 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-10 09:33:00 obsr334398 S22781524 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309584360 2021-03-23 16:30:20.514143 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 6 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-12 09:15:00 obsr1633923 S22832076 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315187730 2021-03-19 16:25:42.617988 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Essex US-NY-031 13.0 Noblewood Park L191517 H 44.3548774 -73.356574 2015-05-02 15:28:00 obsr822321 S23193099 Traveling P22 EBIRD 83.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300278173 2021-04-01 12:14:19.266649 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Oak Beach L267998 H 40.63923 -73.28832 2015-03-01 09:00:00 obsr2555972 S22126293 Traveling P22 EBIRD 120.0 0.805 2.0 1 G1163548 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299427029 2022-02-21 13:41:55.027797 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY New York US-NY-061 30.0 Fort Tryon Park L591127 H 40.8629374 -73.9327457 2015-02-24 17:45:00 obsr781996 S22059195 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311814248 2021-03-24 20:53:39.352228 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N X United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-04-19 13:30:00 obsr192397 S22981588 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309106582 2018-08-04 17:05:21 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 4 United States US New York US-NY Warren US-NY-113 14.0 Veteran's Park L3192312 P 43.5622261 -73.6516142 2015-04-04 09:45:00 obsr2019190 S22801254 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308369172 2021-04-01 11:49:53.573686 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Queens US-NY-081 30.0 Kissena Park L491873 H 40.7462409 -73.8080852 2015-04-07 14:22:00 obsr2233270 S22746972 Traveling P22 EBIRD 195.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS500628155 2018-09-25 14:38:18 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 5 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-20 09:00:00 obsr282856 S36908044 Traveling P22 EBIRD 360.0 19.312 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321150077 2021-04-01 12:32:15.282601 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-05-17 obsr2906952 S23527870 Historical P62 EBIRD 4.0 0 G1278893 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304844754 2021-03-30 19:29:33.633096 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Suffolk US-NY-103 US-NY_766 30.0 Caumsett SP L259743 H 40.9308721 -73.4720876 2015-03-19 08:20:00 obsr1189081 S22482471 Traveling P22 EBIRD 70.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308722259 2015-04-09 18:32:46 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 50 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-04-09 10:58:00 obsr155915 S22774346 Stationary P21 EBIRD 12.0 2.0 1 G1212579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309868919 2021-03-26 07:07:10.758746 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Richmond US-NY-085 30.0 SI-Wolfe's Pond Park/Lemon Creek L354336 P 40.5181692 -74.1878914 2015-04-12 08:28:00 obsr1032565 S22852689 Traveling P22 EBIRD 92.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305146426 2021-03-26 07:56:20.588749 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Nassau US-NY-059 oceanside preserve L1472478 P 40.6230202 -73.6179777 2015-03-24 10:30:00 obsr1494607 S22506548 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295257317 2019-07-23 17:27:16 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 PI--Route 14 L985269 P 41.1889248 -72.1641684 2015-02-06 12:45:00 obsr2485753 S21702411 Traveling P22 EBIRD 36.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313508776 2021-03-24 21:13:42.099821 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Westchester US-NY-119 30.0 Stone Barns Center for Food and Agriculture L596032 H 41.1000516 -73.8308716 2015-04-27 09:30:00 obsr473055 S23091397 Traveling P22 EBIRD 130.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291245779 2021-11-09 18:43:19.481978 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 13 United States US New York US-NY Dutchess US-NY-027 13.0 Taconic State Parkway L3295248 P 41.8766601 -73.7668419 2015-01-16 07:10:00 obsr2862523 S21364785 Traveling P22 EBIRD 8.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311919106 2021-03-30 19:29:33.633096 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Suffolk US-NY-103 30.0 Frank Melville Memorial Park and Mill Pond L1114075 H 40.946195 -73.1156445 2015-03-28 13:05:00 obsr320396 S22988256 Traveling P22 EBIRD 50.0 1.3 6.0 1 G1201641 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294059214 2021-03-26 07:46:52.994574 7200 species avibase-49D9148A Great Egret Ardea alba N 4 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-01-21 06:16:00 obsr2309457 S21607227 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305109850 2021-11-09 20:39:07.387799 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Putnam US-NY-079 28.0 Paul A. Camarda Park L1354733 H 41.4031816 -73.6813005 2015-03-24 12:30:00 obsr1458092 S22503641 Traveling P22 EBIRD 90.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316505998 2017-06-16 09:02:41 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Allegany US-NY-003 28.0 Moss Lake Nature Sanctuary L123011 H 42.4 -78.18611 2015-05-06 10:30:00 obsr2366185 S23266748 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314894170 2015-05-02 11:45:50 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-05-02 11:38:00 obsr800690 S23176886 Stationary P21 EBIRD 7.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315350066 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 07:30:00 obsr258560 S23201575 Traveling P22 EBIRD 300.0 4.828 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314457414 2021-04-01 11:15:31.646886 16285 species avibase-5BC4E0EF Willow Flycatcher Empidonax traillii X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 16:30:00 obsr1659461 S23150598 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297758822 2021-04-01 12:45:19.712958 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 2 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-16 14:05:00 obsr1732267 S21917781 Stationary P21 EBIRD 15.0 2.0 1 G1150491 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS306363698 2021-04-01 11:54:40.172593 303 species avibase-B59E1863 Canada Goose Branta canadensis 20 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-30 09:57:00 obsr1032565 S22598873 Traveling P22 EBIRD 221.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309049923 2021-04-01 11:15:31.646886 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-11 08:30:00 obsr1731572 S22797848 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315700844 2021-11-15 03:06:58.889978 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 07:40:00 obsr2797341 S23220603 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309122073 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-11 09:30:00 obsr547602 S22802214 Traveling P22 EBIRD 120.0 2.414 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312821957 2021-03-24 20:33:47.533911 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-25 11:20:00 obsr241086 S23049492 Traveling P22 EBIRD 100.0 1.609 2.0 1 G1235120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313209529 2021-03-23 16:39:03.255227 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Richmond US-NY-085 30.0 Lemon Creek, bridge at Hylan Blvd. L916052 H 40.517649 -74.2011237 2015-04-25 10:37:00 obsr155915 S23072451 Traveling P22 EBIRD 3.0 0.322 3.0 1 G1237332 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304852801 2021-03-24 20:33:47.533911 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Newman Municipal Golf Course L2158758 H 42.4561318 -76.5052153 2015-03-22 16:32:00 obsr2683910 S22483258 Traveling P22 EBIRD 21.0 0.483 2.0 1 G1190056 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308626799 2015-04-09 18:11:02 27616 species avibase-D77E4B41 American Robin Turdus migratorius 8 United States US New York US-NY Tompkins US-NY-109 13.0 Cherry Rd. W of Warren, Lansing L1563979 P 42.50086 -76.47414 2015-04-09 07:25:00 obsr1655171 S22766663 Stationary P21 EBIRD 2.0 2.0 1 G1212561 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292994017 2017-02-15 19:56:49 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-24 11:00:00 obsr258946 S21522661 Stationary P21 EBIRD 85.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306880632 2021-01-02 20:17:06.602961 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Allan H. Treman State Marine Park--marina (not lakeshore or woods) L159024 H 42.4571425 -76.5143238 2015-04-02 05:49:00 obsr1092576 S22638333 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307110919 2021-04-01 11:49:53.573686 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Oakland Lake L684010 H 40.7586408 -73.7594122 2015-04-01 14:00:00 obsr676630 S22655996 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323232004 2021-03-24 20:58:53.646623 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-26 06:45:00 obsr72341 S23654931 Stationary P21 EBIRD 105.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315280002 2021-03-19 16:02:45.308962 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-03 06:00:00 obsr290506 S23198040 Traveling P22 EBIRD 240.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306417963 2021-03-26 06:29:56.44369 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 45 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-03-30 18:50:00 obsr934639 S22603185 Traveling P22 EBIRD 40.0 2.012 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312603605 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-24 09:00:00 obsr1731572 S23035150 Traveling P22 EBIRD 90.0 3.219 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321402392 2021-03-23 17:22:05.708166 26278 species avibase-A381417F House Wren Troglodytes aedon 2 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-05-18 06:00:00 obsr2694889 S23543241 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312606573 2021-03-30 19:29:33.633096 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 10 United States US New York US-NY Suffolk US-NY-103 US-NY_2798 30.0 Sagaponack Pond L385871 H 40.9084531 -72.2891808 2015-04-24 16:00:00 obsr1864342 S23035393 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313731786 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 06:50:00 obsr2343626 S23087905 Traveling P22 EBIRD 300.0 4.023 2.0 1 G1239166 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294374297 2021-11-09 19:48:29.257082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region L2435952 P 41.3280998 -74.4639587 2015-02-01 09:00:00 obsr1872991 S21631847 Traveling P22 EBIRD 210.0 24.14 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308358084 2022-02-17 14:32:23.002448 279 species avibase-3E04020B Brant Branta bernicla X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-07 14:00:00 obsr2448957 S22746171 Traveling P22 EBIRD 210.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314150907 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 09:00:00 obsr139757 S23131479 Traveling P22 EBIRD 270.0 4.828 4.0 1 G1243147 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304532588 2015-03-21 23:03:39 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Erie US-NY-029 13.0 Richardson Complex L3504904 P 42.9301672 -78.8821524 2015-03-21 18:20:00 obsr319738 S22459749 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318780049 2021-04-01 10:55:39.308231 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 20 Queens Drive L1383581 P 43.0393001 -78.946665 2015-05-11 06:45:00 obsr502830 S23393842 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304432731 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-21 11:15:00 obsr2505956 S22452278 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305878679 2021-04-01 11:15:31.646886 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 8 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-03-28 12:25:00 obsr1601967 S22562540 Traveling P22 EBIRD 110.0 2.012 11.0 1 G1195436 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291258667 2017-08-16 16:14:09 7662 species avibase-5F8E7CA8 Golden Eagle Aquila chrysaetos 1 United States US New York US-NY Niagara US-NY-063 13.0 Hosmer Road L3295413 P 43.3364584 -78.6048818 2015-01-06 15:15:00 obsr2082724 S21365856 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288534997 2021-11-09 18:18:59.735531 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 5 United States US New York US-NY Dutchess US-NY-027 13.0 Greig Farm L1398659 P 42.0238868 -73.8620972 2015-01-02 14:15:00 obsr671490 S21145588 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292962969 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-01-24 10:00:00 obsr1711339 S21520369 Stationary P21 EBIRD 180.0 3.0 1 G1121306 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288690127 2018-08-04 16:52:36 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Saratoga US-NY-091 13.0 Flight Lock Rd., Waterford boat launch L3257879 H 42.8074604 -73.7144208 2015-01-03 09:28:00 obsr1154 S21157964 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307153656 2021-04-01 11:54:40.172593 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-03 07:35:00 obsr1620361 S22659095 Traveling P22 EBIRD 210.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309508921 2021-03-19 16:26:51.561076 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 45 United States US New York US-NY Franklin US-NY-033 13.0 Private Property - Alderon Marsh L1179127 P 44.9946705 -74.5498753 2015-04-12 09:00:00 obsr568671 S22827042 Traveling P22 EBIRD 360.0 6.437 3.0 1 G1216733 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309547773 2021-11-09 17:55:26.90099 11494 species avibase-20C2214E American Kestrel Falco sparverius N 2 United States US New York US-NY Dutchess US-NY-027 13.0 Tamarack Lake L1132270 H 41.850767 -73.6563241 2015-04-12 13:00:00 obsr1917973 S22829683 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291170303 2021-04-01 12:45:19.712958 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-01-15 11:30:00 obsr1327349 S21358507 Stationary P21 EBIRD 40.0 2.0 1 G1111010 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309450988 2021-03-24 19:48:44.880783 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-12 09:20:00 obsr983655 S22823057 Traveling P22 EBIRD 40.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293999073 2021-11-09 18:42:28.650835 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Dutchess US-NY-027 13.0 Mills Mansion, Staatsburg, NY L3170356 P 41.8566608 -73.9298144 2015-01-21 09:00:00 obsr1339050 S21602292 Traveling P22 EBIRD 60.0 0.805 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320008625 2021-03-26 06:29:56.44369 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-15 07:20:00 obsr2449897 S23464051 Traveling P22 EBIRD 90.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310385837 2015-04-16 08:58:22 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-04-15 17:45:00 obsr2211514 S22888655 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296376493 2021-03-24 21:01:50.671145 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Nassau US-NY-059 30.0 VALLEY STREAM L2622895 P 40.6618894 -73.7031555 2015-02-13 06:30:00 obsr1536196 S21792641 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307816060 2021-03-30 19:43:32.881136 6201 species avibase-64F4DD81 Razorbill Alca torda X 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Westchester US-NY-119 30.0 Tibbetts Brook Park L293496 H 40.9240387 -73.8786568 2015-04-04 06:45:00 obsr1652207 S22705891 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314143074 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-29 13:30:00 obsr647628 S23131015 Traveling P22 EBIRD 230.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309187903 2021-03-30 19:07:52.958398 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 07:01:00 obsr2519357 S22806663 Traveling P22 EBIRD 414.0 4.828 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303556022 2021-03-23 16:39:03.255227 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-03-16 11:25:00 obsr396989 S22384643 Traveling P22 EBIRD_NJ 225.0 7.725 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301047551 2021-03-24 20:33:47.533911 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Tompkins US-NY-109 13.0 105 Eastern Heights Dr., Ithaca L2724192 P 42.425089 -76.455526 2015-03-05 13:00:00 obsr1318356 S22182393 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313937028 2021-03-30 19:07:52.958398 10654 species avibase-448D91B7 Red-headed Woodpecker Melanerpes erythrocephalus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-28 07:30:00 obsr2363365 S23118476 Traveling P22 EBIRD 270.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291465127 2015-01-17 15:04:13 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 7 United States US New York US-NY Livingston US-NY-051 13.0 US-NY-Livonia-7469-7599 Co Rd 41 L3298213 P 42.825721 -77.591827 2015-01-17 14:55:00 obsr749440 S21382628 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298480685 2019-07-23 17:27:23 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-02-19 14:40:00 obsr1893950 S21980806 Traveling P22 EBIRD 20.0 0.483 2.0 1 G1153084 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS339598847 2021-11-15 03:06:58.889978 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 08:30:00 obsr824114 S24836456 Traveling P22 EBIRD 60.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314157515 2021-03-26 07:30:35.289997 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius N 5 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-27 07:54:00 obsr2683910 S23131939 Traveling P22 EBIRD 27.0 0.483 2.0 1 G1243179 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320548077 2021-11-09 18:47:29.659505 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Spillway Salt Point L3649738 P 41.8073731 -73.7944579 2015-05-16 19:01:00 obsr2175245 S23492247 Stationary P21 EBIRD 10.0 3.0 1 G1274932 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316829089 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-07 08:30:00 obsr800463 S23285443 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295736812 2022-02-17 14:32:23.002448 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 20 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-08 12:02:00 obsr420385 S21740510 Traveling P22 EBIRD 110.0 2.414 2.0 1 G1140655 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309700992 2021-03-24 20:16:00.852773 11528 species avibase-F3DA111C Merlin Falco columbarius 30 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-13 10:11:00 obsr1958124 S22840436 Traveling P22 EBIRD 37.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322512036 2021-04-01 11:15:31.646886 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 15 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-24 07:40:00 obsr1711339 S23610197 Traveling P22 EBIRD 200.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308617880 2021-04-01 12:18:57.910168 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-04-09 08:50:00 obsr869999 S22766010 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303000627 2015-03-14 09:19:42 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Chenango US-NY-017 28.0 Marshall Andrews Wildlife Park L787595 H 42.2859767 -75.4756665 2015-03-11 16:52:00 obsr1626739 S22340425 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302325680 2021-04-01 12:32:15.282601 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 12 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-08 16:00:00 obsr2008637 S22286045 Traveling P22 EBIRD 150.0 3.219 4.0 1 G1171966 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312896989 2015-04-25 17:35:46 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Chenango US-NY-017 US-NY_2780 28.0 Long Pond State Rd & fields L3590001 P 42.4132133 -75.8374107 2015-04-25 15:20:00 obsr1303581 S23053797 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304919071 2021-03-30 19:03:54.667077 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-23 15:44:00 obsr2497657 S22488372 Stationary P21 EBIRD 40.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317637382 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 08:50:00 obsr1932533 S23331683 Traveling P22 EBIRD 250.0 4.828 15.0 1 G1261209 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316118789 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 12:40:00 obsr2883698 S23244231 Traveling P22 EBIRD 60.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317437833 2021-11-09 18:47:19.798579 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Dutchess US-NY-027 13.0 Burger Hill Park L3624628 P 41.920467 -73.875713 2015-05-09 08:50:00 obsr979921 S23320064 Traveling P22 EBIRD 28.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294170649 2015-03-08 10:40:38 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-01-31 12:30:00 obsr2537615 S21615882 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323346686 2021-11-09 18:47:57.38119 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Dutchess US-NY-027 28.0 Berkshire Road, Dover Plains, NY L3677173 P 41.67904 -73.5525119 2015-05-27 07:30:00 obsr2175245 S23662597 Traveling P22 EBIRD 190.0 6.437 3.0 1 G1292783 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309745114 2021-03-26 06:55:00.227271 303 species avibase-B59E1863 Canada Goose Branta canadensis N 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-13 13:16:00 obsr606693 S22844176 Traveling P22 EBIRD 16.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312938169 2021-03-19 16:19:20.977326 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 11 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-25 14:30:00 obsr2071643 S23056282 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307480635 2015-04-04 16:04:23 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Ontario US-NY-069 13.0 Sandy Bottom Park, Honeoye L811497 H 42.7831811 -77.5149822 2015-04-04 14:45:00 obsr983655 S22682419 Traveling P22 EBIRD 40.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320893273 2018-08-06 22:30:28 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-18 07:30:00 obsr1830659 S23511085 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303259813 2021-11-09 21:30:09.663073 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 1 United States US New York US-NY Ulster US-NY-111 28.0 Nyquist-Harcourt Wildlife Sanctuary L1412659 H 41.7555313 -74.091749 2015-03-15 10:00:00 obsr1303376 S22360629 Traveling P22 EBIRD 90.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313150926 2020-04-25 20:25:02 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--Comstock Knoll L290965 H 42.4498398 -76.4723566 2015-04-26 13:27:00 obsr34822 S23069037 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323483698 2021-03-26 06:17:19.712573 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-27 16:00:00 obsr1379161 S23672022 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321623629 2021-03-19 16:08:39.161312 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Route I-86 before Chautauqua Lake L3660816 P 42.1505826 -79.0656209 2015-05-20 12:20:00 obsr1828453 S23556841 Traveling P22 EBIRD 25.0 32.187 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308420171 2021-03-30 19:29:33.633096 3174 species avibase-41E9F54B Black-billed Cuckoo Coccyzus erythropthalmus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Timber Point Golf Course--East Marina L2113967 H 40.7202869 -73.1412855 2015-04-07 10:00:00 obsr2534001 S22750943 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320247036 2018-08-06 22:29:50 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 4 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-13 10:30:00 obsr1079517 S23476572 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321229829 2018-08-06 22:30:34 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Chemung US-NY-015 28.0 Tanglewood Nature Center--Gleason Meadows L163496 H 42.10472 -76.87654 2015-05-19 10:06:00 obsr1334267 S23532812 Traveling P22 EBIRD 49.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309441547 2020-07-27 15:41:41 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Columbia US-NY-021 14.0 Harlem Valley Rail Trail--Copake Falls to Under Mountain Rd. L5803911 H 42.0757413 -73.5303798 2015-04-12 08:40:00 obsr798742 S22822468 Traveling P22 EBIRD 55.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319591134 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 13:05:00 obsr2883698 S23440688 Traveling P22 EBIRD 80.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300246451 2021-04-01 12:32:15.282601 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-03-01 10:00:00 obsr2207991 S22123763 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318239249 2021-04-01 11:12:52.834774 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Greene US-NY-039 13.0 Coxsackie Boat Launch L474746 H 42.3533746 -73.7957346 2015-05-10 16:20:00 obsr1181085 S23364012 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307205218 2021-11-09 21:50:48.44865 242 species avibase-D3A260BC Snow Goose Anser caerulescens X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-03 14:00:00 obsr1588136 S22662586 Traveling P22 EBIRD 90.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310402755 2021-03-23 17:32:20.03109 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 15 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-16 06:25:00 obsr2224244 S22889779 Traveling P22 EBIRD 200.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314575024 2021-04-01 11:54:40.172593 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-30 08:22:00 obsr396989 S23158159 Traveling P22 EBIRD_NJ 370.0 7.403 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312751617 2021-12-28 15:50:27.785498 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-25 09:02:00 obsr606693 S23045286 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308991249 2018-08-04 17:08:23 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 Male, Adult (3); Female, Adult (1) United States US New York US-NY Saratoga US-NY-091 13.0 Betar Byway L1528567 H 43.2984602 -73.6411847 2015-04-10 16:59:00 obsr1222746 S22793757 Traveling P22 EBIRD 32.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316511101 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 06:50:00 obsr145923 S23267057 Traveling P22 EBIRD 250.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320001223 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 08:15:00 obsr2303233 S23463661 Traveling P22 EBIRD 240.0 3.219 4.0 1 G1272364 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309687906 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-04-13 06:45:00 obsr2512689 S22839646 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314994385 2021-04-01 11:15:31.646886 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 22 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 06:25:00 obsr2514491 S23182158 Traveling P22 EBIRD 413.0 8.047 4.0 1 G1247369 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320911078 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-18 09:00:00 obsr1723318 S23512864 Traveling P22 EBIRD 231.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312772508 2015-04-25 11:49:38 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-04-25 11:43:00 obsr2211210 S23046571 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294193688 2021-03-26 07:53:57.664705 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N 3 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-01-31 16:22:00 obsr1060479 S21617588 Stationary P21 EBIRD 52.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310788447 2021-03-23 17:26:08.495143 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Nassau US-NY-059 30.0 Old Bethpage, Carlyle on the Green L3571281 P 40.74264 -73.45573 2015-04-17 18:15:00 obsr1889829 S22916097 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313955912 2021-11-15 03:06:58.889978 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-24 13:15:00 obsr516108 S23119584 Traveling P22 EBIRD 270.0 0.644 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294535256 2021-04-01 11:54:40.172593 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 12 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-02 09:15:00 obsr1958124 S21644572 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315217047 2021-11-09 18:29:40.19003 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY Dutchess US-NY-027 13.0 Barrytown Rd, Red Hook L2139298 P 42.0010507 -73.9219809 2015-05-01 07:55:00 obsr2228949 S23194814 Traveling P22 EBIRD 115.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302540184 2021-03-30 19:29:33.633096 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-03-11 09:30:00 obsr649205 S22304905 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314490135 2021-04-01 11:54:40.172593 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 Male, Unknown Age (1) United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-30 16:34:00 obsr1032565 S23152733 Rusty Blackbird Spring Migration Blitz P41 EBIRD 176.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309070795 2021-03-26 07:30:35.289997 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-04-11 10:43:00 obsr59643 S22799113 Traveling P22 EBIRD 15.0 0.161 2.0 1 G1214327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296148769 2021-04-01 10:45:00.916278 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-02-10 12:15:00 obsr2505956 S21772817 Traveling P22 EBIRD 180.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301560632 2021-11-21 18:46:06.448382 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Seneca US-NY-099 13.0 Vineyard Rd. L3462908 P 42.7394481 -76.7708302 2015-03-07 14:00:00 obsr1160328 S22222003 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308230525 2021-03-24 20:16:00.852773 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-07 09:53:00 obsr1958124 S22736745 Rusty Blackbird Spring Migration Blitz P41 EBIRD 32.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313217523 2021-03-26 07:56:20.588749 6361 issf avibase-0C55DFCC Iceland Gull Larus glaucoides Iceland Gull (kumlieni) Larus glaucoides kumlieni 4 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-26 08:15:00 obsr247620 S23072937 Traveling P22 EBIRD 120.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312168355 2021-03-26 06:12:17.833181 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-04-22 07:30:00 obsr479109 S23004769 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311580189 2018-08-04 17:09:27 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-16 13:45:00 obsr2233270 S22965395 Traveling P22 EBIRD 70.0 1.609 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323435114 2018-08-06 22:30:51 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Hamilton US-NY-041 14.0 Eighth Lake Campground L3678407 P 43.7662706 -74.7078252 2015-05-22 21:00:00 obsr1311434 S23668860 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321153794 2021-04-01 12:32:15.282601 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-05-17 obsr2906952 S23528083 Historical P62 EBIRD 4.0 1 G1278908 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305452978 2018-08-04 17:03:40 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 2 United States US New York US-NY Steuben US-NY-101 28.0 River Rd. Boat Launch L190042 H 42.11583 -77.00531 2015-03-26 14:45:00 obsr1334267 S22530415 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308668445 2021-04-01 11:15:31.646886 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-09 07:25:00 obsr1077730 S22769871 Traveling P22 EBIRD 360.0 4.828 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297451813 2021-03-26 06:17:19.712573 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Erie US-NY-029 13.0 Home L2093742 P 42.7338768 -78.7242615 2015-02-15 15:50:00 obsr916033 S21888950 Stationary P21 EBIRD 46.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288254931 2021-04-01 11:30:42.037277 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 6 United States US New York US-NY New York US-NY-061 Randalls Island--Southwest section L1785369 H 40.7836216 -73.9351181 2015-01-01 14:54:00 obsr259298 S21122179 Traveling P22 EBIRD 14.0 1.996 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313536884 2021-03-24 20:33:47.533911 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail L1498729 H 42.4795201 -76.4551642 2015-04-27 09:00:00 obsr1311434 S23092963 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312580728 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-24 09:25:00 obsr585997 S23033465 Traveling P22 EBIRD 40.0 0.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290199912 2021-04-01 11:15:31.646886 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 25 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-10 08:30:00 obsr1711339 S21280066 Traveling P22 EBIRD 300.0 4.828 3.0 1 G1103277 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324507183 2021-03-23 17:18:00.959502 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 1 United States US New York US-NY Albany US-NY-001 28.0 Preston Hollow - Rt 145 & Vicinity. L3690414 P 42.4394749 -74.2035444 2015-05-31 06:40:00 obsr1000124 S23740756 Incidental P20 EBIRD 0 G1299641 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319591137 2021-04-01 11:30:42.037277 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 13:05:00 obsr2883698 S23440688 Traveling P22 EBIRD 80.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313636334 2021-03-26 06:09:25.361188 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 SUNY Broome Community College L3583220 H 42.1353684 -75.9091816 2015-04-22 14:15:00 obsr239324 S23099261 Traveling P22 EBIRD 135.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296172039 2021-03-23 16:39:03.255227 483 species avibase-85625D75 Mallard Anas platyrhynchos 43 United States US New York US-NY Richmond US-NY-085 Lemon Creek Pier L673443 H 40.5108301 -74.2097712 2015-02-11 15:55:00 obsr1958124 S21774689 Stationary P21 EBIRD 100.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306412763 2018-08-04 17:04:46 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Road L3492876 P 42.4352574 -79.3776771 2015-03-30 10:30:00 obsr479109 S22602764 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313884248 2021-03-23 17:15:00.080143 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Carncross Rd. L99688 H 43.0787739 -76.7080184 2015-04-26 17:14:00 obsr2683910 S23115192 Traveling P22 EBIRD 27.0 0.644 2.0 1 G1241617 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311325867 2020-05-16 18:11:44 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Otsego US-NY-077 28.0 207 Stoller Hill Rd L3359197 P 42.7034192 -75.0299799 2015-04-19 15:00:00 obsr131845 S22946919 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322763477 2021-03-26 06:29:56.44369 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 11 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-25 07:41:00 obsr334398 S23625071 Traveling P22 EBIRD 107.0 0.483 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS307830767 2021-03-26 07:20:31.408164 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus N 3 United States US New York US-NY Suffolk US-NY-103 30.0 Home L1944919 P 40.8369959 -72.8792238 2015-04-05 07:00:00 obsr1327990 S22706995 Stationary P21 EBIRD 480.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305536971 2021-04-01 11:43:48.927316 406 species avibase-27B2749A Wood Duck Aix sponsa N 53 United States US New York US-NY Ontario US-NY-069 13.0 Flint (Casella) Landfill L828769 H 42.8553612 -77.0817518 2015-03-25 10:24:00 obsr528918 S22536761 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305115042 2021-03-26 06:29:56.44369 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 17 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-24 16:10:00 obsr934639 S22504033 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302930930 2015-11-04 14:32:56 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Niagara US-NY-063 13.0 Home L292333 P 43.3264327 -78.7740913 2015-03-13 16:30:00 obsr2756208 S22334927 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321549751 2018-08-06 22:30:39 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 2 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College L1485004 H 44.4375537 -74.2530447 2015-05-20 15:00:00 obsr877361 S23552093 Traveling P22 EBIRD 60.0 1.609 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304911255 2021-03-23 16:47:03.540174 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 6 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-03-23 12:01:00 obsr1918430 S22487628 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304511118 2021-03-26 06:53:58.593564 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 1 United States US New York US-NY Oneida US-NY-065 13.0 Whitestown L210157 P 43.17351 -75.4187135 2015-03-20 obsr1384380 S22458181 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302523552 2020-06-29 22:16:16 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 10 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-03-11 13:50:00 obsr794187 S22303550 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311594033 2021-03-23 17:22:05.708166 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Herkimer US-NY-043 13.0 Ransom Marsh L2797588 P 43.0945072 -74.7733743 2015-04-19 07:45:00 obsr2694889 S22966778 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308907908 2021-04-01 11:15:31.646886 32578 species avibase-000482C9 Orchard Oriole Icterus spurius 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-10 11:00:00 obsr644027 S22787732 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290699055 2021-04-01 11:49:53.573686 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 4 United States US New York US-NY Queens US-NY-081 30.0 Rosie's Place-243 Beach 135th Street L869966 P 40.5751026 -73.8535845 2015-01-09 09:15:00 obsr604941 S21320682 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305302774 2019-07-23 17:28:07 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Goldsmiths Inlet L138043 H 41.0541647 -72.4740449 2015-03-25 18:49:00 obsr2485753 S22518555 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305844577 2015-03-28 17:04:15 27616 species avibase-D77E4B41 American Robin Turdus migratorius 12 United States US New York US-NY Saratoga US-NY-091 13.0 Ferry Lane, Stillwater L2019586 H 42.9398366 -73.6471081 2015-03-28 14:25:00 obsr2774749 S22560048 Traveling P22 EBIRD 5.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292956939 2021-03-30 06:01:28.020715 6339 species avibase-8535345B Herring Gull Larus argentatus 200 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-01-24 12:05:00 obsr887540 S21519916 Stationary P21 EBIRD 55.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310038673 2021-03-24 20:53:39.352228 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Albany US-NY-001 13.0 Vagele Lane, Glenmont L2868631 P 42.5975507 -73.7820594 2015-04-14 16:52:00 obsr1201479 S22864744 Stationary P21 EBIRD 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289140128 2021-04-01 10:47:08.851048 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 8 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-04 09:00:00 obsr646558 S21196011 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290411230 2021-12-10 08:21:29.396662 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus N 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-01-11 08:15:00 obsr114791 S21297362 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293623509 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 8 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-27 17:08:00 obsr934639 S21572695 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309806708 2021-11-09 00:38:34.069905 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 21 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-04-13 16:25:00 obsr2844530 S22848312 Traveling P22 EBIRD 110.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306960312 2021-04-01 10:47:08.851048 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 100 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-02 10:16:00 obsr1472872 S22644424 Traveling P22 EBIRD 120.0 11.265 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309716490 2021-03-26 08:14:57.071052 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 4 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-04-13 08:20:00 obsr1327349 S22841432 Traveling P22 EBIRD 150.0 2.414 20.0 1 G1218134 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295626675 2015-02-08 18:09:34 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Franklin US-NY-033 14.0 US-NY-Saranac Lake-35 James St L2839009 P 44.331237 -74.139357 2015-02-08 15:45:00 obsr2630526 S21732191 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320239600 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 11:40:00 obsr41879 S23476206 Traveling P22 EBIRD 285.0 8.047 2.0 1 G1273909 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312034827 2021-03-23 17:00:13.087107 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 13.0 AviTom49 L3513991 H 42.5112342 -76.6349423 2015-04-22 08:56:00 obsr1092576 S22996026 Stationary P21 EBIRD 5.0 3.0 1 G1231225 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319929821 2021-04-01 11:15:31.646886 32952 species avibase-DB20CB6B Cape May Warbler Setophaga tigrina 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-15 08:38:00 obsr2363365 S23459738 Traveling P22 EBIRD 390.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306368108 2021-04-01 11:49:53.573686 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-03-30 17:58:00 obsr2574755 S22599250 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296280936 2021-03-24 19:27:13.077399 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-02-11 08:49:00 obsr1334267 S21783582 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292499423 2021-04-01 12:32:15.282601 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Lido Beach Strip L832312 P 40.5860602 -73.5864258 2015-01-21 09:55:00 obsr916370 S21483422 Traveling P22 EBIRD 155.0 5.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310232859 2021-03-26 06:29:56.44369 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-04-14 08:00:00 obsr2504709 S22877969 Traveling P22 EBIRD 25.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317472627 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-09 09:24:00 obsr195244 S23322062 Traveling P22 EBIRD 86.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299537150 2022-03-05 22:03:50.715584 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-25 10:00:00 obsr444155 S22067694 Traveling P22 EBIRD 150.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317041336 2021-04-01 11:30:42.037277 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 12:50:00 obsr1433400 S23297440 Traveling P22 EBIRD 60.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299314866 2021-04-07 20:52:30.17701 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Mays Point Pool and road L99392 H 42.9946205 -76.7637599 2015-02-23 15:19:00 obsr528918 S22051079 Traveling P22 EBIRD 10.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311916563 2021-03-23 16:48:08.60516 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 3 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-04-21 17:51:00 obsr354090 S22988120 Traveling P22 EBIRD 52.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290921736 2019-01-03 10:54:11 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-F L3288992 P 40.00252 -72.50312 2015-01-11 13:00:00 obsr856524 S21338445 Traveling P22 EBIRD 60.0 20.6 44.0 1 G1108339 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311166363 2021-11-09 21:50:48.44865 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-19 07:15:00 obsr1482758 S22939733 Traveling P22 EBIRD 40.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312644192 2021-03-26 08:09:53.772059 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 5 United States US New York US-NY Rensselaer US-NY-083 14.0 Elhannon Wholesale Nurseries L3587754 P 42.848471 -73.3381605 2015-04-24 10:00:00 obsr1468815 S23037972 Traveling P22 EBIRD_NJ 240.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322499039 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-24 06:40:00 obsr1189028 S23609531 Traveling P22 EBIRD 160.0 6.437 2.0 1 G1399438 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291759763 2021-03-30 19:13:38.458673 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-01-17 10:20:00 obsr1828453 S21405492 Stationary P21 EBIRD 74.0 3.0 1 G1112430 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296020538 2021-03-26 07:43:12.52294 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 7 United States US New York US-NY Wayne US-NY-117 13.0 Powell's Yard L783199 P 43.0918854 -77.3488167 2015-02-10 12:30:00 obsr749440 S21762721 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310245171 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-15 06:30:00 obsr1580729 S22878804 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309550559 2021-11-09 19:57:48.990233 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-12 13:01:00 obsr1912104 S22829876 Stationary P21 EBIRD 105.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310126328 2021-03-26 06:29:56.44369 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 4 Male, Adult (2); Female, Adult (2) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-04-14 08:00:00 obsr2449897 S22870936 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308167391 2015-04-06 23:17:22 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Ontario US-NY-069 13.0 Andrews Rd. L3482024 P 42.9143437 -77.2558594 2015-04-06 11:49:00 obsr528918 S22731379 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS450348110 2016-12-20 11:34:13 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-04-13 06:34:00 obsr2270510 S22836164 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289921220 2021-03-24 20:04:09.481678 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 16 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-01-08 07:45:00 obsr2812831 S21257623 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295061782 2018-08-04 16:55:43 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-02-05 16:37:00 obsr502830 S21688509 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322009998 2021-04-01 11:15:31.646886 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-22 10:50:00 obsr263005 S23581381 Traveling P22 EBIRD 270.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314384983 2021-03-22 09:17:32.016297 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 3 United States US New York US-NY Oneida US-NY-065 14.0 * Dunbar Rd., Camden L548557 P 43.3261143 -75.7681561 2015-04-30 13:55:00 obsr1640315 S23145767 Traveling P22 EBIRD 10.0 0.402 2.0 1 G1244367 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320251426 2015-05-16 17:37:46 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-05-16 16:45:00 obsr1591201 S23476797 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304498100 2021-03-30 19:13:38.458673 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Long Pond--Northrup Creek L462594 H 43.2849534 -77.7069855 2015-03-21 18:40:00 obsr934639 S22457155 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288100108 2021-03-26 06:29:56.44369 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Durand-Eastman Park--Hoffman Rd. L818008 H 43.223715 -77.56868 2015-01-01 07:30:00 obsr749440 S21109218 Traveling P22 EBIRD 62.0 0.805 2.0 1 G1087837 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316248024 2021-03-26 06:12:17.833181 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-05-05 07:30:00 obsr479109 S23252416 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314622935 2021-03-23 17:00:13.087107 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--office 248 L286682 P 42.4804061 -76.4510196 2015-04-30 08:45:00 obsr2001485 S23140230 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300313259 2021-04-01 11:49:53.573686 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Environmental Center L1476823 H 40.7621022 -73.7535993 2015-02-28 10:30:00 obsr676630 S22129181 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296769073 2021-03-23 16:47:32.118714 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 2 United States US New York US-NY Schoharie US-NY-095 28.0 GregTonia L3356163 P 42.4820846 -74.2556986 2015-02-14 13:45:00 obsr1982225 S21828679 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314028049 2018-08-26 19:48:32 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sweedler-Lick Brook FLLT Preserve L109058 H 42.3988596 -76.5358311 2015-04-29 07:19:00 obsr1655171 S23124166 Traveling P22 EBIRD 16.0 0.322 2.0 1 G1247176 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301181839 2015-03-06 07:20:12 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Tompkins US-NY-109 28.0 ***Fitzpatrick home L124872 P 42.42879 -76.395065 2015-03-05 07:00:00 obsr2124298 S22192074 Traveling P22 EBIRD 45.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307179967 2021-03-30 19:07:52.958398 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata N 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-03 10:00:00 obsr644027 S22660851 Traveling P22 EBIRD 1.0 72.419 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171142 2021-04-01 10:51:06.899622 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk L141361 T 42.4794617 -79.3339691 2015-01-25 13:00:00 obsr45779 S21536626 Traveling P22 EBIRD 120.0 48.28 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295536714 2021-04-01 11:49:53.573686 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-02-08 11:00:00 obsr676630 S21725055 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313761019 2018-03-17 06:19:18 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Pine Neck Sanctuary L122956 H 40.84111 -72.56528 2015-04-28 08:30:00 obsr1736113 S23107269 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293022535 2021-03-26 06:29:56.44369 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 3 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-01-23 08:00:00 obsr2449897 S21524702 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306118592 2021-03-23 17:26:08.495143 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-29 13:30:00 obsr271871 S22580243 Traveling P22 EBIRD 45.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332447257 2021-04-01 11:24:19.637193 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias N 8 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Hamlin-2205-2255 N Hamlin Rd L2360357 P 43.33911 -77.91591 2015-04-19 17:34:00 obsr334398 S24315799 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320507047 2021-11-09 19:01:40.008558 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-17 05:48:00 obsr1433400 S23490262 Traveling P22 EBIRD 300.0 8.288 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314584095 2021-03-24 20:33:47.533911 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Tompkins US-NY-109 13.0 Argos Inn L3604123 P 42.4397532 -76.4931028 2015-04-29 16:45:00 obsr1006348 S23158703 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319721279 2021-11-09 18:49:29.473548 279 species avibase-3E04020B Brant Branta bernicla 3 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA--Cruger Island Rd. L3840109 H 42.0303286 -73.9201355 2015-05-14 08:45:00 obsr671490 S23448135 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307676772 2021-03-19 16:32:34.732091 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 08:16:00 obsr2692140 S22696014 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312015413 2021-11-09 22:27:57.096501 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Sullivan US-NY-105 28.0 Yankee Lake L1031003 P 41.5830932 -74.5566559 2015-04-22 07:30:00 obsr444155 S22994757 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305207982 2021-11-09 19:21:07.406501 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-03-25 07:45:00 obsr671490 S22511098 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310388307 2021-03-23 17:00:13.087107 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 2 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--F.R. Newman Arboretum L799199 H 42.4520722 -76.4572692 2015-04-15 17:35:00 obsr241086 S22888848 Traveling P22 EBIRD 30.0 0.402 2.0 1 G1221703 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315080716 2021-03-19 16:08:39.161312 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum X United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-05-02 10:00:00 obsr479109 S23187045 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311638042 2021-03-24 20:33:47.533911 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - boardwalk to white barn pond (0.04km) L1287548 P 42.480817 -76.4502794 2015-04-20 13:05:00 obsr2307843 S22969887 Traveling P22 EBIRD 5.0 0.04 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308500632 2021-03-24 19:19:28.646223 27380 species avibase-E53FC25C Swainson's Thrush Catharus ustulatus 1 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-04-06 13:15:00 obsr955789 S22757181 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305212329 2019-07-23 17:28:07 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 25 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-03-25 08:51:00 obsr1092576 S22511091 Stationary P21 EBIRD 17.0 1.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288786149 2021-03-23 17:26:08.495143 279 species avibase-3E04020B Brant Branta bernicla 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-03 09:00:00 obsr2499879 S21165989 Traveling P22 EBIRD 360.0 9.656 3.0 1 G1093276 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312271120 2018-08-04 17:11:41 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 3 Female, Adult (1); Male, Adult (1); Unknown Sex, Adult (1) United States US New York US-NY Fulton US-NY-035 13.0 Rt. 10A L1142004 P 43.0655566 -74.4842362 2015-04-22 08:45:00 obsr2694889 S23011694 Traveling P22 EBIRD 16.0 3.541 4.0 1 G1232581 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311447678 2021-03-23 17:21:08.587586 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Delaware US-NY-025 28.0 River Rd., fields, Downsville L2376728 H 42.0701497 -74.9979185 2015-04-19 08:00:00 obsr1788273 S22956888 Traveling P22 EBIRD 33.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308328149 2019-04-19 13:17:53 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-07 15:19:00 obsr119187 S22743892 Stationary P21 EBIRD 71.0 2.0 1 G1210365 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310666479 2021-03-23 16:39:03.255227 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-04-17 13:40:00 obsr1958124 S22907931 Stationary P21 EBIRD 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301959351 2015-03-09 11:12:11 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-09 09:00:00 obsr1165633 S22253163 Stationary P21 EBIRD 55.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS315187733 2021-03-19 16:25:42.617988 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla N 2 United States US New York US-NY Essex US-NY-031 13.0 Noblewood Park L191517 H 44.3548774 -73.356574 2015-05-02 15:28:00 obsr822321 S23193099 Traveling P22 EBIRD 83.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320358621 2021-11-15 03:06:58.889978 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-16 14:15:00 obsr2072398 S23482284 Traveling P22 EBIRD 135.0 3.219 2.0 1 G1274060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299580361 2022-01-20 13:44:29.539827 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Seneca US-NY-099 US-NY_803 13.0 Geneva Lakefront Park, birds over water ONLY (Seneca Co.) L360643 H 42.8659781 -76.9714307 2015-02-21 13:00:00 obsr2871406 S22071131 Stationary P21 EBIRD 30.0 2.0 1 G1159743 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293749006 2018-08-04 16:55:23 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L2146812 P 42.09197 -76.06111 2015-01-28 15:30:00 obsr290506 S21582626 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300060746 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-21 11:00:00 obsr2182516 S22108315 Traveling P22 EBIRD 120.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293386780 2017-08-16 16:27:15 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-25 17:35:00 obsr2505956 S21553402 Traveling P22 EBIRD 75.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302642006 2021-04-01 12:30:15.438381 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 1 United States US New York US-NY Herkimer US-NY-043 13.0 Platform Road - Town of Fairfield L622941 P 43.1581106 -74.9605751 2015-03-11 12:32:00 obsr1000124 S22312933 Traveling P22 EBIRD 11.0 6.759 3.0 1 G1176911 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293346817 2021-03-24 19:20:44.053843 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-01-26 07:00:00 obsr290506 S21550051 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309322911 2021-03-23 17:00:13.087107 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, 212 Tareyton L252844 P 42.4724094 -76.4601243 2015-04-12 07:02:00 obsr2307843 S22815492 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303704669 2021-03-26 07:00:33.333856 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Queens US-NY-081 30.0 59-14 Grove Street 11385 L3154051 P 40.7092 -73.903725 2015-03-17 13:45:00 obsr2691134 S22395901 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298341768 2021-11-15 03:06:58.889978 505 species avibase-C732CB10 American Black Duck Anas rubripes 36 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-18 13:00:00 obsr516108 S21968354 Traveling P22 EBIRD 130.0 0.966 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312197621 2015-07-09 21:50:33 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-22 09:28:00 obsr1062070 S22995618 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293514790 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 3 United States US New York US-NY Kings US-NY-047 Bensonhurst Park L821314 H 40.5963883 -74.0013431 2015-01-23 08:25:00 obsr816020 S21563894 Traveling P22 EBIRD 88.0 0.805 2.0 1 G1126403 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310349407 2021-03-30 19:22:51.561415 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 12 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr155915 S22886050 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316298048 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 8 United States US New York US-NY Nassau US-NY-059 30.0 Sands Point Preserve L293460 H 40.8591053 -73.6970283 2015-05-05 14:00:00 obsr676630 S23255317 Traveling P22 EBIRD 56.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291799866 2021-02-04 13:11:50.063633 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 Unknown Sex, Immature (1) United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-D L3288908 P 40.09434 -73.04221 2015-01-11 11:00:00 obsr751942 S21408664 Traveling P22 EBIRD 60.0 47.315 44.0 1 G1108337 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312396627 2021-03-23 17:35:57.093178 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Rensselaer US-NY-083 13.0 US-NY-Melrose - 42.8869x-73.6765 - Apr 23, 2015, 9:31 AM L3585536 P 42.88686 -73.676522 2015-04-23 08:33:00 obsr648176 S23020228 Stationary P21 EBIRD 662.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303072652 2021-03-26 06:55:00.227271 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-03-14 obsr1338126 S22346291 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307174360 2021-03-24 20:33:47.533911 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Huis L2298977 P 42.481722 -76.397413 2015-04-03 10:53:00 obsr1008519 S22660493 Traveling P22 EBIRD 194.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291211816 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 160 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-15 11:20:00 obsr1830659 S21362054 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302422287 2021-03-30 19:07:52.958398 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-11 09:20:00 obsr1536880 S22295883 Traveling P22 EBIRD 20.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314881847 2019-01-07 15:35:23 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 8 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.4220913 -79.4281205 2015-05-02 09:45:00 obsr2497657 S23176229 Traveling P22 EBIRD 82.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307548425 2021-11-09 21:36:59.310849 6339 species avibase-8535345B Herring Gull Larus argentatus N 2 United States US New York US-NY Ulster US-NY-111 13.0 rosendale, ny L1465355 P 41.8499692 -74.081765 2015-04-04 09:15:00 obsr187701 S22687126 Traveling P22 EBIRD 315.0 43.452 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298638331 2021-04-01 11:47:43.260314 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-02-20 15:00:00 obsr2744341 S21993852 Stationary P21 EBIRD 30.0 2.0 1 G1154267 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296822682 2022-02-17 14:32:23.002448 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 45 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-14 14:15:00 obsr1605975 S21833291 Traveling P22 EBIRD 60.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318259579 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 WS+MBP+DEC L3631915 P 43.3198077 -77.7154183 2015-05-10 07:50:00 obsr2504709 S23365030 Traveling P22 EBIRD 130.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315134096 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 07:20:00 obsr1152226 S23189952 Traveling P22 EBIRD 360.0 3.219 25.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS324262791 2015-05-31 17:13:51 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum L467369 H 44.0669903 -75.7229233 2015-05-31 obsr2184966 S23724743 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302921279 2021-04-01 12:26:53.827486 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-13 16:45:00 obsr568671 S22333985 Stationary P21 EBIRD 45.0 2.0 1 G1178124 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320322650 2021-11-15 03:06:58.889978 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-16 14:30:00 obsr1008756 S23480487 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305936842 2021-03-23 17:18:00.959502 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 Nott Rd. Park L5202023 P 42.68518 -73.9100504 2015-03-28 17:15:00 obsr30103 S22566972 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310738968 2021-03-26 08:14:04.726922 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 11 United States US New York US-NY Warren US-NY-113 13.0 Shermantown Rd. Portage Trail L960269 H 43.3064521 -73.6251848 2015-04-17 09:13:00 obsr1222746 S22912820 Traveling P22 EBIRD 31.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317243569 2017-06-27 14:02:44 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Burger Park L390594 H 43.3099074 -77.7326596 2015-05-07 10:02:00 obsr303792 S23308413 Traveling P22 EBIRD 52.0 0.322 2.0 1 G1257710 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310043939 2021-04-01 11:15:31.646886 486 domestic avibase-07FFC1E5 Mallard (Domestic type) Anas platyrhynchos (Domestic type) 6 United States US New York US-NY Kings US-NY-047 30.0 Dyker Beach Park L1044216 H 40.6123885 -74.0192327 2015-04-14 06:25:00 obsr1028468 S22865093 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308585830 2015-04-08 23:25:34 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Oswego US-NY-075 13.0 Sithe Energy Trails L250693 H 43.5005827 -76.4514545 2015-04-08 23:24:00 obsr2945658 S22763623 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305301564 2021-04-01 11:14:02.420281 31530 species avibase-B48335B1 Pine Siskin Spinus pinus N 23 United States US New York US-NY Jefferson US-NY-045 13.0 Town of Brownville L2108262 P 43.99973 -75.990715 2015-03-24 14:00:00 obsr585290 S22518486 Traveling P22 EBIRD 60.0 24.14 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322625424 2021-04-01 11:15:31.646886 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 16:30:00 obsr1536880 S23616582 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313983655 2021-11-15 03:06:58.889978 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 06:21:00 obsr884514 S23121451 Traveling P22 EBIRD 63.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296289027 2021-04-01 11:30:42.037277 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla N 2 United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-02-12 13:15:00 obsr968874 S21784281 Traveling P22 EBIRD 30.0 1.127 14.0 1 G1143887 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314890899 2021-03-24 20:49:55.752669 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-04-28 09:01:00 obsr1721609 S23176707 Stationary P21 EBIRD 48.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292538182 2021-04-01 12:14:19.266649 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Shinnecock Inlet, west L3087424 H 40.8421473 -72.4781388 2015-01-20 13:00:00 obsr777692 S21486920 Stationary P21 EBIRD 90.0 3.0 1 G1521798 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313499278 2018-08-04 17:12:31 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-27 12:02:00 obsr1764243 S23090831 Stationary P21 EBIRD 16.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322248192 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 10:42:00 obsr904434 S23595226 Traveling P22 EBIRD 225.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298703930 2021-03-24 20:06:25.370375 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Ontario US-NY-069 13.0 yard - 5030 Butler Rd. L824954 P 42.8530016 -77.2913074 2015-02-21 07:15:00 obsr983655 S21999943 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309262631 2021-04-01 11:43:48.927316 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Ontario US-NY-069 13.0 ISR 90 - between Exits 42 & 43 L1519715 P 42.9689978 -77.0673602 2015-04-11 17:55:00 obsr1000124 S22811651 Incidental P20 EBIRD 0 G1215532 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312960352 2021-03-26 06:12:17.833181 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-04-25 12:25:00 obsr979921 S23057649 Traveling P22 EBIRD 20.0 0.805 2.0 0 G1236020 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310993344 2021-03-26 07:43:12.52294 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Wayne US-NY-117 13.0 2155 Evergreen Circle, Ontario, NY L1847173 P 43.2480127 -77.2772876 2015-04-17 08:00:00 obsr2914424 S22929052 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310388299 2021-03-23 17:00:13.087107 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--F.R. Newman Arboretum L799199 H 42.4520722 -76.4572692 2015-04-15 17:35:00 obsr241086 S22888848 Traveling P22 EBIRD 30.0 0.402 2.0 1 G1221703 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS450347806 2016-12-20 11:32:50 27380 species avibase-E53FC25C Swainson's Thrush Catharus ustulatus 5 United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-04-10 18:21:00 obsr2270510 S22789039 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296733856 2021-11-09 22:04:47.967972 1375 species avibase-4B9EEF56 Ring-necked Pheasant Phasianus colchicus N 12 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-13 09:30:00 obsr271871 S21825467 Traveling P22 EBIRD 360.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313154887 2022-03-05 22:03:50.715584 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-26 09:00:00 obsr444155 S23069257 Traveling P22 EBIRD 240.0 6.437 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308033501 2021-03-30 06:01:28.020715 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 6 United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L692296 H 42.8874107 -78.7166119 2015-04-06 12:30:00 obsr2149313 S22721523 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313391083 2021-03-26 06:39:43.334073 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-04-23 11:00:00 obsr1264993 S23084131 Traveling P22 EBIRD 120.0 1.609 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307290301 2021-11-09 21:57:30.391586 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Ulster US-NY-111 13.0 Hurley, 1637 Hurley Mountain Road L3535911 P 41.92469 -74.08275 2015-04-03 17:30:00 obsr1446126 S22668766 Stationary P21 EBIRD 45.0 2.0 1 G1203333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316726067 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 09:00:00 obsr2319444 S23279633 Traveling P22 EBIRD 180.0 3.219 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316761766 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 15 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-06 05:43:00 obsr2595828 S23281711 Stationary P21 EBIRD 100.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303072656 2021-03-26 06:55:00.227271 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-03-14 obsr1338126 S22346291 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293137738 2021-04-01 11:49:53.573686 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-01-24 06:50:00 obsr1982614 S21534065 Stationary P21 EBIRD 60.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS302180149 2021-03-26 06:21:54.883933 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Vale of Cashmere L1149386 H 40.6690561 -73.9683616 2015-03-10 07:45:00 obsr2476180 S22270176 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298813413 2015-02-21 17:20:45 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 5 United States US New York US-NY Suffolk US-NY-103 30.0 South Fork Natural History Museum L1053005 H 40.9482533 -72.2979784 2015-02-21 12:15:00 obsr2179487 S22009215 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297252643 2021-04-01 12:39:55.985714 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 11 United States US New York US-NY Rensselaer US-NY-083 13.0 US-NY-East Greenbush-341 Waters Rd L2438595 P 42.598296 -73.68364 2015-02-15 07:30:00 obsr1648329 S21871694 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294327460 2021-04-01 12:32:15.282601 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-31 14:00:00 obsr350767 S21628252 Traveling P22 EBIRD 90.0 8.047 3.0 1 G1131307 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303748118 2021-03-19 16:44:35.607263 251 domestic avibase-6835DC6C Graylag Goose (Domestic type) Anser anser (Domestic type) 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 1 (Winter Lakewatch) L654004 H 43.3626297 -77.9489422 2015-03-14 08:30:00 obsr34861 S22399336 Stationary P21 EBIRD 120.0 14.0 1 G1182074 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319416714 2021-03-19 16:14:11.035882 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Cortland US-NY-023 28.0 I-81, Cortland L3641467 P 42.6007986 -76.1552954 2015-05-13 17:00:00 obsr966902 S23430567 Incidental P20 EBIRD 2.0 0 G1269803 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319099464 2021-03-26 06:12:17.833181 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-05-12 07:30:00 obsr479109 S23412743 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305634547 2021-04-01 12:18:57.910168 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 20 United States US New York US-NY Tompkins US-NY-109 13.0 Newman Municipal Golf Course L2158758 H 42.4561318 -76.5052153 2015-03-27 15:04:00 obsr1062070 S22544313 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305139328 2021-11-09 18:45:26.708465 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Dutchess US-NY-027 13.0 Clinton Hollow L3512740 P 41.8461076 -73.8162348 2015-03-24 09:28:00 obsr979921 S22505948 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291947077 2021-04-01 12:32:15.282601 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-19 09:30:00 obsr547602 S21419848 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320100906 2021-11-09 18:47:29.451417 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook School Wildlife Sanctuary L3646901 P 41.8443339 -73.6147714 2015-05-15 06:15:00 obsr445356 S23469283 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313554579 2021-04-01 11:24:19.637193 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 8 United States US New York US-NY Monroe US-NY-055 13.0 LaSalle's Landing Park L140438 H 43.1763487 -77.5259313 2015-04-27 15:02:00 obsr934639 S23094023 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323492870 2021-11-09 18:11:17.700944 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook L123705 T 41.78509 -73.69397 2015-05-23 06:00:00 obsr445356 S23672679 Traveling P22 EBIRD 240.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317721800 2018-08-06 22:29:29 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Albany US-NY-001 28.0 Partridge Run, Kingfisher Rd and trail to lake on west L3627291 P 42.5738644 -74.1397405 2015-05-09 12:50:00 obsr777630 S23336232 Traveling P22 EBIRD 100.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313009752 2021-03-26 06:39:43.334073 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-04-24 18:26:00 obsr1548221 S23060593 Traveling P22 EBIRD 44.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309020572 2019-04-19 13:17:53 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 5 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-09 16:30:00 obsr478499 S22795889 Traveling P22 EBIRD 60.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298185618 2018-08-04 16:56:46 662 species avibase-FB738385 Bufflehead Bucephala albeola 400 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP--North Point L2721599 H 42.548268 -76.601241 2015-02-18 08:08:00 obsr1092576 S21954762 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305171464 2021-03-26 06:29:56.44369 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 3 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-24 10:40:00 obsr334398 S22508310 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291677613 2021-04-01 11:54:40.172593 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-18 13:41:00 obsr1958124 S21399159 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304020383 2021-03-26 07:00:33.333856 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris X United States US New York US-NY Queens US-NY-081 30.0 Queens College L2994245 H 40.7363804 -73.820286 2015-03-19 09:10:00 obsr2233270 S22420479 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296495480 2021-04-01 11:30:42.037277 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius N 9 United States US New York US-NY New York US-NY-061 30.0 Sherman Ave L3254388 P 40.866341 -73.9194489 2015-02-13 15:45:00 obsr1135516 S21803613 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315501728 2018-08-04 17:14:01 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake L3611002 P 42.8764947 -76.7062167 2015-05-02 07:00:00 obsr2309296 S23209752 Stationary P21 EBIRD 75.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296399676 2018-08-04 16:56:11 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 17 United States US New York US-NY Essex US-NY-031 13.0 Maple Meadows L4115608 P 44.0422008 -73.4797356 2015-02-13 09:30:00 obsr2769235 S21795056 Traveling P22 EBIRD 32.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288894952 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-02 11:57:00 obsr1615708 S21176710 Traveling P22 EBIRD 53.0 3.219 2.0 1 G1094185 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301335610 2021-11-09 21:05:39.718945 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 35 United States US New York US-NY Rockland US-NY-087 28.0 Haverstraw (along Hudson River) L3460473 P 41.2094616 -73.964467 2015-03-06 10:30:00 obsr1917973 S22205151 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287001 2018-08-04 16:52:25 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-01-01 14:37:00 obsr1893950 S21125139 Traveling P22 EBIRD 15.0 0.048 2.0 1 G1088893 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319248076 2021-03-26 06:39:43.334073 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Greywacke Arch L2179946 H 40.7792619 -73.9657742 2015-05-13 08:24:00 obsr1548221 S23421075 Traveling P22 EBIRD 16.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303238267 2021-04-01 11:24:19.637193 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 9 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-03-08 11:15:00 obsr1782363 S22359025 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300071986 2019-07-23 17:27:35 6339 species avibase-8535345B Herring Gull Larus argentatus 5 United States US New York US-NY Suffolk US-NY-103 30.0 Hortons Point L158149 H 41.0852163 -72.4456862 2015-02-28 15:34:00 obsr2485753 S22109200 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296443638 2021-03-19 16:44:35.607263 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Monroe US-NY-055 13.0 Whiting Rd. Nature Preserve L524399 H 43.251267 -77.4698353 2015-02-13 12:01:00 obsr2595828 S21799054 Traveling P22 EBIRD 72.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289864612 2015-01-09 10:33:34 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 4 United States US New York US-NY Westchester US-NY-119 US-NY_871 30.0 Ward Pound Ridge Reservation L746022 H 41.2455683 -73.5888076 2015-01-08 09:30:00 obsr258431 S21252862 Traveling P22 EBIRD 150.0 3.219 35.0 1 G1101947 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306584424 2015-03-31 18:31:26 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-03-30 07:38:00 obsr2426404 S22616311 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300132130 2021-03-26 08:14:57.071052 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-02-28 07:30:00 obsr2918150 S22114608 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306135443 2022-03-05 22:03:50.715584 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-29 15:30:00 obsr1544235 S22581600 Traveling P22 EBIRD 90.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309934970 2021-03-26 07:30:35.289997 303 species avibase-B59E1863 Canada Goose Branta canadensis N 2 United States US New York US-NY Tompkins US-NY-109 13.0 EcoVillage L903167 P 42.4411944 -76.5472412 2015-04-14 06:54:00 obsr1997264 S22857440 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323115390 2020-04-10 19:07:25 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 Unknown Sex, Adult (1) United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-12 09:30:00 obsr2409011 S23647394 Stationary P21 EBIRD 210.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306563991 2021-04-01 11:54:40.172593 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-31 16:50:00 obsr1958124 S22614789 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292773789 2015-01-23 14:25:26 592 species avibase-3072CC16 Redhead Aythya americana 3 United States US New York US-NY Essex US-NY-031 13.0 102 Racetrack Rd, Ticonderoga, NY L2849942 P 43.8534847 -73.441565 2015-01-23 13:48:00 obsr2693145 S21505344 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292201159 2021-03-30 19:29:33.633096 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-01-20 13:50:00 obsr1137265 S21439776 Traveling P22 EBIRD 180.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310594242 2021-03-24 20:58:04.794277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-04-08 06:30:00 obsr2694889 S22903262 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299381111 2022-03-05 22:03:50.715584 32797 spuh avibase-9BEE9467 grackle sp. Quiscalus sp. 6 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-24 12:00:00 obsr444155 S22055921 Traveling P22 EBIRD 60.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318298555 2021-03-19 16:12:42.877422 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Columbia US-NY-021 13.0 Gale Hill Road L213117 P 42.4809659 -73.4958735 2015-05-10 06:15:00 obsr570335 S23367035 Traveling P22 EBIRD 150.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291561815 2021-03-30 19:03:54.667077 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-01-17 11:00:00 obsr1280112 S21390302 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS354457544 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-23 14:08:00 obsr2426588 S25925916 Traveling P22 EBIRD 57.0 0.644 3.0 1 G1472365 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307391057 2021-03-24 20:16:00.852773 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-04 10:20:00 obsr1958124 S22676283 Traveling P22 EBIRD 34.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308811584 2021-04-01 11:54:40.172593 26890 species avibase-94A44032 European Starling Sturnus vulgaris 45 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-04-08 15:10:00 obsr1032565 S22781056 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319617763 2021-03-19 16:44:35.607263 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-14 11:20:00 obsr2504709 S23442159 Traveling P22 EBIRD 120.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307098515 2021-07-29 22:09:29.420744 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Suffolk US-NY-103 30.0 Montauk peninsula L1160271 P 41.0368948 -71.93367 2015-03-01 obsr1220115 S22654974 Historical P62 EBIRD 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290698370 2018-08-04 16:53:06 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Suffolk US-NY-103 30.0 Capri Lake, West Islip L492048 P 40.6960626 -73.3003092 2015-01-11 09:25:00 obsr2852365 S21320633 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300315698 2021-04-01 10:45:00.916278 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-02-28 15:00:00 obsr676630 S22129371 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296571251 2021-03-23 16:48:08.60516 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 2 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake @ Tommy Creek L917386 P 42.6328182 -76.8732744 2015-02-13 15:30:00 obsr475746 S21810651 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316190430 2021-03-26 07:56:20.588749 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-05 10:15:00 obsr916370 S23248197 Traveling P22 EBIRD 160.0 4.989 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313401254 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 10 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-04-26 14:52:00 obsr408487 S23084766 Stationary P21 EBIRD 20.0 2.0 1 G1238807 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292006384 2021-01-02 20:17:06.602961 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 100 United States US New York US-NY Tompkins US-NY-109 13.0 Allan H. Treman State Marine Park--marina (not lakeshore or woods) L159024 H 42.4571425 -76.5143238 2015-01-19 10:30:00 obsr444155 S21424688 Stationary P21 EBIRD 90.0 2.0 1 G1116519 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306960284 2021-04-01 10:47:08.851048 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 5 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-02 10:16:00 obsr1472872 S22644424 Traveling P22 EBIRD 120.0 11.265 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314157490 2021-03-26 07:30:35.289997 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-27 07:54:00 obsr2683910 S23131939 Traveling P22 EBIRD 27.0 0.483 2.0 1 G1243179 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306402672 2021-03-26 06:11:29.8335 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-03-29 10:40:00 obsr2683910 S22601998 Traveling P22 EBIRD 70.0 0.805 2.0 1 G1198715 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311436223 2015-04-19 21:34:56 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Ontario US-NY-069 13.0 risser road swamp L964432 P 42.9388155 -77.2974658 2015-04-19 16:00:00 obsr2979658 S22956214 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304114217 2021-03-30 19:39:10.250398 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 1 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-03-18 09:30:00 obsr1494607 S22427998 Traveling P22 EBIRD 150.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303150516 2021-03-19 16:02:45.308962 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-14 17:20:00 obsr290506 S22352452 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310730886 2021-03-23 16:47:03.540174 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-17 11:00:00 obsr281585 S22912149 Traveling P22 EBIRD 105.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303906357 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 120 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-18 17:03:00 obsr334398 S22411941 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292855602 2021-03-26 07:52:59.845315 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-23 07:23:00 obsr316199 S21511841 Area P23 EBIRD 93.0 2.59 2.0 1 G1120672 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294196127 2021-03-26 06:29:56.44369 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-01-31 07:35:00 obsr2595828 S21617778 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308499796 2017-08-16 17:00:34 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 6 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-04-08 15:00:00 obsr2766625 S22757122 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300768398 2021-03-26 07:20:31.408164 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L635183 H 40.8348529 -72.6153374 2015-03-03 13:15:00 obsr717785 S22161736 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309453866 2021-03-19 16:02:45.308962 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-04-07 09:10:00 obsr998593 S22823234 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292825242 2015-03-29 11:26:58 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 30 United States US New York US-NY Westchester US-NY-119 28.0 Croton Gorge Park L489734 H 41.2260376 -73.857342 2015-01-23 14:30:00 obsr114791 S21509523 Traveling P22 EBIRD 80.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321443121 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 15 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-19 16:00:00 obsr1731572 S23545919 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS470278698 2021-11-15 03:06:58.889978 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 07:30:00 obsr1843598 S34782903 Traveling P22 EBIRD 120.0 3.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291971685 2017-06-22 18:02:07 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Suffolk US-NY-103 30.0 Hidden Ponds Preserves and Trails L1285394 H 41.0191709 -72.2218337 2015-01-19 11:00:00 obsr431494 S21421913 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295406771 2021-04-01 12:32:15.282601 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-07 10:20:00 obsr916370 S21714552 Traveling P22 EBIRD 300.0 9.173 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296082258 2021-04-01 11:54:40.172593 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-02-10 12:30:00 obsr1032565 S21767610 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321963239 2021-03-26 06:21:54.883933 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-22 06:30:00 obsr1407710 S23578111 Traveling P22 EBIRD 120.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319074489 2021-03-26 06:21:54.883933 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 13:50:00 obsr1516787 S23411306 Traveling P22 EBIRD 180.0 3.943 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294566675 2021-03-24 21:06:05.39641 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 Male, Adult (1); Unknown Sex, Adult (2) United States US New York US-NY Onondaga US-NY-067 13.0 Apulia Rd Creek bed L1138124 P 42.8941707 -76.0797215 2015-01-24 09:15:00 obsr2290617 S21647175 Traveling P22 EBIRD 90.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309589338 2015-04-12 22:01:48 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 14 United States US New York US-NY Wayne US-NY-117 13.0 Broadway Road L1445357 P 43.3100951 -76.7805573 2015-04-12 09:15:00 obsr195058 S22832391 Traveling P22 EBIRD 105.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304307130 2021-11-15 03:06:58.889978 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-20 08:28:00 obsr1548221 S22443147 Traveling P22 EBIRD 74.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288237434 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-01 09:50:00 obsr1417967 S21120676 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309350735 2021-03-23 17:00:13.087107 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Tareyton Drive yard L1133152 P 42.4712343 -76.4592433 2015-04-12 09:13:00 obsr1655171 S22817229 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309963655 2018-12-30 09:54:38 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 28.0 Basic Creek Reservoir (access permit required) L1152329 H 42.4853825 -74.0201926 2015-04-14 09:43:00 obsr2321296 S22859431 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304539527 2021-03-26 07:30:35.289997 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-21 18:27:00 obsr1318356 S22460386 Traveling P22 EBIRD 68.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309519918 2021-03-30 12:05:58.533651 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 5 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-12 14:00:00 obsr2078092 S22827792 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313332279 2021-03-30 19:07:52.958398 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 16:00:00 obsr2476180 S23080043 Traveling P22 EBIRD 120.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321889185 2021-04-01 11:15:31.646886 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N 10 United States US New York US-NY Kings US-NY-047 Coney Island Creek Park L614792 H 40.5813224 -74.0052688 2015-05-22 06:05:00 obsr187432 S23573533 Traveling P22 EBIRD 22.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308524713 2021-04-01 11:15:31.646886 6616 species avibase-7E022378 Common Loon Gavia immer X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-08 10:35:00 obsr827632 S22759010 Traveling P22 EBIRD 215.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313731793 2021-03-19 16:54:27.713469 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Montgomery US-NY-057 13.0 Touareuna Rd, west L3555994 P 42.9209407 -74.0884018 2015-04-28 07:15:00 obsr1918430 S23105450 Traveling P22 EBIRD 65.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316464927 2018-08-04 17:14:58 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 6 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-06 07:25:00 obsr1830659 S23264512 Traveling P22 EBIRD 225.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325073074 2021-04-01 11:14:02.420281 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Jefferson US-NY-045 US-NY_778 13.0 Perch River WMA L253293 H 44.0861979 -75.9664464 2015-05-23 16:30:00 obsr1000553 S23781187 Traveling P22 EBIRD 60.0 8.047 2.0 1 G1303492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508632 2021-03-30 19:29:33.633096 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Orowoc Lake, Islip L1864121 H 40.7292598 -73.2249385 2015-01-17 13:18:00 obsr1848026 S21386121 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314584028 2015-05-01 11:15:43 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 40 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-30 07:45:00 obsr1633923 S23158698 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298368921 2021-03-24 20:23:39.258075 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Staller Drive L2618497 P 40.8661125 -72.6181121 2015-02-17 15:00:00 obsr1736113 S21970643 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305390417 2021-03-23 17:00:13.087107 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-03-26 08:30:00 obsr71667 S22525506 Traveling P22 EBIRD 30.0 0.161 9.0 1 G1192880 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304420152 2021-11-09 22:39:47.565044 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus N 4 United States US New York US-NY Sullivan US-NY-105 28.0 Rondout Reservoir (Sullivan Co.) L2693079 H 41.8604243 -74.5100577 2015-03-21 13:00:00 obsr444155 S22451422 Traveling P22 EBIRD 30.0 4.828 4.0 1 G1187030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312602644 2015-05-31 16:47:08 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Oven and The Point L1480317 H 40.7756262 -73.9700541 2015-04-24 17:13:00 obsr1889800 S23035086 Traveling P22 EBIRD 8.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317261559 2018-08-06 22:29:09 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Broome US-NY-007 28.0 Foley Rd. L2164136 H 42.0452135 -75.9670258 2015-05-08 06:30:00 obsr1044068 S23309453 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318008171 2021-03-23 17:21:08.587586 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Delaware US-NY-025 US-NY_2792 28.0 Riverview Cemetery, Hancock L2757721 H 41.9527828 -75.3034222 2015-05-08 06:21:00 obsr1788273 S23351800 Traveling P22 EBIRD 56.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301973128 2021-04-01 12:26:53.827486 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 75 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-09 10:00:00 obsr1201479 S22254207 Stationary P21 EBIRD 35.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318195422 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-10 06:45:00 obsr1146149 S23361480 Traveling P22 EBIRD 240.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291117798 2021-03-30 19:29:33.633096 6361 issf avibase-0C55DFCC Iceland Gull Larus glaucoides Iceland Gull (kumlieni) Larus glaucoides kumlieni 10 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-01-15 10:00:00 obsr706483 S21354428 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306605077 2021-04-01 12:32:15.282601 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-03-29 08:30:00 obsr2976 S22618135 Historical P62 EBIRD 60.0 2.0 1 G1199901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308750316 2021-04-01 11:27:18.37144 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 1 United States US New York US-NY Montgomery US-NY-057 13.0 Mapletown Road - West of Donato Road L748877 P 42.8359158 -74.5500791 2015-04-09 10:25:00 obsr2694889 S22776551 Traveling P22 EBIRD 89.0 6.598 4.0 1 G1212753 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302471983 2021-04-01 11:15:31.646886 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-11 09:30:00 obsr1397560 S22299458 Traveling P22 EBIRD 180.0 4.828 3.0 1 G1175054 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314056590 2021-03-26 08:14:57.071052 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Westchester US-NY-119 30.0 Mill Pond at Mill Pond Offices, Somers L3511959 H 41.320247 -73.6896942 2015-04-29 08:00:00 obsr858943 S23125802 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316682676 2021-03-24 20:57:48.241391 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-05-06 16:05:00 obsr1708031 S23277213 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1068768207 2021-04-01 12:28:06.222372 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 Cole Road (east), West Valley L11952750 P 42.4831479 -78.6169747 2015-05-29 08:35:00 obsr2155450 S80676639 Traveling P22 EBIRD 30.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS721360448 2019-03-07 13:51:02 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-04-02 10:20:00 obsr1127016 S53573678 Stationary P21 EBIRD 75.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308027728 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-04-06 09:00:00 obsr247620 S22721104 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308960604 2021-03-19 16:25:42.617988 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Essex US-NY-031 14.0 Corner of Bull Rock and Shattuck L3026671 P 43.815311 -73.498596 2015-04-10 19:00:00 obsr2693145 S22791638 Traveling P22 EBIRD 60.0 1.127 2.0 1 G1213746 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307863583 2021-03-30 19:29:33.633096 5770 species avibase-95E28A57 Semipalmated Plover Charadrius semipalmatus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-04 11:00:00 obsr1160328 S22709237 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309184081 2021-04-01 11:15:31.646886 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 07:30:00 obsr139757 S22806414 Traveling P22 EBIRD 300.0 8.047 1.0 1 G1214818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310606767 2021-04-01 12:18:57.910168 6616 species avibase-7E022378 Common Loon Gavia immer N 5 United States US New York US-NY Tompkins US-NY-109 28.0 Websterk Estate L3569539 P 42.4151243 -76.3541704 2015-04-17 07:20:00 obsr71667 S22904128 Stationary P21 EBIRD 30.0 4.0 1 G1222662 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323727708 2021-03-26 06:29:56.44369 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-28 07:15:00 obsr2449897 S23690132 Traveling P22 EBIRD 90.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322248215 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 10:42:00 obsr904434 S23595226 Traveling P22 EBIRD 225.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288285312 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N X United States US New York US-NY New York US-NY-061 30.0 Chelsea Waterside Park L2957204 H 40.7494879 -74.0074303 2015-01-01 11:15:00 obsr2207991 S21125000 Traveling P22 EBIRD 30.0 0.483 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311893365 2016-03-08 21:31:55 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-21 13:00:00 obsr544268 S22986533 Traveling P22 EBIRD 60.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311080710 2021-04-01 12:30:15.438381 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Mckoon's rd L2255319 P 42.922979 -75.0338745 2015-04-18 11:15:00 obsr1708031 S22934730 Stationary P21 EBIRD 30.0 2.0 1 G1261089 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314590275 2015-05-01 11:35:27 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 GHS L3402141 P 42.6977028 -73.967042 2015-05-01 11:28:00 obsr2270510 S23159057 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307096952 2018-08-04 17:05:07 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-02 17:00:00 obsr777630 S22654837 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296140242 2017-08-16 16:32:23 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--West End (Field 2) L2597735 H 40.5934333 -73.5209483 2015-02-06 08:30:00 obsr525303 S21772179 Traveling P22 EBIRD 60.0 1.609 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298919178 2021-03-30 19:28:38.115458 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-02-22 08:44:00 obsr1092576 S22017830 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293285566 2018-08-04 16:55:15 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Niagara US-NY-063 US-NY_1724 13.0 Niagara Falls SP--Goat Island L207766 H 43.080477 -79.0683617 2015-01-25 14:00:00 obsr2096529 S21545436 Stationary P21 EBIRD 75.0 10.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS440146998 2021-12-08 07:58:41.562209 32955 species avibase-41062654 Northern Parula Setophaga americana X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-18 obsr2036618 S32346334 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295546471 2021-11-09 20:40:20.366096 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Putnam US-NY-079 28.0 Pine St. L2175760 P 41.422812 -73.9468879 2015-02-07 11:00:00 obsr2211514 S21725775 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289015367 2015-01-04 12:50:33 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Ontario US-NY-069 13.0 Burroughs Audubon Nature Club L600065 H 43.0290903 -77.479341 2015-01-04 11:49:00 obsr749440 S21186140 Traveling P22 EBIRD 61.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761345 2021-03-26 07:56:20.588749 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-10 09:00:00 obsr2218212 S22629518 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307426810 2021-04-01 12:18:57.910168 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 Nate's Patch--Bluegrass to Hanshaw to Freese L1006570 P 42.4655757 -76.4526987 2015-04-04 09:36:00 obsr1062070 S22678785 Traveling P22 EBIRD 208.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322382800 2015-05-24 11:29:30 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-21 16:30:00 obsr150415 S23603018 Traveling P22 EBIRD 90.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300457725 2021-04-01 11:49:53.573686 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 23 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-02-28 11:53:00 obsr1982614 S22139157 Traveling P22 EBIRD 70.0 2.494 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321949828 2021-03-26 06:21:54.883933 7732 species avibase-A091D50A Northern Harrier Circus hudsonius X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-22 10:26:00 obsr1152226 S23577173 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310687468 2021-03-26 07:30:35.289997 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY Tompkins US-NY-109 13.0 Beebe Lake/Mundy Wildflower Garden L2357812 P 42.450265 -76.473142 2015-04-17 12:25:00 obsr2137468 S22909203 Traveling P22 EBIRD 70.0 6.115 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288532588 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-01 13:34:00 obsr187432 S21145375 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423414 2021-03-19 16:44:35.607263 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-10 19:00:00 obsr1846130 S24163350 Traveling P22 EBIRD 79.0 0.483 15.0 1 G1337413 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310041363 2021-03-19 16:19:20.977326 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 5 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-14 15:00:00 obsr783450 S22864912 Traveling P22 EBIRD 90.0 1.609 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310425612 2019-07-24 17:33:24 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 8 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr150865 S22891304 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312013571 2015-04-22 07:58:39 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 Male, Adult (1) United States US New York US-NY Jefferson US-NY-045 13.0 Route 3; Sackets Harbor L3582142 P 43.9391364 -76.0975045 2015-04-20 18:30:00 obsr490751 S22994619 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314050768 2015-04-29 12:51:59 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Westchester US-NY-119 30.0 Backyard L1243032 P 41.1702553 -73.8428879 2015-04-28 15:30:00 obsr1540211 S23125473 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311318382 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 12:05:00 obsr876649 S22948898 Traveling P22 EBIRD 110.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313173954 2017-09-02 16:17:27 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Delaware US-NY-025 28.0 Houck Mountain Rd. L2266924 H 42.0823523 -75.1093785 2015-04-26 04:58:00 obsr1788273 S23070405 Traveling P22 EBIRD 60.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316951234 2021-03-19 16:26:51.561076 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Franklin US-NY-033 14.0 Bellmont Center L496226 P 44.8417513 -74.1741943 2015-04-29 06:15:00 obsr2507995 S23292285 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311196434 2021-04-01 11:30:42.037277 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 1 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-19 08:30:00 obsr1135516 S22941519 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304418005 2015-03-21 21:49:47 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 32 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-21 14:10:00 obsr1764243 S22451264 Traveling P22 EBIRD 61.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322610550 2021-04-01 11:24:19.637193 592 species avibase-3072CC16 Redhead Aythya americana 18 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-24 12:28:00 obsr934639 S23615592 Traveling P22 EBIRD 378.0 9.656 4.0 1 G1337409 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS307075844 2015-05-22 21:22:24 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-02 08:20:00 obsr528918 S22653367 Traveling P22 EBIRD 70.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306365468 2022-02-17 14:32:23.002448 30494 species avibase-240E3390 House Sparrow Passer domesticus 97 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-30 12:30:00 obsr2448957 S22599018 Traveling P22 EBIRD 270.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS362455251 2021-03-26 07:45:44.030579 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 8 United States US New York US-NY Wyoming US-NY-121 28.0 2700 Centerline Road, Varysburg L11026787 P 42.736555 -78.3020117 2015-03-22 08:00:00 obsr2888451 S26578445 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300116593 2015-03-08 14:32:20 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-28 15:45:00 obsr2086576 S22113446 Traveling P22 EBIRD 110.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300009966 2021-04-01 11:49:53.573686 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia N 5 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-02-27 12:51:00 obsr1982614 S22104234 Traveling P22 EBIRD 130.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317735312 2021-03-26 07:46:52.994574 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 05:40:00 obsr119187 S23336978 Traveling P22 EBIRD 290.0 4.828 1.0 1 G1258875 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319269475 2021-03-26 07:53:57.664705 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 30 United States US New York US-NY Livingston US-NY-051 13.0 Groveland, NY L2623278 P 42.7113986 -77.7185619 2015-05-09 13:20:00 obsr1743566 S23422196 Stationary P21 EBIRD 295.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310163193 2021-03-19 16:10:30.527219 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 10 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Big Flats - 42.1322x-76.9334 - Apr 13, 2015, 3:17 PM L3565237 P 42.132215 -76.933384 2015-04-13 15:13:00 obsr1334267 S22873463 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288725949 2019-07-23 17:26:40 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Erie US-NY-029 13.0 Evangola SP L300496 H 42.6085236 -79.1111807 2015-01-03 08:00:00 obsr2871264 S21161144 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294868847 2021-04-01 11:47:43.260314 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Oswego US-NY-075 13.0 Indian Point L811112 H 43.3357446 -76.4155984 2015-02-04 11:45:00 obsr1633923 S21671863 Stationary P21 EBIRD 27.0 2.0 1 G1135211 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308097165 2021-11-09 21:30:58.952293 337 species avibase-694C127A Mute Swan Cygnus olor 6 United States US New York US-NY Ulster US-NY-111 13.0 Esopus Bend Nature Preserve L1422709 H 42.069482 -73.9586939 2015-04-06 17:00:00 obsr2862523 S22726261 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321759014 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-21 10:15:00 obsr454647 S23564996 Traveling P22 EBIRD 360.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298670566 2015-02-20 22:20:38 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 7 United States US New York US-NY Delaware US-NY-025 28.0 Quail Ridge Area L2327396 P 42.2085425 -74.587276 2015-02-19 08:00:00 obsr883142 S21996743 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289766932 2021-03-23 17:22:05.708166 31530 species avibase-B48335B1 Pine Siskin Spinus pinus N 1 United States US New York US-NY Herkimer US-NY-043 13.0 Peckville Road - West L650164 P 43.1017976 -74.8326874 2015-01-07 15:55:00 obsr1000124 S21244728 Traveling P22 EBIRD 12.0 3.058 3.0 1 G1100549 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320180639 2021-05-22 06:13:34.379614 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 07:15:00 obsr1407710 S23473221 Traveling P22 EBIRD 360.0 4.828 8.0 1 G1273230 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS370189097 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-01-30 07:00:00 obsr2233143 S27245201 Area P23 EBIRD 360.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293587735 2021-03-26 06:21:54.883933 11528 species avibase-F3DA111C Merlin Falco columbarius 13 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-27 15:45:00 obsr904434 S21569973 Traveling P22 EBIRD 55.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309545409 2021-03-26 07:43:12.52294 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Wayne US-NY-117 13.0 Powell's Yard L783199 P 43.0918854 -77.3488167 2015-04-12 16:54:00 obsr749440 S22829510 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319722552 2021-11-09 18:22:29.372367 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Dutchess US-NY-027 13.0 River paddle L1487368 P 42.0469932 -73.927686 2015-05-14 18:00:00 obsr671490 S23448222 Traveling P22 EBIRD 150.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298260154 2015-02-18 15:48:09 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Burdick Hill Rd., Lansing L1107958 H 42.4980885 -76.4998821 2015-02-11 08:33:00 obsr2683910 S21961404 Traveling P22 EBIRD 3.0 0.483 2.0 1 G1151986 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299096226 2021-04-01 12:32:15.282601 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-21 09:30:00 obsr2555972 S22034226 Traveling P22 EBIRD 120.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298182271 2021-04-01 11:49:53.573686 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-02-18 08:01:00 obsr2574755 S21954486 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307133851 2021-11-09 18:45:27.272498 18514 issf avibase-25ACCDC0 Warbling Vireo Vireo gilvus Warbling Vireo (Eastern) Vireo gilvus gilvus 30 United States US New York US-NY Dutchess US-NY-027 13.0 near Verbank L3534485 P 41.7142739 -73.677063 2015-03-01 08:00:00 obsr191447 S22657680 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311198433 2018-08-04 17:11:13 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 40 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-04-19 09:38:00 obsr2588479 S22941621 Traveling P22 EBIRD 53.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322302066 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 12 United States US New York US-NY Nassau US-NY-059 30.0 Bay County Park L1571409 H 40.6322118 -73.6610094 2015-05-23 10:40:00 obsr916370 S23598199 Traveling P22 EBIRD 50.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291860363 2021-03-23 16:39:03.255227 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-19 07:38:00 obsr1958124 S21413129 Traveling P22 EBIRD 7.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325494243 2015-06-07 06:40:41 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Jefferson US-NY-045 13.0 17481 US Rt. 11 Lot 16-O L2592297 P 43.9166658 -75.9468019 2015-05-04 07:00:00 obsr188863 S23809266 Stationary P21 EBIRD 480.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319873798 2021-04-01 11:15:31.646886 505 species avibase-C732CB10 American Black Duck Anas rubripes 12 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-15 09:00:00 obsr1516787 S23456738 Traveling P22 EBIRD 240.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319502533 2021-04-01 12:32:15.282601 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-14 06:15:00 obsr547602 S23435774 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313465748 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-04-27 06:23:00 obsr2512689 S23088681 Traveling P22 EBIRD 97.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303070292 2021-04-01 12:18:57.910168 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-03-14 14:47:00 obsr59643 S22346110 Traveling P22 EBIRD 30.0 0.322 2.0 1 G1179296 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296330952 2015-02-12 20:59:43 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Wayne US-NY-117 13.0 work L3356637 P 43.2815744 -77.0907898 2015-02-11 07:45:00 obsr1521144 S21789161 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320089623 2021-03-23 17:26:08.495143 662 species avibase-FB738385 Bufflehead Bucephala albeola 8 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-05-16 09:05:00 obsr670643 S23468685 Traveling P22 EBIRD 49.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299525556 2015-02-25 12:05:55 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 4 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-02-25 11:28:00 obsr2574755 S22066894 Traveling P22 EBIRD 36.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311141677 2021-04-01 12:45:19.712958 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Westchester US-NY-119 28.0 Riverfront Green Park L2849158 H 41.2858173 -73.9312046 2015-04-18 09:42:00 obsr991026 S22938152 Traveling P22 EBIRD 39.0 19.312 2.0 1 G1225460 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317828165 2021-03-26 06:12:17.833181 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-05-08 07:00:00 obsr479109 S23341862 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300331567 2015-03-01 18:24:33 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-02-25 10:30:00 obsr2426404 S22130812 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319437909 2021-03-26 06:17:19.712573 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Erie US-NY-029 13.0 JP's - Harvey Dr. L499698 P 42.8905864 -78.6831808 2015-05-13 17:30:00 obsr780938 S23431738 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307471664 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-04 12:00:00 obsr2635084 S22681783 Traveling P22 EBIRD 120.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306209166 2021-03-30 19:03:28.117389 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.9339927 -76.7278183 2015-03-29 14:21:00 obsr1655171 S22587292 Traveling P22 EBIRD 28.0 2.414 2.0 1 G1198688 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS315970677 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-04 19:10:00 obsr1555046 S23235572 Stationary P21 EBIRD 10.0 2.0 1 G1252914 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289262446 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY New York US-NY-061 30.0 Hudson St across from Abingdon Square L3268106 P 40.7366545 -74.0058871 2015-01-05 07:30:00 obsr2305870 S21205080 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299817684 2015-02-27 07:42:54 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-02-25 06:53:00 obsr589593 S22089451 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320108630 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-16 09:33:00 obsr1885846 S23469632 Traveling P22 EBIRD 91.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307782403 2021-03-30 19:39:10.250398 6616 species avibase-7E022378 Common Loon Gavia immer 4 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-04-02 08:00:00 obsr1494607 S22703574 Traveling P22 EBIRD 120.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304910546 2021-04-01 12:32:15.282601 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-23 14:00:00 obsr1693806 S22487583 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320432915 2021-11-09 17:47:17.381431 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Dutchess US-NY-027 13.0 * Ring Road, Salt Point, NY L1084767 P 41.7968319 -73.8318479 2015-05-16 05:00:00 obsr763723 S23486272 Incidental P20 EBIRD 1.0 0 G1274557 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311096125 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 15:30:00 obsr454647 S22935691 Traveling P22 EBIRD 180.0 2.414 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309664056 2021-11-09 18:33:58.039151 406 species avibase-27B2749A Wood Duck Aix sponsa X United States US New York US-NY Dutchess US-NY-027 13.0 Cobb Ridge L2517475 P 42.0382655 -73.8797092 2015-04-13 08:00:00 obsr671490 S22837321 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302936144 2021-03-26 06:59:15.841579 5664 species avibase-27903EF7 Black-bellied Plover Pluvialis squatarola 4 United States US New York US-NY Oswego US-NY-075 13.0 Derby Hill Bird Observatory L982887 P 43.5273932 -76.2341309 2015-03-13 10:20:00 obsr979921 S22335359 Stationary P21 EBIRD 325.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423452 2018-08-04 17:08:09 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Monroe US-NY-055 13.0 Tinker Nature Park L946685 H 43.0670694 -77.57339 2015-04-08 17:50:00 obsr1846130 S24163352 Traveling P22 EBIRD 84.0 2.414 2.0 1 G1337414 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311187048 2021-04-01 12:18:57.910168 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 5 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-19 09:35:00 obsr887540 S22941012 Traveling P22 EBIRD 52.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309766947 2021-03-26 07:17:57.136956 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-13 10:00:00 obsr731475 S22845576 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306816916 2021-03-26 07:56:20.588749 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 4 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-01 18:35:00 obsr870166 S22633718 Traveling P22 EBIRD 24.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318951732 2018-08-06 22:29:46 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Cayuga US-NY-011 US-NY_1726 13.0 Montezuma (NMWMA)--Howland Island--West L318895 H 43.0781 -76.69762 2015-05-12 09:15:00 obsr983655 S23403742 Traveling P22 EBIRD 15.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323444102 2021-03-26 06:29:56.44369 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-27 07:16:00 obsr2595828 S23669469 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308640516 2015-04-09 20:11:41 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--tss office (CLO 193B) L515673 P 42.480385 -76.4511779 2015-04-09 11:32:00 obsr1062070 S22767705 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303484458 2021-03-24 20:33:47.533911 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 70 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Libe Slope L1483567 H 42.44786 -76.48595 2015-03-16 09:57:00 obsr2634885 S22379153 Stationary P21 EBIRD 56.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309675233 2021-11-09 18:41:19.017909 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Dutchess US-NY-027 14.0 Strauss Marsh Millerton L3030080 P 41.89058 -73.54105 2015-04-12 15:05:00 obsr2343626 S22838809 Stationary P21 EBIRD 16.0 2.0 1 G1217886 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298943624 2015-02-22 11:22:11 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-02-22 11:06:00 obsr2172593 S22019777 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307759303 2021-03-30 19:29:33.633096 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-05 12:30:00 obsr247620 S22701767 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302743497 2018-08-04 16:59:44 6339 species avibase-8535345B Herring Gull Larus argentatus 8 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-12 11:00:00 obsr1489009 S22320359 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303454425 2019-07-23 17:27:59 30494 species avibase-240E3390 House Sparrow Passer domesticus 100 United States US New York US-NY Orleans US-NY-073 Point Breeze (Orleans Co.) L469835 H 43.3716945 -78.1916691 2015-03-15 14:30:00 obsr761467 S22369017 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309581218 2021-03-26 06:12:17.833181 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 10 United States US New York US-NY Chautauqua US-NY-013 Barcelona Harbor L337145 H 42.342789 -79.5939356 2015-04-12 12:20:00 obsr479109 S22831891 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297490825 2017-08-16 02:23:57 3543 species avibase-8D3E8871 Chuck-will's-widow Antrostomus carolinensis X United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-02-16 09:10:00 obsr290506 S21892640 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304511112 2021-03-26 06:53:58.593564 505 species avibase-C732CB10 American Black Duck Anas rubripes N 2 United States US New York US-NY Oneida US-NY-065 13.0 Whitestown L210157 P 43.17351 -75.4187135 2015-03-20 obsr1384380 S22458181 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302592816 2021-04-01 11:47:43.260314 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Oswego US-NY-075 13.0 Oswego River--Lock 6 L3468275 P 43.44431 -76.49569 2015-03-11 12:58:00 obsr211814 S22309156 Traveling P22 EBIRD 52.0 0.483 3.0 1 G1176065 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304348905 2021-03-24 20:33:47.533911 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Tompkins US-NY-109 13.0 Salt Point Natural Area L353038 H 42.5394116 -76.5496267 2015-03-21 08:55:00 obsr59643 S22446164 Stationary P21 EBIRD 33.0 10.0 1 G1187140 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304347924 2021-11-09 18:36:00.350715 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 4 United States US New York US-NY Dutchess US-NY-027 13.0 Mill Pond L2734125 P 42.0119567 -73.8713729 2015-03-20 07:30:00 obsr671490 S22446092 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303257878 2021-03-22 09:17:32.016297 483 species avibase-85625D75 Mallard Anas platyrhynchos 15 United States US New York US-NY Oneida US-NY-065 13.0 US-NY-Rome-1500–1592 Perimeter Rd L3489754 P 43.228047 -75.42427 2015-03-15 10:58:00 obsr1092576 S22360478 Traveling P22 EBIRD 21.0 0.161 2.0 1 G1180537 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304026973 2021-03-26 06:29:56.44369 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-19 11:47:00 obsr334398 S22421514 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291208701 2021-04-01 11:30:42.037277 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-15 14:30:00 obsr1668936 S21361779 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295435534 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris 22 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-07 07:55:00 obsr2514491 S21716838 Traveling P22 EBIRD 240.0 8.047 3.0 1 G1138068 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303123011 2021-03-19 15:59:05.496822 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Allegany US-NY-003 28.0 Hanover Hill Road L3488096 P 42.1029719 -77.9047537 2015-03-14 16:46:00 obsr1310178 S22350162 Traveling P22 EBIRD 30.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302483564 2021-04-01 11:54:40.172593 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N X United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-11 15:20:00 obsr1958124 S22300308 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324090039 2018-08-06 22:29:40 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP - Yanty Creek Trail L269421 P 43.3618733 -77.9527094 2015-05-11 09:20:00 obsr2966702 S23713597 Traveling P22 EBIRD 90.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316733892 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 17:35:00 obsr2796494 S23280067 Traveling P22 EBIRD 120.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314080127 2015-10-05 23:50:19 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 Unknown Sex, Adult (1) United States US New York US-NY Madison US-NY-053 28.0 2275 Alexis Avenue, Hamilton, NY 13346 L2618579 P 42.8287667 -75.5174392 2015-04-29 14:30:00 obsr2843748 S23127255 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308379479 2021-03-26 07:30:35.289997 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Nelson's House L3547421 P 42.4923209 -76.63849 2015-04-07 18:45:00 obsr246591 S22747738 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323441989 2021-11-14 08:08:43.2446 31032 species avibase-C6B5497C Evening Grosbeak Coccothraustes vespertinus 1 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-05-27 20:00:00 obsr2512689 S23669328 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312044128 2018-12-30 09:56:55 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Saratoga US-NY-091 13.0 Ballston Creek Preserve L2837609 H 42.9666232 -73.8342962 2015-04-22 09:55:00 obsr2321296 S22996618 Traveling P22 EBIRD 50.0 0.966 7.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289066610 2021-04-01 11:15:31.646886 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-04 13:15:00 obsr150415 S21190001 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316136469 2021-04-01 12:31:09.823741 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 1 United States US New York US-NY Livingston US-NY-051 13.0 PFA N_York L1174402 P 42.9077829 -77.9018211 2015-05-04 05:31:00 obsr1060479 S23245143 Traveling P22 EBIRD 84.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302221996 2022-03-05 22:03:50.715584 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-10 10:00:00 obsr444155 S22275186 Traveling P22 EBIRD 150.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296115088 2021-03-19 16:43:17.120646 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 Female, Adult (1) United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 GSC office feeders L2074594 P 43.1197485 -75.7878475 2015-02-10 16:40:00 obsr2716320 S21770200 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290388626 2021-04-26 05:03:09.627903 6616 species avibase-7E022378 Common Loon Gavia immer 6 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-10 12:30:00 obsr1659461 S21295630 Traveling P22 EBIRD 210.0 8.047 2.0 1 G1105023 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292524090 2021-03-30 19:13:38.458673 662 species avibase-FB738385 Bufflehead Bucephala albeola 6 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-21 12:30:00 obsr2914424 S21485761 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298480978 2021-03-26 07:07:10.758746 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula N 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--eastern section L2867427 H 40.5141988 -74.2090684 2015-02-19 07:54:00 obsr1893950 S21980834 Traveling P22 EBIRD 16.0 0.805 2.0 1 G1153108 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320537167 2021-03-26 06:29:56.44369 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis N 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-05-17 11:48:00 obsr934639 S23491700 Traveling P22 EBIRD 63.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309305317 2021-03-30 19:29:33.633096 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Terrell River L242050 P 40.7886068 -72.7801338 2015-04-11 10:27:00 obsr2963457 S22814335 Traveling P22 EBIRD 70.0 4.506 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323788978 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-29 09:00:00 obsr2966702 S23694244 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307676127 2021-03-26 07:30:35.289997 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Tompkins US-NY-109 13.0 my back yard Trumansburg L2594789 P 42.5410818 -76.6596392 2015-04-05 10:45:00 obsr2260025 S22695973 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312653836 2021-04-01 11:30:42.037277 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N 11 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 09:00:00 obsr2319444 S23038629 Traveling P22 EBIRD 180.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300240163 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 13.0 Webster Park--Campground area L300494 H 43.2544474 -77.4600935 2015-03-01 09:36:00 obsr730231 S22123264 Traveling P22 EBIRD 110.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314263871 2021-03-24 20:33:47.533911 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southwest L879237 H 42.4634388 -76.4367664 2015-04-30 06:29:00 obsr1696616 S23138737 Traveling P22 EBIRD 42.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288285483 2018-08-04 16:52:24 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Essex US-NY-031 13.0 Westport Boat Launch L479943 H 44.1887912 -73.4342089 2015-01-01 13:20:00 obsr2769235 S21125017 Stationary P21 EBIRD 18.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294309324 2020-05-02 15:38:26 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 8 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-02-01 08:06:00 obsr943683 S21626674 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302040560 2021-04-01 11:15:31.646886 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-03-09 16:00:00 obsr1731572 S22259352 Traveling P22 EBIRD 30.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310385485 2021-03-26 06:52:34.887371 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Niagara US-NY-063 13.0 Home L292333 P 43.3264327 -78.7740913 2015-04-16 07:13:00 obsr2756208 S22888630 Stationary P21 EBIRD 89.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310325560 2019-07-23 17:28:18 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip F L3559849 P 40.22115 -73.03615 2015-04-11 13:00:00 obsr782651 S22884404 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221325 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291495653 2021-03-26 07:30:35.289997 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-01-17 16:06:00 obsr1655171 S21385050 Traveling P22 EBIRD 32.0 0.483 2.0 1 G1113294 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301338340 2021-03-24 20:58:04.794277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-03-06 14:45:00 obsr1680059 S22205358 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307204420 2021-11-09 21:41:38.795423 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula X United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-04-03 07:30:00 obsr1588136 S22662521 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307268373 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-03 14:00:00 obsr2363365 S22667174 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS339643621 2021-03-30 19:22:51.561415 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge--East Pond L109144 H 40.6226854 -73.8220096 2015-03-21 12:45:00 obsr189780 S24840001 Traveling P22 EBIRD 60.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312484709 2019-01-03 22:08:58 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Essex US-NY-031 13.0 Mt. Defiance L2814714 H 43.8313207 -73.406589 2015-04-23 07:15:00 obsr2420101 S23026248 Traveling P22 EBIRD 59.0 0.644 2.0 1 G1235054 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302754537 2021-04-01 12:40:54.473014 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Saratoga US-NY-091 13.0 Malta Tech Park, Luther Forest L1232142 H 42.9575406 -73.7680821 2015-03-12 16:22:00 obsr1708031 S22321289 Traveling P22 EBIRD 10.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313725485 2018-02-01 15:11:46 431 species avibase-90E2543E Blue-winged Teal Spatula discors 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor21 L3513963 H 42.6488131 -76.0917255 2015-04-28 07:42:00 obsr620377 S23105011 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294539543 2022-02-07 12:18:17.00321 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Suffolk US-NY-103 30.0 61 Cold Spring Hills Rd, Huntington US-NY 40.82852, -73.43839 L17465014 P 40.828516 -73.438391 2015-02-02 08:00:00 obsr2857741 S21644985 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307841569 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-05 07:00:00 obsr2404047 S22707735 Traveling P22 EBIRD 300.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311515100 2021-04-01 12:32:15.282601 31530 species avibase-B48335B1 Pine Siskin Spinus pinus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-10 13:58:00 obsr2233270 S22961055 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314441591 2017-05-02 11:19:42 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 4 United States US New York US-NY Genesee US-NY-037 13.0 9605 Francis Rd , Batavia L3360943 P 42.947728 -78.1616086 2015-04-30 18:45:00 obsr393804 S23149453 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315317185 2021-11-09 19:19:16.74786 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Dutchess US-NY-027 13.0 Tivoli Bays - Kidd Lane L902373 P 42.0455003 -73.906703 2015-05-03 08:30:00 obsr2954986 S23199855 Traveling P22 EBIRD 195.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314124618 2015-04-29 17:19:02 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Huxtable Farm L3184378 P 42.9163368 -75.0849069 2015-04-29 13:18:00 obsr2736367 S23129942 Traveling P22 EBIRD 82.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312478863 2021-03-23 16:30:20.514143 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 11 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3585021 P 43.429016 -75.903778 2015-04-23 15:12:00 obsr1477887 S23025841 Stationary P21 EBIRD 47.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305762993 2021-04-01 12:18:57.910168 31424 issf avibase-71C8DB80 Common Redpoll Acanthis flammea Common Redpoll (flammea) Acanthis flammea flammea 8 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-03-28 10:02:00 obsr620377 S22554311 Traveling P22 EBIRD 79.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318557965 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-11 07:45:00 obsr1731572 S23381244 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313014894 2021-03-30 19:29:33.633096 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 8 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Bayard Cutting Arboretum SP L715580 H 40.7355391 -73.1629871 2015-04-25 10:00:00 obsr391865 S23060890 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309099196 2019-07-26 16:53:13 303 species avibase-B59E1863 Canada Goose Branta canadensis 200 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-11 07:10:00 obsr1655171 S22800814 Traveling P22 EBIRD 12.0 0.483 2.0 1 G1219959 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310326214 2016-10-11 17:02:01 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip C L3559792 P 40.186003 -73.417567 2015-04-11 09:00:00 obsr544268 S22884460 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221331 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310610316 2018-08-04 17:09:30 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Chemung US-NY-015 28.0 Sullivanville Dam L312295 H 42.1930881 -76.7819872 2015-04-17 09:12:00 obsr1092576 S22904382 Traveling P22 EBIRD 9.0 0.161 3.0 1 G1222669 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319766517 2021-04-01 11:30:42.037277 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-15 05:40:00 obsr1135516 S23451020 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305312694 2021-03-26 07:52:59.845315 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-24 07:17:00 obsr316199 S22519345 Area P23 EBIRD 90.0 2.59 2.0 1 G1192376 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317698364 2021-09-03 19:22:31.034431 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-05-09 15:43:00 obsr2497657 S23334967 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306822123 2021-09-19 18:52:22.654948 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N X United States US New York US-NY New York US-NY-061 The Battery, Manhattan L288752 H 40.7035452 -74.0159751 2015-04-01 obsr1723136 S22634090 Incidental P20 EBIRD 4.0 0 G2440870 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311910124 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 08:00:00 obsr139757 S22987669 Traveling P22 EBIRD 375.0 6.437 16.0 1 G1230491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318148076 2020-03-15 09:14:53 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-10 07:00:00 obsr319738 S23359036 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311426191 2021-03-26 07:46:52.994574 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 5 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.5944991 -73.8148373 2015-04-19 06:55:00 obsr2855945 S22955583 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299084637 2021-03-24 21:10:11.310781 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 1 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-02-15 15:00:00 obsr1664745 S22033370 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306386538 2021-04-01 10:47:08.851048 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-30 17:11:00 obsr800690 S22600713 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311826883 2018-08-04 17:11:16 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 5 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-19 12:11:00 obsr2683910 S22982448 Traveling P22 EBIRD 14.0 2.414 2.0 1 G1230122 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290529863 2021-04-01 12:14:19.266649 6339 species avibase-8535345B Herring Gull Larus argentatus 1 Unknown Sex, Adult (1) United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-11 14:30:00 obsr2207991 S21306981 Stationary P21 EBIRD 165.0 3.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316893275 2022-03-09 02:50:29.805088 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 130 ON C4 ON United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-07 07:50:00 obsr128156 S23288825 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS376881219 2019-07-23 17:26:42 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Suffolk US-NY-103 30.0 Kenneys Beach L139924 P 41.0717697 -72.4556656 2015-01-03 13:43:00 obsr1214394 S27808142 Stationary P21 EBIRD 4.0 2.0 1 G1100216 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307006435 2018-08-04 17:05:05 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-04-02 12:45:00 obsr319738 S22645476 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310041361 2021-03-19 16:19:20.977326 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-14 15:00:00 obsr783450 S22864912 Traveling P22 EBIRD 90.0 1.609 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323099147 2021-03-26 06:17:19.712573 26109 species avibase-BAC33609 Brown Creeper Certhia americana 6 United States US New York US-NY Erie US-NY-029 13.0 Evangola SP L300496 H 42.6085236 -79.1111807 2015-05-26 09:00:00 obsr2912088 S23646289 Traveling P22 EBIRD 120.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308745962 2021-04-01 11:47:43.260314 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 5 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-09 10:28:00 obsr2945658 S22776226 Stationary P21 EBIRD 419.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289447348 2021-11-09 18:47:59.744367 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 1 United States US New York US-NY Dutchess US-NY-027 13.0 FEEDERS & YARD T/O MILAN, NY L3728471 P 41.951314 -73.821144 2015-01-06 08:49:00 obsr1442681 S21219686 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289497420 2018-08-04 16:52:51 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, City Pier L357819 H 42.871907 -77.2725534 2015-01-06 14:00:00 obsr1243175 S21223991 Traveling P22 EBIRD 25.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298723141 2020-05-16 18:11:44 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Otsego US-NY-077 28.0 207 Stoller Hill Rd L3359197 P 42.7034192 -75.0299799 2015-02-21 09:35:00 obsr131845 S22001848 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288279587 2021-03-19 16:25:42.617988 7429 species avibase-1327AC55 Osprey Pandion haliaetus X United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-01-01 10:23:00 obsr2769235 S21124450 Traveling P22 EBIRD 47.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298317437 2021-04-01 10:47:08.851048 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Broome US-NY-007 28.0 Rte 206 farm just SW of Hemmingway Rd L3398152 P 42.3335578 -75.9427732 2015-02-18 08:45:00 obsr2855945 S21966155 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302393771 2021-03-26 07:15:58.375907 505 species avibase-C732CB10 American Black Duck Anas rubripes 6 United States US New York US-NY St. Lawrence US-NY-089 US-NY_802 13.0 Robert Moses SP, Massena L664990 H 44.9950405 -74.7988701 2015-03-10 15:30:00 obsr1016945 S22293644 Traveling P22 EBIRD 30.0 8.047 2.0 1 G1174574 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288245763 2021-11-09 21:43:58.1951 592 species avibase-3072CC16 Redhead Aythya americana 4 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L2086436 P 41.63417 -74.20833 2015-01-01 13:30:00 obsr1636520 S21121417 Incidental P20 EBIRD 2.0 0 G1089470 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310041335 2021-03-26 06:20:10.658048 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Genesee US-NY-037 13.0 White's swamp-batavia L3550543 P 42.9725874 -78.1620598 2015-04-12 09:10:00 obsr393804 S22864911 Area P23 EBIRD 45.0 8.4984 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305685771 2021-04-01 12:32:15.282601 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 10 United States US New York US-NY Nassau US-NY-059 US-NY_872 30.0 Muttontown Preserve L250511 H 40.8315708 -73.5416646 2015-03-27 12:00:00 obsr676630 S22548328 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310732633 2021-09-03 19:22:31.034431 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-04-17 15:33:00 obsr2497657 S22910172 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303653590 2021-03-19 16:44:35.607263 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-03-16 11:30:00 obsr1534851 S22392043 Traveling P22 EBIRD 100.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301200454 2020-05-19 22:10:06 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 US-NY-Olean-502 E State St L3458754 P 42.077892 -78.423181 2015-03-06 09:19:00 obsr955789 S22193629 Stationary P21 EBIRD 10.0 2.0 1 G1194138 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322512009 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 75 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-24 07:40:00 obsr1711339 S23610197 Traveling P22 EBIRD 200.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320753109 2021-04-01 10:58:47.067498 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 12 United States US New York US-NY Genesee US-NY-037 13.0 Elba Mucklands L764353 H 43.1249884 -78.1941497 2015-05-17 13:38:00 obsr2588479 S23503314 Traveling P22 EBIRD 44.0 0.402 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313507409 2021-03-26 07:20:31.408164 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 3 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-04-27 08:40:00 obsr2011512 S23091328 Traveling P22 EBIRD 90.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322136020 2021-03-26 07:56:20.588749 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-14 09:00:00 obsr2218212 S23589187 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316019324 2021-03-26 07:30:35.289997 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-607 Mitchell St L3515630 P 42.437662 -76.476951 2015-04-28 07:30:00 obsr2535282 S23238765 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761446 2021-03-26 07:56:20.588749 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-12 16:00:00 obsr2218212 S22629522 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305212272 2018-11-05 19:41:00 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-03-25 08:28:00 obsr1092576 S22511436 Stationary P21 EBIRD 5.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316140622 2016-01-28 21:51:56 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 2 United States US New York US-NY Chenango US-NY-017 28.0 Home marsh/brush area/beaver ponds L3516387 P 42.3460628 -75.6620841 2015-05-05 09:30:00 obsr1303581 S23245353 Traveling P22 EBIRD 53.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295399619 2021-12-10 08:21:29.396662 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 4 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-07 11:00:00 obsr258431 S21713991 Traveling P22 EBIRD 240.0 0.805 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303730901 2015-03-17 16:47:29 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Tioga US-NY-107 28.0 Gmas2015 L3349430 P 42.13156 -76.248535 2015-03-17 16:00:00 obsr2678338 S22397908 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296358389 2018-08-04 16:56:06 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 5 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP--North Point L2721599 H 42.548268 -76.601241 2015-02-11 13:50:00 obsr528918 S21791255 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317039134 2021-03-24 19:20:44.053843 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-05-07 08:31:00 obsr1826325 S23297324 Traveling P22 EBIRD 90.0 8.047 1.0 1 G1256768 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318429867 2018-08-06 22:29:13 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-08 08:10:00 obsr1334267 S23374286 Traveling P22 EBIRD 41.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321732068 2019-11-11 07:21:18 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 4 United States US New York US-NY Lewis US-NY-049 13.0 Location C L2127981 P 43.946569 -75.502381 2015-05-21 11:29:00 obsr417887 S23563246 Traveling P22 EBIRD 125.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296796603 2021-04-01 11:54:40.172593 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Richmond US-NY-085 Midland Beach L468389 H 40.571686 -74.0854025 2015-02-14 12:08:00 obsr1958124 S21830939 Traveling P22 EBIRD 11.0 0.322 2.0 1 G1145900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302700463 2019-07-23 17:27:55 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-12 17:57:00 obsr2945658 S22317120 Stationary P21 EBIRD 42.0 4.0 1 G1177755 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315317542 2021-04-01 11:30:42.037277 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 06:50:00 obsr1146149 S23199870 Traveling P22 EBIRD 240.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303001173 2020-05-16 18:12:51 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 30 United States US New York US-NY Otsego US-NY-077 28.0 Quarry House L3364190 P 42.7359074 -74.8563686 2015-03-14 07:00:00 obsr189015 S22340480 Stationary P21 EBIRD 120.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323607737 2018-08-06 22:31:18 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 Marsh Pond SF L3008686 H 42.1216187 -75.5404231 2015-05-28 10:15:00 obsr1830659 S23680252 Traveling P22 EBIRD 85.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306480102 2015-03-31 09:21:58 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-03-30 18:56:00 obsr745890 S22608293 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320355102 2021-04-01 11:15:31.646886 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 10:00:00 obsr2363365 S23482095 Traveling P22 EBIRD 360.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318833197 2021-03-26 07:52:59.845315 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-09 12:50:00 obsr316199 S23396931 Area P23 EBIRD 60.0 2.59 2.0 1 G1266723 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314704425 2021-03-26 06:39:43.334073 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Greywacke Arch L2179946 H 40.7792619 -73.9657742 2015-05-01 08:19:00 obsr1548221 S23165526 Traveling P22 EBIRD 18.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315967205 2017-08-16 17:12:25 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2737378 P 42.7558333 -78.8616667 2015-05-04 07:00:00 obsr436899 S23235344 Stationary P21 EBIRD 405.0 4.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301879378 2021-11-09 21:57:19.381437 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Ulster US-NY-111 28.0 Sand Hill Rd L3449606 P 41.6653174 -74.1577628 2015-02-28 13:15:00 obsr1143912 S22247420 Traveling P22 EBIRD 165.0 32.187 3.0 1 G1171286 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294300317 2021-03-30 19:39:10.250398 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Nassau US-NY-059 30.0 Wantaugh Pond L476035 P 40.6738032 -73.5152721 2015-01-31 12:35:00 obsr1160328 S21625893 Stationary P21 EBIRD 10.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322232496 2021-04-01 12:26:53.827486 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-23 07:20:00 obsr2855945 S23594375 Traveling P22 EBIRD 175.0 3.219 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303575298 2021-03-26 06:21:54.883933 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-16 10:00:00 obsr2078092 S22386003 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312604394 2021-11-15 03:06:58.889978 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-24 11:00:00 obsr2105033 S23035212 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313584626 2021-03-23 17:00:13.087107 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Enfield-63 Buck Hill Rd N L3595805 P 42.449797 -76.680937 2015-04-27 17:06:00 obsr1696616 S23095882 Traveling P22 EBIRD 3.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305265908 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 20 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-03-25 06:45:00 obsr2233143 S22515694 Area P23 EBIRD 420.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296911339 2015-02-14 20:34:33 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 21 United States US New York US-NY Oswego US-NY-075 13.0 Baum Road yard L266171 P 43.3412537 -76.1184204 2015-02-14 09:00:00 obsr979921 S21841101 Stationary P21 EBIRD 450.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316305526 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 17:15:00 obsr2072398 S23255714 Traveling P22 EBIRD 105.0 1.609 2.0 1 G1254096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305968499 2015-03-29 08:40:38 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-03-29 08:38:00 obsr1349676 S22569337 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298780769 2018-08-04 16:57:58 7940 spuh avibase-CA08045E Accipiter sp. Accipiter sp. 6 United States US New York US-NY Essex US-NY-031 13.0 Maple Meadows L4115608 P 44.0422008 -73.4797356 2015-02-21 13:50:00 obsr2769235 S22006525 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291115892 2020-04-10 18:36:59 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-01-14 13:36:00 obsr2224244 S21354268 Traveling P22 EBIRD 38.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289240359 2018-08-04 16:52:40 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 18 United States US New York US-NY Nassau US-NY-059 30.0 Baldwin L193543 T 40.6565 -73.60927 2015-01-03 14:50:00 obsr564905 S21203334 Traveling P22 EBIRD 7.0 0.322 4.0 1 G1096951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314935236 2017-12-21 12:25:41 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 S C2 S United States US New York US-NY Columbia US-NY-021 13.0 Olana State Historic Site L357372 H 42.2183005 -73.8287207 2015-05-02 08:00:00 obsr798742 S23178955 Traveling P22 EBIRD 230.0 2.092 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316306830 2021-11-15 03:06:58.889978 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 17:15:00 obsr1555046 S23255794 Traveling P22 EBIRD 105.0 1.609 2.0 1 G1254096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315446675 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Nassau US-NY-059 30.0 Norman J. Levy Park and Preserve L284148 H 40.6471523 -73.5630634 2015-05-03 09:30:00 obsr87415 S23206682 Traveling P22 EBIRD 140.0 2.414 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312066080 2015-04-22 12:36:41 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Onondaga US-NY-067 13.0 Pompey Hollow Rd L1138118 P 42.9540354 -75.9091759 2015-04-17 19:40:00 obsr2290617 S22997998 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318772904 2021-03-24 19:35:34.045988 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 3 United States US New York US-NY Erie US-NY-029 13.0 UB North Campus L1560817 P 43.0080012 -78.7856713 2015-05-11 07:20:00 obsr2597186 S23393445 Traveling P22 EBIRD 70.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310919424 2018-02-01 15:11:46 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor28 L3513970 H 42.4979113 -76.1702413 2015-04-18 06:36:00 obsr2211210 S22924413 Stationary P21 EBIRD 5.0 2.0 1 G1224167 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309284432 2021-03-30 19:07:52.958398 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 07:15:00 obsr1807494 S22813016 Traveling P22 EBIRD 360.0 4.828 25.0 1 G1215526 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315031453 2016-01-17 14:18:39 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Unity Island (aka Squaw Is.)--North End L2036486 H 42.9321075 -78.9062977 2015-05-02 15:55:00 obsr2571887 S23184207 Stationary P21 EBIRD 45.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317121387 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 07:15:00 obsr1077730 S23301926 Traveling P22 EBIRD 300.0 4.828 36.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307894349 2021-11-15 03:06:58.889978 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-05 09:10:00 obsr599682 S22711963 Traveling P22 EBIRD 170.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306531032 2021-03-30 19:39:10.250398 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 50 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-31 09:15:00 obsr247620 S22612075 Traveling P22 EBIRD 120.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307381359 2021-03-24 21:09:00.82373 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 11 United States US New York US-NY Rensselaer US-NY-083 13.0 Herrington Pond L1007930 H 42.7531258 -73.6282253 2015-04-04 10:05:00 obsr2211210 S22675556 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312185538 2021-03-24 19:20:44.053843 337 species avibase-694C127A Mute Swan Cygnus olor X United States US New York US-NY Broome US-NY-007 28.0 IBM CC / Lower glen L1060822 P 42.1262381 -75.9905434 2015-04-19 09:50:00 obsr1626739 S23005929 Traveling P22 EBIRD 77.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135522 2021-04-01 12:18:57.910168 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 3 United States US New York US-NY Tompkins US-NY-109 13.0 Portland Point Rd. and Overlook L270445 H 42.5285274 -76.5272433 2015-01-04 09:00:00 obsr241086 S21195634 Traveling P22 EBIRD 40.0 0.322 6.0 1 G1095924 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294437501 2021-04-01 11:58:54.966271 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 14 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-02-01 07:46:00 obsr2211750 S21636778 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303270542 2021-03-26 06:39:43.334073 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-15 12:00:00 obsr2976 S22361510 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304179468 2021-03-30 19:19:56.775388 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 100 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, Water Pumping Station L801368 H 42.845303 -77.2802943 2015-03-19 17:30:00 obsr2445407 S22433162 Traveling P22 EBIRD 30.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290427376 2019-07-23 17:26:45 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 60 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point SP L109151 H 41.0719093 -71.8838119 2015-01-10 09:00:00 obsr2555972 S21298628 Stationary P21 EBIRD 60.0 8.0 1 G1107641 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308617777 2021-03-24 20:33:47.533911 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-09 09:14:00 obsr1062070 S22766000 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321711993 2021-11-09 18:47:30.32584 11528 species avibase-F3DA111C Merlin Falco columbarius 5 United States US New York US-NY Dutchess US-NY-027 14.0 Sharon Station Rd Amenia L3661560 P 41.885208 -73.516001 2015-05-21 11:10:00 obsr1732267 S23562080 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309099203 2019-07-26 16:53:13 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-11 07:10:00 obsr1655171 S22800814 Traveling P22 EBIRD 12.0 0.483 2.0 1 G1219959 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313552112 2021-03-26 07:20:31.408164 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Arshamomaque Pond Preserve L140131 H 41.079361 -72.4004135 2015-04-26 13:19:00 obsr1107696 S23093869 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319018260 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-12 12:00:00 obsr2505956 S23407481 Rusty Blackbird Spring Migration Blitz P41 EBIRD 150.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317183465 2018-08-06 22:29:09 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-08 06:30:00 obsr1830659 S23301078 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309496101 2021-11-15 03:06:58.889978 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-12 15:30:00 obsr1927179 S22826145 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321827272 2021-12-27 20:39:04.096623 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-05-19 10:00:00 obsr479109 S23569086 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314801212 2015-05-01 23:50:40 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 9 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-01 17:10:00 obsr1334267 S23171508 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310930466 2021-03-23 17:15:00.080143 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Carncross Rd. L99688 H 43.0787739 -76.7080184 2015-04-18 13:13:00 obsr59643 S22925041 Traveling P22 EBIRD 40.0 0.161 2.0 1 G1224762 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS626886914 2021-03-26 06:39:43.334073 447 species avibase-C235A4D7 Gadwall Mareca strepera X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-12 09:30:00 obsr251507 S46244464 Traveling P22 EBIRD 15.0 0.402 2.0 1 G3252551 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308657647 2018-08-04 17:08:12 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-09 10:55:00 obsr2625207 S22768895 Stationary P21 EBIRD 70.0 7.0 1 G1212237 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292541899 2019-07-23 17:27:09 26890 species avibase-94A44032 European Starling Sturnus vulgaris 15 United States US New York US-NY Suffolk US-NY-103 30.0 Breakwater Beach L1053952 H 41.0137458 -72.5604701 2015-01-21 12:28:00 obsr1107696 S21487196 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308641080 2021-03-30 12:05:58.533651 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-09 09:30:00 obsr2750470 S22767754 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291402619 2021-03-26 06:55:00.227271 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 14 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-01-16 obsr1338126 S21377419 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297855152 2021-04-01 11:49:53.573686 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 175 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-02-16 08:38:00 obsr1982614 S21926744 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293871197 2021-04-22 12:55:05.75868 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 4 United States US New York US-NY Oneida US-NY-065 13.0 Waterville Home Grounds L1257983 P 42.9688865 -75.3351134 2015-01-29 14:30:00 obsr2139704 S21592578 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313909121 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-21 08:21:00 obsr2233270 S23116757 Traveling P22 EBIRD 459.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319334834 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-13 05:30:00 obsr2233143 S23425846 Area P23 EBIRD 420.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309173548 2021-04-01 12:18:57.910168 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 10 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-11 16:54:00 obsr1318356 S22805700 Traveling P22 EBIRD 22.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305465992 2018-08-04 17:03:41 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Red Creek Unit L1528347 H 43.3006399 -76.7825379 2015-03-26 17:16:00 obsr1721609 S22531332 Stationary P21 EBIRD 15.0 3.0 1 G1193968 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312106425 2021-04-01 10:58:47.067498 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-04-19 09:55:00 obsr408487 S23000492 Area P23 EBIRD 70.0 121.4057 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313106373 2015-04-26 11:53:16 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--South Meadow Trail L591205 H 43.0076599 -77.5658798 2015-04-26 11:05:00 obsr1097423 S23066502 Traveling P22 EBIRD 27.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS350971197 2018-01-07 20:13:45 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-04-18 06:59:00 obsr2420101 S25653108 Stationary P21 EBIRD 35.0 2.0 1 G1453166 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292100100 2021-03-26 07:56:20.588749 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-19 08:50:00 obsr1220115 S21432045 Traveling P22 EBIRD 120.0 1.609 2.0 1 G1118025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295512413 2021-04-01 11:49:53.573686 592 species avibase-3072CC16 Redhead Aythya americana 3 United States US New York US-NY Queens US-NY-081 30.0 Riis Landing L2721494 H 40.5676631 -73.8842089 2015-02-08 08:58:00 obsr2574755 S21723077 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323618959 2018-08-06 22:31:19 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Chemung US-NY-015 28.0 Sullivanville Dam L312295 H 42.1930881 -76.7819872 2015-05-28 18:08:00 obsr1092576 S23681108 Traveling P22 EBIRD 22.0 0.1 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314714880 2018-08-04 17:13:57 8806 species avibase-FC4D40D2 Long-eared Owl Asio otus 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-01 15:10:00 obsr646558 S23166158 Traveling P22 EBIRD 75.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303270547 2021-03-26 06:39:43.334073 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-15 12:00:00 obsr2976 S22361510 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314925004 2016-09-12 10:37:46 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP L246469 H 42.055 -78.7661111 2015-05-02 10:30:00 obsr2933610 S23178449 Stationary P21 EBIRD 8.0 2.0 1 G1254124 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294331213 2021-11-09 21:43:58.300436 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Ulster US-NY-111 13.0 Black Creek Preserve L2086582 H 41.8236532 -73.9574718 2015-01-31 07:38:00 obsr1136997 S21628501 Traveling P22 EBIRD 67.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294016968 2021-03-26 07:56:20.588749 11371 species avibase-75600969 Northern Flicker Colaptes auratus 5 United States US New York US-NY Nassau US-NY-059 30.0 22 Astor Place, Williston Park, NY, 11596 L1756723 P 40.7581251 -73.6466542 2015-01-30 15:19:00 obsr2086576 S21603410 Stationary P21 EBIRD 36.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295531685 2021-03-30 19:03:28.117389 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 7 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-02-08 10:16:00 obsr1092576 S21724698 Traveling P22 EBIRD 15.0 0.322 3.0 1 G1138933 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298042119 2021-11-09 18:44:19.573201 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Dutchess US-NY-027 13.0 side yard L3393892 P 41.625492 -73.8724512 2015-02-17 08:00:00 obsr2449011 S21942861 Stationary P21 EBIRD 180.0 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297788282 2021-03-26 07:56:20.588749 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 55 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-02-16 15:00:00 obsr613775 S21920603 Traveling P22 EBIRD 81.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312278936 2019-10-25 15:51:18 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 home L1850306 P 44.6162578 -74.8236293 2015-04-23 08:00:00 obsr1016945 S23012207 Stationary P21 EBIRD 120.0 2.0 1 G1232597 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318358385 2021-04-01 10:55:39.308231 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 3 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 20 Queens Drive L1383581 P 43.0393001 -78.946665 2015-05-10 19:30:00 obsr502830 S23370374 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290803396 2015-01-13 08:50:52 7261 species avibase-86D45B8F Green Heron Butorides virescens 11 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-01-10 10:00:00 obsr1349676 S21328372 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322337744 2015-05-23 20:23:30 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-19 07:55:00 obsr2420101 S23600262 Traveling P22 EBIRD 250.0 1.609 4.0 1 G1286335 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298710057 2021-03-26 07:30:35.289997 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-21 08:18:00 obsr1655171 S22000619 Traveling P22 EBIRD 15.0 0.483 2.0 1 G1155008 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299193451 2021-03-26 08:14:57.071052 505 species avibase-C732CB10 American Black Duck Anas rubripes 46 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-02-23 12:54:00 obsr258431 S22041552 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306195509 2015-03-29 22:26:21 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-03-29 08:00:00 obsr1708031 S22586240 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322045923 2021-04-01 11:30:42.037277 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-22 08:00:00 obsr98313 S23583434 Traveling P22 EBIRD 225.0 4.828 7.0 1 G1284770 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294631624 2021-03-26 06:29:56.44369 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-02 15:55:00 obsr934639 S21652333 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291912764 2021-03-30 19:29:33.633096 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 1 United States US New York US-NY Suffolk US-NY-103 30.0 Fort Pond (south arm), Montauk L2441574 H 41.032762 -71.9503355 2015-01-19 09:28:00 obsr598381 S21417130 Traveling P22 EBIRD 35.0 1.223 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305024509 2021-03-26 06:09:25.361188 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-03-24 07:10:00 obsr879105 S22497042 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291704364 2021-03-26 07:19:24.261425 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Steuben US-NY-101 13.0 54A Between Hammondsport and Branchport L2570785 P 42.4641785 -77.1813583 2015-01-18 13:00:00 obsr1602357 S21401083 Traveling P22 EBIRD 35.0 20.921 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298425060 2021-03-30 06:01:28.020715 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Cortland US-NY-023 28.0 Cortland Wastewater Treatment Facility L1903152 H 42.597544 -76.157798 2015-02-19 08:05:00 obsr1318356 S21976009 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291197744 2018-08-04 16:53:21 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 NY:TOM:Lansing: Myers Pt L2309821 P 42.5373453 -76.5504692 2015-01-15 10:51:00 obsr2760150 S21360815 Stationary P21 EBIRD 28.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294399577 2015-02-01 15:53:47 11494 species avibase-20C2214E American Kestrel Falco sparverius 8 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Oak Beach L267998 H 40.63923 -73.28832 2015-02-01 12:00:00 obsr2406624 S21633860 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311614619 2015-04-20 15:32:59 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Erie US-NY-029 13.0 Buffalo Quarry L3578734 P 42.9480275 -78.6737394 2015-04-19 obsr1659598 S22968167 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288098212 2015-01-01 08:12:24 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 21 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southeast L879238 H 42.4674118 -76.4183235 2015-01-01 07:20:00 obsr887540 S21109012 Traveling P22 EBIRD 51.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290721284 2018-08-04 16:53:06 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-11 09:50:00 obsr1534851 S21322482 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313054751 2021-11-09 20:51:06.773494 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Rockland US-NY-087 28.0 Kakiat County Park L1023278 H 41.1461171 -74.11466 2015-04-26 07:09:00 obsr1253931 S23063425 Traveling P22 EBIRD 82.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297622395 2021-11-09 21:57:09.663069 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Ulster US-NY-111 28.0 Old Fort Road L3386240 P 41.6311938 -74.2278814 2015-02-13 11:30:00 obsr154064 S21904645 Traveling P22 EBIRD 210.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306416999 2021-04-01 10:49:39.496318 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-03-21 10:10:00 obsr34822 S22603103 Stationary P21 EBIRD 28.0 10.0 1 G1198796 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304521553 2021-04-01 10:47:08.851048 668 species avibase-9456DEDF Barrow's Goldeneye Bucephala islandica 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut Riverwalk, Endicott L2037283 P 42.0970362 -76.0435653 2015-03-21 08:20:00 obsr998593 S22458967 Stationary P21 EBIRD 60.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306898289 2021-04-01 11:15:31.646886 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-02 07:07:00 obsr152435 S22639566 Traveling P22 EBIRD 115.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314150924 2021-11-15 03:06:58.889978 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 09:00:00 obsr139757 S23131479 Traveling P22 EBIRD 270.0 4.828 4.0 1 G1243147 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315264145 2021-11-09 18:36:27.898762 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 4 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-05-03 06:01:00 obsr1433400 S23197286 Traveling P22 EBIRD 45.0 1.899 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306363969 2021-03-26 06:29:56.44369 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 800 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-30 16:50:00 obsr934639 S22598894 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303205395 2021-04-01 11:24:19.637193 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 3 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-01-25 15:56:00 obsr334398 S22356316 Traveling P22 EBIRD 23.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316837195 2018-08-04 17:15:10 6339 species avibase-8535345B Herring Gull Larus argentatus 5 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-07 10:23:00 obsr800690 S23285831 Traveling P22 EBIRD 77.0 3.219 1.0 1 G1256759 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361806408 2016-04-22 12:05:44 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Albany US-NY-001 13.0 Overlook Lane - Official Yard List L151395 P 42.662277 -73.98913 2015-05-03 obsr1645360 S26514367 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288864508 2021-03-30 19:39:10.250398 483 species avibase-85625D75 Mallard Anas platyrhynchos 32 United States US New York US-NY Nassau US-NY-059 30.0 Smith Pond, Rockville Center L444839 H 40.6608056 -73.6545278 2015-01-03 08:45:00 obsr1160328 S21174426 Stationary P21 EBIRD 35.0 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293673990 2016-03-11 08:58:42 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - West Trail intersect spur trail to Winston Court L301740 P 42.4781834 -76.4567368 2015-01-28 07:47:00 obsr2307843 S21576601 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308815552 2018-08-04 17:08:20 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-10 09:15:00 obsr596741 S22781318 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316443952 2021-03-26 07:56:20.588749 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 10 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-01 08:30:00 obsr1112275 S23263315 Traveling P22 EBIRD 120.0 2.414 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307839732 2021-05-31 11:49:18.789436 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson (General Area) L1827108 H 43.1930605 -76.2914843 2015-04-05 18:22:00 obsr2224244 S22707595 Traveling P22 EBIRD 99.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321936760 2021-03-30 19:03:28.117389 242 species avibase-D3A260BC Snow Goose Anser caerulescens 6 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-05-22 09:45:00 obsr642516 S23576299 Traveling P22 EBIRD 60.0 4.828 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289124425 2021-03-26 07:20:31.408164 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-01-04 08:00:00 obsr2011512 S21194761 Traveling P22 EBIRD 60.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307148905 2021-04-01 12:26:53.827486 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-04-03 11:35:00 obsr1154 S22658750 Traveling P22 EBIRD 35.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294468656 2021-04-01 11:49:53.573686 30494 species avibase-240E3390 House Sparrow Passer domesticus 14 United States US New York US-NY Queens US-NY-081 30.0 Riis Landing L2721494 H 40.5676631 -73.8842089 2015-02-01 14:30:00 obsr2796494 S21639228 Traveling P22 EBIRD 45.0 0.161 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304079806 2021-03-24 19:20:44.053843 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Johnson City-29 Lindburgh St L3499751 P 42.155084 -75.963437 2015-03-19 17:01:00 obsr1764243 S22425407 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301948801 2022-02-18 10:47:29.953615 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-09 08:36:00 obsr1062070 S22252331 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307096578 2021-03-26 07:07:10.758746 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 20 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-03 06:57:00 obsr1958124 S22654807 Traveling P22 EBIRD 5.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316550526 2021-04-01 11:30:42.037277 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 07:30:00 obsr369788 S23269537 Traveling P22 EBIRD 300.0 6.437 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300224811 2015-03-01 10:48:48 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-03-01 10:40:00 obsr1958124 S22122005 Traveling P22 EBIRD 7.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304505049 2021-03-19 16:14:11.035882 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cortland US-NY-023 28.0 NYS Rte 11, Blodgett Mills to Messengerville L3448402 P 42.5350579 -76.0907722 2015-03-21 08:05:00 obsr931232 S22457720 Traveling P22 EBIRD 30.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310713751 2015-04-17 16:55:40 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Tompkins US-NY-109 13.0 Varna, Freese at Dryden Road (366) L3570516 P 42.4560587 -76.4365706 2015-04-17 09:29:00 obsr1062070 S22911002 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310414281 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-15 12:45:00 obsr1137085 S22890557 Historical P62 EBIRD 60.0 2.414 0.8094 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307494327 2021-04-01 11:24:19.637193 483 species avibase-85625D75 Mallard Anas platyrhynchos 9 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-04-02 07:57:00 obsr1092576 S22683396 Traveling P22 EBIRD 294.0 1.609 3.0 1 G1202288 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305250418 2018-08-04 17:02:52 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Saratoga US-NY-091 13.0 Hudson Crossing Park L1476458 H 43.1155261 -73.577908 2015-03-25 13:58:00 obsr1393782 S22514527 Stationary P21 EBIRD 39.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319002180 2015-05-12 15:39:47 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Basset Road L2205631 P 42.410139 -75.964405 2015-05-12 10:30:00 obsr1472872 S23406646 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294389577 2021-04-28 05:26:15.958627 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Dead Horse Point L169814 H 40.579594 -73.89466 2015-02-01 11:49:00 obsr1189028 S21633118 Traveling P22 EBIRD 85.0 3.219 2.0 1 G1399433 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300068700 2021-03-26 07:07:10.758746 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 10 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-28 11:14:00 obsr1893950 S22108970 Traveling P22 EBIRD 8.0 0.483 2.0 1 G1161949 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308923510 2021-03-23 17:00:13.087107 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-10 18:02:00 obsr1696616 S22788896 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316578259 2015-05-07 12:19:01 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 4 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-05-06 07:30:00 obsr2842267 S23271232 Traveling P22 EBIRD 270.0 0.805 16.0 1 G1254989 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290862638 2021-02-04 13:11:09.63048 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 Unknown Sex, Adult (1) United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-E L3288970 P 39.52687 -72.39041 2015-01-11 12:00:00 obsr1982614 S21333710 Traveling P22 EBIRD 60.0 19.795 44.0 1 G1108338 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310954009 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-04-16 13:15:00 obsr423515 S22926625 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290852163 2018-08-04 16:53:11 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 14 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 17:00:00 obsr1092576 S21332703 Traveling P22 EBIRD 30.0 4.828 44.0 1 G1108343 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323954017 2015-05-30 12:16:54 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius X United States US New York US-NY Kings US-NY-047 US-NY_1722 Jamaica Bay Wildlife Refuge--Terrapin Point (Brooklyn) L3668252 P 40.61576 -73.835 2015-05-30 10:45:00 obsr152435 S23705307 Traveling P22 EBIRD 81.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316970016 2021-03-19 16:44:35.607263 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-07 16:10:00 obsr934639 S23293317 Traveling P22 EBIRD 140.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298469509 2021-03-23 16:39:03.255227 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-3176-3198 Hylan Blvd L3400923 P 40.558243 -74.12623 2015-02-19 15:06:00 obsr1958124 S21979972 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315386472 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:20:00 obsr1047805 S23203462 Traveling P22 EBIRD 462.0 8.047 3.0 1 G1259290 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317743592 2021-04-01 11:30:42.037277 406 species avibase-27B2749A Wood Duck Aix sponsa 21 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-05-09 18:00:00 obsr259298 S23337405 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291964528 2021-03-26 07:20:31.408164 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 7 United States US New York US-NY Suffolk US-NY-103 30.0 US-NY-Sayville-1 Montauk Hwy L3304327 P 40.731521 -73.091821 2015-01-18 14:55:00 obsr1107696 S21421348 Traveling P22 EBIRD 16.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288193588 2018-08-04 16:52:25 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Seneca US-NY-099 13.0 Van Cleef Lake L281203 H 42.91172 -76.79386 2015-01-01 14:00:00 obsr204036 S21116969 Stationary P21 EBIRD 3.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294407251 2021-03-24 21:13:42.099821 20829 species avibase-B9B272F4 Common Raven Corvus corax 4 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-02-01 15:30:00 obsr258431 S21634456 Stationary P21 EBIRD 47.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301312587 2022-03-08 13:50:22.901821 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-03-06 08:30:00 obsr473055 S22203201 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294220201 2021-11-09 22:37:20.108383 406 species avibase-27B2749A Wood Duck Aix sponsa 7 United States US New York US-NY Sullivan US-NY-105 28.0 Bashakill L1566572 P 41.5241759 -74.5163684 2015-01-31 08:00:00 obsr2219590 S21619590 Stationary P21 EBIRD 330.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320085855 2021-03-24 05:37:45.927792 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 5 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-16 07:08:00 obsr502830 S23468507 Traveling P22 EBIRD 156.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310940216 2022-01-20 09:38:40.245267 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-04-17 17:20:00 obsr2188170 S22925676 Traveling P22 EBIRD 55.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319420432 2022-02-17 14:32:23.002448 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-12 11:48:00 obsr2363365 S23430791 Traveling P22 EBIRD 145.0 3.219 4.0 1 G1269781 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304142549 2021-03-26 07:20:31.408164 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-19 21:15:00 obsr2555972 S22430213 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304601064 2015-06-03 10:12:43 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-03-22 10:43:00 obsr1765131 S22464783 Traveling P22 EBIRD 50.0 0.805 2.0 1 G1191064 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304056499 2019-07-23 17:28:02 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-03-19 13:53:00 obsr2914424 S22423658 Traveling P22 EBIRD 63.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310376687 2021-11-09 22:04:59.499979 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 1 United States US New York US-NY Ulster US-NY-111 13.0 Saugerties Lighthouse L490267 H 42.0722249 -73.9367873 2015-04-16 06:58:00 obsr118701 S22888008 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292641085 2021-12-10 08:21:29.396662 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-01-22 14:07:00 obsr363163 S21494899 Traveling P22 EBIRD 92.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313119745 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 08:20:00 obsr2206421 S23067199 Traveling P22 EBIRD 190.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288176112 2021-11-09 22:22:17.166015 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Ulster US-NY-111 13.0 Morgan Hill Road L820329 P 41.9639577 -74.1005623 2015-01-01 12:30:00 obsr1726282 S21115483 Traveling P22 EBIRD 45.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293682569 2019-07-23 17:27:13 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Steuben US-NY-101 13.0 East Lake Road, Hammondsport L2757940 P 42.4200013 -77.1839333 2015-01-28 08:20:00 obsr1602357 S21577273 Traveling P22 EBIRD 62.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316240410 2021-03-23 17:23:45.772216 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3616116 P 42.693501 -77.711644 2015-05-05 16:44:00 obsr682121 S23251968 Stationary P21 EBIRD 161.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305421670 2015-03-26 13:09:33 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Essex US-NY-031 13.0 102 Racetrack Rd, Ticonderoga, NY L2849942 P 43.8534847 -73.441565 2015-03-26 09:39:00 obsr2693145 S22527890 Stationary P21 EBIRD 209.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308060141 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-06 12:38:00 obsr1243175 S22723292 Traveling P22 EBIRD 60.0 1.127 2.0 1 G1208381 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309511533 2021-03-26 07:20:31.408164 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-12 12:30:00 obsr2448785 S22827226 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1216742 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307186138 2021-03-24 19:27:13.077399 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 8 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-04-02 13:25:00 obsr1334267 S22661243 Stationary P21 EBIRD 52.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308084353 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North Woods L3534756 P 40.7974211 -73.9554012 2015-04-06 17:30:00 obsr1223279 S22725207 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292947499 2021-03-26 08:12:51.35913 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Schuyler US-NY-097 13.0 Williamee Rd. x Updyke Rd. fields (NE of intersection) L2687064 H 42.4857069 -76.7084312 2015-01-24 09:30:00 obsr1042912 S21519207 Traveling P22 EBIRD 30.0 7.403 2.0 1 G1121222 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306079058 2021-11-15 03:06:58.889978 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-29 14:15:00 obsr1555046 S22577230 Traveling P22 EBIRD 45.0 0.805 3.0 1 G1208369 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921141 2021-03-26 07:56:20.588749 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-04 09:00:00 obsr2218212 S22173311 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304094339 2015-03-19 18:32:16 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-03-19 08:33:00 obsr1472872 S22426525 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316769793 2021-04-01 11:15:31.646886 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 5 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-06 06:00:00 obsr2233143 S23270200 Area P23 EBIRD 540.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308732617 2021-03-30 19:13:38.458673 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-04-09 10:56:00 obsr2774009 S22775182 Traveling P22 EBIRD 50.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306547133 2015-07-09 21:50:33 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-31 12:56:00 obsr1318356 S22613363 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313165490 2015-04-26 14:29:16 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Tompkins US-NY-109 28.0 Shindagin Hollow SF, MtnBike trail 1 L3592364 P 42.3348466 -76.3407004 2015-04-26 11:30:00 obsr2535282 S23069893 Traveling P22 EBIRD 70.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303770707 2021-11-09 21:41:38.795423 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia N X United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-03-17 07:30:00 obsr1588136 S22401008 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303708343 2015-03-17 14:54:22 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--Snyder Rd. L763841 H 42.4976053 -76.4600587 2015-03-17 10:15:00 obsr2760150 S22396181 Traveling P22 EBIRD 12.0 1.931 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307206239 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-03 09:30:00 obsr2207991 S22662644 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294145284 2021-03-24 20:16:00.852773 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-31 13:27:00 obsr1958124 S21613873 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289288792 2021-04-01 12:14:19.266649 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 300 United States US New York US-NY Suffolk US-NY-103 30.0 Shorts Pond L549100 H 40.9455791 -72.3332505 2015-01-05 07:45:00 obsr1736113 S21207195 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298719096 2021-03-24 20:52:47.158779 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 5 United States US New York US-NY Yates US-NY-123 13.0 Seneca Lake, Plum Point Rd. L1047169 H 42.5944014 -76.9216883 2015-02-21 09:55:00 obsr2871406 S22001463 Traveling P22 EBIRD 18.0 2.414 2.0 1 G1154745 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082707 2021-03-24 19:27:13.077399 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Chemung US-NY-015 28.0 Big Flats Trail--East L1404014 H 42.1456056 -76.9078173 2015-01-17 11:00:00 obsr1334267 S21430580 Traveling P22 EBIRD 33.0 0.322 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305601744 2015-03-27 13:28:45 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 200 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Basset Road L2205631 P 42.410139 -75.964405 2015-03-27 10:08:00 obsr1472872 S22541908 Traveling P22 EBIRD 60.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308915025 2015-11-28 19:02:08 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-10 14:30:00 obsr1964738 S22788298 Stationary P21 EBIRD 60.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314267763 2018-08-04 17:13:03 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Franklin US-NY-033 13.0 Private Property - Alderon Marsh L3601092 P 44.9946705 -74.5498753 2015-04-29 18:00:00 obsr568671 S23139005 Traveling P22 EBIRD 180.0 1.609 8.0 1 G1243686 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313228085 2021-04-01 11:27:18.37144 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Montgomery US-NY-057 13.0 West Ames Rd., horse farm L1208609 H 42.8466304 -74.6416926 2015-04-26 09:00:00 obsr777630 S23073525 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308961695 2021-04-01 11:47:43.260314 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Oswego US-NY-075 13.0 Derby Hill Bird Observatory L982887 P 43.5273932 -76.2341309 2015-04-10 10:00:00 obsr979921 S22791713 Stationary P21 EBIRD 315.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317603314 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 10:00:00 obsr2369927 S23329889 Traveling P22 EBIRD 240.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303058758 2021-04-01 12:18:57.910168 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Portland Point Rd. and Overlook L270445 H 42.5285274 -76.5272433 2015-03-14 13:18:00 obsr1696616 S22345258 Traveling P22 EBIRD 19.0 1.609 2.0 1 G1179148 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS320342447 2021-03-19 16:19:20.977326 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-16 14:00:00 obsr2096529 S23481478 Traveling P22 EBIRD 155.0 0.805 2.0 1 G1274011 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304861184 2021-03-24 20:49:55.752669 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 50 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-03-23 10:32:00 obsr1721609 S22483850 Stationary P21 EBIRD 64.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290179336 2021-03-26 08:05:20.615241 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata N 6 United States US New York US-NY Onondaga US-NY-067 13.0 Waterbury Dr L1285528 P 43.1268087 -76.1530209 2015-01-10 10:30:00 obsr1633923 S21278433 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290419782 2021-04-01 12:14:19.266649 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis N 3 United States US New York US-NY Suffolk US-NY-103 30.0 US-NY-Riverhead-1373 Roanoke Ave L3284955 P 40.93496 -72.675502 2015-01-11 13:40:00 obsr916033 S21298050 Stationary P21 EBIRD 15.0 4.0 1 G1105177 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293526650 2021-04-01 10:52:54.724403 5773 species avibase-671B69FE Piping Plover Charadrius melodus 50 United States US New York US-NY Columbia US-NY-021 13.0 Chatham L157212 T 42.36428 -73.59486 2015-01-26 09:30:00 obsr712039 S21565083 Traveling P22 EBIRD 195.0 48.28 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294815371 2021-11-09 18:28:18.113015 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 40 United States US New York US-NY Dutchess US-NY-027 28.0 Dover Plains, NY L1966508 P 41.750568 -73.5745811 2015-02-03 14:30:00 obsr1917973 S21667410 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304217601 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-20 13:52:00 obsr334398 S22436221 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294145823 2021-03-26 06:58:34.561206 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 17 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-01-30 08:02:00 obsr2588479 S21613919 Stationary P21 EBIRD 270.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315903101 2021-11-09 17:58:40.313796 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-04 06:58:00 obsr440908 S23231726 Traveling P22 EBIRD 4.0 6.437 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313627623 2021-11-09 20:37:49.117197 5891 species avibase-DC3050A9 Ruddy Turnstone Arenaria interpres 1 United States US New York US-NY Putnam US-NY-079 28.0 Manitou Point Preserve L1070091 H 41.3373022 -73.96174 2015-04-27 17:38:00 obsr2188716 S23098691 Traveling P22 EBIRD 109.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292098579 2021-11-09 22:28:59.791993 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Sullivan US-NY-105 US-NY_796 28.0 Mongaup Valley WMA Eagle Blind L1097151 H 41.553811 -74.7868538 2015-01-19 17:00:00 obsr1015200 S21431924 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289946329 2021-03-26 06:17:19.712573 6043 species avibase-2C7A2673 Lesser Yellowlegs Tringa flavipes 2 United States US New York US-NY Erie US-NY-029 13.0 Home L2093742 P 42.7338768 -78.7242615 2015-01-08 09:28:00 obsr916033 S21259509 Stationary P21 EBIRD 204.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310568683 2021-03-30 19:22:51.561415 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 12 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr870166 S22901508 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290004129 2021-03-26 06:13:28.501496 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Chemung US-NY-015 28.0 Chambers Road L3279517 P 42.2251955 -76.8933105 2015-01-09 07:20:00 obsr1875735 S21264231 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295434850 2021-03-26 06:21:54.883933 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 5 United States US New York US-NY Kings US-NY-047 30.0 Fresh Creek Park L582117 H 40.6437706 -73.8831639 2015-02-07 08:20:00 obsr1189028 S21716665 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322653784 2017-12-31 19:16:14 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Alison Wells Ney Nature Trail, Bliss Rd.-Thayer Rd. L2438197 H 42.3269987 -79.5051483 2015-05-24 11:00:00 obsr479109 S23618253 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293205262 2021-04-01 11:49:53.573686 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N X United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-01-25 10:00:00 obsr2207991 S21539380 Traveling P22 EBIRD 60.0 0.322 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299734497 2018-08-04 16:58:18 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Essex US-NY-031 13.0 Alexandria Ave bridge L2589364 P 43.8362139 -73.4292054 2015-02-26 15:52:00 obsr2420101 S22082758 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306785884 2018-08-04 17:04:57 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Saratoga US-NY-091 13.0 Hudson Crossing Park L1476458 H 43.1155261 -73.577908 2015-04-01 13:39:00 obsr1222746 S22631484 Rusty Blackbird Spring Migration Blitz P41 EBIRD 91.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300111582 2021-03-23 17:38:38.809066 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 5 United States US New York US-NY Schuyler US-NY-097 13.0 Trumansburg, 5619-5753 New York 79 L3444581 P 42.45664 -76.73747 2015-02-28 07:15:00 obsr1092576 S22113017 Stationary P21 EBIRD 3.0 2.0 1 G1162248 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303701233 2021-03-24 21:10:11.310781 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 8 United States US New York US-NY Saratoga US-NY-091 13.0 Betar Byway L1528567 H 43.2984602 -73.6411847 2015-03-17 10:04:00 obsr1222746 S22395647 Traveling P22 EBIRD 33.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314153759 2021-04-01 11:30:42.037277 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 15:25:00 obsr2105033 S23131673 Traveling P22 EBIRD 130.0 1.931 1.0 1 G1243225 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310613903 2021-03-19 16:14:11.035882 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 4 United States US New York US-NY Cortland US-NY-023 28.0 AviCor25 L3513967 H 42.4531944 -76.1188705 2015-04-16 11:48:00 obsr1042912 S22904686 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293893196 2021-03-23 16:52:36.900075 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Suffolk US-NY-103 30.0 Field (Watermill near Hayground Cmtry) L3326154 P 40.9296732 -72.3226333 2015-01-29 16:00:00 obsr544268 S21594198 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313749741 2021-03-24 20:11:57.676649 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-25 11:45:00 obsr1190754 S23106557 Stationary P21 EBIRD 40.0 7.0 1 G1240112 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314604844 2018-08-04 17:13:56 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Mohawk-Hudson Bike-Hike Trail, Shaker Creek bridge L2582981 H 42.7794213 -73.7916129 2015-05-01 11:45:00 obsr2321296 S23159882 Stationary P21 EBIRD 41.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299498181 2021-03-26 07:53:57.664705 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe N 9 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-02-25 06:27:00 obsr1060479 S22064656 Stationary P21 EBIRD 98.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294772411 2021-04-01 12:29:50.209479 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 Male, Adult (1) United States US New York US-NY Fulton US-NY-035 13.0 Rt 67 - between Rt 334 & Fulton Co. Solid Waste L3259465 P 43.0073547 -74.4421889 2015-02-03 10:15:00 obsr1000124 S21663861 Traveling P22 EBIRD 89.0 7.081 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313346914 2018-08-04 17:12:09 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Tompkins US-NY-109 28.0 Lindsay-Parsons Biodiversity Preserve (FLLT) L109055 H 42.3101677 -76.5216895 2015-04-25 10:54:00 obsr34822 S23080920 Traveling P22 EBIRD 128.0 2.414 3.0 1 G1238410 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317807751 2021-11-15 03:06:58.889978 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 14:20:00 obsr1494607 S23340742 Traveling P22 EBIRD 90.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308409769 2021-03-23 17:22:05.708166 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-04-07 06:30:00 obsr2694889 S22749922 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300361979 2021-03-26 07:00:33.333856 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 10 United States US New York US-NY Queens US-NY-081 30.0 York College & Perimeter L1316198 P 40.7000971 -73.7954235 2015-02-25 10:15:00 obsr1290930 S22132653 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297487174 2021-03-26 08:05:20.615241 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Onondaga US-NY-067 13.0 7474 James Street, Fayetteville, NY L269868 P 43.0374547 -76.0071565 2015-02-15 08:00:00 obsr1167884 S21892313 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296832961 2021-03-26 07:07:10.758746 6339 species avibase-8535345B Herring Gull Larus argentatus N 6 United States US New York US-NY Richmond US-NY-085 30.0 Mission of Immaculate Virgin, Mt. Loretto L890042 H 40.511334 -74.2196149 2015-02-14 07:51:00 obsr1893950 S21834230 Traveling P22 EBIRD 4.0 0.644 2.0 1 G1145913 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313158461 2021-03-19 16:14:11.035882 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor21 L3513963 H 42.6488131 -76.0917255 2015-04-26 09:14:00 obsr60436 S23069444 Stationary P21 EBIRD 10.0 3.0 1 G1236966 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295876826 2021-11-09 19:56:29.393767 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Orange US-NY-071 28.0 My spot L3350343 P 41.2308311 -74.3717122 2015-02-08 15:05:00 obsr1603513 S21751367 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314527698 2021-11-15 03:06:58.889978 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-30 15:35:00 obsr516108 S23155073 Traveling P22 EBIRD 240.0 0.644 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303217176 2021-03-19 16:32:34.732091 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-03-15 08:57:00 obsr1821546 S22357300 Traveling P22 EBIRD 55.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322774850 2022-02-17 14:32:23.002448 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-23 08:30:00 obsr943380 S23625786 Traveling P22 EBIRD 180.0 1.77 5.0 1 G1288834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308343813 2021-04-01 12:32:15.282601 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-01 12:30:00 obsr2233270 S22745042 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302961858 2021-11-09 21:57:19.919803 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 5 United States US New York US-NY Ulster US-NY-111 13.0 I-87 just N of exit 19, Kingston L3486121 P 41.9538732 -74.0191412 2015-03-13 07:10:00 obsr2855945 S22337533 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288994649 2021-03-24 05:37:45.927792 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-01-04 11:20:00 obsr2497657 S21184544 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322074169 2018-08-06 22:30:20 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Columbia US-NY-021 14.0 Steepletop, Edna St. Vincent Millay's home L3664883 H 42.3142817 -73.452487 2015-05-17 08:00:00 obsr2978565 S23585225 Traveling P22 EBIRD 180.0 2.414 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319198961 2021-03-19 16:06:54.047432 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Owasco Lake inlet area L302042 H 42.7542393 -76.4637132 2015-05-13 07:05:00 obsr943683 S23418178 Traveling P22 EBIRD 50.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299614923 2021-03-30 19:43:32.881136 6339 species avibase-8535345B Herring Gull Larus argentatus 1 Unknown Sex, Adult (1) United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-25 10:40:00 obsr1832377 S22074002 Stationary P21 EBIRD 30.0 2.0 1 G1159857 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310944777 2021-04-01 11:30:42.037277 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) N 25 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-18 13:22:00 obsr1781751 S22925952 Stationary P21 EBIRD 6.0 15.0 1 G1224251 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309496104 2021-11-15 03:06:58.889978 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-12 15:30:00 obsr1927179 S22826145 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312169846 2021-03-30 06:01:28.020715 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Broome US-NY-007 28.0 SUNY Broome Community College L3583220 H 42.1353684 -75.9091816 2015-04-22 14:20:00 obsr1166980 S23004868 Traveling P22 EBIRD 100.0 2.414 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318835217 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus N 9 United States US New York US-NY Kings US-NY-047 30.0 Brooklyn, New York, US L3631681 P 40.6460635 -73.8767602 2015-05-09 11:45:00 obsr1768453 S23397037 Stationary P21 EBIRD 15.0 1.0 1 G1266738 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294182560 2021-03-26 07:17:57.136956 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Seneca US-NY-099 13.0 Canoga Shores Drive L3329537 P 42.8273868 -76.7371202 2015-01-31 16:00:00 obsr1062070 S21616744 Traveling P22 EBIRD 24.0 1.287 2.0 1 G1131537 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318120770 2018-08-04 17:15:51 6616 species avibase-7E022378 Common Loon Gavia immer 2 United States US New York US-NY Nassau US-NY-059 30.0 Old Westbury Gardens L818565 H 40.7737819 -73.594923 2015-05-10 11:19:00 obsr1228860 S23357661 Traveling P22 EBIRD 91.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313747010 2021-03-19 16:08:39.161312 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-04-25 15:43:00 obsr870166 S23106378 Stationary P21 EBIRD 11.0 3.0 1 G1240631 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS412781826 2018-08-04 17:04:49 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Saratoga US-NY-091 13.0 Hudson Crossing Park L1476458 H 43.1155261 -73.577908 2015-03-31 obsr2943723 S30286622 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322336489 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-23 11:00:00 obsr1659461 S23600196 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310783751 2021-03-26 07:30:35.289997 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-04-17 09:00:00 obsr2137468 S22915778 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322236646 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 9 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-23 12:10:00 obsr2504709 S23594604 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310680778 2021-02-04 13:11:50.063633 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-D L3562468 P 40.157233 -73.07035 2015-01-11 11:00:00 obsr27123 S22908777 Traveling P22 EBIRD 60.0 47.315 44.0 1 G1108337 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312484009 2020-08-22 21:44:55 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 500 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Rd. L508804 H 43.0489452 -76.7335796 2015-04-23 14:15:00 obsr457491 S23026216 Traveling P22 EBIRD 80.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297221722 2021-03-23 16:52:36.900075 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 66 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-02-13 09:15:00 obsr756196 S21868816 Traveling P22 EBIRD 45.0 8.851 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307299727 2021-03-26 06:39:43.334073 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-03 18:00:00 obsr2180607 S22669430 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312044132 2018-12-30 09:56:55 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Saratoga US-NY-091 13.0 Ballston Creek Preserve L2837609 H 42.9666232 -73.8342962 2015-04-22 09:55:00 obsr2321296 S22996618 Traveling P22 EBIRD 50.0 0.966 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324001593 2021-03-26 07:52:59.845315 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 7 Male, Adult (5); Female, Adult (2) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-27 09:10:00 obsr1000124 S23708086 Area P23 EBIRD 67.0 2.59 2.0 1 G1296115 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312602260 2021-04-07 20:48:01.073565 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-24 09:45:00 obsr1738102 S23035055 Traveling P22 EBIRD 135.0 11.265 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291773097 2021-03-23 17:18:00.959502 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 Unknown Sex, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Thompsons Lake SP--Emma Treadwell Thacher Nature Center L498549 H 42.6552982 -74.0423155 2015-01-18 13:35:00 obsr2512689 S21406544 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309952843 2015-04-14 10:48:42 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 6 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Fuller Wetlands L1544410 H 42.4812919 -76.4510491 2015-04-14 10:45:00 obsr2211210 S22858730 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317178267 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 10:00:00 obsr2797341 S23304808 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320194616 2018-08-06 22:30:06 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-16 08:00:00 obsr1472872 S23473971 Traveling P22 EBIRD 190.0 4.023 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316947607 2021-03-26 06:17:19.712573 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-07 15:00:00 obsr303203 S23292095 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1256390 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299858605 2021-12-10 08:21:29.396662 251 domestic avibase-6835DC6C Graylag Goose (Domestic type) Anser anser (Domestic type) 3 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-27 08:30:00 obsr258431 S22092666 Traveling P22 EBIRD 120.0 2.012 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322514573 2021-03-24 19:48:44.880783 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-22 07:05:00 obsr334398 S23610336 Traveling P22 EBIRD 211.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296493481 2015-02-13 16:05:57 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Steuben US-NY-101 28.0 US-NY-Painted Post-3108 Knoll Rd L1826322 P 42.165969 -77.119302 2015-02-13 16:57:00 obsr2537623 S21803412 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291863013 2019-07-23 17:27:06 483 species avibase-85625D75 Mallard Anas platyrhynchos 800 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point SP L109151 H 41.0719093 -71.8838119 2015-01-19 07:27:00 obsr431494 S21413308 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322170636 2021-03-19 16:27:31.421791 6339 species avibase-8535345B Herring Gull Larus argentatus 1 Male, Adult (1) United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-23 09:00:00 obsr1104059 S23591159 Area P23 EBIRD 90.0 121.4057 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316091025 2021-03-19 16:08:39.161312 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-05-05 12:01:00 obsr2497657 S23242768 Traveling P22 EBIRD 21.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310928646 2018-08-04 17:09:42 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-18 10:00:00 obsr2569548 S22924938 Traveling P22 EBIRD 140.0 3.219 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308476339 2021-03-23 17:23:45.772216 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 3 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake L728231 P 42.7335064 -77.7231216 2015-04-08 12:05:00 obsr72341 S22755242 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312714190 2021-04-01 11:30:42.037277 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park, Manhattan L1305077 P 40.7756018 -73.968544 2015-04-24 10:35:00 obsr827632 S23042773 Traveling P22 EBIRD 80.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296189103 2021-11-09 21:57:08.722797 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 20 United States US New York US-NY Ulster US-NY-111 28.0 US-NY-Wallkill-70-72 Old Fort Rd L3354621 P 41.631444 -74.228491 2015-02-11 12:10:00 obsr2871406 S21776053 Traveling P22 EBIRD 220.0 0.161 3.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294355915 2018-08-04 16:55:32 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Seneca US-NY-099 13.0 Varick--Cayuga Lake from Town Line Rd. L2716130 P 42.8092 -76.75607 2015-01-31 15:58:00 obsr2683910 S21630467 Traveling P22 EBIRD 10.0 2.414 2.0 1 G1131451 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291904242 2021-11-09 18:43:20.143081 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Schoolhouse Road, Staatsburg, NY L3303574 P 41.851311 -73.8154496 2015-01-17 09:15:00 obsr1062217 S21416461 Traveling P22 EBIRD 11.0 2.414 2.0 1 G1115810 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298418511 2021-04-01 12:32:15.282601 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 6 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-19 11:00:00 obsr547602 S21974935 Traveling P22 EBIRD 60.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310343354 2019-07-23 17:28:18 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 8 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip F L3559849 P 40.22115 -73.03615 2015-04-11 13:00:00 obsr152435 S22885634 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221325 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305415547 2021-03-26 07:20:31.408164 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-03-17 07:30:00 obsr1592950 S22527387 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291874317 2018-08-04 16:53:59 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-19 08:30:00 obsr2143830 S21414293 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322975268 2018-08-06 22:30:12 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 3 United States US New York US-NY Cayuga US-NY-011 US-NY_1726 13.0 Montezuma (NMWMA)--Howland Island--West L318895 H 43.0781 -76.69762 2015-05-16 12:05:00 obsr2683910 S23638356 Traveling P22 EBIRD 14.0 1.448 2.0 1 G1289996 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289279295 2021-03-26 07:56:20.588749 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Nassau US-NY-059 30.0 N 2nd St. L2585098 P 40.738664 -73.6975363 2015-01-05 09:30:00 obsr143739 S21206459 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323586168 2018-08-06 22:31:14 431 species avibase-90E2543E Blue-winged Teal Spatula discors 4 United States US New York US-NY Broome US-NY-007 28.0 Oquaga Creek SP L3174979 H 42.1800877 -75.4220398 2015-05-27 07:20:00 obsr1830659 S23672983 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324203512 2021-03-30 19:13:38.458673 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 500 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach - Parking Lot 3 L1004373 P 43.3645329 -77.9557657 2015-05-12 10:20:00 obsr2966702 S23720888 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316114398 2015-05-05 13:42:00 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-05-05 12:20:00 obsr1962295 S23243988 Traveling P22 EBIRD 55.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309349587 2021-11-09 18:24:59.618229 483 species avibase-85625D75 Mallard Anas platyrhynchos N X United States US New York US-NY Dutchess US-NY-027 13.0 Clinton Nature Trail L1639228 H 41.8844174 -73.8038808 2015-04-12 09:07:00 obsr2175245 S22817147 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310710324 2015-04-17 16:44:03 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Greene US-NY-039 28.0 Freehold L359172 T 42.35928 -74.04988 2015-04-17 16:05:00 obsr2100021 S22910771 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314471323 2021-03-26 07:30:35.289997 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 150 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-30 17:44:00 obsr1655171 S23151534 Traveling P22 EBIRD 18.0 0.483 2.0 1 G1247182 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312749478 2021-03-26 07:46:52.994574 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-04-25 07:41:00 obsr1885846 S23045163 Traveling P22 EBIRD 163.0 8.69 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296303114 2021-03-26 06:09:25.361188 7200 species avibase-49D9148A Great Egret Ardea alba N 2 United States US New York US-NY Broome US-NY-007 28.0 Bond Street L3200480 P 42.1007 -75.88074 2015-02-12 09:30:00 obsr998593 S21786916 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313737174 2021-11-09 18:40:19.746769 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 4 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--West L3002249 H 41.9197784 -73.6751747 2015-04-28 08:00:00 obsr1442681 S23105816 Traveling P22 EBIRD 87.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313650307 2021-12-10 08:21:29.396662 27616 species avibase-D77E4B41 American Robin Turdus migratorius 9 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-04-27 08:15:00 obsr1198912 S23100188 Traveling P22 EBIRD 225.0 4.506 25.0 1 G1239686 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300248752 2021-03-22 09:17:32.016297 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-02-28 09:00:00 obsr1195517 S22123958 Stationary P21 EBIRD 240.0 2.0 1 G1163374 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317865797 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 06:54:00 obsr150415 S23343853 Traveling P22 EBIRD 258.0 4.828 4.0 1 G1260339 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304352968 2021-03-26 06:07:26.162322 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna N 1 United States US New York US-NY Allegany US-NY-003 28.0 Chenunda Drive L1473325 P 42.0884737 -77.9247651 2015-03-20 07:45:00 obsr1310178 S22440003 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317038543 2018-08-04 17:15:05 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-07 06:10:00 obsr1778524 S23297293 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309534262 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Conservatory Garden L278130 H 40.7937283 -73.9523798 2015-04-12 10:00:00 obsr2033754 S22828768 Traveling P22 EBIRD 120.0 1.609 25.0 1 G3252573 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300607777 2019-07-23 17:27:36 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-02 10:15:00 obsr479109 S22149863 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319763313 2021-03-26 06:15:05.840405 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cortland US-NY-023 28.0 Cornell Lane, Harford L508623 H 42.4382173 -76.2464476 2015-05-15 07:27:00 obsr1042912 S23450859 Traveling P22 EBIRD 9.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320507083 2021-11-09 19:01:40.008558 406 species avibase-27B2749A Wood Duck Aix sponsa 12 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-17 05:48:00 obsr1433400 S23490262 Traveling P22 EBIRD 300.0 8.288 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315544653 2021-04-01 11:15:31.646886 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 10:45:00 obsr876649 S23212078 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300003484 2020-05-16 18:11:44 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Otsego US-NY-077 28.0 207 Stoller Hill Rd L3359197 P 42.7034192 -75.0299799 2015-02-28 08:40:00 obsr131845 S22103580 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316302980 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-05 16:30:00 obsr1555046 S23255584 Traveling P22 EBIRD 30.0 1.609 2.0 1 G1254080 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314942094 2021-11-09 19:12:46.823329 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY Dutchess US-NY-027 13.0 Deep Hollow Rd. (Dutchess Co.) L7414423 H 41.8171319 -73.5959005 2015-05-02 11:30:00 obsr1917973 S23179349 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299094945 2021-04-01 12:35:52.669792 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 4 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-22 08:56:00 obsr2001485 S22034142 Traveling P22 EBIRD 58.0 0.483 3.0 1 G1156954 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307659973 2021-11-09 21:43:58.300436 26890 species avibase-94A44032 European Starling Sturnus vulgaris 12 United States US New York US-NY Ulster US-NY-111 13.0 Black Creek Preserve L2086582 H 41.8236532 -73.9574718 2015-04-05 07:27:00 obsr1136997 S22694911 Traveling P22 EBIRD 141.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312874718 2018-08-04 17:11:27 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Monroe US-NY-055 13.0 near pond at Mill Landing L2103068 P 43.235551 -77.702571 2015-04-21 09:00:00 obsr1721347 S23052528 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303467623 2018-08-04 17:01:33 26890 species avibase-94A44032 European Starling Sturnus vulgaris 30 United States US New York US-NY Steuben US-NY-101 13.0 42.5593x-77.1549 - Mar 16, 2015, 8:55 AM L3492256 P 42.55929 -77.154897 2015-03-16 08:55:00 obsr749440 S22377814 Traveling P22 EBIRD 18.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323908120 2021-03-26 06:21:54.883933 31530 species avibase-B48335B1 Pine Siskin Spinus pinus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-30 06:58:00 obsr152435 S23702449 Traveling P22 EBIRD 26.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323365564 2021-04-01 11:30:42.037277 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-27 07:05:00 obsr1220115 S23663809 Traveling P22 EBIRD 120.0 2.414 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299239654 2015-02-23 17:10:20 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3434891 P 42.693501 -77.711644 2015-02-21 06:58:00 obsr682121 S22045221 Stationary P21 EBIRD 92.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299186523 2021-04-28 05:22:52.046239 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-21 11:30:00 obsr2908667 S22041081 Traveling P22 EBIRD 95.0 2.414 5.0 1 G1155260 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314836030 2021-03-26 07:56:20.588749 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Nassau US-NY-059 30.0 Guggenheim Elementary School (Port Washington) L3554440 P 40.8510533 -73.6983597 2015-05-02 06:00:00 obsr2982024 S23173701 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313960970 2021-03-26 07:43:12.52294 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Morgan Rd. Marshes L99689 H 43.0673045 -76.7170787 2015-04-28 18:20:00 obsr528918 S23119871 Traveling P22 EBIRD 85.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290138209 2021-03-26 06:29:56.44369 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-01-09 07:35:00 obsr2449897 S21274761 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311263804 2021-03-19 16:19:20.977326 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-19 08:20:00 obsr502830 S22945643 Traveling P22 EBIRD 245.0 2.414 3.0 1 G1226244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324087590 2017-01-01 11:52:51 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Albany US-NY-001 13.0 Voorheesville L1819783 P 42.6530961 -73.9297992 2015-05-30 17:30:00 obsr30103 S23713454 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292241415 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 13.0 stakeout Yellow-headed Blackbird, Jeffords Rd., Rush (2015) L3304693 H 43.00988 -77.62134 2015-01-20 15:55:00 obsr528918 S21442515 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318619587 2021-04-01 10:47:08.851048 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Broome US-NY-007 28.0 Parsons Rd. L1497949 H 42.2404567 -75.8516071 2015-05-11 12:00:00 obsr800690 S23384732 Traveling P22 EBIRD 20.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318962976 2021-03-26 06:39:43.334073 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-05-12 13:00:00 obsr2313260 S23404378 Stationary P21 EBIRD 17.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291346708 2021-11-09 21:36:59.310849 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Ulster US-NY-111 13.0 rosendale, ny L1465355 P 41.8499692 -74.081765 2015-01-16 07:30:00 obsr187701 S21372999 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320679734 2018-08-06 22:30:26 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-05-17 17:39:00 obsr1885846 S23499345 Traveling P22 EBIRD 105.0 6.115 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295424549 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Kings US-NY-047 Coney Island L1022251 P 40.5717588 -73.9911825 2015-02-07 08:00:00 obsr305304 S21715887 Traveling P22 EBIRD 80.0 2.253 5.0 1 G1137983 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322285787 2019-09-10 13:56:02 337 species avibase-694C127A Mute Swan Cygnus olor 1 S C2 S Male, Adult (1) United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-05-23 16:35:00 obsr2154746 S23597247 Traveling P22 EBIRD 9.0 0.805 54.0 1 G1385095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322578661 2021-11-09 18:47:56.749529 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Dutchess US-NY-027 13.0 Morgan Lake Park L3669325 P 41.71715 -73.907 2015-05-24 11:14:00 obsr1482758 S23613855 Traveling P22 EBIRD 90.0 37.014 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306948471 2021-04-01 12:18:57.910168 32101 issf avibase-873DDCD2 White-crowned Sparrow Zonotrichia leucophrys White-crowned Sparrow (leucophrys) Zonotrichia leucophrys leucophrys 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: home to Cayuga L: Cass Pk - AHTreman SMP L365140 P 42.4586739 -76.5173721 2015-04-02 09:04:00 obsr2760150 S22643571 Traveling P22 EBIRD 173.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317727021 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:40:00 obsr2519357 S23336511 Traveling P22 EBIRD 560.0 15.771 6.0 1 G1259504 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS307012301 2021-03-22 09:17:32.016297 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Oneida US-NY-065 13.0 Schneibles, South Bay, Oneida Lake L3529803 P 43.1649505 -75.7373106 2015-04-02 16:45:00 obsr666964 S22648637 Stationary P21 EBIRD 15.0 2.0 1 G1201805 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310969750 2021-03-24 20:57:48.241391 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Fulton US-NY-035 13.0 Cline Rd., marsh (east) L1144401 H 43.061062 -74.6492232 2015-04-18 08:36:00 obsr2321296 S22927638 Traveling P22 EBIRD 32.0 0.322 3.0 1 G1224392 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290876624 2021-03-30 19:29:33.633096 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 2 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-13 08:00:00 obsr916370 S21334914 Traveling P22 EBIRD 110.0 3.058 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292761909 2015-03-08 13:46:47 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park L139800 H 43.0211215 -77.5739871 2015-01-23 10:15:00 obsr1534851 S21504433 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310988937 2021-03-23 16:21:52.613913 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Ontario US-NY-069 13.0 Finger Lakes Community College (Ontario Co.) L661673 H 42.8692335 -77.2442722 2015-04-16 15:27:00 obsr1243175 S22928769 Traveling P22 EBIRD 58.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320729542 2021-04-01 12:26:53.827486 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 20 United States US New York US-NY Albany US-NY-001 28.0 Alcove Reservoir L721888 H 42.4798202 -73.9378595 2015-05-16 10:17:00 obsr2321296 S23501990 Stationary P21 EBIRD 29.0 2.0 1 G1276033 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311615426 2015-04-20 15:36:32 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Lake van Leer (private) L524497 P 42.5196241 -76.6454744 2015-04-20 13:13:00 obsr1008519 S22968222 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314774923 2021-03-23 17:00:13.087107 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias X United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Lansing: Sapsucker Woods: trails L3550537 P 42.4809179 -76.4525056 2015-04-30 14:23:00 obsr2760150 S23169971 Traveling P22 EBIRD 77.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322342793 2021-04-01 11:30:42.037277 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:20:00 obsr812739 S23600570 Traveling P22 EBIRD 462.0 8.047 3.0 1 G1259290 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312272367 2018-08-04 17:11:43 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 Male, Adult (2) United States US New York US-NY Fulton US-NY-035 13.0 Pond & Vicinity @ Rt. 131 & Rt. 131A L874617 P 43.0308054 -74.4038625 2015-04-22 09:08:00 obsr1000124 S23011783 Traveling P22 EBIRD 8.0 0.161 4.0 1 G1232583 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319726448 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 07:00:00 obsr1220115 S23448452 Traveling P22 EBIRD 150.0 2.414 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291705934 2021-11-09 19:56:27.521169 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Orange US-NY-071 28.0 Carpenter Rd L3301227 P 41.3635893 -74.4569635 2015-01-18 08:50:00 obsr1544235 S21401218 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305818323 2021-03-23 17:14:01.933181 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 6 United States US New York US-NY Washington US-NY-115 13.0 Towpath Rd--off Crowley Rd L2588719 P 43.3212043 -73.5277605 2015-03-28 11:19:00 obsr1222746 S22558168 Traveling P22 EBIRD 74.0 7.403 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299004157 2021-11-09 22:04:47.967972 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-22 12:51:00 obsr440908 S22024552 Stationary P21 EBIRD 195.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317487312 2021-04-01 11:15:31.646886 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 06:54:00 obsr2404047 S23323515 Traveling P22 EBIRD 258.0 4.828 4.0 1 G1260339 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291987135 2022-02-17 14:32:23.002448 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-19 12:30:00 obsr2448957 S21423106 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288249975 2021-03-24 20:11:57.676649 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 50 United States US New York US-NY Oswego US-NY-075 13.0 Lakehouse L2300327 P 43.3780807 -76.5463591 2015-01-01 07:00:00 obsr1327990 S21121743 Stationary P21 EBIRD 600.0 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302840712 2015-07-12 16:51:07 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Erie US-NY-029 13.0 Knox Farm SP L160588 H 42.7715237 -78.636327 2015-03-13 09:30:00 obsr2825336 S22327696 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307356040 2021-03-19 16:42:57.886401 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 11 United States US New York US-NY Lewis US-NY-049 14.0 Ridge Road L2752149 P 43.8555736 -75.4884338 2015-04-03 14:30:00 obsr1882034 S22673680 Traveling P22 EBIRD 30.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310661163 2021-03-26 07:07:10.758746 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-246 Downes Ave L3570063 P 40.536328 -74.186852 2015-04-17 13:07:00 obsr1958124 S22907638 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300526511 2019-07-23 17:27:36 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_839 Cedar Beach L149796 P 41.0363235 -72.3890305 2015-03-02 13:21:00 obsr2485753 S22143770 Traveling P22 EBIRD 26.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314228111 2021-03-26 06:39:43.334073 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-28 17:35:00 obsr2072398 S23136376 Traveling P22 EBIRD 30.0 0.805 2.0 1 G1266021 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290213731 2021-03-26 07:20:31.408164 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-01-03 07:00:00 obsr1592950 S21281330 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311794857 2021-03-24 20:49:01.185993 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 4 Male, Adult (2); Female, Adult (2) United States US New York US-NY Washington US-NY-115 13.0 Granville L131798 T 43.4078712 -73.259552 2015-04-21 08:00:00 obsr2196530 S22980101 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310333299 2021-03-30 19:22:51.561415 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr1982614 S22884939 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS318783014 2021-03-31 04:01:10.517395 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-11 18:16:00 obsr420385 S23394035 Traveling P22 EBIRD 90.0 2.414 2.0 1 G1266311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309209605 2021-03-26 06:39:43.334073 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 13 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-11 11:05:00 obsr2885680 S22808161 Traveling P22 EBIRD 93.0 0.805 2.0 1 G1214978 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS550608746 2021-04-01 11:14:02.420281 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Jefferson US-NY-045 13.0 2800–2908 Favret Rd, Cape Vincent US-NY (44.1114,-76.3142) surrogate two for roadsides torn of Cape Vincent L6479881 P 44.111423 -76.314217 2015-03-27 11:45:00 obsr2188450 S40595989 Traveling P22 EBIRD 165.0 56.327 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289687429 2021-03-23 17:41:09.545385 20294 species avibase-76158864 Northern Shrike Lanius borealis X United States US New York US-NY Westchester US-NY-119 30.0 81 Lake Street, Peach Lake, North Salem L141329 P 41.3594812 -73.5793018 2015-01-06 09:15:00 obsr1736921 S21238792 Stationary P21 EBIRD 345.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295607630 2021-11-15 03:06:58.889978 337 species avibase-694C127A Mute Swan Cygnus olor 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-07 12:45:00 obsr2499879 S21730573 Traveling P22 EBIRD 90.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322769672 2021-04-01 11:24:19.637193 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 4 United States US New York US-NY Monroe US-NY-055 13.0 Shil's Backyard L242296 P 43.2591667 -77.6480556 2015-05-25 07:00:00 obsr991026 S23625445 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299078603 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-22 14:00:00 obsr1668936 S22032961 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS306628635 2021-04-01 11:47:43.260314 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 F C1 F United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-03-31 10:05:00 obsr2279567 S22619877 Stationary P21 EBIRD 400.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305246617 2021-03-24 19:35:34.045988 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Feeder Area L424961 P 42.7607926 -78.8063961 2015-03-25 09:30:00 obsr2083851 S22514233 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324393716 2021-03-19 16:19:20.977326 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Erie US-NY-029 13.0 Graycliff Conservancy grounds L3689253 P 42.7128298 -78.972044 2015-05-28 09:30:00 obsr2050665 S23733420 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316163991 2018-08-04 17:12:38 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 1 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-28 14:30:00 obsr2019190 S23246532 Traveling P22 EBIRD 120.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313461614 2021-04-01 12:18:57.910168 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-04-27 09:12:00 obsr1655171 S23088513 Traveling P22 EBIRD 27.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300859624 2015-03-04 08:00:13 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-03-04 07:47:00 obsr2074043 S22168528 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315478170 2021-03-24 20:57:48.241391 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-05-02 15:45:00 obsr1708031 S23208417 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300099469 2021-03-23 17:26:08.495143 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-28 10:30:00 obsr1137265 S22111987 Traveling P22 EBIRD 180.0 4.828 3.0 1 G1162300 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303924247 2021-11-15 03:06:58.889978 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-17 15:30:00 obsr93451 S22413257 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304879830 2021-04-01 12:18:57.910168 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-03-23 11:06:00 obsr2871406 S22485259 Stationary P21 EBIRD 10.0 2.0 1 G1190190 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314854932 2021-12-24 11:02:14.483178 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-02 07:40:00 obsr991026 S23174835 Traveling P22 EBIRD 128.0 3.219 1.0 1 G1247727 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291571079 2021-03-19 16:44:35.607263 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-01-17 15:30:00 obsr2290061 S21390998 Traveling P22 EBIRD 45.0 3.219 2.0 1 G1112901 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296116758 2015-02-11 12:21:29 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 4 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-02-10 07:25:00 obsr2716320 S21770336 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311592317 2021-03-26 06:55:00.227271 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-20 12:08:00 obsr606693 S22966659 Traveling P22 EBIRD 4.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313895780 2021-04-01 10:51:50.668112 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris N 2 United States US New York US-NY Chemung US-NY-015 28.0 Fitch Bridge Fishing Access L839621 H 42.0824462 -76.8655631 2015-04-28 12:30:00 obsr2430746 S23115890 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290291244 2021-03-24 20:23:39.258075 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Suffolk US-NY-103 30.0 Chandler Estate L1355478 H 40.9559916 -73.0192018 2015-01-10 11:40:00 obsr1868191 S21287781 Stationary P21 EBIRD 175.0 2.0 1 G4460183 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294742677 2021-11-09 22:39:47.565044 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Sullivan US-NY-105 28.0 Rondout Reservoir (Sullivan Co.) L2693079 H 41.8604243 -74.5100577 2015-02-03 10:00:00 obsr444155 S21661074 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302664849 2021-04-01 11:49:53.573686 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-08 07:42:00 obsr1982614 S22314311 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319617773 2021-03-19 16:44:35.607263 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-14 11:20:00 obsr2504709 S23442159 Traveling P22 EBIRD 120.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315386510 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:20:00 obsr1047805 S23203462 Traveling P22 EBIRD 462.0 8.047 3.0 1 G1259290 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294124483 2019-07-23 17:27:14 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 66 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach State Park L230716 P 41.1295147 -72.2665183 2015-01-31 11:16:00 obsr2485753 S21612266 Traveling P22 EBIRD 17.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302159882 2021-03-24 20:33:47.533911 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Parking lot area L1772918 P 42.4803959 -76.4497041 2015-03-10 09:59:00 obsr1655171 S22268280 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319586265 2018-08-06 22:29:50 447 species avibase-C235A4D7 Gadwall Mareca strepera 10 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-05-13 09:09:00 obsr1222746 S23440434 Traveling P22 EBIRD 35.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303977761 2021-03-19 16:32:34.732091 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 49 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-18 09:15:00 obsr1821546 S22417347 Traveling P22 EBIRD 184.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313874420 2021-04-01 11:15:31.646886 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 30 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-28 07:30:00 obsr2078092 S23114598 Traveling P22 EBIRD 330.0 6.437 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318498223 2021-04-01 11:30:42.037277 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-05-09 07:56:00 obsr2712298 S23378164 Traveling P22 EBIRD 17.0 0.2 2.0 1 G1264583 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313842667 2015-04-28 16:45:39 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-28 09:56:00 obsr2817239 S23112435 Traveling P22 EBIRD 33.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315448873 2021-03-26 06:39:43.334073 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Falconers Hill L787060 H 40.7739443 -73.974072 2015-05-03 07:15:00 obsr1706920 S23206808 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309462969 2021-04-01 11:15:31.646886 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-12 13:00:00 obsr173911 S22823801 Traveling P22 EBIRD 203.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305200578 2022-02-18 10:47:29.953615 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 146 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-25 08:31:00 obsr1062070 S22510538 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313483253 2021-11-09 18:36:27.898762 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-04-27 09:28:00 obsr2175245 S23089842 Traveling P22 EBIRD 57.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294803295 2021-03-30 19:39:10.250398 279 species avibase-3E04020B Brant Branta bernicla 16 United States US New York US-NY Nassau US-NY-059 30.0 Twin Lakes Preserve L279979 H 40.6788694 -73.5147682 2015-01-31 14:00:00 obsr1494607 S21666459 Traveling P22 EBIRD 25.0 0.483 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300540785 2021-03-26 06:14:19.776945 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Columbia US-NY-021 14.0 Spencertown L2884205 P 42.3074669 -73.5266876 2015-03-01 12:00:00 obsr1901122 S22144783 Stationary P21 EBIRD 270.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309402573 2018-08-04 17:08:54 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 3 United States US New York US-NY Tompkins US-NY-109 28.0 Herman Rd. wetlands L1108700 H 42.5157265 -76.3355194 2015-04-12 13:45:00 obsr1318356 S22820285 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309489160 2021-04-01 12:18:57.910168 11494 species avibase-20C2214E American Kestrel Falco sparverius N 1 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom45 L3513987 H 42.3312349 -76.5993162 2015-04-12 14:45:00 obsr71667 S22825622 Stationary P21 EBIRD 15.0 6.0 1 G1216621 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323650365 2021-03-30 19:07:52.958398 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-28 11:25:00 obsr606571 S23683376 Traveling P22 EBIRD 300.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309700967 2021-03-24 20:16:00.852773 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-13 10:11:00 obsr1958124 S22840436 Traveling P22 EBIRD 37.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306336632 2021-03-23 16:29:02.691496 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Orleans US-NY-073 Point Breeze (Orleans Co.) L469835 H 43.3716945 -78.1916691 2015-03-30 13:20:00 obsr137150 S22596801 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311232483 2021-03-26 07:30:35.289997 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Research Ponds Unit II (restricted access) L266582 H 42.5034956 -76.4374457 2015-04-19 12:08:00 obsr1062070 S22943703 Traveling P22 EBIRD 33.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290987719 2016-09-12 10:27:59 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-08 09:45:00 obsr2475075 S21343547 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312277462 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-15 16:00:00 obsr2182516 S23012108 Traveling P22 EBIRD 120.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318184407 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 8 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-10 07:10:00 obsr41879 S23360750 Traveling P22 EBIRD 106.0 3.219 4.0 1 G1262445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307428636 2019-04-19 13:17:53 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-04 11:30:00 obsr1918430 S22678928 Stationary P21 EBIRD 45.0 4.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292991085 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Monroe US-NY-055 13.0 stakeout Yellow-headed Blackbird, Jeffords Rd., Rush (2015) L3304693 H 43.00988 -77.62134 2015-01-24 09:50:00 obsr545221 S21522425 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305854347 2021-03-26 06:39:43.334073 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-03-28 15:00:00 obsr93451 S22560719 Traveling P22 EBIRD 120.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321705669 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-21 07:00:00 obsr827632 S23561682 Traveling P22 EBIRD 315.0 8.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294349584 2021-03-26 07:07:10.758746 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Richmond US-NY-085 Lemon Creek Park L508340 H 40.5121298 -74.198581 2015-02-01 09:49:00 obsr1958124 S21630013 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308624344 2021-03-24 20:33:47.533911 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-114 Central Ave L2706508 P 42.449115 -76.4858 2015-04-09 09:56:00 obsr2326978 S22766465 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311371600 2021-04-01 11:24:19.637193 483 species avibase-85625D75 Mallard Anas platyrhynchos N 5 United States US New York US-NY Monroe US-NY-055 13.0 Meridian Centre Park L3458221 H 43.1034641 -77.5862944 2015-04-19 16:03:00 obsr934639 S22952217 Traveling P22 EBIRD 135.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320083786 2021-11-15 03:06:58.889978 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-16 06:05:00 obsr431494 S23468431 Traveling P22 EBIRD 215.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298427704 2021-04-01 12:32:15.282601 32973 species avibase-10C601D3 Bay-breasted Warbler Setophaga castanea N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-19 10:30:00 obsr2207991 S21976284 Traveling P22 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295482369 2015-02-07 23:38:04 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 5 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail Fields L2372364 P 42.212377 -76.840805 2015-02-07 11:17:00 obsr1587816 S21720721 Traveling P22 EBIRD 16.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309425119 2021-03-23 17:18:00.959502 7429 species avibase-1327AC55 Osprey Pandion haliaetus 6 United States US New York US-NY Albany US-NY-001 13.0 Stanton Pond L273495 H 42.5094164 -73.9012973 2015-04-12 09:02:00 obsr119187 S22821645 Stationary P21 EBIRD 17.0 3.0 1 G1215974 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309981855 2021-11-09 21:47:06.320858 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Ulster US-NY-111 US-NY_1728 28.0 Minnewaska SP L254147 H 41.7237441 -74.2704102 2015-04-14 08:03:00 obsr440908 S22860746 Traveling P22 EBIRD 307.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304459993 2017-08-16 02:23:57 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-21 17:03:00 obsr1764243 S22454298 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294329761 2019-04-05 10:49:13 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Chenango US-NY-017 28.0 535 Moran Rd, Oxford L2650908 P 42.3464446 -75.6593978 2015-01-31 07:00:00 obsr1303581 S21628384 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311146938 2021-03-23 16:39:03.255227 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-19 06:49:00 obsr1958124 S22938444 Traveling P22 EBIRD 8.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300704811 2021-03-26 07:30:35.289997 616 species avibase-25C94A8F Greater Scaup Aythya marila 600 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP--North Point L2721599 H 42.548268 -76.601241 2015-03-03 08:36:00 obsr1092576 S22156959 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301791228 2015-03-08 16:32:13 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-03-08 13:30:00 obsr666964 S22240805 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303016097 2021-04-01 12:18:57.910168 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 20 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-03-14 10:42:00 obsr1696616 S22341716 Traveling P22 EBIRD 19.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314467791 2021-03-26 06:17:19.712573 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-30 08:35:00 obsr783450 S23151293 Traveling P22 EBIRD 65.0 1.609 21.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290402101 2021-03-23 17:26:08.495143 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 10 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-11 09:43:00 obsr916033 S21296658 Traveling P22 EBIRD 115.0 0.966 4.0 1 G1105090 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317589990 2018-08-06 22:29:28 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-05-09 11:00:00 obsr1830659 S23328170 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314564844 2021-11-09 18:40:19.746769 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--West L3002249 H 41.9197784 -73.6751747 2015-05-01 07:10:00 obsr1732267 S23157487 Traveling P22 EBIRD 146.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308614879 2021-11-09 21:30:58.952293 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Ulster US-NY-111 13.0 Esopus Bend Nature Preserve L1422709 H 42.069482 -73.9586939 2015-04-09 07:39:00 obsr118701 S22765797 Traveling P22 EBIRD 84.0 5.311 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322130469 2021-03-24 19:48:44.880783 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 3 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-21 08:59:00 obsr334398 S23588875 Traveling P22 EBIRD 32.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304840639 2019-09-10 13:56:02 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-03-21 09:00:00 obsr2175294 S22482109 Stationary P21 EBIRD 30.0 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313793007 2016-01-28 21:28:11 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-28 10:22:00 obsr1303581 S23109287 Stationary P21 EBIRD 6.0 2.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322667397 2021-04-01 12:31:09.823741 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Livingston US-NY-051 13.0 County Route 71 L730552 P 42.7069197 -77.6757324 2015-05-24 18:23:00 obsr72341 S23619085 Incidental P20 EBIRD 4.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316970052 2021-03-19 16:44:35.607263 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-07 16:10:00 obsr934639 S23293317 Traveling P22 EBIRD 140.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290837347 2021-03-30 19:29:33.633096 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-01-13 12:29:00 obsr1228860 S21331362 Traveling P22 EBIRD 70.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313722299 2021-03-23 17:00:13.087107 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-04-28 07:21:00 obsr2211210 S23104811 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298480913 2015-02-19 19:09:38 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Richmond US-NY-085 30.0 Bloessers Pond WCA L3118785 H 40.517548 -74.2094942 2015-02-19 09:28:00 obsr1893950 S21980827 Traveling P22 EBIRD 2.0 0.322 2.0 1 G1153102 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321327819 2021-06-25 16:13:11.835459 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-19 16:00:00 obsr2448957 S23538562 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304321843 2021-04-01 11:30:42.037277 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-03-20 11:00:00 obsr1706920 S22444184 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310188085 2021-04-01 12:32:15.282601 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-15 08:10:00 obsr247620 S22875182 Traveling P22 EBIRD 80.0 2.012 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323996600 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 4 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 06:35:00 obsr2519357 S23707789 Traveling P22 EBIRD 279.0 2.414 4.0 1 G1296053 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313151937 2021-04-01 11:15:31.646886 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-26 09:20:00 obsr1731572 S23069100 Traveling P22 EBIRD 80.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316225125 2015-05-05 19:24:29 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-05 17:19:00 obsr1165633 S23251026 Traveling P22 EBIRD 124.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316073542 2020-08-24 21:56:01 337 species avibase-694C127A Mute Swan Cygnus olor 5 United States US New York US-NY Columbia US-NY-021 13.0 Rogers Island Overlook L2480895 P 42.2336651 -73.8325882 2015-05-05 10:00:00 obsr481595 S23241772 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312961630 2018-08-04 17:12:04 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-25 07:26:00 obsr1222746 S23057719 Rusty Blackbird Spring Migration Blitz P41 EBIRD 315.0 2.253 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315334027 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 05:30:00 obsr2404047 S23200737 Traveling P22 EBIRD 465.0 6.437 2.0 1 G1251451 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310606783 2021-04-01 12:18:57.910168 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Tompkins US-NY-109 28.0 Websterk Estate L3569539 P 42.4151243 -76.3541704 2015-04-17 07:20:00 obsr2724574 S22904129 Stationary P21 EBIRD 30.0 4.0 1 G1222662 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386276675 2021-03-26 06:39:43.334073 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-27 14:00:00 obsr1559830 S28585384 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308759857 2021-03-23 16:45:39.358281 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 Remington Recreation Trail L270558 H 44.6127667 -75.1665791 2015-04-09 17:02:00 obsr1558090 S22777192 Traveling P22 EBIRD 41.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313994969 2017-03-30 13:04:27 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Woodleton boardwalk (0.17km) L250377 P 42.47638 -76.44913 2015-04-29 07:58:00 obsr2307843 S23122243 Traveling P22 EBIRD 10.0 0.1 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317118447 2018-08-04 17:15:18 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 12 United States US New York US-NY Fulton US-NY-035 13.0 Cline Rd., marsh (east) L1144401 H 43.061062 -74.6492232 2015-05-08 09:15:00 obsr2590001 S23301772 Traveling P22 EBIRD 40.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314278576 2021-03-30 12:05:58.533651 242 species avibase-D3A260BC Snow Goose Anser caerulescens 2 S C2 S United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-30 08:00:00 obsr128156 S23139727 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321838905 2018-11-27 15:28:04 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 15 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-21 12:30:00 obsr1417967 S23569734 Traveling P22 EBIRD 390.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311585679 2021-03-23 17:22:05.708166 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 7 Male, Adult (4); Female, Adult (3) United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-04-18 06:00:00 obsr2694889 S22965739 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311362742 2021-03-23 17:39:28.36772 32128 species avibase-3647E146 Vesper Sparrow Pooecetes gramineus 2 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-04-19 07:02:00 obsr1839967 S22951599 Traveling P22 EBIRD 480.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312025060 2015-12-15 09:43:27 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N, n. branch of split (0.15km)) L1372136 P 42.4805343 -76.4524385 2015-04-22 08:18:00 obsr2307843 S22995423 Traveling P22 EBIRD 10.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314200008 2021-03-26 07:20:31.408164 12258 species avibase-11783075 Monk Parakeet Myiopsitta monachus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-04-29 09:00:00 obsr2011512 S23134639 Traveling P22 EBIRD 120.0 0.402 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305134289 2021-03-26 07:43:12.52294 406 species avibase-27B2749A Wood Duck Aix sponsa N 3 United States US New York US-NY Wayne US-NY-117 13.0 Powell's Yard L783199 P 43.0918854 -77.3488167 2015-03-24 17:17:00 obsr749440 S22505525 Stationary P21 EBIRD 45.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305108782 2021-04-01 12:32:15.282601 7429 species avibase-1327AC55 Osprey Pandion haliaetus 6 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-24 14:00:00 obsr547602 S22503561 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311362705 2021-03-30 19:39:10.250398 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 8 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-18 08:00:00 obsr271871 S22951598 Traveling P22 EBIRD 60.0 1.609 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317196231 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 08:30:00 obsr1220115 S23305752 Traveling P22 EBIRD 150.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310572809 2021-03-23 17:22:05.708166 11494 species avibase-20C2214E American Kestrel Falco sparverius 6 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-16 09:15:00 obsr316199 S22901774 Area P23 EBIRD 90.0 2.59 2.0 1 G1222484 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298185627 2018-08-04 16:56:46 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP--North Point L2721599 H 42.548268 -76.601241 2015-02-18 08:08:00 obsr1092576 S21954762 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303227420 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 BJs Wholesale Club Waterfront (Brooklyn) L3311662 H 40.5917716 -73.9990756 2015-03-15 10:15:00 obsr2883074 S22358160 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319798031 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Kings US-NY-047 Owls Head Park L304833 H 40.6403687 -74.0322153 2015-05-15 07:15:00 obsr2731066 S23452713 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296185799 2015-02-11 20:11:06 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-02-11 13:00:00 obsr479109 S21775813 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301396202 2021-03-23 16:52:36.900075 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-03-07 13:33:00 obsr2485753 S22210078 Stationary P21 EBIRD 13.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS315212212 2021-03-24 20:53:39.352228 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Guilderland-62-66 Winding Brook Dr L3609105 P 42.695652 -73.908101 2015-05-03 06:19:00 obsr2698963 S23194549 Traveling P22 EBIRD 175.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312603594 2021-04-01 11:15:31.646886 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 2 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-24 09:00:00 obsr1731572 S23035150 Traveling P22 EBIRD 90.0 3.219 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320521321 2021-11-09 18:32:29.137776 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Dutchess US-NY-027 US-NY_868 28.0 Pocket Rd & White Trail loop, Beacon L2341422 P 41.4934709 -73.9368939 2015-05-15 16:00:00 obsr2770696 S23490916 Traveling P22 EBIRD 180.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319664870 2021-03-19 16:08:39.161312 591 species avibase-1929E1E1 Canvasback Aythya valisineria 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-05-14 10:15:00 obsr307268 S23444877 Traveling P22 EBIRD 60.0 9.656 1.0 1 G1270925 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300533317 2021-04-01 12:45:19.712958 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-03-02 08:00:00 obsr2078798 S22144245 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319843251 2021-03-19 16:19:20.977326 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 8 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-15 08:00:00 obsr156569 S23455192 Traveling P22 EBIRD 120.0 1.609 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304402885 2021-03-23 16:39:03.255227 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 30 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-03-21 11:02:00 obsr1893950 S22450266 Traveling P22 EBIRD 21.0 0.483 2.0 1 G1186865 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316687763 2021-03-23 17:21:08.587586 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Delaware US-NY-025 28.0 SUNY Delhi L1522633 P 42.2704675 -74.9240436 2015-05-06 12:10:00 obsr1626739 S23277497 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311784201 2021-03-26 07:30:35.289997 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Tompkins US-NY-109 13.0 Newman Municipal Golf Course L2158758 H 42.4561318 -76.5052153 2015-04-21 08:22:00 obsr1655171 S22979422 Traveling P22 EBIRD 29.0 0.805 2.0 1 G1230729 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298482608 2021-03-26 08:05:20.615241 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Onondaga US-NY-067 13.0 Home L1479128 P 43.1502997 -76.3703906 2015-02-19 13:00:00 obsr2172593 S21980990 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314890912 2021-03-24 20:49:55.752669 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-04-28 09:01:00 obsr1721609 S23176707 Stationary P21 EBIRD 48.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316824407 2021-11-09 18:43:49.061486 11494 species avibase-20C2214E American Kestrel Falco sparverius 2 United States US New York US-NY Dutchess US-NY-027 28.0 Purgatory Hill L3345412 P 41.5670731 -73.566159 2015-05-07 09:00:00 obsr1058852 S23285177 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288855577 2021-03-26 06:17:19.712573 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-01-03 obsr2096529 S21173814 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306844706 2021-03-22 08:58:29.008072 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Great Hill L559908 H 40.7969094 -73.9588827 2015-03-27 17:12:00 obsr1548221 S22635820 Traveling P22 EBIRD 28.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314104639 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-29 11:20:00 obsr2505956 S23128739 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 3.219 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317593973 2021-12-24 11:02:14.483178 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-09 13:10:00 obsr991026 S23329401 Traveling P22 EBIRD 84.0 3.074 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317002765 2018-08-04 17:15:13 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-07 17:25:00 obsr2769235 S23295215 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304636974 2018-08-04 17:02:26 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-03-22 11:06:00 obsr1958124 S22467340 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324093100 2021-03-26 06:29:56.44369 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-05-30 14:28:00 obsr934639 S23713794 Traveling P22 EBIRD 75.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340107159 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Kings US-NY-047 30.0 Hendrix Creek L821734 H 40.6482804 -73.8749027 2015-01-11 13:05:00 obsr294325 S24873704 Traveling P22 EBIRD 80.0 1.609 3.0 1 G1395741 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312216871 2021-03-19 16:06:54.047432 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-04-22 obsr1395007 S23008036 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313989431 2015-04-29 08:49:14 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY Oneida US-NY-065 13.0 * Elwood Rd., Camden L1181747 P 43.2884522 -75.8246326 2015-04-29 07:06:00 obsr666964 S23121842 Stationary P21 EBIRD 3.0 2.0 1 G1242271 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317143446 2021-04-01 12:32:15.282601 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-05-02 11:00:00 obsr2555972 S23303045 Traveling P22 EBIRD 60.0 4.828 2.0 1 G1257272 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306770944 2021-03-26 06:29:56.44369 662 species avibase-FB738385 Bufflehead Bucephala albeola 18 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-04-01 16:25:00 obsr934639 S22630307 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293928121 2021-03-26 06:39:43.334073 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-01-29 08:30:00 obsr856524 S21596727 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306517686 2021-04-01 11:15:31.646886 11371 species avibase-75600969 Northern Flicker Colaptes auratus 4 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-03-31 10:00:00 obsr1731572 S22611061 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310419302 2015-04-16 12:01:18 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Tompkins US-NY-109 28.0 US-NY-Ithaca-1440-1476 Ellis Hollow Rd L3567168 P 42.428255 -76.413883 2015-04-16 07:01:00 obsr1655171 S22890885 Incidental P20 EBIRD 4.0 0 G1221853 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301813312 2015-03-08 18:10:31 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Tioga US-NY-107 28.0 42.0158x-76.4659 - Mar 8, 2015, 9:36 AM L3466817 P 42.015829 -76.465923 2015-03-08 09:34:00 obsr1318356 S22242498 Stationary P21 EBIRD 2.0 2.0 1 G1170839 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292180420 2021-04-01 12:31:09.823741 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Livingston US-NY-051 US-NY_1760 13.0 Nations Road L799182 P 42.8579487 -77.8129005 2015-01-20 09:37:00 obsr72341 S21438344 Traveling P22 EBIRD 90.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332426927 2021-03-24 19:48:44.880783 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-08 19:25:00 obsr334398 S24314384 Stationary P21 EBIRD 56.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308963403 2021-12-08 07:58:41.562209 6201 species avibase-64F4DD81 Razorbill Alca torda 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-04 13:25:00 obsr756196 S22791811 Traveling P22 EBIRD 80.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294926667 2021-03-30 19:07:52.958398 483 species avibase-85625D75 Mallard Anas platyrhynchos 20 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-04 11:30:00 obsr2363365 S21677021 Traveling P22 EBIRD 150.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290368105 2021-03-24 20:16:00.852773 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-01-11 09:23:00 obsr1958124 S21293878 Traveling P22 EBIRD 33.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298695554 2021-03-26 07:20:31.408164 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven, Old Stump Road L1796581 P 40.774188 -72.89986 2015-02-20 06:47:00 obsr613775 S21999394 Stationary P21 EBIRD 53.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304833846 2021-11-09 18:25:59.444943 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Dutchess US-NY-027 13.0 Wappinger Lake L1829902 H 41.6070847 -73.9159704 2015-03-22 10:10:00 obsr2343626 S22481592 Stationary P21 EBIRD 33.0 2.0 1 G1189941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322935053 2021-03-26 06:17:19.712573 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-25 13:10:00 obsr2155111 S23635738 Traveling P22 EBIRD 410.0 1.609 1.0 1 G1292307 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302668069 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-12 08:10:00 obsr2505956 S22314484 Traveling P22 EBIRD 110.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312726632 2021-03-26 07:30:35.289997 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-25 07:40:00 obsr887540 S23043660 Traveling P22 EBIRD 35.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307837049 2021-11-09 21:50:48.44865 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-05 16:30:00 obsr1588136 S22707409 Traveling P22 EBIRD 45.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311601278 2021-04-01 11:49:53.573686 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Queens US-NY-081 30.0 Flushing Meadows Corona Park--Queens Zoo L2851338 H 40.7451165 -73.8489014 2015-04-19 12:15:00 obsr2233270 S22967313 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300973063 2021-03-26 06:53:58.593564 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-03-03 09:00:00 obsr1195517 S22177162 Stationary P21 EBIRD 180.0 2.0 1 G1166815 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291919650 2018-08-04 16:54:02 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Broome US-NY-007 28.0 42.3583x-75.9999 - Jan 19, 2015, 1:24 PM L3303753 P 42.358336 -75.999902 2015-01-19 13:24:00 obsr2683805 S21417620 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323073116 2021-03-26 07:46:52.994574 242 species avibase-D3A260BC Snow Goose Anser caerulescens 12 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-26 08:35:00 obsr2113222 S23644633 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307705042 2021-04-01 12:32:15.282601 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Lido Beach Passive Nature Area L723695 H 40.5923663 -73.5957384 2015-04-05 08:00:00 obsr2207991 S22697844 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297910212 2015-02-17 07:27:16 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Suffolk US-NY-103 30.0 Hayground Cove L2729767 P 40.9204971 -72.3404914 2015-02-14 10:15:00 obsr1864342 S21931447 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307647912 2021-03-23 17:00:13.087107 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom35 L3513977 H 42.6070262 -76.3369512 2015-04-05 08:33:00 obsr620377 S22694008 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317328611 2021-04-01 11:30:42.037277 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Summit Rock L1150654 H 40.7832 -73.9700467 2015-05-08 07:15:00 obsr2277801 S23313176 Historical P62 EBIRD 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299576640 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-25 14:15:00 obsr327318 S22070851 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307491791 2021-03-19 16:32:34.732091 27380 species avibase-E53FC25C Swainson's Thrush Catharus ustulatus 5 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-04 16:20:00 obsr152435 S22683231 Traveling P22 EBIRD 21.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305852701 2021-11-09 17:44:58.165123 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 4 United States US New York US-NY Dutchess US-NY-027 13.0 Feeder/yard observations L1072689 P 41.8611874 -73.6756039 2015-03-24 07:00:00 obsr1917973 S22560594 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309935066 2015-04-14 09:10:56 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Conners Road at Dead Creek L2751604 P 43.126342 -76.377239 2015-04-14 07:35:00 obsr2172593 S22857445 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308895492 2021-03-23 17:26:08.495143 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-10 09:45:00 obsr2505956 S22786847 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310618478 2021-03-26 08:14:57.071052 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Westchester US-NY-119 US-NY_871 30.0 Ward Pound Ridge Reservation L746022 H 41.2455683 -73.5888076 2015-04-17 07:35:00 obsr1336375 S22904980 Traveling P22 EBIRD 50.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321176238 2021-04-01 10:58:47.067498 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Genesee US-NY-037 13.0 barie-ctr rd L3656714 P 42.9509048 -78.134903 2015-05-17 11:35:00 obsr393804 S23529507 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305577553 2021-03-24 20:11:57.676649 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 8 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-26 08:32:00 obsr2262082 S22539975 Stationary P21 EBIRD 70.0 2.0 1 G1194042 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291533884 2021-03-26 07:52:59.845315 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-17 07:23:00 obsr1000124 S21388128 Area P23 EBIRD 60.0 2.59 2.0 1 G1114848 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291109359 2017-04-15 20:22:12 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-H L3289015 P 40.16753 -73.15285 2015-01-11 15:00:00 obsr598381 S21353772 Traveling P22 EBIRD 60.0 33.523 44.0 1 G1108341 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298187313 2021-03-26 06:12:17.833181 32128 species avibase-3647E146 Vesper Sparrow Pooecetes gramineus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-02-16 10:00:00 obsr1224512 S21954937 Stationary P21 EBIRD 50.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292028812 2021-11-09 18:56:49.988387 26109 species avibase-BAC33609 Brown Creeper Certhia americana N 3 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies L428335 H 41.7861111 -73.7397222 2015-01-19 15:00:00 obsr1835267 S21426393 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309168161 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-08 09:15:00 obsr2277801 S22805323 Historical P62 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307745911 2021-03-26 07:56:20.588749 279 species avibase-3E04020B Brant Branta bernicla 15 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-05 08:15:00 obsr1348614 S22700824 Traveling P22 EBIRD 150.0 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305788225 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-28 11:30:00 obsr934639 S22555948 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332418542 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-17 17:57:00 obsr334398 S24313858 Stationary P21 EBIRD 62.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309392946 2021-04-01 11:15:31.646886 681 species avibase-407E2CA8 Common Merganser Mergus merganser N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 10:30:00 obsr1077730 S22819722 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304264653 2021-04-01 10:47:08.851048 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-20 17:13:00 obsr1764243 S22439937 Traveling P22 EBIRD 62.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309556488 2021-03-19 16:27:31.421791 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Genesee US-NY-037 13.0 Darien Lakes SP L634562 H 42.9084744 -78.4283924 2015-04-12 08:30:00 obsr48167 S22830263 Traveling P22 EBIRD 75.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308017435 2021-03-30 19:29:33.633096 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Water Mill L133482 T 40.905899 -72.36203 2015-04-04 15:40:00 obsr1987335 S22720338 Stationary P21 EBIRD 7.0 4.0 0 G1208141 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310154441 2015-04-15 07:13:44 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-04-15 06:30:00 obsr879105 S22872793 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302413651 2019-07-23 17:27:53 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-11 07:29:00 obsr1764243 S22295132 Traveling P22 EBIRD 28.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314861303 2021-03-19 16:44:35.607263 11371 species avibase-75600969 Northern Flicker Colaptes auratus 12 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-02 08:23:00 obsr1097423 S23175212 Traveling P22 EBIRD 62.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313754973 2021-11-09 20:43:00.316736 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 3 United States US New York US-NY Putnam US-NY-079 28.0 Middle Branch Reservoir L3564281 P 41.4073779 -73.6389649 2015-04-28 07:30:00 obsr1458092 S23106907 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289662474 2021-03-26 06:55:00.227271 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi N 6 United States US New York US-NY Ontario US-NY-069 13.0 US-NY-2042 Buffalo St L2199976 P 42.886609 -77.092533 2015-01-07 07:35:00 obsr354090 S21237032 Stationary P21 EBIRD 143.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310011458 2021-04-01 11:54:40.172593 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N X United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-14 15:20:00 obsr1958124 S22862727 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302421443 2018-08-04 16:59:18 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-03-11 09:29:00 obsr1165633 S22295805 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312737181 2021-11-09 22:45:58.618335 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 1 United States US New York US-NY Sullivan US-NY-105 28.0 Callicoon L376989 T 41.76729 -75.05631 2015-04-25 06:50:00 obsr2219590 S23044335 Stationary P21 EBIRD 40.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310289055 2018-08-04 17:09:06 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Oneida US-NY-065 13.0 8741 Maple Flats Rd., Cleveland, NY. 13042 L3215241 P 43.2874926 -75.8489975 2015-04-14 08:00:00 obsr1248598 S22881813 Stationary P21 EBIRD 495.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300968627 2015-03-04 20:53:49 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 10 United States US New York US-NY Kings US-NY-047 Erie Basin Park, IKEA (Brooklyn) L2656131 H 40.6711639 -74.0129375 2015-03-01 12:00:00 obsr790510 S22176826 Stationary P21 EBIRD 120.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312299066 2020-07-20 09:16:51 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-23 07:16:00 obsr2224244 S23013450 Traveling P22 EBIRD 99.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299115752 2021-12-03 21:50:44.732892 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-02-21 11:55:00 obsr1032565 S22035691 Traveling P22 EBIRD 115.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313467896 2018-08-04 17:12:31 20829 species avibase-B9B272F4 Common Raven Corvus corax X United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-04-27 09:25:00 obsr1165633 S23088892 Traveling P22 EBIRD 59.0 1.368 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310393583 2022-02-04 06:14:13.892644 5922 species avibase-06B9BD24 Sanderling Calidris alba 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-03-31 07:00:00 obsr2395127 S22889240 Traveling P22 EBIRD 120.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291192596 2021-03-26 08:14:57.071052 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 3 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-01-15 12:20:00 obsr1932005 S21360306 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320607166 2018-08-04 17:27:49 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Tonawanda WMA--Meadville Rd. L152121 H 43.1145 -78.4563 2015-05-17 14:49:00 obsr749440 S23495439 Traveling P22 EBIRD 25.0 1.287 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309336756 2021-03-23 17:21:37.486392 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Fulton US-NY-035 13.0 johnstown cemetery L1202581 P 43.0097625 -74.3680859 2015-04-12 09:20:00 obsr2590001 S22816323 Traveling P22 EBIRD 30.0 1.609 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310097523 2021-04-01 11:54:40.172593 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-04-14 18:00:00 obsr1958124 S22868945 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319214491 2021-03-24 21:01:50.671145 303 species avibase-B59E1863 Canada Goose Branta canadensis N 3 United States US New York US-NY Nassau US-NY-059 30.0 Lynbrook L3091077 P 40.6511413 -73.6801529 2015-05-12 16:30:00 obsr358492 S23419134 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298732342 2020-04-01 12:07:19 622 species avibase-50566E50 Lesser Scaup Aythya affinis 50 United States US New York US-NY Yates US-NY-123 13.0 Seneca Lake, Dresden L822742 H 42.6848448 -76.9500983 2015-02-21 11:08:00 obsr2871406 S22002507 Traveling P22 EBIRD 6.0 0.161 2.0 1 G1155119 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300490154 2021-03-26 07:56:20.588749 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Nassau US-NY-059 30.0 N 2nd St. L2585098 P 40.738664 -73.6975363 2015-03-02 08:00:00 obsr143739 S22140912 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312259428 2020-02-27 09:31:34 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 411 Warren Rd. L5045106 P 42.4682762 -76.4646808 2015-04-23 08:50:00 obsr1042912 S23010943 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293374005 2021-04-01 12:18:57.910168 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-01-26 12:17:00 obsr1092576 S21552239 Stationary P21 EBIRD 22.0 5.0 1 G1124687 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298622703 2019-07-23 17:27:24 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Westchester US-NY-119 28.0 Charles Point, Peekskill L651242 H 41.2780121 -73.9418079 2015-02-20 17:08:00 obsr1732267 S21992612 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313678474 2021-03-26 06:12:17.833181 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-25 17:30:00 obsr2937317 S23101958 Traveling P22 EBIRD 90.0 2.414 3.0 1 G1240633 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS295071695 2021-03-26 07:53:57.664705 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N 3 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-02-05 16:47:00 obsr1060479 S21689345 Traveling P22 EBIRD 58.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316053419 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-05 06:11:00 obsr2321296 S23240709 Traveling P22 EBIRD 260.0 3.54 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316909551 2021-03-24 19:48:44.880783 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Monroe US-NY-055 13.0 Mt. Hope Cemetery L249453 H 43.1287817 -77.6206675 2015-05-07 08:00:00 obsr2504709 S23289712 Traveling P22 EBIRD 90.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309023233 2021-03-24 20:20:25.430732 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Schenectady US-NY-093 13.0 Clark's Park L2280260 P 42.8639335 -73.9690161 2015-04-05 15:58:00 obsr2893884 S22796087 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297930327 2021-03-30 19:43:32.881136 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 2 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-16 15:00:00 obsr2343626 S21933191 Stationary P21 EBIRD 15.0 2.0 1 G1150446 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318756064 2015-05-11 20:12:44 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 15 United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-05-11 18:07:00 obsr967916 S23392442 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301778474 2018-08-04 16:59:04 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 4 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--Golf Course L507417 H 40.6235296 -73.2860184 2015-03-08 13:30:00 obsr247620 S22239834 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300895368 2021-12-19 10:32:19.574298 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris 2 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-03-04 10:15:00 obsr660214 S22171366 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322403346 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 20 United States US New York US-NY New York US-NY-061 Randalls Island--NE fields and shoreline L1785381 H 40.7943072 -73.9138235 2015-05-23 10:25:00 obsr1548221 S23604220 Traveling P22 EBIRD 155.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316227164 2015-05-05 19:32:08 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-05-05 00:05:00 obsr259298 S23251160 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310505268 2021-11-09 21:29:07.641878 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Ulster US-NY-111 13.0 Weston Rd. New Paltz NY L1369650 P 41.7886503 -74.0243076 2015-04-16 08:05:00 obsr1917973 S22897128 Stationary P21 EBIRD 70.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300114499 2021-11-09 19:56:29.393767 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Orange US-NY-071 28.0 My spot L3350343 P 41.2308311 -74.3717122 2015-02-28 06:55:00 obsr1603513 S22113270 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308476345 2021-03-23 17:23:45.772216 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 10 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake L728231 P 42.7335064 -77.7231216 2015-04-08 12:05:00 obsr72341 S22755242 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313358812 2021-11-15 03:06:58.889978 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-26 09:30:00 obsr2938039 S23081613 Traveling P22 EBIRD 135.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301814884 2021-03-26 07:30:35.289997 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-08 08:30:00 obsr241086 S22242622 Stationary P21 EBIRD 45.0 11.0 1 G1170861 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311342884 2021-04-01 12:32:15.282601 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-19 14:30:00 obsr2207991 S22950382 Traveling P22 EBIRD 120.0 3.219 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322499656 2021-03-24 19:24:40.212356 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Canadaway Creek WMA L2266749 H 42.367272 -79.2358312 2015-05-24 08:41:00 obsr2497657 S23609566 Traveling P22 EBIRD 111.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289868744 2021-03-26 06:07:45.516082 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-05 10:03:00 obsr128156 S21253200 Traveling P22 EBIRD 25.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301352039 2021-03-26 06:15:05.840405 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Cortland US-NY-023 28.0 Kellogg Rd & Loope Rd L2713047 H 42.5777486 -76.1299336 2015-03-07 09:39:00 obsr1696616 S22206480 Traveling P22 EBIRD 17.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300281121 2021-04-01 11:54:40.172593 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-01 15:00:00 obsr1958124 S22126520 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303785213 2015-03-17 21:38:26 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Monroe US-NY-055 13.0 Webster Park L164450 H 43.2575016 -77.4515302 2015-03-12 09:35:00 obsr2966702 S22402214 Traveling P22 EBIRD 80.0 1.931 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299386785 2021-04-01 11:30:42.037277 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-24 12:00:00 obsr2706811 S22056284 Traveling P22 EBIRD 120.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310074616 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus N X United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-14 12:30:00 obsr2846677 S22867303 Stationary P21 EBIRD 60.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318479448 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY New York US-NY-061 30.0 W Village Backyards and Airspace L974907 P 40.7366845 -74.0071853 2015-05-11 05:58:00 obsr128156 S23377102 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306104183 2021-03-23 17:39:28.36772 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Tioga US-NY-107 28.0 Spencer Lake Outlet & Leonard Rd. L3523760 P 42.2431333 -76.4939404 2015-03-29 11:00:00 obsr2430746 S22579208 Traveling P22 EBIRD 40.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305156872 2021-03-24 20:33:47.533911 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 50 United States US New York US-NY Tompkins US-NY-109 13.0 Freese Rd., Dryden L164468 H 42.4629085 -76.4449847 2015-03-24 17:33:00 obsr1655171 S22507329 Traveling P22 EBIRD 14.0 0.805 2.0 1 G1191726 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921186 2021-03-30 19:39:10.250398 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 44 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-04 16:00:00 obsr2218212 S22173312 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316579933 2021-03-26 07:56:20.588749 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica N X United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-06 14:15:00 obsr1488063 S23271329 Traveling P22 EBIRD 105.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288299057 2021-12-03 21:50:44.732892 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-01-01 11:00:00 obsr1535951 S21126246 Traveling P22 EBIRD 180.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522850 2021-03-23 16:39:03.255227 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 2 United States US New York US-NY Richmond US-NY-085 Oakwood Beach--tidal marshes, NW to Mill Rd. L2167041 H 40.5494903 -74.1131688 2015-04-08 10:06:00 obsr155915 S22758868 Traveling P22 EBIRD 7.0 0.322 2.0 1 G1211599 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307193653 2021-04-01 11:30:42.037277 7940 spuh avibase-CA08045E Accipiter sp. Accipiter sp. 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-03 10:30:00 obsr1135516 S22661738 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305566871 2021-03-23 17:32:20.03109 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis N 7 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-27 08:45:00 obsr2172593 S22539150 Traveling P22 EBIRD 54.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310005528 2020-05-16 18:08:13 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Otsego US-NY-077 28.0 Spring St. L1941350 P 42.4535841 -75.0682148 2015-04-14 12:45:00 obsr1452192 S22862303 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295460280 2021-03-30 19:39:10.250398 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-02-07 11:00:00 obsr2603801 S21718967 Traveling P22 EBIRD 300.0 14.484 2.0 1 G1138270 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317275618 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 09:30:00 obsr111994 S23310174 Traveling P22 EBIRD 360.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313882353 2018-08-04 17:12:39 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 9 United States US New York US-NY Chautauqua US-NY-013 13.0 College Lodge SUNY L2220962 H 42.3440743 -79.4279337 2015-04-28 17:45:00 obsr2343764 S23115075 Traveling P22 EBIRD 90.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313901298 2021-03-30 19:13:38.458673 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 260 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-04-26 08:03:00 obsr334398 S23116214 Traveling P22 EBIRD 105.0 0.418 2.0 1 G1242347 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320098415 2021-11-09 18:47:29.366198 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Dutchess US-NY-027 14.0 Harlem Valley Rail Trail-Sharon Sta. Road Section L3646878 P 41.8678843 -73.5242414 2015-05-15 08:00:00 obsr445356 S23469162 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311169659 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-19 07:05:00 obsr211892 S22939926 Traveling P22 EBIRD 115.0 3.219 2.0 1 G1755377 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307662296 2021-03-23 17:21:08.587586 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 2 United States US New York US-NY Delaware US-NY-025 28.0 Delaware River Bridge, Downsville L2424412 H 42.0746513 -74.9819514 2015-04-05 07:57:00 obsr1788273 S22695058 Traveling P22 EBIRD 12.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308942182 2015-04-10 19:32:38 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-04-10 07:18:00 obsr2426404 S22790400 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317106076 2021-11-09 18:41:49.178307 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 5 United States US New York US-NY Dutchess US-NY-027 14.0 Harlem Valley Rail Trail - Sharon Station Rd to Rt 1, Amenia, NY L3103688 P 41.8794728 -73.5208619 2015-05-08 06:05:00 obsr2175245 S23301156 Traveling P22 EBIRD 120.0 1.609 2.0 1 G1257284 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314272493 2021-03-26 06:17:19.712573 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-30 07:16:00 obsr502830 S23139321 Traveling P22 EBIRD 82.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297203871 2015-02-15 16:24:36 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Onondaga US-NY-067 13.0 862 route 11 L2227264 P 42.810894 -76.1209869 2015-02-15 15:25:00 obsr392884 S21867133 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308002848 2021-03-30 19:22:51.561415 33061 species avibase-E36325FA Prairie Warbler Setophaga discolor 17 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-06 09:45:00 obsr1135516 S22719357 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295600826 2015-02-08 16:20:49 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 6 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-02-07 07:00:00 obsr290506 S21729989 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303949692 2020-03-15 09:14:30 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo--Mirror Lake L2809120 H 42.9268351 -78.8632295 2015-03-16 07:45:00 obsr2096529 S22415154 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293593189 2021-03-26 06:39:43.334073 483 species avibase-85625D75 Mallard Anas platyrhynchos 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-27 15:44:00 obsr2493447 S21570401 Traveling P22 EBIRD 116.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309050633 2018-08-04 17:08:26 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 2 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 thacher marsh L2786248 P 42.64246 -74.01607 2015-04-11 07:45:00 obsr777630 S22797888 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311811272 2021-03-26 07:46:52.994574 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-18 13:30:00 obsr192397 S22981353 Traveling P22 EBIRD 240.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310735539 2017-08-16 17:05:12 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2737378 P 42.7558333 -78.8616667 2015-04-17 11:15:00 obsr436899 S22912492 Stationary P21 EBIRD 225.0 4.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304560960 2021-03-23 16:39:03.255227 6201 species avibase-64F4DD81 Razorbill Alca torda 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-22 07:18:00 obsr1958124 S22461888 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294350925 2021-03-24 20:33:47.533911 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail L1498729 H 42.4795201 -76.4551642 2015-01-31 14:20:00 obsr1262885 S21630135 Traveling P22 EBIRD 65.0 1.207 81.0 1 G1130610 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288552364 2021-04-01 12:32:15.282601 7429 species avibase-1327AC55 Osprey Pandion haliaetus 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-01-02 08:00:00 obsr547602 S21147153 Traveling P22 EBIRD 105.0 2.414 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311638076 2021-04-01 10:58:47.067498 6189 species avibase-39F29B55 Common Murre Uria aalge 35 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-04-19 09:25:00 obsr1104059 S22969892 Area P23 EBIRD 90.0 121.4057 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321885925 2021-04-01 10:55:39.308231 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-10 07:30:00 obsr2155111 S23573317 Traveling P22 EBIRD 330.0 2.414 15.0 1 G1282906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309926519 2015-05-07 17:07:25 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-14 07:03:00 obsr455249 S22856789 Traveling P22 EBIRD 21.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310228835 2021-03-24 20:49:01.185993 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Washington US-NY-115 13.0 Bradley Beach, Ft. Edward L2477571 H 43.266989 -73.5908235 2015-04-15 07:48:00 obsr1222746 S22877721 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310612476 2021-03-26 08:14:57.071052 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 2 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-04-17 08:00:00 obsr258431 S22904538 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314862187 2015-05-02 10:15:27 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--South Meadow Trail L591205 H 43.0076599 -77.5658798 2015-05-02 09:17:00 obsr1097423 S23175259 Traveling P22 EBIRD 40.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309700944 2015-09-22 15:33:45 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 10 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF--Reed Marsh L1349275 H 40.5177631 -74.2204088 2015-04-13 11:18:00 obsr1958124 S22840434 Rusty Blackbird Spring Migration Blitz P41 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316245174 2021-12-27 20:39:04.096623 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-05-05 09:30:00 obsr479109 S23252236 Traveling P22 EBIRD 100.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315453187 2021-04-01 12:32:15.282601 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-01 12:15:00 obsr87415 S23207015 Traveling P22 EBIRD 20.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287482 2021-03-23 16:39:03.255227 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 100 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-01 07:30:00 obsr1893950 S21125180 Traveling P22 EBIRD 7.0 0.048 2.0 1 G1088925 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302925282 2021-03-23 17:39:28.36772 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Tioga US-NY-107 28.0 US-NY-Spencer-48 Liberty St L3485706 P 42.215891 -76.49635 2015-03-13 17:11:00 obsr1092576 S22334318 Traveling P22 EBIRD 7.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313856733 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-28 08:45:00 obsr10066 S23113362 Traveling P22 EBIRD 120.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS456269341 2021-04-01 12:12:56.033907 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 1 Male, Adult (1) United States US New York US-NY Steuben US-NY-101 28.0 Robie Street, Bath L1985415 P 42.3437961 -77.3205543 2015-04-26 08:12:00 obsr677629 S33598120 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294735431 2021-03-26 07:07:10.758746 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 5 United States US New York US-NY Richmond US-NY-085 30.0 Tottenville High School L884731 P 40.5282185 -74.1924763 2015-02-03 11:15:00 obsr1958124 S21660470 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313788828 2020-06-20 20:01:51 6616 species avibase-7E022378 Common Loon Gavia immer 3 United States US New York US-NY Chenango US-NY-017 US-NY_2780 28.0 Long Pond SF--Rt. 41 fishing access L3074026 H 42.422518 -75.851062 2015-04-28 08:00:00 obsr1303581 S23109022 Stationary P21 EBIRD 43.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300922123 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-03-04 15:08:00 obsr1154 S22173355 Traveling P22 EBIRD 48.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309865203 2018-08-04 17:08:53 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-12 13:15:00 obsr711169 S22852376 Stationary P21 EBIRD 10.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314387715 2018-08-04 17:13:06 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-04-30 07:45:00 obsr473055 S23145957 Traveling P22 EBIRD 180.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314356934 2015-04-30 13:40:25 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Powerline Cut L1477502 H 42.4801543 -76.4473029 2015-04-30 12:55:00 obsr1092576 S23143941 Traveling P22 EBIRD 10.0 0.08 2.0 1 G1244269 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305557803 2021-03-30 19:29:33.633096 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Upper Mills Dam L389904 P 40.9142261 -72.687521 2015-03-10 10:20:00 obsr395994 S22538373 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314322755 2018-08-04 17:13:07 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-30 08:04:00 obsr34822 S23142026 Traveling P22 EBIRD 43.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314472417 2015-04-30 21:12:19 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Arrowwood Dr. trails L306973 H 42.4787045 -76.4623654 2015-04-30 20:27:00 obsr2683910 S23151605 Stationary P21 EBIRD 2.0 2.0 1 G1244701 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319593564 2016-09-09 14:19:02 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Elmira-57-75 NY-225 L3642939 P 42.08248 -76.865255 2015-05-14 14:51:00 obsr2430746 S23440836 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312898417 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis N 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-25 14:15:00 obsr2072398 S23053876 Traveling P22 EBIRD 45.0 2.414 2.0 1 G1235501 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321434912 2021-03-19 16:54:27.713469 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-05-20 06:45:00 obsr286403 S23545356 Traveling P22 EBIRD 135.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288969332 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-02 07:35:00 obsr259298 S21182432 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320572426 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-17 05:26:00 obsr150865 S23493588 Traveling P22 EBIRD 257.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309110301 2021-03-26 06:39:43.334073 7429 species avibase-1327AC55 Osprey Pandion haliaetus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-04-11 09:30:00 obsr1223279 S22801509 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306478444 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-31 07:00:00 obsr2706811 S22608152 Traveling P22 EBIRD 120.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290858529 2019-07-23 17:26:57 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 8 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay - channel by Coast Guard Station L3290239 P 43.2736484 -76.9738197 2015-01-13 12:15:00 obsr983655 S21333310 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314501617 2021-03-01 11:20:54.007808 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-30 19:15:00 obsr2260025 S23153408 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310687454 2021-03-26 07:30:35.289997 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Beebe Lake/Mundy Wildflower Garden L2357812 P 42.450265 -76.473142 2015-04-17 12:25:00 obsr2137468 S22909203 Traveling P22 EBIRD 70.0 6.115 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300237433 2019-07-23 17:27:35 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-01 10:57:00 obsr1062070 S22123051 Traveling P22 EBIRD 49.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS412858913 2018-08-04 17:11:56 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-24 obsr2943723 S30293413 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313514358 2021-04-01 11:15:31.646886 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-27 09:00:00 obsr1605975 S23091719 Traveling P22 EBIRD 235.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311772553 2021-11-09 22:04:59.499979 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Ulster US-NY-111 13.0 Saugerties Lighthouse L490267 H 42.0722249 -73.9367873 2015-04-21 06:49:00 obsr118701 S22978686 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332426052 2021-04-01 11:24:19.637193 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Monroe US-NY-055 13.0 Tinker Nature Park L946685 H 43.0670694 -77.57339 2015-05-09 16:03:00 obsr334398 S24314328 Traveling P22 EBIRD 55.0 0.483 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311659201 2017-09-09 13:09:19 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 Male, Adult (1) United States US New York US-NY Tompkins US-NY-109 13.0 SSW - s. leg of West Trail (0.21km) L1364966 P 42.4772275 -76.4543913 2015-04-20 17:43:00 obsr2307843 S22971454 Traveling P22 EBIRD 5.0 0.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320145243 2021-04-01 10:58:47.067498 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-15 08:00:00 obsr736608 S23471463 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321031767 2021-04-01 12:32:15.282601 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-05-18 18:17:00 obsr870166 S23520449 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304678280 2021-11-09 18:43:18.317637 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Salt Point Spillway, Clinton, NY L3267832 P 41.8065792 -73.795917 2015-03-22 08:40:00 obsr2175245 S22470529 Stationary P21 EBIRD 3.0 2.0 1 G1188592 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305599168 2021-03-23 16:39:03.255227 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-03-27 13:04:00 obsr1958124 S22541712 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304499912 2020-09-24 20:46:35 5891 species avibase-DC3050A9 Ruddy Turnstone Arenaria interpres 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-21 19:19:00 obsr934639 S22457309 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313564307 2018-08-04 17:09:35 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-18 obsr2729089 S23094641 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312032739 2021-04-01 11:15:31.646886 7261 species avibase-86D45B8F Green Heron Butorides virescens 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-22 07:00:00 obsr41879 S22995920 Traveling P22 EBIRD 125.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308228661 2015-04-07 10:55:55 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-04-06 16:57:00 obsr1334267 S22736585 Traveling P22 EBIRD 15.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305564223 2021-03-26 07:00:33.333856 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-03-27 07:20:00 obsr676630 S22538920 Rusty Blackbird Spring Migration Blitz P41 EBIRD 50.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315384231 2021-03-19 16:02:45.308962 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Broome US-NY-007 28.0 Monkey Run Road L2237953 P 42.2195386 -75.756496 2015-05-03 09:08:00 obsr1044068 S23203341 Traveling P22 EBIRD 30.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323452514 2021-04-01 10:57:06.520339 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Essex US-NY-031 14.0 Lake Placid L3677495 P 44.2796824 -73.9808178 2015-05-27 obsr2476032 S23664384 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309449945 2021-04-01 11:43:48.927316 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Ontario US-NY-069 13.0 Muar Lake west, Canandaigua L786557 H 42.8801468 -77.2634339 2015-04-12 08:05:00 obsr983655 S22822991 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300152007 2018-08-04 16:58:23 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 50 United States US New York US-NY Seneca US-NY-099 13.0 Wyers Point and Wyers Point Rd. L285461 H 42.6736408 -76.7156979 2015-02-28 09:01:00 obsr1655171 S22116147 Traveling P22 EBIRD 9.0 2.414 2.0 1 G1162603 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296550543 2021-11-09 21:57:09.109628 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Ulster US-NY-111 28.0 Old Fort Road- Gyrfalcon hotspot L3363101 P 41.6330074 -74.2334604 2015-02-13 08:55:00 obsr769149 S21808878 Traveling P22 EBIRD 335.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311082025 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 09:05:00 obsr609516 S22934802 Traveling P22 EBIRD 210.0 4.828 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS886502081 2021-04-01 11:30:42.037277 23291 species avibase-58C502EA Barn Swallow Hirundo rustica X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 08:00:00 obsr251507 S66439180 Traveling P22 EBIRD 180.0 4.023 22.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317445909 2018-08-06 22:29:16 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area - NCAE L474355 P 43.0923966 -77.3768806 2015-05-08 13:15:00 obsr2113616 S23320526 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306531050 2021-03-30 19:39:10.250398 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-31 09:15:00 obsr247620 S22612075 Traveling P22 EBIRD 120.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310587625 2018-08-04 17:09:24 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Lewis US-NY-049 14.0 Moose river Rd. Moms Yard L747750 P 43.5828779 -75.3462982 2015-04-16 08:21:00 obsr354090 S22902797 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318359324 2021-03-26 06:29:56.44369 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-10 05:29:00 obsr2595828 S23370432 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293285564 2018-08-04 16:55:15 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Niagara US-NY-063 US-NY_1724 13.0 Niagara Falls SP--Goat Island L207766 H 43.080477 -79.0683617 2015-01-25 14:00:00 obsr2096529 S21545436 Stationary P21 EBIRD 75.0 10.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310747635 2021-03-24 20:33:47.533911 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 P C3 P United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southeast L879238 H 42.4674118 -76.4183235 2015-04-17 18:45:00 obsr1696616 S22913437 Traveling P22 EBIRD 35.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297986660 2021-03-24 20:21:40.993321 18514 issf avibase-25ACCDC0 Warbling Vireo Vireo gilvus Warbling Vireo (Eastern) Vireo gilvus gilvus 1 United States US New York US-NY Seneca US-NY-099 13.0 Cove L678244 P 42.6487254 -76.8698493 2015-02-16 obsr2731440 S21938103 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307035246 2018-08-04 17:05:03 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 7 United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L692296 H 42.8874107 -78.7166119 2015-04-02 10:00:00 obsr2149313 S22650251 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294409213 2021-03-23 17:00:13.087107 303 species avibase-B59E1863 Canada Goose Branta canadensis 40 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-01 15:40:00 obsr1655171 S21634589 Traveling P22 EBIRD 34.0 0.322 2.0 1 G1138395 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294237928 2021-03-26 06:19:47.07548 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 3 United States US New York US-NY Essex US-NY-031 13.0 The Magic Triangle L1798473 P 44.2551202 -73.3731229 2015-01-31 13:00:00 obsr877361 S21621287 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320563944 2021-11-09 18:47:29.90468 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Dutchess US-NY-027 13.0 Shunpike (RT57) from Rt44 to Rt 82 L3650369 P 41.829305 -73.7041426 2015-05-16 14:40:00 obsr2175245 S23493127 Traveling P22 EBIRD 85.0 13.679 3.0 1 G1275186 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322113387 2015-05-23 00:26:55 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 2 United States US New York US-NY Herkimer US-NY-043 13.0 Bronner Rd 1 L3577293 P 43.0806548 -74.8361421 2015-05-22 08:25:00 obsr592357 S23587678 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS359329973 2015-12-15 19:02:00 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689 2015-05-03 08:00:00 obsr998593 S26322062 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS327323115 2015-06-17 00:39:42 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Nassau US-NY-059 30.0 South Nassau L3727790 P 40.6276401 -73.7277889 2015-01-03 obsr39610 S23939218 Historical P62 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288444445 2021-03-23 16:39:03.255227 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-02 10:43:00 obsr1958124 S21137744 Traveling P22 EBIRD 8.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298711585 2021-03-26 07:46:10.228013 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Yates US-NY-123 13.0 Seneca Lake, Glenora Falls and Spit L463248 H 42.4907071 -76.9120216 2015-02-21 08:52:00 obsr2871406 S22000777 Traveling P22 EBIRD 23.0 2.092 2.0 1 G1154692 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291338857 2019-07-23 17:26:58 7261 species avibase-86D45B8F Green Heron Butorides virescens X United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Bay L594861 H 40.8629007 -72.4567223 2015-01-16 15:00:00 obsr369788 S21372403 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315647543 2019-01-07 15:35:40 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-05-04 08:20:00 obsr2497657 S23217751 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305172041 2021-04-01 11:24:19.637193 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-03-24 09:45:00 obsr1782363 S22508345 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306672231 2022-03-05 22:03:50.715584 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-31 12:00:00 obsr890053 S22623115 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313422071 2021-04-01 11:30:42.037277 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 3 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-26 17:15:00 obsr1513140 S23086117 Traveling P22 EBIRD 120.0 3.975 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307410765 2021-04-01 11:47:43.260314 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-03 12:00:00 obsr2744341 S22677766 Stationary P21 EBIRD 340.0 2.0 1 G1203977 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319499113 2021-04-01 10:57:06.520339 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-05-14 06:54:00 obsr2420101 S23435514 Traveling P22 EBIRD 102.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313040933 2021-03-23 17:15:00.080143 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 1 United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP, Sodus L712218 H 43.2673188 -77.0297813 2015-04-25 08:07:00 obsr1569772 S23062566 Traveling P22 EBIRD 135.0 1.931 13.0 1 G1235657 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304803307 2022-02-17 14:32:23.002448 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-22 15:00:00 obsr2180607 S22479654 Traveling P22 EBIRD 120.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309923651 2018-08-04 17:08:59 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 08:02:00 obsr2700277 S22856608 Stationary P21 EBIRD 540.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297131102 2021-03-23 17:22:05.708166 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-02-15 07:45:00 obsr2694889 S21860500 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293723854 2016-09-12 10:27:59 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-24 10:30:00 obsr2475075 S21580335 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309113868 2019-10-25 16:17:25 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY St. Lawrence US-NY-089 US-NY_775 13.0 US-NY-Canton-2927-2989 NY-68 L3525580 P 44.611665 -75.230577 2015-04-11 14:27:00 obsr2398160 S22801737 Stationary P21 EBIRD 10.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300109686 2021-03-30 19:03:54.667077 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 42 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-02-28 10:44:00 obsr730231 S22112850 Traveling P22 EBIRD 51.0 0.483 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS333666794 2021-03-19 16:27:31.421791 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Mohawk Pool L3816606 P 43.1186217 -78.4204102 2015-04-18 19:45:00 obsr2155111 S24406093 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309340585 2018-08-04 17:08:48 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 13.0 Hamlin - Martin Road L787717 P 43.3450822 -77.876637 2015-04-12 10:23:00 obsr2595828 S22816581 Stationary P21 EBIRD 14.0 2.0 1 G1216807 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288793988 2021-04-01 12:32:15.282601 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--West Bath House L807105 H 40.5936046 -73.5142422 2015-01-03 07:20:00 obsr2505956 S21166606 Traveling P22 EBIRD 240.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295578066 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 11 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-08 13:15:00 obsr1488063 S21728224 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290213787 2021-03-26 07:20:31.408164 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-01-07 07:00:00 obsr1592950 S21281334 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295588026 2021-04-01 11:30:42.037277 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-08 09:26:00 obsr642993 S21728991 Traveling P22 EBIRD 159.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315912226 2021-04-01 11:15:31.646886 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 16:15:00 obsr1659461 S23232210 Traveling P22 EBIRD 120.0 3.219 2.0 1 G1252110 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312890351 2021-04-01 11:30:42.037277 1796 species avibase-018B3169 Horned Grebe Podiceps auritus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-04-25 14:40:00 obsr585997 S23053435 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290232353 2020-12-04 16:09:20.801568 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park -- East Lodge. L3282356 P 43.0346271 -77.5603223 2015-01-10 14:30:00 obsr934639 S21282918 Traveling P22 EBIRD 50.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323646853 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 24 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-05-28 10:20:00 obsr606571 S23683188 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298613860 2021-04-01 12:14:19.266649 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Suffolk US-NY-103 30.0 40.8017x-72.6201 - Feb 20, 2015, 3:25 PM L3403087 P 40.801682 -72.620102 2015-02-20 15:23:00 obsr613775 S21992046 Traveling P22 EBIRD 83.0 14.967 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317362188 2021-03-26 07:52:59.845315 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-08 06:43:00 obsr316199 S23315031 Area P23 EBIRD 210.0 2.59 2.0 1 G1258297 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310911410 2018-08-04 17:09:44 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 3 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-18 11:44:00 obsr800690 S22923945 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301807749 2021-03-26 08:13:27.160698 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 4 United States US New York US-NY Tioga US-NY-107 28.0 Cannon Hole (Barton Landing) L3319362 H 42.0246104 -76.4646721 2015-03-08 09:39:00 obsr2173269 S22242030 Traveling P22 EBIRD 28.0 0.483 2.0 1 G1170841 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318500414 2021-03-26 07:46:52.994574 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-11 07:26:00 obsr2214649 S23378295 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312311220 2021-03-26 06:39:43.334073 6189 species avibase-39F29B55 Common Murre Uria aalge X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-15 06:11:00 obsr150865 S23014259 Traveling P22 EBIRD 151.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288676047 2021-04-01 11:15:31.646886 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Kings US-NY-047 30.0 US-NY-105-135 Ocean Pkwy L3260172 P 40.647047 -73.974213 2015-01-03 07:00:00 obsr644027 S21156882 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298198117 2021-03-26 07:20:31.408164 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-02-02 07:00:00 obsr1592950 S21955917 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321424718 2021-03-22 08:58:29.008072 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-20 07:07:00 obsr2313260 S23544670 Traveling P22 EBIRD 137.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311924924 2016-08-07 13:01:41 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Westchester US-NY-119 30.0 Angle Fly Preserve L1184284 H 41.2947905 -73.7167871 2015-04-21 16:45:00 obsr858943 S22988678 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291783258 2021-03-30 19:13:38.458673 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 20 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-18 12:30:00 obsr1243175 S21407325 Traveling P22 EBIRD 60.0 0.483 2.0 1 G1114465 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305107394 2021-05-21 00:06:20.034424 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Richmond US-NY-085 Mt. Loretto Unique Area L293510 H 40.5072899 -74.2180324 2015-02-08 13:30:00 obsr2783268 S22503468 Traveling P22 EBIRD 120.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308731856 2021-04-01 11:47:43.260314 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 15 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-09 09:30:00 obsr1633923 S22775132 Stationary P21 EBIRD 540.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316937317 2021-03-30 06:01:28.020715 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-07 16:20:00 obsr749440 S23291457 Traveling P22 EBIRD 38.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311528446 2021-03-26 07:46:52.994574 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-20 07:06:00 obsr1165633 S22961953 Traveling P22 EBIRD 146.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313646513 2021-03-30 19:13:38.458673 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Burger Park L390594 H 43.3099074 -77.7326596 2015-04-27 10:50:00 obsr2504709 S23099901 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320319338 2021-11-09 18:44:30.376878 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Dutchess US-NY-027 28.0 Berkshire Rd., Dover L3408350 H 41.6906482 -73.5582539 2015-05-16 07:43:00 obsr1732267 S23480303 Traveling P22 EBIRD 137.0 4.828 2.0 1 G1277161 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299533142 2019-07-23 17:27:28 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Seneca US-NY-099 13.0 Wyers Point and Wyers Point Rd. L285461 H 42.6736408 -76.7156979 2015-02-24 16:45:00 obsr1376641 S22067437 Traveling P22 EBIRD 65.0 3.219 3.0 1 G1159501 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318325078 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-09 09:06:00 obsr1548221 S23368490 Traveling P22 EBIRD 53.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300047410 2021-03-26 07:07:10.758746 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 15 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-02-28 09:25:00 obsr1958124 S22107260 Traveling P22 EBIRD 30.0 0.805 2.0 1 G1161952 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300488089 2015-03-02 09:50:45 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 13 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-03-02 09:39:00 obsr2485753 S22140800 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290449762 2021-04-01 12:35:52.669792 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Onondaga US-NY-067 13.0 Baldwinsville Towns: VanBuren+Lysander L1862452 P 43.1391142 -76.3621294 2015-01-10 09:00:00 obsr1947877 S21300439 Traveling P22 EBIRD 75.0 48.28 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313425850 2018-12-27 13:19:22 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Mulholland Wildflower Preserve L124514 H 42.431675 -76.48283 2015-04-25 09:56:00 obsr2211210 S23086389 Traveling P22 EBIRD 26.0 0.483 2.0 1 G1239003 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319825464 2021-11-09 18:22:29.372367 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 6 United States US New York US-NY Dutchess US-NY-027 13.0 River paddle L1487368 P 42.0469932 -73.927686 2015-05-15 07:45:00 obsr671490 S23454287 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298709412 2021-04-01 11:49:53.573686 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus N 8 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-02-21 07:26:00 obsr2574755 S22000570 Traveling P22 EBIRD 98.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311791110 2019-03-04 17:55:09 6616 species avibase-7E022378 Common Loon Gavia immer 2 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-21 08:30:00 obsr1918430 S22979848 Traveling P22 EBIRD 15.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289902980 2021-03-26 07:20:31.408164 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L524556 P 40.8382297 -72.6210022 2015-01-08 14:30:00 obsr2692002 S21256158 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299728351 2018-08-04 16:56:25 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 10 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-14 08:03:00 obsr140280 S22082264 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309576786 2021-03-26 06:21:54.883933 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Kings US-NY-047 30.0 DH L487342 P 40.6123918 -74.0094442 2015-04-12 08:00:00 obsr1189028 S22831610 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305838947 2021-03-26 06:12:17.833181 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 12 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-28 15:52:00 obsr2497657 S22559647 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315432645 2021-03-26 06:29:56.44369 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 13.0 10 Parkview Drive yard birds L690404 P 43.1565179 -77.5146952 2015-05-03 17:50:00 obsr2817239 S23205891 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294184216 2021-04-01 12:32:15.282601 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-31 08:00:00 obsr352522 S21616876 Traveling P22 EBIRD 150.0 4.828 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310896487 2021-04-01 10:51:06.899622 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-04-18 10:35:00 obsr2497657 S22923089 Traveling P22 EBIRD 101.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323278127 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-22 16:30:00 obsr1382841 S23658019 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317334668 2021-04-01 11:30:42.037277 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 16:00:00 obsr609516 S23313494 Traveling P22 EBIRD 31.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322843779 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-19 11:22:00 obsr2718776 S23629913 Traveling P22 EBIRD 33.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292954761 2021-04-01 11:24:19.637193 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-01-24 11:30:00 obsr2939916 S21519709 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310751270 2021-03-26 06:55:00.227271 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 S C2 S United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-17 19:16:00 obsr606693 S22913656 Traveling P22 EBIRD 10.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315968689 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 12:00:00 obsr2729716 S23235442 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309028081 2021-03-26 06:55:00.227271 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-04-10 obsr1338126 S22796404 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300363257 2019-07-23 17:27:35 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-01 09:10:00 obsr620377 S22132729 Traveling P22 EBIRD 130.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311582639 2021-03-26 07:42:06.558742 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 2 United States US New York US-NY Washington US-NY-115 13.0 New Swamp Rd. L3805899 H 43.3275378 -73.5075903 2015-04-20 10:03:00 obsr1222746 S22965552 Traveling P22 EBIRD 37.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318022611 2021-03-26 06:29:56.44369 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-10 07:50:00 obsr195244 S23352586 Traveling P22 EBIRD 104.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311239802 2021-03-23 16:48:08.60516 3169 species avibase-0CF12F81 Yellow-billed Cuckoo Coccyzus americanus N 2 United States US New York US-NY Seneca US-NY-099 13.0 East Varick pullout L3575348 P 42.775748 -76.769552 2015-04-19 12:24:00 obsr887540 S22944112 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309927582 2021-03-23 16:30:20.514143 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 223 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 10:49:00 obsr1696616 S22856860 Stationary P21 EBIRD 299.0 5.0 1 G1218628 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293943191 2021-03-26 06:29:56.44369 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 10 United States US New York US-NY Monroe US-NY-055 13.0 stakeout Yellow-headed Blackbird, Jeffords Rd., Rush (2015) L3304693 H 43.00988 -77.62134 2015-01-29 13:27:00 obsr528918 S21597746 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS362500495 2021-03-23 17:17:06.468947 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Wyoming US-NY-121 28.0 2700 Centerline Road, Varysburg L11026787 P 42.736555 -78.3020117 2015-03-08 08:00:00 obsr2888451 S26582571 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315223213 2021-11-09 18:34:29.37445 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Dutchess US-NY-027 13.0 Dutchess Rail Trail--Lake Walton L2605402 H 41.5916805 -73.8271787 2015-05-03 07:30:00 obsr2452484 S23195131 Traveling P22 EBIRD 100.0 2.414 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300889688 2021-11-09 20:12:16.773384 526 species avibase-56CCA717 Northern Pintail Anas acuta N 1 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-03-04 11:51:00 obsr1912104 S22171014 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311228075 2018-08-04 17:11:14 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Oneida US-NY-065 13.0 Verona, Verona Beach State Park L3557734 P 43.17773 -75.73251 2015-04-19 10:18:00 obsr1640315 S22943429 Traveling P22 EBIRD 88.0 4.023 1.0 1 G1225983 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305792746 2021-04-01 12:14:19.266649 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-28 12:05:00 obsr613775 S22556266 Rusty Blackbird Spring Migration Blitz P41 EBIRD 74.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309754543 2021-04-01 11:15:31.646886 23291 species avibase-58C502EA Barn Swallow Hirundo rustica X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-13 08:30:00 obsr2729716 S22844797 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310756512 2021-03-26 06:39:43.334073 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 obsr2277801 S22913973 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291853317 2021-03-22 09:17:32.016297 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 1 United States US New York US-NY Oneida US-NY-065 13.0 Whitestown L210157 P 43.17351 -75.4187135 2015-01-16 obsr1384380 S21412627 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307109250 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 40 United States US New York US-NY New York US-NY-061 30.0 J. Hood Wright Park L3511956 H 40.8464415 -73.9414896 2015-04-03 08:30:00 obsr200707 S22655869 Traveling P22 EBIRD 15.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317646838 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-09 15:59:00 obsr2493447 S23332224 Traveling P22 EBIRD 30.0 0.998 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288465139 2022-01-09 18:48:43.534861 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N 15 United States US New York US-NY New York US-NY-061 30.0 Greenwich Village (14th St.-Houston St.; Broadway-Hudson River) L3238737 H 40.7342063 -74.0027145 2015-01-01 08:23:00 obsr1868191 S21139640 Traveling P22 EBIRD 133.0 1.609 3.0 1 G4460192 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304106717 2018-08-04 17:02:01 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Onondaga US-NY-067 28.0 Tully Lakes L1129390 P 42.79011 -76.1278725 2015-03-19 16:14:00 obsr1178949 S22427494 Traveling P22 EBIRD 69.0 8.1 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302062382 2015-03-09 18:37:40 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 15 United States US New York US-NY Broome US-NY-007 28.0 Broome County, NY L1544184 P 42.0487899 -75.9357929 2015-03-09 08:45:00 obsr1044068 S22261202 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303093088 2018-08-04 16:59:06 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 12 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Unity Island (aka Squaw Is.)--North End L2036486 H 42.9321075 -78.9062977 2015-03-08 15:30:00 obsr1043007 S22347866 Stationary P21 EBIRD 90.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289646096 2015-01-07 10:11:04 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 17 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Dam Pond L137721 P 41.1336632 -72.3326111 2015-01-07 09:37:00 obsr2485753 S21235888 Traveling P22 EBIRD 33.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313594615 2020-05-16 18:13:45 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Otsego US-NY-077 13.0 US-NY-Cassville-10076-10128 US-20 L3595893 P 42.87747 -75.217279 2015-04-27 17:47:00 obsr1181085 S23096661 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307918789 2021-03-26 07:07:10.758746 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-06 06:54:00 obsr1958124 S22713653 Traveling P22 EBIRD 6.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294374124 2018-08-04 16:55:35 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 50 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-02-01 13:42:00 obsr1092576 S21631836 Traveling P22 EBIRD 24.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309481520 2022-02-17 14:32:23.002448 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-12 14:15:00 obsr454647 S22825062 Traveling P22 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298092105 2022-02-17 14:32:23.002448 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-17 12:30:00 obsr2448957 S21947238 Traveling P22 EBIRD 270.0 4.828 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS301249158 2021-03-26 07:07:10.758746 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 10 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-06 16:48:00 obsr1958124 S22197591 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301949718 2021-04-01 11:54:40.172593 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-07 12:52:00 obsr1032565 S22252424 Traveling P22 EBIRD 93.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305281107 2021-03-19 16:02:45.308962 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Broome US-NY-007 28.0 NY, Binghamton, Choconut Center Park L1122243 P 42.1372977 -75.9415126 2015-03-25 16:28:00 obsr1764243 S22516933 Traveling P22 EBIRD 43.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288220429 2021-03-19 16:44:35.607263 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Mumford-987 George St L2570538 P 42.991844 -77.865747 2015-01-01 15:15:00 obsr749440 S21119292 Stationary P21 EBIRD 15.0 2.0 1 G1088387 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312287527 2018-08-04 17:11:51 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-23 06:28:00 obsr1222746 S23012714 Rusty Blackbird Spring Migration Blitz P41 EBIRD 101.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309626616 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-12 14:30:00 obsr2404047 S22834886 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292581251 2018-08-04 16:54:48 483 species avibase-85625D75 Mallard Anas platyrhynchos 9 United States US New York US-NY Niagara US-NY-063 US-NY_1724 13.0 Niagara Falls SP--Goat Island L207766 H 43.080477 -79.0683617 2015-01-21 09:15:00 obsr2155111 S21490301 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317766475 2021-04-01 11:15:31.646886 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 18 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:40:00 obsr463578 S23338600 Traveling P22 EBIRD 560.0 15.771 6.0 1 G1259504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305179889 2019-10-25 16:08:37 5561 species avibase-E196D6F9 Sandhill Crane Antigone canadensis 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 Remington Recreation Trail L270558 H 44.6127667 -75.1665791 2015-03-24 17:30:00 obsr2056110 S22508931 Traveling P22 EBIRD 30.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288762485 2021-03-23 17:26:08.495143 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa preserve- Walker Street L3175652 P 40.6969856 -73.4523153 2015-01-03 07:00:00 obsr547602 S21163952 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310506774 2021-04-01 11:42:15.525388 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Fort Niagara SP L210265 H 43.2638703 -79.0567981 2015-04-16 14:45:00 obsr2756208 S22897231 Traveling P22 EBIRD 28.0 0.322 3.0 1 G1222155 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309037794 2022-03-05 22:03:50.715584 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 15 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-11 07:30:00 obsr2219590 S22797061 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319123853 2021-11-13 12:47:25.390808 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-08 08:45:00 obsr1996460 S23414061 Traveling P22 EBIRD 210.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292252107 2019-07-23 17:27:08 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 2 United States US New York US-NY Suffolk US-NY-103 Lake Montauk Inlet, east side L280126 H 41.0778598 -71.9366662 2015-01-21 07:02:00 obsr613775 S21443352 Traveling P22 EBIRD 45.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318035312 2021-11-09 17:58:40.313796 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-10 06:15:00 obsr2175245 S23353219 Traveling P22 EBIRD 179.0 5.069 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320090817 2022-01-12 18:14:50.403512 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail L212481 H 44.4128015 -74.121715 2015-05-16 06:00:00 obsr1154 S23468745 Traveling P22 EBIRD 242.0 1.931 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300762031 2021-12-10 08:21:29.396662 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-03 09:44:00 obsr247625 S22161078 Traveling P22 EBIRD 116.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295316192 2021-03-26 07:00:33.333856 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-02-07 07:57:00 obsr2574755 S21707139 Traveling P22 EBIRD 22.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288203979 2021-04-01 12:45:19.712958 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Westchester US-NY-119 28.0 Home - Yorktown Hts. NY L2807062 P 41.28111 -73.811003 2015-01-01 12:00:00 obsr1034720 S21117857 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313088589 2021-11-09 18:24:59.618229 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Dutchess US-NY-027 13.0 Clinton Nature Trail L1639228 H 41.8844174 -73.8038808 2015-04-26 09:37:00 obsr2175245 S23065467 Traveling P22 EBIRD 66.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318698707 2021-11-09 18:36:27.898762 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-04-25 09:00:00 obsr2786327 S23389016 Traveling P22 EBIRD 180.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001566 2021-03-26 07:56:20.588749 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis N 15 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-27 09:00:00 obsr2218212 S23775940 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324095869 2021-04-01 11:30:42.037277 7732 species avibase-A091D50A Northern Harrier Circus hudsonius N 23 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Harlem Meer L278127 H 40.7971185 -73.9523133 2015-05-25 16:25:00 obsr1548221 S23713987 Traveling P22 EBIRD 42.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304363590 2021-12-24 11:05:53.916238 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Round Pond & Outlet, Greece L139794 H 43.2748148 -77.6451323 2015-03-21 10:43:00 obsr1696616 S22447284 Traveling P22 EBIRD 24.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309780549 2021-03-23 17:14:01.933181 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 5 Unknown Sex and Age (1); Female, Adult (1); Male, Adult (3) United States US New York US-NY Washington US-NY-115 13.0 Feeder Canal Trail--Towpath Ln, Kingsbury, NY L2590408 P 43.2927432 -73.5600543 2015-04-13 06:49:00 obsr1222746 S22846459 Rusty Blackbird Spring Migration Blitz P41 EBIRD 71.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319952081 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 07:45:00 obsr1055148 S23460913 Traveling P22 EBIRD 450.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310291871 2021-04-01 10:47:08.851048 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N 6 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-15 18:22:00 obsr1764243 S22882004 Traveling P22 EBIRD 40.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300249340 2021-03-30 19:37:33.521815 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Wayne US-NY-117 port bay L1364860 P 43.2987273 -76.8331716 2015-03-01 11:37:00 obsr1721609 S22124013 Traveling P22 EBIRD 42.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315638188 2021-03-22 08:58:29.008072 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-04 06:17:00 obsr431494 S23217214 Traveling P22 EBIRD 77.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309060191 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 16 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-11 07:20:00 obsr1135516 S22798475 Traveling P22 EBIRD 260.0 4.828 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS302519947 2021-12-10 08:21:29.396662 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-11 12:00:00 obsr1045989 S22303225 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310880321 2021-03-24 19:20:44.053843 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 1 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-04-18 09:20:00 obsr800690 S22922078 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296733862 2021-11-09 22:04:47.967972 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-13 09:30:00 obsr271871 S21825467 Traveling P22 EBIRD 360.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322269555 2021-03-19 16:29:59.503892 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 4 United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum L467369 H 44.0669903 -75.7229233 2015-05-23 07:00:00 obsr724731 S23596396 Traveling P22 EBIRD 330.0 40.234 17.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317581380 2021-11-15 03:06:58.889978 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-09 08:35:00 obsr2277801 S23328743 Historical P62 EBIRD 205.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304619573 2015-04-14 22:56:24 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 10 United States US New York US-NY Kings US-NY-047 Coney Island Pier L518788 H 40.5696241 -73.9833203 2015-03-22 12:36:00 obsr2404047 S22466068 Stationary P21 EBIRD 22.0 2.0 1 G1190096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310837157 2021-03-24 20:33:47.533911 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Tompkins US-NY-109 28.0 Websterk Home L1084526 P 42.4154016 -76.3545191 2015-01-11 14:40:00 obsr2261732 S22919202 Traveling P22 EBIRD 20.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294965190 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 12 United States US New York US-NY Kings US-NY-047 Coney Island Beach--35th St. Overlook L1373631 H 40.5717813 -74.0006958 2015-02-04 12:10:00 obsr454647 S21679717 Traveling P22 EBIRD 60.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301786966 2015-03-10 15:45:32 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Kings US-NY-047 Manhattan Beach Park L852391 H 40.5762169 -73.9441681 2015-03-08 13:00:00 obsr1135516 S22240476 Traveling P22 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304441392 2018-08-04 17:02:20 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 13.0 43.3503x-77.9234 - Mar 21, 2015, 2:56 PM L3503661 P 43.350344 -77.923419 2015-03-21 14:30:00 obsr991026 S22452890 Stationary P21 EBIRD 65.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318396862 2021-04-01 11:30:42.037277 616 species avibase-25C94A8F Greater Scaup Aythya marila 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-10 15:00:00 obsr2078092 S23372475 Traveling P22 EBIRD 270.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310430995 2021-09-03 19:22:31.034431 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-04-16 12:32:00 obsr2497657 S22891662 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295721511 2021-04-01 12:45:19.712958 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-08 13:15:00 obsr599682 S21739301 Stationary P21 EBIRD 60.0 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309780558 2021-03-23 17:14:01.933181 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Washington US-NY-115 13.0 Feeder Canal Trail--Towpath Ln, Kingsbury, NY L2590408 P 43.2927432 -73.5600543 2015-04-13 06:49:00 obsr1222746 S22846459 Rusty Blackbird Spring Migration Blitz P41 EBIRD 71.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308514438 2021-04-01 11:30:42.037277 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-08 07:00:00 obsr1220115 S22758276 Traveling P22 EBIRD 120.0 2.414 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291603259 2015-01-18 06:18:40 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-01-17 01:42:00 obsr1472872 S21393329 Traveling P22 EBIRD 86.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313988190 2021-11-15 03:06:58.889978 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 05:55:00 obsr1135516 S23121771 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289475074 2017-01-02 17:56:08 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Colonial Springs Golf Club (private) L1847450 H 40.7445934 -73.3891588 2015-01-06 11:15:00 obsr2555972 S21222078 Stationary P21 EBIRD 15.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS289073523 2015-01-04 15:53:22 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Montgomery US-NY-057 13.0 Verbraska ave., Montgomery Co., N.Y. L3103804 P 42.930725 -74.2067671 2015-01-04 13:15:00 obsr2590001 S21190658 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322246798 2021-04-01 10:58:47.067498 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 2 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-23 07:52:00 obsr2588479 S23595135 Traveling P22 EBIRD 239.0 3.219 2.0 1 G1285749 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310378585 2016-01-10 13:57:01 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 7 United States US New York US-NY Essex US-NY-031 13.0 Maple Meadows L4115608 P 44.0422008 -73.4797356 2015-04-16 06:10:00 obsr2769235 S22888149 Traveling P22 EBIRD 45.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS503645853 2021-04-01 11:30:42.037277 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-29 obsr203546 S37084005 Incidental P20 EBIRD 4.0 0 G2440873 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290207400 2021-03-24 20:23:39.258075 5155 species avibase-4880DC55 Virginia Rail Rallus limicola 5 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-01-10 14:32:00 obsr2485753 S21280738 Stationary P21 EBIRD 38.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324084399 2022-02-17 14:32:23.002448 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-30 14:00:00 obsr1063023 S23713262 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322086398 2021-04-01 11:30:42.037277 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-22 08:00:00 obsr2303233 S23586002 Traveling P22 EBIRD 225.0 4.828 7.0 1 G1284770 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303229561 2021-03-24 20:33:47.533911 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-03-15 09:00:00 obsr59643 S22358325 Traveling P22 EBIRD 95.0 1.207 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314293707 2021-11-09 19:55:29.587179 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 5 United States US New York US-NY Orange US-NY-071 28.0 Six and a Half Station Rd. Sanctuary L306143 H 41.4025242 -74.3499176 2015-04-30 08:14:00 obsr1568163 S23140679 Traveling P22 EBIRD 125.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322242167 2018-08-06 22:30:57 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 North Marsh L1471146 P 43.1268851 -78.3203682 2015-05-23 13:44:00 obsr2588479 S23594895 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318866384 2021-03-23 17:21:37.486392 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Fulton US-NY-035 13.0 Cline Rd., marsh (west) L3151886 H 43.0689349 -74.6717227 2015-05-11 05:43:00 obsr2694889 S23399120 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301701277 2021-03-26 06:39:43.334073 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-08 09:45:00 obsr2313260 S22232791 Traveling P22 EBIRD 180.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315136325 2015-05-02 22:39:16 5976 species avibase-F4829920 American Woodcock Scolopax minor 4 United States US New York US-NY Greene US-NY-039 13.0 south mountain palenville L3533498 P 42.1933333 -74.026486 2015-05-02 07:00:00 obsr594889 S23190076 Stationary P21 EBIRD 750.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300427336 2021-04-26 04:57:02.963704 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 287 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-01 06:08:00 obsr924076 S22136932 Traveling P22 EBIRD 319.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309238060 2021-11-09 21:50:48.44865 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-11 14:00:00 obsr1588136 S22810024 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312208265 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 26 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-22 08:32:00 obsr1548221 S23007524 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302929880 2021-03-23 16:52:36.900075 18514 issf avibase-25ACCDC0 Warbling Vireo Vireo gilvus Warbling Vireo (Eastern) Vireo gilvus gilvus 14 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Heckscher SP, East Islip L547888 H 40.7129149 -73.1650615 2015-03-12 15:45:00 obsr2406624 S22334841 Traveling P22 EBIRD 15.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307461328 2021-03-19 16:19:20.977326 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 10 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Rich Marine L1366985 H 42.9392357 -78.9087525 2015-04-04 09:00:00 obsr2537615 S22681077 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316851505 2015-05-07 12:37:05 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 4 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-07 09:15:00 obsr1534851 S23286566 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322673016 2018-08-04 17:30:10 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-05-24 10:25:00 obsr528918 S23619429 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302230479 2021-03-23 16:21:52.613913 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Ontario US-NY-069 13.0 **US-NY-ONT Manchester--CR 19 X Freshour Rd., Shortsville [Clifton Springs_CW] L1111756 P 42.953046 -77.2107983 2015-03-10 09:40:00 obsr606693 S22276158 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306727402 2021-03-24 20:33:47.533911 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 8 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-04-01 12:47:00 obsr2211210 S22627308 Traveling P22 EBIRD 43.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307875125 2015-04-05 22:26:41 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia X United States US New York US-NY Cayuga US-NY-011 13.0 NY:CAY:Aurelius: NYS-90 #6459, .2mi N/ V of Cayuga L3542064 P 42.9301687 -76.7266998 2015-04-05 12:13:00 obsr2760150 S22710095 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310149899 2018-08-04 17:09:05 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 7 United States US New York US-NY Oswego US-NY-075 US-NY_768 13.0 Three Mile Bay WMA--Phillips Pt. L298675 H 43.2392316 -76.0503864 2015-04-14 06:05:00 obsr979921 S22872440 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307847699 2015-04-06 17:11:47 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-05 11:45:00 obsr479109 S22708184 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291678490 2021-12-12 12:33:03.162684 20829 species avibase-B9B272F4 Common Raven Corvus corax 40 United States US New York US-NY Nassau US-NY-059 30.0 CSH Fishing Pier L3300958 P 40.8657599 -73.4625625 2015-01-18 09:05:00 obsr2423982 S21399234 Stationary P21 EBIRD 7.0 2.0 1 G1113880 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296834304 2021-11-09 21:57:08.59724 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 1 United States US New York US-NY Ulster US-NY-111 28.0 Lippincott Rd, Wallkill, NY L3353603 P 41.612671 -74.188651 2015-02-11 12:14:00 obsr440420 S21834366 Incidental P20 EBIRD 3.0 0 G1144504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300104326 2022-02-17 14:32:23.002448 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-28 13:00:00 obsr1605975 S22112356 Traveling P22 EBIRD 125.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309464462 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris 50 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-12 10:15:00 obsr2505956 S22823913 Rusty Blackbird Spring Migration Blitz P41 EBIRD 150.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289109313 2019-07-23 17:26:42 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Suffolk US-NY-103 New London to Orient Point Ferry (NY water) L1373227 P 41.2342763 -72.171365 2015-01-03 08:43:00 obsr1137025 S21193551 Traveling P22 EBIRD 123.0 22.531 9.0 1 G1095674 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312947093 2021-11-09 20:00:49.057333 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Orange US-NY-071 US-NY_853 28.0 Sterling Forest SP--Ironwood Drive (right-of-way) L372034 H 41.234391 -74.2379055 2015-04-25 09:39:00 obsr2346161 S23056809 Traveling P22 EBIRD 47.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS327665226 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Monroe US-NY-055 13.0 Abraham Lincoln Park L444000 H 43.1862682 -77.5146433 2015-05-05 16:00:00 obsr1995798 S23966008 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305689349 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 20 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-03-22 11:00:00 obsr2319444 S22548578 Traveling P22 EBIRD 300.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309081033 2020-07-20 09:16:51 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 250 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-11 09:11:00 obsr2224244 S22799720 Rusty Blackbird Spring Migration Blitz P41 EBIRD 121.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS318158892 2021-04-01 11:30:42.037277 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 08:30:00 obsr2633969 S23359521 Traveling P22 EBIRD 300.0 6.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310910585 2018-03-28 07:13:34 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Towpath Rd. L266832 H 43.0038224 -76.7457005 2015-04-18 10:10:00 obsr204036 S22923901 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314275801 2021-03-24 20:20:25.430732 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-30 07:00:00 obsr1918430 S23139531 Traveling P22 EBIRD 65.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310842973 2021-04-01 10:49:39.496318 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-04-18 08:15:00 obsr59643 S22919616 Traveling P22 EBIRD 20.0 0.805 2.0 1 G1224758 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294475661 2021-04-26 04:57:02.963704 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 3 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-01 11:15:00 obsr2635084 S21639771 Traveling P22 EBIRD 150.0 6.437 12.0 1 G1132707 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315040512 2021-03-19 16:00:00.303051 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.8768877 -73.7898123 2015-05-02 09:30:00 obsr98313 S23184782 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300047448 2015-03-08 12:36:01 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-02-28 09:30:00 obsr1463039 S22107265 Traveling P22 EBIRD 45.0 0.805 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307270744 2017-08-16 16:58:00 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2737378 P 42.7558333 -78.8616667 2015-04-03 10:00:00 obsr436899 S22667366 Stationary P21 EBIRD 285.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289732941 2021-11-09 21:56:49.555782 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Ulster US-NY-111 28.0 JBNHS Wallkill Valley Raptors L3261415 P 41.7190555 -74.1366005 2015-01-03 08:00:00 obsr658445 S21242081 Traveling P22 EBIRD 300.0 24.14 37.0 1 G1093120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295390411 2015-02-07 16:04:51 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-800-888 Todt Hill Rd L3344329 P 40.590287 -74.111106 2015-02-07 09:12:00 obsr1958124 S21713296 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294701516 2021-11-09 19:32:09.664889 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region--Mission Land Rd. L1276461 H 41.2952799 -74.4947528 2015-02-01 11:40:00 obsr1597672 S21657572 Traveling P22 EBIRD 20.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300556038 2021-04-01 11:49:53.573686 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 8 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-03-01 12:22:00 obsr1982614 S22145980 Traveling P22 EBIRD 80.0 1.497 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291976568 2021-03-19 16:02:45.308962 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos N 30 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-01-19 06:55:00 obsr646558 S21422329 Traveling P22 EBIRD 20.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316433164 2015-05-06 09:38:37 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Jefferson US-NY-045 13.0 Eastern Parcel - Private L3615491 P 43.9955931 -76.0055208 2015-05-05 20:00:00 obsr544268 S23262626 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613057 2021-04-01 12:18:57.910168 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 4 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-01-17 09:15:00 obsr2683910 S21394114 Traveling P22 EBIRD 19.0 1.609 2.0 1 G1113283 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290367868 2021-11-09 21:30:57.730403 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Ulster US-NY-111 28.0 Mohonk Compost Dump L1412910 P 41.7899416 -74.1446192 2015-01-11 07:55:00 obsr1588136 S21293862 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319334903 2021-03-24 19:35:34.045988 1375 species avibase-4B9EEF56 Ring-necked Pheasant Phasianus colchicus 2 United States US New York US-NY Erie US-NY-029 13.0 Alden - Crittenden Rd. L586154 P 42.9165364 -78.4935379 2015-05-13 15:30:00 obsr2871264 S23425848 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307482713 2021-04-01 10:55:39.308231 447 species avibase-C235A4D7 Gadwall Mareca strepera X United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Unity Island (aka Squaw Is.) L671414 H 42.9244717 -78.9034653 2015-04-04 10:53:00 obsr319738 S22682555 Traveling P22 EBIRD 30.0 1.835 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310829777 2021-03-24 20:33:47.533911 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, Swimming Club parking lot L1164598 P 42.478924 -76.4686042 2015-04-17 18:41:00 obsr2307843 S22918715 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307920777 2018-08-04 17:05:25 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Saratoga US-NY-091 13.0 River Rd., Stillwater L503597 H 43.0191009 -73.5936989 2015-04-04 13:15:00 obsr2774749 S22713791 Traveling P22 EBIRD 10.0 4.828 4.0 1 G1207258 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307142006 2021-03-23 16:39:03.255227 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-03 11:08:00 obsr155915 S22658281 Traveling P22 EBIRD 19.0 0.322 2.0 1 G1202488 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319106868 2022-02-17 14:32:23.002448 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-12 17:15:00 obsr41879 S23413166 Traveling P22 EBIRD 50.0 2.414 2.0 1 G1270543 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309830621 2021-03-23 16:30:20.514143 303 species avibase-B59E1863 Canada Goose Branta canadensis 35 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 10:49:00 obsr2173269 S22850017 Stationary P21 EBIRD 299.0 5.0 1 G1218628 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308329070 2021-03-26 08:14:57.071052 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 9 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-06 08:40:00 obsr1198912 S22743956 Traveling P22 EBIRD 140.0 3.621 18.0 1 G1207928 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303525622 2021-03-26 07:56:20.588749 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus N 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-03-15 08:40:00 obsr676630 S22382345 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302897772 2019-07-23 17:27:56 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Suffolk US-NY-103 Cedar Beach, Town of Brookhaven L834922 H 40.9648162 -73.039813 2015-03-13 15:00:00 obsr2338506 S22332041 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289976139 2021-11-09 22:39:08.424847 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 25 United States US New York US-NY Sullivan US-NY-105 28.0 Duck Harbor Pond CBC - NY L2516210 P 41.7898387 -75.0069237 2015-01-04 14:20:00 obsr913595 S21261790 Traveling P22 EBIRD 70.0 29.612 4.0 1 G1101909 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320097233 2018-08-06 22:30:07 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-05-16 08:40:00 obsr1044068 S23469107 Traveling P22 EBIRD 55.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311331847 2021-03-30 19:29:33.633096 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 9 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-19 08:20:00 obsr1848026 S22949711 Traveling P22 EBIRD 290.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312546480 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 09:00:00 obsr2706811 S23030992 Traveling P22 EBIRD 120.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295005774 2021-04-01 11:30:42.037277 681 species avibase-407E2CA8 Common Merganser Mergus merganser 18 United States US New York US-NY New York US-NY-061 East River, Brooklyn Bridge to S.I. Ferry L3339003 H 40.7039737 -74.0059423 2015-02-05 08:38:00 obsr2179748 S21683672 Traveling P22 EBIRD 28.0 1.175 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293218748 2021-04-01 12:14:19.266649 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N X United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-01-01 14:00:00 obsr1137265 S21540403 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310671004 2021-03-19 16:08:39.161312 406 species avibase-27B2749A Wood Duck Aix sponsa X United States US New York US-NY Chautauqua US-NY-013 13.0 Saint Hyacinth Chapel and Cemetery L2057391 H 42.5051356 -79.3030071 2015-04-17 13:46:00 obsr2497657 S22908203 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306281371 2015-03-30 11:21:35 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 1 United States US New York US-NY Oneida US-NY-065 13.0 NY--Oneida County road birds L279752 P 43.2816289 -75.7120557 2015-03-28 10:30:00 obsr1167884 S22592770 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313739145 2021-04-01 11:30:42.037277 662 species avibase-FB738385 Bufflehead Bucephala albeola 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 07:00:00 obsr2706811 S23105937 Traveling P22 EBIRD 120.0 1.609 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304637128 2021-03-26 06:29:56.44369 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Manitou Beach, Ontario Blvd. L667384 H 43.3241521 -77.7162155 2015-03-21 15:53:00 obsr730231 S22467349 Stationary P21 EBIRD 8.0 2.0 1 G1188313 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305300488 2021-03-23 17:00:13.087107 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-25 07:45:00 obsr2430746 S22518396 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318112361 2018-08-04 17:15:50 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 12 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Burger Park L390594 H 43.3099074 -77.7326596 2015-05-10 10:30:00 obsr991026 S23357239 Stationary P21 EBIRD 75.0 11.0 1 G1264079 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319350759 2021-11-15 03:06:58.889978 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-12 17:30:00 obsr794187 S23426707 Traveling P22 EBIRD 90.0 2.414 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321484508 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-20 06:35:00 obsr2519357 S23548147 Traveling P22 EBIRD 205.0 3.219 2.0 1 G1280703 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299081786 2021-04-01 11:30:42.037277 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-22 09:40:00 obsr822430 S22033190 Traveling P22 EBIRD 280.0 4.828 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321212058 2021-11-09 19:06:19.384792 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 3 United States US New York US-NY Dutchess US-NY-027 14.0 Halls Corners Rd Dover L5443707 P 41.731536 -73.622108 2015-05-19 12:11:00 obsr1732267 S23531749 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322246806 2021-04-01 10:58:47.067498 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-23 07:52:00 obsr2588479 S23595135 Traveling P22 EBIRD 239.0 3.219 2.0 1 G1285749 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313583520 2021-03-26 07:20:31.408164 26109 species avibase-BAC33609 Brown Creeper Certhia americana 2 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-04-23 07:30:00 obsr1592950 S23095816 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292116179 2021-04-01 12:26:53.827486 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-20 11:50:00 obsr1154 S21433340 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320266407 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-16 09:22:00 obsr2206421 S23477532 Traveling P22 EBIRD 230.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288770203 2021-04-01 12:35:52.669792 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 9 United States US New York US-NY Onondaga US-NY-067 28.0 South Meadows Nature Area, Tully L2969412 H 42.7954794 -76.1033088 2015-01-03 08:32:00 obsr1178949 S21164615 Area P23 EBIRD 157.0 10.9 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302084672 2021-04-01 12:32:15.282601 447 species avibase-C235A4D7 Gadwall Mareca strepera 15 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-09 16:45:00 obsr647628 S22262949 Traveling P22 EBIRD 50.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303219537 2021-04-01 12:32:15.282601 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 6 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-13 10:00:00 obsr105122 S22357532 Traveling P22 EBIRD 180.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289051658 2021-11-09 00:38:34.069905 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-01-03 08:30:00 obsr1872991 S21188833 Traveling P22 EBIRD 660.0 1.609 2.0 1 G1095215 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290852655 2017-04-15 20:22:12 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 11 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-H L3289015 P 40.16753 -73.15285 2015-01-11 15:00:00 obsr1384082 S21332745 Traveling P22 EBIRD 60.0 33.523 44.0 1 G1108341 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311173711 2021-03-24 19:23:17.886063 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-04-19 07:31:00 obsr1655171 S22940172 Traveling P22 EBIRD 4.0 0.805 2.0 1 G1230108 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310154123 2021-11-09 21:19:57.847424 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus N 10 United States US New York US-NY Ulster US-NY-111 28.0 Tricor Ave L1153679 P 41.7441655 -74.0853979 2015-04-13 16:00:00 obsr2434888 S22872753 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316145057 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L785945 P 40.783661 -73.9633942 2015-05-05 07:30:00 obsr2883401 S23245574 Traveling P22 EBIRD 420.0 6.437 16.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304469282 2021-04-01 11:15:31.646886 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-21 13:30:00 obsr1659461 S22455027 Traveling P22 EBIRD 90.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921750 2021-03-26 07:56:20.588749 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-19 16:00:00 obsr2218212 S22173334 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306477329 2021-11-09 22:25:40.435451 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Ulster US-NY-111 28.0 Mohonk Mountain House L972795 H 41.768335 -74.1557837 2015-03-30 10:30:00 obsr2152799 S22608066 Traveling P22 EBIRD 240.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311019776 2018-08-04 17:09:38 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-18 08:00:00 obsr998593 S22930697 Stationary P21 EBIRD 180.0 10.0 1 G1224864 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310100760 2016-03-30 17:44:19 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-13 09:00:00 obsr1787323 S22869151 Traveling P22 EBIRD 15.0 0.805 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314911528 2021-03-30 19:07:52.958398 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula N 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-01 07:24:00 obsr2519357 S23177777 Traveling P22 EBIRD 86.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304467717 2021-03-30 19:07:52.958398 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-21 18:11:00 obsr152435 S22454906 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299754406 2021-03-30 19:43:32.881136 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 10 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-26 15:15:00 obsr114791 S22084584 Traveling P22 EBIRD 25.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304371739 2015-03-24 20:01:59 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, 212 Tareyton L252844 P 42.4724094 -76.4601243 2015-03-21 07:32:00 obsr2307843 S22447981 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309844576 2021-04-22 12:55:05.75868 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Oneida US-NY-065 13.0 Waterville Home Grounds L1257983 P 42.9688865 -75.3351134 2015-04-13 11:00:00 obsr2139704 S22850843 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296371007 2021-04-01 11:49:53.573686 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-02-13 06:38:00 obsr2574755 S21792144 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307799631 2021-11-09 21:29:33.71224 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Ulster US-NY-111 13.0 George Freer Memorial Beach L1396692 H 41.9102459 -73.9727658 2015-04-04 15:00:00 obsr1110743 S22704728 Stationary P21 EBIRD 30.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296502614 2021-03-26 07:20:31.408164 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 2 United States US New York US-NY Suffolk US-NY-103 20 Stengel Pl L1939557 P 40.8839288 -73.190918 2015-02-13 16:00:00 obsr2650890 S21804312 Stationary P21 EBIRD_PNW 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302439165 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Kings US-NY-047 Gravesend Bay, southern parking lot L1847433 H 40.5972024 -74.0049123 2015-03-11 10:58:00 obsr2001485 S22297167 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921494 2021-03-26 07:56:20.588749 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-12 16:00:00 obsr2218212 S22173324 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303730787 2021-11-09 21:57:19.948495 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Ulster US-NY-111 13.0 mountain road, home L3495151 P 41.8307683 -74.0920066 2015-03-17 13:30:00 obsr187701 S22397900 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320355110 2021-04-01 11:15:31.646886 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 10:00:00 obsr2363365 S23482095 Traveling P22 EBIRD 360.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310599750 2021-11-09 21:35:18.646328 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-16 06:30:00 obsr1110743 S22903650 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309241004 2021-03-26 06:12:17.833181 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-04-11 08:00:00 obsr479109 S22810236 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318514791 2021-04-01 11:30:42.037277 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 09:00:00 obsr1251455 S23379063 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317889202 2021-03-26 07:52:59.845315 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-09 12:50:00 obsr1000124 S23345055 Area P23 EBIRD 60.0 2.59 2.0 1 G1266723 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313904102 2021-11-09 21:01:39.975405 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Rockland US-NY-087 US-NY_853 28.0 Harriman SP--Lily Pond L2769189 H 41.2150753 -74.1133833 2015-04-28 10:15:00 obsr1121454 S23116404 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293670942 2015-01-28 08:00:19 5962 species avibase-4A3B2CFF Short-billed Dowitcher Limnodromus griseus 8 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-01-27 08:15:00 obsr1680059 S21576303 Stationary P21 EBIRD 135.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302915649 2021-03-26 06:29:56.44369 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-13 15:12:00 obsr934639 S22333510 Traveling P22 EBIRD 145.0 8.851 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291944389 2021-11-09 18:43:20.077708 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Upton Lake, off of Drake Road L3303543 P 41.8494249 -73.7507333 2015-01-17 08:32:00 obsr2175245 S21419623 Stationary P21 EBIRD 10.0 2.0 1 G1115812 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288166372 2021-03-23 16:39:03.255227 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Richmond US-NY-085 Lemon Creek Pier L673443 H 40.5108301 -74.2097712 2015-01-01 12:36:00 obsr1958124 S21114708 Stationary P21 EBIRD 10.0 2.0 1 G1088903 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298219447 2021-03-26 07:30:35.289997 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-02-17 10:00:00 obsr2137468 S21957883 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320493382 2020-03-15 09:14:53 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-17 09:00:00 obsr2149313 S23489513 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311849047 2021-11-09 18:33:29.580561 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Dutchess US-NY-027 13.0 Stony Kill Farm Environmental Ed. Ctr., Gardens Farmstead Lane, L2456011 P 41.5384452 -73.9535719 2015-04-21 11:00:00 obsr2770696 S22983831 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291566793 2021-03-26 06:21:54.883933 7127 species avibase-13E9F9B4 American Bittern Botaurus lentiginosus 1 United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-01-17 11:00:00 obsr2499879 S21390676 Stationary P21 EBIRD 20.0 3.0 1 G1112862 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311790094 2021-04-01 12:45:19.712958 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Westchester US-NY-119 30.0 Sarah Lawrence College, Yonkers L2374154 H 40.9361988 -73.843399 2015-04-21 08:34:00 obsr1348614 S22979777 Traveling P22 EBIRD 30.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299048468 2021-03-26 06:29:56.44369 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 Windelin dr pond at Erie Station Rd L3268910 P 43.0411672 -77.631197 2015-02-22 16:50:00 obsr934639 S22030183 Stationary P21 EBIRD 5.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312754484 2021-11-09 19:01:40.008558 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 25 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-04-25 06:25:00 obsr1433400 S23045496 Traveling P22 EBIRD 180.0 7.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295704545 2018-08-04 16:55:56 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Delaware US-NY-025 28.0 Stamford Wetlands L3348380 P 42.4094923 -74.6084628 2015-02-08 13:00:00 obsr2216678 S21737984 Traveling P22 EBIRD 75.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303935859 2018-08-04 17:01:55 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP L99696 H 42.5460112 -76.600422 2015-03-18 18:15:00 obsr2260025 S22414161 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305227005 2015-03-25 12:14:50 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 F C1 F United States US New York US-NY Tompkins US-NY-109 13.0 Lynn Leopold Woodlot L1085516 P 42.4815372 -76.5081024 2015-03-22 10:00:00 obsr436489 S22512654 Stationary P21 EBIRD 20.0 3.0 1 G1192056 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316198245 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 09:30:00 obsr1353449 S23248683 Traveling P22 EBIRD 180.0 4.828 2.0 1 G1253571 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303935091 2018-08-04 17:01:54 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 Male, Adult (2) United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP--Lakeshore E of Creek L633467 H 42.5451843 -76.5957087 2015-03-18 15:30:00 obsr2260025 S22414098 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310295469 2021-04-01 10:47:08.851048 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-15 14:20:00 obsr1166980 S22882233 Traveling P22 EBIRD 90.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291403025 2021-04-01 11:24:19.637193 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay L629399 H 43.2183125 -77.536869 2015-01-16 13:40:00 obsr1030861 S21377458 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301413943 2021-03-26 07:07:10.758746 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Richmond US-NY-085 30.0 Lemon Creek, bridge at Hylan Blvd. L916052 H 40.517649 -74.2011237 2015-03-07 09:40:00 obsr1893950 S22211474 Traveling P22 EBIRD 20.0 0.483 2.0 1 G1169014 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296650344 2021-08-12 17:25:07.816444 616 species avibase-25C94A8F Greater Scaup Aythya marila 8 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-14 08:20:00 obsr2741494 S21817422 Stationary P21 EBIRD 35.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309448030 2020-03-15 09:14:53 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 30 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-12 13:32:00 obsr502830 S22822879 Traveling P22 EBIRD 131.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301004211 2021-03-26 07:30:35.289997 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 5 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-03-05 06:38:00 obsr1696616 S22179373 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307687861 2021-03-31 04:01:57.961467 636 species avibase-B77377EE Common Eider Somateria mollissima 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-05 10:19:00 obsr334398 S22696763 Stationary P21 EBIRD 71.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306960307 2021-04-01 10:47:08.851048 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-02 10:16:00 obsr1472872 S22644424 Traveling P22 EBIRD 120.0 11.265 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294782593 2021-04-01 11:30:42.037277 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY New York US-NY-061 30.0 TriBeCa L3336324 P 40.7199571 -74.0089488 2015-01-13 09:00:00 obsr968874 S21664725 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307681661 2021-03-24 20:33:47.533911 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-05 06:56:00 obsr1476346 S22696337 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309921263 2021-04-01 11:24:19.637193 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-04-13 08:10:00 obsr1561508 S22856423 Traveling P22 EBIRD 60.0 0.644 2.0 1 G1219236 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305265002 2021-03-23 17:00:13.087107 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 9 United States US New York US-NY Tompkins US-NY-109 13.0 Haber Ithaca Apartment L2127426 P 42.4862687 -76.4751273 2015-03-25 15:20:00 obsr869999 S22515637 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312771821 2015-04-25 15:10:20 6339 species avibase-8535345B Herring Gull Larus argentatus 25 United States US New York US-NY Schenectady US-NY-093 13.0 Indian Meadows Park L1771870 H 42.8874561 -73.9364721 2015-04-25 07:40:00 obsr2851090 S23046529 Traveling P22 EBIRD 95.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS468753904 2022-02-18 14:36:02.174188 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Suffolk US-NY-103 Lake Montauk L4232758 P 41.0621389 -71.9211388 2015-01-25 11:40:00 obsr1987335 S34638786 Traveling P22 EBIRD 90.0 0.483 2.0 1 G1126996 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312251791 2018-02-01 15:11:46 6616 species avibase-7E022378 Common Loon Gavia immer 4 United States US New York US-NY Cortland US-NY-023 28.0 AviCor19 L3513961 H 42.56625 -76.077778 2015-04-23 08:24:00 obsr620377 S23010456 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297068033 2021-09-03 19:22:31.034431 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-02-15 09:19:00 obsr2497657 S21854717 Stationary P21 EBIRD 139.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299509811 2015-02-25 10:03:58 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca - 42.4532x-76.4797 - Feb 25, 2015, 10:02 AM L3438136 P 42.453172 -76.479732 2015-02-25 10:02:00 obsr1828453 S22065590 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310501825 2021-03-26 06:39:43.334073 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 08:20:00 obsr800463 S22896894 Traveling P22 EBIRD 160.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315476789 2021-03-19 16:44:35.607263 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-02 08:53:00 obsr334398 S23208349 Traveling P22 EBIRD 30.0 0.113 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315242489 2021-03-19 16:44:35.607263 8829 species avibase-8F123A11 Short-eared Owl Asio flammeus 11 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-03 08:25:00 obsr1097423 S23196158 Traveling P22 EBIRD 137.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315370264 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 07:21:00 obsr870166 S23202590 Traveling P22 EBIRD 217.0 3.54 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310016217 2021-04-01 12:32:15.282601 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 42 United States US New York US-NY Nassau US-NY-059 30.0 Hofstra University L639147 H 40.7145119 -73.6003128 2015-04-14 14:55:00 obsr904434 S22863041 Traveling P22 EBIRD 50.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291495723 2021-11-09 21:23:47.89824 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 7 Male, Adult (1) United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-01-17 06:18:00 obsr258431 S21385056 Stationary P21 EBIRD 102.0 10.0 1 G1112193 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289857098 2018-08-04 16:52:55 5155 species avibase-4880DC55 Virginia Rail Rallus limicola 2 United States US New York US-NY Wayne US-NY-117 13.0 Pultneyville Harbor L489590 H 43.2821007 -77.1852019 2015-01-08 12:10:00 obsr2914424 S21252282 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318184408 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-10 07:10:00 obsr41879 S23360750 Traveling P22 EBIRD 106.0 3.219 4.0 1 G1262445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294401870 2021-04-01 11:15:31.646886 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 15 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-01 09:15:00 obsr1407710 S21634021 Traveling P22 EBIRD 165.0 4.828 3.0 1 G1131708 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332426939 2021-03-24 19:48:44.880783 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-08 19:25:00 obsr334398 S24314384 Stationary P21 EBIRD 56.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316269681 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 18:00:00 obsr822430 S23253652 Traveling P22 EBIRD 95.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323593568 2018-08-06 22:31:19 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 US-NY-Salamanca - 42.1374x-78.7133 - May 28, 2015, 3:59 PM L3680046 P 42.137356 -78.713269 2015-05-28 15:59:00 obsr2588479 S23679478 Traveling P22 EBIRD 16.0 6.437 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307987410 2021-03-26 08:14:57.071052 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-04-06 10:20:00 obsr473055 S22718546 Traveling P22 EBIRD 70.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294468660 2021-04-01 11:49:53.573686 26109 species avibase-BAC33609 Brown Creeper Certhia americana N X United States US New York US-NY Queens US-NY-081 30.0 Riis Landing L2721494 H 40.5676631 -73.8842089 2015-02-01 14:30:00 obsr2796494 S21639228 Traveling P22 EBIRD 45.0 0.161 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311243198 2021-03-24 20:33:47.533911 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 1 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-04-19 12:36:00 obsr2211210 S22944363 Traveling P22 EBIRD 38.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295530383 2020-05-02 15:38:26 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 2 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-02-07 12:17:00 obsr943683 S21724600 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307721379 2015-04-05 13:57:20 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Tompkins US-NY-109 13.0 Sweedler-Lick Brook FLLT Preserve--Lower Section L2208025 H 42.39852 -76.543529 2015-04-05 09:45:00 obsr887558 S22698892 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299022061 2021-03-26 06:39:43.334073 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-22 15:00:00 obsr2448505 S22026012 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310750019 2021-04-01 11:15:31.646886 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Kings US-NY-047 30.0 23rd Street Backyards L3367258 P 40.6582107 -73.9907473 2015-04-17 17:36:00 obsr839844 S22913565 Stationary P21 EBIRD 104.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309317836 2021-03-19 16:14:11.035882 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Cortland US-NY-023 28.0 Daisy Hollow Rd. wet meadows L2976557 H 42.4879855 -76.2249148 2015-04-12 06:24:00 obsr1318356 S22815176 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310927633 2021-09-28 07:19:21.859968 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 2 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. E woods, SE swamp, PRIVATE (3176D) [Clifton Springs_NE] L1117697 P 42.9941601 -77.1554019 2015-04-18 12:06:00 obsr606693 S22924878 Traveling P22 EBIRD 37.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312932053 2021-03-19 16:02:45.308962 7429 species avibase-1327AC55 Osprey Pandion haliaetus 3 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-04-25 16:30:00 obsr290506 S23055868 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310454267 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 12:00:00 obsr2706811 S22893179 Traveling P22 EBIRD 60.0 1.609 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311110939 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 1 United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-04-12 08:30:00 obsr405772 S22936573 Stationary P21 EBIRD 210.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313087946 2021-03-19 16:19:20.977326 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-26 07:33:00 obsr1603345 S23065434 Traveling P22 EBIRD 201.0 2.575 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308529053 2022-03-05 22:03:50.715584 27402 spuh avibase-DE0D7D24 Catharus sp. Catharus sp. 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-08 15:30:00 obsr444155 S22759416 Traveling P22 EBIRD 120.0 6.437 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299818908 2016-02-19 21:18:56 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 Male, Adult (1) United States US New York US-NY Onondaga US-NY-067 13.0 Home, Thatchwood Dr., Manlius L1789277 P 43.008956 -76.0102533 2015-02-23 12:05:00 obsr724731 S22089553 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307381664 2021-03-23 17:32:20.03109 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 25 United States US New York US-NY Onondaga US-NY-067 13.0 No. 2 Rd W and Pompey Center Rd, Manlius L3537091 P 42.9549777 -75.9586573 2015-04-04 09:25:00 obsr724731 S22675586 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307194412 2021-11-09 18:45:57.893778 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Dutchess US-NY-027 13.0 Mill Pond L3535052 P 42.0121879 -73.8725424 2015-04-02 14:15:00 obsr481595 S22661774 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314270686 2021-03-24 21:08:40.363932 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Otsego US-NY-077 28.0 207 Stoller Hill Rd L3359197 P 42.7034192 -75.0299799 2015-04-30 07:39:00 obsr131845 S23139203 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305154407 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-03-24 14:00:00 obsr2078092 S22507178 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289923584 2021-04-01 12:18:57.910168 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: NYS-13A: 615: nr fish ladder + taxi depot L3096418 P 42.4270787 -76.5226614 2015-01-02 15:28:00 obsr2760150 S21257771 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308173418 2021-03-26 06:55:00.227271 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 1 United States US New York US-NY Ontario US-NY-069 13.0 Shortsville Rd. X Payne Rd., Farmington L800361 H 42.9615545 -77.3038334 2015-04-06 12:09:00 obsr528918 S22732430 Traveling P22 EBIRD 5.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301610494 2021-03-24 20:33:47.533911 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Tompkins US-NY-109 13.0 105 Eastern Heights Dr., Ithaca L2724192 P 42.425089 -76.455526 2015-03-08 07:54:00 obsr1318356 S22225729 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS925740785 2021-04-01 11:30:42.037277 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 obsr1012618 S69260019 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291447101 2015-01-17 13:33:03 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Suffolk US-NY-103 30.0 Wickham Creek L1375775 P 41.0069423 -72.4759349 2015-01-17 13:10:00 obsr2485753 S21381157 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308197713 2021-04-01 11:49:53.573686 483 species avibase-85625D75 Mallard Anas platyrhynchos N 4 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-04-07 07:21:00 obsr2574755 S22734197 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290410944 2021-09-19 18:52:22.654948 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 6 United States US New York US-NY New York US-NY-061 The Battery, Manhattan L288752 H 40.7035452 -74.0159751 2015-01-11 12:03:00 obsr2184966 S21297334 Traveling P22 EBIRD 47.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295856555 2021-03-26 06:29:56.44369 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica N 12 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-09 15:20:00 obsr934639 S21749621 Traveling P22 EBIRD 50.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314128984 2021-03-23 17:26:08.495143 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Nassau US-NY-059 30.0 Hofstra University L639147 H 40.7145119 -73.6003128 2015-04-29 14:00:00 obsr1200152 S23130229 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302863844 2021-04-26 04:57:02.963704 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-13 09:10:00 obsr1605975 S22329427 Traveling P22 EBIRD 160.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS464812650 2017-02-11 09:50:36 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 33 United States US New York US-NY Tompkins US-NY-109 13.0 NY - east loop from Monkey Run North L5172526 P 42.4711048 -76.4232159 2015-01-01 13:15:00 obsr1708417 S34293017 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311416471 2020-04-08 08:35:21 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Allegany US-NY-003 28.0 Beaver Lake—Alma Pond L3164747 H 42.0151331 -77.9956126 2015-04-19 14:25:00 obsr2700440 S22955016 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316185004 2021-04-01 12:32:15.282601 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-05 06:30:00 obsr916370 S23247849 Traveling P22 EBIRD 140.0 4.989 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319447728 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-13 17:15:00 obsr2277801 S23432288 Historical P62 EBIRD 135.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289242457 2021-03-26 08:11:28.0353 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 26 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Stillwater, NY 52 county route 76 L1926398 P 42.933103 -73.680332 2015-01-05 08:32:00 obsr2564462 S21203506 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316719267 2021-03-26 06:39:43.334073 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-06 08:13:00 obsr1548221 S23279253 Traveling P22 EBIRD 68.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293520887 2019-07-23 17:27:12 26890 species avibase-94A44032 European Starling Sturnus vulgaris 40 United States US New York US-NY Suffolk US-NY-103 30.0 Napeague L1082529 T 41.0095 -72.06812 2015-01-25 14:30:00 obsr564905 S21564562 Traveling P22 EBIRD 85.0 3.219 2.0 1 G1128212 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301628556 2021-03-26 06:21:54.883933 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-03-08 10:08:00 obsr454647 S22227151 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324165245 2021-11-09 18:43:18.11682 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA--North Bay boat launch L3260251 P 42.038887 -73.9149106 2015-05-27 06:15:00 obsr2228949 S23718585 Traveling P22 EBIRD 75.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316183469 2017-02-10 16:48:14 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-04-29 10:30:00 obsr2475075 S23247733 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289742701 2021-11-09 21:05:37.97996 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Rockland US-NY-087 US-NY_853 28.0 Harriman SP--Beaver Pond Campground L3275319 H 41.2326763 -74.067285 2015-01-05 07:55:00 obsr1121454 S21242891 Traveling P22 EBIRD 50.0 2.012 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326327564 2021-03-19 16:44:35.607263 483 species avibase-85625D75 Mallard Anas platyrhynchos 20 United States US New York US-NY Monroe US-NY-055 13.0 Chili, 704-800 Ballantyne Road L2875555 P 43.0726 -77.73638 2015-05-11 14:12:00 obsr745890 S23868453 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308726046 2021-11-09 18:33:58.039151 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Cobb Ridge L2517475 P 42.0382655 -73.8797092 2015-04-08 08:00:00 obsr671490 S22774682 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291242122 2021-03-26 07:07:10.758746 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-01-16 07:44:00 obsr1958124 S21364418 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322994592 2021-03-24 19:27:13.077399 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Chemung US-NY-015 28.0 Tanglewood Nature Center--Gleason Meadows L163496 H 42.10472 -76.87654 2015-05-24 10:15:00 obsr1334267 S23639530 Traveling P22 EBIRD 87.0 0.644 17.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315378721 2021-04-01 11:15:31.646886 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 06:27:00 obsr2519357 S23203074 Traveling P22 EBIRD 320.0 8.047 4.0 1 G1249270 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304871400 2021-04-01 11:49:53.573686 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 150 United States US New York US-NY Queens US-NY-081 30.0 Jacob Riis Park L247676 H 40.5688131 -73.8710548 2015-03-22 16:10:00 obsr1982614 S22484630 Traveling P22 EBIRD 65.0 0.499 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS313880819 2015-04-28 19:10:17 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Karner Barrens West L1601812 H 42.7183468 -73.870458 2015-04-28 17:41:00 obsr440908 S23114984 Traveling P22 EBIRD 88.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314182209 2015-04-29 20:35:07 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 28.0 Round Top L300892 P 42.0901971 -76.0712763 2015-04-26 11:30:00 obsr1626739 S23133521 Traveling P22 EBIRD 23.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1018226013 2021-03-26 06:17:19.712573 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea N 3 United States US New York US-NY Erie US-NY-029 13.0 Maple st L3373566 P 42.9426227 -78.684243 2015-02-14 15:00:00 obsr1427970 S76722422 Traveling P22 EBIRD 60.0 1.609 3.0 1 G5942646 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306612014 2021-03-24 21:06:05.39641 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson River Park (private) L3498350 H 43.2032416 -76.2825651 2015-03-31 16:34:00 obsr2224244 S22618671 Stationary P21 EBIRD 208.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313320981 2018-08-04 17:12:28 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Onondaga US-NY-067 US-NY_2803 13.0 Gerber Top Soil L5863675 H 43.1216289 -75.9618115 2015-04-26 16:45:00 obsr660214 S23079297 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307128735 2021-03-24 20:16:00.852773 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Richmond US-NY-085 30.0 Lemon Creek, bridge at Excelsior Ave. L1836890 H 40.5214361 -74.204794 2015-04-03 10:46:00 obsr1958124 S22657339 Traveling P22 EBIRD 2.0 0.161 2.0 1 G1202548 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308512367 2021-03-24 19:39:45.790741 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Genesee US-NY-037 13.0 6551 swamp rd byron L3449129 P 43.0860344 -78.0503082 2015-04-08 11:00:00 obsr393804 S22758121 Stationary P21 EBIRD 31.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306633313 2015-04-04 15:02:53 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 5 United States US New York US-NY Allegany US-NY-003 28.0 Lagoon Fields, Genesee River, Wellsville L3497799 P 42.113553 -77.9432774 2015-03-31 16:25:00 obsr2700440 S22620239 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311076963 2021-04-24 09:25:32.068828 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 15:36:00 obsr924076 S22934530 Traveling P22 EBIRD 231.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296827004 2021-12-10 08:21:29.396662 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 19 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-14 08:30:00 obsr114791 S21833695 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308803103 2021-04-01 11:27:18.37144 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 4 Male, Adult (2); Female, Adult (2) United States US New York US-NY Montgomery US-NY-057 13.0 Mahr Road L751041 P 42.8239875 -74.4982052 2015-04-09 12:15:00 obsr316199 S22780399 Traveling P22 EBIRD 15.0 3.38 4.0 1 G1212860 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306913258 2021-03-26 06:17:19.712573 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Buffalo and Erie Co. Naval and Military Park L3299181 H 42.8776565 -78.8792379 2015-04-02 08:30:00 obsr2071643 S22640818 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322972665 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-25 07:30:00 obsr856524 S23638192 Traveling P22 EBIRD 290.0 2.414 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323910822 2015-05-30 07:56:58 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Erie US-NY-029 13.0 Orchard Park, NY L487324 P 42.7663044 -78.7236285 2015-05-29 08:00:00 obsr1280112 S23702642 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291302288 2021-03-26 06:29:56.44369 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 35 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-16 15:20:00 obsr934639 S21369739 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311165788 2015-04-19 09:09:36 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-19 07:22:00 obsr2214649 S22939698 Traveling P22 EBIRD 68.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311600638 2021-04-01 12:24:14.132004 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris 3 United States US New York US-NY Washington US-NY-115 13.0 Easton L2821504 P 43.052407 -73.514906 2015-04-20 14:11:00 obsr648176 S22967263 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288717983 2019-07-23 17:26:40 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 Mashomack Preserve L122936 H 41.0562576 -72.2896713 2015-01-03 07:30:00 obsr613775 S21160504 Traveling P22 EBIRD 269.0 8.047 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319108871 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park--Pier 4 Beach L1115532 H 40.6965784 -73.9990045 2015-05-12 10:00:00 obsr1468815 S23413272 Stationary P21 EBIRD_NJ 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312867421 2021-04-01 11:12:52.834774 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Greene US-NY-039 13.0 Coxsackie Boat Launch L474746 H 42.3533746 -73.7957346 2015-04-25 07:45:00 obsr2855945 S23052087 Stationary P21 EBIRD 25.0 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309181234 2021-03-26 06:17:19.712573 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Buffalo and Erie Co. Naval and Military Park L3299181 H 42.8776565 -78.8792379 2015-04-11 15:50:00 obsr2071643 S22806236 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309072555 2021-04-01 11:15:31.646886 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Kings US-NY-047 Coney Island Pier L518788 H 40.5696241 -73.9833203 2015-04-11 10:40:00 obsr454647 S22799209 Stationary P21 EBIRD 100.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301850217 2021-03-30 19:40:59.354574 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-08 17:20:00 obsr324569 S22245284 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS301005808 2021-03-24 20:06:25.370375 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Ontario US-NY-069 13.0 yard - 5030 Butler Rd. L824954 P 42.8530016 -77.2913074 2015-03-05 07:20:00 obsr983655 S22179501 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292527929 2021-11-09 18:43:47.527361 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Dutchess US-NY-027 14.0 Reagan Road, Millerton NY L3308819 P 41.9043851 -73.5125685 2015-01-21 10:45:00 obsr1917973 S21486058 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312736911 2021-03-26 06:39:43.334073 27377 species avibase-5E1BED9D Bicknell's Thrush Catharus bicknelli 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-04-24 12:15:00 obsr1136524 S23044313 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312886015 2018-08-04 17:12:08 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Suffolk US-NY-103 30.0 east moriches blvd L3589897 P 40.8201263 -72.7394378 2015-04-25 09:40:00 obsr2505956 S23053212 Rusty Blackbird Spring Migration Blitz P41 EBIRD 150.0 0.161 5.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309214185 2021-03-30 19:43:32.881136 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 Male, Adult (2) United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-04-11 09:30:00 obsr2924527 S22808483 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305842071 2019-07-23 17:28:09 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 40 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-03-28 15:35:00 obsr48167 S22559872 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321484223 2021-11-09 18:47:30.139396 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 5 United States US New York US-NY Dutchess US-NY-027 28.0 US-NY-Pawling-150 Old Rte 55 L3659441 P 41.586836 -73.652992 2015-05-20 07:46:00 obsr2175245 S23548129 Traveling P22 EBIRD 217.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323162612 2021-04-01 10:49:39.496318 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia X United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Dorothy McIlroy Bird Sanctuary (FLLT) L295002 H 42.6700861 -76.2951639 2015-05-26 08:00:00 obsr2074001 S23650534 Traveling P22 EBIRD 180.0 3.219 9.0 1 G2524332 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289450557 2018-08-04 16:52:50 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 300 United States US New York US-NY Onondaga US-NY-067 13.0 Baldwinsville - Marble Island L3270432 P 43.157941 -76.327966 2015-01-06 09:15:00 obsr642516 S21219986 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295550307 2015-11-28 19:02:08 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-02-08 10:30:00 obsr1801902 S21726081 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309132484 2021-04-01 11:15:31.646886 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-11 08:10:00 obsr384772 S22802891 Traveling P22 EBIRD 320.0 8.047 2.0 1 G1214489 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317662875 2021-04-01 11:30:42.037277 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:20:00 obsr1055148 S23333101 Traveling P22 EBIRD 462.0 8.047 3.0 1 G1259290 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313054749 2021-11-09 20:51:06.773494 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Rockland US-NY-087 28.0 Kakiat County Park L1023278 H 41.1461171 -74.11466 2015-04-26 07:09:00 obsr1253931 S23063425 Traveling P22 EBIRD 82.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316183475 2017-02-10 16:48:14 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-04-29 10:30:00 obsr2475075 S23247733 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309063975 2015-04-11 12:02:44 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Little Falls - South L1114999 P 43.0389088 -74.8589945 2015-04-11 09:20:00 obsr2694889 S22798682 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303346985 2021-04-01 12:14:19.266649 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree State Park L3344167 P 40.6370305 -73.2574046 2015-03-15 10:53:00 obsr1848026 S22367809 Traveling P22 EBIRD 23.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307095579 2018-08-04 17:05:01 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-02 08:15:00 obsr1102914 S22654731 Traveling P22 EBIRD 90.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320261727 2021-03-26 06:29:56.44369 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-16 07:30:00 obsr2364166 S23477297 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303607740 2018-08-04 16:53:10 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-01-11 14:00:00 obsr319738 S22388515 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314181818 2021-03-26 06:21:54.883933 483 species avibase-85625D75 Mallard Anas platyrhynchos N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-29 18:15:00 obsr1077730 S23133496 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302924885 2021-03-23 17:00:13.087107 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-13 17:23:00 obsr730231 S22334281 Traveling P22 EBIRD 40.0 0.563 2.0 1 G1178129 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300033227 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 19 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-02-28 08:40:00 obsr1189028 S22106153 Traveling P22 EBIRD 136.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316134049 2021-11-09 18:56:49.988387 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies L428335 H 41.7861111 -73.7397222 2015-05-05 08:15:00 obsr1835267 S23245045 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309974570 2021-04-07 20:48:00.643023 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-14 11:29:00 obsr354090 S22860238 Traveling P22 EBIRD 51.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322161395 2021-03-19 16:10:30.527219 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 2 United States US New York US-NY Chemung US-NY-015 28.0 Moss Hill Road (Chemung Co.) L3499863 H 42.1581843 -76.7556696 2015-05-23 09:45:00 obsr2430746 S23590674 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316435523 2015-05-06 09:44:41 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 1 United States US New York US-NY Jefferson US-NY-045 13.0 Eastern Parcel - Private L3615491 P 43.9955931 -76.0055208 2015-05-06 05:30:00 obsr544268 S23262746 Traveling P22 EBIRD 60.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308200272 2021-03-26 06:14:19.776945 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Columbia US-NY-021 14.0 Copake Lake L808952 H 42.1440725 -73.5950003 2015-04-06 13:45:00 obsr481595 S22734388 Traveling P22 EBIRD 35.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304774099 2021-03-30 19:39:10.250398 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi X United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-22 11:00:00 obsr1693806 S22477571 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304934554 2021-09-03 19:22:31.034431 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-03-23 17:06:00 obsr2497657 S22489809 Stationary P21 EBIRD 32.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292449187 2021-03-26 06:29:56.44369 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 2 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-01-20 08:15:00 obsr2759466 S21479782 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290696014 2015-01-12 15:42:25 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 40 United States US New York US-NY Ontario US-NY-069 13.0 Seneca, Number 9 Road L3288233 P 42.84467 -77.05522 2015-01-12 13:55:00 obsr1243175 S21320426 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289485290 2021-04-01 11:30:42.037277 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 1 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-06 12:40:00 obsr259298 S21222955 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302930365 2021-03-26 07:30:35.289997 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-07 09:50:00 obsr2683910 S22334878 Traveling P22 EBIRD 165.0 0.966 2.0 1 G1178141 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313987103 2021-04-01 12:18:57.910168 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-29 07:19:00 obsr1092576 S23121703 Traveling P22 EBIRD 34.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309712387 2021-11-09 19:49:09.316529 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 5 United States US New York US-NY Orange US-NY-071 28.0 Montgomery L2680387 P 41.5263147 -74.2366791 2015-04-10 13:28:00 obsr1987335 S22841186 Stationary P21 EBIRD 42.0 3.0 1 G1218113 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314411033 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY New York US-NY-061 30.0 Riverside Park at 76th st L3337330 P 40.7831248 -73.9852488 2015-04-30 10:20:00 obsr2072398 S23147390 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS318659142 2021-03-26 06:07:45.516082 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio 1 United States US New York US-NY Bronx US-NY-005 US-NY_779 30.0 Van Cortlandt Park--NW Forest L188940 H 40.904835 -73.89131 2015-05-09 11:00:00 obsr1336375 S23386790 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293703349 2021-03-26 06:21:54.883933 8099 form avibase-65613235 Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (abieticola) Buteo jamaicensis abieticola X United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-01-27 15:00:00 obsr1731572 S21578837 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291864500 2021-03-24 20:49:01.185993 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 6 United States US New York US-NY Washington US-NY-115 13.0 US-NY-Fort Edward-107 N River Rd L3300569 P 43.171761 -73.585964 2015-01-18 11:30:00 obsr471228 S21413428 Stationary P21 EBIRD 2.0 8.0 1 G1114000 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308251452 2021-11-15 03:06:58.889978 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-06 14:00:00 obsr2883401 S22738380 Stationary P21 EBIRD 30.0 2.0 1 G1209775 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304727993 2021-03-26 06:11:29.8335 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Cayuga US-NY-011 13.0 Harris Park, Cayuga L388115 H 42.917605 -76.7300177 2015-03-21 12:35:00 obsr59643 S22474238 Stationary P21 EBIRD 25.0 10.0 1 G1190042 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312637875 2021-04-01 10:51:06.899622 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis N 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-24 15:35:00 obsr749440 S23037563 Stationary P21 EBIRD 25.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288191892 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 13.0 Erie Station Village L2334326 P 43.04309 -77.66408 2015-01-01 08:03:00 obsr1097423 S21116820 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290155646 2021-03-26 06:20:37.302746 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 5 United States US New York US-NY Greene US-NY-039 13.0 Coxsackie L3271356 P 42.3184 -73.86158 2015-01-10 10:35:00 obsr1636520 S21276298 Traveling P22 EBIRD 34.0 9.656 2.0 1 G1103065 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309406064 2021-03-19 16:14:11.035882 483 species avibase-85625D75 Mallard Anas platyrhynchos 25 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Truxton-3288 E River Rd L3558055 P 42.673276 -76.059877 2015-04-12 09:53:00 obsr1318356 S22820566 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304862059 2015-05-09 11:58:16 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-03-23 11:00:00 obsr2933610 S22483908 Traveling P22 EBIRD 30.0 0.241 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289497342 2018-08-04 16:52:51 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, Steamboat Landing (Lakeshore Park) L760185 H 42.8741872 -77.2620392 2015-01-06 13:58:00 obsr1243175 S21223982 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288117962 2021-03-24 20:23:39.258075 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Suffolk US-NY-103 30.0 Farm L137715 P 41.0795555 -72.4394913 2015-01-01 09:11:00 obsr2485753 S21110667 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306853946 2015-04-01 22:51:49 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-04-01 10:42:00 obsr1334267 S22636484 Traveling P22 EBIRD 43.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306402128 2015-03-31 10:20:06 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Niagara US-NY-063 13.0 43.3673x-78.5302 - Mar 29, 2015, 10:26 AM L3523646 P 43.36729 -78.530243 2015-03-29 10:26:00 obsr2588479 S22601946 Stationary P21 EBIRD 35.0 20.0 1 G1198702 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302009673 2021-11-09 22:27:59.558644 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Sullivan US-NY-105 28.0 Wurtsboro L1061608 P 41.572435 -74.4754601 2015-03-09 09:30:00 obsr444155 S22256932 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294103413 2018-08-04 16:55:27 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 400 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP--Lakeshore E of Creek L633467 H 42.5451843 -76.5957087 2015-01-31 08:03:00 obsr2211210 S21610287 Stationary P21 EBIRD 17.0 2.0 1 G1130449 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308720393 2015-04-09 18:23:58 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge--East Pond, south end L954555 H 40.6172101 -73.8224602 2015-04-08 12:10:00 obsr1982614 S22774228 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS723055960 2019-08-11 11:09:01 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Monroe US-NY-055 13.0 Harwick Rd., Irondequoit (Varied Thrush 2015) L3592824 H 43.1740003 -77.5539672 2015-04-25 15:15:00 obsr1127016 S53709018 Stationary P21 EBIRD 60.0 2.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS304840638 2019-09-10 13:56:02 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-03-21 09:00:00 obsr2175294 S22482109 Stationary P21 EBIRD 30.0 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292938081 2021-03-26 06:21:54.883933 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 5 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-01-23 12:33:00 obsr2883698 S21518442 Traveling P22 EBIRD 35.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296109655 2015-02-11 11:29:16 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 8 United States US New York US-NY Broome US-NY-007 28.0 Oconnell Rd., Vestal L3353509 P 42.0085773 -76.0708594 2015-02-11 09:19:00 obsr998593 S21769767 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304681647 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola 15 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-03-21 12:30:00 obsr2033754 S22470744 Traveling P22 EBIRD 60.0 0.402 2.0 1 G3716442 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322655000 2021-03-26 06:29:56.44369 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-24 08:20:00 obsr2504709 S23618345 Traveling P22 EBIRD 90.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319446953 2015-05-13 22:29:05 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Erin-1091 Breesport Rd L3641681 P 42.176278 -76.695809 2015-05-13 10:37:00 obsr2430746 S23432240 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293672597 2021-03-26 07:56:20.588749 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-01-27 15:30:00 obsr676630 S21576456 Traveling P22 EBIRD 1.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290626991 2021-04-01 11:54:40.172593 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-01-08 09:00:00 obsr666331 S21314332 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313640336 2017-08-16 17:09:25 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Herkimer US-NY-043 13.0 Rt. 29 - Town of Fairfield L785356 P 43.1368174 -74.9126038 2015-04-27 08:02:00 obsr1000124 S23099515 Incidental P20 EBIRD 0 G1240347 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303879148 2018-01-07 20:13:45 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 2 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-03-18 13:48:00 obsr2420101 S22409838 Stationary P21 EBIRD 55.0 2.0 1 G1213077 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317611535 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 05:40:00 obsr1154 S23330309 Traveling P22 EBIRD 290.0 4.828 15.0 1 G1258875 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292836917 2021-03-24 20:58:53.646623 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-01-23 07:25:00 obsr72341 S21510385 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303556907 2018-08-04 17:01:34 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-03-16 10:55:00 obsr1079517 S22384700 Area P23 EBIRD 45.0 16.1874 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299514395 2021-03-26 07:20:31.408164 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-02-20 06:45:00 obsr1592950 S22066057 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304714381 2018-08-04 17:02:29 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-03-22 14:45:00 obsr2071643 S22473212 Traveling P22 EBIRD 65.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305692190 2021-03-23 17:00:13.087107 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Drake Rd., Lansing L366342 H 42.5309152 -76.5116 2015-03-24 07:41:00 obsr2683910 S22548794 Traveling P22 EBIRD 3.0 1.609 2.0 1 G1194534 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321441485 2021-04-01 10:55:39.308231 27616 species avibase-D77E4B41 American Robin Turdus migratorius 14 United States US New York US-NY Erie US-NY-029 13.0 Delaware Park--Rumsey Woods L1348448 H 42.9307931 -78.8698229 2015-05-06 08:45:00 obsr2155111 S23545818 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315363821 2021-03-19 16:02:45.308962 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-05-03 13:39:00 obsr800690 S23202249 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309464466 2021-04-01 12:32:15.282601 505 species avibase-C732CB10 American Black Duck Anas rubripes 8 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-12 10:15:00 obsr2505956 S22823913 Rusty Blackbird Spring Migration Blitz P41 EBIRD 150.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308979110 2021-03-23 17:00:13.087107 23187 species avibase-ACB9D1C6 Purple Martin Progne subis 1 F C1 F United States US New York US-NY Tompkins US-NY-109 28.0 Mount Pleasant L99402 H 42.4581378 -76.3845436 2015-04-10 18:20:00 obsr1318356 S22792893 Stationary P21 EBIRD 40.0 2.0 1 G1213909 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303684893 2022-03-05 22:03:50.715584 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 104 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-17 10:00:00 obsr444155 S22394502 Traveling P22 EBIRD 120.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310413111 2021-04-01 11:15:31.646886 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-15 17:40:00 obsr1734972 S22890493 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310188619 2021-03-24 20:33:47.533911 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 1 United States US New York US-NY Tompkins US-NY-109 13.0 Benson Rd., Lansing L352609 H 42.5321315 -76.473351 2015-04-15 07:18:00 obsr2683910 S22875223 Traveling P22 EBIRD 8.0 1.931 2.0 1 G1220636 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS335956714 2021-03-23 16:52:36.900075 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 15 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven National Laboratory (restricted access) L2808445 H 40.8710034 -72.880066 2015-04-27 06:07:00 obsr2137822 S24576712 Traveling P22 EBIRD 97.0 4.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306386097 2021-03-19 16:44:35.607263 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Monroe US-NY-055 13.0 North Ponds Park L3586927 H 43.2188554 -77.4429465 2015-03-30 18:05:00 obsr302343 S22600681 Traveling P22 EBIRD 35.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312319348 2021-04-01 11:30:42.037277 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-04-16 06:53:00 obsr1312694 S23014867 Traveling P22 EBIRD 143.0 1.609 6.0 1 G1232810 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310463812 2015-04-16 15:36:26 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-16 13:40:00 obsr1472872 S22893886 Traveling P22 EBIRD 75.0 5.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312089640 2021-03-30 19:13:38.458673 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Durand-Eastman Park--Eastman Lake L139790 H 43.2341003 -77.5615005 2015-04-22 12:25:00 obsr2504709 S22999419 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS768272195 2021-03-26 06:21:54.883933 7011 species avibase-534FB490 Northern Gannet Morus bassanus N 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-08 obsr192641 S56880493 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309036205 2021-12-08 07:58:41.562209 486 domestic avibase-07FFC1E5 Mallard (Domestic type) Anas platyrhynchos (Domestic type) 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-11 07:25:00 obsr1348614 S22796959 Traveling P22 EBIRD 93.0 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310459414 2015-04-16 15:13:28 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-16 12:20:00 obsr1472872 S22893552 Traveling P22 EBIRD 40.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314992418 2021-04-01 11:15:31.646886 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 06:25:00 obsr41879 S23182050 Traveling P22 EBIRD 413.0 8.047 4.0 1 G1247369 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319651863 2021-03-19 16:08:39.161312 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-05-14 10:15:00 obsr1380963 S23444094 Traveling P22 EBIRD 60.0 9.656 1.0 1 G1270925 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320373597 2021-03-19 16:08:39.161312 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Long Point SP, Chautauqua Lake L2138384 H 42.1732349 -79.4142671 2015-05-15 18:45:00 obsr2418 S23483059 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309503792 2021-05-21 00:06:20.034424 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 8 United States US New York US-NY Richmond US-NY-085 Mt. Loretto Unique Area L293510 H 40.5072899 -74.2180324 2015-04-12 09:05:00 obsr1407710 S22826707 Traveling P22 EBIRD 141.0 3.219 6.0 1 G1216707 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291111358 2021-04-01 11:49:53.573686 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 3 United States US New York US-NY Queens US-NY-081 30.0 Rosie's Place-243 Beach 135th Street L869966 P 40.5751026 -73.8535845 2015-01-13 11:30:00 obsr604941 S21353960 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303591917 2021-04-01 11:15:31.646886 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-16 16:15:00 obsr2448957 S22387301 Traveling P22 EBIRD 165.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS549560103 2019-04-19 13:17:53 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-05 obsr455725 S40514371 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304252385 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY Kings US-NY-047 30.0 Brooklyn L1813672 P 40.6915997 -73.9892884 2015-03-16 11:10:00 obsr1682724 S22438861 Traveling P22 EBIRD 160.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318514962 2021-03-26 06:29:56.44369 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY Monroe US-NY-055 13.0 Grandma's house L893383 P 43.1896935 -77.7725896 2015-05-10 11:12:00 obsr1991824 S23379070 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311510597 2021-03-23 17:37:19.520785 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-19 18:00:00 obsr471228 S22960759 Traveling P22 EBIRD 180.0 3.219 9.0 1 G1228516 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309842344 2021-04-01 12:35:52.669792 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 7 United States US New York US-NY Onondaga US-NY-067 13.0 onondaga Lake, west lake trail L1433527 P 43.0844676 -76.2220537 2015-04-12 13:45:00 obsr2139704 S22850718 Traveling P22 EBIRD 120.0 6.437 6.0 1 G1218891 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314076377 2021-11-15 03:06:58.889978 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-28 16:00:00 obsr585997 S23127034 Traveling P22 EBIRD 60.0 0.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316943699 2021-11-09 18:46:57.75995 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Dutchess US-NY-027 14.0 HVRT-Sharon Station Road, Amenia, NY L3605212 P 41.8791272 -73.5207438 2015-04-19 07:00:00 obsr2786327 S23291861 Traveling P22 EBIRD 210.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310790955 2021-03-26 06:29:56.44369 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 Male, Adult (2); Female, Adult (2) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-04-17 07:00:00 obsr2449897 S22916283 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294535248 2021-04-01 11:54:40.172593 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-02 09:15:00 obsr1958124 S21644572 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322774855 2022-02-17 14:32:23.002448 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-23 08:30:00 obsr943380 S23625786 Traveling P22 EBIRD 180.0 1.77 5.0 1 G1288834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292524942 2015-01-21 19:17:56 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 6 United States US New York US-NY Suffolk US-NY-103 30.0 Napeague State Park/Napeague Harbor L1079957 P 40.998557 -72.0895386 2015-01-21 13:30:00 obsr247620 S21485836 Traveling P22 EBIRD 45.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761701 2021-03-26 07:56:20.588749 32949 species avibase-15EB3000 Hooded Warbler Setophaga citrina N 8 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-21 16:00:00 obsr2218212 S22629533 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314697254 2015-10-05 20:47:44 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-01 14:10:00 obsr1830659 S23163834 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324938599 2021-03-24 19:48:44.880783 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-29 06:13:00 obsr334398 S23771526 Traveling P22 EBIRD 97.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313954117 2021-03-26 06:39:43.334073 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-04-27 18:00:00 obsr601383 S23119467 Traveling P22 EBIRD 20.0 0.402 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316997846 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 30 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Manitou Beach--Ontario Blvd. L3616098 P 43.32415 -77.71622 2015-05-05 12:10:00 obsr1624587 S23294907 Traveling P22 EBIRD 17.0 0.322 2.0 1 G1256553 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311044951 2018-08-04 17:09:44 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 4 United States US New York US-NY Richmond US-NY-085 Oakwood Beach L2501874 H 40.5533157 -74.1087484 2015-04-18 11:46:00 obsr155915 S22932307 Stationary P21 EBIRD 10.0 3.0 1 G1224793 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307604537 2018-08-04 17:05:27 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Fulton US-NY-035 13.0 School St (Mayfield Dam) L3539328 P 43.0982058 -74.2554814 2015-04-04 15:36:00 obsr1708031 S22691098 Traveling P22 EBIRD 20.0 6.437 2.0 1 G1205261 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310951813 2021-03-24 19:28:35.724717 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Clinton US-NY-019 13.0 Altona NY L3365682 P 44.8879854 -73.6539745 2015-04-18 12:00:00 obsr2949577 S22926482 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297461642 2021-03-26 06:14:10.405139 16285 species avibase-5BC4E0EF Willow Flycatcher Empidonax traillii 1 United States US New York US-NY Clinton US-NY-019 13.0 3 fiske lane, Plattsburgh, NY L3356443 P 44.7234803 -73.4181413 2015-02-15 23:12:00 obsr668215 S21889934 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308499793 2017-08-16 17:00:34 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-04-08 15:00:00 obsr2766625 S22757122 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135568 2021-03-26 07:56:20.588749 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-01 09:00:00 obsr2218212 S23589170 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300210171 2021-03-26 07:00:33.333856 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 Unknown Sex, Immature (1) United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-02-28 08:42:00 obsr1077730 S22120665 Traveling P22 EBIRD 109.0 3.0 13.0 1 G1162161 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310092362 2021-11-09 19:57:49.39749 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 20 United States US New York US-NY Orange US-NY-071 28.0 Brach's Dairy, River Rd. L3556353 P 41.53858 -74.22072 2015-04-11 10:30:00 obsr2683910 S22868567 Traveling P22 EBIRD 35.0 0.483 2.0 1 G1219967 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322868207 2017-03-09 12:18:08 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-05-25 12:25:00 obsr934639 S23631415 Traveling P22 EBIRD 38.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308219360 2021-03-26 06:29:56.44369 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 4 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-04-05 08:30:00 obsr2759466 S22735883 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309926475 2021-03-23 17:00:13.087107 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-14 06:53:00 obsr455249 S22856786 Traveling P22 EBIRD 8.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314947538 2021-04-01 11:30:42.037277 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-02 08:00:00 obsr1693806 S23179598 Traveling P22 EBIRD 220.0 6.437 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296827049 2021-04-01 12:32:15.282601 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach West End L844092 P 40.5831269 -73.5595393 2015-02-14 11:00:00 obsr2196583 S21833698 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299658016 2019-07-23 17:27:28 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Monroe US-NY-055 13.0 Slater Creek (Russell Station) L140439 H 43.2691002 -77.6264038 2015-02-24 16:50:00 obsr1534851 S22077190 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288899331 2021-04-01 11:15:31.646886 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 2 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-02 11:00:00 obsr2908667 S21176983 Traveling P22 EBIRD 60.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295471987 2021-03-24 20:33:47.533911 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-02-01 10:54:00 obsr2683910 S21719904 Traveling P22 EBIRD 23.0 0.805 2.0 1 G1138398 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316076351 2015-05-05 11:40:54 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Montgomery US-NY-057 13.0 Halcyon Farm L3550584 P 42.8903485 -74.2716906 2015-05-05 10:45:00 obsr286403 S23242000 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309087076 2015-04-11 13:18:59 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 1 United States US New York US-NY Westchester US-NY-119 28.0 Brinton Brook Sanctuary L893096 H 41.2268584 -73.8992411 2015-04-11 09:00:00 obsr572503 S22800077 Traveling P22 EBIRD 120.0 5.633 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316676661 2021-04-01 12:32:15.282601 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-06 15:30:00 obsr2207991 S23276880 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323111598 2021-03-30 19:39:10.250398 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-26 07:35:00 obsr1895507 S23647149 Traveling P22 EBIRD 195.0 3.219 2.0 1 G1291190 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320495695 2018-08-06 22:30:24 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 1 United States US New York US-NY Essex US-NY-031 13.0 US-NY-Ticonderoga-7 Mccaughin Rd L3281545 P 43.856704 -73.403107 2015-05-17 10:56:00 obsr822321 S23489654 Traveling P22 EBIRD 38.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288872626 2021-04-01 12:26:53.827486 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-01-03 09:00:00 obsr2321296 S21175084 Stationary P21 EBIRD 100.0 2.0 1 G1094763 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306857367 2021-04-01 12:18:57.910168 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-01 17:35:00 obsr620377 S22636687 Traveling P22 EBIRD 90.0 1.609 5.0 1 G1202314 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289743843 2021-11-09 21:02:40.100366 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Rockland US-NY-087 US-NY_853 28.0 Harriman SP - Lake Welch, west shore L2777639 P 41.2324374 -74.0796947 2015-01-05 10:20:00 obsr1121454 S21243007 Traveling P22 EBIRD 85.0 2.253 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305101352 2021-03-19 16:08:39.161312 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N X United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Road L3492876 P 42.4352574 -79.3776771 2015-03-24 10:20:00 obsr479109 S22503007 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307017014 2021-03-26 06:53:58.593564 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 4 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-04-02 08:10:00 obsr2812831 S22648951 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305490588 2021-03-23 17:00:13.087107 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-03-26 17:40:00 obsr1655171 S22533209 Traveling P22 EBIRD 25.0 0.483 2.0 1 G1194516 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299049537 2022-02-17 14:32:23.002448 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-22 12:40:00 obsr1668936 S22030282 Traveling P22 EBIRD 51.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299016824 2021-03-24 19:27:13.077399 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-02-22 09:45:00 obsr142874 S22025634 Stationary P21 EBIRD 375.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291898822 2021-04-01 10:52:54.724403 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 6 United States US New York US-NY Columbia US-NY-021 13.0 Mud Creek Environmental Learning Center L2793575 H 42.2806092 -73.7101454 2015-01-19 09:25:00 obsr481595 S21416053 Traveling P22 EBIRD 100.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315643964 2018-08-04 17:14:10 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-05-03 obsr1395007 S23217539 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304831858 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 57 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-23 07:00:00 obsr1135516 S22481434 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320573156 2020-03-15 09:14:53 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-17 09:13:00 obsr2071643 S23493637 Traveling P22 EBIRD 244.0 2.414 2.0 1 G1274998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293178890 2021-11-15 03:06:58.889978 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-25 13:45:00 obsr1659461 S21537249 Stationary P21 EBIRD 30.0 2.0 1 G1122803 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314854298 2021-03-30 19:07:52.958398 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 07:15:00 obsr1536880 S23174793 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308238397 2021-04-01 12:14:19.266649 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 14 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Ocean Parkway L286801 P 40.6159065 -73.402978 2015-04-07 08:20:00 obsr706483 S22737450 Traveling P22 EBIRD 180.0 11.265 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293531732 2021-03-23 17:00:13.087107 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 TCL Office, CLO L284836 P 42.480283 -76.4513227 2015-01-27 11:05:00 obsr1092576 S21565485 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305865304 2021-04-01 11:15:31.646886 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-03-28 12:25:00 obsr41879 S22561562 Traveling P22 EBIRD 110.0 2.012 11.0 1 G1195436 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291436061 2021-04-01 11:30:42.037277 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-17 11:05:00 obsr1349960 S21380275 Traveling P22 EBIRD 75.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313764045 2022-02-17 14:32:23.002448 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-28 08:22:00 obsr1605975 S23107453 Traveling P22 EBIRD 184.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305827095 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-28 14:56:00 obsr2211210 S22558770 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308100841 2015-04-06 21:36:55 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis X United States US New York US-NY Erie US-NY-029 13.0 WNY Land Conservancy Office L2058573 P 42.7636185 -78.5480404 2015-04-06 13:00:00 obsr2537615 S22720152 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314891706 2018-02-01 15:11:46 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor3 L3513944 H 42.6877445 -75.901219 2015-05-02 10:52:00 obsr620377 S23176759 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295349322 2021-04-01 10:55:39.308231 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 3 United States US New York US-NY Erie US-NY-029 13.0 Buckhorn Island SP L164983 H 43.0606218 -78.9882132 2015-02-07 08:43:00 obsr1603345 S21710150 Traveling P22 EBIRD 238.0 5.23 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303901226 2021-11-09 19:56:28.26385 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Orange US-NY-071 28.0 Sawyer's Peak L3323518 P 41.3716881 -74.3810892 2015-01-27 08:30:00 obsr186871 S22411571 Stationary P21 EBIRD 210.0 3.0 1 G1184311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318968069 2021-11-15 03:06:58.889978 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 08:30:00 obsr1460516 S23404640 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305973756 2021-03-24 20:16:00.852773 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-03-29 08:01:00 obsr1958124 S22569712 Traveling P22 EBIRD 22.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299007211 2021-03-26 07:17:57.136956 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 30 United States US New York US-NY Seneca US-NY-099 13.0 Wyers Point and Wyers Point Rd. L285461 H 42.6736408 -76.7156979 2015-02-22 13:15:00 obsr1895507 S22024792 Traveling P22 EBIRD 60.0 6.437 5.0 1 G1156312 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313054920 2021-04-01 11:49:53.573686 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 80 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-26 07:17:00 obsr2574755 S23063436 Traveling P22 EBIRD 76.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308426168 2021-03-23 17:39:28.36772 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 12 United States US New York US-NY Tioga US-NY-107 28.0 Confluence Park, Owego L2011248 H 42.0957386 -76.2724543 2015-04-08 08:09:00 obsr1318356 S22751476 Traveling P22 EBIRD 9.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305791173 2021-04-01 11:15:31.646886 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh/Marine Park L3514666 P 40.6035594 -73.9283967 2015-03-28 08:30:00 obsr827632 S22556145 Traveling P22 EBIRD 60.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307877966 2021-07-29 22:13:08.471938 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-05 obsr1220115 S22710266 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291495256 2021-03-26 07:30:35.289997 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 200 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-17 14:48:00 obsr1655171 S21385010 Stationary P21 EBIRD 51.0 2.0 1 G1113287 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288966590 2021-04-01 12:32:15.282601 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-03 08:00:00 obsr352522 S21182176 Traveling P22 EBIRD 180.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301345988 2021-04-01 12:45:19.712958 483 species avibase-85625D75 Mallard Anas platyrhynchos 12 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-03-06 08:30:00 obsr2078798 S22206020 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316035942 2021-03-19 16:19:20.977326 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-05 07:45:00 obsr2537615 S23239719 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315287119 2021-03-30 19:07:52.958398 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 10:00:00 obsr1135516 S23198400 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313909328 2015-04-28 21:00:51 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-04-28 18:50:00 obsr1708031 S23116770 Stationary P21 EBIRD 70.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288251331 2015-01-01 17:03:04 660 spuh avibase-CB56BEF1 scoter sp. Melanitta sp. 1 United States US New York US-NY Oswego US-NY-075 13.0 Rice Creek Biological Field Station L732554 H 43.4301625 -76.549509 2015-01-01 14:15:00 obsr1327990 S21121858 Traveling P22 EBIRD 10.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309680044 2015-04-13 09:58:30 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Tompkins US-NY-109 28.0 Top Forty L2766773 P 42.4800867 -76.3429749 2015-04-12 12:15:00 obsr2001485 S22839145 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299414361 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 30.0 Washington Cemetery L3352964 H 40.620573 -73.9754021 2015-02-24 07:30:00 obsr2448957 S22058259 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321181782 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-19 07:00:00 obsr1668936 S23529832 Traveling P22 EBIRD 120.0 1.609 10.0 1 G1279064 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295572020 2021-04-01 10:55:39.308231 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-02-08 12:43:00 obsr502830 S21727762 Stationary P21 EBIRD 99.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310193403 2015-04-15 22:02:30 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--tss office (CLO 193B) L515673 P 42.480385 -76.4511779 2015-04-15 11:07:00 obsr1062070 S22875504 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294334537 2015-02-01 11:11:09 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-02-01 10:55:00 obsr255324 S21628836 Stationary P21 EBIRD 10.0 1.0 1 G1131329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309374991 2021-03-24 20:21:40.993321 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Seneca US-NY-099 13.0 Cove L678244 P 42.6487254 -76.8698493 2015-04-12 12:01:00 obsr2731440 S22818672 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289440468 2021-03-24 20:58:53.646623 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-01-05 13:15:00 obsr72341 S21219021 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312774940 2021-03-30 19:07:52.958398 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 07:29:00 obsr2519357 S23046705 Traveling P22 EBIRD 263.0 3.219 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS376881216 2019-07-23 17:26:42 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 9 United States US New York US-NY Suffolk US-NY-103 30.0 Kenneys Beach L139924 P 41.0717697 -72.4556656 2015-01-03 13:43:00 obsr1214394 S27808142 Stationary P21 EBIRD 4.0 2.0 1 G1100216 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300076279 2021-11-09 21:57:18.897513 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 50 United States US New York US-NY Ulster US-NY-111 28.0 Farmer's Turnpike L3445715 P 41.6841413 -74.1633207 2015-02-08 09:30:00 obsr2326680 S22109577 Stationary P21 EBIRD 210.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307133359 2021-03-24 21:01:50.671145 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 8 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-02 10:55:00 obsr2149836 S22657637 Traveling P22 EBIRD 180.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314563854 2021-03-26 06:29:56.44369 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias N 4 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-05-01 07:00:00 obsr1245041 S23157434 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303930083 2021-03-30 19:07:52.958398 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-01 13:30:00 obsr2182516 S22413715 Traveling P22 EBIRD 70.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298405137 2021-04-01 12:14:19.266649 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 3 United States US New York US-NY Suffolk US-NY-103 30.0 Ashley Schiff Forest Preserve L2350787 H 40.9078693 -73.1207192 2015-02-19 10:17:00 obsr758734 S21973746 Traveling P22 EBIRD 19.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288546509 2021-03-26 07:53:57.664705 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis N 3 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-01-02 16:15:00 obsr1060479 S21146617 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312804098 2018-12-13 12:10:26 26890 species avibase-94A44032 European Starling Sturnus vulgaris 18 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-25 08:00:00 obsr646558 S23048582 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289481998 2021-04-01 12:18:57.910168 27616 species avibase-D77E4B41 American Robin Turdus migratorius 10 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-01-06 12:45:00 obsr1092576 S21222680 Traveling P22 EBIRD 5.0 1.609 2.0 1 G1098836 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311591162 2021-03-31 04:03:12.559076 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Queens US-NY-081 30.0 Kissena Park L491873 H 40.7462409 -73.8080852 2015-04-17 08:27:00 obsr2233270 S22966591 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311690435 2020-07-20 09:16:51 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-19 11:56:00 obsr1167884 S22973627 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318696044 2021-03-26 06:29:56.44369 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-05-11 15:10:00 obsr934639 S23388855 Traveling P22 EBIRD 52.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304513474 2021-03-26 07:07:10.758746 681 species avibase-407E2CA8 Common Merganser Mergus merganser 7 S C2 S United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-21 16:49:00 obsr1032565 S22458415 Traveling P22 EBIRD 138.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313786775 2019-05-07 15:30:03 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Stadlen and Hoyt-Pileated Trail L1498735 H 42.4777154 -76.4481604 2015-04-28 11:57:00 obsr1062070 S23108888 Traveling P22 EBIRD 68.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315377379 2021-03-19 16:44:35.607263 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 8 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-05-03 07:30:00 obsr934639 S23203009 Traveling P22 EBIRD 160.0 4.426 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309951036 2021-04-01 11:15:31.646886 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 50 United States US New York US-NY Kings US-NY-047 30.0 Sheepshead Bay L835012 H 40.582363 -73.9434105 2015-04-11 05:45:00 obsr1092576 S22858583 Traveling P22 EBIRD 25.0 1.609 2.0 1 G1222460 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313058689 2015-04-26 08:51:07 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-04-26 08:41:00 obsr2211210 S23063654 Traveling P22 EBIRD 9.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316951235 2021-03-19 16:26:51.561076 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Franklin US-NY-033 14.0 Bellmont Center L496226 P 44.8417513 -74.1741943 2015-04-29 06:15:00 obsr2507995 S23292285 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307175477 2021-11-09 00:38:34.069905 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-03-30 08:30:00 obsr2133003 S22660566 Traveling P22 EBIRD 150.0 2.414 9.0 1 G1202639 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312921633 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 16:30:00 obsr1349960 S23055227 Traveling P22 EBIRD 140.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308774034 2015-04-09 22:40:44 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Lido Beach Passive Nature Area L723695 H 40.5923663 -73.5957384 2015-04-03 10:30:00 obsr2311078 S22778249 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288260961 2021-04-01 12:18:57.910168 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 9 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Wegmans canal area L1368977 H 42.4346276 -76.5116732 2015-01-01 14:00:00 obsr620377 S21122717 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306241146 2021-03-24 20:33:47.533911 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 2 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-03-30 07:24:00 obsr2377251 S22589554 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301777254 2021-03-30 19:29:33.633096 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris 6 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Bayard Cutting Arboretum L937333 P 40.7392259 -73.1606197 2015-03-08 10:30:00 obsr247620 S22239744 Traveling P22 EBIRD 120.0 3.621 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307921254 2021-03-26 06:21:54.883933 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 30.0 Backyard L301564 P 40.5958592 -73.9460793 2015-04-05 obsr943380 S22713832 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314075903 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 10:19:00 obsr1668936 S23127006 Traveling P22 EBIRD 205.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311388190 2015-04-19 19:34:19 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Schoharie US-NY-095 13.0 Landis Arboretum L3183801 H 42.7823624 -74.2709899 2015-04-19 18:36:00 obsr2937317 S22953252 Traveling P22 EBIRD 55.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300041783 2021-04-01 10:51:06.899622 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-02-28 11:15:00 obsr1792012 S22106802 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300706311 2021-03-26 06:58:34.561206 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-03-03 09:14:00 obsr2588479 S22157071 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302431980 2021-03-24 20:33:47.533911 483 species avibase-85625D75 Mallard Anas platyrhynchos N 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, 212 Tareyton L252844 P 42.4724094 -76.4601243 2015-03-11 09:50:00 obsr2307843 S22296603 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299041281 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 1 United States US New York US-NY Kings US-NY-047 30.0 Flatbush Avenue L3408584 P 40.6280245 -73.9428377 2015-02-22 12:45:00 obsr2645443 S22028594 Traveling P22 EBIRD 30.0 12.875 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313471915 2021-03-26 07:00:33.333856 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Queens US-NY-081 30.0 59-14 Grove Street 11385 L3154048 P 40.7092 -73.903725 2015-04-27 06:30:00 obsr2691134 S23089137 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312246609 2021-11-15 03:06:58.889978 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-23 06:00:00 obsr1135516 S23010144 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293148280 2015-01-25 17:55:40 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 6 United States US New York US-NY Rensselaer US-NY-083 14.0 Breese Hollow, NY accessed from Pleasant Valley, VT L3316909 P 42.8596953 -73.2789159 2015-01-25 08:30:00 obsr1244816 S21534858 Traveling P22 EBIRD_VINS 90.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319935407 2018-08-06 22:29:57 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-05-14 18:38:00 obsr1708031 S23460037 Stationary P21 EBIRD 11.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308057520 2022-02-04 06:14:13.892644 245 species avibase-7A24F57F Ross's Goose Anser rossii X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-04-05 16:20:00 obsr2072398 S22723113 Traveling P22 EBIRD 60.0 3.219 3.0 1 G1208361 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311338593 2021-03-26 07:17:57.136956 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Towpath Rd. L266832 H 43.0038224 -76.7457005 2015-04-19 10:50:00 obsr1655171 S22950134 Traveling P22 EBIRD 74.0 3.219 2.0 1 G1230121 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301415096 2021-11-09 21:43:57.590086 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus N X United States US New York US-NY Ulster US-NY-111 28.0 Rt. 209 between Rt. 2 and Rt. 6 L2019437 P 41.8288339 -74.1863823 2015-03-07 11:45:00 obsr1482758 S22211557 Stationary P21 EBIRD 35.0 3.0 1 G1169025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322994616 2021-03-24 19:27:13.077399 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Chemung US-NY-015 28.0 Tanglewood Nature Center--Gleason Meadows L163496 H 42.10472 -76.87654 2015-05-24 10:15:00 obsr1334267 S23639530 Traveling P22 EBIRD 87.0 0.644 17.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313439763 2018-08-04 17:09:12 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-04-14 19:52:00 obsr2693145 S23087290 Traveling P22 EBIRD 30.0 0.805 2.0 1 G1239072 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295539752 2021-03-24 20:23:39.258075 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 125 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach State Park L230716 P 41.1295147 -72.2665183 2015-02-08 10:47:00 obsr2485753 S21725264 Traveling P22 EBIRD 59.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312823742 2021-03-26 07:07:10.758746 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Richmond US-NY-085 30.0 Goodhue Park L474119 H 40.6363403 -74.098134 2015-04-25 12:45:00 obsr2904420 S23049582 Traveling P22 EBIRD 40.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309943894 2021-04-01 12:10:56.762826 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 12 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-14 08:30:00 obsr1918430 S22858131 Traveling P22 EBIRD 45.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309717898 2022-03-05 22:03:50.715584 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-13 08:30:00 obsr444155 S22841511 Traveling P22 EBIRD 210.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301370473 2021-11-09 20:47:40.096315 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Putnam US-NY-079 28.0 yard list L749790 P 41.4653702 -73.6530304 2015-03-04 14:30:00 obsr159548 S22208017 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312100445 2015-04-22 15:01:13 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-04-22 07:30:00 obsr2978565 S23000136 Traveling P22 EBIRD 255.0 1.931 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306682177 2018-08-04 17:04:54 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 15 United States US New York US-NY Orleans US-NY-073 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Mohawk Pool L1456706 H 43.1304548 -78.4180601 2015-04-01 06:52:00 obsr2588479 S22623962 Traveling P22 EBIRD 18.0 4.828 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306018870 2021-03-30 19:13:38.458673 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 500 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 11:54:00 obsr2595828 S22572974 Stationary P21 EBIRD 47.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313493858 2021-03-19 16:29:59.503892 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 4 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-04-27 11:10:00 obsr1302604 S23090466 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311168572 2021-03-31 04:01:10.517395 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 07:35:00 obsr2519357 S22939851 Traveling P22 EBIRD 320.0 8.047 16.0 1 G1224971 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306165468 2021-03-30 19:13:38.458673 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 10:15:00 obsr2504709 S22583879 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316920407 2021-04-01 12:32:15.282601 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-06 09:30:00 obsr1494607 S23290428 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315019464 2017-12-21 12:25:41 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 2 United States US New York US-NY Columbia US-NY-021 13.0 Olana State Historic Site L357372 H 42.2183005 -73.8287207 2015-05-02 08:00:00 obsr349211 S23180167 Traveling P22 EBIRD 150.0 2.092 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290088594 2021-11-09 19:21:07.406501 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-01-08 14:00:00 obsr671490 S21270943 Traveling P22 EBIRD 150.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298257087 2016-09-12 10:28:00 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-02-16 11:30:00 obsr2475075 S21961145 Stationary P21 EBIRD 390.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302303766 2021-04-01 12:32:15.282601 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-08 10:00:00 obsr2152799 S22284517 Traveling P22 EBIRD 240.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314056061 2021-03-26 07:07:10.758746 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Richmond US-NY-085 30.0 Tottenville High School L884731 P 40.5282185 -74.1924763 2015-04-29 07:05:00 obsr1958124 S23125774 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307615598 2021-03-30 19:13:38.458673 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 15 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-04 11:15:00 obsr408487 S22691918 Stationary P21 EBIRD 14.0 2.0 1 G1205186 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297783992 2021-03-26 06:58:34.561206 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Orleans US-NY-073 13.0 US-NY-Medina-300 Mead Ave L2656564 P 43.22252 -78.374915 2015-02-14 08:00:00 obsr274914 S21920220 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324735326 2015-06-03 20:52:12 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 1 S C2 S United States US New York US-NY Hamilton US-NY-041 US-NY_864 14.0 Helldiver Pond, east of L3693146 P 43.67482 -74.6841 2015-05-31 09:59:00 obsr1062070 S23757025 Stationary P21 EBIRD 25.0 3.0 1 G1301420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308866557 2019-04-19 13:17:53 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 Unknown Sex, Adult (1) United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-10 12:30:00 obsr481595 S22784775 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313816272 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 07:12:00 obsr609516 S23110816 Traveling P22 EBIRD 297.0 7.242 30.0 1 G1241310 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310654870 2021-03-19 16:42:57.886401 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Lewis US-NY-049 14.0 US-NY-Lowville-7754 Ridge Rd L3546468 P 43.832416 -75.479678 2015-04-17 12:08:00 obsr417887 S22907216 Traveling P22 EBIRD 30.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315265514 2021-03-30 19:13:38.458673 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-03 10:45:00 obsr2595828 S23197356 Traveling P22 EBIRD 55.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082750 2021-03-24 19:27:13.077399 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 5 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-17 15:28:00 obsr1334267 S21430583 Traveling P22 EBIRD 18.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312018642 2018-02-01 15:11:46 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 US-NY_791 28.0 AviTom50 L3513992 H 42.3200748 -76.6707884 2015-04-22 08:26:00 obsr2625207 S22994981 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306020885 2018-08-04 17:04:35 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 7 United States US New York US-NY Oswego US-NY-075 13.0 Great Bear Recreation Area L664197 H 43.2666087 -76.3654238 2015-03-29 08:52:00 obsr2224244 S22573125 Traveling P22 EBIRD 199.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295314905 2015-02-09 14:58:47 242 species avibase-D3A260BC Snow Goose Anser caerulescens 25 United States US New York US-NY Queens US-NY-081 30.0 Jacob Riis Park L247676 H 40.5688131 -73.8710548 2015-02-07 07:05:00 obsr2574755 S21707008 Traveling P22 EBIRD 48.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308218854 2021-03-26 06:20:10.658048 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Oak Orchard WMA--Goose Pond overlook L294791 H 43.1245968 -78.2729208 2015-04-07 08:59:00 obsr2588479 S22735847 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309392949 2021-04-01 11:15:31.646886 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 10:30:00 obsr1077730 S22819722 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS352754944 2021-03-26 07:46:52.994574 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 4 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-17 06:00:00 obsr478499 S25787042 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300052664 2021-03-26 07:30:35.289997 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-02-28 10:25:00 obsr1725472 S22107698 Stationary P21 EBIRD 30.0 5.0 1 G1161713 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290268119 2021-04-01 11:24:19.637193 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-10 15:11:00 obsr745890 S21285982 Traveling P22 EBIRD 60.0 0.241 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322335348 2018-08-06 22:30:32 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 1 United States US New York US-NY Essex US-NY-031 13.0 Sugar Hill Rd power line, Crown Point, NY L3667152 P 43.937012 -73.421349 2015-05-19 07:23:00 obsr2693145 S23600131 Stationary P21 EBIRD 10.0 2.0 1 G1286333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321112232 2015-05-18 22:29:07 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-05-18 15:10:00 obsr528918 S23525064 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315500692 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-04-29 16:00:00 obsr119187 S23209705 Stationary P21 EBIRD 192.0 2.0 1 G1250009 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289647284 2015-01-07 10:20:33 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 4 United States US New York US-NY Tompkins US-NY-109 13.0 Farm Pond Circle L2080608 P 42.5383387 -76.4633042 2015-01-07 08:30:00 obsr596741 S21235997 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306349071 2021-03-23 17:26:08.495143 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-29 15:30:00 obsr1987335 S22597793 Traveling P22 EBIRD 55.0 4.828 2.0 1 G1198388 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298415760 2021-11-02 20:32:06.137153 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-02-19 12:30:00 obsr317968 S21974693 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311315291 2021-03-30 19:29:33.633096 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 6 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-19 09:15:00 obsr2534001 S22948717 Traveling P22 EBIRD 75.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298184964 2021-11-02 20:32:06.137153 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 7 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-02-17 12:30:00 obsr317968 S21954699 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319637619 2021-03-19 16:12:42.877422 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Columbia US-NY-021 14.0 Drowned Lands Swamp Conservation Area L2704928 H 42.0536902 -73.5669422 2015-05-14 07:30:00 obsr2766625 S23443339 Traveling P22 EBIRD 240.0 1.609 11.0 1 G1270783 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309164782 2021-03-26 07:20:31.408164 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Suffolk US-NY-103 30.0 US-NY-Southold-2065 Glenn Rd L3555813 P 41.047946 -72.429613 2015-04-11 13:50:00 obsr2528068 S22805088 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316021106 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 15:30:00 obsr644027 S23238869 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320367790 2018-08-04 17:27:31 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Delaware US-NY-025 28.0 Franklin Mountain, DOAS Sanctuary L305962 H 42.4263804 -75.048065 2015-05-16 09:05:00 obsr1452192 S23482746 Traveling P22 EBIRD 100.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323780320 2021-03-19 16:12:16.343114 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Clinton US-NY-019 US-NY_849 13.0 Chazy Riverlands L577352 H 44.9196891 -73.3785868 2015-05-29 09:05:00 obsr884584 S23693664 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322842394 2021-04-01 11:15:31.646886 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 11 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 07:29:00 obsr1711339 S23629831 Traveling P22 EBIRD 300.0 3.219 14.0 1 G1289314 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321405089 2021-03-23 17:22:05.708166 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Tricot Trail L2853643 P 43.0934052 -74.7768438 2015-05-17 07:00:00 obsr2694889 S23543391 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301573710 2015-03-07 22:16:02 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Suffolk US-NY-103 30.0 Yale Birds L3463072 P 40.8648927 -72.5130889 2015-02-15 04:00:00 obsr869345 S22222929 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306747227 2021-03-24 20:33:47.533911 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 2 United States US New York US-NY Tompkins US-NY-109 28.0 407 Main Street L2312996 P 42.4912094 -76.3736332 2015-04-01 12:00:00 obsr1363650 S22628650 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314248419 2018-08-04 17:13:04 456 species avibase-D201EB72 American Wigeon Mareca americana 3 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.8768877 -73.7898123 2015-04-29 18:50:00 obsr538462 S23137682 Traveling P22 EBIRD 40.0 0.91 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313645825 2021-04-01 11:15:31.646886 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 07:20:00 obsr2228257 S23099855 Traveling P22 EBIRD 297.0 7.242 29.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318011247 2021-03-23 17:21:08.587586 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Delaware US-NY-025 28.0 O & W Road (West) L2823764 P 41.996701 -75.1506257 2015-05-08 09:18:00 obsr1788273 S23351968 Traveling P22 EBIRD 32.0 3.862 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316646068 2018-08-04 17:15:03 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Chemung US-NY-015 28.0 Marsh Dam, Erin L3082963 H 42.1742578 -76.6627244 2015-05-06 16:30:00 obsr2430746 S23275179 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289235062 2021-04-01 11:42:50.317679 26109 species avibase-BAC33609 Brown Creeper Certhia americana N 12 United States US New York US-NY Oneida US-NY-065 14.0 Harden Farm L456016 P 43.319433 -75.7256699 2015-01-04 15:30:00 obsr666964 S21202966 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309475328 2019-09-29 09:48:34 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-12 09:00:00 obsr534615 S22824643 Stationary P21 EBIRD 105.0 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303009935 2021-11-09 20:59:08.238638 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 10 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-03-12 10:45:00 obsr473055 S22341205 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292920027 2015-01-24 13:48:32 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Beebe Lake L281786 H 42.4512932 -76.4767515 2015-01-23 14:31:00 obsr71667 S21517159 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307364882 2021-03-23 16:39:03.255227 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-04 08:53:00 obsr1958124 S22674387 Traveling P22 EBIRD 7.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314157512 2021-03-26 07:30:35.289997 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-27 07:54:00 obsr2683910 S23131939 Traveling P22 EBIRD 27.0 0.483 2.0 1 G1243179 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309366481 2018-08-04 17:08:25 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 2 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet, east L1867552 H 40.8427805 -72.4742851 2015-04-11 07:30:00 obsr1327990 S22818156 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323973133 2021-03-24 20:53:39.352228 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.5747387 -74.1554202 2015-05-30 07:43:00 obsr1154 S23706418 Traveling P22 EBIRD 250.0 3.219 8.0 1 G1296007 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295391508 2021-04-01 11:54:40.172593 11528 species avibase-F3DA111C Merlin Falco columbarius N 4 United States US New York US-NY Richmond US-NY-085 Arden Ave. Beach L635901 H 40.5276639 -74.1605043 2015-02-07 14:13:00 obsr1958124 S21713383 Stationary P21 EBIRD 11.0 2.0 1 G1137884 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290017553 2015-01-09 14:19:04 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Westchester US-NY-119 30.0 Valhalla L1293558 P 41.0825132 -73.8110018 2015-01-09 12:30:00 obsr1932005 S21265311 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303202100 2021-03-30 19:29:33.633096 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 2 United States US New York US-NY Suffolk US-NY-103 30.0 Lily Pond County Park L523536 H 40.8330257 -73.127482 2015-03-13 15:15:00 obsr1848026 S22356094 Traveling P22 EBIRD 60.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307548074 2021-04-01 11:49:53.573686 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-04-04 14:21:00 obsr598381 S22687107 Traveling P22 EBIRD 131.0 4.023 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317195257 2018-08-06 22:29:16 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Cortland US-NY-023 28.0 AviCor9 L3513951 H 42.73125 -76.0049915 2015-05-08 13:19:00 obsr887540 S23305703 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308673127 2022-03-05 22:03:50.715584 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-09 09:00:00 obsr662396 S22770309 Traveling P22 EBIRD 120.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317074528 2021-11-09 18:47:10.032155 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook School L3617186 P 41.8512919 -73.6182824 2015-04-29 08:00:00 obsr1339050 S23299353 Traveling P22 EBIRD 240.0 3.219 31.0 1 G1257017 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323106750 2018-08-06 22:30:48 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 8 United States US New York US-NY Essex US-NY-031 13.0 Mt. Defiance L2814714 H 43.8313207 -73.406589 2015-05-22 07:30:00 obsr265018 S23646830 Traveling P22 EBIRD 150.0 2.253 7.0 1 G1291163 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292027865 2018-08-04 16:54:02 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Suffolk US-NY-103 30.0 Tung Ting Pond, Centerport (private property) L506122 H 40.8871084 -73.3733082 2015-01-19 12:30:00 obsr350767 S21426321 Traveling P22 EBIRD 45.0 0.322 2.0 1 G1116478 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311535346 2021-03-19 16:29:59.503892 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 4 United States US New York US-NY Jefferson US-NY-045 13.0 Town of Cape Vincent L2164317 P 44.122592 -76.3323212 2015-04-18 11:30:00 obsr585290 S22962367 Traveling P22 EBIRD 105.0 40.234 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304977712 2021-03-24 21:10:11.310781 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-03-21 08:30:00 obsr1664745 S22493201 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291414193 2021-04-01 11:24:19.637193 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-14 10:00:00 obsr2289693 S21378379 Stationary P21 EBIRD 60.0 2.0 1 G1111818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290871819 2015-01-13 17:20:43 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 800 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-13 10:00:00 obsr247620 S21334509 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311721824 2021-04-01 12:35:52.669792 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-04-20 16:00:00 obsr2143830 S22975561 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317796401 2021-04-01 11:24:19.637193 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-09 07:05:00 obsr528918 S23340118 Traveling P22 EBIRD 395.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306047135 2021-04-01 12:32:15.282601 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-29 13:00:00 obsr2207991 S22574883 Traveling P22 EBIRD 90.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302661603 2021-03-23 17:15:00.080143 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-03-06 16:40:00 obsr1721609 S22314067 Stationary P21 EBIRD 36.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310209485 2021-04-01 11:23:28.992084 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Lewis US-NY-049 13.0 Location H L4611970 P 43.940282 -75.401446 2015-04-15 07:53:00 obsr417887 S22876541 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297941619 2015-02-17 09:56:30 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Ontario US-NY-069 28.0 Wesley HIll Maple Syrup Farm L2621459 P 42.7290459 -77.4821091 2015-02-14 03:15:00 obsr1820840 S21934228 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307138617 2021-11-09 21:05:40.007634 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Rockland US-NY-087 30.0 Lake Nanuet L3534527 P 41.080981 -74.001137 2015-04-03 11:04:00 obsr2586816 S22658038 Traveling P22 EBIRD 27.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS550963532 2017-11-20 13:24:18 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Jefferson US-NY-045 13.0 2800–2908 Favret Rd, Cape Vincent US-NY (44.1114,-76.3142) surrogate two for roadsides torn of Cape Vincent L6479881 P 44.111423 -76.314217 2015-01-19 12:00:00 obsr2188450 S40624223 Traveling P22 EBIRD 135.0 48.28 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300260701 2019-07-23 17:27:36 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-01 12:45:00 obsr140280 S22124937 Traveling P22 EBIRD 54.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290995199 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-08 07:21:00 obsr259298 S21344190 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302321142 2021-04-01 11:27:18.37144 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 25 United States US New York US-NY Montgomery US-NY-057 13.0 Fonda L3478731 P 42.9506914 -74.3693733 2015-03-10 12:30:00 obsr2846677 S22285722 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307219051 2021-03-26 07:16:36.956617 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake Neighborhood Yard L2649561 P 42.83175 -73.95388 2015-04-03 15:30:00 obsr2371917 S22663615 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310384427 2021-03-19 16:54:27.713469 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Montgomery US-NY-057 13.0 Touareuna Rd, west L3555994 P 42.9209407 -74.0884018 2015-04-16 07:30:00 obsr1918430 S22888539 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325592319 2018-08-04 17:30:45 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Franklin US-NY-033 13.0 Private Property - Alderon Marsh L3601092 P 44.9946705 -74.5498753 2015-05-31 10:00:00 obsr2376028 S23815462 Traveling P22 EBIRD 90.0 0.966 2.0 1 G1306306 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308707631 2021-04-01 11:30:42.037277 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-09 15:15:00 obsr1135516 S22773216 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294623646 2015-02-02 18:05:53 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Monroe US-NY-055 13.0 374 Cromwell L1952255 P 43.1326227 -77.5253892 2015-01-29 13:00:00 obsr1463039 S21651662 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300577253 2021-03-19 16:19:20.977326 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Unity Island (aka Squaw Is.)--North End L2036486 H 42.9321075 -78.9062977 2015-03-01 15:00:00 obsr2155111 S22147551 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307810740 2015-04-05 19:03:02 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Ontario US-NY-069 13.0 2042 Buffalo St. MY YARD L588940 P 42.8875365 -77.1006775 2015-04-03 07:59:00 obsr1783124 S22705483 Stationary P21 EBIRD 20.0 1.0 1 G1206126 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305981043 2021-03-23 16:39:03.255227 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-29 09:46:00 obsr1958124 S22570227 Traveling P22 EBIRD 8.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302879972 2021-03-26 06:21:54.883933 6408 spuh avibase-E8FAD0BB Larus sp. Larus sp. 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Vale of Cashmere L1149386 H 40.6690561 -73.9683616 2015-03-13 12:30:00 obsr2476180 S22330656 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290995479 2021-11-09 18:43:18.865206 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 100 United States US New York US-NY Dutchess US-NY-027 13.0 Rivercrest Road, Poughkeepsie, NY L3291930 P 41.6700883 -73.9425427 2015-01-10 10:25:00 obsr1062217 S21344209 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290242461 2021-03-30 19:29:33.633096 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 1 United States US New York US-NY Suffolk US-NY-103 30.0 Swan Lake, East Patchogue L279859 H 40.770108 -72.9932633 2015-01-10 09:00:00 obsr757440 S21283889 Stationary P21 EBIRD 60.0 5.0 0 G1103818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317106788 2021-03-24 19:48:44.880783 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-08 07:00:00 obsr1243175 S23301194 Traveling P22 EBIRD 7.0 0.016 2.0 1 G1257169 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305533980 2018-08-04 17:03:41 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 15 United States US New York US-NY Queens US-NY-081 30.0 Kissena Park L491873 H 40.7462409 -73.8080852 2015-03-26 19:00:00 obsr676630 S22536515 Traveling P22 EBIRD 40.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307917574 2018-08-04 17:05:40 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 280 United States US New York US-NY Saratoga US-NY-091 13.0 Blockhouse Park L495270 H 42.937331 -73.6567533 2015-04-05 16:47:00 obsr1647272 S22713552 Stationary P21 EBIRD 10.0 2.0 1 G1207216 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316676708 2021-11-09 19:01:40.008558 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 6 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-06 15:00:00 obsr237150 S23276885 Traveling P22 EBIRD 180.0 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308765509 2017-12-31 19:44:56 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Monroe US-NY-055 13.0 Hogan Point Rd., pond and flooded field L587955 H 43.2987445 -77.7390915 2015-04-09 13:00:00 obsr2504709 S22777538 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312091952 2015-04-22 14:23:34 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-22 11:31:00 obsr1711339 S22999564 Traveling P22 EBIRD 171.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319439013 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:30:00 obsr294325 S23431785 Traveling P22 EBIRD 300.0 3.0 6.0 1 G1265613 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310425714 2019-07-23 17:28:22 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 12 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr150865 S22891315 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295510445 2021-03-26 07:56:20.588749 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 8 United States US New York US-NY Nassau US-NY-059 30.0 US-NY-Farmingdale-46 Crestwood Blvd L2634489 P 40.716972 -73.440762 2015-02-08 08:48:00 obsr2015738 S21722936 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306250073 2015-03-30 08:38:16 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Cayuga US-NY-011 13.0 Center Rd. E of 34B, King Ferry L3522546 P 42.65052 -76.60821 2015-03-29 10:13:00 obsr2683910 S22590293 Traveling P22 EBIRD 5.0 0.322 2.0 1 G1197860 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300136649 2021-04-01 11:30:42.037277 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus N 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-02-28 11:40:00 obsr1706920 S22114977 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318699053 2021-03-26 06:29:56.44369 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus N 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-11 06:11:00 obsr745890 S23389047 Traveling P22 EBIRD 20.0 0.016 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322636859 2021-03-26 06:29:56.44369 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-24 12:15:00 obsr1962295 S23616447 Stationary P21 EBIRD 60.0 2.0 1 G1287996 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303725348 2020-02-18 11:48:49 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Suffolk US-NY-103 30.0 Second Neck Creek L3495069 P 40.7945894 -72.835139 2015-03-16 10:20:00 obsr1592950 S22397523 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316996755 2021-03-19 16:19:20.977326 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Erie US-NY-029 13.0 Delaware Park--Rumsey Woods L1348448 H 42.9307931 -78.8698229 2015-05-07 19:17:00 obsr558077 S23294843 Traveling P22 EBIRD 66.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324554241 2018-08-06 22:31:30 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 S C2 S United States US New York US-NY Hamilton US-NY-041 US-NY_864 14.0 Inlet, Moose River Plains, Moose River Rd., milepoint 1 L3690975 P 43.71694 -74.77444 2015-05-31 06:20:00 obsr1062070 S23744061 Stationary P21 EBIRD 9.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292136229 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-20 08:30:00 obsr369788 S21434937 Traveling P22 EBIRD 60.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293491570 2021-04-01 11:15:31.646886 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Kings US-NY-047 Bensonhurst Park L821314 H 40.5963883 -74.0013431 2015-01-23 08:25:00 obsr756196 S21562272 Traveling P22 EBIRD 88.0 0.805 2.0 1 G1126403 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299196019 2021-03-23 16:39:03.255227 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-02-23 12:58:00 obsr1958124 S22041744 Traveling P22 EBIRD 4.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305426582 2019-07-23 17:28:08 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 NY:TOM:Lansing: Myers Pt, lighthouse L1036392 P 42.5356943 -76.5498269 2015-03-26 10:04:00 obsr2760150 S22528261 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309996073 2020-03-15 18:48:35 5773 species avibase-671B69FE Piping Plover Charadrius melodus 1 S C2 S United States US New York US-NY Ontario US-NY-069 13.0 Ontario Pathways--NY 96, Phelps L348453 H 42.9580206 -77.0920904 2015-04-14 13:00:00 obsr606693 S22861636 Traveling P22 EBIRD 33.0 1.127 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311749055 2021-03-23 16:30:20.514143 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Oswego US-NY-075 13.0 Oswego County Airport--Howard Rd. L1814858 H 43.3553061 -76.3795964 2015-04-20 18:20:00 obsr1481464 S22977142 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322323344 2021-04-01 11:14:02.420281 5962 species avibase-4A3B2CFF Short-billed Dowitcher Limnodromus griseus 3 United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum L467369 H 44.0669903 -75.7229233 2015-05-23 07:00:00 obsr790491 S23599457 Traveling P22 EBIRD 420.0 24.14 2.0 1 G1303491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318182212 2021-04-01 10:45:00.916278 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.8978678 -73.9124419 2015-05-10 09:40:00 obsr2796494 S23360752 Traveling P22 EBIRD 185.0 1.207 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319431379 2021-03-24 19:48:44.880783 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-13 18:25:00 obsr1962295 S23431367 Traveling P22 EBIRD 90.0 0.805 1.0 1 G1282739 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305894908 2018-08-04 17:04:31 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-28 14:45:00 obsr1830659 S22557908 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313551173 2015-04-27 15:23:06 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Queens US-NY-081 30.0 Marine Parkway Bridge southern end L2498573 P 40.5683609 -73.8828421 2015-03-07 11:10:00 obsr189780 S23093822 Traveling P22 EBIRD 10.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317010378 2018-08-04 17:15:00 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Oven and The Point L1480317 H 40.7756262 -73.9700541 2015-05-06 10:00:00 obsr1253931 S23295610 Traveling P22 EBIRD 120.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318937372 2018-08-06 22:29:46 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-05-12 10:00:00 obsr2766625 S23403005 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313303617 2021-03-19 16:06:54.047432 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Harris Park, Cayuga L388115 H 42.917605 -76.7300177 2015-04-26 18:30:00 obsr1655171 S23078226 Stationary P21 EBIRD 11.0 2.0 1 G1241623 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305713982 2021-03-23 17:22:05.708166 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-26 07:17:00 obsr1000124 S22550383 Area P23 EBIRD 75.0 2.59 2.0 1 G1198836 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293035131 2022-01-30 05:59:21.134541 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Feeders Only L1037405 H 40.6580479 -73.9676857 2015-01-24 14:30:00 obsr2908667 S21525666 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305465981 2018-08-04 17:03:41 27380 species avibase-E53FC25C Swainson's Thrush Catharus ustulatus 4 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Red Creek Unit L1528347 H 43.3006399 -76.7825379 2015-03-26 17:16:00 obsr1721609 S22531332 Stationary P21 EBIRD 15.0 3.0 1 G1193968 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319698907 2021-04-01 10:55:39.308231 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-14 15:00:00 obsr1379161 S23446741 Traveling P22 EBIRD 150.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320514775 2021-03-26 06:39:43.334073 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-17 07:00:00 obsr2448785 S23490618 Traveling P22 EBIRD 240.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322557831 2021-03-19 16:44:35.607263 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-24 09:40:00 obsr2364166 S23612764 Traveling P22 EBIRD 70.0 1.609 2.0 1 G1287606 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310964146 2021-11-09 21:05:07.751154 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Rockland US-NY-087 US-NY_843 28.0 Bear Mountain SP--Doodletown Rd. L316486 H 41.3011999 -73.9869576 2015-04-18 09:45:00 obsr473055 S22927293 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307003838 2021-03-30 19:39:10.250398 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park /Hendr.Park L365070 P 40.6787341 -73.6936927 2015-04-02 11:00:00 obsr916370 S22648008 Traveling P22 EBIRD 105.0 5.311 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301395699 2021-03-23 16:39:03.255227 6339 species avibase-8535345B Herring Gull Larus argentatus 8 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-03-07 10:07:00 obsr1958124 S22210037 Traveling P22 EBIRD 18.0 0.483 2.0 1 G1169012 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313742558 2015-04-28 09:47:38 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Severinghaus & West trails westmost intersect (boardwalk) L301739 P 42.4767262 -76.4552146 2015-04-28 07:34:00 obsr2307843 S23106124 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521326 2018-08-04 16:53:05 32757 species avibase-EF47E15D Boat-tailed Grackle Quiscalus major 50 United States US New York US-NY Seneca US-NY-099 13.0 South of Sheldrake Point to CR 141 L1031120 H 42.652205 -76.6959858 2015-01-11 08:35:00 obsr869999 S21306338 Traveling P22 EBIRD 10.0 2.414 1.0 1 G1105906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS488817289 2021-05-01 13:40:16.138719 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Rensselaer US-NY-083 13.0 US-NY-Poestenkill-455 Snyders Corners Rd L3438483 P 42.683002 -73.588114 2015-02-27 16:00:00 obsr1301707 S36174634 Stationary P21 EBIRD 10.0 1.0 1 G2354340 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314947529 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-02 08:00:00 obsr1693806 S23179598 Traveling P22 EBIRD 220.0 6.437 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310899618 2021-03-23 16:48:08.60516 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon X United States US New York US-NY Seneca US-NY-099 13.0 Whitmer Farm L2814122 P 42.8654134 -76.8706083 2015-04-18 09:30:00 obsr2832110 S22923262 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300570212 2021-03-24 20:23:39.258075 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY Suffolk US-NY-103 30.0 41 Belton Road, Babylon L986538 P 40.6931311 -73.3296955 2015-03-02 07:00:00 obsr247620 S22147053 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310340645 2019-07-24 17:36:25 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr598381 S22885430 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301369104 2018-08-04 16:58:53 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 10 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-07 09:30:00 obsr2673845 S22207902 Stationary P21 EBIRD 75.0 5.0 1 G1168730 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322147976 2021-08-03 19:42:20.673171 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 06:58:00 obsr1726069 S23589899 Traveling P22 EBIRD 133.0 6.502 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317096174 2021-03-19 16:25:42.617988 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-05-08 07:35:00 obsr2420101 S23300629 Traveling P22 EBIRD 58.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318112353 2018-08-04 17:15:50 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Burger Park L390594 H 43.3099074 -77.7326596 2015-05-10 10:30:00 obsr991026 S23357239 Stationary P21 EBIRD 75.0 11.0 1 G1264079 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298843363 2021-11-09 18:44:29.928846 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Dutchess US-NY-027 13.0 546 Smithfield Valley Road, Amenia, NY L3405976 P 41.8829218 -73.5910067 2015-02-20 15:12:00 obsr1062217 S22011579 Stationary P21 EBIRD 5.0 2.0 1 G1155863 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311663375 2015-04-20 18:41:22 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 10 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.3198299 2015-04-20 18:35:00 obsr2343764 S22971737 Stationary P21 EBIRD 10.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308358039 2022-02-17 14:32:23.002448 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-07 14:00:00 obsr2448957 S22746171 Traveling P22 EBIRD 210.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309938452 2021-04-01 11:30:42.037277 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 40 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-14 07:00:00 obsr2706811 S22857722 Traveling P22 EBIRD 120.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291759720 2021-03-26 06:29:56.44369 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 8 United States US New York US-NY Monroe US-NY-055 13.0 Rush, 1178 Rush West Rush Road L3298068 P 42.99099 -77.6456 2015-01-17 13:54:00 obsr1828453 S21405488 Stationary P21 EBIRD 11.0 3.0 1 G1112436 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294964055 2021-03-26 06:29:56.44369 622 species avibase-50566E50 Lesser Scaup Aythya affinis 4 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-02-04 07:28:00 obsr2595828 S21679638 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311158805 2021-03-23 17:38:38.809066 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Schuyler US-NY-097 US-NY_845 13.0 Finger Lakes National Forest--Picnic Area Rd L3574686 P 42.484517 -76.801186 2015-04-19 08:16:00 obsr2173269 S22939240 Traveling P22 EBIRD 5.0 1.77 2.0 1 G1226346 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300047480 2021-04-01 12:32:15.282601 23291 species avibase-58C502EA Barn Swallow Hirundo rustica N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-02-28 09:40:00 obsr1693806 S22107269 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308346159 2021-03-30 19:22:51.561415 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Queens US-NY-081 30.0 Oakland Lake L526572 P 40.7588528 -73.7607425 2015-04-01 18:41:00 obsr2233270 S22745268 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317469279 2021-03-30 19:13:38.458673 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-09 09:45:00 obsr934639 S23321869 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298796990 2021-11-09 21:57:10.525195 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 15 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms--Old Fort Rd L3405342 P 41.6313054 -74.2280643 2015-02-20 11:30:00 obsr2526184 S22007834 Stationary P21 EBIRD 310.0 2.0 1 G1155113 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299163415 2015-02-23 10:22:35 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-02-22 12:15:00 obsr2673845 S22039303 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315066747 2021-03-19 16:44:35.607263 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-04-25 07:51:00 obsr34861 S23186238 Traveling P22 EBIRD 229.0 6.437 31.0 1 G1235125 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323851662 2021-03-26 06:29:56.44369 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 1 United States US New York US-NY Monroe US-NY-055 13.0 East Rush Circuit, Roads & Trail. L1567342 P 42.9965541 -77.6082345 2015-05-28 08:05:00 obsr270659 S23698311 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288607542 2021-03-26 07:52:40.224846 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 3 United States US New York US-NY Fulton US-NY-035 13.0 County Rt.140 - Town of Ephratah L661480 P 42.9963926 -74.5721054 2015-01-02 13:09:00 obsr2694889 S21151498 Traveling P22 EBIRD 13.0 4.184 4.0 1 G1091882 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310413229 2015-04-16 11:26:48 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Monroe US-NY-055 13.0 117 Lyons Rd L154230 P 43.0025601 -77.6175928 2015-04-16 11:00:00 obsr270659 S22890504 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304091161 2021-03-26 06:39:43.334073 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-19 09:00:00 obsr800463 S22426268 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306700305 2015-04-01 11:11:19 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Schoharie US-NY-095 28.0 Suny Cobleskill creek L1093117 P 42.6687105 -74.5015311 2015-04-01 09:00:00 obsr119187 S22625356 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309720103 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 65 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-13 12:28:00 obsr334398 S22841677 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307865166 2021-11-09 18:17:17.335499 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Dutchess US-NY-027 13.0 Strever Farm Road, Pine Plains L1363519 H 41.9457427 -73.6491438 2015-04-05 14:30:00 obsr1917973 S22709336 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291517843 2021-04-01 11:24:19.637193 27616 species avibase-D77E4B41 American Robin Turdus migratorius N X United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-01-17 14:50:00 obsr1410568 S21386824 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315487744 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-05 12:48:00 obsr334398 S23208978 Traveling P22 EBIRD 51.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288544055 2021-03-26 06:21:54.883933 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Kings US-NY-047 30.0 Fresh Creek Park L582117 H 40.6437706 -73.8831639 2015-01-02 14:10:00 obsr1189028 S21146415 Stationary P21 EBIRD 15.0 2.0 1 G1091715 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300022105 2021-03-26 06:21:54.883933 483 species avibase-85625D75 Mallard Anas platyrhynchos 30 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-28 09:06:00 obsr152435 S22105333 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305292176 2021-04-01 12:45:19.712958 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary--HQ L92442 H 40.968598 -73.6647309 2015-03-25 09:15:00 obsr979921 S22517763 Traveling P22 EBIRD 60.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314291414 2021-04-01 12:18:57.910168 7732 species avibase-A091D50A Northern Harrier Circus hudsonius N 3 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Rockwell Azalea Garden L269457 H 42.4478844 -76.4806044 2015-04-30 10:01:00 obsr2952480 S23140540 Traveling P22 EBIRD 15.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309699112 2021-03-23 16:39:03.255227 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF--Snag Swamp L1473094 H 40.515363 -74.2213938 2015-04-13 10:58:00 obsr1958124 S22840318 Rusty Blackbird Spring Migration Blitz P41 EBIRD 18.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311838284 2021-11-09 19:01:40.008558 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 11 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-04-12 08:00:00 obsr1315725 S22983165 Traveling P22 EBIRD 150.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309659876 2015-05-07 17:07:25 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-13 07:46:00 obsr455249 S22837042 Traveling P22 EBIRD 14.0 0.579 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299831034 2021-04-01 12:18:57.910168 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Tompkins US-NY-109 13.0 Milliken Station L99617 H 42.59868 -76.6335418 2015-02-27 08:13:00 obsr1655171 S22090532 Traveling P22 EBIRD 57.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310265825 2021-04-01 11:30:42.037277 337 species avibase-694C127A Mute Swan Cygnus olor N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-15 15:30:00 obsr1353449 S22880181 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314035456 2021-11-15 03:06:58.889978 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-19 16:35:00 obsr2729095 S23124590 Traveling P22 EBIRD 90.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315258738 2021-04-01 11:47:43.260314 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-03-15 07:20:00 obsr2409011 S23196998 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318677738 2021-04-01 11:15:31.646886 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 100 United States US New York US-NY Kings US-NY-047 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L3640607 P 40.6155949 -73.8359737 2015-05-09 12:24:00 obsr454647 S23387850 Traveling P22 EBIRD 150.0 1.0 6.0 1 G1265610 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291296692 2021-11-09 21:05:38.512979 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Rockland US-NY-087 28.0 US-NY-GE Crotonville L3291925 P 41.199082 -73.959177 2015-01-16 14:15:00 obsr385096 S21369292 Traveling P22 EBIRD 75.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316083696 2021-04-01 11:24:19.637193 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay L83 H 43.3130395 -77.7153471 2015-05-05 11:40:00 obsr2933610 S23242385 Traveling P22 EBIRD 20.0 0.805 2.0 1 G1254138 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289626506 2021-04-26 05:03:09.627903 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-06 13:33:00 obsr564905 S21234163 Traveling P22 EBIRD 50.0 0.483 3.0 1 G1099709 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323740438 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-05-29 09:15:00 obsr2309457 S23690949 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305421602 2018-08-04 17:02:55 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Town Docks L160638 P 41.062866 -72.42465 2015-03-26 13:04:00 obsr2485753 S22527881 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318393094 2021-03-26 07:56:20.588749 11371 species avibase-75600969 Northern Flicker Colaptes auratus 10 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-10 13:00:00 obsr143739 S23372273 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302371282 2015-03-10 21:11:33 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 40 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-10 16:30:00 obsr712039 S22292006 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300531309 2019-07-23 17:27:36 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-03-02 13:35:00 obsr1721609 S22144119 Stationary P21 EBIRD 37.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308724076 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-04-09 16:25:00 obsr934639 S22774495 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311884820 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 13.0 University of Rochester L1057695 H 43.1291149 -77.6293087 2015-04-21 15:59:00 obsr1958774 S22986019 Traveling P22 EBIRD 33.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304421342 2021-04-01 12:32:15.282601 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-21 11:30:00 obsr547602 S22451496 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304211317 2021-03-26 08:09:53.772059 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 3 United States US New York US-NY Rensselaer US-NY-083 13.0 Poestenkill, Home Yard L940921 P 42.6943279 -73.5632408 2015-03-20 13:00:00 obsr1735540 S22435754 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306152893 2022-03-07 20:38:22.363139 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis X United States US New York US-NY Dutchess US-NY-027 13.0 The Fly, pond on Rte 82, Pine Plains L1407827 H 41.9927609 -73.6318195 2015-03-29 16:00:00 obsr2862523 S22582919 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299249805 2015-02-23 17:58:48 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 28 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Old Ponquogue Bridge- north L3279905 P 40.8472257 -72.5021428 2015-02-23 15:45:00 obsr1736113 S22045992 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301800435 2021-11-09 22:38:26.937409 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Sullivan US-NY-105 28.0 Rio Reservoir and Plank Rd. L1921926 H 41.5101199 -74.7559547 2015-03-08 09:00:00 obsr444155 S22241444 Traveling P22 EBIRD 40.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305995902 2021-03-24 21:10:11.310781 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 1 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-03-29 10:50:00 obsr1664745 S22571375 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314358664 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 12:00:00 obsr2706811 S23144028 Traveling P22 EBIRD 90.0 1.609 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317072827 2018-08-04 17:15:13 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-07 17:46:00 obsr749440 S23299260 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293045572 2018-08-04 16:54:53 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-23 08:54:00 obsr2683910 S21526376 Stationary P21 EBIRD 13.0 2.0 1 G1121988 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311682516 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-20 17:00:00 obsr1659461 S22973086 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318534883 2021-03-26 07:46:52.994574 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-05-11 07:35:00 obsr2512689 S23380015 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313299344 2021-04-01 11:24:19.637193 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Monroe US-NY-055 13.0 Harwick Rd., Irondequoit (Varied Thrush 2015) L3593429 P 43.174 -77.55397 2015-04-26 12:30:00 obsr1655171 S23077947 Traveling P22 EBIRD 122.0 0.805 2.0 1 G1241608 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314259469 2021-11-09 18:31:39.191483 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Dutchess US-NY-027 28.0 Depot Hill L224581 H 41.5702552 -73.6727579 2015-04-30 06:10:00 obsr1732267 S23138444 Traveling P22 EBIRD 32.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288858457 2021-04-01 11:15:31.646886 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek L845821 H 40.5811388 -73.9927912 2015-01-03 10:24:00 obsr1407710 S21174006 Traveling P22 EBIRD 150.0 2.897 12.0 1 G1093831 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306249376 2017-12-21 03:11:52 27616 species avibase-D77E4B41 American Robin Turdus migratorius 21 United States US New York US-NY Tioga US-NY-107 28.0 Confluence Park, Owego L2011248 H 42.0957386 -76.2724543 2015-03-29 08:45:00 obsr317968 S22590228 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294480008 2021-03-26 07:20:31.408164 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Suffolk US-NY-103 30.0 Soundview Avenue, Mattituck L3333176 P 41.022573 -72.542707 2015-02-01 15:00:00 obsr2528068 S21640125 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322127262 2021-12-23 15:00:47.137144 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 20 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-05-23 05:20:00 obsr1696616 S23588659 Traveling P22 EBIRD 19.0 0.032 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298338779 2021-04-01 12:32:15.282601 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Nassau US-NY-059 30.0 jones beach L3398591 P 40.6663553 -73.4418349 2015-02-18 13:00:00 obsr1723961 S21968116 Traveling P22 EBIRD 180.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303977762 2021-03-19 16:32:34.732091 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-18 09:15:00 obsr1821546 S22417347 Traveling P22 EBIRD 184.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312598763 2021-03-26 06:12:17.833181 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea N 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Crooked Brook Pond- Dunkirk NY L3587303 P 42.462375 -79.322651 2015-04-24 16:57:00 obsr749440 S23034842 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309832956 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-13 16:30:00 obsr2750470 S22850162 Traveling P22 EBIRD 90.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522810 2021-03-23 16:39:03.255227 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-04-08 10:49:00 obsr155915 S22758864 Traveling P22 EBIRD 26.0 0.805 2.0 1 G1211596 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319636702 2020-07-27 15:41:41 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Columbia US-NY-021 14.0 Harlem Valley Rail Trail--Copake Falls to Under Mountain Rd. L5803911 H 42.0757413 -73.5303798 2015-05-09 07:25:00 obsr798742 S23443267 Traveling P22 EBIRD 50.0 2.253 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294658217 2021-03-24 19:27:13.077399 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 3 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-02-01 08:15:00 obsr1334267 S21654367 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290138376 2015-01-10 08:48:05 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 3 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-01-10 07:45:00 obsr2574755 S21274781 Stationary P21 EBIRD 62.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313934584 2021-03-26 06:11:29.8335 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Cayuga US-NY-011 13.0 Harris Park, Cayuga L388115 H 42.917605 -76.7300177 2015-04-28 07:42:00 obsr2760150 S23118346 Stationary P21 EBIRD 16.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314025116 2021-03-24 20:33:47.533911 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Tompkins US-NY-109 13.0 Haber Ithaca Apartment L2127426 P 42.4862687 -76.4751273 2015-04-29 07:20:00 obsr869999 S23123979 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311259315 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 45 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 08:00:00 obsr454647 S22945364 Traveling P22 EBIRD 270.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322180386 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 06:15:00 obsr152435 S23591664 Traveling P22 EBIRD 311.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300235759 2021-03-30 19:29:33.633096 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 8 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-03-01 09:51:00 obsr2485753 S22122929 Traveling P22 EBIRD 100.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319388652 2021-11-09 18:23:09.854169 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 22 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1522533 P 41.732801 -73.8753483 2015-05-13 08:00:00 obsr1339050 S23428927 Traveling P22 EBIRD 240.0 2.414 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318677470 2018-08-06 22:29:36 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-10 12:00:00 obsr2505956 S23387836 Rusty Blackbird Spring Migration Blitz P41 EBIRD 105.0 2.414 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297046479 2021-03-24 20:23:39.258075 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 13 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-02-15 10:16:00 obsr2485753 S21852710 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317022750 2021-03-24 05:37:45.927792 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn L3620953 P 42.9225862 -78.8662469 2015-05-07 10:00:00 obsr1239415 S23296348 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313614026 2021-04-01 12:26:53.827486 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 2 United States US New York US-NY Albany US-NY-001 13.0 Lions L2803969 P 42.772447 -73.80926 2015-04-27 15:56:00 obsr648176 S23097852 Traveling P22 EBIRD 178.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308833041 2021-03-26 07:30:35.289997 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 202 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-10 10:17:00 obsr1062070 S22782564 Traveling P22 EBIRD 56.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299269989 2021-03-24 20:23:39.258075 660 spuh avibase-CB56BEF1 scoter sp. Melanitta sp. 7 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-02-23 14:45:00 obsr1137265 S22047734 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294982273 2021-03-26 06:29:56.44369 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 7 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-02-03 07:40:00 obsr2449897 S21680948 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300237438 2019-07-23 17:27:35 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 19 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-01 10:57:00 obsr1062070 S22123051 Traveling P22 EBIRD 49.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306171035 2018-08-04 17:04:35 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 6 United States US New York US-NY Oneida US-NY-065 13.0 Lakeport L1552187 P 43.1500425 -75.8644765 2015-03-29 08:55:00 obsr660214 S22584284 Stationary P21 EBIRD 10.0 2.0 1 G1197234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307048148 2021-03-19 16:29:59.503892 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 200 United States US New York US-NY Jefferson US-NY-045 13.0 Town of Hounsfield L2064414 P 43.9294263 -75.9877968 2015-03-31 16:00:00 obsr585290 S22651244 Traveling P22 EBIRD 61.0 33.796 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302181738 2016-07-31 19:46:53 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas X United States US New York US-NY Westchester US-NY-119 28.0 Charles Point, Peekskill L651242 H 41.2780121 -73.9418079 2015-03-09 12:30:00 obsr1917973 S22270303 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321441723 2021-04-01 11:15:31.646886 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 5 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-20 07:00:00 obsr1731572 S23545836 Traveling P22 EBIRD 210.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301395757 2018-08-04 16:58:54 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 40 United States US New York US-NY Richmond US-NY-085 30.0 Huguenot Ave. Beach L2035653 H 40.5200028 -74.1832461 2015-03-07 10:29:00 obsr1958124 S22210041 Stationary P21 EBIRD 7.0 2.0 1 G1169008 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308422397 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-29 10:15:00 obsr2182516 S22751164 Traveling P22 EBIRD 165.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302061762 2021-04-01 11:30:42.037277 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus N 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Cedar Hill L5197378 H 40.7770344 -73.9654146 2015-03-09 08:23:00 obsr1548221 S22261149 Traveling P22 EBIRD 6.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311541902 2018-08-04 17:11:14 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-19 10:00:00 obsr2841967 S22962754 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316142322 2021-03-26 06:39:43.334073 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-05-05 11:00:00 obsr118940 S23245444 Traveling P22 EBIRD 30.0 0.048 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308319141 2018-08-04 17:08:01 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Broome US-NY-007 28.0 West Corners Marsh L1513804 H 42.1169195 -76.0743913 2015-04-07 17:22:00 obsr1764243 S22743190 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309350731 2021-03-23 17:00:13.087107 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Tareyton Drive yard L1133152 P 42.4712343 -76.4592433 2015-04-12 09:13:00 obsr1655171 S22817229 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289017716 2021-03-23 17:32:20.03109 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Onondaga US-NY-067 13.0 Baldwinsville Farmers Co-op - parking lot L1392365 P 43.1599985 -76.3229164 2015-01-04 09:02:00 obsr2744341 S21186338 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317133289 2021-04-01 11:15:31.646886 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 07:15:00 obsr2363365 S23302552 Traveling P22 EBIRD 420.0 4.828 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311187836 2021-03-23 17:00:13.087107 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, 212 Tareyton L252844 P 42.4724094 -76.4601243 2015-04-19 06:51:00 obsr2307843 S22941058 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301395468 2021-03-26 07:07:10.758746 303 species avibase-B59E1863 Canada Goose Branta canadensis 11 United States US New York US-NY Richmond US-NY-085 Page Ave. Beach L1340800 H 40.5023216 -74.2288034 2015-03-07 08:45:00 obsr1958124 S22210021 Stationary P21 EBIRD 30.0 2.0 1 G1169018 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311045023 2021-03-26 07:07:10.758746 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-04-18 09:57:00 obsr155915 S22932311 Traveling P22 EBIRD 27.0 0.805 3.0 1 G1224797 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313851206 2021-03-26 06:29:56.44369 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 2 United States US New York US-NY Monroe US-NY-055 13.0 Harwick Rd., Irondequoit (Varied Thrush 2015) L3592824 H 43.1740003 -77.5539672 2015-04-28 11:10:00 obsr1929165 S23112986 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321206868 2018-08-06 22:30:33 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Erie US-NY-029 13.0 WNY Land Conservancy Office L2058573 P 42.7636185 -78.5480404 2015-05-19 09:00:00 obsr2537615 S23531397 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309381373 2021-04-01 12:11:50.996293 242 species avibase-D3A260BC Snow Goose Anser caerulescens 4 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-12 09:46:00 obsr800690 S22819029 Traveling P22 EBIRD 182.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301818312 2021-03-30 19:07:52.958398 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-08 16:34:00 obsr2692140 S22242880 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297566131 2021-04-01 12:14:19.266649 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree SP L283564 H 40.6394313 -73.2644575 2015-02-16 10:15:00 obsr2406624 S21899523 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314409330 2021-04-01 11:54:40.172593 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-30 16:45:00 obsr1958124 S23147289 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307455468 2022-02-13 06:32:05.759346 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-04-04 09:17:00 obsr1092576 S22680699 Traveling P22 EBIRD 16.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302078656 2021-03-30 19:29:33.633096 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 4 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-09 14:30:00 obsr1137265 S22262521 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288151501 2015-01-01 12:02:55 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden, 192 Hurd Road L3252815 P 42.42205 -76.35247 2015-01-01 07:00:00 obsr2178894 S21113578 Traveling P22 EBIRD 270.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294395561 2021-03-23 17:32:20.03109 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Onondaga US-NY-067 13.0 Kellogg L3332280 P 43.196333 -76.358551 2015-01-30 11:46:00 obsr2224244 S21633551 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306091366 2015-03-30 20:22:13 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Orleans US-NY-073 13.0 43.3468x-78.4495 - Mar 29, 2015, 1:44 PM L3523651 P 43.346783 -78.449509 2015-03-29 13:44:00 obsr1603345 S22578210 Stationary P21 EBIRD 1.0 20.0 0 G1198693 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304615293 2021-03-30 19:04:34.869795 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY Columbia US-NY-021 13.0 Elizaville Diner Pond L3505976 H 42.0463847 -73.8055408 2015-03-22 10:30:00 obsr440908 S22465776 Stationary P21 EBIRD 20.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306926475 2021-03-26 06:39:43.334073 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-02 09:00:00 obsr800463 S22641831 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308029854 2021-03-23 16:39:03.255227 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-04-06 14:32:00 obsr1958124 S22721265 Stationary P21 EBIRD 4.0 2.0 1 G1208431 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308383700 2021-03-19 16:10:30.527219 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 38 United States US New York US-NY Chemung US-NY-015 28.0 Sperr Memorial Park L7578475 H 42.1465676 -76.9144776 2015-04-07 19:27:00 obsr2173269 S22748062 Traveling P22 EBIRD 43.0 0.483 1.0 1 G1210649 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320304112 2021-11-09 18:38:50.204097 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Dutchess US-NY-027 28.0 Southeast Mtn Rd L2849103 P 41.67179 -73.52855 2015-05-16 11:18:00 obsr1732267 S23479547 Traveling P22 EBIRD 62.0 4.828 2.0 1 G1277162 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320145718 2021-12-24 11:02:14.483178 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-16 11:00:00 obsr1991824 S23471485 Traveling P22 EBIRD 90.0 1.609 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321809385 2021-03-26 06:19:47.07548 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Essex US-NY-031 13.0 Lower La Chute River & Ticonderoga Marsh L4910422 H 43.8448239 -73.4016323 2015-05-21 15:44:00 obsr2420101 S23568047 Traveling P22 EBIRD 104.0 6.437 3.0 1 G1282463 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316891567 2021-03-26 07:56:20.588749 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 1 United States US New York US-NY Nassau US-NY-059 30.0 Lynbrook L3091077 P 40.6511413 -73.6801529 2015-05-07 13:15:00 obsr358492 S23288745 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322775131 2021-03-30 19:07:52.958398 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-25 08:43:00 obsr1189028 S23625796 Traveling P22 EBIRD 73.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298070438 2016-03-30 12:55:45 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Schoharie US-NY-095 28.0 US-NY-Schoharie-Lilac Hollow Feeders L2527683 P 42.624466 -74.205267 2015-02-17 10:42:00 obsr2268588 S21945413 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313489168 2021-03-26 07:51:58.821109 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Chenango US-NY-017 28.0 Afton, NY L3538730 P 42.2255156 -75.5192041 2015-04-27 08:00:00 obsr1544235 S23090183 Stationary P21 EBIRD 210.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307202355 2021-03-26 06:39:43.334073 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-03 13:45:00 obsr1135516 S22662357 Traveling P22 EBIRD 75.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305221505 2021-03-26 07:30:35.289997 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 60 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-25 07:47:00 obsr1655171 S22512179 Traveling P22 EBIRD 64.0 0.483 2.0 1 G1194527 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1079624014 2021-03-26 06:52:34.887371 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 23 United States US New York US-NY Niagara US-NY-063 US-NY_1724 13.0 Niagara Falls SP--Goat Island L207766 H 43.080477 -79.0683617 2015-01-18 09:15:00 obsr2155450 S82082815 Traveling P22 EBIRD 45.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322763320 2018-08-06 22:31:05 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-25 07:33:00 obsr334398 S23625063 Traveling P22 EBIRD 8.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299825391 2015-02-27 09:22:02 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Tompkins US-NY-109 28.0 143 Howland Road L3442761 P 42.2876594 -76.4194393 2015-02-22 09:00:00 obsr2430746 S22090088 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310325998 2021-03-30 19:22:51.561415 26890 species avibase-94A44032 European Starling Sturnus vulgaris 14 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr544268 S22884437 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315720545 2021-11-09 17:58:40.313796 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-04 07:00:00 obsr915089 S23221760 Traveling P22 EBIRD 240.0 6.115 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298338792 2021-04-01 12:32:15.282601 669 hybrid avibase-8DE9CD30 Common x Barrow's Goldeneye (hybrid) Bucephala clangula x islandica 1 United States US New York US-NY Nassau US-NY-059 30.0 jones beach L3398591 P 40.6663553 -73.4418349 2015-02-18 13:00:00 obsr1723961 S21968116 Traveling P22 EBIRD 180.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291744322 2021-03-23 17:00:13.087107 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 750 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-18 16:52:00 obsr730231 S21404271 Traveling P22 EBIRD 45.0 1.127 2.0 1 G1114113 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320865488 2018-08-06 22:30:28 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-18 07:15:00 obsr1688373 S23510428 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306768055 2021-03-24 19:35:34.045988 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-03-31 15:40:00 obsr2597186 S22630057 Traveling P22 EBIRD 40.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300546600 2021-03-30 19:43:32.881136 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-03-02 07:30:00 obsr2078798 S22145162 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293202960 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-01-25 15:00:00 obsr1711339 S21539214 Traveling P22 EBIRD 60.0 1.609 4.0 1 G1122931 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296371079 2021-04-01 12:45:19.712958 31268 issf avibase-95F9C840 Purple Finch Haemorhous purpureus Purple Finch (Eastern) Haemorhous purpureus purpureus 30 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-12 08:30:00 obsr2078798 S21792151 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300771870 2021-04-01 12:45:19.712958 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 2 United States US New York US-NY Westchester US-NY-119 30.0 Rye L1069097 P 40.9661597 -73.6719131 2015-03-03 10:00:00 obsr662396 S22162038 Traveling P22 EBIRD 75.0 2.414 2.0 1 G1165866 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320097535 2021-03-19 16:02:45.308962 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-16 06:05:00 obsr800690 S23469117 Traveling P22 EBIRD 254.0 3.219 2.0 1 G1273111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301082101 2021-11-09 20:40:20.366096 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 4 United States US New York US-NY Putnam US-NY-079 28.0 Pine St. L2175760 P 41.422812 -73.9468879 2015-03-04 08:00:00 obsr2211514 S22184675 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313241942 2019-01-07 15:35:03 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 College Lodge SUNY L2220962 H 42.3440743 -79.4279337 2015-04-26 10:38:00 obsr2497657 S23074357 Traveling P22 EBIRD 231.0 5.633 2.0 1 G1237515 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304621110 2021-03-30 19:07:52.958398 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-22 07:45:00 obsr1189028 S22466186 Traveling P22 EBIRD 90.0 2.414 2.0 1 G1188243 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311763576 2021-03-26 06:14:19.776945 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Columbia US-NY-021 13.0 Mud Creek Environmental Learning Center L2793575 H 42.2806092 -73.7101454 2015-04-19 07:30:00 obsr349211 S22978048 Traveling P22 EBIRD 150.0 1.609 12.0 1 G1228299 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311398246 2021-04-01 11:24:19.637193 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-19 08:00:00 obsr2289693 S22953887 Stationary P21 EBIRD 60.0 2.0 1 G1227056 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301551331 2021-12-10 08:21:29.396662 16788 species avibase-0A76713F Couch's Kingbird Tyrannus couchii 5 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-07 14:00:00 obsr1489009 S22221316 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316109169 2021-03-26 06:29:56.44369 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Monroe US-NY-055 13.0 Seneca Park L836388 H 43.2101643 -77.623546 2015-05-05 11:52:00 obsr1545618 S23243694 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310457773 2021-04-01 11:15:31.646886 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-16 07:45:00 obsr827632 S22893453 Traveling P22 EBIRD 180.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308816027 2020-07-20 09:16:51 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 6 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-10 08:30:00 obsr2172593 S22781351 Traveling P22 EBIRD 55.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324205785 2018-08-06 22:29:45 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods - Lake Plains side L2376829 P 43.2738894 -77.6598215 2015-05-12 08:10:00 obsr2966702 S23721041 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292266441 2021-03-26 06:11:29.8335 456 species avibase-D201EB72 American Wigeon Mareca americana 36 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-01-18 08:45:00 obsr1167884 S21444552 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316008937 2021-09-03 19:22:31.034431 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 11 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-05-05 06:59:00 obsr2497657 S23238155 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS384215669 2019-07-23 17:27:43 5976 species avibase-F4829920 American Woodcock Scolopax minor X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-07 16:00:00 obsr1633530 S28431498 Traveling P22 EBIRD 90.0 4.023 3.0 1 G1634060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294405239 2021-09-03 19:22:31.034431 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-02-01 16:11:00 obsr2497657 S21634305 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295660051 2021-04-01 12:18:57.910168 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Black Diamond Trail, Ithaca (southern end) L3300863 H 42.4524707 -76.517061 2015-02-08 09:22:00 obsr2683910 S21734830 Traveling P22 EBIRD 97.0 3.541 2.0 1 G1139913 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297987094 2021-04-01 10:55:39.308231 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 21 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-02-17 11:31:00 obsr502830 S21938131 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307234258 2021-11-09 21:50:48.44865 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 2 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-03 09:30:00 obsr237150 S22664760 Traveling P22 EBIRD 120.0 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320962050 2021-03-26 07:56:20.588749 6408 spuh avibase-E8FAD0BB Larus sp. Larus sp. X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-15 12:30:00 obsr1481464 S23515581 Traveling P22 EBIRD 60.0 0.805 3.0 1 G1279925 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316949361 2021-04-01 11:15:31.646886 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 07:20:00 obsr1932533 S23292181 Traveling P22 EBIRD 400.0 40.233 1.0 1 G1261215 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310408749 2021-03-26 07:46:52.994574 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-04-16 06:28:00 obsr2512689 S22890197 Traveling P22 EBIRD 92.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308541722 2021-11-09 00:38:34.069905 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-04-08 09:40:00 obsr1327349 S22760376 Traveling P22 EBIRD 90.0 0.805 2.0 1 G1212446 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300690828 2021-04-01 10:57:06.520339 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Essex US-NY-031 13.0 Dog Park, Lord Howe St L3452761 P 43.842152 -73.431545 2015-03-03 07:59:00 obsr2693145 S22155894 Stationary P21 EBIRD 28.0 2.0 1 G1165630 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613063 2021-04-01 12:18:57.910168 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-01-17 09:15:00 obsr2683910 S21394114 Traveling P22 EBIRD 19.0 1.609 2.0 1 G1113283 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308630011 2018-08-04 17:07:59 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 15 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-07 13:30:00 obsr54384 S22766903 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS353188358 2021-03-30 19:07:52.958398 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 4 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-20 08:00:00 obsr2966709 S25819835 Traveling P22 EBIRD 300.0 32.187 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322194369 2021-03-19 16:44:35.607263 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-23 11:22:00 obsr1696616 S23592385 Traveling P22 EBIRD 42.0 1.127 2.0 1 G1285656 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297774830 2021-03-31 04:04:22.116638 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 7 United States US New York US-NY Suffolk US-NY-103 US-NY_808 30.0 North Sea L3389179 P 40.9452226 -72.4150085 2015-02-13 11:49:00 obsr24556 S21919253 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314544669 2021-03-24 20:58:04.794277 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 Male, Adult (2); Female, Adult (2) United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-04-30 06:30:00 obsr2694889 S23156277 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294445805 2021-11-09 18:28:18.113015 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 2 United States US New York US-NY Dutchess US-NY-027 28.0 Dover Plains, NY L1966508 P 41.750568 -73.5745811 2015-02-01 10:30:00 obsr1917973 S21637446 Historical P62 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307947563 2021-03-26 07:20:31.408164 16284 species avibase-33808812 Alder Flycatcher Empidonax alnorum 5 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L635183 H 40.8348529 -72.6153374 2015-04-06 08:00:00 obsr1736113 S22715757 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307658591 2021-04-01 11:15:31.646886 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-04-05 08:26:00 obsr152435 S22694807 Traveling P22 EBIRD 83.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293083412 2020-03-22 07:58:01 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-01-19 07:33:00 obsr730231 S21529629 Stationary P21 EBIRD 34.0 2.0 1 G1122353 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307464117 2021-03-24 21:09:00.82373 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 7 United States US New York US-NY Rensselaer US-NY-083 13.0 Coopers Pond, Brunswick L1008485 H 42.7363667 -73.6531746 2015-04-04 15:03:00 obsr2211210 S22681289 Stationary P21 EBIRD 8.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290858736 2018-08-04 16:53:17 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 16 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay - Old Lighthouse L1864778 P 43.2739151 -76.9871304 2015-01-13 12:50:00 obsr983655 S21333339 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305654251 2021-03-19 16:02:45.308962 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 12 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-03-27 16:00:00 obsr290506 S22545835 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310314097 2021-03-19 16:10:30.527219 505 species avibase-C732CB10 American Black Duck Anas rubripes 15 United States US New York US-NY Chemung US-NY-015 28.0 Moss Hill Road (Chemung Co.) L3499863 H 42.1581843 -76.7556696 2015-04-15 18:20:00 obsr2430746 S22883558 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323401931 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 18 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-27 16:10:00 obsr1706920 S23666339 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311525122 2021-03-24 20:23:39.258075 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Gilgo Beach L499715 H 40.6172753 -73.3947659 2015-04-18 09:15:00 obsr564905 S22961725 Traveling P22 EBIRD 24.0 0.483 2.0 1 G1228237 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290866135 2016-10-10 10:35:42 5976 species avibase-F4829920 American Woodcock Scolopax minor 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 06:45:00 obsr1868191 S21334022 Traveling P22 EBIRD 75.0 18.99 44.0 1 G1108327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307792916 2021-03-24 20:33:47.533911 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Tompkins US-NY-109 13.0 Lmo's yard L1054947 P 42.4325795 -76.4785981 2015-04-05 17:45:00 obsr2326978 S22704304 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298949132 2021-03-26 07:20:31.408164 32955 species avibase-41062654 Northern Parula Setophaga americana 3 United States US New York US-NY Suffolk US-NY-103 30.0 Hortons Point L158149 H 41.0852163 -72.4456862 2015-02-22 11:17:00 obsr2485753 S22020165 Traveling P22 EBIRD 29.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305281360 2021-04-01 11:54:40.172593 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-03-25 08:55:00 obsr396989 S22516954 Traveling P22 EBIRD_NJ 375.0 7.725 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304760954 2021-03-26 07:52:59.845315 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 58 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-22 07:05:00 obsr1000124 S22476541 Area P23 EBIRD 60.0 2.59 2.0 1 G1189317 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319491806 2015-05-14 09:55:31 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-14 07:13:00 obsr1764243 S23435072 Traveling P22 EBIRD 54.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315398864 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Delmar-Kendall Drive L2163375 P 42.60272 -73.81621 2015-05-03 15:36:00 obsr2214649 S23204079 Traveling P22 EBIRD 66.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312872646 2018-08-04 17:11:54 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Franklin US-NY-033 14.0 Meacham Lake L350110 H 44.5534716 -74.2894702 2015-04-23 09:00:00 obsr443017 S23052388 Historical P62 EBIRD 180.0 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305426574 2018-08-04 17:02:55 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY New York US-NY-061 Randalls Island--NE fields and shoreline L1785381 H 40.7943072 -73.9138235 2015-03-26 12:35:00 obsr2105033 S22528260 Traveling P22 EBIRD 20.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS768675830 2021-03-26 08:14:57.071052 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-06 08:40:00 obsr363553 S56910131 Traveling P22 EBIRD 140.0 3.621 18.0 1 G1207928 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316708788 2021-03-26 06:29:56.44369 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N 3 United States US New York US-NY Monroe US-NY-055 13.0 Tinker Nature Park L3618688 P 43.06707 -77.57339 2015-05-06 10:15:00 obsr722710 S23278688 Traveling P22 EBIRD 126.0 2.414 2.0 1 G1256551 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309312536 2021-03-23 17:23:45.772216 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 Female, Adult (1) United States US New York US-NY Livingston US-NY-051 13.0 South Conesus-Back Woods L698393 P 42.6703198 -77.6733398 2015-04-12 07:04:00 obsr72341 S22814846 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291414191 2021-04-01 11:24:19.637193 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-14 10:00:00 obsr2289693 S21378379 Stationary P21 EBIRD 60.0 2.0 1 G1111818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307802898 2021-03-19 16:43:17.120646 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Madison US-NY-053 28.0 Backyard Feeders L1106615 P 42.8417296 -75.7263565 2015-04-02 07:00:00 obsr2240720 S22704980 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309946527 2021-11-02 20:32:06.137153 20829 species avibase-B9B272F4 Common Raven Corvus corax 3 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-04-14 08:30:00 obsr71667 S22858281 Traveling P22 EBIRD 60.0 0.805 10.0 1 G1219386 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311610953 2021-03-23 16:21:52.613913 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Bristol Rd x Hopkins Rd L3578690 P 42.8603408 -77.3498142 2015-04-19 15:55:00 obsr39511 S22967912 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423140 2021-04-01 11:24:19.637193 30494 species avibase-240E3390 House Sparrow Passer domesticus 10 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-24 12:28:00 obsr1846130 S24163340 Traveling P22 EBIRD 378.0 9.656 4.0 1 G1337409 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314841041 2021-03-26 06:17:19.712573 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 7 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-02 07:29:00 obsr502830 S23174028 Traveling P22 EBIRD 84.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298775997 2021-03-23 17:21:08.587586 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Delaware US-NY-025 28.0 Bridge St., Downsville L2384566 H 42.0755272 -74.9899937 2015-02-21 08:18:00 obsr1788273 S22006138 Traveling P22 EBIRD 11.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309305307 2021-03-30 19:29:33.633096 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Terrell River L242050 P 40.7886068 -72.7801338 2015-04-11 10:27:00 obsr2963457 S22814335 Traveling P22 EBIRD 70.0 4.506 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306961630 2016-09-12 10:37:47 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cattaraugus US-NY-009 13.0 Conewango Swamp WMA L246473 H 42.1794444 -78.9861111 2015-03-28 10:30:00 obsr430081 S22644546 Stationary P21 EBIRD 25.0 10.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311052094 2021-03-26 06:17:19.712573 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-04-18 obsr2096529 S22932785 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305477779 2021-12-14 08:38:15.858862 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY New York US-NY-061 30.0 Tudor City Greens (North & South) L2837736 H 40.7490963 -73.9705077 2015-03-26 18:00:00 obsr259298 S22532327 Traveling P22 EBIRD 34.0 0.354 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318652057 2021-04-01 12:32:15.282601 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 16 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-11 12:15:00 obsr647628 S23386429 Traveling P22 EBIRD 150.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304656748 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-03-22 14:00:00 obsr1223279 S22468721 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302989088 2021-03-30 19:39:10.250398 30494 species avibase-240E3390 House Sparrow Passer domesticus 30 United States US New York US-NY Nassau US-NY-059 Stepping Stone Park L1403484 H 40.8177813 -73.7565535 2015-03-13 17:40:00 obsr676630 S22339486 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305854355 2021-03-26 06:39:43.334073 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-03-28 15:00:00 obsr93451 S22560719 Traveling P22 EBIRD 120.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317706269 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:40:00 obsr2514491 S23335356 Traveling P22 EBIRD 560.0 15.771 6.0 1 G1259504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315086191 2018-08-04 17:14:08 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 6 United States US New York US-NY Essex US-NY-031 13.0 Webb Royce Swamp L143226 H 44.2471742 -73.380416 2015-05-02 14:10:00 obsr822321 S23187360 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294480029 2021-03-26 07:20:31.408164 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius N 14 United States US New York US-NY Suffolk US-NY-103 30.0 Soundview Avenue, Mattituck L3333176 P 41.022573 -72.542707 2015-02-01 15:00:00 obsr2528068 S21640125 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS327189417 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Kings US-NY-047 30.0 Home L468661 P 40.6361565 -73.9647943 2015-03-12 08:00:00 obsr1666581 S23929427 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293772219 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-28 14:00:00 obsr1488063 S21581057 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305079052 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 40 United States US New York US-NY New York US-NY-061 30.0 J. Hood Wright Park L3511956 H 40.8464415 -73.9414896 2015-03-24 09:30:00 obsr200707 S22501289 Traveling P22 EBIRD 15.0 0.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS327590410 2021-03-26 06:21:54.883933 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Kings US-NY-047 30.0 Home L468661 P 40.6361565 -73.9647943 2015-03-20 08:00:00 obsr1666581 S23960466 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295595458 2021-03-26 06:11:29.8335 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora Village Park/Post Office L673517 H 42.7541244 -76.7033793 2015-02-08 11:55:00 obsr1828453 S21729523 Stationary P21 EBIRD 3.0 3.0 1 G1138996 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323904865 2021-03-24 20:58:53.646623 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-29 07:00:00 obsr72341 S23702257 Stationary P21 EBIRD 720.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316190420 2021-03-26 07:56:20.588749 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-05 10:15:00 obsr916370 S23248197 Traveling P22 EBIRD 160.0 4.989 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309681761 2021-03-19 16:08:39.161312 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 18 United States US New York US-NY Chautauqua US-NY-013 13.0 Watts Flats WMA L490893 H 42.0350422 -79.4263016 2015-04-12 09:15:00 obsr2910282 S22839266 Traveling P22 EBIRD 65.0 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294437490 2021-04-01 11:58:54.966271 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-02-01 07:46:00 obsr2211750 S21636778 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298828663 2021-03-26 06:29:56.44369 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 12 United States US New York US-NY Monroe US-NY-055 13.0 4 Woodside Drive, Penfield, NY L868257 P 43.1235553 -77.4714392 2015-02-21 14:35:00 obsr2716898 S22010441 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318178415 2021-03-24 19:48:44.880783 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Durand-Eastman Park--Zoo Rd. L139792 H 43.2279443 -77.557404 2015-05-10 06:55:00 obsr302343 S23360541 Traveling P22 EBIRD 170.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311002504 2021-04-01 11:49:53.573686 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Queens US-NY-081 30.0 Idlewild Park L2687800 H 40.6546016 -73.7547487 2015-04-18 10:29:00 obsr1982614 S22929634 Traveling P22 EBIRD 140.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320891930 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 20 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-18 07:00:00 obsr1731572 S23511908 Traveling P22 EBIRD 270.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311250706 2021-11-09 21:48:00.131772 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Ulster US-NY-111 13.0 Franny Reese SP L2657553 H 41.7044358 -73.9565511 2015-04-19 07:30:00 obsr2700041 S22944829 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289488850 2021-03-23 16:33:05.415158 5923 species avibase-15369E8E Dunlin Calidris alpina 2 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-01-02 07:45:00 obsr676630 S21223243 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308524689 2021-04-01 11:15:31.646886 5923 species avibase-15369E8E Dunlin Calidris alpina 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-08 10:35:00 obsr827632 S22759010 Traveling P22 EBIRD 215.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308238783 2021-03-19 16:02:45.308962 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-04-07 10:32:00 obsr800690 S22737474 Stationary P21 EBIRD 75.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294084798 2018-08-04 16:55:22 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 300 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-28 12:30:00 obsr1092576 S21609162 Stationary P21 EBIRD 37.0 4.0 1 G1129708 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320186637 2021-03-26 06:07:26.162322 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Allegany US-NY-003 28.0 Sanford Hollow Rd L3647514 P 42.0207966 -78.2336426 2015-05-09 obsr335882 S23473557 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295003946 2018-08-04 16:55:42 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Trumansburg-1679 Taughannock Blvdz L3339853 P 42.540826 -76.592319 2015-02-05 07:17:00 obsr1791331 S21683516 Stationary P21 EBIRD 88.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313413010 2021-03-30 18:54:05.959583 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Twin Islands L865061 H 40.8715659 -73.7853384 2015-04-26 17:40:00 obsr538462 S23085499 Traveling P22 EBIRD 110.0 0.8 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313888717 2015-05-06 17:46:59 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-04-28 18:15:00 obsr1839967 S23115449 Stationary P21 EBIRD 84.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305914995 2021-04-28 05:22:52.046239 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-03-28 14:32:00 obsr2519357 S22565420 Traveling P22 EBIRD 130.0 4.828 2.0 1 G1195672 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290503267 2015-01-11 18:58:59 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Suffolk US-NY-103 Gosman's Dock, Montauk, NY L3284961 P 41.076336 -71.9381225 2015-01-10 11:50:00 obsr2338506 S21304921 Stationary P21 EBIRD 21.0 8.0 1 G1105260 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312599635 2021-03-30 19:29:33.633096 7318 species avibase-C6772490 Yellow-crowned Night-Heron Nyctanassa violacea 9 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Narrow River Rd L168826 P 41.132015 -72.29454 2015-04-24 16:37:00 obsr2485753 S23034900 Traveling P22 EBIRD 32.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290398269 2021-04-01 12:32:15.282601 7429 species avibase-1327AC55 Osprey Pandion haliaetus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-10 08:30:00 obsr2363365 S21296375 Traveling P22 EBIRD 210.0 3.219 11.0 1 G1105067 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291452032 2021-03-01 11:20:54.007808 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-17 13:10:00 obsr2001485 S21381557 Traveling P22 EBIRD 49.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313078613 2018-01-26 20:09:30 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-04-26 10:18:00 obsr48167 S23064891 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292264311 2021-04-01 11:49:53.573686 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 11 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-01-19 07:30:00 obsr1982614 S21444372 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295033714 2016-02-07 21:13:47 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Ontario US-NY-069 13.0 Shortsville Rd. X Payne Rd., Farmington L800361 H 42.9615545 -77.3038334 2015-02-05 10:11:00 obsr1243175 S21686104 Stationary P21 EBIRD 3.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308525916 2015-04-08 18:29:12 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-04-07 07:35:00 obsr2426404 S22759143 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292470235 2021-03-23 16:21:52.613913 5976 species avibase-F4829920 American Woodcock Scolopax minor N 7 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. N1, sharp bend E to CR 27 [Palmyra_SE] L977011 P 43.0085543 -77.1591604 2015-01-21 08:33:00 obsr606693 S21481456 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291160071 2021-03-23 16:39:03.255227 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 45 United States US New York US-NY Richmond US-NY-085 Lemon Creek Pier L673443 H 40.5108301 -74.2097712 2015-01-15 15:47:00 obsr1958124 S21357709 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324354005 2021-03-19 16:29:59.503892 26890 species avibase-94A44032 European Starling Sturnus vulgaris 24 United States US New York US-NY Jefferson US-NY-045 13.0 17481 US Rt. 11 Lot 16-O L2592297 P 43.9166658 -75.9468019 2015-03-20 08:00:00 obsr188863 S23730704 Stationary P21 EBIRD 480.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296741295 2020-05-02 15:38:26 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 5 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-02-14 12:55:00 obsr943683 S21826163 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303668006 2021-04-01 11:15:31.646886 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Kings US-NY-047 Gravesend Bay, southern parking lot L1847433 H 40.5972024 -74.0049123 2015-03-16 11:30:00 obsr2505956 S22393196 Traveling P22 EBIRD 90.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317104645 2022-01-12 18:14:10.119384 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--South Entrance L825062 H 44.3641149 -74.1511381 2015-05-08 07:39:00 obsr2630526 S23301082 Traveling P22 EBIRD 105.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320829333 2018-08-06 22:30:20 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 6 United States US New York US-NY Herkimer US-NY-043 14.0 Lake Rondaxe, Burgers Camp L992096 P 43.761071 -74.9080167 2015-05-17 08:15:00 obsr620377 S23508413 Traveling P22 EBIRD 180.0 4.828 4.0 1 G1289899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306842532 2022-02-04 06:14:13.892644 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-03-27 15:50:00 obsr1548221 S22635668 Traveling P22 EBIRD 52.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298086272 2021-11-09 18:11:48.365552 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 3 United States US New York US-NY Dutchess US-NY-027 13.0 Ludlow Road, Millbrook L1264391 P 41.8437339 -73.6548328 2015-02-17 12:15:00 obsr1917973 S21946756 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312757043 2015-05-13 20:05:47 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 15 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3588768 P 43.429016 -75.903778 2015-04-25 08:51:00 obsr1477887 S23045651 Stationary P21 EBIRD 85.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309697954 2021-11-09 18:40:19.746769 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--West L3002249 H 41.9197784 -73.6751747 2015-04-13 09:01:00 obsr1442681 S22840249 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308717807 2015-04-09 18:09:02 6339 species avibase-8535345B Herring Gull Larus argentatus 20 United States US New York US-NY Suffolk US-NY-103 US-NY_780 30.0 USFWS_602 Wertheim NWR L295971 H 40.7754935 -72.8810839 2015-04-08 09:30:00 obsr129127 S22774043 Traveling P22 EBIRD 60.0 3.219 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321950277 2018-08-06 22:30:49 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-22 08:20:00 obsr1830659 S23577201 Traveling P22 EBIRD 210.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305316319 2021-03-23 17:32:20.03109 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 2 United States US New York US-NY Onondaga US-NY-067 13.0 Old Erie Canal--Laird Rd to Bennett's Crs Rd L795548 P 43.0852352 -76.3937089 2015-03-23 16:06:00 obsr2279567 S22519633 Rusty Blackbird Spring Migration Blitz P41 EBIRD 75.0 1.32 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319199107 2015-05-13 07:59:22 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-13 06:35:00 obsr2750470 S23418188 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304204227 2021-04-01 11:47:43.260314 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-03-19 12:00:00 obsr1633923 S22435219 Stationary P21 EBIRD 330.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310855821 2021-03-24 19:39:45.790741 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 12 United States US New York US-NY Genesee US-NY-037 13.0 Francis Road, Batavia, NY L1421017 P 42.9423971 -78.1622197 2015-04-18 08:38:00 obsr393804 S22920461 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311773009 2015-05-07 17:07:25 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 4 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-21 07:09:00 obsr455249 S22978710 Traveling P22 EBIRD 14.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306143737 2015-03-29 19:40:49 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Nassau US-NY-059 Baxter Pond Park L1813627 H 40.8338411 -73.6990004 2015-03-29 17:30:00 obsr2982024 S22582243 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288860344 2021-11-01 23:11:19.414929 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 4 United States US New York US-NY Kings US-NY-047 Coney Island Beach & Boardwalk L845817 H 40.5719793 -73.9778996 2015-01-03 08:15:00 obsr1711339 S21174142 Traveling P22 EBIRD 105.0 1.207 12.0 1 G1093829 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302933345 2021-04-01 12:18:57.910168 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-05 08:20:00 obsr2683910 S22335168 Stationary P21 EBIRD 33.0 2.0 1 G1178158 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313062231 2021-03-23 16:39:03.255227 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 5 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-26 09:02:00 obsr1958124 S23063879 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304884011 2015-03-23 13:22:40 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-03-23 13:18:00 obsr1958124 S22485467 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1157060904 2021-05-15 20:22:41.287209 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 08:30:00 obsr2018482 S88231303 Traveling P22 EBIRD 180.0 4.828 4.0 1 G6739976 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311220790 2018-08-04 17:10:29 303 species avibase-B59E1863 Canada Goose Branta canadensis 30 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-19 08:00:00 obsr2983460 S22942969 Traveling P22 EBIRD 180.0 8.047 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290693967 2021-03-30 19:29:33.633096 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-11 07:45:00 obsr2852365 S21320239 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296234803 2021-04-28 04:50:47.056803 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 25 United States US New York US-NY Kings US-NY-047 30.0 Hendrix Creek L821734 H 40.6482804 -73.8749027 2015-02-12 08:02:00 obsr1821546 S21779632 Traveling P22 EBIRD 38.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309077766 2015-04-11 13:13:52 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-04-11 12:05:00 obsr2172593 S22799522 Traveling P22 EBIRD 44.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312341373 2018-08-04 17:11:52 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Westchester US-NY-119 US-NY_871 30.0 Ward Pound Ridge Reservation L746022 H 41.2455683 -73.5888076 2015-04-23 07:30:00 obsr1336375 S23016372 Traveling P22 EBIRD 30.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290244330 2015-01-10 17:23:19 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 12 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-01-10 11:00:00 obsr271871 S21284063 Traveling P22 EBIRD 30.0 0.805 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293940534 2021-03-30 19:28:38.115458 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 50 United States US New York US-NY Seneca US-NY-099 13.0 Rt. 89 Near Varick Winery L3326592 P 42.7790349 -76.769886 2015-01-28 15:30:00 obsr528918 S21597545 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320874561 2017-12-20 02:29:11 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Marsh Mill Road, wetlands L925329 H 43.1175018 -75.9310198 2015-05-14 11:25:00 obsr1167884 S23510907 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305813695 2021-03-26 07:30:35.289997 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-27 09:37:00 obsr1303581 S22557848 Traveling P22 EBIRD 70.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315392800 2021-03-23 17:26:08.495143 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-01 08:30:00 obsr2172113 S23203704 Traveling P22 EBIRD 120.0 3.219 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296399004 2021-03-26 06:17:19.712573 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Erie US-NY-029 13.0 Home L2093742 P 42.7338768 -78.7242615 2015-02-13 09:11:00 obsr916033 S21794994 Stationary P21 EBIRD 68.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318416608 2018-02-01 15:11:46 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor15 L3513957 H 42.6073973 -76.0575746 2015-05-09 14:00:00 obsr620377 S23373522 Stationary P21 EBIRD 6.0 2.0 1 G1272237 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288793055 2021-03-30 19:13:38.458673 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-03 10:45:00 obsr1962295 S21166544 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314332392 2021-03-24 20:33:47.533911 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 United States US New York US-NY Tompkins US-NY-109 28.0 Thomas Rd., south (Six Mile Creek ponds & marsh) L388439 H 42.4020377 -76.3778114 2015-04-30 08:24:00 obsr2683910 S23142546 Traveling P22 EBIRD 10.0 3.54 2.0 1 G1244182 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320472091 2021-03-19 16:10:30.527219 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-15 07:50:00 obsr1334267 S23488382 Traveling P22 EBIRD 42.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289695612 2021-03-26 07:07:10.758746 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-07 14:21:00 obsr1958124 S21239303 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292102732 2015-01-20 10:58:39 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Delaware US-NY-025 28.0 Home L150688 P 42.248363 -74.82349 2015-01-20 09:57:00 obsr2582087 S21432269 Stationary P21 EBIRD 56.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304433737 2021-03-30 19:29:33.633096 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Suffolk US-NY-103 US-NY_808 30.0 Richmond Creek L143380 P 41.0333987 -72.4459076 2015-03-21 16:07:00 obsr2485753 S22452364 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307376276 2018-08-04 17:05:09 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 4 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary--HQ L92442 H 40.968598 -73.6647309 2015-04-03 08:30:00 obsr1055148 S22675135 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302057811 2021-03-30 19:29:33.633096 303 species avibase-B59E1863 Canada Goose Branta canadensis N 3 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-03-08 10:58:00 obsr1987335 S22260844 Traveling P22 EBIRD 24.0 0.161 2.0 1 G1172670 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316877729 2021-11-09 18:49:29.473548 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA--Cruger Island Rd. L3840109 H 42.0303286 -73.9201355 2015-05-06 17:00:00 obsr671490 S23288011 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295430021 2021-11-09 18:26:10.411612 27616 species avibase-D77E4B41 American Robin Turdus migratorius 20 United States US New York US-NY Dutchess US-NY-027 28.0 Sand Hill Road, Dover, NY L1830419 P 41.7282185 -73.554332 2015-02-07 11:00:00 obsr1062217 S21716309 Traveling P22 EBIRD 15.0 3.219 2.0 1 G1138686 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310906240 2018-08-04 17:09:41 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-18 09:45:00 obsr2100021 S22923659 Traveling P22 EBIRD 120.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323845581 2018-08-06 22:31:23 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 US-NY-Salamanca-250 S Mountain Rd L3683097 P 42.107674 -78.747451 2015-05-29 18:06:00 obsr2588479 S23697935 Traveling P22 EBIRD 100.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322136434 2021-04-01 12:32:15.282601 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 173 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-08 09:00:00 obsr2218212 S23589202 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311173063 2021-03-19 16:08:39.161312 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Chautauqua US-NY-013 13.0 College Lodge SUNY L2220962 H 42.3440743 -79.4279337 2015-04-19 07:55:00 obsr2497657 S22940137 Traveling P22 EBIRD 106.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306475524 2022-02-18 10:47:29.953615 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-31 07:06:00 obsr1062070 S22607931 Stationary P21 EBIRD 91.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321622516 2021-03-19 16:19:20.977326 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 4 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-13 13:45:00 obsr1379161 S23556781 Traveling P22 EBIRD 210.0 1.609 2.0 1 G1281347 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293215411 2021-04-01 10:55:39.308231 456 species avibase-D201EB72 American Wigeon Mareca americana X United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-01-25 11:41:00 obsr2588479 S21540147 Stationary P21 EBIRD 22.0 14.0 1 G1123069 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS432194133 2016-09-25 19:40:06 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-04-25 obsr2326876 S31756426 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761228 2021-03-26 07:56:20.588749 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 8 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-05 16:00:00 obsr2218212 S22629513 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323111630 2021-03-30 19:39:10.250398 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-26 07:35:00 obsr1895507 S23647149 Traveling P22 EBIRD 195.0 3.219 2.0 1 G1291190 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322514571 2021-03-24 19:48:44.880783 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 63 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-22 07:05:00 obsr334398 S23610336 Traveling P22 EBIRD 211.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323319371 2018-08-04 17:30:28 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Tonawanda WMA--Meadville Marsh L899745 H 43.1208458 -78.4629822 2015-05-27 10:18:00 obsr2588479 S23660910 Traveling P22 EBIRD 38.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313250759 2021-03-24 20:33:47.533911 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-04-26 17:20:00 obsr455249 S23074920 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304655560 2015-03-22 15:16:24 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-22 15:02:00 obsr2319580 S22468626 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313419563 2021-11-09 19:38:09.838976 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 3 United States US New York US-NY Orange US-NY-071 US-NY_853 28.0 Sterling Forest State Park Sterling Lake loop L1450565 P 41.2064204 -74.2646239 2015-04-26 09:00:00 obsr1257101 S23085966 Traveling P22 EBIRD 120.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304837379 2015-03-23 09:04:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-03-22 08:31:00 obsr2426404 S22481892 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319211714 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 The Ramble L2913156 P 40.7756181 -73.969692 2015-05-06 07:30:00 obsr2780117 S23418961 Traveling P22 EBIRD 80.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316002313 2016-03-06 22:55:23 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-05-05 05:25:00 obsr1154 S23237716 Traveling P22 EBIRD 36.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324201426 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-31 09:00:00 obsr1407710 S23720768 Traveling P22 EBIRD 180.0 1.609 2.0 1 G1297333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319324680 2015-10-17 16:11:51 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-13 06:20:00 obsr1886281 S23425318 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308624951 2018-08-04 17:08:11 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Oswego US-NY-075 13.0 Peter Scott Swamp L248391 H 43.2444498 -76.2705344 2015-04-09 10:00:00 obsr642516 S22766532 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317106562 2015-05-08 09:31:48 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 18:45:00 obsr1536880 S23301185 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311870383 2022-02-17 14:32:23.002448 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-21 13:14:00 obsr1605975 S22985058 Traveling P22 EBIRD 130.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310129257 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-13 16:57:00 obsr924076 S22871159 Traveling P22 EBIRD 182.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305822415 2021-04-01 11:15:31.646886 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota N X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-28 12:29:00 obsr152435 S22558442 Traveling P22 EBIRD 186.0 8.047 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290606373 2021-03-30 19:29:33.633096 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southaven County Park L2117422 H 40.8157861 -72.8972683 2015-01-11 09:51:00 obsr1189028 S21312528 Traveling P22 EBIRD 15.0 0.161 1.0 1 G1106580 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309194518 2021-11-09 21:02:40.234418 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria 1 United States US New York US-NY Rockland US-NY-087 28.0 Mount Ivy Environmental Park (Samuel G. Fisher Park) L2793908 H 41.1745362 -74.0356589 2015-04-11 14:40:00 obsr2346161 S22807119 Traveling P22 EBIRD 65.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318915441 2015-05-12 10:38:22 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-12 10:10:00 obsr195244 S23401851 Traveling P22 EBIRD 27.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319433506 2021-03-19 16:44:35.607263 341 species avibase-B86C504C Trumpeter Swan Cygnus buccinator 2 United States US New York US-NY Monroe US-NY-055 13.0 Whiting Rd. Nature Preserve L524399 H 43.251267 -77.4698353 2015-05-13 17:35:00 obsr302343 S23431479 Traveling P22 EBIRD 145.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311157300 2015-04-19 08:24:06 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Oswego US-NY-075 13.0 Peter Scott Swamp L248391 H 43.2444498 -76.2705344 2015-04-19 08:00:00 obsr642516 S22939161 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295480447 2021-03-26 07:20:31.408164 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Suffolk US-NY-103 30.0 Islip Terrace L3300334 P 40.764664 -73.181562 2015-02-07 09:00:00 obsr1477979 S21720572 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312718986 2021-03-26 07:07:10.758746 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 30 United States US New York US-NY Richmond US-NY-085 30.0 Mission of Immaculate Virgin, Mt. Loretto L890042 H 40.511334 -74.2196149 2015-04-25 07:13:00 obsr1958124 S23043140 Traveling P22 EBIRD 6.0 0.483 2.0 1 G1237338 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312013261 2015-07-09 21:50:33 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-22 07:48:00 obsr2211210 S22994595 Traveling P22 EBIRD 8.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313937039 2021-03-30 19:07:52.958398 6408 spuh avibase-E8FAD0BB Larus sp. Larus sp. 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-28 07:30:00 obsr2363365 S23118476 Traveling P22 EBIRD 270.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305620937 2021-04-01 12:32:15.282601 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Nassau US-NY-059 30.0 Tackapausha Museum and Preserve L617756 H 40.6685464 -73.482399 2015-03-27 14:15:00 obsr547602 S22543355 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308224701 2021-03-26 06:14:19.776945 622 species avibase-50566E50 Lesser Scaup Aythya affinis 10 United States US New York US-NY Columbia US-NY-021 13.0 Columbia-Greene Community College L2429955 P 42.2165679 -73.8188553 2015-04-07 08:20:00 obsr481595 S22736278 Traveling P22 EBIRD 115.0 0.322 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314603976 2018-08-04 17:13:16 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Genesee US-NY-037 13.0 Francis Road, Batavia, NY L1421017 P 42.9423971 -78.1622197 2015-05-01 08:38:00 obsr393804 S23159823 Traveling P22 EBIRD 31.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302159881 2021-03-24 20:33:47.533911 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Parking lot area L1772918 P 42.4803959 -76.4497041 2015-03-10 09:59:00 obsr1655171 S22268280 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303083120 2021-04-01 11:54:40.172593 662 species avibase-FB738385 Bufflehead Bucephala albeola 10 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-14 16:08:00 obsr1958124 S22347127 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321724641 2021-03-23 17:20:42.367321 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Chenango US-NY-017 28.0 Chenango River along RR tracks L3528471 P 42.3709608 -75.6386 2015-05-21 11:25:00 obsr1303581 S23562813 Traveling P22 EBIRD 95.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288867885 2021-11-09 17:55:26.90099 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Tamarack Lake L1132270 H 41.850767 -73.6563241 2015-01-03 11:30:00 obsr1917973 S21174675 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319271473 2021-03-23 17:26:08.495143 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Nassau US-NY-059 30.0 Stillwell Woods Park L525200 H 40.8336002 -73.4754729 2015-05-12 18:30:00 obsr2008637 S23422307 Traveling P22 EBIRD 75.0 2.414 1.0 1 G1269640 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304775198 2021-03-24 19:20:44.053843 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.0905225 2015-03-22 11:16:00 obsr1626739 S22477665 Traveling P22 EBIRD 54.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320893279 2018-08-06 22:30:28 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-18 07:30:00 obsr1830659 S23511085 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306342042 2021-03-30 19:13:38.458673 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 60 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-03-30 08:20:00 obsr983655 S22597213 Traveling P22 EBIRD 25.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290993223 2020-08-22 21:44:55 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Rd. L508804 H 43.0489452 -76.7335796 2015-01-14 12:45:00 obsr258946 S21344018 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294502722 2021-03-24 20:33:47.533911 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-01-30 14:30:00 obsr2673845 S21641961 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315374420 2021-03-19 16:02:45.308962 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia X United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-05-03 05:52:00 obsr1044068 S23202846 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307726232 2021-03-30 19:29:33.633096 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Heckscher Greenbelt L3540576 P 40.7124288 -73.1489468 2015-04-05 09:30:00 obsr706483 S22699263 Traveling P22 EBIRD 120.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314003699 2021-11-09 21:30:58.952293 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Ulster US-NY-111 13.0 Esopus Bend Nature Preserve L1422709 H 42.069482 -73.9586939 2015-04-29 06:52:00 obsr118701 S23122745 Traveling P22 EBIRD 163.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291175920 2021-03-30 19:07:12.70155 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 25 United States US New York US-NY Jefferson US-NY-045 US-NY_852 Wellesley Island L3192313 P 44.3383375 -75.9474564 2015-01-14 08:00:00 obsr2730202 S21358993 Traveling P22 EBIRD_CAN 300.0 20.0 6.0 1 G1110357 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316302445 2021-04-01 11:30:42.037277 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-05 16:30:00 obsr2072398 S23255557 Traveling P22 EBIRD 30.0 1.609 2.0 1 G1254080 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314967886 2021-04-01 12:32:15.282601 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-05-02 13:30:00 obsr544268 S23180634 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293226398 2021-11-09 19:56:27.431631 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 20 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt - Celery Ave L3301185 P 41.3685209 -74.4191498 2015-01-25 11:30:00 obsr1544235 S21540997 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS359810288 2021-03-26 06:09:25.361188 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Broome US-NY-007 28.0 Tracy Creek Rd. L3578052 P 42.0187322 -76.080392 2015-05-06 08:00:00 obsr998593 S26358877 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291129852 2021-03-26 08:11:28.0353 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 3 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-01-14 08:00:00 obsr1664745 S21355260 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317471030 2021-04-01 11:30:42.037277 33216 species avibase-1F09CCCC Wilson's Warbler Cardellina pusilla X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 08:40:00 obsr609516 S23321965 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300643851 2021-03-26 06:11:29.8335 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus X United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.7320406 -76.7083025 2015-03-02 11:45:00 obsr1826325 S22152311 Stationary P21 EBIRD 20.0 2.0 1 G1165349 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301343804 2021-03-26 06:29:56.44369 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 Female, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-07 08:30:00 obsr934639 S22205830 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312640494 2021-11-09 21:05:07.751154 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Rockland US-NY-087 US-NY_843 28.0 Bear Mountain SP--Doodletown Rd. L316486 H 41.3011999 -73.9869576 2015-04-21 16:00:00 obsr322870 S23037745 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310598867 2018-08-04 17:09:29 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Tompkins US-NY-109 28.0 Herman Rd. wetlands L1108700 H 42.5157265 -76.3355194 2015-04-17 08:01:00 obsr2001485 S22903591 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303144890 2022-02-17 14:32:23.002448 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-14 14:30:00 obsr2448957 S22351992 Traveling P22 EBIRD 300.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310612542 2018-08-04 17:09:30 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-04-17 09:04:00 obsr1655171 S22904545 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300295961 2021-04-26 04:57:02.963704 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-01 08:55:00 obsr642993 S22127750 Traveling P22 EBIRD 190.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303932422 2021-03-24 20:23:39.258075 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Suffolk US-NY-103 30.0 Uplands Farm Sanctuary L123000 H 40.8574672 -73.4535553 2015-03-16 12:51:00 obsr1107696 S22413882 Traveling P22 EBIRD 19.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313464132 2021-03-26 07:17:57.136956 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-26 10:33:00 obsr870166 S23088650 Stationary P21 EBIRD 13.0 2.0 1 G1239491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300109370 2015-02-28 18:26:59 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Montgomery US-NY-057 13.0 Barge Canal, Lock 10 L1508006 P 42.9185809 -74.1394084 2015-02-28 15:00:00 obsr739254 S22112832 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296138101 2021-03-19 16:44:35.607263 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Monroe US-NY-055 13.0 Mill Seat Landfill L3279893 P 43.0631189 -77.9339755 2015-02-11 11:50:00 obsr2504709 S21772012 Stationary P21 EBIRD 110.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314431219 2021-04-01 12:24:14.132004 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Washington US-NY-115 13.0 S of Schuy L2821266 P 43.064347 -73.574698 2015-04-30 16:49:00 obsr648176 S23148692 Traveling P22 EBIRD 95.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314356610 2021-03-30 19:19:56.775388 26890 species avibase-94A44032 European Starling Sturnus vulgaris X 18 United States US New York US-NY Ontario US-NY-069 13.0 Clifton Springs Hospital pond L1011619 H 42.9592995 -77.1374989 2015-04-30 09:58:00 obsr606693 S23143919 Stationary P21 EBIRD 12.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS303412275 2021-04-01 11:15:31.646886 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 18 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-03-15 12:35:00 obsr2519357 S22372858 Traveling P22 EBIRD 30.0 0.402 2.0 1 G1181612 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309700985 2021-03-24 20:16:00.852773 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 10 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-13 10:11:00 obsr1958124 S22840436 Traveling P22 EBIRD 37.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288537231 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-01-02 09:00:00 obsr119187 S21145807 Traveling P22 EBIRD 60.0 0.402 2.0 1 G1097274 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312157347 2021-11-09 18:12:38.053867 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Tymor Forest Park L1281237 H 41.6509499 -73.7020826 2015-04-22 08:00:00 obsr1339050 S23003893 Traveling P22 EBIRD 240.0 3.219 26.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299557515 2021-11-09 21:17:58.494129 30494 species avibase-240E3390 House Sparrow Passer domesticus 12 United States US New York US-NY Ulster US-NY-111 28.0 Lippincott Rd., Wallkill L1097498 H 41.6194441 -74.1931401 2015-02-22 13:30:00 obsr890053 S22069313 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307645130 2021-04-01 11:49:53.573686 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-04-05 07:45:00 obsr2574755 S22693806 Traveling P22 EBIRD 45.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316240949 2015-05-05 20:11:40 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail L1498729 H 42.4795201 -76.4551642 2015-04-30 13:45:00 obsr1708417 S23252012 Traveling P22 EBIRD 120.0 1.207 2.0 1 G1245229 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312825312 2021-03-19 16:44:35.607263 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-04-25 07:51:00 obsr991026 S23049585 Traveling P22 EBIRD 229.0 6.437 31.0 1 G1235125 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288560963 2022-03-06 12:39:33.700954 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-01-02 12:30:00 obsr2207991 S21147849 Traveling P22 EBIRD 90.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296515199 2021-03-24 21:01:50.671145 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 5 United States US New York US-NY Nassau US-NY-059 30.0 Coffin Woods Preserve L1864630 H 40.8760192 -73.585511 2015-02-13 09:30:00 obsr1445230 S21805591 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289742705 2021-11-09 21:05:37.97996 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Rockland US-NY-087 US-NY_853 28.0 Harriman SP--Beaver Pond Campground L3275319 H 41.2326763 -74.067285 2015-01-05 07:55:00 obsr1121454 S21242891 Traveling P22 EBIRD 50.0 2.012 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323061157 2019-09-28 10:49:42 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Chemung US-NY-015 28.0 Newtown Battlefield SP L242268 H 42.0456879 -76.7338494 2015-05-23 08:00:00 obsr1176598 S23643836 Traveling P22 EBIRD 120.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288686399 2021-03-30 19:29:33.633096 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 45 United States US New York US-NY Suffolk US-NY-103 30.0 Lake Capri L1133165 H 40.6961927 -73.3003521 2015-01-02 10:00:00 obsr2555972 S21157637 Stationary P21 EBIRD 10.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299670190 2021-03-26 06:09:25.361188 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 Female, Adult (2) United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-02-26 09:15:00 obsr879105 S22078110 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321747467 2018-08-06 22:30:44 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Cortland US-NY-023 28.0 Taylor Valley SF--day use area L3661816 P 42.637929 -75.968907 2015-05-21 12:34:00 obsr2279567 S23564322 Traveling P22 EBIRD 63.0 0.885 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289828573 2021-11-09 19:34:18.590596 23187 species avibase-ACB9D1C6 Purple Martin Progne subis 2 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-01-08 07:25:00 obsr1665312 S21249784 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315706152 2021-04-01 12:32:15.282601 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 60 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park /Hendr.Park L365070 P 40.6787341 -73.6936927 2015-05-04 08:25:00 obsr916370 S23220853 Traveling P22 EBIRD 125.0 3.541 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308076678 2021-04-01 11:30:42.037277 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 30 United States US New York US-NY New York US-NY-061 30.0 Highbridge Park--S of Alexander Hamilton Bridge L2741553 H 40.8390425 -73.9348309 2015-04-06 15:05:00 obsr1706920 S22724535 Traveling P22 EBIRD 35.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316133270 2021-04-01 10:47:08.851048 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-05-05 08:55:00 obsr1044068 S23244999 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318197881 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-10 07:15:00 obsr544268 S23361632 Traveling P22 EBIRD 90.0 2.414 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321120174 2018-08-06 22:30:25 591 species avibase-1929E1E1 Canvasback Aythya valisineria 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Whalen Memorial SF L1217557 H 42.1285297 -79.5270681 2015-05-17 12:05:00 obsr2418 S23525487 Traveling P22 EBIRD 55.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294675276 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Monroe US-NY-055 13.0 stakeout Yellow-headed Blackbird, Jeffords Rd., Rush (2015) L3304693 H 43.00988 -77.62134 2015-01-24 16:00:00 obsr1509427 S21655678 Stationary P21 EBIRD 45.0 4.0 1 G1133880 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307366590 2021-11-09 21:50:48.44865 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 2 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-04 07:00:00 obsr2218922 S22674499 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315588662 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 12:20:00 obsr1555046 S23214400 Traveling P22 EBIRD 180.0 4.828 2.0 1 G1250420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319591243 2021-04-01 11:15:31.646886 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 07:15:00 obsr1407710 S23440697 Traveling P22 EBIRD 450.0 8.047 25.0 1 G1270550 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288333124 2021-03-24 20:23:39.258075 32901 species avibase-1A0096F2 Mourning Warbler Geothlypis philadelphia 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Cedar Beach Marina L283643 H 40.6342526 -73.3447755 2015-01-01 13:25:00 obsr350767 S21129062 Traveling P22 EBIRD 65.0 0.322 4.0 1 G1089460 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288426399 2018-08-04 16:52:27 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY Monroe US-NY-055 13.0 Jacobs Road L826270 P 43.3429703 -77.9496288 2015-01-02 09:23:00 obsr334398 S21136240 Traveling P22 EBIRD 3.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292280778 2021-03-23 17:32:20.03109 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 2 United States US New York US-NY Onondaga US-NY-067 13.0 7474 James Street, Fayetteville, NY L269868 P 43.0374547 -76.0071565 2015-01-17 08:00:00 obsr1167884 S21445811 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296129659 2021-09-03 19:22:31.034431 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 80 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-02-11 10:37:00 obsr2497657 S21771360 Stationary P21 EBIRD 215.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340285446 2018-08-04 17:14:08 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Broome US-NY-007 28.0 Susquehanna River Vestal NY L3886574 P 42.092439 -75.9477246 2015-05-02 13:00:00 obsr1390749 S24887660 Stationary P21 EBIRD 60.0 2.0 1 G1396745 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294706228 2021-03-24 20:33:47.533911 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N Sherwood Pltform base - small brdg (0.15km) L1370979 P 42.4801875 -76.4541519 2015-02-03 08:02:00 obsr2307843 S21657991 Traveling P22 EBIRD 10.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303287193 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-15 11:50:00 obsr876649 S22362733 Traveling P22 EBIRD 85.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293586716 2021-04-01 11:15:31.646886 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus X United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-01-27 13:30:00 obsr2603801 S21569892 Traveling P22 EBIRD 120.0 5.23 3.0 1 G1126893 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313551262 2021-03-26 07:53:57.664705 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Livingston US-NY-051 13.0 Avon DEC L1279462 P 42.9022052 -77.6699013 2015-04-27 12:30:00 obsr72341 S23093827 Traveling P22 EBIRD 75.0 2.334 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314182202 2015-04-29 20:35:07 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 United States US New York US-NY Broome US-NY-007 28.0 Round Top L300892 P 42.0901971 -76.0712763 2015-04-26 11:30:00 obsr1626739 S23133521 Traveling P22 EBIRD 23.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305415594 2021-03-26 07:20:31.408164 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-03-21 08:00:00 obsr1592950 S22527391 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297777113 2021-03-26 07:20:31.408164 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven, Old Stump Road L1796581 P 40.774188 -72.89986 2015-02-16 06:32:00 obsr613775 S21919483 Stationary P21 EBIRD 160.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303458741 2015-05-07 17:07:24 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-03-16 07:08:00 obsr455249 S22376523 Traveling P22 EBIRD 13.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295354646 2021-12-03 21:50:44.732892 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-02-07 09:20:00 obsr666331 S21710546 Traveling P22 EBIRD 130.0 2.414 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308376889 2017-02-26 14:41:55 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 3 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP--Lakeshore E of Creek L633467 H 42.5451843 -76.5957087 2015-04-07 15:25:00 obsr2260025 S22747541 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288286935 2021-03-23 16:39:03.255227 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus N 6 United States US New York US-NY Richmond US-NY-085 30.0 Miller Field L391319 H 40.5674723 -74.0990352 2015-01-01 15:49:00 obsr1893950 S21125133 Traveling P22 EBIRD 6.0 0.032 2.0 1 G1088888 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296878963 2021-04-01 11:49:53.573686 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-02-07 07:00:00 obsr1982614 S21838337 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290140214 2018-08-04 16:52:58 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Seneca US-NY-099 13.0 US-NY-Trumansburg-9682 S Frontenac Rd L3281152 P 42.555829 -76.623067 2015-01-10 08:21:00 obsr1791331 S21274934 Traveling P22 EBIRD 49.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302750744 2022-02-17 14:32:23.002448 242 species avibase-D3A260BC Snow Goose Anser caerulescens X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-08 14:30:00 obsr2404047 S22320995 Traveling P22 EBIRD 280.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306064559 2021-04-01 12:32:15.282601 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 18 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-29 11:10:00 obsr2505956 S22576165 Traveling P22 EBIRD 150.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297941839 2021-03-26 07:56:20.588749 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-02-16 13:35:00 obsr1296638 S21934241 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299000919 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-02-22 11:00:00 obsr547602 S22024262 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300842891 2022-02-17 14:32:23.002448 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-03 13:45:00 obsr2796494 S22167064 Traveling P22 EBIRD 65.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS359629690 2019-07-23 17:28:28 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-25 17:28:00 obsr2022298 S26344765 Traveling P22 EBIRD 84.0 3.219 2.0 1 G1501690 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307568078 2021-03-24 20:33:47.533911 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail L1498729 H 42.4795201 -76.4551642 2015-04-04 17:30:00 obsr2154746 S22688558 Traveling P22 EBIRD 70.0 1.207 71.0 1 G1204834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320583379 2021-11-15 03:06:58.889978 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 07:55:00 obsr2844530 S23494208 Traveling P22 EBIRD 220.0 2.414 7.0 1 G1275166 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307401045 2021-03-30 19:13:38.458673 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 30 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-04 11:15:00 obsr1958774 S22677053 Stationary P21 EBIRD 14.0 2.0 1 G1205186 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281511 2018-12-04 21:15:28 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 5 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-01-21 07:49:00 obsr2683910 S21445887 Traveling P22 EBIRD 33.0 0.322 2.0 1 G1118454 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320351480 2018-08-06 22:30:12 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-05-16 12:17:00 obsr2420101 S23481909 Stationary P21 EBIRD 12.0 1.0 1 G1274032 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291919193 2021-04-01 12:45:19.712958 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 Unknown Sex, Immature (1); Unknown Sex, Adult (1) United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-01-19 10:00:00 obsr258431 S21417585 Stationary P21 EBIRD 30.0 10.0 1 G1115638 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306903325 2016-09-12 10:37:18 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cattaraugus US-NY-009 13.0 Little Bone Run Road L2364077 P 42.1071305 -79.0491414 2015-04-01 18:45:00 obsr2816437 S22639986 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302905430 2021-03-26 07:30:35.289997 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-13 08:08:00 obsr241086 S22332659 Traveling P22 EBIRD 43.0 0.161 2.0 1 G1178064 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315033775 2021-03-26 06:39:43.334073 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 30.0 Highbridge Park--N of Alexander Hamilton Bridge L2741557 H 40.8528936 -73.926117 2015-05-02 14:35:00 obsr1513140 S23184370 Traveling P22 EBIRD 30.0 0.885 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303160823 2021-03-30 19:03:28.117389 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-03-14 14:20:00 obsr1655171 S22353187 Traveling P22 EBIRD 10.0 0.483 2.0 1 G1181036 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314481420 2021-05-18 22:19:33.435413 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY St. Lawrence US-NY-089 14.0 Sterling Pond Rd, Parishville, NY L3603205 P 44.5375228 -74.7210045 2015-04-30 13:00:00 obsr1219559 S23152164 Traveling P22 EBIRD 240.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299100350 2021-03-26 07:52:59.845315 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus N 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-21 07:25:00 obsr1000124 S22034513 Area P23 EBIRD 95.0 2.59 2.0 1 G1157020 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290213785 2021-03-26 07:20:31.408164 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 3 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-01-07 07:00:00 obsr1592950 S21281334 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298335827 2020-11-26 15:25:33.000153 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Erie US-NY-029 13.0 Scajaquada Creek L3398583 P 42.9377688 -78.885237 2015-02-18 12:00:00 obsr36865 S21967841 Traveling P22 EBIRD 30.0 0.805 2.0 1 G5942640 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308131514 2022-03-05 22:03:50.715584 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-06 14:30:00 obsr444155 S22728787 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312871996 2018-08-04 17:12:12 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-04-25 12:45:00 obsr349211 S23052353 Traveling P22 EBIRD 165.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308095338 2015-04-06 18:43:27 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Oneida US-NY-065 13.0 Schneibles Inn L2783195 P 43.1647274 -75.7374541 2015-04-06 15:05:00 obsr1640315 S22726112 Traveling P22 EBIRD 31.0 2.414 1.0 1 G1208659 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS432192833 2016-09-25 19:34:57 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-04-09 obsr2326876 S31756318 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309506919 2021-03-26 07:20:31.408164 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Suffolk US-NY-103 30.0 Farm L137715 P 41.0795555 -72.4394913 2015-04-12 17:44:00 obsr2485753 S22826911 Traveling P22 EBIRD 37.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310478875 2021-04-01 11:54:40.172593 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 10 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-16 16:50:00 obsr1958124 S22894991 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293685661 2015-01-28 10:44:47 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Rensselaer US-NY-083 13.0 US-NY-Troy-6-8 120th St L3323693 P 42.780512 -73.674719 2015-01-28 10:43:00 obsr648176 S21577542 Stationary P21 EBIRD 1.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303212399 2021-03-24 20:16:00.852773 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-15 09:05:00 obsr1958124 S22356898 Traveling P22 EBIRD 5.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312311134 2021-03-30 13:50:38.713554 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 30 M C3 M United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-23 11:25:00 obsr647628 S23014251 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292191524 2021-03-30 19:39:10.250398 526 species avibase-56CCA717 Northern Pintail Anas acuta 3 United States US New York US-NY Nassau US-NY-059 30.0 Roslyn Pond Town Park L592300 H 40.7979205 -73.6473307 2015-01-19 13:15:00 obsr2086576 S21439068 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288459685 2021-03-23 16:39:03.255227 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-02 11:43:00 obsr1958124 S21139187 Traveling P22 EBIRD 12.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288181424 2018-08-04 16:52:21 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-01-01 11:38:00 obsr749440 S21115898 Traveling P22 EBIRD 110.0 3.219 2.0 1 G1088165 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320463843 2021-04-01 11:24:19.637193 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-16 09:30:00 obsr1030861 S23487995 Traveling P22 EBIRD 120.0 0.402 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292825128 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-01-22 13:30:00 obsr2759466 S21509515 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310731261 2021-03-23 16:52:36.900075 26890 species avibase-94A44032 European Starling Sturnus vulgaris 9 United States US New York US-NY Suffolk US-NY-103 Brush's Creek, Laurel L2691525 P 40.9587709 -72.5504065 2015-04-17 17:15:00 obsr2528068 S22912166 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322336510 2021-04-01 11:15:31.646886 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-23 11:00:00 obsr1659461 S23600196 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314003680 2015-04-29 09:35:32 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Oswego US-NY-075 13.0 Sunset Bay Park L250628 H 43.5211406 -76.3839446 2015-04-29 08:03:00 obsr642516 S23122744 Traveling P22 EBIRD 92.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317359318 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 08:30:00 obsr1706920 S23314883 Traveling P22 EBIRD 225.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323507865 2022-01-12 18:14:10.119384 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia X United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--South Entrance L825062 H 44.3641149 -74.1511381 2015-05-25 09:30:00 obsr1311434 S23673693 Traveling P22 EBIRD 150.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309312318 2021-11-09 19:55:29.587179 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 4 United States US New York US-NY Orange US-NY-071 28.0 Six and a Half Station Rd. Sanctuary L306143 H 41.4025242 -74.3499176 2015-04-12 05:55:00 obsr498923 S22814832 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310955275 2021-04-01 11:24:19.637193 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-17 08:30:00 obsr1782363 S22926713 Stationary P21 EBIRD 60.0 3.0 1 G1224397 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291498534 2021-04-01 12:26:53.827486 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis N 9 United States US New York US-NY Albany US-NY-001 13.0 Heartt Ave. & River St., Cohoes L2603935 H 42.7747568 -73.6894913 2015-01-17 11:45:00 obsr2512689 S21385309 Stationary P21 EBIRD 6.0 2.0 1 G1112279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307940185 2021-11-09 17:54:39.292468 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N 6 United States US New York US-NY Dutchess US-NY-027 13.0 Hunns Lake L1131036 H 41.9032193 -73.6476231 2015-04-06 09:08:00 obsr1732267 S22715033 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314599734 2021-03-19 16:02:45.308962 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 30 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-05-01 07:00:00 obsr646558 S23159601 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290185641 2017-08-16 16:18:29 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Theodore Roosevelt Nature Center L1029227 H 40.5885208 -73.546552 2015-01-10 12:15:00 obsr87415 S21278912 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301809943 2021-04-01 12:43:36.236969 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 1 United States US New York US-NY Tioga US-NY-107 28.0 East River Rd x Quarry Rd L3466847 P 42.081269 -76.318974 2015-03-08 11:26:00 obsr2173269 S22242198 Traveling P22 EBIRD 45.0 0.161 2.0 1 G1170844 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292054121 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 25 United States US New York US-NY New York US-NY-061 Randalls Island--NE fields and shoreline L1785381 H 40.7943072 -73.9138235 2015-01-19 12:05:00 obsr1548221 S21428320 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313941457 2021-03-23 16:48:08.60516 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 NY:SEN:Tyre: Wildlife Dr (personal) (Montezuma NWR) L2309816 P 42.9761125 -76.7373562 2015-04-28 08:27:00 obsr2760150 S23118718 Traveling P22 EBIRD 46.0 6.276 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321033162 2021-03-19 16:27:31.421791 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 73 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-04-21 11:10:00 obsr1104059 S23520530 Area P23 EBIRD 60.0 121.4057 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314330528 2020-03-19 18:56:44 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Tareyton Drive yard L1133152 P 42.4712343 -76.4592433 2015-04-30 06:38:00 obsr2683910 S23142431 Stationary P21 EBIRD 3.0 2.0 1 G1244168 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319491664 2022-02-17 14:32:23.002448 668 species avibase-9456DEDF Barrow's Goldeneye Bucephala islandica 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-12 11:48:00 obsr1601967 S23435066 Traveling P22 EBIRD 145.0 3.219 4.0 1 G1269781 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288546508 2021-03-26 07:53:57.664705 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-01-02 16:15:00 obsr1060479 S21146617 Stationary P21 EBIRD 57.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322665861 2021-03-24 19:48:44.880783 6339 species avibase-8535345B Herring Gull Larus argentatus 5 United States US New York US-NY Monroe US-NY-055 13.0 Cook Road L632488 P 43.3596968 -77.9799271 2015-05-11 09:00:00 obsr334398 S23618976 Traveling P22 EBIRD 8.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313986748 2021-03-26 06:55:00.227271 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-29 07:02:00 obsr606693 S23121684 Traveling P22 EBIRD 16.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288538442 2021-04-02 14:31:02.420768 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus X United States US New York US-NY US-NY_1726 13.0 Montezuma NWR (general area) L246782 H 42.9833651 -76.7562389 2015-01-02 11:00:00 obsr1826325 S21145903 Traveling P22 EBIRD 120.0 48.28 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315025114 2021-03-19 16:19:20.977326 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-02 07:30:00 obsr2571887 S23183868 Traveling P22 EBIRD 120.0 1.609 4.0 1 G1248106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323973638 2021-03-19 16:19:20.977326 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Erie US-NY-029 Wilkeson Pointe Park L3752674 P 42.8703137 -78.8843197 2015-05-24 07:00:00 obsr2155111 S23706442 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320808864 2021-03-26 07:46:52.994574 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata 5 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-05-18 05:08:00 obsr1154 S23507017 Traveling P22 EBIRD 55.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320322792 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-16 08:00:00 obsr2519357 S23480500 Traveling P22 EBIRD 200.0 4.023 2.0 1 G1273908 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309593752 2021-11-09 21:31:40.219848 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-12 15:30:00 obsr610423 S22832663 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299694084 2021-03-26 07:56:20.588749 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 2 United States US New York US-NY Nassau US-NY-059 30.0 N 2nd St. L2585098 P 40.738664 -73.6975363 2015-02-26 08:30:00 obsr143739 S22079777 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314437919 2016-02-16 11:54:50 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 Unknown Sex, Adult (1) United States US New York US-NY Madison US-NY-053 28.0 2275 Alexis Avenue, Hamilton, NY 13346 L2618579 P 42.8287667 -75.5174392 2015-04-30 18:45:00 obsr2843748 S23149122 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS326847277 2018-08-06 22:31:21 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Columbia US-NY-021 14.0 Larkspur Farm woods (private) L3150691 P 42.1917199 -73.6003561 2015-05-29 08:20:00 obsr2842267 S23904805 Traveling P22 EBIRD 90.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315244669 2021-03-26 07:46:52.994574 5922 species avibase-06B9BD24 Sanderling Calidris alba 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-03 07:09:00 obsr2270510 S23196277 Traveling P22 EBIRD 118.0 3.862 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310180744 2021-11-09 18:42:19.628792 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-04-15 06:14:00 obsr2175245 S22874716 Traveling P22 EBIRD 70.0 1.867 3.0 1 G1220726 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319136550 2021-04-01 12:32:15.282601 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-05-12 17:25:00 obsr1488063 S23414743 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324100055 2021-04-01 11:15:31.646886 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-30 13:08:00 obsr2404047 S23714306 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310171479 2021-12-08 07:58:41.562209 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-15 06:36:00 obsr2206421 S22874031 Traveling P22 EBIRD 37.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000767 2021-03-26 07:56:20.588749 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-12 16:00:00 obsr2218212 S23775917 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310078823 2021-11-15 03:06:58.889978 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-14 16:15:00 obsr1135516 S22867627 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296492642 2021-03-26 07:20:31.408164 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 8 United States US New York US-NY Suffolk US-NY-103 30.0 404 atlantic ave L3361253 P 41.1116928 -72.3614502 2015-02-13 09:05:00 obsr58886 S21803347 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288999519 2018-08-04 16:52:44 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-01-04 11:39:00 obsr59643 S21184863 Stationary P21 EBIRD 20.0 6.0 1 G1095921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300211456 2021-03-26 06:09:25.361188 406 species avibase-27B2749A Wood Duck Aix sponsa N 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-03-01 09:00:00 obsr879105 S22120785 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288779736 2021-04-01 12:32:15.282601 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 21 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach Bay Islands L1904830 H 40.6113808 -73.5494848 2015-01-03 08:00:00 obsr1832543 S21165409 Traveling P22 EBIRD 360.0 6.437 6.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309649546 2021-03-19 16:32:34.732091 483 species avibase-85625D75 Mallard Anas platyrhynchos N 25 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Runway Fields L2749733 P 40.594399 -73.885813 2015-04-13 06:45:00 obsr1821546 S22836393 Traveling P22 EBIRD 29.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295388530 2021-03-23 17:00:13.087107 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-07 08:35:00 obsr1655171 S21713153 Traveling P22 EBIRD 16.0 0.322 2.0 1 G1138387 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318962978 2021-03-26 06:39:43.334073 5976 species avibase-F4829920 American Woodcock Scolopax minor N X United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-05-12 13:00:00 obsr2313260 S23404378 Stationary P21 EBIRD 17.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320225388 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-16 07:15:00 obsr827632 S23475490 Traveling P22 EBIRD 300.0 7.9 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309331767 2021-03-24 20:33:47.533911 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Avi11 L6521871 P 42.4792859 -76.4511201 2015-04-12 08:18:00 obsr2307843 S22816043 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320365478 2021-03-19 16:44:35.607263 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 2 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-16 10:25:00 obsr528918 S23482634 Traveling P22 EBIRD 65.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299660622 2022-02-18 10:47:29.953615 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 Male, Adult (1) United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-02-26 07:16:00 obsr1062070 S22077396 Stationary P21 EBIRD 74.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305250588 2021-04-01 12:24:14.132004 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Washington US-NY-115 13.0 River Rd., Ft. Miller L2742155 H 43.1343397 -73.5892952 2015-03-25 13:00:00 obsr634484 S22514543 Traveling P22 EBIRD 45.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317106563 2015-05-08 09:31:48 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 18:45:00 obsr1536880 S23301185 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307491666 2021-03-30 19:13:38.458673 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 12 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--South Marina L458871 H 43.3060838 -77.7083373 2015-04-02 13:42:00 obsr2211210 S22683224 Stationary P21 EBIRD 26.0 3.0 1 G1204284 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314201898 2018-08-04 17:12:43 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Washington US-NY-115 13.0 Feeder Canal, Fort Edward L2850127 P 43.2796976 -73.5725126 2015-04-29 12:05:00 obsr2533499 S23134767 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323426789 2021-04-01 11:14:02.420281 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 4 United States US New York US-NY Jefferson US-NY-045 US-NY_778 13.0 Perch River WMA L253293 H 44.0861979 -75.9664464 2015-05-27 10:10:00 obsr2184966 S23668302 Traveling P22 EBIRD 90.0 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293703224 2021-04-01 11:15:31.646886 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-01-28 10:00:00 obsr1731572 S21578827 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291532049 2021-04-01 11:15:31.646886 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-17 12:05:00 obsr1189028 S21387984 Traveling P22 EBIRD 57.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305582608 2018-08-04 17:03:41 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 6 United States US New York US-NY Richmond US-NY-085 30.0 Tottenville High School L884731 P 40.5282185 -74.1924763 2015-03-27 07:55:00 obsr1958124 S22540367 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306778794 2021-03-24 20:56:44.139453 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-03-26 10:30:00 obsr2475075 S22630972 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291614788 2021-03-26 07:20:31.408164 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connnetquot Ave Central Islip, NY L2311687 P 40.7817763 -73.1776142 2015-01-17 09:30:00 obsr2534001 S21394273 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301782338 2021-04-01 12:18:57.910168 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-08 14:00:00 obsr2001485 S22240106 Traveling P22 EBIRD 60.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306188466 2021-04-01 10:58:47.067498 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Genesee US-NY-037 13.0 Cockram Rd. (Byron) L2616838 P 43.0669126 -78.0833101 2015-03-28 11:10:00 obsr408487 S22585692 Traveling P22 EBIRD 12.0 2.414 2.0 1 G1197926 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308851160 2018-08-04 17:08:20 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Oneida US-NY-065 14.0 Beaver Dam, Howd Rd, Camden, New York L2094585 P 43.3120796 -75.7817173 2015-04-10 09:57:00 obsr1640315 S22783802 Stationary P21 EBIRD 14.0 1.0 1 G1213234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317522995 2018-02-01 15:11:46 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor6 L3513948 H 42.5284473 -75.9639848 2015-05-09 12:12:00 obsr620377 S23325381 Stationary P21 EBIRD 8.0 2.0 1 G1272244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303083119 2021-04-01 11:54:40.172593 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis N 10 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-14 16:08:00 obsr1958124 S22347127 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312850546 2015-04-25 18:13:16 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 75 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-04-25 14:25:00 obsr1124114 S23051116 Stationary P21 EBIRD 66.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294550788 2021-04-01 12:14:19.266649 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 45 United States US New York US-NY Suffolk US-NY-103 Lake Montauk L3316869 P 41.062777 -71.923413 2015-01-25 12:00:00 obsr2913390 S21645880 Traveling P22 EBIRD 120.0 3.219 4.0 1 G1132921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295531640 2021-03-26 07:30:35.289997 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 40 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Lansing-21-31 Drake Rd L3346039 P 42.527881 -76.504231 2015-02-08 07:36:00 obsr2871406 S21724695 Traveling P22 EBIRD 7.0 2.092 3.0 1 G1138932 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316310240 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 12:50:00 obsr516108 S23256009 Traveling P22 EBIRD 385.0 2.414 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313233174 2018-08-04 17:12:21 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Saratoga US-NY-091 13.0 Ballston Creek Preserve L2837609 H 42.9666232 -73.8342962 2015-04-26 08:39:00 obsr1222746 S23073839 Traveling P22 EBIRD 147.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305477536 2021-03-31 04:08:01.38714 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Livingston US-NY-051 13.0 Harter Road L994427 P 42.5953532 -77.7058214 2015-03-26 16:42:00 obsr72341 S22532308 Traveling P22 EBIRD 10.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295216254 2018-08-04 16:55:44 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 9 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-02-06 13:47:00 obsr502830 S21698976 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351441 2015-03-03 10:02:11 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-10 08:15:00 obsr1792012 S21292457 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325020997 2015-09-13 11:57:51 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-31 09:35:00 obsr1079517 S23777446 Area P23 EBIRD 35.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308616029 2021-03-26 07:46:52.994574 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas X United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-04-09 08:00:00 obsr2798912 S22765876 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292282403 2022-02-17 14:32:23.002448 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-21 08:45:00 obsr187432 S21445946 Traveling P22 EBIRD 127.0 1.609 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299621030 2019-07-21 21:04:29 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 Male, Adult (2) United States US New York US-NY Ontario US-NY-069 13.0 US-NY-ONT Canandaigua--Outlet Creek behind Tim Horton's, Booth St. [Canandaigua_SE] L3440062 P 42.8769215 -77.270633 2015-02-25 11:14:00 obsr606693 S22074400 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290907280 2016-10-10 10:35:41 483 species avibase-85625D75 Mallard Anas platyrhynchos 79 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 06:45:00 obsr2574755 S21337232 Traveling P22 EBIRD 75.0 18.99 44.0 1 G1108327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310709461 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-17 08:00:00 obsr827632 S22910722 Traveling P22 EBIRD 205.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313979047 2021-04-01 10:57:06.520339 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 2 United States US New York US-NY Essex US-NY-031 13.0 Westport Grasslands L2507792 H 44.1497168 -73.4473479 2015-04-28 08:00:00 obsr2693145 S23121107 Traveling P22 EBIRD 47.0 8.047 2.0 1 G1242231 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304729021 2015-03-22 19:27:25 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-03-22 08:38:00 obsr2426404 S22474310 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314708379 2021-04-01 11:15:31.646886 11371 species avibase-75600969 Northern Flicker Colaptes auratus N 2 United States US New York US-NY Kings US-NY-047 30.0 Park Place (Backyard list), Brooklyn L1355824 P 40.678271 -73.9753908 2015-05-01 07:00:00 obsr827632 S23155824 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292828400 2021-12-19 10:32:19.574298 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 3 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-01-23 09:30:00 obsr2087436 S21509736 Traveling P22 EBIRD 180.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300383306 2021-04-01 11:42:50.317679 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 1 United States US New York US-NY Oneida US-NY-065 13.0 Delta Lake Dam L3440985 H 43.2736746 -75.4303479 2015-03-01 14:50:00 obsr660214 S22134196 Stationary P21 EBIRD 20.0 2.0 1 G1164099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296256086 2021-03-30 19:29:33.633096 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 11 United States US New York US-NY Suffolk US-NY-103 Cedar Beach, Town of Brookhaven L834922 H 40.9648162 -73.039813 2015-01-26 obsr1954215 S21781455 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311037408 2015-04-18 19:40:56 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-04-17 08:58:00 obsr2426404 S22931745 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301390812 2021-03-26 06:29:56.44369 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Monroe US-NY-055 13.0 Fairport L193537 T 43.09866 -77.44192 2015-03-06 16:45:00 obsr1578491 S22209632 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290402488 2021-03-30 19:29:33.633096 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 15 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-11 07:58:00 obsr2756208 S21296688 Stationary P21 EBIRD 80.0 6.0 1 G1105097 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302535412 2021-04-28 05:22:52.046239 32955 species avibase-41062654 Northern Parula Setophaga americana 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-11 15:34:00 obsr1601967 S22304549 Traveling P22 EBIRD 160.0 4.828 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292088164 2015-01-20 08:46:47 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 F C1 F United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N. & W. Trail intersection L250375 P 42.4790392 -76.4547486 2015-01-20 08:00:00 obsr2307843 S21430971 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305267241 2021-04-01 10:55:39.308231 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Erie US-NY-029 13.0 UB North Campus L1560817 P 43.0080012 -78.7856713 2015-03-25 07:45:00 obsr2597186 S22515784 Traveling P22 EBIRD 35.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314249410 2021-03-26 06:07:45.516082 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-04-29 15:45:00 obsr538462 S23137729 Traveling P22 EBIRD 125.0 1.1 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323086191 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-05-26 10:05:00 obsr1201479 S23645558 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298994839 2021-03-26 07:20:31.408164 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-02-22 13:49:00 obsr2485753 S22023789 Traveling P22 EBIRD 98.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315277546 2018-08-04 17:14:32 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 4 United States US New York US-NY Franklin US-NY-033 14.0 Gabriels- Powerline Cut L3065122 P 44.4339024 -74.1888714 2015-05-03 09:00:00 obsr1190754 S23197913 Traveling P22 EBIRD 50.0 0.483 2.0 1 G1248941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289152963 2021-03-24 21:10:11.310781 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 6 United States US New York US-NY Saratoga US-NY-091 13.0 Riverside Park South, Mechanicville L2605915 P 42.8952463 -73.6860739 2015-01-03 14:15:00 obsr2855945 S21197015 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317433590 2021-03-30 19:13:38.458673 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-09 07:42:00 obsr195244 S23319825 Traveling P22 EBIRD 81.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319345038 2021-04-01 12:26:53.827486 7346 species avibase-D4540F88 Glossy Ibis Plegadis falcinellus X United States US New York US-NY Albany US-NY-001 13.0 Stanton Pond L273495 H 42.5094164 -73.9012973 2015-05-13 17:15:00 obsr1154 S23426447 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305859447 2021-05-10 13:35:55.973042 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 12 United States US New York US-NY Schuyler US-NY-097 13.0 Catharine Creek WMA--Rock Cabin Rd. L1359885 H 42.369661 -76.8471749 2015-03-25 18:53:00 obsr2173269 S22561132 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314032775 2021-11-09 19:01:40.008558 11371 species avibase-75600969 Northern Flicker Colaptes auratus X United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-04-29 08:05:00 obsr2175245 S23124430 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314833531 2021-03-24 19:35:34.045988 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-02 06:41:00 obsr1603345 S23173567 Traveling P22 EBIRD 81.0 2.092 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288702404 2018-08-04 16:52:27 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Essex US-NY-031 13.0 Essex Ferry Dock L794629 H 44.3109228 -73.3510002 2015-01-02 02:00:00 obsr822321 S21159167 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316209629 2021-03-19 16:10:30.527219 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-05 07:47:00 obsr1334267 S23250075 Traveling P22 EBIRD 66.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS335622424 2021-03-30 19:40:59.354574 27616 species avibase-D77E4B41 American Robin Turdus migratorius 10 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--West Shore Trail, Visitor's Center to Lakeview Point L2975271 H 43.0804886 -76.2126732 2015-04-21 10:05:00 obsr2279567 S24551589 Traveling P22 EBIRD 98.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312497378 2021-03-22 08:58:29.008072 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-04-24 06:15:00 obsr33221 S23027022 Traveling P22 EBIRD 105.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304489870 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-21 09:52:00 obsr1189028 S22456634 Traveling P22 EBIRD 252.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305857746 2018-08-04 17:03:47 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 30.0 Swan River Preserve L3223099 P 40.7672004 -72.9939795 2015-03-27 15:56:00 obsr395994 S22561019 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS578241041 2019-09-12 16:16:32 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Dead Horse Point L169814 H 40.579594 -73.89466 2015-05-16 10:15:00 obsr282856 S42849385 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318484759 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:30:00 obsr1348614 S23377435 Traveling P22 EBIRD 300.0 3.0 6.0 1 G1265613 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304013269 2021-03-23 16:52:36.900075 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus N 3 United States US New York US-NY Suffolk US-NY-103 30.0 Kodu L3355598 P 40.9032789 -72.8895308 2015-03-19 06:55:00 obsr1954215 S22419895 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322643352 2018-08-04 17:30:13 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Chemung US-NY-015 28.0 Tanglewood Nature Center and Museum L1134359 H 42.1063498 -76.8769491 2015-05-24 18:29:00 obsr256142 S23617603 Traveling P22 EBIRD 114.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298436863 2021-11-09 21:21:28.347501 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 Shwangunk Grassland L1178145 P 41.64264 -74.20238 2015-02-18 12:27:00 obsr2152799 S21977062 Traveling P22 EBIRD 339.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301652483 2021-04-01 11:30:42.037277 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 18 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-08 09:00:00 obsr2319444 S22228794 Traveling P22 EBIRD 240.0 3.219 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318167556 2021-04-01 11:30:42.037277 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-10 07:00:00 obsr2605333 S23359955 Traveling P22 EBIRD 180.0 3.219 16.0 1 G1275937 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295171631 2021-03-24 21:06:05.39641 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-02-06 08:37:00 obsr2172593 S21695682 Stationary P21 EBIRD 59.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309717868 2022-03-05 22:03:50.715584 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 20 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-13 08:30:00 obsr444155 S22841511 Traveling P22 EBIRD 210.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303386211 2017-04-17 13:43:00 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connnetquot Ave Central Islip, NY L2311687 P 40.7817763 -73.1776142 2015-03-15 08:45:00 obsr2534001 S22370871 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310620832 2018-08-21 20:28:43 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-17 09:59:00 obsr1655171 S22905127 Traveling P22 EBIRD 26.0 0.322 2.0 1 G1222720 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311823973 2021-03-26 07:30:35.289997 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 20 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-19 06:37:00 obsr2683910 S22982258 Traveling P22 EBIRD 34.0 0.322 2.0 1 G1230106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310639942 2021-03-26 07:00:33.333856 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 30 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-04-17 10:24:00 obsr2574755 S22906270 Traveling P22 EBIRD 45.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314985234 2015-05-02 15:48:32 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Clinton US-NY-019 14.0 Beechwood L3371564 P 44.6131549 -73.6869335 2015-05-02 13:20:00 obsr1613652 S23181645 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303060391 2021-03-24 19:19:28.646223 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata 1 United States US New York US-NY Allegany US-NY-003 28.0 Chenunda Drive L1473325 P 42.0884737 -77.9247651 2015-03-14 08:18:00 obsr1310178 S22345384 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340068879 2021-11-09 19:57:48.990233 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 13 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-16 11:29:00 obsr2155111 S24870944 Traveling P22 EBIRD 166.0 0.402 4.0 1 G1395530 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315900546 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 17:25:00 obsr2796494 S23231566 Traveling P22 EBIRD 125.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317065164 2022-02-17 14:32:23.002448 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-07 13:00:00 obsr1284279 S23298830 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298098374 2021-11-09 20:12:16.773384 406 species avibase-27B2749A Wood Duck Aix sponsa 7 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-02-17 15:29:00 obsr1912104 S21947758 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307847694 2015-04-06 17:11:47 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-05 11:45:00 obsr479109 S22708184 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322273300 2018-08-06 22:30:58 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Essex US-NY-031 13.0 Noblewood Park L191517 H 44.3548774 -73.356574 2015-05-23 15:20:00 obsr2937317 S23596578 Traveling P22 EBIRD 48.0 0.885 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306401865 2021-04-01 12:18:57.910168 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 50 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-29 12:00:00 obsr2867163 S22601927 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310327859 2019-07-24 17:29:37 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr1958124 S22884582 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301195773 2021-03-30 19:29:33.633096 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 3 United States US New York US-NY Suffolk US-NY-103 US-NY_780 30.0 USFWS_602 Wertheim NWR L295971 H 40.7754935 -72.8810839 2015-03-04 08:30:00 obsr2607891 S22193209 Traveling P22 EBIRD 90.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311306905 2021-11-09 18:46:28.115333 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Dutchess US-NY-027 13.0 Pond Gut L3575877 P 41.7230521 -73.7546754 2015-04-19 11:45:00 obsr2770696 S22948222 Traveling P22 EBIRD 135.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308419458 2018-08-04 17:08:04 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Warren US-NY-113 14.0 Hampton Inn - Lake George, NY L3459429 P 43.4097942 -73.7124199 2015-04-08 08:02:00 obsr2328273 S22750874 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304852843 2021-04-01 11:54:40.172593 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) N 19 United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-03-22 13:53:00 obsr1893950 S22483259 Stationary P21 EBIRD 512.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295453809 2015-02-07 20:29:25 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 3 United States US New York US-NY Albany US-NY-001 13.0 Home - Niskayuna/Colonie L1788060 P 42.7599736 -73.8268423 2015-02-07 08:30:00 obsr777630 S21718452 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306294356 2021-04-01 10:47:08.851048 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 9 United States US New York US-NY Broome US-NY-007 28.0 Water St. River Walk L2455810 H 42.1064931 -75.9110038 2015-03-30 11:45:00 obsr1764243 S22593710 Traveling P22 EBIRD 32.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294830520 2021-03-26 07:52:59.845315 27616 species avibase-D77E4B41 American Robin Turdus migratorius 18 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-02 09:00:00 obsr316199 S21668574 Area P23 EBIRD 67.0 2.59 2.0 1 G1135026 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307287813 2021-04-01 10:53:25.818871 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Cortland US-NY-023 28.0 Marathon Village - Vicinity L2511078 P 42.4415744 -76.0321712 2015-04-01 18:20:00 obsr931232 S22668601 Traveling P22 EBIRD 20.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314509276 2021-03-24 19:23:17.886063 7200 species avibase-49D9148A Great Egret Ardea alba X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-04-30 obsr1395007 S23153890 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317234788 2021-03-19 16:19:20.977326 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 3 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2146060 H 42.756017 -78.862009 2015-05-08 10:29:00 obsr502830 S23307893 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303996021 2021-03-23 16:52:36.900075 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 20 United States US New York US-NY Suffolk US-NY-103 30.0 Miller Place-Yaphank Rd. Sod Farm L3490767 H 40.9265121 -72.9790027 2015-03-18 09:35:00 obsr758734 S22418509 Traveling P22 EBIRD 35.0 0.4 5.0 1 G1184873 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317732578 2021-03-26 06:17:19.712573 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-09 06:50:00 obsr736608 S23336824 Traveling P22 EBIRD 260.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295531641 2021-03-26 07:30:35.289997 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Lansing-21-31 Drake Rd L3346039 P 42.527881 -76.504231 2015-02-08 07:36:00 obsr2871406 S21724695 Traveling P22 EBIRD 7.0 2.092 3.0 1 G1138932 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309869032 2020-07-14 20:14:59 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-13 13:15:00 obsr1548221 S22852701 Incidental P20 EBIRD 1.0 0 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS300068555 2015-02-28 15:34:34 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Richmond US-NY-085 Saw Mill Creek Marsh L833906 H 40.6081575 -74.1885844 2015-02-28 12:55:00 obsr1893950 S22108959 Stationary P21 EBIRD 2.0 2.0 1 G1161942 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS619888236 2018-05-18 11:52:01 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 13.0 235 Enfield Falls Road, Ithaca, NY (42.402256,-76.557174) L7427014 P 42.402256 -76.557174 2015-01-23 09:16:00 obsr1008135 S45795143 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302506866 2022-02-04 06:14:13.892644 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-03-10 14:05:00 obsr658542 S22302107 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288465434 2021-03-26 07:07:10.758746 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 60 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-01-02 12:08:00 obsr1958124 S21139671 Traveling P22 EBIRD 6.0 0.032 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315386482 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:20:00 obsr1047805 S23203462 Traveling P22 EBIRD 462.0 8.047 3.0 1 G1259290 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309340581 2018-08-04 17:08:48 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 8 United States US New York US-NY Monroe US-NY-055 13.0 Hamlin - Martin Road L787717 P 43.3450822 -77.876637 2015-04-12 10:23:00 obsr2595828 S22816581 Stationary P21 EBIRD 14.0 2.0 1 G1216807 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306991822 2021-03-23 16:29:02.691496 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-02 09:55:00 obsr408487 S22646792 Stationary P21 EBIRD 230.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323256205 2021-03-30 19:13:38.458673 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-26 14:12:00 obsr528918 S23656491 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300270504 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-01 08:00:00 obsr547602 S22125677 Traveling P22 EBIRD 60.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318558882 2021-03-19 16:02:45.308962 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 3 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-11 08:30:00 obsr800690 S23381308 Traveling P22 EBIRD 169.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289367797 2021-04-01 11:15:31.646886 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Kings US-NY-047 30.0 Home L468661 P 40.6361565 -73.9647943 2015-01-05 07:25:00 obsr1666581 S21213588 Traveling P22 EBIRD 274.0 0.161 2.0 1 G1097923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288791629 2021-03-26 06:58:34.561206 622 species avibase-50566E50 Lesser Scaup Aythya affinis 15 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-01-03 15:02:00 obsr2588479 S21166438 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318279551 2018-08-06 22:29:33 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-10 07:30:00 obsr983655 S23366022 Traveling P22 EBIRD 70.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306640643 2021-04-01 12:29:50.209479 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus N 21 United States US New York US-NY Fulton US-NY-035 13.0 Bolster Hill Road L2695685 P 43.0133047 -74.591704 2015-03-31 12:03:00 obsr1000124 S22620830 Traveling P22 EBIRD 16.0 2.897 3.0 1 G1200099 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298480703 2018-08-04 16:57:26 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 40 United States US New York US-NY Richmond US-NY-085 Oakwood Beach L2501874 H 40.5533157 -74.1087484 2015-02-19 14:14:00 obsr1893950 S21980808 Stationary P21 EBIRD 5.0 2.0 1 G1153086 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310382251 2017-04-28 16:25:25 11371 species avibase-75600969 Northern Flicker Colaptes auratus 3 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-04-16 07:30:00 obsr1565981 S22888354 Traveling P22 EBIRD 42.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292621795 2018-08-04 16:54:51 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 30 United States US New York US-NY Nassau US-NY-059 Merchant Marine academy L3310002 P 40.8141665 -73.7640095 2015-01-22 10:30:00 obsr676630 S21493653 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291781758 2019-10-25 16:44:40 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 1 United States US New York US-NY St. Lawrence US-NY-089 US-NY_802 13.0 Barnhart Island Marina L800740 H 45.0017167 -74.8597455 2015-01-18 08:28:00 obsr1558090 S21407224 Traveling P22 EBIRD 14.0 0.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305609203 2021-04-22 12:55:05.75868 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Oneida US-NY-065 13.0 Waterville Home Grounds L1257983 P 42.9688865 -75.3351134 2015-03-27 11:00:00 obsr2139704 S22542448 Traveling P22 EBIRD 135.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321652377 2021-04-27 05:37:04.934789 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 10 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-21 05:59:00 obsr187432 S23558523 Traveling P22 EBIRD 145.0 1.046 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311158173 2021-03-26 07:00:33.333856 505 species avibase-C732CB10 American Black Duck Anas rubripes 120 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-19 07:32:00 obsr2574755 S22939206 Traveling P22 EBIRD 55.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306521770 2018-08-04 17:04:53 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-31 13:14:00 obsr1958124 S22611355 Traveling P22 EBIRD 4.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321831945 2018-08-06 22:30:25 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 2 United States US New York US-NY Allegany US-NY-003 28.0 Cobb Road L3117891 P 42.0089588 -77.7556086 2015-05-17 13:20:00 obsr2700440 S23569337 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302904409 2021-03-26 08:14:57.071052 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 2 United States US New York US-NY Westchester US-NY-119 30.0 Northwest Yonkers L3480034 P 40.9553 -73.882866 2015-03-13 16:00:00 obsr1333670 S22332566 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322127243 2021-12-23 15:00:47.137144 7233 species avibase-11512CF4 Little Blue Heron Egretta caerulea N 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-05-23 05:20:00 obsr1696616 S23588659 Traveling P22 EBIRD 19.0 0.032 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304911458 2015-03-23 15:48:44 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 12 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-03-23 15:30:00 obsr1349676 S22487643 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304757687 2021-04-01 12:32:15.282601 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-22 11:35:00 obsr2206421 S22476270 Traveling P22 EBIRD 190.0 1.609 2.0 1 G1189340 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1068778477 2021-02-08 19:30:09.923155 31268 issf avibase-95F9C840 Purple Finch Haemorhous purpureus Purple Finch (Eastern) Haemorhous purpureus purpureus 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 Bigelow Road, West Valley, New York L11769970 P 42.4588412 -78.5859551 2015-05-29 09:45:00 obsr2155450 S80677439 Traveling P22 EBIRD 15.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293149901 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY New York US-NY-061 30.0 Hudson River Park, Manhattan L1005616 P 40.7336582 -74.0106346 2015-01-25 11:50:00 obsr128156 S21534995 Traveling P22 EBIRD 60.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304338430 2021-11-09 19:32:09.664889 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region--Mission Land Rd. L1276461 H 41.2952799 -74.4947528 2015-03-20 09:00:00 obsr352522 S22445313 Traveling P22 EBIRD 75.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306762034 2021-04-01 12:32:15.282601 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-13 09:00:00 obsr2218212 S22629547 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289676550 2021-11-09 21:16:50.449374 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 1 United States US New York US-NY Ulster US-NY-111 28.0 Lippincott Road - Wallkill river L1079694 P 41.6124905 -74.1887426 2015-01-07 11:15:00 obsr444155 S21237951 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322136317 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 16 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-19 09:00:00 obsr2218212 S23589197 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314408731 2015-04-30 16:50:48 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 3 United States US New York US-NY Schuyler US-NY-097 US-NY_791 28.0 Connecticut Hill Road L3602551 P 42.3604582 -76.7129588 2015-04-30 09:45:00 obsr1042912 S23147258 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290471723 2021-03-30 19:43:32.881136 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-01-11 14:30:00 obsr2196583 S21302285 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301556756 2021-04-01 10:47:08.851048 26109 species avibase-BAC33609 Brown Creeper Certhia americana 3 United States US New York US-NY Broome US-NY-007 28.0 I-81 rest area L3462856 P 42.0021749 -75.7526368 2015-03-07 09:00:00 obsr547602 S22221698 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306942907 2021-11-09 19:51:09.255083 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus 7 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-03-29 09:05:00 obsr2228257 S22643099 Traveling P22 EBIRD 60.0 0.483 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313892265 2021-03-26 06:53:58.593564 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-04-28 07:00:00 obsr2812831 S23115694 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305047403 2021-03-26 07:30:35.289997 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-03-24 09:13:00 obsr1655171 S22498883 Traveling P22 EBIRD 14.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313330252 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pool L318103 H 40.7947416 -73.9606707 2015-04-26 09:00:00 obsr139757 S23079932 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294043123 2021-04-01 11:15:31.646886 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-30 15:45:00 obsr1659461 S21606046 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300151205 2018-08-04 16:58:23 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP--Lakeshore E of Creek L633467 H 42.5451843 -76.5957087 2015-02-28 08:29:00 obsr1655171 S22116092 Stationary P21 EBIRD 2.0 2.0 1 G1162598 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305252209 2020-07-20 09:16:51 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-03-25 14:26:00 obsr2224244 S22514707 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315913636 2021-03-26 06:29:56.44369 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-02 07:00:00 obsr2449897 S23232288 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289827431 2021-04-01 11:49:53.573686 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus N 22 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-01-08 08:06:00 obsr2574755 S21249677 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314351074 2015-04-30 16:42:11 33049 species avibase-136451CF Yellow-throated Warbler Setophaga dominica 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Saint Hyacinth Chapel and Cemetery L2057391 H 42.5051356 -79.3030071 2015-04-30 12:55:00 obsr2497657 S23143636 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298444969 2021-03-23 17:26:08.495143 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-02-19 08:02:00 obsr2505956 S21977976 Traveling P22 EBIRD 120.0 1.609 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292828128 2021-03-30 19:13:38.458673 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis N 10 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-23 15:49:00 obsr2774009 S21509724 Traveling P22 EBIRD 40.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295524084 2021-04-01 11:15:31.646886 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-07 10:45:00 obsr1536880 S21724068 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305877248 2018-08-04 17:04:26 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Fresh Creek - inlet L3200063 P 40.636302 -73.877244 2015-03-28 08:54:00 obsr1077730 S22562423 Traveling P22 EBIRD 45.0 0.805 11.0 1 G1195439 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305292155 2021-04-01 12:45:19.712958 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary--HQ L92442 H 40.968598 -73.6647309 2015-03-25 09:15:00 obsr979921 S22517763 Traveling P22 EBIRD 60.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323249000 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 8 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-26 16:00:00 obsr1731572 S23656071 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292687904 2015-01-22 20:17:00 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 20 United States US New York US-NY Rensselaer US-NY-083 13.0 Troy Federal Lock and Dam (Rensselaer Co.) L548084 H 42.750047 -73.6860516 2015-01-22 16:30:00 obsr1735540 S21498805 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291313441 2021-04-01 12:45:19.712958 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus N 1 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-01-15 11:30:00 obsr1832377 S21370583 Stationary P21 EBIRD 40.0 2.0 1 G1111010 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316858744 2018-08-06 22:29:05 303 species avibase-B59E1863 Canada Goose Branta canadensis 18 United States US New York US-NY Columbia US-NY-021 13.0 Olana State Historic Site L357372 H 42.2183005 -73.8287207 2015-05-07 07:30:00 obsr2766625 S23286935 Traveling P22 EBIRD 170.0 1.062 3.0 1 G1255911 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290307523 2021-04-28 05:26:15.958627 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park--Southwest L154031 H 40.593426 -73.92352 2015-01-10 13:44:00 obsr2404047 S21289138 Traveling P22 EBIRD 134.0 1.979 2.0 1 G1105751 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310392642 2018-12-30 09:55:14 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-04-16 08:46:00 obsr2321296 S22889168 Traveling P22 EBIRD 50.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304558738 2018-04-27 16:39:45 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Shinnecock Inlet, west L3087424 H 40.8421473 -72.4781388 2015-03-21 18:30:00 obsr2891998 S22461739 Traveling P22 EBIRD 15.0 0.161 2.0 1 G1190180 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306042788 2021-12-10 08:21:29.396662 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-29 09:30:00 obsr2211514 S22574578 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297572727 2021-03-26 06:52:34.887371 7429 species avibase-1327AC55 Osprey Pandion haliaetus 2 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-01-05 10:00:00 obsr2141910 S21900091 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314540789 2021-03-19 16:02:45.308962 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-05-01 06:30:00 obsr1830659 S23156000 Traveling P22 EBIRD 65.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001384 2021-03-26 07:56:20.588749 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 5 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-23 09:00:00 obsr2218212 S23775934 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307514828 2021-04-01 12:32:15.282601 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-04 13:30:00 obsr544268 S22684714 Traveling P22 EBIRD 45.0 4.828 2.0 1 G1204414 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296794768 2021-11-09 22:33:07.091247 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Sullivan US-NY-105 28.0 Shop-rite plaza Monticello L1350506 P 41.6682453 -74.6715073 2015-02-14 09:15:00 obsr444155 S21830868 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301735002 2018-08-04 16:59:04 5976 species avibase-F4829920 American Woodcock Scolopax minor 1 Unknown Sex, Adult (1) United States US New York US-NY Saratoga US-NY-091 13.0 Betar Byway L1528567 H 43.2984602 -73.6411847 2015-03-08 13:00:00 obsr1222746 S22235870 Traveling P22 EBIRD 21.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS626889661 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-12 08:50:00 obsr251507 S46244662 Traveling P22 EBIRD 40.0 0.805 2.0 1 G3252572 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308177804 2018-08-04 17:06:18 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-04-06 18:00:00 obsr1380963 S22732762 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1040979007 2021-11-09 17:49:09.783157 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY Dutchess US-NY-027 13.0 49 Willow Brook Rd, Clinton Corners US-NY (41.8740,-73.7510) L10928676 P 41.874033 -73.751028 2015-05-03 obsr583168 S78383075 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321950270 2018-08-06 22:30:49 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-22 08:20:00 obsr1830659 S23577201 Traveling P22 EBIRD 210.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311575845 2021-03-19 16:12:42.877422 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-04-18 08:10:00 obsr763723 S22926661 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294997433 2021-04-01 11:49:53.573686 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 45 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-02-05 07:22:00 obsr2574755 S21682363 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625434 2021-03-23 16:52:36.900075 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-17 08:00:00 obsr931103 S21395225 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312804096 2018-12-13 12:10:26 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 30 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-25 08:00:00 obsr646558 S23048582 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310947076 2021-03-19 16:54:27.713469 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Montgomery US-NY-057 13.0 West Ames Rd., horse farm L1208609 H 42.8466304 -74.6416926 2015-04-18 09:56:00 obsr2512689 S22926181 Traveling P22 EBIRD 108.0 2.414 3.0 1 G1224394 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316785603 2021-03-30 19:13:38.458673 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-07 07:30:00 obsr2223307 S23283181 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293991134 2021-03-24 20:21:40.993321 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 6 United States US New York US-NY Seneca US-NY-099 13.0 Cove L678244 P 42.6487254 -76.8698493 2015-01-30 obsr2731440 S21601659 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308518114 2021-03-23 16:30:20.514143 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Oswego US-NY-075 13.0 Derby Hill Bird Observatory L982887 P 43.5273932 -76.2341309 2015-04-08 10:00:00 obsr979921 S22758513 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309807247 2021-03-26 07:56:20.588749 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-13 16:15:00 obsr1693806 S22848341 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290718886 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 1 United States US New York US-NY New York US-NY-061 30.0 Bleecker Street Playground and Hudson St, Manhattan, NY L3288517 P 40.7366287 -74.0057531 2015-01-03 10:00:00 obsr1062217 S21322274 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310394829 2021-03-24 19:24:40.212356 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown, Southside L2023033 P 42.0758647 -79.2347717 2015-04-16 06:10:00 obsr2910282 S22889325 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324210485 2021-04-01 12:32:15.282601 23242 species avibase-94A1C447 Bank Swallow Riparia riparia X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-05-31 10:00:00 obsr87415 S23721321 Traveling P22 EBIRD 60.0 1.207 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312260986 2021-03-26 06:21:54.883933 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 07:18:00 obsr2519357 S23011035 Traveling P22 EBIRD 114.0 2.414 22.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296828706 2021-04-01 12:45:19.712958 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 25 United States US New York US-NY Westchester US-NY-119 30.0 Getty Square, 1 Alexander Street L3346120 P 40.9364 -73.90207 2015-02-14 09:40:00 obsr1348614 S21833856 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316191124 2016-12-29 19:44:41 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-05-05 16:25:00 obsr2270510 S23248227 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301410792 2015-03-07 14:53:08 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-06 10:00:00 obsr1633923 S22211250 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315913616 2021-04-01 12:32:15.282601 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 24 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-04 17:15:00 obsr271871 S23232287 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308367643 2021-03-19 16:19:20.977326 26278 species avibase-A381417F House Wren Troglodytes aedon 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Times Beach Nature Preserve L811486 H 42.8742747 -78.8825647 2015-04-07 16:15:00 obsr2597186 S22746861 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301612431 2022-02-13 06:32:05.759346 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 54 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-03-08 08:31:00 obsr2173269 S22225842 Traveling P22 EBIRD 24.0 0.483 2.0 1 G1170837 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308240308 2020-07-20 09:16:51 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-07 08:30:00 obsr660214 S22737606 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311163521 2021-03-23 16:47:03.540174 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-19 07:50:00 obsr1918430 S22939550 Traveling P22 EBIRD 50.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315648601 2021-03-19 16:54:27.713469 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Montgomery US-NY-057 13.0 Touareuna Rd, west L3555994 P 42.9209407 -74.0884018 2015-05-04 07:00:00 obsr1918430 S23217831 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310531749 2021-04-01 12:32:15.282601 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 8 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-15 09:00:00 obsr1494607 S22899046 Traveling P22 EBIRD 105.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293593471 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-27 15:10:00 obsr1668936 S21570422 Traveling P22 EBIRD 91.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS327121754 2021-03-23 16:45:39.358281 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe X United States US New York US-NY St. Lawrence US-NY-089 US-NY_802 Coles Creek State Park L3724925 P 44.8917778 -75.1379871 2015-04-18 09:30:00 obsr94526 S23924601 Traveling P22 EBIRD 60.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305961572 2021-03-26 07:07:10.758746 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-03-29 07:11:00 obsr1958124 S22568814 Traveling P22 EBIRD 6.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298442971 2021-03-24 19:27:13.077399 662 species avibase-FB738385 Bufflehead Bucephala albeola N 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-02-19 10:45:00 obsr142874 S21977812 Stationary P21 EBIRD 305.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290434734 2015-01-11 17:05:25 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.7298675 2015-01-11 12:50:00 obsr59643 S21299206 Stationary P21 EBIRD 25.0 12.0 1 G1105494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300643871 2021-03-26 06:11:29.8335 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.7320406 -76.7083025 2015-03-02 11:45:00 obsr1826325 S22152311 Stationary P21 EBIRD 20.0 2.0 1 G1165349 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299008557 2021-03-26 07:17:57.136956 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Seneca US-NY-099 13.0 Wyers Point and Wyers Point Rd. L285461 H 42.6736408 -76.7156979 2015-02-22 13:15:00 obsr1227417 S22024917 Traveling P22 EBIRD 60.0 6.437 5.0 1 G1156312 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313787591 2021-03-26 07:07:10.758746 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Richmond US-NY-085 30.0 Tottenville High School L884731 P 40.5282185 -74.1924763 2015-04-28 13:00:00 obsr1958124 S23108938 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311541989 2015-04-20 10:25:35 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-18 09:50:00 obsr1987335 S22962758 Incidental P20 EBIRD 2.0 0 G1228236 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311503744 2021-03-19 16:19:20.977326 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 US-NY-Grand Island-2821-2899 Stony Point Rd L3577638 P 43.03934 -78.945574 2015-04-19 19:27:00 obsr916033 S22960338 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290000758 2018-08-04 16:52:56 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-09 07:30:00 obsr544268 S21263943 Stationary P21 EBIRD 45.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323452618 2021-03-24 20:58:53.646623 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-27 07:30:00 obsr72341 S23670034 Stationary P21 EBIRD 720.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316014793 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-05 06:10:00 obsr1175815 S23238490 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308784174 2021-04-01 11:30:42.037277 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 4 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-09 08:38:00 obsr1548221 S22779033 Traveling P22 EBIRD 23.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311224312 2015-04-19 12:19:33 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-04-19 09:30:00 obsr660214 S22943205 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320393378 2021-03-26 06:17:19.712573 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-16 14:45:00 obsr1379161 S23484108 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288285482 2018-08-04 16:52:24 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Essex US-NY-031 13.0 Westport Boat Launch L479943 H 44.1887912 -73.4342089 2015-01-01 13:20:00 obsr2769235 S21125017 Stationary P21 EBIRD 18.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309851875 2018-01-07 20:13:45 279 species avibase-3E04020B Brant Branta bernicla 3 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-04-13 19:01:00 obsr2693145 S22851393 Stationary P21 EBIRD 30.0 3.0 1 G1218789 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310978339 2021-04-01 11:24:19.637193 658 slash avibase-B2BB260C Surf/Black Scoter Melanitta perspicillata/americana 1 United States US New York US-NY Monroe US-NY-055 13.0 Martin Road Park L3573105 H 43.0288482 -77.6528937 2015-04-18 13:10:00 obsr934639 S22928107 Traveling P22 EBIRD 45.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308231991 2019-07-23 17:28:15 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-07 08:50:00 obsr2480606 S22736870 Traveling P22 EBIRD 140.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311478109 2021-03-26 07:43:12.52294 11494 species avibase-20C2214E American Kestrel Falco sparverius 8 United States US New York US-NY Wayne US-NY-117 13.0 East Palmyra L1156478 P 43.0839344 -77.1562529 2015-04-19 11:00:00 obsr2561613 S22958843 Area P23 EBIRD 420.0 0.607 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291464732 2021-11-09 19:51:09.255083 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 Female, Adult (1); Unknown Sex, Immature (2); Male, Adult (2) United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-01-17 14:12:00 obsr1476305 S21382597 Traveling P22 EBIRD 50.0 0.402 9.0 0 G1112198 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314836886 2021-03-26 06:21:54.883933 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-01 07:20:00 obsr2152799 S23173781 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293353672 2021-03-26 08:11:28.0353 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Stillwater, NY 52 county route 76 L1926398 P 42.933103 -73.680332 2015-01-26 09:36:00 obsr2564462 S21550624 Stationary P21 EBIRD 68.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313078216 2021-04-01 12:11:50.996293 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Seneca US-NY-099 13.0 Lott Farm (restricted access) L262295 H 42.8790775 -76.794498 2015-04-26 10:08:00 obsr870166 S23064875 Stationary P21 EBIRD 7.0 2.0 1 G1239495 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315788041 2018-08-04 17:14:44 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-04 12:04:00 obsr1472872 S23225342 Traveling P22 EBIRD 112.0 6.952 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304110687 2021-03-30 19:40:59.354574 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Onondaga US-NY-067 US-NY_811 13.0 Onondaga Lake, clean up area L3500061 P 43.0702787 -76.2014937 2015-03-19 15:30:00 obsr2139704 S22427768 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303000887 2021-03-19 16:02:45.308962 32220 species avibase-AF49F890 Lincoln's Sparrow Melospiza lincolnii X United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-11 17:28:00 obsr1626739 S22340448 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315825449 2021-03-19 16:44:35.607263 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Cranberry Pond Nature Trail L511533 H 43.2975732 -77.7148819 2015-05-04 10:00:00 obsr2504709 S23227274 Traveling P22 EBIRD 98.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307228727 2021-03-30 19:29:33.633096 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 25 United States US New York US-NY Suffolk US-NY-103 30.0 Nissequogue River SP L501705 H 40.9004069 -73.2310757 2015-04-03 08:00:00 obsr2367532 S22664362 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303874575 2021-03-26 06:58:34.561206 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 2 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-03-18 12:47:00 obsr2588479 S22409287 Stationary P21 EBIRD 83.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289732930 2021-11-09 21:56:49.555782 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Ulster US-NY-111 28.0 JBNHS Wallkill Valley Raptors L3261415 P 41.7190555 -74.1366005 2015-01-03 08:00:00 obsr658445 S21242081 Traveling P22 EBIRD 300.0 24.14 37.0 1 G1093120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312635208 2022-01-12 18:14:10.119384 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--South Entrance L825062 H 44.3641149 -74.1511381 2015-04-24 16:30:00 obsr2630526 S23035205 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295379609 2019-07-23 17:27:16 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Suffolk US-NY-103 Orient Point to New London Ferry (NY side) L1358358 H 41.204437 -72.1976242 2015-02-07 10:00:00 obsr2326114 S21712467 Traveling P22 EBIRD 105.0 12.875 4.0 1 G1137698 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308912550 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-09 07:00:00 obsr1312694 S22788095 Traveling P22 EBIRD 120.0 2.414 14.0 1 G1213495 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311545363 2021-03-24 20:53:39.352228 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 4 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.8729471 2015-04-19 17:30:00 obsr2837502 S22962985 Stationary P21 EBIRD 45.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321653904 2018-08-06 22:30:42 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina X United States US New York US-NY Erie US-NY-029 13.0 WNY Land Conservancy Office L2058573 P 42.7636185 -78.5480404 2015-05-21 08:30:00 obsr2537615 S23558602 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318396844 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-10 15:00:00 obsr2078092 S23372475 Traveling P22 EBIRD 270.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296680383 2015-03-03 10:02:11 662 species avibase-FB738385 Bufflehead Bucephala albeola 6 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-02-14 08:30:00 obsr1792012 S21820311 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1018225993 2020-11-26 15:25:33.162866 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Erie US-NY-029 13.0 Maple st L3373566 P 42.9426227 -78.684243 2015-02-17 08:00:00 obsr1427970 S76722419 Stationary P21 EBIRD 120.0 2.0 1 G5942643 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311297694 2021-03-19 16:19:20.977326 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 35 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-19 08:20:00 obsr2071643 S22947665 Traveling P22 EBIRD 245.0 2.414 3.0 1 G1226244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316310797 2016-09-12 10:37:46 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 3 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP L246469 H 42.055 -78.7661111 2015-05-02 10:42:00 obsr2919757 S23256062 Stationary P21 EBIRD 11.0 2.0 1 G1254123 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323730596 2018-08-04 17:30:30 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-28 08:30:00 obsr1079517 S23690306 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289316435 2022-02-17 14:32:23.002448 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-03 08:35:00 obsr1152226 S21209468 Traveling P22 EBIRD 120.0 1.931 6.0 1 G1095047 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324222435 2018-08-06 22:30:50 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP - Yanty Creek Trail L269421 P 43.3618733 -77.9527094 2015-05-22 10:25:00 obsr2966702 S23722083 Traveling P22 EBIRD 35.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299943664 2015-02-27 19:58:40 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Delaware US-NY-025 28.0 Quail Ridge Area L2327396 P 42.2085425 -74.587276 2015-02-25 08:38:00 obsr883142 S22098934 Stationary P21 EBIRD 50.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320967819 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-18 08:05:00 obsr904434 S23515873 Traveling P22 EBIRD 195.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322678957 2021-04-01 11:15:31.646886 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 16 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-24 08:35:00 obsr150415 S23619818 Traveling P22 EBIRD 130.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308808218 2021-11-09 20:53:17.759253 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Rockland US-NY-087 30.0 Nanuet L1293607 P 41.0931306 -74.0298271 2015-04-09 16:30:00 obsr1932005 S22780783 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307924144 2021-03-26 07:30:35.289997 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Allan Treman State Marine Park L3542613 P 42.46125 -76.5155053 2015-04-05 16:30:00 obsr2535282 S22714008 Traveling P22 EBIRD 90.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292504199 2019-07-13 17:06:59 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Ontario US-NY-069 13.0 US-NY-ONT Manchester-Phelps TL--Pearl St. X old RR [Clifton Springs_CE] L3308538 P 42.9541219 -77.1316838 2015-01-21 13:29:00 obsr606693 S21484193 Traveling P22 EBIRD 9.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305656219 2015-03-27 18:14:41 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 La Salle Park L478203 H 42.89139 -78.89472 2015-03-27 10:56:00 obsr2324853 S22545995 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312117701 2021-04-01 11:15:31.646886 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-22 12:50:00 obsr2906952 S23001190 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306578962 2021-04-01 12:14:19.266649 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-03-31 10:30:00 obsr105122 S22615901 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310933856 2021-03-23 17:00:13.087107 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, airport area, Snyder Rd airport Gate O pullout L2231878 P 42.4983231 -76.4650047 2015-04-18 07:46:00 obsr2307843 S22925262 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310553369 2022-02-17 14:32:23.002448 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-16 10:00:00 obsr1284279 S22900516 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321095047 2021-11-09 18:42:19.628792 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-18 07:45:00 obsr1917973 S23524056 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305430700 2021-11-09 19:02:27.638861 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-03-25 09:00:00 obsr2573652 S22528639 Traveling P22 EBIRD 180.0 1.609 24.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311196695 2021-03-14 20:59:10.972684 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Suffolk US-NY-103 30.0 Springs (40 Hog Creek Lane) [ACW] L994020 P 41.0478128 -72.1558146 2015-04-18 13:17:00 obsr598381 S22941536 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319085169 2021-03-30 19:29:33.633096 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 13 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-29 07:24:00 obsr1987335 S23411926 Traveling P22 EBIRD 66.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS570330808 2021-03-23 17:26:08.495143 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Lido Beach Passive Nature Area L723695 H 40.5923663 -73.5957384 2015-04-18 obsr2509699 S42168753 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309774590 2018-08-04 17:08:56 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Westchester US-NY-119 30.0 White Plains Reservoir No. Two and Overflow Ponds L1072831 P 41.0533369 -73.7598038 2015-04-12 15:45:00 obsr2918150 S22846057 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298040397 2021-04-01 11:47:43.260314 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 2 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-02-17 11:52:00 obsr2224244 S21942708 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303352594 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-15 14:59:00 obsr152435 S22368298 Traveling P22 EBIRD 218.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316131724 2021-11-15 03:06:58.889978 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 10:00:00 obsr1223279 S23244907 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295446454 2022-02-17 14:32:23.002448 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-07 08:25:00 obsr2502574 S21717918 Traveling P22 EBIRD 130.0 0.805 2.0 1 G1138154 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298856296 2021-04-26 04:57:02.963704 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-21 08:14:00 obsr150415 S22012572 Traveling P22 EBIRD 111.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316291569 2021-03-19 16:32:34.732091 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 07:30:00 obsr2363365 S23254906 Traveling P22 EBIRD 360.0 4.828 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS450905321 2021-08-30 03:53:26.158283 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 30.0 Peter Detmold Park (incl. East River Overlook) L1264834 H 40.7534114 -73.9631798 2015-05-19 08:00:00 obsr150865 S33159035 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320725680 2018-08-04 17:27:50 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Fulton US-NY-035 13.0 Cline Rd., marsh (east) L1144401 H 43.061062 -74.6492232 2015-05-17 17:30:00 obsr1708031 S23501776 Traveling P22 EBIRD 78.0 12.875 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316524136 2015-05-06 17:45:38 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 5 United States US New York US-NY Broome US-NY-007 28.0 Stewart Road Marsh L3615126 P 42.097038 -75.999722 2015-05-05 12:20:00 obsr246469 S23267896 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312606562 2021-03-30 19:29:33.633096 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2798 30.0 Sagaponack Pond L385871 H 40.9084531 -72.2891808 2015-04-24 16:00:00 obsr1864342 S23035393 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309339508 2021-03-26 07:20:31.408164 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-04-12 08:00:00 obsr2011512 S22816504 Traveling P22 EBIRD 90.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313475238 2021-03-30 06:01:28.020715 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Inlet WMA--Inlet Boat Launch L201327 H 42.7225398 -77.7148231 2015-04-27 10:51:00 obsr642516 S23089338 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306209194 2021-03-30 19:03:28.117389 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 6 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.9339927 -76.7278183 2015-03-29 14:21:00 obsr1655171 S22587292 Traveling P22 EBIRD 28.0 2.414 2.0 1 G1198688 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS854869598 2021-11-15 03:06:58.889978 7429 species avibase-1327AC55 Osprey Pandion haliaetus 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 07:45:00 obsr251507 S63684853 Traveling P22 EBIRD 105.0 1.609 2.0 1 G4900157 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301779485 2021-04-01 12:45:19.712958 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 1 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L3466442 P 40.97071 -73.67014 2015-03-08 09:39:00 obsr1348614 S22239900 Traveling P22 EBIRD 101.0 1.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303022757 2015-03-14 12:53:23 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-03-14 10:43:00 obsr1958124 S22342298 Stationary P21 EBIRD 9.0 2.0 1 G1178966 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313740231 2018-08-04 17:12:36 591 species avibase-1929E1E1 Canvasback Aythya valisineria 6 United States US New York US-NY Oswego US-NY-075 13.0 Route 6 Wetlands L1762222 H 43.370432 -76.345643 2015-04-28 09:38:00 obsr642516 S23105982 Stationary P21 EBIRD 10.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322557716 2021-04-01 11:15:31.646886 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Kings US-NY-047 Shore Road Park L616218 H 40.6220738 -74.0406629 2015-05-24 08:30:00 obsr2078092 S23612758 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288286969 2021-12-03 21:50:44.732892 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 65 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-01-01 14:58:00 obsr1893950 S21125137 Traveling P22 EBIRD 14.0 0.064 2.0 1 G1088891 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300434074 2015-03-01 23:51:35 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Monroe US-NY-055 13.0 Furman Rd. L3450212 P 43.1149795 -77.393446 2015-03-01 12:00:00 obsr528918 S22137468 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297672261 2017-08-16 16:39:42 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Cedar Beach L1019111 P 40.6285456 -73.3529663 2015-02-16 13:00:00 obsr247620 S21909336 Traveling P22 EBIRD 10.0 4.828 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294368994 2021-04-01 10:45:00.916278 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-02-01 09:00:00 obsr1135516 S21631405 Traveling P22 EBIRD 150.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303751902 2021-03-19 16:32:34.732091 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-03-17 13:00:00 obsr2448957 S22399616 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309946559 2021-11-02 20:32:06.137153 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-04-14 08:30:00 obsr881968 S22858285 Traveling P22 EBIRD 60.0 0.805 10.0 1 G1219386 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309497874 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-12 14:10:00 obsr968874 S22826256 Traveling P22 EBIRD 110.0 6.437 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320277164 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 15:07:00 obsr152435 S23478076 Traveling P22 EBIRD 226.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305733486 2015-03-28 08:01:38 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Herkimer US-NY-043 13.0 Saltsman Road L677810 P 43.0091035 -74.7420502 2015-03-26 11:23:00 obsr2694889 S22551820 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312794201 2021-03-19 16:44:35.607263 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-04-25 07:30:00 obsr1534851 S23047785 Traveling P22 EBIRD 210.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303832790 2021-04-01 12:35:52.669792 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-18 09:25:00 obsr2172593 S22406129 Traveling P22 EBIRD 31.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305393764 2018-08-04 17:02:54 23291 species avibase-58C502EA Barn Swallow Hirundo rustica X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-26 09:30:00 obsr881968 S22525754 Traveling P22 EBIRD 10.0 0.161 9.0 1 G1192896 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310361037 2021-04-01 11:30:42.037277 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon N 25 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-15 15:50:00 obsr2493447 S22886865 Traveling P22 EBIRD 138.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288407451 2018-04-29 14:20:06 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Greene US-NY-039 13.0 New Baltimore Yard L7304489 P 42.4429607 -73.7862812 2015-01-01 07:00:00 obsr1181085 S21134468 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291897459 2021-11-09 18:28:47.632605 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Dutchess US-NY-027 14.0 Pond at Coleman Station Rd and Sheffield Hill Rd, Millerton, NY L2039282 P 41.9019656 -73.5179973 2015-01-16 13:00:00 obsr1062217 S21415952 Stationary P21 EBIRD 15.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS290828337 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 3 United States US New York US-NY New York US-NY-061 30.0 Trinity Church, Wall St. L3137653 H 40.7081797 -74.0120803 2015-01-13 12:28:00 obsr2179748 S21330579 Traveling P22 EBIRD 8.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307690941 2021-03-19 16:08:39.161312 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 8 United States US New York US-NY Chautauqua US-NY-013 13.0 Watts Flats WMA L490893 H 42.0350422 -79.4263016 2015-04-05 08:50:00 obsr2910282 S22696957 Traveling P22 EBIRD 120.0 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309052181 2021-04-01 11:30:42.037277 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-11 09:00:00 obsr512869 S22798002 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322514642 2021-03-19 16:44:35.607263 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Devil's Nose trails L985791 H 43.3669197 -77.9770732 2015-05-22 10:41:00 obsr334398 S23610337 Traveling P22 EBIRD 71.0 1.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309439806 2021-04-01 11:47:43.260314 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 6 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-12 10:40:00 obsr2561576 S22822356 Stationary P21 EBIRD 200.0 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299949630 2021-04-01 11:15:31.646886 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-27 13:30:00 obsr2310825 S22099355 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300607775 2019-07-23 17:27:36 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-02 10:15:00 obsr479109 S22149863 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310172990 2021-11-09 19:59:19.95918 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Orange US-NY-071 28.0 Caracara Stakeout L3565304 P 41.538952 -74.220227 2015-04-10 13:35:00 obsr1982614 S22874130 Stationary P21 EBIRD 250.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320582267 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-17 06:15:00 obsr547602 S23494151 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303586615 2021-03-23 17:26:08.495143 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP West End 2 L2677717 P 40.5849809 -73.5600221 2015-03-16 12:00:00 obsr143739 S22386854 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314272523 2021-03-26 06:17:19.712573 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-30 07:16:00 obsr502830 S23139321 Traveling P22 EBIRD 82.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319110704 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park, ramble L3639243 P 40.77772 -73.9687 2015-05-12 14:35:00 obsr363953 S23413366 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296816099 2021-04-01 12:32:15.282601 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-14 08:30:00 obsr2207991 S21832704 Traveling P22 EBIRD 270.0 8.047 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319873346 2021-04-01 11:15:31.646886 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-15 10:58:00 obsr152435 S23456719 Traveling P22 EBIRD 220.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320168905 2021-03-19 16:19:20.977326 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 6 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-16 07:08:00 obsr916033 S23470272 Traveling P22 EBIRD 275.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310400480 2018-02-01 15:11:46 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor8 L3513950 H 42.6887382 -76.003704 2015-04-16 08:09:00 obsr1092576 S22889661 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316794197 2021-03-24 19:35:34.045988 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Erie US-NY-029 13.0 Ecology & Environment, Inc. (Private) L682760 P 42.9367576 -78.6593628 2015-05-07 07:25:00 obsr48167 S23283640 Traveling P22 EBIRD 100.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319714336 2021-11-09 18:36:27.898762 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-05-14 12:43:00 obsr1732267 S23447704 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288250609 2021-11-09 21:31:40.219848 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-01-01 15:00:00 obsr2214649 S21121790 Traveling P22 EBIRD 30.0 0.805 4.0 1 G1088581 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310149916 2018-08-04 17:09:05 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina X United States US New York US-NY Oswego US-NY-075 US-NY_768 13.0 Three Mile Bay WMA--Phillips Pt. L298675 H 43.2392316 -76.0503864 2015-04-14 06:05:00 obsr979921 S22872440 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321421810 2022-02-17 14:32:23.002448 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-20 07:55:00 obsr1605975 S23544452 Traveling P22 EBIRD 71.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313760794 2020-07-20 09:16:51 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-28 08:50:00 obsr660214 S23107254 Traveling P22 EBIRD 100.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310319302 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-15 11:00:00 obsr1055148 S22883942 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315461117 2021-11-15 03:06:58.889978 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 09:10:00 obsr1706920 S23207436 Area P23 EBIRD 300.0 14.5687 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291167854 2021-04-01 12:35:52.669792 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Andrews Rd., feeder canal L1365459 H 43.0247612 -76.0673117 2015-01-15 10:55:00 obsr1167884 S21358342 Traveling P22 EBIRD 65.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295537262 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-02-07 13:00:00 obsr1137265 S21725095 Stationary P21 EBIRD 120.0 2.0 1 G1138958 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303834304 2021-03-22 09:17:32.016297 483 species avibase-85625D75 Mallard Anas platyrhynchos N X United States US New York US-NY Oneida US-NY-065 13.0 Boyd Rd. at Reber Rd. L3496513 P 43.1370698 -75.5235386 2015-03-18 09:20:00 obsr545221 S22406240 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290055234 2021-11-09 17:55:26.90099 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Tamarack Lake L1132270 H 41.850767 -73.6563241 2015-01-09 14:00:00 obsr1917973 S21268423 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311804274 2021-04-01 11:15:31.646886 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 40 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 06:59:00 obsr41879 S22980826 Traveling P22 EBIRD 121.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309852064 2018-01-07 20:13:45 7200 species avibase-49D9148A Great Egret Ardea alba 3 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-04-13 19:01:00 obsr2420101 S22851410 Stationary P21 EBIRD 30.0 3.0 1 G1218789 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312382923 2021-03-24 21:10:11.310781 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Saratoga US-NY-091 13.0 36 Curt Blvd L2229955 P 43.0492325 -73.8315735 2015-04-23 10:30:00 obsr907769 S23019305 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322501593 2018-08-06 22:31:01 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 16 Female, Adult (1); Male, Adult (15) United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-05-24 09:30:00 obsr2766625 S23609659 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316157839 2021-03-26 06:29:56.44369 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-05-05 14:53:00 obsr934639 S23246238 Traveling P22 EBIRD 66.0 2.012 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310337593 2019-07-23 17:28:19 11371 species avibase-75600969 Northern Flicker Colaptes auratus 5 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr2883074 S22885228 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135759 2021-03-26 07:56:20.588749 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-07 09:00:00 obsr2218212 S23589177 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310278209 2015-04-15 21:04:52 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Vestal-228 Juneberry Rd L2864635 P 42.05315 -76.036026 2015-04-15 16:20:00 obsr1764243 S22881025 Traveling P22 EBIRD 105.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318974637 2018-08-04 17:07:59 486 domestic avibase-07FFC1E5 Mallard (Domestic type) Anas platyrhynchos (Domestic type) 3 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Puddler Marsh L870076 H 43.0067812 -76.7425919 2015-04-07 13:30:00 obsr533086 S23405016 Traveling P22 EBIRD 45.0 0.805 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315278150 2021-04-01 11:30:42.037277 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 06:49:00 obsr2313260 S23197943 Traveling P22 EBIRD 322.0 3.219 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322883631 2018-08-06 22:31:08 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 28.0 Hannacroix Ravine Preserve L123023 H 42.57167 -73.99778 2015-05-25 12:26:00 obsr1154 S23632348 Traveling P22 EBIRD 114.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313485450 2021-03-01 11:20:54.007808 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-26 16:00:00 obsr2200680 S23089961 Stationary P21 EBIRD 5.0 4.0 1 G1239385 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305196057 2021-03-24 20:33:47.533911 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-03-25 07:02:00 obsr455249 S22510186 Traveling P22 EBIRD 8.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314003696 2021-11-09 21:30:58.952293 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Ulster US-NY-111 13.0 Esopus Bend Nature Preserve L1422709 H 42.069482 -73.9586939 2015-04-29 06:52:00 obsr118701 S23122745 Traveling P22 EBIRD 163.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310272130 2022-02-27 09:35:49.066489 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-04-15 13:20:00 obsr2087436 S22880590 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289178102 2021-03-30 19:43:32.881136 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 4 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Rye Marshland Conservany L1928025 P 40.9563726 -73.704958 2015-01-03 10:15:00 obsr1788273 S21198781 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320324194 2021-11-09 18:47:29.512936 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Dutchess US-NY-027 28.0 Dover Furnace Rd L3648502 P 41.69006 -73.591194 2015-05-16 14:34:00 obsr1732267 S23480556 Traveling P22 EBIRD 11.0 4.023 2.0 1 G1277163 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316310666 2017-03-21 22:11:35 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Administration Building L813773 H 42.1003559 -78.7494099 2015-05-02 11:15:00 obsr2919757 S23256050 Stationary P21 EBIRD 75.0 2.0 1 G1254120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295642630 2016-12-28 04:22:20 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-New Haven- Kibby Rd - Home (Private) L5185742 P 43.449899 -76.30402 2015-02-08 10:20:00 obsr2945658 S21733519 Stationary P21 EBIRD 122.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315257532 2021-03-26 06:17:19.712573 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Erie US-NY-029 13.0 Penn Dixie Site L697723 H 42.7778796 -78.8315096 2015-05-03 08:51:00 obsr488746 S23196943 Traveling P22 EBIRD 151.0 1.609 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312855346 2015-08-02 20:45:19 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake Park L792637 H 42.7759994 -77.6113701 2015-04-25 14:00:00 obsr1561508 S23051394 Stationary P21 EBIRD 30.0 2.0 1 G1235908 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001467 2021-03-26 07:56:20.588749 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-24 16:00:00 obsr2218212 S23775937 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320701673 2015-05-17 20:19:18 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Herkimer US-NY-043 13.0 Saltsman Rd Bog L2143215 P 43.008162 -74.7421253 2015-05-17 13:15:00 obsr1708031 S23500541 Historical P62 EBIRD 25.0 3.219 2.8328 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300919451 2018-08-04 16:58:44 6580 species avibase-88AB027C Black Skimmer Rynchops niger 6 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-04 14:00:00 obsr1830659 S22173080 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311376159 2015-08-16 11:38:53 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Steuben US-NY-101 28.0 Steele ponds 2 L210415 P 42.135867 -76.9741845 2015-04-16 09:20:00 obsr562284 S22952514 Traveling P22 EBIRD 55.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301812376 2021-11-09 21:05:39.81801 32901 species avibase-1A0096F2 Mourning Warbler Geothlypis philadelphia 8 United States US New York US-NY Rockland US-NY-087 US-NY_843 28.0 Iona Island L3466877 P 41.3076003 -73.9766121 2015-03-08 10:15:00 obsr1872991 S22242430 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314921706 2022-02-17 14:32:23.002448 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-02 08:30:00 obsr2289692 S23178288 Traveling P22 EBIRD 150.0 1.931 5.0 1 G1247128 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299109216 2021-04-26 04:57:02.963704 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-22 13:30:00 obsr454647 S22035237 Traveling P22 EBIRD 120.0 0.805 2.0 1 G1157090 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307690944 2021-03-19 16:08:39.161312 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Watts Flats WMA L490893 H 42.0350422 -79.4263016 2015-04-05 08:50:00 obsr2910282 S22696957 Traveling P22 EBIRD 120.0 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312844096 2018-08-04 17:12:14 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.7628129 2015-04-25 14:00:00 obsr2214649 S23050724 Traveling P22 EBIRD 69.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304095647 2021-04-01 12:18:57.910168 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Tompkins US-NY-109 13.0 Newman Municipal Golf Course L2158758 H 42.4561318 -76.5052153 2015-03-19 18:20:00 obsr59643 S22426626 Stationary P21 EBIRD 12.0 2.0 1 G1185731 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324385085 2021-03-26 06:11:29.8335 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Cayuga US-NY-011 US-NY_1726 13.0 Duck Lake L3047142 P 43.1493445 -76.6843987 2015-05-29 07:30:00 obsr2050665 S23732899 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323826693 2021-03-23 17:20:04.546757 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Wolf Run Rd. L246481 H 42.0197222 -78.8863889 2015-05-29 07:19:00 obsr2588479 S23696729 Traveling P22 EBIRD 187.0 4.023 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307721116 2021-03-19 16:32:34.732091 31530 species avibase-B48335B1 Pine Siskin Spinus pinus N 50 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-05 09:21:00 obsr1605975 S22698872 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310295955 2019-10-21 19:06:00 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-15 19:19:00 obsr1165633 S22882266 Incidental P20 EBIRD 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309960742 2021-03-23 16:21:52.613913 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Ontario US-NY-069 13.0 Finger Lakes Community College (Ontario Co.) L661673 H 42.8692335 -77.2442722 2015-04-14 09:55:00 obsr983655 S22859154 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295517808 2015-02-08 09:48:22 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-02-08 09:42:00 obsr1958124 S21723509 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323441683 2021-11-09 18:47:57.38119 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Dutchess US-NY-027 28.0 Berkshire Road, Dover Plains, NY L3677173 P 41.67904 -73.5525119 2015-05-26 18:30:00 obsr1442681 S23669301 Traveling P22 EBIRD 60.0 3.219 3.0 1 G1293108 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321155089 2021-03-19 16:02:45.308962 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY Broome US-NY-007 28.0 Tri-City Airport L2347159 H 42.08439 -76.093867 2015-05-19 07:18:00 obsr1764243 S23528166 Traveling P22 EBIRD 17.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309338232 2021-03-26 07:16:36.956617 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-12 07:45:00 obsr1918430 S22816420 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305915146 2021-11-15 03:06:58.889978 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-21 09:25:00 obsr856524 S22565431 Traveling P22 EBIRD 175.0 1.931 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319168333 2019-12-12 11:49:42 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Cheney Point, Chautauqua Lake L2853116 H 42.1319065 -79.3897203 2015-05-12 08:30:00 obsr2418 S23416402 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309788852 2015-04-13 17:03:24 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-04-13 07:20:00 obsr646558 S22847011 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306244093 2018-08-04 17:04:38 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-03-29 11:08:00 obsr67057 S22589785 Stationary P21 EBIRD 15.0 4.0 1 G1197072 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313209659 2021-04-01 11:54:40.172593 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Richmond US-NY-085 Conference House Park L302089 H 40.4995098 -74.2516756 2015-04-25 07:30:00 obsr155915 S23072457 Traveling P22 EBIRD 70.0 2.414 2.0 1 G1237337 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294405278 2022-02-17 14:32:23.002448 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 20 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-01 13:00:00 obsr1711339 S21634311 Traveling P22 EBIRD 90.0 0.805 3.0 1 G1131719 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311008504 2015-04-18 18:10:15 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 4 United States US New York US-NY Rensselaer US-NY-083 13.0 Papscanee Island Nature Preserve L488165 H 42.5762804 -73.7484741 2015-04-18 08:20:00 obsr979921 S22930009 Traveling P22 EBIRD 55.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000256 2021-03-26 07:56:20.588749 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-02 09:00:00 obsr2218212 S23775900 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302110442 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 45 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-03-09 16:19:00 obsr924076 S22264883 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314014346 2021-04-01 11:54:40.172593 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 Male, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-29 08:00:00 obsr1620361 S23123354 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308754394 2019-07-23 17:28:14 303 species avibase-B59E1863 Canada Goose Branta canadensis 500 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Dr. N of E. Shore Park L890223 P 42.4776362 -76.5069437 2015-04-05 17:01:00 obsr2683910 S22776764 Stationary P21 EBIRD 14.0 2.0 1 G1212796 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291339132 2021-03-24 20:58:53.646623 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-01-16 11:45:00 obsr72341 S21372435 Stationary P21 EBIRD 315.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311981730 2021-04-01 12:32:15.282601 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-21 13:00:00 obsr1488063 S22992431 Traveling P22 EBIRD 75.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319965029 2021-08-17 17:05:19.8684 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Essex US-NY-031 14.0 Shattuck Rd L2787791 P 43.8133487 -73.5017967 2015-05-15 18:43:00 obsr2693145 S23461605 Traveling P22 EBIRD 68.0 1.609 2.0 1 G1272390 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314448204 2021-03-23 17:00:13.087107 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-30 16:20:00 obsr34822 S23149989 Traveling P22 EBIRD 141.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320348723 2018-08-06 22:30:12 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-05-16 12:17:00 obsr2693145 S23481771 Stationary P21 EBIRD 12.0 1.0 1 G1274032 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290858363 2016-10-10 10:35:42 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 06:45:00 obsr800463 S21333286 Traveling P22 EBIRD 75.0 18.99 44.0 1 G1108327 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296898414 2021-04-01 11:15:31.646886 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Kings US-NY-047 30.0 Sheepshead Bay L835012 H 40.582363 -73.9434105 2015-02-14 15:45:00 obsr2448957 S21840053 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295671679 2021-11-09 21:43:09.587098 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Ulster US-NY-111 28.0 Wallkill L194678 T 41.60569 -74.18399 2015-02-08 09:20:00 obsr1544235 S21735717 Traveling P22 EBIRD 75.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307930038 2021-03-24 20:33:47.533911 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-06 08:23:00 obsr1696616 S22714402 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306670712 2021-03-23 17:23:45.772216 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-03-31 06:55:00 obsr72341 S22622985 Stationary P21 EBIRD 155.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316194070 2016-09-12 10:28:02 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-02 10:30:00 obsr2475075 S23248422 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315370275 2021-11-15 03:06:58.889978 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 07:21:00 obsr870166 S23202590 Traveling P22 EBIRD 217.0 3.54 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309062171 2021-12-10 08:21:29.396662 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-04-11 09:20:00 obsr258431 S22798585 Traveling P22 EBIRD 155.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312099152 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-22 12:56:00 obsr870166 S22999242 Traveling P22 EBIRD 54.0 1.77 2.0 1 G1252938 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320282023 2018-08-06 22:30:13 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-16 13:20:00 obsr979921 S23478325 Traveling P22 EBIRD 20.0 0.483 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309836318 2021-03-26 06:29:56.44369 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-04-13 15:30:00 obsr934639 S22850328 Stationary P21 EBIRD 85.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322349751 2021-04-01 11:15:31.646886 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:20:00 obsr1152226 S23601011 Traveling P22 EBIRD 390.0 4.828 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291444523 2021-12-19 10:32:19.574298 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-01-17 09:00:00 obsr2087436 S21380948 Traveling P22 EBIRD 135.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288987927 2018-08-04 16:52:43 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Essex US-NY-031 13.0 Port Henry Pier L478351 H 44.0499664 -73.4508991 2015-01-04 11:14:00 obsr822321 S21183857 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315174296 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 H C2 H United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-02 09:35:00 obsr924076 S23192187 Traveling P22 EBIRD 407.0 4.023 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310132536 2021-03-19 16:28:51.38749 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Greene US-NY-039 13.0 New Baltimore Yard L7304489 P 42.4429607 -73.7862812 2015-04-14 09:00:00 obsr1181085 S22871371 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291349711 2021-03-26 07:20:31.408164 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Miller Place, Suffolk County, NY L3286845 P 40.9590301 -73.0179262 2015-01-11 13:00:00 obsr1780417 S21373222 Stationary P21 EBIRD 105.0 3.0 1 G1111156 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288196562 2021-03-24 19:24:40.212356 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-01-01 14:02:00 obsr2497657 S21117237 Traveling P22 EBIRD 18.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310692047 2018-08-04 17:09:22 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Ontario US-NY-069 13.0 muar pond L981244 P 42.8811688 -77.2650433 2015-04-15 19:00:00 obsr2979658 S22909516 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315067301 2021-03-24 20:58:53.646623 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 2 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-02 06:20:00 obsr72341 S23186272 Stationary P21 EBIRD 700.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317842661 2021-11-09 18:40:19.746769 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--West L3002249 H 41.9197784 -73.6751747 2015-04-24 08:00:00 obsr2786327 S23342675 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311825022 2021-04-01 10:49:39.496318 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.7320406 -76.7083025 2015-04-19 08:28:00 obsr2683910 S22982334 Stationary P21 EBIRD 5.0 2.0 1 G1230112 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318091839 2018-08-06 22:29:32 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 2 United States US New York US-NY Albany US-NY-001 13.0 Mohawk-Hudson Bike-Hike Trail, Mohawk Riverside Landing Park L2584161 H 42.7739949 -73.816349 2015-05-10 06:45:00 obsr777630 S23356197 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314029862 2019-05-07 15:30:03 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Stadlen and Hoyt-Pileated Trail L1498735 H 42.4777154 -76.4481604 2015-04-29 09:29:00 obsr1655171 S23124262 Traveling P22 EBIRD 16.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310207207 2018-08-04 17:09:17 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-15 12:14:00 obsr2172593 S22876392 Stationary P21 EBIRD 17.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS404633609 2021-03-30 19:13:38.458673 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-17 09:00:00 obsr943652 S29758139 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315696074 2021-11-15 03:06:58.889978 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 08:45:00 obsr1889800 S23220344 Traveling P22 EBIRD 125.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309089604 2021-04-01 11:30:42.037277 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-10 16:00:00 obsr145923 S22800234 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293194396 2021-03-30 19:29:33.633096 5976 species avibase-F4829920 American Woodcock Scolopax minor 10 United States US New York US-NY Suffolk US-NY-103 30.0 Southaven County Park L2117422 H 40.8157861 -72.8972683 2015-01-23 10:00:00 obsr1592950 S21538538 Traveling P22 EBIRD 120.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322158708 2021-11-02 20:32:06.137153 11494 species avibase-20C2214E American Kestrel Falco sparverius 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-23 07:28:00 obsr2683805 S23590539 Traveling P22 EBIRD 180.0 4.828 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306164731 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-28 09:20:00 obsr601383 S22583801 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303803012 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-03-16 10:30:00 obsr1058790 S22403699 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313737582 2021-11-09 18:33:57.599353 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Dutchess US-NY-027 28.0 Depot Hill / Grape Hollow L2506710 P 41.55377 -73.6826 2015-04-28 09:05:00 obsr1732267 S23105841 Traveling P22 EBIRD 8.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322022460 2021-11-09 18:37:59.882049 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Dutchess US-NY-027 13.0 oak grove and Allen L2833448 P 41.831316 -73.801137 2015-05-22 15:46:00 obsr2175245 S23582106 Traveling P22 EBIRD 73.0 2.977 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313719364 2021-03-19 16:02:45.308962 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 28.0 Tri-City Airport L2347159 H 42.08439 -76.093867 2015-04-28 06:23:00 obsr1764243 S23104600 Traveling P22 EBIRD 25.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304461674 2021-04-01 11:14:02.420281 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Jefferson US-NY-045 13.0 US-NY-Chaumont-13722 Case Rd L3343921 P 44.058796 -76.099869 2015-03-21 09:00:00 obsr891847 S22454417 Traveling P22 EBIRD 25.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292088428 2021-03-23 17:00:13.087107 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N Sherwood Pltform base - small brdg (0.15km) L1370979 P 42.4801875 -76.4541519 2015-01-20 08:06:00 obsr2307843 S21431005 Traveling P22 EBIRD 10.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291781756 2019-10-25 16:44:40 7429 species avibase-1327AC55 Osprey Pandion haliaetus 8 United States US New York US-NY St. Lawrence US-NY-089 US-NY_802 13.0 Barnhart Island Marina L800740 H 45.0017167 -74.8597455 2015-01-18 08:28:00 obsr1558090 S21407224 Traveling P22 EBIRD 14.0 0.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299048640 2021-03-26 06:29:56.44369 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-02-17 08:30:00 obsr2759466 S22030207 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305877209 2021-04-01 11:15:31.646886 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 6 United States US New York US-NY Kings US-NY-047 Canarsie Pier L247765 H 40.6287773 -73.8836704 2015-03-28 08:05:00 obsr1077730 S22562420 Traveling P22 EBIRD 40.0 0.322 11.0 1 G1195440 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308731847 2021-04-01 11:47:43.260314 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-09 09:30:00 obsr1633923 S22775132 Stationary P21 EBIRD 540.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322043068 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-22 08:37:00 obsr2883698 S23583269 Traveling P22 EBIRD 320.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303757488 2021-12-10 08:21:29.396662 456 species avibase-D201EB72 American Wigeon Mareca americana 15 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-16 18:00:00 obsr568671 S22400036 Traveling P22 EBIRD 60.0 0.805 3.0 1 G1183562 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321911564 2015-05-22 10:08:20 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Franklin US-NY-033 14.0 Gabriel's Power Line L3067582 P 44.432706 -74.183679 2015-05-22 07:55:00 obsr2630526 S23574929 Traveling P22 EBIRD 132.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306248786 2021-04-01 10:53:25.818871 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cortland US-NY-023 28.0 Yaman Park L1887040 H 42.6093841 -76.158183 2015-03-28 11:43:00 obsr2683910 S22590174 Traveling P22 EBIRD 17.0 0.483 3.0 1 G1197850 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295269749 2021-03-24 19:24:40.212356 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-02-06 08:00:00 obsr479109 S21703299 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307219052 2021-03-26 07:16:36.956617 11604 spuh avibase-A28F0D10 falcon sp. Falco sp. N 2 Male, Adult (2) United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake Neighborhood Yard L2649561 P 42.83175 -73.95388 2015-04-03 15:30:00 obsr2371917 S22663615 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318404537 2021-11-09 19:01:40.008558 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 10 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-10 06:15:00 obsr1433400 S23372915 Traveling P22 EBIRD 300.0 8.561 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300366782 2021-03-26 06:29:56.44369 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-02-28 08:00:00 obsr2449897 S22132976 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS619897934 2018-05-18 12:10:48 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Tompkins US-NY-109 13.0 235 Enfield Falls Road, Ithaca, NY (42.402256,-76.557174) L7427014 P 42.402256 -76.557174 2015-01-22 09:16:00 obsr1008135 S45795674 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292918864 2021-04-01 11:30:42.037277 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-24 12:30:00 obsr259298 S21517061 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307667148 2021-03-24 20:16:00.852773 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-05 09:21:00 obsr1958124 S22695352 Rusty Blackbird Spring Migration Blitz P41 EBIRD 58.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312706786 2021-03-23 17:22:05.708166 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 2 United States US New York US-NY Herkimer US-NY-043 13.0 Saltsman Road L677810 P 43.0091035 -74.7420502 2015-04-24 17:10:00 obsr316199 S23042288 Traveling P22 EBIRD 46.0 2.414 3.0 1 G1234624 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294770257 2022-02-08 17:27:20.632176 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 200 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-01-25 15:00:00 obsr780726 S21663693 Stationary P21 EBIRD 30.0 2.0 1 G1134596 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304411831 2021-03-26 08:14:57.071052 30494 species avibase-240E3390 House Sparrow Passer domesticus N 1 United States US New York US-NY Westchester US-NY-119 30.0 Seney Ave L3362269 P 40.9373411 -73.7317613 2015-03-05 11:57:00 obsr2420438 S22450860 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310398898 2021-03-23 17:18:00.959502 12258 species avibase-11783075 Monk Parakeet Myiopsitta monachus 1 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.7628129 2015-04-16 09:34:00 obsr1201479 S22889569 Traveling P22 EBIRD 46.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305104592 2021-04-01 12:14:19.266649 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-24 14:15:00 obsr1137265 S22503262 Rusty Blackbird Spring Migration Blitz P41 EBIRD 85.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS298980840 2021-11-09 20:41:08.011248 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 4 United States US New York US-NY Putnam US-NY-079 28.0 Kent, 76 Ponderosa Road L2673815 P 41.47916 -73.7411 2015-02-22 08:00:00 obsr717528 S22022679 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS550673417 2021-04-01 11:14:02.420281 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 6 United States US New York US-NY Jefferson US-NY-045 13.0 2800–2908 Favret Rd, Cape Vincent US-NY (44.1114,-76.3142) surrogate two for roadsides torn of Cape Vincent L6479881 P 44.111423 -76.314217 2015-03-21 13:00:00 obsr2188450 S40600947 Traveling P22 EBIRD 120.0 56.327 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300249521 2021-04-01 11:42:50.317679 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 2 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-02-21 08:30:00 obsr2892286 S22124028 Stationary P21 EBIRD 135.0 2.0 1 G1163377 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322777958 2021-11-09 18:47:56.838859 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Northern Botanical Gardens, Salisbury Tpk, Rhinebeck, NY L3671264 P 41.951303 -73.825057 2015-05-25 10:21:00 obsr2175245 S23625998 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323135759 2021-04-01 11:15:31.646886 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-26 07:40:00 obsr2078092 S23648740 Traveling P22 EBIRD 300.0 6.437 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306972029 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Monroe US-NY-055 13.0 RIT Swamps L890004 P 43.079123 -77.66348 2015-04-02 14:37:00 obsr1545618 S22645310 Traveling P22 EBIRD 49.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323919659 2021-04-01 11:15:31.646886 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 08:15:00 obsr431494 S23703218 Stationary P21 EBIRD 62.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315536685 2021-11-15 03:06:58.889978 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 07:20:00 obsr352522 S23211658 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310387954 2021-11-15 03:06:58.889978 526 species avibase-56CCA717 Northern Pintail Anas acuta N 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-16 06:20:00 obsr1135516 S22888823 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314389590 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 13:55:00 obsr2883698 S23146107 Traveling P22 EBIRD 70.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315300216 2021-03-30 19:07:52.958398 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 06:33:00 obsr1711339 S23199034 Traveling P22 EBIRD 384.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311576285 2021-03-31 04:04:13.35072 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 15 United States US New York US-NY Seneca US-NY-099 13.0 Sampson SP L356616 H 42.7288824 -76.9038166 2015-04-20 09:00:00 obsr983655 S22965144 Traveling P22 EBIRD 150.0 8.047 3.0 1 G1229927 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309164795 2021-03-26 07:20:31.408164 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 5 United States US New York US-NY Suffolk US-NY-103 30.0 US-NY-Southold-2065 Glenn Rd L3555813 P 41.047946 -72.429613 2015-04-11 13:50:00 obsr2528068 S22805088 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321665918 2021-03-26 06:29:56.44369 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-16 10:21:00 obsr745890 S23559310 Traveling P22 EBIRD 140.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308132537 2021-04-01 12:30:15.438381 1796 species avibase-018B3169 Horned Grebe Podiceps auritus N 12 United States US New York US-NY Herkimer US-NY-043 13.0 Peckville Road - West L650164 P 43.1017976 -74.8326874 2015-04-06 17:05:00 obsr1000124 S22728876 Traveling P22 EBIRD 15.0 3.058 3.0 1 G1209069 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321175329 2015-05-19 09:39:35 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Blueberry Hill East and West L782514 H 42.7004751 -73.8682283 2015-05-19 09:00:00 obsr2321296 S23529452 Traveling P22 EBIRD 30.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300405041 2021-04-01 11:58:54.966271 681 species avibase-407E2CA8 Common Merganser Mergus merganser 14 United States US New York US-NY St. Lawrence US-NY-089 US-NY_802 13.0 Robert Moses SP, Massena--Hawkins Point L5478679 H 45.000116 -74.7969121 2015-03-01 13:00:00 obsr1558090 S22135352 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313645832 2021-04-01 11:15:31.646886 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 19 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 07:20:00 obsr2228257 S23099855 Traveling P22 EBIRD 297.0 7.242 29.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323512465 2018-08-04 17:30:30 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 US-NY-Oakfield-5829-5845 Co Rd 23 L3679174 P 43.122911 -78.324924 2015-05-28 08:08:00 obsr2588479 S23674029 Stationary P21 EBIRD 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317829571 2021-11-09 18:47:20.196792 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm, Poughkeepsie, NY L3628244 P 41.6775787 -73.8973314 2015-04-23 07:00:00 obsr2786327 S23341954 Traveling P22 EBIRD 225.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298961385 2021-03-30 19:29:33.633096 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 27 United States US New York US-NY Suffolk US-NY-103 US-NY_2800 Napeague Harbor L283128 H 41.0084776 -72.0499114 2015-02-22 11:30:00 obsr2796494 S22021145 Traveling P22 EBIRD 45.0 0.161 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303064675 2021-04-01 11:24:19.637193 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-03-13 09:10:00 obsr1782363 S22345693 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307407317 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-04 07:21:00 obsr1807494 S22677499 Traveling P22 EBIRD 255.0 8.047 11.0 1 G1203947 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311056516 2021-04-01 12:24:14.132004 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis X United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 Ft. Edward Grasslands IBA L358625 H 43.2650813 -73.5411072 2015-01-19 obsr2774749 S22933070 Historical P62 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299747052 2015-02-26 17:25:16 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Lewis US-NY-049 14.0 Rt 12 Copenhagen L3330602 P 43.886965 -75.665154 2015-02-24 15:30:00 obsr2980829 S22083910 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968748 2018-08-04 16:53:56 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.2765741 2015-01-18 10:50:00 obsr2279567 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319899256 2021-04-01 11:15:31.646886 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Kings US-NY-047 Owls Head Park L304833 H 40.6403687 -74.0322153 2015-05-15 11:20:00 obsr2078092 S23458038 Traveling P22 EBIRD 150.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310291550 2016-08-07 13:01:41 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Westchester US-NY-119 30.0 Angle Fly Preserve L1184284 H 41.2947905 -73.7167871 2015-04-15 16:45:00 obsr858943 S22881982 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308654954 2018-08-04 17:08:12 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-09 10:55:00 obsr1006348 S22768696 Stationary P21 EBIRD 70.0 7.0 1 G1212237 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310090486 2021-03-26 06:12:17.833181 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-04-13 08:00:00 obsr479109 S22868434 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308447473 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-08 07:50:00 obsr454647 S22753117 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301457378 2019-07-23 17:27:41 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-07 14:53:00 obsr246469 S22213811 Traveling P22 EBIRD 70.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323117408 2021-03-19 16:44:35.607263 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-26 06:37:00 obsr2364166 S23647523 Traveling P22 EBIRD 30.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301947194 2021-04-01 11:54:40.172593 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 6 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-04 13:13:00 obsr1032565 S22252211 Traveling P22 EBIRD 102.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315217057 2021-11-09 18:29:40.19003 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Dutchess US-NY-027 13.0 Barrytown Rd, Red Hook L2139298 P 42.0010507 -73.9219809 2015-05-01 07:55:00 obsr2228949 S23194814 Traveling P22 EBIRD 115.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291495652 2021-03-26 07:30:35.289997 26278 species avibase-A381417F House Wren Troglodytes aedon 200 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-01-17 16:06:00 obsr1655171 S21385050 Traveling P22 EBIRD 32.0 0.483 2.0 1 G1113294 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318987547 2021-04-01 11:30:42.037277 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-12 12:35:00 obsr2883698 S23405804 Traveling P22 EBIRD 85.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289373102 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-04 16:00:00 obsr259298 S21213985 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291119275 2015-01-15 12:04:41 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa X United States US New York US-NY Greene US-NY-039 13.0 Cornell Park, New Baltimore L786854 P 42.4434271 -73.7864006 2015-01-15 12:00:00 obsr1201479 S21354528 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324016258 2021-04-01 11:12:52.834774 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-05-30 07:10:00 obsr349211 S23708968 Traveling P22 EBIRD 170.0 1.609 6.0 1 G1296011 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288237432 2021-04-01 11:15:31.646886 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N 20 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-01 09:50:00 obsr1417967 S21120676 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300568139 2015-03-02 17:30:40 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-03-02 07:15:00 obsr646558 S22146850 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311825872 2018-08-04 17:11:28 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-21 10:15:00 obsr2843748 S22982389 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS345041594 2021-11-15 03:06:58.889978 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 Female, Adult (1); Male, Adult (3) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-14 08:30:00 obsr189780 S25218675 Area P23 EBIRD 20.0 1.2141 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312954817 2021-04-01 10:51:06.899622 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-25 11:30:00 obsr979921 S23057283 Traveling P22 EBIRD 45.0 3.219 2.0 0 G1236016 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305333156 2021-11-15 03:06:58.889978 483 species avibase-85625D75 Mallard Anas platyrhynchos 22 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-23 08:29:00 obsr1548221 S22520873 Traveling P22 EBIRD 54.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293963966 2018-08-04 16:55:24 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-01-29 10:55:00 obsr1079517 S21599634 Area P23 EBIRD 30.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291439390 2021-03-26 07:30:35.289997 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 my back yard Trumansburg L2594789 P 42.5410818 -76.6596392 2015-01-17 12:35:00 obsr2260025 S21380549 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313542455 2021-03-26 06:29:56.44369 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 4 United States US New York US-NY Monroe US-NY-055 13.0 Harwick Rd L3595495 P 43.174021 -77.554412 2015-04-27 11:31:00 obsr1633923 S23093324 Traveling P22 EBIRD 135.0 0.161 2.0 1 G1239691 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293006354 2017-11-27 07:55:42 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Suffolk US-NY-103 Lake Montauk Inlet, east side L280126 H 41.0778598 -71.9366662 2015-01-24 12:00:00 obsr544268 S21523625 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305774227 2015-03-28 12:30:50 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Chautauqua Summer House L330942 P 42.170002 -79.475503 2015-03-28 11:05:00 obsr1092576 S22555124 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308083346 2021-11-15 03:11:49.507437 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Rockland US-NY-087 30.0 Rockland Lake SP L283611 H 41.1468757 -73.9234741 2015-04-06 10:15:00 obsr1121454 S22725126 Traveling P22 EBIRD 105.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318257845 2015-08-02 17:21:31 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Rochester-irondequoit 14622 yard L3146197 P 43.22078 -77.556809 2015-05-10 08:15:00 obsr140077 S23364949 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307431767 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-04 09:30:00 obsr822430 S22679132 Traveling P22 EBIRD 145.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300584431 2021-11-09 19:56:29.393767 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 Male, Adult (1) United States US New York US-NY Orange US-NY-071 28.0 My spot L3350343 P 41.2308311 -74.3717122 2015-03-02 07:45:00 obsr1603513 S22148122 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302674021 2021-04-01 12:18:57.910168 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-03-12 15:10:00 obsr2001485 S22314943 Traveling P22 EBIRD 72.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318800299 2021-03-26 06:39:43.334073 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-05-11 06:49:00 obsr1548221 S23395019 Traveling P22 EBIRD 13.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305419477 2021-03-23 16:52:36.900075 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 10 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--Golf Course L507417 H 40.6235296 -73.2860184 2015-03-26 11:30:00 obsr247620 S22527717 Traveling P22 EBIRD 45.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321401599 2015-05-20 05:59:42 592 species avibase-3072CC16 Redhead Aythya americana 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-05-17 06:00:00 obsr2694889 S23543191 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316261507 2021-04-01 11:24:19.637193 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-05-05 17:45:00 obsr1962295 S23253215 Traveling P22 EBIRD 35.0 0.322 2.0 1 G1254130 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309374730 2021-03-19 16:02:45.308962 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-12 08:30:00 obsr290506 S22818654 Traveling P22 EBIRD 100.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309753081 2021-03-26 07:30:35.289997 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 40 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-13 07:01:00 obsr1655171 S22844715 Traveling P22 EBIRD 14.0 0.483 2.0 1 G1219995 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358043009 2021-04-01 10:45:00.916278 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L2678975 P 40.8681 -73.80947 2015-01-17 08:30:00 obsr1673515 S26210223 Traveling P22 EBIRD 330.0 8.047 2.0 1 G1492851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313508743 2021-03-24 21:13:42.099821 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Westchester US-NY-119 30.0 Stone Barns Center for Food and Agriculture L596032 H 41.1000516 -73.8308716 2015-04-27 09:30:00 obsr473055 S23091397 Traveling P22 EBIRD 130.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310030610 2021-03-30 19:29:33.633096 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Suffolk US-NY-103 30.0 41 Belton Road, Babylon L986538 P 40.6931311 -73.3296955 2015-04-14 07:00:00 obsr247620 S22864158 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291535808 2021-03-26 06:29:56.44369 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush Dam L1066995 H 42.9928613 -77.6449406 2015-01-17 14:00:00 obsr2223307 S21388273 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314065914 2021-01-16 16:23:49.018833 662 species avibase-FB738385 Bufflehead Bucephala albeola 7 United States US New York US-NY Washington US-NY-115 13.0 Feeder Canal Trail--Towpath Ln, Kingsbury, NY L2590408 P 43.2927432 -73.5600543 2015-04-29 06:04:00 obsr1222746 S23126432 Rusty Blackbird Spring Migration Blitz P41 EBIRD 131.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323672610 2021-04-01 11:15:31.646886 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-28 07:30:00 obsr1601967 S23684800 Traveling P22 EBIRD 330.0 8.047 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310832991 2021-11-15 03:06:58.889978 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-11 12:40:00 obsr2072398 S22918928 Traveling P22 EBIRD 180.0 1.609 2.0 1 G1223862 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290214466 2021-04-01 11:15:31.646886 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-10 08:30:00 obsr1407710 S21280025 Traveling P22 EBIRD 300.0 4.828 3.0 1 G1103277 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308792482 2018-08-04 17:08:10 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 7 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-09 08:00:00 obsr1160328 S22779578 Area P23 EBIRD 120.0 30.3514 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314295223 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 06:22:00 obsr1433400 S23140782 Traveling P22 EBIRD 120.0 6.067 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303754845 2021-03-30 19:07:52.958398 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-17 17:28:00 obsr152435 S22399824 Traveling P22 EBIRD 94.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319549464 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 125 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 06:42:00 obsr187432 S23438418 Traveling P22 EBIRD 260.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288248190 2016-12-13 23:15:58 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Delaware US-NY-025 28.0 Bridge St., Downsville L2384566 H 42.0755272 -74.9899937 2015-01-01 07:43:00 obsr1788273 S21121619 Traveling P22 EBIRD 19.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001195 2021-03-26 07:56:20.588749 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-20 16:00:00 obsr2218212 S23775929 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314127327 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 Owls Head Park L304833 H 40.6403687 -74.0322153 2015-04-29 07:40:00 obsr2731066 S23130124 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310909827 2021-04-01 12:18:57.910168 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm hawk watch L123521 P 42.3457336 -76.298584 2015-04-18 10:30:00 obsr455249 S22923869 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307006977 2021-12-19 10:32:19.574298 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 ON C4 ON Male, Adult (1); Female, Adult (1) United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-04-02 14:30:00 obsr1293872 S22648248 Traveling P22 EBIRD 70.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298847555 2021-11-09 19:08:39.226314 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Dutchess US-NY-027 13.0 Stony Kill Farm EEC L635872 H 41.538564 -73.9537095 2015-02-21 09:00:00 obsr1339050 S22011895 Traveling P22 EBIRD 105.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291649589 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-18 07:30:00 obsr2207991 S21397284 Traveling P22 EBIRD 60.0 0.322 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302401050 2021-04-01 12:30:15.438381 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Herkimer US-NY-043 13.0 Ingham Mills Road L650153 P 43.0533357 -74.7683144 2015-03-10 12:35:00 obsr2253673 S22294149 Incidental P20 EBIRD 0 G1174599 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311000543 2021-12-28 15:50:27.785498 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 S7 C3 S7 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-18 17:30:00 obsr606693 S22929516 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313770778 2018-08-04 17:11:48 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Westchester US-NY-119 30.0 81 Lake Street, Peach Lake, North Salem L141329 P 41.3594812 -73.5793018 2015-04-22 14:05:00 obsr1736921 S23107933 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309851187 2018-08-04 17:08:41 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 10 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-04-12 08:00:00 obsr1995798 S22851339 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295365866 2021-11-09 18:44:18.419661 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 60 United States US New York US-NY Dutchess US-NY-027 28.0 US-NY-Dover Plains L3369717 P 41.7405779 -73.5853958 2015-02-07 12:07:00 obsr1442681 S21711390 Traveling P22 EBIRD 124.0 8.851 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305369719 2021-04-01 11:54:40.172593 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 Female, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-03-23 08:00:00 obsr666331 S22523797 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319810894 2018-08-06 22:30:00 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Columbia US-NY-021 14.0 Taconic SP - Alander Mountain Area L3644642 P 42.065543 -73.511796 2015-05-15 09:00:00 obsr798742 S23453388 Traveling P22 EBIRD 70.0 2.977 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290464095 2015-01-11 16:51:19 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Herkimer US-NY-043 13.0 Saltis Residence L3285512 P 43.0289107 -74.9475729 2015-01-11 14:00:00 obsr1298010 S21301609 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317420107 2021-05-05 23:16:43.166312 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-09 06:05:00 obsr1830659 S23319040 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301351887 2021-04-01 12:14:19.266649 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-03-07 09:00:00 obsr105122 S22206468 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307838009 2021-03-30 19:29:33.633096 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Montauk Beach L2242121 P 41.0323285 -71.942988 2015-04-04 09:00:00 obsr150865 S22707468 Traveling P22 EBIRD 60.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323629290 2021-11-09 18:42:19.628792 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-28 09:30:00 obsr1917973 S23681824 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306612010 2021-03-24 21:06:05.39641 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 5 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson River Park (private) L3498350 H 43.2032416 -76.2825651 2015-03-31 16:34:00 obsr2224244 S22618671 Stationary P21 EBIRD 208.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307880861 2021-03-24 19:48:44.880783 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-04 08:10:00 obsr1243175 S22710509 Traveling P22 EBIRD 60.0 0.644 3.0 1 G1207217 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302055346 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-07 11:25:00 obsr794187 S22260609 Traveling P22 EBIRD 60.0 1.127 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316684823 2021-11-09 18:47:10.508752 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Dutchess US-NY-027 13.0 Hollow Road L3618515 P 41.8369355 -73.8437247 2015-05-06 13:30:00 obsr1787323 S23277341 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319568782 2021-11-02 20:32:06.137153 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-14 12:20:00 obsr317968 S23439472 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319726446 2021-04-01 11:30:42.037277 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 07:00:00 obsr1220115 S23448452 Traveling P22 EBIRD 150.0 2.414 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289662470 2021-03-26 06:55:00.227271 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 12 United States US New York US-NY Ontario US-NY-069 13.0 US-NY-2042 Buffalo St L2199976 P 42.886609 -77.092533 2015-01-07 07:35:00 obsr354090 S21237032 Stationary P21 EBIRD 143.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308281803 2021-03-26 07:30:35.289997 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-07 12:20:00 obsr869999 S22740363 Traveling P22 EBIRD 15.0 1.207 1.0 1 G1209967 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310593235 2021-03-23 17:22:05.708166 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-04-16 06:30:00 obsr2694889 S22903188 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314340615 2021-03-26 07:07:10.758746 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-30 09:59:00 obsr155915 S23143026 Traveling P22 EBIRD 130.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310385410 2021-03-22 09:15:15.32301 27616 species avibase-D77E4B41 American Robin Turdus migratorius 25 United States US New York US-NY Niagara US-NY-063 13.0 Olcott Pier L1345996 H 43.3399055 -78.7176999 2015-04-12 06:37:00 obsr1243175 S22888623 Traveling P22 EBIRD 58.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309069986 2015-04-11 13:29:56 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-11 11:05:00 obsr59643 S22799065 Stationary P21 EBIRD 10.0 2.0 1 G1214326 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314046669 2021-04-01 11:24:19.637193 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 4 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-28 07:15:00 obsr1782363 S23125208 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302166329 2021-04-01 12:26:53.827486 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-03-10 09:59:00 obsr2512689 S22268770 Traveling P22 EBIRD 41.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313501391 2021-03-23 16:30:20.514143 279 species avibase-3E04020B Brant Branta bernicla N 12 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Pulaski-36 Windcrest Dr L3099636 P 43.574895 -76.136795 2015-04-27 12:10:00 obsr1351949 S23090972 Traveling P22 EBIRD 35.0 48.279 1.0 1 G5326512 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312803978 2021-04-01 12:32:15.282601 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 60 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-04-23 09:25:00 obsr1228860 S23048575 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306008311 2018-08-04 17:04:36 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-03-29 09:30:00 obsr2343764 S22572220 Stationary P21 EBIRD 108.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308610642 2021-04-01 12:18:57.910168 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-04-09 07:33:00 obsr2211210 S22765452 Traveling P22 EBIRD 51.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294761843 2021-04-01 12:35:52.669792 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 15 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-03 13:47:00 obsr2224244 S21663022 Traveling P22 EBIRD 19.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303744594 2018-11-05 19:39:41 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 20 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Dam L160699 H 42.0864692 -76.8096739 2015-03-17 09:12:00 obsr1092576 S22399070 Stationary P21 EBIRD 8.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292740815 2021-03-26 06:29:56.44369 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Monroe US-NY-055 13.0 stakeout Yellow-headed Blackbird, Jeffords Rd., Rush (2015) L3304693 H 43.00988 -77.62134 2015-01-23 07:47:00 obsr916033 S21502791 Stationary P21 EBIRD 111.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314002665 2021-03-24 19:20:44.053843 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Broome US-NY-007 28.0 SUNY Broome Community College L3583220 H 42.1353684 -75.9091816 2015-04-22 14:30:00 obsr2945921 S23122685 Traveling P22 EBIRD 120.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294863439 2021-11-09 21:45:00.110073 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 4 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L2233674 P 41.63417 -74.20833 2015-02-01 15:30:00 obsr2975248 S21671427 Stationary P21 EBIRD 120.0 19.0 1 G1134968 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309030837 2020-03-22 07:58:01 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-11 09:26:00 obsr1696616 S22796581 Stationary P21 EBIRD 26.0 2.0 1 G1214148 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318873397 2021-03-26 06:13:28.501496 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Chemung US-NY-015 28.0 1311 veteran hill road ,Horseheads L3387589 P 42.2711701 -76.7687702 2015-05-09 06:30:00 obsr2575218 S23399549 Stationary P21 EBIRD 780.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298758679 2021-04-01 12:18:57.910168 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 NY:TOM:Ithaca: home to Renwick Sanc, Newman Golf, Jetty Wds, Stewart Pk L2136757 P 42.4588006 -76.5057528 2015-02-21 10:30:00 obsr2760150 S22004690 Traveling P22 EBIRD 90.0 7.821 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307726346 2021-04-01 11:30:42.037277 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 7 United States US New York US-NY New York US-NY-061 30.0 W Village Backyards and Airspace L974907 P 40.7366845 -74.0071853 2015-04-05 13:35:00 obsr128156 S22699273 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295169320 2021-03-26 06:07:45.516082 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-02-06 07:57:00 obsr128156 S21695509 Traveling P22 EBIRD 30.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314285657 2021-04-01 12:18:57.910168 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-30 09:33:00 obsr2683805 S23140163 Traveling P22 EBIRD 75.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321484074 2021-03-26 07:56:20.588749 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-20 09:45:00 obsr1693806 S23548118 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318514779 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 09:00:00 obsr1251455 S23379063 Traveling P22 EBIRD 90.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313442305 2021-04-01 11:15:31.646886 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-27 06:43:00 obsr152435 S23087457 Traveling P22 EBIRD 126.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314670931 2021-03-26 07:56:20.588749 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-01 08:30:00 obsr525303 S23163578 Traveling P22 EBIRD 120.0 1.609 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296796533 2018-08-04 16:56:29 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-14 11:26:00 obsr1958124 S21830932 Traveling P22 EBIRD 29.0 1.609 2.0 1 G1145902 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309087084 2015-04-11 13:18:59 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 P C3 P United States US New York US-NY Westchester US-NY-119 28.0 Brinton Brook Sanctuary L893096 H 41.2268584 -73.8992411 2015-04-11 09:00:00 obsr572503 S22800077 Traveling P22 EBIRD 120.0 5.633 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293098019 2021-04-01 11:54:40.172593 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 10 United States US New York US-NY Richmond US-NY-085 Lemon Creek Park L508340 H 40.5121298 -74.198581 2015-01-25 10:32:00 obsr1958124 S21531008 Traveling P22 EBIRD 5.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301837598 2021-04-01 11:24:19.637193 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-03-08 17:30:00 obsr934639 S22244296 Stationary P21 EBIRD 35.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314275440 2021-11-09 22:04:59.499979 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 2 United States US New York US-NY Ulster US-NY-111 13.0 Saugerties Lighthouse L490267 H 42.0722249 -73.9367873 2015-04-30 07:27:00 obsr118701 S23139505 Traveling P22 EBIRD 86.0 1.609 2.0 1 G1244056 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302364639 2018-08-04 16:59:16 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River - Weidrich Road access L3479893 P 42.1007325 -77.9391873 2015-03-10 15:34:00 obsr1310178 S22291523 Traveling P22 EBIRD 31.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318494213 2021-12-08 07:58:41.562209 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-11 06:03:00 obsr2054320 S23377942 Traveling P22 EBIRD 120.0 1.609 2.0 1 G1265301 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321189013 2021-04-01 11:15:31.646886 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-18 17:15:00 obsr2750470 S23530259 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309369159 2015-04-12 12:31:29 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 3 United States US New York US-NY Oneida US-NY-065 13.0 Verona, Verona Beach State Park L3557734 P 43.17773 -75.73251 2015-04-12 10:40:00 obsr666964 S22818311 Stationary P21 EBIRD 9.0 1.0 1 G1215937 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315437021 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 06:30:00 obsr1659461 S23206145 Traveling P22 EBIRD 540.0 16.093 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320632821 2020-03-15 09:14:53 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-16 11:55:00 obsr1381746 S23496762 Traveling P22 EBIRD 90.0 2.414 2.0 1 G1275358 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295249487 2021-04-01 11:49:53.573686 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-02-02 07:36:00 obsr1982614 S21701748 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288280131 2021-03-26 06:21:54.883933 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 Male, Unknown Age (1) United States US New York US-NY Kings US-NY-047 30.0 418 3rd St. (Home) 40° 40' N / 73° 58' W L3254678 P 40.6717893 -73.9820811 2015-01-01 10:00:00 obsr1765043 S21124495 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300723652 2018-08-04 16:58:40 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-03-03 12:15:00 obsr1693806 S22158340 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305768214 2021-03-26 06:39:43.334073 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 8 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-03-28 11:20:00 obsr1135516 S22554676 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296300661 2021-04-01 10:47:08.851048 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-02-12 07:10:00 obsr646558 S21786754 Traveling P22 EBIRD 25.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307665528 2015-04-05 10:18:37 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Monroe US-NY-055 13.0 43.3167x-77.7484 - Apr 5, 2015, 10:14 AM L3539985 P 43.316723 -77.748425 2015-04-05 10:13:00 obsr334398 S22695243 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304936549 2021-03-26 07:19:24.261425 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Steuben US-NY-101 28.0 Keuka Lake, Depot Park L499834 H 42.4103162 -77.2183648 2015-03-21 12:56:00 obsr2211210 S22489950 Stationary P21 EBIRD 6.0 2.0 1 G1190538 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312956024 2021-03-23 17:00:13.087107 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-25 19:40:00 obsr1418810 S23057372 Traveling P22 EBIRD 45.0 1.0 2.0 1 G1237114 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309128134 2021-03-23 17:00:13.087107 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla N 4 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-11 14:15:00 obsr2724574 S22802593 Traveling P22 EBIRD 60.0 1.287 5.0 1 G1214478 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306906660 2021-03-26 08:14:57.071052 3174 species avibase-41E9F54B Black-billed Cuckoo Coccyzus erythropthalmus 5 United States US New York US-NY Westchester US-NY-119 30.0 Wilton L963070 P 41.0891766 -73.8526082 2015-04-01 07:00:00 obsr1538953 S22640271 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295020217 2021-04-01 11:42:50.317679 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-02-02 09:00:00 obsr1195517 S21684963 Stationary P21 EBIRD 180.0 2.0 1 G1135851 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311002488 2021-04-01 11:49:53.573686 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Queens US-NY-081 30.0 Idlewild Park L2687800 H 40.6546016 -73.7547487 2015-04-18 10:29:00 obsr1982614 S22929634 Traveling P22 EBIRD 140.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315591672 2021-04-01 11:30:42.037277 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 5 United States US New York US-NY New York US-NY-061 Roosevelt Is.--FDR Four Freedoms and Southpoint Park L1988607 H 40.7513426 -73.9598201 2015-05-03 16:50:00 obsr856524 S23214573 Traveling P22 EBIRD 100.0 1.287 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296892495 2021-03-26 06:39:43.334073 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-02-14 13:00:00 obsr1349960 S21839543 Traveling P22 EBIRD 150.0 3.54 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311848962 2021-03-23 17:37:19.520785 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Saratoga US-NY-091 13.0 Coveville L2789900 P 43.060207 -73.59286 2015-04-21 07:04:00 obsr648176 S22983828 Stationary P21 EBIRD 431.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306008798 2021-04-01 11:24:19.637193 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 25 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 10:17:00 obsr749440 S22572251 Stationary P21 EBIRD 101.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310328038 2019-07-24 17:34:53 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr41879 S22884597 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319761154 2015-05-15 07:19:11 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Cortland US-NY-023 28.0 Daisy Hollow Rd. wet meadows L2976557 H 42.4879855 -76.2249148 2015-05-15 07:06:00 obsr1042912 S23450739 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288915326 2022-01-25 11:01:55.389129 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-01-03 13:00:00 obsr1545618 S21178356 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296329243 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Kings US-NY-047 30.0 Seth Low Park L3350573 P 40.6077038 -73.9866039 2015-02-12 13:30:00 obsr2448957 S21789037 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290898470 2021-03-26 06:53:58.593564 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Oneida US-NY-065 13.0 Eureka Road Marsh L3290696 P 43.1292152 -75.424799 2015-01-13 09:36:00 obsr545221 S21336565 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313261233 2021-04-01 12:32:15.282601 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Nassau US-NY-059 US-NY_1727 jones beach west end L3023546 P 40.5868446 -73.5620499 2015-04-26 11:00:00 obsr492329 S23075535 Traveling P22 EBIRD 120.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313078795 2015-04-26 10:22:08 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Hundred Acre Pond L139802 H 43.0289001 -77.5643997 2015-04-26 10:05:00 obsr1097423 S23064904 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309002588 2021-04-01 11:47:43.260314 30494 species avibase-240E3390 House Sparrow Passer domesticus 50 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-10 08:04:00 obsr2945658 S22794581 Traveling P22 EBIRD 594.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295554015 2021-09-08 17:22:56.334642 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Oswego US-NY-075 13.0 Home L9190121 P 43.6053848 -76.1471608 2015-02-08 11:16:00 obsr193855 S21726374 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761292 2021-03-26 07:56:20.588749 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-07 09:00:00 obsr2218212 S22629516 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS354457518 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-23 14:08:00 obsr2276013 S25925915 Traveling P22 EBIRD 57.0 0.644 3.0 1 G1472365 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314364692 2021-04-01 11:30:42.037277 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 09:00:00 obsr2369927 S23144349 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312640430 2018-04-16 15:51:00 681 species avibase-407E2CA8 Common Merganser Mergus merganser 12 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-24 16:00:00 obsr2716320 S23037741 Traveling P22 EBIRD 90.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300689616 2015-03-10 19:27:14 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Oneida US-NY-065 13.0 8741 Maple Flats Rd., Cleveland, NY. 13042 L2462475 P 43.28754 -75.84901 2015-03-03 08:15:00 obsr1248598 S22155805 Stationary P21 EBIRD 2.0 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS332426683 2021-04-01 11:24:19.637193 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-09 06:03:00 obsr334398 S24314364 Traveling P22 EBIRD 260.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309165031 2021-03-30 19:29:33.633096 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 8 United States US New York US-NY Suffolk US-NY-103 30.0 Little Neck Road Area L3544797 P 41.014918 -72.463981 2015-04-11 11:40:00 obsr2528068 S22805105 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301267934 2021-03-30 19:43:32.881136 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-03-06 16:00:00 obsr114791 S22199052 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351704 2021-03-26 07:07:10.758746 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 30 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-11 07:26:00 obsr1958124 S21292479 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309184156 2021-03-30 19:07:52.958398 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris N 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 07:15:00 obsr139757 S22806420 Traveling P22 EBIRD 360.0 4.828 25.0 1 G1214819 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318015984 2015-05-10 09:19:03 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Delaware US-NY-025 28.0 West Branch Nature Preserve L2243052 P 42.1704259 -75.0311789 2015-05-08 12:30:00 obsr1788273 S23352246 Traveling P22 EBIRD 41.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293143821 2021-03-26 07:20:31.408164 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Suffolk US-NY-103 30.0 Roosevelt Estate County Park L7273270 H 40.7386078 -73.0728777 2015-01-25 13:31:00 obsr1107696 S21534529 Traveling P22 EBIRD 14.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305415289 2021-03-26 07:20:31.408164 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-02-27 07:00:00 obsr1592950 S22527368 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306828887 2021-03-23 16:45:39.358281 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 130 United States US New York US-NY St. Lawrence US-NY-089 13.0 Remington Recreation Trail L270558 H 44.6127667 -75.1665791 2015-04-01 17:04:00 obsr1558090 S22634643 Traveling P22 EBIRD 68.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308323409 2021-03-23 17:00:13.087107 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-07 17:29:00 obsr1655171 S22743526 Traveling P22 EBIRD 28.0 0.644 2.0 1 G1212814 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305335835 2021-11-15 03:06:58.889978 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-24 08:30:00 obsr1548221 S22521079 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS317437005 2015-05-09 09:16:57 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Livingston US-NY-051 13.0 US-NY-PORTAGE, 625 NY-436 L3579171 P 42.574927 -78.013591 2015-05-06 11:21:00 obsr731272 S23320020 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305221320 2021-03-23 17:00:13.087107 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Mt. Sapsucker L1772923 H 42.4817726 -76.449865 2015-03-25 10:35:00 obsr1655171 S22512168 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320083784 2021-11-15 03:06:58.889978 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-16 06:05:00 obsr431494 S23468431 Traveling P22 EBIRD 215.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296267605 2021-04-01 12:14:19.266649 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 6 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree SP 2 L2190050 P 40.6382075 -73.2574368 2015-02-12 13:15:00 obsr1228860 S21782429 Traveling P22 EBIRD 22.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313569137 2015-04-27 16:28:32 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-03 obsr2729089 S23094924 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305220004 2021-03-26 07:56:20.588749 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 30 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-03-25 09:00:00 obsr247620 S22512068 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312723531 2021-04-01 11:15:31.646886 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Kings US-NY-047 30.0 Dyker Beach Park L1044216 H 40.6123885 -74.0192327 2015-04-25 06:34:00 obsr1189028 S23043469 Traveling P22 EBIRD 67.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307137064 2015-04-03 11:27:22 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Steuben US-NY-101 28.0 Home L211141 P 42.1402153 -76.97072 2015-04-02 09:26:00 obsr562284 S22657930 Stationary P21 EBIRD 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302878788 2015-03-25 19:39:32 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 3 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-12 13:00:00 obsr30103 S22330560 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303761285 2015-03-17 19:32:36 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-03-17 16:55:00 obsr1958124 S22400289 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294631626 2021-03-26 06:29:56.44369 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-02 15:55:00 obsr934639 S21652333 Stationary P21 EBIRD 5.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314417176 2021-11-09 21:05:07.751154 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Rockland US-NY-087 US-NY_843 28.0 Bear Mountain SP--Doodletown Rd. L316486 H 41.3011999 -73.9869576 2015-04-30 11:00:00 obsr2770696 S23147772 Traveling P22 EBIRD 190.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309042322 2021-11-09 21:50:48.44865 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-11 08:00:00 obsr1446126 S22797340 Traveling P22 EBIRD 80.0 2.414 30.0 1 G1214172 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315323098 2021-03-19 16:25:42.617988 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 14 United States US New York US-NY Essex US-NY-031 13.0 Noblewood Park L191517 H 44.3548774 -73.356574 2015-05-03 11:54:00 obsr822321 S23200149 Traveling P22 EBIRD 111.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317195585 2021-03-30 06:01:28.020715 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 20 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 USFWS_268 Montezuma (NMWMA)--Sandhill Crane Unit L760346 H 43.0444291 -76.7268848 2015-04-03 08:40:00 obsr533086 S23305723 International Shorebird Survey (ISS) P74 EBIRD 95.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307964392 2021-03-26 07:56:20.588749 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 2 CN C4 CN Male, Unknown Age (1); Female, Unknown Age (1) United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-04-04 17:00:00 obsr1296638 S22716933 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321655151 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-21 05:54:00 obsr152435 S23558671 Traveling P22 EBIRD 175.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305735439 2018-08-04 17:02:48 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Monroe US-NY-055 13.0 Riga, 75 Brew Road L3519603 P 43.07127 -77.93139 2015-03-24 18:43:00 obsr745890 S22551995 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315487432 2021-04-27 11:51:16.592619 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-26 17:46:00 obsr334398 S23208957 Stationary P21 EBIRD 21.0 2.0 1 G6615585 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290500904 2021-04-01 11:30:42.037277 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-11 07:24:00 obsr924076 S21304695 Traveling P22 EBIRD 432.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307185578 2021-04-01 11:30:42.037277 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-04-02 13:15:00 obsr211892 S22661209 Traveling P22 EBIRD 40.0 0.805 12.0 1 G1201660 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310377313 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 06:10:00 obsr1433400 S22888054 Traveling P22 EBIRD 90.0 4.088 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292803384 2021-03-26 07:30:35.289997 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 60 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-23 12:34:00 obsr1655171 S21507613 Traveling P22 EBIRD 75.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299108392 2021-04-28 05:22:52.046239 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-21 07:30:00 obsr2404047 S22035175 Traveling P22 EBIRD 450.0 4.828 2.0 1 G1157712 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315943354 2021-06-25 16:13:37.10193 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 13:00:00 obsr2448957 S23233919 Traveling P22 EBIRD 420.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311890515 2021-03-26 08:14:57.071052 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-21 14:10:00 obsr258431 S22986376 Traveling P22 EBIRD 100.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309523858 2021-03-30 19:39:10.250398 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 6 United States US New York US-NY Nassau US-NY-059 30.0 Shu Swamp Nature Preserve L503050 H 40.8803597 -73.5648394 2015-04-12 09:15:00 obsr2852365 S22828037 Traveling P22 EBIRD 135.0 4.023 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310652601 2021-03-26 08:14:57.071052 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-04-16 07:30:00 obsr2918150 S22907066 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321926334 2021-04-01 12:28:44.297881 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Chenango US-NY-017 28.0 Stiles Rd thicket L3662259 P 42.3341303 -75.6602481 2015-05-22 06:48:00 obsr1303581 S23575712 Traveling P22 EBIRD 147.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302557385 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-11 12:03:00 obsr2078092 S22306349 Traveling P22 EBIRD 360.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308084273 2018-08-04 17:06:18 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Tompkins US-NY-109 28.0 Thomas Rd., south (Six Mile Creek ponds & marsh) L388439 H 42.4020377 -76.3778114 2015-04-06 17:52:00 obsr2074043 S22725202 Traveling P22 EBIRD 8.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290367029 2021-03-30 19:13:38.458673 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 40 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-05 15:30:00 obsr983655 S21293792 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322890413 2021-03-19 16:44:35.607263 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-25 15:37:00 obsr2595828 S23632758 Traveling P22 EBIRD 70.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318833136 2021-03-23 17:22:05.708166 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-10 07:26:00 obsr316199 S23396929 Area P23 EBIRD 66.0 2.59 2.0 1 G1266722 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313278020 2015-04-26 19:15:41 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 1 United States US New York US-NY Rensselaer US-NY-083 US-NY_763 14.0 Babcock Lake, Grafton, NY L1531175 P 42.8177071 -73.3989717 2015-04-26 07:00:00 obsr1379674 S23076617 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307153665 2021-04-01 11:54:40.172593 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 8 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-03 07:35:00 obsr1620361 S22659095 Traveling P22 EBIRD 210.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307470978 2021-03-23 17:23:45.772216 23291 species avibase-58C502EA Barn Swallow Hirundo rustica X United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake L728231 P 42.7335064 -77.7231216 2015-04-04 08:42:00 obsr72341 S22681736 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301983458 2021-03-26 06:29:56.44369 27380 species avibase-E53FC25C Swainson's Thrush Catharus ustulatus 4 United States US New York US-NY Monroe US-NY-055 13.0 Private property L3358535 P 43.2067086 -77.8944933 2015-03-09 09:57:00 obsr1713903 S22255001 Traveling P22 EBIRD 30.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288260969 2021-04-01 12:18:57.910168 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 10 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Wegmans canal area L1368977 H 42.4346276 -76.5116732 2015-01-01 14:00:00 obsr620377 S21122717 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321665251 2021-04-01 12:32:15.282601 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-21 06:30:00 obsr547602 S23559270 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301234302 2021-03-22 09:17:32.016297 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Oneida US-NY-065 13.0 * Little River L512613 P 43.3075048 -75.8048058 2015-03-06 13:10:00 obsr666964 S22196392 Area P23 EBIRD 105.0 4.0469 2.0 1 G1168358 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317261568 2018-08-06 22:29:09 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula X United States US New York US-NY Broome US-NY-007 28.0 Foley Rd. L2164136 H 42.0452135 -75.9670258 2015-05-08 06:30:00 obsr1044068 S23309453 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314573161 2021-04-01 11:54:40.172593 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-29 05:39:00 obsr396989 S23158033 Traveling P22 EBIRD_NJ 325.0 6.759 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304051723 2021-04-01 11:54:40.172593 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 2 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-19 14:15:00 obsr1958124 S22423318 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314359585 2021-03-24 21:09:00.82373 6339 species avibase-8535345B Herring Gull Larus argentatus 1 Female, Adult (1) United States US New York US-NY Rensselaer US-NY-083 13.0 Jensis Rd L998226 P 42.5520845 -73.7279069 2015-04-30 07:00:00 obsr489496 S23144076 Area P23 EBIRD 25.0 0.607 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316054681 2021-04-01 11:30:42.037277 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-28 08:47:00 obsr363953 S23240777 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320669806 2015-05-17 19:01:35 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Chautauqua Summer House L330942 P 42.170002 -79.475503 2015-05-17 19:00:00 obsr1092576 S23498834 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313072596 2021-03-24 20:58:53.646623 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3591575 P 42.693501 -77.711644 2015-04-26 08:27:00 obsr682121 S23064526 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306023285 2021-03-26 07:20:31.408164 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Suffolk US-NY-103 30.0 Jurczenia L884450 P 41.0967529 -72.3743999 2015-03-29 12:55:00 obsr2485753 S22573294 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320827951 2021-04-01 11:15:31.646886 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-17 06:40:00 obsr2519357 S23508336 Traveling P22 EBIRD 680.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315324335 2021-03-30 06:01:28.020715 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus X 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-04-17 08:20:00 obsr753816 S23200217 Traveling P22 EBIRD 65.0 3.38 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291534181 2018-08-04 16:53:32 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Elks Lodge Parking Lot, Cohoes L2610868 P 42.7792074 -73.7018842 2015-01-17 15:35:00 obsr777630 S21388156 Stationary P21 EBIRD 10.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301948072 2021-04-01 11:54:40.172593 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Stately Richman Manor L2489256 P 40.6333994 -74.104638 2015-03-08 10:00:00 obsr2904420 S22252270 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307641537 2021-04-01 12:18:57.910168 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 13.0 AviTom46 L3513988 H 42.3988256 -76.6146648 2015-04-05 07:50:00 obsr1092576 S22693530 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307944681 2021-03-26 07:30:35.289997 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 120 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-06 08:36:00 obsr1655171 S22715456 Stationary P21 EBIRD 19.0 2.0 1 G1212805 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307410544 2021-03-26 07:07:10.758746 406 species avibase-27B2749A Wood Duck Aix sponsa N 15 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-04 12:05:00 obsr1958124 S22677750 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317992901 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 07:20:00 obsr1601967 S23351029 Traveling P22 EBIRD 400.0 40.233 1.0 1 G1261215 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309823958 2018-08-04 17:08:55 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 17 United States US New York US-NY Cattaraugus US-NY-009 13.0 Conewango Swamp WMA L246473 H 42.1794444 -78.9861111 2015-04-12 15:00:00 obsr1379161 S22849577 Stationary P21 EBIRD 120.0 3.0 1 G1218617 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309387065 2018-08-04 17:08:44 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 13 United States US New York US-NY Suffolk US-NY-103 Shirley Marina County Park L2904736 H 40.742562 -72.8714852 2015-04-12 08:39:00 obsr1107696 S22819391 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304571696 2021-03-24 19:47:16.07498 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-03-21 08:45:00 obsr589593 S22462681 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311689717 2021-04-01 11:54:40.172593 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 1 United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-04-20 10:15:00 obsr1893950 S22973575 Stationary P21 EBIRD 427.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306193735 2015-03-29 22:20:04 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 7 United States US New York US-NY Schuyler US-NY-097 28.0 US-NY-Alpine-5701–5731 Cayutaville Rd L3524672 P 42.382001 -76.734533 2015-03-29 12:37:00 obsr2173269 S22586103 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310213543 2022-02-18 10:47:29.953615 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-15 12:11:00 obsr1062070 S22876779 Stationary P21 EBIRD 39.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298968005 2021-11-09 22:37:12.807526 6616 species avibase-7E022378 Common Loon Gavia immer 70 United States US New York US-NY Sullivan US-NY-105 28.0 Claryville L1428902 P 41.9152257 -74.5706134 2015-02-22 10:15:00 obsr444155 S22021664 Stationary P21 EBIRD 15.0 2.0 1 G1156252 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310952330 2021-03-24 20:11:19.423282 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 12 United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-18 10:48:00 obsr408487 S22926514 Traveling P22 EBIRD 87.0 1.448 4.0 1 G1224261 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301813371 2015-03-08 18:51:39 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 8 United States US New York US-NY Tioga US-NY-107 28.0 Route 282--bridge over Susquehannah L3466819 P 42.028786 -76.384317 2015-03-08 10:24:00 obsr1318356 S22242503 Stationary P21 EBIRD 8.0 2.0 1 G1170843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302873435 2021-04-01 11:15:31.646886 6526 species avibase-4D2FF6F1 Common Tern Sterna hirundo 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-13 11:45:00 obsr2906952 S22330131 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS641004443 2021-03-30 19:22:51.561415 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-28 08:30:00 obsr1249833 S47288139 Traveling P22 EBIRD 120.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311096132 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 15:30:00 obsr454647 S22935691 Traveling P22 EBIRD 180.0 2.414 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308426167 2021-03-23 17:39:28.36772 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 2 United States US New York US-NY Tioga US-NY-107 28.0 Confluence Park, Owego L2011248 H 42.0957386 -76.2724543 2015-04-08 08:09:00 obsr1318356 S22751476 Traveling P22 EBIRD 9.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316311265 2018-08-04 17:14:46 6616 species avibase-7E022378 Common Loon Gavia immer X United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-04 19:00:00 obsr1561508 S23256098 Traveling P22 EBIRD 100.0 1.609 2.0 1 G1254129 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311651410 2021-03-24 20:11:57.676649 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 7 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-20 10:32:00 obsr2945658 S22970876 Stationary P21 EBIRD 444.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312515285 2021-03-23 17:15:00.080143 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--South Butler Unit L781099 H 43.1302738 -76.777482 2015-04-24 10:14:00 obsr1721609 S23028232 Stationary P21 EBIRD 72.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS398702673 2021-11-15 03:06:58.889978 33216 species avibase-1F09CCCC Wilson's Warbler Cardellina pusilla 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-13 09:14:00 obsr1552744 S29427800 Traveling P22 EBIRD 65.0 0.805 2.0 1 G1735848 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294488282 2021-11-09 19:04:19.670837 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Dutchess US-NY-027 14.0 Sheffield Hill Road, Amenia L5076376 H 41.8961166 -73.5104074 2015-02-01 14:05:00 obsr2343626 S21640891 Traveling P22 EBIRD 31.0 0.805 2.0 1 G1132353 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312484506 2021-04-01 11:15:31.646886 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-24 06:49:00 obsr152435 S23026241 Traveling P22 EBIRD 132.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306930648 2015-04-05 19:03:48 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 US-NY-Seneca Falls - 42.9629x-76.7409 - Apr 2, 2015, 12:06 PM L3532295 P 42.962921 -76.740937 2015-04-02 12:06:00 obsr354090 S22642165 Stationary P21 EBIRD 5.0 1.0 1 G1206128 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312254302 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 07:20:00 obsr152435 S23010613 Traveling P22 EBIRD 93.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288543978 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-01-02 13:35:00 obsr2105033 S21146406 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293847474 2019-07-23 17:27:11 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point SP L109151 H 41.0719093 -71.8838119 2015-01-25 10:07:00 obsr1987335 S21590447 Stationary P21 EBIRD 86.0 2.0 1 G1128213 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313501652 2021-04-01 12:11:50.996293 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Mays Point Pool and road L99392 H 42.9946205 -76.7637599 2015-04-26 11:32:00 obsr2937317 S23090984 Stationary P21 EBIRD 35.0 2.0 1 G1239483 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316422235 2021-04-01 11:30:42.037277 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 07:30:00 obsr2976 S23261982 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312938174 2021-03-19 16:19:20.977326 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-25 14:30:00 obsr2071643 S23056282 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310254721 2021-12-27 15:55:58.481802 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N 2 United States US New York US-NY Ontario US-NY-069 13.0 **US-NY-ONT Manchester--Outlet Rd. at Amber's feeders (3176C) [Clifton Springs_NW] L4461011 P 42.9799705 -77.2164899 2015-04-15 10:49:00 obsr606693 S22879497 Traveling P22 EBIRD 6.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304387292 2021-03-19 15:59:05.496822 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Allegany US-NY-003 28.0 Beaver Lake—Alma Pond L3164747 H 42.0151331 -77.9956126 2015-03-21 10:15:00 obsr1310178 S22449134 Traveling P22 EBIRD 45.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288555599 2022-03-06 12:39:33.700954 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus X United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-01-02 11:30:00 obsr547602 S21147417 Traveling P22 EBIRD 60.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304259184 2021-03-26 06:29:56.44369 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 50 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-20 16:10:00 obsr934639 S22439441 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293728445 2021-04-01 10:55:39.308231 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-01-28 15:14:00 obsr502830 S21580703 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308802198 2021-03-26 06:09:25.361188 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-04-10 07:00:00 obsr879105 S22780314 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313296282 2021-03-26 07:30:35.289997 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-25 07:39:00 obsr1655171 S23077755 Traveling P22 EBIRD 42.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288172126 2021-11-20 09:30:27.481745 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 2 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake, end of Creekwalk L1331492 H 43.0680178 -76.1778662 2015-01-01 09:10:00 obsr660214 S21115135 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311590472 2021-03-26 06:55:00.227271 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 7 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--CR 7 X CR 27 [Palmyra_SE] L1027335 P 43.0250904 -77.1656084 2015-04-20 11:08:00 obsr606693 S22966545 Traveling P22 EBIRD 7.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308351898 2021-03-26 07:53:57.664705 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-04-07 18:15:00 obsr1060479 S22745713 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310310319 2018-08-04 17:09:22 303 species avibase-B59E1863 Canada Goose Branta canadensis 8 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA--Potter Rd. L1740178 H 43.198162 -76.317002 2015-04-15 18:30:00 obsr660214 S22883299 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309308622 2021-03-24 20:33:47.533911 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-04-12 07:46:00 obsr2211210 S22814582 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290178109 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus N 75 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-10 07:30:00 obsr259298 S21278332 Stationary P21 EBIRD 75.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306845837 2021-04-01 11:30:42.037277 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-01 07:00:00 obsr1220115 S22635902 Traveling P22 EBIRD 120.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305426678 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 35 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-26 10:00:00 obsr2793388 S22528266 Traveling P22 EBIRD 135.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315706153 2021-04-01 12:32:15.282601 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park /Hendr.Park L365070 P 40.6787341 -73.6936927 2015-05-04 08:25:00 obsr916370 S23220853 Traveling P22 EBIRD 125.0 3.541 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310038683 2021-03-24 20:53:39.352228 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 Vagele Lane, Glenmont L2868631 P 42.5975507 -73.7820594 2015-04-14 16:52:00 obsr1201479 S22864744 Stationary P21 EBIRD 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320377270 2015-05-16 23:01:40 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 US-NY-Marathon - 42.4030x-75.9755 - May 16, 2015, 11:01 PM L3648902 P 42.402961 -75.975496 2015-05-16 12:24:00 obsr246469 S23483241 Traveling P22 EBIRD 118.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312089021 2018-08-04 17:11:44 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 Unknown Sex and Age (1); Male, Adult (1); Female, Adult (1) United States US New York US-NY Warren US-NY-113 13.0 Crandall Park L1504751 H 43.3194382 -73.662484 2015-04-22 09:38:00 obsr1222746 S22999370 Traveling P22 EBIRD 33.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289844431 2019-12-02 14:07:19 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: Stewart Av: Fall Cr bridge L2382536 P 42.4526028 -76.48974 2015-01-05 10:28:00 obsr2760150 S21251251 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293728865 2021-03-26 06:55:00.227271 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 31 United States US New York US-NY Ontario US-NY-069 13.0 The Swamp L1660257 P 42.8848133 -77.0413991 2015-01-28 14:35:00 obsr572658 S21580748 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315784950 2021-11-15 03:06:58.889978 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus N 60 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 06:39:00 obsr870166 S23225190 Traveling P22 EBIRD 294.0 5.15 3.0 1 G1735849 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309654915 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-12 08:02:00 obsr924076 S22836730 Traveling P22 EBIRD 657.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310376310 2021-03-24 21:12:31.336509 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-04-16 06:39:00 obsr1839967 S22887984 Traveling P22 EBIRD 66.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313816260 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus 9 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 07:12:00 obsr609516 S23110816 Traveling P22 EBIRD 297.0 7.242 30.0 1 G1241310 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299564571 2021-04-01 11:42:50.317679 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Oneida US-NY-065 13.0 Delta Lake Dam L3440985 H 43.2736746 -75.4303479 2015-02-25 14:45:00 obsr1842004 S22069861 Stationary P21 EBIRD 25.0 3.0 1 G1159656 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313102682 2021-03-26 06:39:43.334073 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY New York US-NY-061 30.0 Highbridge Park--N of Alexander Hamilton Bridge L2741557 H 40.8528936 -73.926117 2015-04-25 15:50:00 obsr1513140 S23066284 Traveling P22 EBIRD 30.0 0.885 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289117939 2021-03-26 07:56:20.588749 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-01-04 12:05:00 obsr856524 S21194223 Stationary P21 EBIRD 35.0 2.0 1 G1095766 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315148914 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 12:20:00 obsr2072398 S23190786 Traveling P22 EBIRD 180.0 4.828 2.0 1 G1250420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291246292 2021-04-01 10:57:06.520339 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 16 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-01-16 07:36:00 obsr2420101 S21364839 Traveling P22 EBIRD 78.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313663766 2021-11-09 18:37:59.328981 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays, Cruger Island Road L2826031 P 42.0290854 -73.9156294 2015-03-20 11:00:00 obsr2228949 S23101017 Rusty Blackbird Spring Migration Blitz P41 EBIRD 140.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303206218 2021-03-23 17:22:05.708166 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-03-14 14:00:00 obsr1680059 S22356384 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316478574 2021-04-01 10:47:08.851048 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 4 United States US New York US-NY Broome US-NY-007 28.0 Vick's House L1532231 P 42.2154158 -75.8717773 2015-05-06 08:30:00 obsr1826325 S23265176 Traveling P22 EBIRD 120.0 2.414 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305607429 2021-04-01 11:30:42.037277 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-26 14:45:00 obsr2182516 S22542315 Traveling P22 EBIRD 135.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319967399 2015-05-15 20:06:35 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush Henrietta Athletic Association (RHAA) ballfields L3457667 H 43.0335528 -77.6629158 2015-05-15 17:40:00 obsr934639 S23461733 Stationary P21 EBIRD 113.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS873806356 2021-03-30 19:18:56.909873 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY New York US-NY-061 Roosevelt Is.--FDR Four Freedoms and Southpoint Park L1988607 H 40.7513426 -73.9598201 2015-05-06 18:00:00 obsr1644858 S65418830 Traveling P22 EBIRD 180.0 2.0 2.0 1 G5050305 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322828323 2021-04-01 10:57:06.520339 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 3 United States US New York US-NY Essex US-NY-031 13.0 Hoisington Brook Outlet L632213 H 44.1854969 -73.4323812 2015-05-25 09:47:00 obsr2937317 S23628969 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295987102 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis N 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-10 12:00:00 obsr2706811 S21760014 Traveling P22 EBIRD 90.0 3.219 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306477262 2021-03-19 16:44:35.607263 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-03-26 08:05:00 obsr1245041 S22608062 Stationary P21 EBIRD 55.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300138298 2021-11-15 03:06:58.889978 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-28 12:10:00 obsr1706920 S22115132 Traveling P22 EBIRD 135.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293229782 2021-04-01 12:32:15.282601 505 species avibase-C732CB10 American Black Duck Anas rubripes 10 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-25 10:55:00 obsr609516 S21541249 Traveling P22 EBIRD 90.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320433818 2015-05-17 07:54:52 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-17 06:22:00 obsr1165633 S23486320 Traveling P22 EBIRD 92.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309922497 2018-08-04 17:06:16 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-04-06 15:50:00 obsr564905 S22856521 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302145034 2019-07-23 17:27:40 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point L857357 P 41.0714088 -71.8586969 2015-03-07 13:20:00 obsr2934754 S22267225 Traveling P22 EBIRD 40.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293891274 2021-04-01 12:14:19.266649 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 21 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-01-29 14:00:00 obsr1137265 S21594059 Traveling P22 EBIRD 125.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311589951 2015-04-21 16:54:28 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Banks Rd. trail to WNW L2128515 P 42.393755 -76.430807 2015-04-19 12:00:00 obsr140280 S22966492 Traveling P22 EBIRD 80.0 2.414 2.0 1 G1230341 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS353189410 2021-03-26 06:21:54.883933 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-20 08:00:00 obsr2966709 S25819918 Traveling P22 EBIRD 300.0 32.187 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301965148 2021-11-09 22:42:30.104184 591 species avibase-1929E1E1 Canvasback Aythya valisineria 4 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA--Stop Sign Trail L2865478 H 41.5350853 -74.5126033 2015-03-09 09:50:00 obsr2097983 S22253580 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296282365 2021-03-22 09:15:15.32301 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Fort Niagara SP L210265 H 43.2638703 -79.0567981 2015-02-12 14:43:00 obsr502830 S21783720 Traveling P22 EBIRD 48.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291756222 2015-01-18 18:23:08 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Steuben US-NY-101 28.0 Lindley Bridge L371772 P 42.0287985 -77.1317482 2015-01-17 12:02:00 obsr1587816 S21405222 Traveling P22 EBIRD 16.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310551424 2021-03-30 19:07:52.958398 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-16 07:20:00 obsr2363365 S22900386 Traveling P22 EBIRD 360.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320622972 2022-01-20 09:38:40.245267 1806 species avibase-32DCEC14 Eared Grebe Podiceps nigricollis 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-17 06:15:00 obsr2950436 S23496263 Traveling P22 EBIRD 373.0 4.023 20.0 1 G1275330 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308712892 2018-02-01 15:11:46 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 AviTom42 L3513984 H 42.5677671 -76.4852494 2015-04-09 16:00:00 obsr887540 S22773695 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304540618 2018-08-04 17:02:13 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 6 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-21 10:00:00 obsr2286079 S22460466 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314291402 2021-04-01 12:18:57.910168 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Rockwell Azalea Garden L269457 H 42.4478844 -76.4806044 2015-04-30 10:01:00 obsr2952480 S23140540 Traveling P22 EBIRD 15.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308146332 2018-02-01 15:11:46 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor16 L3513958 H 42.6625316 -76.0726389 2015-04-06 16:51:00 obsr2173269 S22729864 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319232396 2021-04-01 11:30:42.037277 11371 species avibase-75600969 Northern Flicker Colaptes auratus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 07:00:00 obsr1088395 S23420217 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304092871 2015-03-19 18:25:13 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Nassau US-NY-059 30.0 22 Astor Place, Williston Park, NY, 11596 L1756723 P 40.7581251 -73.6466542 2015-03-19 15:00:00 obsr2086576 S22426393 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322453473 2021-03-19 16:43:17.120646 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 8 United States US New York US-NY Madison US-NY-053 28.0 Colgate University L1247581 H 42.8172219 -75.5373652 2015-05-24 08:30:00 obsr246591 S23607019 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293426520 2021-04-01 12:24:14.132004 592 species avibase-3072CC16 Redhead Aythya americana N 4 Male, Adult (3); Female, Adult (1) United States US New York US-NY Washington US-NY-115 13.0 Fort Miller, NY L2588693 P 43.1546669 -73.5772634 2015-01-26 14:00:00 obsr1222746 S21557317 Traveling P22 EBIRD 34.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312172714 2021-03-26 06:12:17.833181 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Home L3583401 P 42.0432136 -79.2998743 2015-04-19 07:00:00 obsr593748 S23005058 Stationary P21 EBIRD 480.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314388972 2021-03-26 06:21:54.883933 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:15:00 obsr1077730 S23146071 Traveling P22 EBIRD 315.0 4.828 24.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314452720 2021-03-26 07:30:35.289997 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Stewart Park and Renwick Woods L1131448 H 42.4589608 -76.5055355 2015-04-30 18:53:00 obsr881968 S23150278 Traveling P22 EBIRD 90.0 0.322 6.0 1 G1244946 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310124249 2015-04-14 23:01:00 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Rensselaer US-NY-083 13.0 West Sand Lake, NY 1 L1766939 P 42.6226389 -73.6175931 2015-04-14 11:55:00 obsr2186523 S22860643 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299956666 2021-03-24 20:58:53.646623 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris N 2 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-02-27 07:00:00 obsr72341 S22099822 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309816630 2020-02-27 07:29:03 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Cattaraugus US-NY-009 13.0 Conewango Swamp WMA L246473 H 42.1794444 -78.9861111 2015-04-12 15:12:00 obsr2756208 S22849033 Stationary P21 EBIRD 90.0 8.0 1 G1218582 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310900881 2021-03-19 16:02:45.308962 23291 species avibase-58C502EA Barn Swallow Hirundo rustica N 2 United States US New York US-NY Broome US-NY-007 28.0 West Corners Marsh L1513804 H 42.1169195 -76.0743913 2015-04-18 12:18:00 obsr1764243 S22923337 Stationary P21 EBIRD 8.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311108464 2021-03-31 04:01:10.517395 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 07:00:00 obsr2448957 S22936411 Traveling P22 EBIRD 360.0 6.437 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310676407 2021-04-01 10:58:31.765174 8773 species avibase-7AA076EF Barred Owl Strix varia 125 United States US New York US-NY Franklin US-NY-033 14.0 US-NY-Tupper Lake-1703 NY-30 L3570191 P 44.197463 -74.479552 2015-04-17 12:55:00 obsr2630526 S22908526 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299373926 2022-02-17 14:32:23.002448 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus N 10 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-22 14:41:00 obsr2502574 S22055289 Traveling P22 EBIRD 160.0 4.023 4.0 1 G1158699 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294888215 2021-04-01 12:26:53.827486 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea N 27 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-02-04 09:18:00 obsr2512689 S21673378 Stationary P21 EBIRD 9.0 2.0 1 G1135279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324170743 2021-03-26 06:29:56.44369 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Monroe US-NY-055 13.0 near pond at Mill Landing L2103068 P 43.235551 -77.702571 2015-05-28 09:20:00 obsr1721347 S23718913 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315257534 2021-03-26 06:17:19.712573 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Erie US-NY-029 13.0 Penn Dixie Site L697723 H 42.7778796 -78.8315096 2015-05-03 08:51:00 obsr488746 S23196943 Traveling P22 EBIRD 151.0 1.609 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288702635 2021-03-30 19:07:52.958398 636 species avibase-B77377EE Common Eider Somateria mollissima 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-02 15:00:00 obsr2363365 S21159192 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307821253 2018-08-04 17:05:40 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Ontario US-NY-069 13.0 Risser Rd. Swamp, Canandaigua L771877 H 42.9382814 -77.29738 2015-04-05 18:30:00 obsr749440 S22706288 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299358730 2021-04-01 11:42:50.317679 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 11 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-02-21 08:30:00 obsr1195517 S22054334 Stationary P21 EBIRD 135.0 2.0 1 G1163377 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300890772 2021-03-26 06:17:19.712573 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum N 2 United States US New York US-NY Erie US-NY-029 13.0 US-NY-Buffalo-41 Mill Rd L1760496 P 42.812527 -78.744568 2015-03-02 12:20:00 obsr1049514 S22171063 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300690194 2021-03-19 16:25:42.617988 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Essex US-NY-031 13.0 Tin Pan Alley L3437247 P 43.834301 -73.42659 2015-03-03 07:16:00 obsr2693145 S22155849 Stationary P21 EBIRD 8.0 2.0 1 G1165626 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310323111 2021-04-01 11:15:31.646886 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 3 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-15 08:00:00 obsr1731572 S22884248 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308310662 2021-04-01 11:30:42.037277 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-07 15:56:00 obsr2574755 S22742514 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320426548 2021-03-24 19:35:34.045988 6610 species avibase-6C50988A Red-throated Loon Gavia stellata N 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-05-17 06:34:00 obsr502830 S23485909 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304673738 2016-01-27 15:21:38 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 8 United States US New York US-NY Tompkins US-NY-109 28.0 125C Yellow Barn Rd. L1044911 P 42.4758637 -76.3421112 2015-03-22 08:00:00 obsr2001485 S22470167 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311452407 2021-03-26 07:07:10.758746 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 4 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-04-19 12:00:00 obsr155915 S22957204 Traveling P22 EBIRD 31.0 0.805 3.0 1 G1227501 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316310144 2021-03-26 06:17:19.712573 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius X United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-03 10:30:00 obsr1379161 S23256006 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296450490 2021-11-09 18:44:17.501928 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Dutchess US-NY-027 13.0 Home Feeder L3360044 P 41.9292051 -73.7230039 2015-02-13 10:20:00 obsr748522 S21799601 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305663548 2021-11-09 19:51:09.255083 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-03-24 18:15:00 obsr1917973 S22546641 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297245019 2015-02-15 17:41:43 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Point Lookout--Firemans Park L1870410 H 40.5919777 -73.5755787 2015-01-10 obsr756196 S21870974 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294553911 2015-02-02 11:21:51 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Queens US-NY-081 30.0 Riis Landing L2721494 H 40.5676631 -73.8842089 2015-01-31 14:47:00 obsr2796494 S21646135 Stationary P21 EBIRD 10.0 12.0 1 G1132928 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322499344 2021-03-26 07:56:20.588749 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 1 United States US New York US-NY Nassau US-NY-059 30.0 Planting Fields Arboretum L517497 H 40.8638744 -73.5580158 2015-05-24 10:30:00 obsr173911 S23609548 Traveling P22 EBIRD 126.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302614403 2015-03-12 12:01:15 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Albany US-NY-001 13.0 Rt. 90/Rt.155 L3482486 P 42.714543 -73.8691092 2015-03-11 12:15:00 obsr2590001 S22310886 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS560807046 2019-08-25 22:34:36 279 species avibase-3E04020B Brant Branta bernicla 80 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-18 obsr1868191 S41363538 Historical P62 EBIRD 0 G4460177 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314367412 2021-11-09 21:50:48.44865 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 3 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-30 06:45:00 obsr2862523 S23144535 Traveling P22 EBIRD 20.0 0.402 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312304935 2015-04-23 13:01:19 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Rensselaer US-NY-083 13.0 Papscanee Island Nature Preserve L488165 H 42.5762804 -73.7484741 2015-04-23 12:05:00 obsr1735540 S23013853 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313467999 2015-05-13 20:19:57 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-04-27 08:00:00 obsr2172593 S23088901 Traveling P22 EBIRD 105.0 3.219 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308145616 2021-03-19 16:14:11.035882 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor11 L3513953 H 42.5527608 -76.0336385 2015-04-06 18:54:00 obsr2173269 S22729814 Stationary P21 EBIRD 53.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308987418 2015-04-10 22:54:21 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 7 United States US New York US-NY Broome US-NY-007 28.0 harold moore park old vestal road L2037508 P 42.100324 -76.0142541 2015-03-26 14:00:00 obsr1947568 S22793457 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314078049 2018-08-04 17:12:41 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Feeder Rd. Trail (Genesee Co.) L153041 H 43.1242469 -78.429129 2015-04-29 08:40:00 obsr137150 S23127127 Traveling P22 EBIRD 210.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295471989 2021-03-24 20:33:47.533911 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-02-01 10:54:00 obsr2683910 S21719904 Traveling P22 EBIRD 23.0 0.805 2.0 1 G1138398 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301208984 2021-03-24 21:01:50.671145 5773 species avibase-671B69FE Piping Plover Charadrius melodus 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-27 08:20:00 obsr2497229 S22194415 Traveling P22 EBIRD 120.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311861442 2021-03-26 07:20:31.408164 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 7 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP--Carlls River L2733652 H 40.7295875 -73.3410925 2015-04-19 10:06:00 obsr1987335 S22984486 Traveling P22 EBIRD 28.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306411453 2021-03-30 19:07:52.958398 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-30 14:15:00 obsr2363365 S22602676 Traveling P22 EBIRD 175.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319976009 2021-04-01 10:51:06.899622 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 25 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-05-15 08:40:00 obsr1380963 S23462196 Traveling P22 EBIRD 45.0 9.656 1.0 1 G1272454 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313748785 2021-04-01 12:14:19.266649 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mill Dam Park, Halesite L3577414 H 40.8856084 -73.4231741 2015-04-28 08:45:00 obsr1488063 S23106491 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302352372 2018-08-04 16:59:17 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 22 United States US New York US-NY Kings US-NY-047 The Narrows (Brooklyn) L1918391 H 40.6218575 -74.0503407 2015-03-10 18:16:00 obsr152435 S22290507 Traveling P22 EBIRD 69.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291981286 2017-08-16 16:23:12 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Ontario US-NY-069 13.0 Sand Rd. L2510088 P 42.8811216 -77.4885464 2015-01-19 16:20:00 obsr983655 S21422663 Traveling P22 EBIRD 60.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297904789 2021-11-09 18:44:19.445789 622 species avibase-50566E50 Lesser Scaup Aythya affinis 3 United States US New York US-NY Dutchess US-NY-027 28.0 Dover Plains L3390122 P 41.7218743 -73.5436821 2015-02-16 10:00:00 obsr1787323 S21923645 Traveling P22 EBIRD 120.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298847425 2021-03-24 19:46:49.147482 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Lewis US-NY-049 14.0 Lowville Village L1791251 P 43.7883908 -75.4987824 2015-02-21 06:30:00 obsr1882034 S22011881 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298367444 2021-04-01 11:43:48.927316 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Ontario US-NY-069 13.0 Gorham, Depew Road L3399120 P 42.8372 -77.16098 2015-02-18 14:01:00 obsr1243175 S21970494 Traveling P22 EBIRD 17.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294930174 2017-08-16 16:31:55 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Greene US-NY-039 13.0 Coxsackie Creek Grassland Preserve L293901 H 42.3734151 -73.8229966 2015-02-04 14:05:00 obsr2855945 S21677295 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313780353 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 08:30:00 obsr145923 S23108484 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309289745 2021-03-23 17:22:05.708166 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 Male, Adult (3) United States US New York US-NY Herkimer US-NY-043 13.0 Vicinity of Brockett & Lyon Road L664921 P 43.0933994 -74.7911453 2015-04-10 09:16:00 obsr2694889 S22813341 Incidental P20 EBIRD 0 G1215561 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304630546 2018-08-04 17:02:28 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Suffolk US-NY-103 US-NY_839 Cedar Beach L149796 P 41.0363235 -72.3890305 2015-03-22 13:16:00 obsr2485753 S22466869 Traveling P22 EBIRD 28.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317575618 2021-11-09 19:18:50.164977 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L900098 P 41.7307464 -73.8804388 2015-05-08 11:00:00 obsr2954986 S23328439 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311623891 2021-03-19 16:44:35.607263 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 7 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-04-16 10:00:00 obsr2759466 S22968874 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294424999 2021-11-20 09:30:27.481745 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake, end of Creekwalk L1331492 H 43.0680178 -76.1778662 2015-02-01 16:30:00 obsr1633923 S21635909 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310037246 2017-05-02 11:19:42 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Genesee US-NY-037 13.0 9605 Francis Rd , Batavia L3360943 P 42.947728 -78.1616086 2015-04-12 12:45:00 obsr393804 S22864628 Traveling P22 EBIRD 75.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921069 2021-03-26 07:56:20.588749 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-03 09:00:00 obsr2218212 S22173308 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315553452 2021-03-30 19:07:52.958398 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 07:30:00 obsr2363365 S23212535 Traveling P22 EBIRD 480.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296157039 2015-02-11 17:02:34 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Monroe US-NY-055 13.0 Jacob's Rd, Hamlin, NY L3288564 P 43.3426438 -77.9425907 2015-02-11 12:30:00 obsr1534851 S21772822 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303283743 2015-03-15 14:46:28 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Suffolk US-NY-103 30.0 Arshamomaque Preserve L273407 H 41.0956498 -72.3911698 2015-03-15 14:03:00 obsr2485753 S22362503 Traveling P22 EBIRD 42.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320905862 2021-03-19 16:19:20.977326 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 18 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-18 09:55:00 obsr2939916 S23512617 Traveling P22 EBIRD 161.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318668052 2021-03-19 16:32:34.732091 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 18:30:00 obsr876649 S23387339 Traveling P22 EBIRD 60.0 1.0 6.0 1 G1265606 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307922151 2016-08-07 22:34:39 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 30 United States US New York US-NY Westchester US-NY-119 30.0 Harts Brook Nature Preserve L195298 H 41.0177327 -73.8110354 2015-04-05 07:30:00 obsr258560 S22713895 Traveling P22 EBIRD 90.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310701415 2021-09-03 19:22:31.034431 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 26 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-04-17 15:33:00 obsr2497657 S22910172 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291733718 2021-04-01 11:54:40.172593 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-01-16 09:00:00 obsr666331 S21403426 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315494429 2021-04-01 11:30:42.037277 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-03 16:15:00 obsr2105033 S23209378 Traveling P22 EBIRD 95.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310856718 2021-03-26 07:07:10.758746 6398 hybrid avibase-415E45E8 Herring x Great Black-backed Gull (hybrid) Larus argentatus x marinus 1 United States US New York US-NY Richmond US-NY-085 Conference House Park L302089 H 40.4995098 -74.2516756 2015-04-18 08:33:00 obsr1958124 S22920509 Traveling P22 EBIRD 68.0 1.609 3.0 1 G1224799 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306966823 2021-03-30 19:29:33.633096 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY Suffolk US-NY-103 30.0 Frank Melville Memorial Park and Mill Pond L1114075 H 40.946195 -73.1156445 2015-03-28 13:05:00 obsr758734 S22644938 Traveling P22 EBIRD 50.0 1.3 6.0 1 G1201641 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318504818 2021-03-26 06:38:32.090082 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Montgomery US-NY-057 13.0 NY--Glen area, Montgomery Co. L3634172 P 42.8942252 -74.344697 2015-05-10 obsr2510314 S23378545 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322595436 2021-03-26 06:29:56.44369 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-24 17:11:00 obsr1696616 S23614769 Traveling P22 EBIRD 54.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291912768 2021-03-30 19:29:33.633096 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 25 United States US New York US-NY Suffolk US-NY-103 30.0 Fort Pond (south arm), Montauk L2441574 H 41.032762 -71.9503355 2015-01-19 09:28:00 obsr598381 S21417130 Traveling P22 EBIRD 35.0 1.223 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302937458 2015-03-13 20:08:36 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Broome US-NY-007 28.0 2120 Bradley Creek Rd L3485843 P 42.1613039 -76.0441446 2015-03-13 16:30:00 obsr290506 S22335474 Traveling P22 EBIRD 15.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311454738 2021-07-29 22:33:30.646935 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-17 obsr1220115 S22957358 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290042167 2015-01-09 16:28:11 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 Male, Adult (3); Female, Adult (2) United States US New York US-NY Greene US-NY-039 28.0 Freehold Backyard L2621415 P 42.3633957 -74.0563059 2015-01-09 16:25:00 obsr1188777 S21267310 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324163914 2021-03-30 19:07:52.958398 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 4 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 08:00:00 obsr931103 S23718517 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308443761 2015-04-08 11:22:31 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Richmond US-NY-085 30.0 40.6092x-74.1165 - Apr 8, 2015, 11:22 AM L3548215 P 40.609214 -74.116528 2015-04-08 11:22:00 obsr1958124 S22752842 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296492650 2021-03-26 07:20:31.408164 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Suffolk US-NY-103 30.0 404 atlantic ave L3361253 P 41.1116928 -72.3614502 2015-02-13 09:05:00 obsr58886 S21803347 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310345783 2016-10-11 17:00:32 483 species avibase-85625D75 Mallard Anas platyrhynchos 26 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip D L3559811 P 40.162933 -73.250983 2015-04-11 10:00:00 obsr642993 S22885788 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221326 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298146281 2018-08-04 16:56:44 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 5 Male, Adult (3); Female, Adult (2) United States US New York US-NY New York US-NY-061 30.0 Harlem River, Pier 107 L1378864 H 40.7888424 -73.9361898 2015-02-17 12:45:00 obsr2182635 S21951672 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313300876 2021-03-26 07:53:57.664705 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-04-26 07:37:00 obsr1060479 S23078040 Stationary P21 EBIRD 609.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303377617 2017-08-02 19:52:12 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-03-15 15:55:00 obsr1982614 S22370149 Traveling P22 EBIRD 110.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308042930 2021-03-24 20:33:47.533911 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Tompkins US-NY-109 28.0 Freeville, Kingdom Road L3543819 P 42.49763 -76.3735 2015-04-06 15:24:00 obsr2211210 S22722143 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321896706 2021-11-02 20:32:06.137153 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-21 12:20:00 obsr317968 S23573993 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289351840 2021-03-26 08:11:28.0353 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 3 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-01-05 10:00:00 obsr1664745 S21212370 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313943657 2021-11-15 03:06:58.889978 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-28 18:30:00 obsr2796494 S23118834 Traveling P22 EBIRD 40.0 0.805 14.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS317459415 2021-03-19 16:44:35.607263 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Monroe US-NY-055 13.0 Lyons and Wardell- traveling. L1567354 P 43.0028314 -77.6111956 2015-05-09 08:08:00 obsr270659 S23321305 Traveling P22 EBIRD 116.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297555064 2021-03-24 20:13:27.613389 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-02-16 11:39:00 obsr2574755 S21898505 Traveling P22 EBIRD 47.0 2.414 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305478379 2021-03-24 20:58:53.646623 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 1 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-03-26 12:35:00 obsr72341 S22532367 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316105957 2015-10-17 16:11:51 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-05 09:00:00 obsr1886281 S23243502 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294979335 2021-03-23 17:41:09.545385 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Westchester US-NY-119 30.0 Rye Brook - Backyard L436562 P 41.0551492 -73.6969221 2015-02-04 obsr357066 S21680739 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318307581 2021-04-01 10:55:39.308231 337 species avibase-694C127A Mute Swan Cygnus olor 4 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-10 07:30:00 obsr2871264 S23367536 Traveling P22 EBIRD 330.0 2.414 15.0 1 G1282906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314746037 2015-05-01 20:28:39 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Delaware US-NY-025 28.0 Quail Ridge Area L2327396 P 42.2085425 -74.587276 2015-05-01 14:30:00 obsr883142 S23168046 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322503391 2018-08-06 22:31:03 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Clinton US-NY-019 13.0 Point Au Roche SP--Camp Red Cloud Rd. & Long Point L590258 H 44.7774637 -73.3770847 2015-05-24 11:44:00 obsr2937317 S23609745 Traveling P22 EBIRD 64.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316714866 2021-03-26 06:17:19.712573 636 species avibase-B77377EE Common Eider Somateria mollissima 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-06 08:40:00 obsr1996460 S23279008 Traveling P22 EBIRD 140.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320961695 2021-11-09 19:01:40.008558 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-18 07:30:00 obsr2700041 S23515565 Traveling P22 EBIRD 420.0 6.437 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305848707 2018-08-04 17:04:31 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 15 United States US New York US-NY Saratoga US-NY-091 13.0 hudson river rt 4 stillwater L3520906 P 43.0335789 -73.5931486 2015-03-28 15:20:00 obsr2774749 S22560306 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308205563 2018-08-04 17:06:20 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-07 08:04:00 obsr800690 S22734766 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310039190 2015-04-14 17:23:55 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 7 United States US New York US-NY Schuyler US-NY-097 US-NY_845 13.0 Finger Lakes NF--Teeter Pond Area L940987 H 42.5426153 -76.7982316 2015-04-14 15:10:00 obsr2260025 S22864778 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310530474 2022-03-06 12:39:33.700954 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 2 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-04-12 09:30:00 obsr1494607 S22898959 Traveling P22 EBIRD 120.0 0.805 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319621621 2021-04-01 11:15:31.646886 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 50 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 07:40:00 obsr454647 S23442408 Traveling P22 EBIRD 540.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308714069 2019-09-29 09:48:34 23383 species avibase-F5C181CA Cliff Swallow Petrochelidon pyrrhonota 6 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-09 10:50:00 obsr1213920 S22773782 Stationary P21 EBIRD 160.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291492123 2021-03-30 19:29:33.633096 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot State Park L2140240 P 40.7496466 -73.1506312 2015-01-17 09:25:00 obsr87415 S21384752 Traveling P22 EBIRD 110.0 1.207 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289110572 2021-04-01 12:14:19.266649 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos N X United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-01-04 14:40:00 obsr2902954 S21193664 Traveling P22 EBIRD 80.0 2.414 2.0 1 G1095692 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309964750 2021-03-24 21:06:05.39641 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Onondaga US-NY-067 13.0 Pratts Falls County Park L271399 H 42.9309454 -75.995262 2015-04-14 08:00:00 obsr660214 S22859509 Traveling P22 EBIRD 75.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315097141 2021-03-30 19:07:52.958398 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 12 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 13:10:00 obsr2277801 S23187938 Historical P62 EBIRD 190.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311601277 2021-04-01 11:49:53.573686 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N X United States US New York US-NY Queens US-NY-081 30.0 Flushing Meadows Corona Park--Queens Zoo L2851338 H 40.7451165 -73.8489014 2015-04-19 12:15:00 obsr2233270 S22967313 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309161467 2021-04-01 12:24:14.132004 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 CR 46, btwn Plum Rd. & Durkeetown Baptist Church L1475199 H 43.2487429 -73.5427809 2015-04-11 13:20:00 obsr1222746 S22804877 Traveling P22 EBIRD 20.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312717981 2021-11-09 18:46:28.873809 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 33 United States US New York US-NY Dutchess US-NY-027 14.0 US-NY-Amenia - 41.8837x-73.5201 - Apr 24, 2015, 1:35 PM L3587016 P 41.883662 -73.520108 2015-04-24 13:35:00 obsr2175245 S23043060 Traveling P22 EBIRD 83.0 2.414 3.0 1 G1234709 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290871209 2021-03-23 17:26:08.495143 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 35 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-01-13 09:00:00 obsr247620 S21334452 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313228106 2021-04-01 11:27:18.37144 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Montgomery US-NY-057 13.0 West Ames Rd., horse farm L1208609 H 42.8466304 -74.6416926 2015-04-26 09:00:00 obsr777630 S23073525 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310375351 2019-07-24 17:38:53 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 250 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr1175815 S22887906 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300922241 2021-04-01 12:32:15.282601 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 23 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-24 09:00:00 obsr2218212 S22173361 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315083140 2018-08-04 17:14:02 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Essex US-NY-031 13.0 Mt. Defiance L2814714 H 43.8313207 -73.406589 2015-05-02 07:50:00 obsr822321 S23187198 Traveling P22 EBIRD 80.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290503597 2021-03-23 16:52:36.900075 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-11 14:30:00 obsr547602 S21304952 Traveling P22 EBIRD 180.0 4.023 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308808223 2021-11-09 20:53:17.759253 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Rockland US-NY-087 30.0 Nanuet L1293607 P 41.0931306 -74.0298271 2015-04-09 16:30:00 obsr1932005 S22780783 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322623151 2021-03-26 06:29:56.44369 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-24 12:15:00 obsr1962295 S23616447 Stationary P21 EBIRD 60.0 2.0 1 G1287996 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288684645 2021-03-22 09:17:32.016297 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-01-03 09:00:00 obsr666964 S21157516 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308110079 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis N 30 United States US New York US-NY Bronx US-NY-005 30.0 Ethical Culture Fieldston School Campus L8904086 H 40.8897431 -73.90637 2015-04-06 15:05:00 obsr2793388 S22727222 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291460134 2018-08-04 16:53:29 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-01-17 11:53:00 obsr241086 S21382234 Stationary P21 EBIRD 12.0 2.0 1 G1112025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317530440 2018-08-06 22:29:23 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-09 07:38:00 obsr1097423 S23325754 Traveling P22 EBIRD 153.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315132445 2022-02-17 14:32:23.002448 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-02 08:30:00 obsr2502574 S23189871 Traveling P22 EBIRD 150.0 1.931 5.0 1 G1247128 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305282951 2017-02-07 20:57:35 303 species avibase-B59E1863 Canada Goose Branta canadensis 320 United States US New York US-NY Orleans US-NY-073 13.0 Johnson Creek, Lyndonville L2394599 H 43.321441 -78.3911351 2015-03-25 13:19:00 obsr2756208 S22517079 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317243516 2021-04-01 11:30:42.037277 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-07 07:29:00 obsr363953 S23308410 Traveling P22 EBIRD 300.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288874983 2021-03-30 19:39:10.250398 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve 1st pond L630713 P 40.683925 -73.4595895 2015-01-03 14:15:00 obsr1160328 S21175287 Stationary P21 EBIRD 15.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322748179 2015-05-25 09:20:10 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Broome US-NY-007 28.0 Lamoureux Yard list L1160914 P 42.0812478 -75.9837198 2015-05-25 09:00:00 obsr1044068 S23624148 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305571890 2021-03-24 20:11:57.676649 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 8 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-26 08:32:00 obsr756196 S22539506 Stationary P21 EBIRD 70.0 2.0 1 G1194042 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309200706 2015-04-11 19:18:10 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Upper Loop L214381 P 42.3717347 -76.3653982 2015-04-11 17:03:00 obsr2074043 S22807529 Traveling P22 EBIRD 45.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299022878 2021-03-30 19:43:32.881136 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 14 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-22 13:52:00 obsr2206421 S22026075 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296138656 2021-04-01 11:49:53.573686 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 15 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Environmental Center L1476823 H 40.7621022 -73.7535993 2015-02-11 12:26:00 obsr1982614 S21772053 Traveling P22 EBIRD 120.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292477033 2021-04-01 11:49:53.573686 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-01-21 14:15:00 obsr2310825 S21482047 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS320189054 2021-04-01 12:32:15.282601 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-16 08:00:00 obsr2207991 S23473689 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309383824 2021-04-01 12:14:19.266649 5922 species avibase-06B9BD24 Sanderling Calidris alba 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-12 09:30:00 obsr706483 S22819182 Traveling P22 EBIRD 135.0 1.931 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292497702 2021-03-26 07:19:24.261425 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Steuben US-NY-101 28.0 pamandpaul-home L499201 P 42.29185 -77.3240089 2015-01-21 08:00:00 obsr2696253 S21483677 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309173619 2021-03-30 19:07:52.958398 11371 species avibase-75600969 Northern Flicker Colaptes auratus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 07:15:00 obsr2078092 S22805701 Traveling P22 EBIRD 360.0 4.828 25.0 1 G1214819 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS464812645 2017-02-11 09:50:36 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 2 United States US New York US-NY Tompkins US-NY-109 13.0 NY - east loop from Monkey Run North L5172526 P 42.4711048 -76.4232159 2015-01-01 13:15:00 obsr1708417 S34293017 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320472088 2021-03-19 16:10:30.527219 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-15 07:50:00 obsr1334267 S23488382 Traveling P22 EBIRD 42.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315505017 2021-04-01 11:24:19.637193 406 species avibase-27B2749A Wood Duck Aix sponsa 4 United States US New York US-NY Monroe US-NY-055 13.0 Erie Canal Path to UR L2145843 P 43.1023616 -77.5885391 2015-05-03 13:15:00 obsr2220829 S23209936 Traveling P22 EBIRD 120.0 22.531 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316041599 2020-10-06 06:34:38 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 Letchworth SP--Trail No. 16 (Bear Hollow) L3574643 H 42.6712793 -77.9397905 2015-05-04 05:30:00 obsr1962379 S23240052 Traveling P22 EBIRD 50.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313672981 2021-03-24 20:33:47.533911 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 2 United States US New York US-NY Tompkins US-NY-109 28.0 Durland Preserve L446377 H 42.4379956 -76.3979816 2015-04-22 07:40:00 obsr2683910 S23101648 Traveling P22 EBIRD 59.0 1.931 2.0 1 G1240579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295755483 2022-02-18 10:47:29.953615 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-02-09 07:14:00 obsr1062070 S21741719 Stationary P21 EBIRD 115.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332427248 2021-04-27 11:51:21.972689 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Monroe US-NY-055 13.0 West Ridge Plaza, Greece L2998752 H 43.2040106 -77.6430658 2015-04-26 16:01:00 obsr334398 S24314404 Stationary P21 EBIRD 19.0 2.0 1 G6615590 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316538626 2021-04-01 11:30:42.037277 32860 species avibase-4D08EE7E Prothonotary Warbler Protonotaria citrea 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 07:30:00 obsr2369927 S23268830 Traveling P22 EBIRD 420.0 6.437 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322588183 2021-03-23 17:22:05.708166 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Herkimer US-NY-043 13.0 Ransom Marsh L2797588 P 43.0945072 -74.7733743 2015-05-24 07:40:00 obsr2694889 S23614380 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296662004 2021-03-24 21:09:00.82373 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Rensselaer US-NY-083 13.0 Coopers Pond, Brunswick L1008485 H 42.7363667 -73.6531746 2015-02-14 09:27:00 obsr2211210 S21818586 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306807142 2021-03-26 06:07:45.516082 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-04-01 13:48:00 obsr1348614 S22632980 Rusty Blackbird Spring Migration Blitz P41 EBIRD 200.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306961990 2021-03-19 16:19:20.977326 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Erie US-NY-029 13.0 Knox Farm SP L160588 H 42.7715237 -78.636327 2015-04-02 07:30:00 obsr2825336 S22644571 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307687867 2021-03-31 04:01:57.961467 279 species avibase-3E04020B Brant Branta bernicla 28 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-05 10:19:00 obsr334398 S22696763 Stationary P21 EBIRD 71.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310396356 2019-07-23 17:28:18 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip F L3559849 P 40.22115 -73.03615 2015-04-11 13:00:00 obsr12303 S22889417 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221325 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS315285124 2021-11-09 22:21:46.88202 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Ulster US-NY-111 US-NY_1728 28.0 Mohonk Preserve L80 H 41.7378154 -74.1985567 2015-04-18 10:00:00 obsr1946430 S23198304 Traveling P22 EBIRD 300.0 14.0 2.0 1 G1248924 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322568030 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 11:48:00 obsr152435 S23613325 Traveling P22 EBIRD 292.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308750336 2021-04-01 11:27:18.37144 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 33 United States US New York US-NY Montgomery US-NY-057 13.0 Mapletown Road - West of Donato Road L748877 P 42.8359158 -74.5500791 2015-04-09 10:25:00 obsr2694889 S22776551 Traveling P22 EBIRD 89.0 6.598 4.0 1 G1212753 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312805706 2015-04-25 13:16:45 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-04-25 13:01:00 obsr1092576 S23048646 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292019029 2018-08-04 16:54:00 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus X United States US New York US-NY Westchester US-NY-119 30.0 Five Islands Park L1351565 H 40.912714 -73.7651328 2015-01-19 10:00:00 obsr800463 S21425675 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318668430 2021-04-01 11:15:31.646886 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 12 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-09 16:30:00 obsr876649 S23387366 Traveling P22 EBIRD 80.0 1.0 6.0 1 G1265607 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324130135 2018-08-04 17:30:42 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Stow Fishing Access Site L605934 H 42.1462514 -79.4006959 2015-05-31 06:51:00 obsr1092576 S23716306 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315636790 2018-08-04 17:14:39 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-05-04 05:58:00 obsr2321296 S23217130 Traveling P22 EBIRD 62.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323386890 2021-11-09 17:58:40.313796 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-10 07:00:00 obsr2786327 S23665271 Traveling P22 EBIRD 120.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311223544 2021-12-08 07:58:41.562209 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-19 07:36:00 obsr2206421 S22943163 Traveling P22 EBIRD 159.0 2.736 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294727284 2021-03-26 08:14:57.071052 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 10 United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-02-03 10:00:00 obsr2924527 S21659758 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312738815 2021-04-01 12:26:53.827486 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-04-22 07:45:00 obsr2798912 S23044438 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313074447 2022-03-06 12:59:18.679812 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N 7 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-26 06:55:00 obsr481595 S23064635 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315359301 2021-11-15 03:06:58.889978 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 10:00:00 obsr90751 S23202037 Traveling P22 EBIRD 180.0 6.437 2.0 1 G1249579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316413461 2021-03-30 19:13:38.458673 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-06 06:54:00 obsr2595828 S23261496 Traveling P22 EBIRD 68.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299015555 2021-03-24 21:06:05.39641 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 Male, Adult (1) United States US New York US-NY Onondaga US-NY-067 13.0 Home L1479128 P 43.1502997 -76.3703906 2015-02-22 13:00:00 obsr2172593 S22025532 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312082297 2021-03-26 06:21:54.883933 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Vale of Cashmere L1149386 H 40.6690561 -73.9683616 2015-04-22 08:50:00 obsr2476180 S22998918 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323383054 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 3 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-27 10:00:00 obsr1152226 S23665002 Traveling P22 EBIRD 105.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309036730 2022-02-18 10:47:29.953615 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-11 06:55:00 obsr1062070 S22796992 Stationary P21 EBIRD 148.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307463582 2021-03-19 16:19:20.977326 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-04 10:00:00 obsr2537615 S22681247 Traveling P22 EBIRD 45.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001173 2021-03-26 07:56:20.588749 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-20 09:00:00 obsr2218212 S23775928 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311266849 2018-03-28 07:13:34 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Towpath Rd. L266832 H 43.0038224 -76.7457005 2015-04-19 13:13:00 obsr1008519 S22945848 Traveling P22 EBIRD 15.0 0.161 2.0 0 G1226581 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290538680 2018-08-04 16:53:09 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 4 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP--Belmont Islands L1656456 H 40.7357853 -73.342391 2015-01-11 13:00:00 obsr2017304 S21307681 Traveling P22 EBIRD 120.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310212569 2021-03-23 16:45:39.358281 32666 species avibase-5110842F Baltimore Oriole Icterus galbula X United States US New York US-NY St. Lawrence US-NY-089 13.0 Brickhouse L3148579 P 44.5368599 -75.1395428 2015-04-15 10:30:00 obsr86161 S22876712 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289827281 2021-03-24 20:33:47.533911 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-01-08 07:47:00 obsr455249 S21249658 Traveling P22 EBIRD 18.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308259942 2018-08-04 17:07:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-04-07 10:50:00 obsr1565981 S22738989 Traveling P22 EBIRD 58.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314004310 2015-04-29 12:35:22 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Mulholland Wildflower Preserve L124514 H 42.431675 -76.48283 2015-04-29 08:15:00 obsr246591 S23122776 Traveling P22 EBIRD 60.0 3.219 1.0 1 G1242553 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314279215 2018-08-04 17:13:05 5956 species avibase-F35821AA Semipalmated Sandpiper Calidris pusilla 2 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA, Baldwinsville, NY L1421279 P 43.2105406 -76.3197934 2015-04-30 07:00:00 obsr2172593 S23139758 Traveling P22 EBIRD 75.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314278226 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-04-30 07:07:00 obsr894191 S23139699 Traveling P22 EBIRD 119.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317523261 2021-03-26 07:46:52.994574 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 05:40:00 obsr2512689 S23325396 Traveling P22 EBIRD 290.0 4.828 1.0 1 G1258875 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312545160 2018-08-04 17:11:58 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 6 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-24 08:25:00 obsr525303 S23030907 Traveling P22 EBIRD 95.0 1.609 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310908459 2021-03-30 19:39:10.250398 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-04-18 08:15:00 obsr2814122 S22923791 Traveling P22 EBIRD 120.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324403382 2022-02-17 14:32:23.002448 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-30 08:30:00 obsr1605975 S23734019 Traveling P22 EBIRD 135.0 1.77 3.0 1 G1298014 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310430226 2021-11-09 19:55:29.587179 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 1 United States US New York US-NY Orange US-NY-071 28.0 Six and a Half Station Rd. Sanctuary L306143 H 41.4025242 -74.3499176 2015-04-14 16:00:00 obsr2273061 S22891616 Traveling P22 EBIRD 70.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316157974 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 09:15:00 obsr609516 S23246244 Traveling P22 EBIRD 270.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300684419 2015-03-03 08:45:09 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Stillwater-90 Wrights Loop L3452683 P 42.990749 -73.609713 2015-03-03 08:37:00 obsr648176 S22155339 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288683815 2018-08-04 16:52:36 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-01-03 08:43:00 obsr1154 S21157449 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302883329 2021-04-01 11:46:19.761029 26278 species avibase-A381417F House Wren Troglodytes aedon 2 United States US New York US-NY Orleans US-NY-073 13.0 Hemlock Ridge Road Medina, New York L1349419 P 43.1703821 -78.3003784 2015-03-13 14:01:00 obsr2588479 S22330909 Traveling P22 EBIRD 73.0 3.862 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293794337 2021-03-26 07:52:59.845315 6339 species avibase-8535345B Herring Gull Larus argentatus 5 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-27 07:40:00 obsr1000124 S21585976 Area P23 EBIRD 78.0 2.59 2.0 1 G1127991 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319396342 2021-03-26 07:56:20.588749 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Nassau US-NY-059 30.0 Sagamore Hill NHS L910919 H 40.8859145 -73.4983377 2015-05-13 16:15:00 obsr2008637 S23429360 Traveling P22 EBIRD 90.0 2.012 1.0 1 G1269645 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313087947 2021-03-19 16:19:20.977326 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-26 07:33:00 obsr1603345 S23065434 Traveling P22 EBIRD 201.0 2.575 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309603647 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-12 11:50:00 obsr2793388 S22833314 Traveling P22 EBIRD 240.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291697276 2021-11-20 09:30:27.481745 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 80 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake, end of Creekwalk L1331492 H 43.0680178 -76.1778662 2015-01-18 12:00:00 obsr2143830 S21400476 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332435087 2021-03-26 06:29:56.44369 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-04-19 18:14:00 obsr334398 S24314961 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308067975 2021-04-01 11:30:42.037277 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-06 08:00:00 obsr2319444 S22723892 Traveling P22 EBIRD 300.0 4.828 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290832370 2021-03-30 19:29:33.633096 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-13 09:00:00 obsr1693806 S21330939 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310470642 2021-03-26 06:53:58.593564 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 2 United States US New York US-NY Oneida US-NY-065 13.0 Whitestown L210157 P 43.17351 -75.4187135 2015-04-13 obsr1384380 S22894384 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS488825774 2021-05-01 13:40:16.138719 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Rensselaer US-NY-083 13.0 US-NY-Poestenkill-455 Snyders Corners Rd L3438483 P 42.683002 -73.588114 2015-02-13 06:00:00 obsr1301707 S36175188 Stationary P21 EBIRD 240.0 1.0 1 G2354435 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317696482 2018-02-01 15:11:46 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor25 L3513967 H 42.4531944 -76.1188705 2015-05-09 17:22:00 obsr620377 S23334888 Stationary P21 EBIRD 6.0 2.0 1 G1272221 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295324404 2021-03-26 06:07:26.162322 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 20 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-02-07 09:45:00 obsr1210649 S21708030 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308741045 2021-11-09 20:12:16.773384 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-04-09 13:19:00 obsr1912104 S22775840 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318054563 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-09 14:14:00 obsr1821546 S23354271 Traveling P22 EBIRD 46.0 3.219 4.0 1 G1260349 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301390658 2019-08-26 22:40:47 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Oswego-134-156 Water St L3461274 P 43.457613 -76.511124 2015-03-07 13:05:00 obsr1092576 S22209613 Stationary P21 EBIRD 5.0 4.0 1 G1168806 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304410618 2015-03-26 09:39:55 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 3 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Upper Loop L214381 P 42.3717347 -76.3653982 2015-03-21 13:41:00 obsr2074043 S22450778 Traveling P22 EBIRD 59.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305180394 2021-04-01 11:49:53.573686 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 4 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-22 07:15:00 obsr1982614 S22508971 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288472949 2021-04-01 11:24:19.637193 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 1 United States US New York US-NY Monroe US-NY-055 13.0 Brighton Railroad Trail L2607863 P 43.1251272 -77.5511277 2015-01-01 09:56:00 obsr2220829 S21140297 Incidental P20 EBIRD 1.0 1 G1090808 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318566566 2015-05-11 11:39:09 32955 species avibase-41062654 Northern Parula Setophaga americana 5 United States US New York US-NY Jefferson US-NY-045 13.0 Western Parcel - Private L3615503 P 43.9956858 -76.0292745 2015-05-06 20:00:00 obsr544268 S23381709 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307246426 2021-04-01 11:49:53.573686 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-03 15:00:00 obsr1516787 S22665657 Traveling P22 EBIRD 34.0 0.724 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297221615 2021-04-01 11:30:42.037277 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY New York US-NY-061 Sutton Place Park L3378798 P 40.7550392 -73.9617801 2015-02-15 09:45:00 obsr40092 S21868810 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311240184 2021-03-26 07:20:31.408164 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Suffolk US-NY-103 30.0 Theodore Roosevelt County Park, Montauk L1301751 H 41.0548256 -71.8999386 2015-04-19 12:42:00 obsr598381 S22944138 Traveling P22 EBIRD 21.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304267448 2015-03-20 18:31:12 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-03-20 07:48:00 obsr2426404 S22440179 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312019981 2015-04-22 08:53:30 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard to Garden L332946 P 42.3697437 -76.3665764 2015-04-22 06:38:00 obsr2074043 S22995075 Traveling P22 EBIRD 25.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303036533 2018-08-04 17:00:39 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 14 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-03-14 08:50:00 obsr1893950 S22343518 Traveling P22 EBIRD 20.0 0.644 2.0 1 G1178973 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288969611 2021-04-01 11:30:42.037277 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 4 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-03 16:00:00 obsr259298 S21182454 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312904718 2021-12-27 20:39:04.096623 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-04-25 10:08:00 obsr2001485 S23054232 Traveling P22 EBIRD 37.0 1.609 2.0 1 G1235527 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307978474 2021-04-01 12:14:19.266649 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 4 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-04-05 08:30:00 obsr105122 S22717880 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319894813 2015-07-19 10:31:37 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 3 United States US New York US-NY Broome US-NY-007 28.0 Finch Hollow Nature Center L1006547 H 42.1610683 -75.9833262 2015-05-08 15:00:00 obsr1294516 S23457819 Traveling P22 EBIRD 90.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291391871 2018-08-04 16:53:20 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Oneida US-NY-065 13.0 Spring Farm Nature Sanctuary L2242703 P 43.0239766 -75.331192 2015-01-15 08:45:00 obsr1796652 S21376568 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292136672 2015-01-20 14:34:05 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Westchester US-NY-119 30.0 121 (near Gridle Ridge Road) L3279618 P 41.2529397 -73.6168581 2015-01-20 08:10:00 obsr1336375 S21434969 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308228525 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-04-06 14:15:00 obsr2902954 S22736568 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290855048 2021-04-01 12:45:19.712958 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-01-13 11:00:00 obsr114791 S21332971 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307697794 2022-03-05 22:03:50.715584 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 24 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-05 07:15:00 obsr890053 S22697399 Traveling P22 EBIRD 300.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314294746 2021-03-24 20:33:47.533911 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 5 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-30 09:44:00 obsr1655171 S23140747 Traveling P22 EBIRD 33.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315389487 2021-04-01 11:30:42.037277 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:00:00 obsr544268 S23203623 Traveling P22 EBIRD 360.0 6.437 20.0 1 G1249497 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299095820 2021-03-23 17:22:05.708166 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Herkimer US-NY-043 13.0 Sheep Run Daylily Farm L655147 H 43.2036169 -74.9769688 2015-02-22 13:10:00 obsr1787323 S22034198 Stationary P21 EBIRD 50.0 2.0 1 G1156978 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308871338 2021-04-01 11:15:31.646886 32973 species avibase-10C601D3 Bay-breasted Warbler Setophaga castanea 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-10 10:25:00 obsr827632 S22785104 Traveling P22 EBIRD 155.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300137079 2021-03-30 19:03:54.667077 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-02-28 10:30:00 obsr479109 S22115014 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292993095 2015-01-24 18:36:08 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Durand Eastman Park at Pine Valley Road L3314769 P 43.2314558 -77.5547776 2015-01-24 14:00:00 obsr545221 S21522588 Stationary P21 EBIRD 3.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305766846 2019-01-21 12:34:19 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Wayne US-NY-117 13.0 Kenyon Rd. between Furnace & Fisher Rd. L2750880 P 43.2397433 -77.26161 2015-03-28 11:15:00 obsr2914424 S22554581 Stationary P21 EBIRD 43.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299733461 2021-03-26 06:29:56.44369 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 4 United States US New York US-NY Monroe US-NY-055 13.0 Private property L3358535 P 43.2067086 -77.8944933 2015-02-26 10:00:00 obsr1713903 S22082682 Traveling P22 EBIRD 22.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921952 2021-03-26 07:56:20.588749 483 species avibase-85625D75 Mallard Anas platyrhynchos 47 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-27 16:00:00 obsr2218212 S22173343 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302017246 2021-03-24 21:06:05.39641 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Onondaga US-NY-067 13.0 7474 James Street, Fayetteville, NY L269868 P 43.0374547 -76.0071565 2015-03-07 08:00:00 obsr1167884 S22257515 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298705111 2021-03-24 20:33:47.533911 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-109 Eastern Heights Dr L3313598 P 42.424681 -76.455225 2015-02-21 08:08:00 obsr2255296 S22000030 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298373911 2015-04-05 23:21:53 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-02-19 07:15:00 obsr2700440 S21971089 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314437920 2016-02-16 11:54:50 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Madison US-NY-053 28.0 2275 Alexis Avenue, Hamilton, NY 13346 L2618579 P 42.8287667 -75.5174392 2015-04-30 18:45:00 obsr2843748 S23149122 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307471170 2017-08-16 16:57:42 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 7 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-02 10:30:00 obsr1167884 S22681753 Stationary P21 EBIRD 140.0 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314272398 2021-03-26 07:30:35.289997 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Tompkins US-NY-109 13.0 AviTom43 L3513985 H 42.5762079 -76.5107421 2015-04-30 08:29:00 obsr1092576 S23139311 Stationary P21 EBIRD 8.0 2.0 1 G1244195 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299514445 2021-03-26 07:20:31.408164 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 10 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-02-23 06:30:00 obsr1592950 S22066060 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324233778 2021-04-01 11:30:42.037277 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-05-12 17:46:00 obsr259298 S23722891 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305230967 2015-03-25 12:44:48 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Suffolk US-NY-103 US-NY_842 30.0 Cupsogue Beach County Park L566310 H 40.7713119 -72.7373457 2015-03-21 16:00:00 obsr1927254 S22512950 Traveling P22 EBIRD 60.0 3.219 2.0 1 G1192070 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319214655 2021-03-26 07:46:52.994574 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 2 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-13 06:16:00 obsr2512689 S23419143 Traveling P22 EBIRD 94.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288148784 2021-04-01 11:49:53.573686 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 20 United States US New York US-NY Queens US-NY-081 30.0 Worlds Fair Marina, Flushing L1791669 H 40.7599179 -73.8530159 2015-01-01 11:37:00 obsr2574755 S21113324 Traveling P22 EBIRD 14.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306318801 2021-03-24 19:20:44.053843 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Broome US-NY-007 28.0 Harold Moore Park L1464971 H 42.099743 -76.0129688 2015-03-30 10:20:00 obsr1830659 S22595332 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305624952 2021-11-09 18:45:26.920005 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 Female, Adult (2); Male, Adult (6) United States US New York US-NY Dutchess US-NY-027 13.0 Route 199 & 54 L3518277 P 41.9658484 -73.8000154 2015-03-27 15:10:00 obsr2573652 S22543577 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312246370 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Albany US-NY-001 13.0 Rte 155 and Normanskill L3110282 P 42.6761668 -73.9061529 2015-04-22 08:15:00 obsr634484 S23010132 Traveling P22 EBIRD 70.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306077673 2021-03-26 07:30:35.289997 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Newman Municipal Golf Course L2158758 H 42.4561318 -76.5052153 2015-03-29 14:48:00 obsr887540 S22577120 Traveling P22 EBIRD 73.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291471522 2020-01-19 11:00:58 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-17 09:02:00 obsr646558 S21383141 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294847330 2021-03-24 20:33:47.533911 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 60 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-02-04 08:28:00 obsr2211210 S21669933 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS342722812 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-24 18:30:00 obsr189780 S25061719 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289646980 2021-03-24 20:23:39.258075 26278 species avibase-A381417F House Wren Troglodytes aedon 2 United States US New York US-NY Suffolk US-NY-103 30.0 Uplands Farm Sanctuary L123000 H 40.8574672 -73.4535553 2015-01-07 09:18:00 obsr1107696 S21235977 Traveling P22 EBIRD 17.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290986363 2016-09-12 10:27:59 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-07 11:30:00 obsr2475075 S21343426 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317107283 2015-05-08 09:34:37 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Broome US-NY-007 28.0 dog park L1866391 P 42.1401252 -75.9414074 2015-05-08 08:18:00 obsr889453 S23301227 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300022293 2015-02-28 11:29:15 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Tioga US-NY-107 28.0 US-NY-Newark Valley-10957 NY-38 L3445023 P 42.263927 -76.177353 2015-02-28 11:28:00 obsr1764243 S22105350 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296150298 2018-08-04 16:56:04 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 4 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-02-11 10:11:00 obsr2224244 S21772947 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304617317 2021-11-09 18:20:59.586872 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Dutchess US-NY-027 13.0 Tivoli Bays WMA--Bard campus L1458344 H 42.0322598 -73.9053939 2015-03-22 07:54:00 obsr440908 S22465912 Traveling P22 EBIRD 120.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319785194 2021-03-19 16:44:35.607263 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-15 09:00:00 obsr334398 S23452057 Traveling P22 EBIRD 34.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298961274 2021-03-24 19:19:28.646223 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 7 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-02-22 08:00:00 obsr2700440 S22021133 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320178157 2021-03-24 19:48:44.880783 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-16 05:43:00 obsr1410564 S23473034 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317484802 2021-04-01 10:49:39.496318 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-05-09 10:50:00 obsr887540 S23323502 Traveling P22 EBIRD 21.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301948084 2021-04-01 11:54:40.172593 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Richmond US-NY-085 30.0 Stately Richman Manor L2489256 P 40.6333994 -74.104638 2015-03-08 10:00:00 obsr2904420 S22252270 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871004 2021-03-26 07:56:20.588749 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 49 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-09 16:00:00 obsr2218212 S21672025 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296319111 2015-02-12 19:31:00 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-02-12 06:50:00 obsr2716320 S21788215 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315472473 2021-03-26 06:29:56.44369 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 12 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-03 10:36:00 obsr334398 S23208121 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS376882274 2019-07-23 17:26:40 30494 species avibase-240E3390 House Sparrow Passer domesticus 180 United States US New York US-NY Suffolk US-NY-103 30.0 Southold Town Beach L142618 H 41.0892334 -72.4137115 2015-01-02 09:41:00 obsr1214394 S27808238 Stationary P21 EBIRD 11.0 1.0 1 G1100209 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293481488 2021-03-22 08:58:29.008072 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 45 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-01-26 07:50:00 obsr756196 S21561623 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311452589 2021-03-23 16:39:03.255227 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 30 United States US New York US-NY Richmond US-NY-085 30.0 Mission of Immaculate Virgin, Mt. Loretto L890042 H 40.511334 -74.2196149 2015-04-19 09:13:00 obsr155915 S22957217 Traveling P22 EBIRD 5.0 0.483 3.0 1 G1227510 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311807069 2021-04-01 12:18:57.910168 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--F.R. Newman Arboretum L799199 H 42.4520722 -76.4572692 2015-04-18 07:25:00 obsr2760150 S22981047 Traveling P22 EBIRD 107.0 1.287 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316725618 2015-05-06 22:27:08 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Albany US-NY-001 13.0 Tivoli Lake Preserve L3480691 H 42.6707536 -73.7632259 2015-05-06 17:00:00 obsr820113 S23279605 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317407104 2015-05-09 07:15:02 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 30.0 W 72nd St between Columbus and Central Park L3524407 P 40.7768043 -73.9773309 2015-05-09 07:13:00 obsr601383 S23318245 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295254986 2021-03-23 16:52:36.900075 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 PI--Route 11 L985275 P 41.1870839 -72.1865273 2015-02-06 09:50:00 obsr2485753 S21702257 Traveling P22 EBIRD 40.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316708223 2018-08-06 22:29:02 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Delaware US-NY-025 28.0 Denver-Vega Valley L2040482 P 42.258131 -74.53147 2015-05-06 09:00:00 obsr2124788 S23278660 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302595811 2018-08-04 16:59:39 11371 species avibase-75600969 Northern Flicker Colaptes auratus 4 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-03-11 10:30:00 obsr1472872 S22309409 Traveling P22 EBIRD 120.0 7.628 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312632312 2021-03-19 16:54:27.713469 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Montgomery US-NY-057 13.0 Macphail Rd, Ames L2888358 P 42.837504 -74.6293545 2015-04-24 10:05:00 obsr2855945 S23037197 Traveling P22 EBIRD 10.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315500024 2018-08-04 17:14:37 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-03 14:00:00 obsr30103 S23209674 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295437385 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-02-07 14:00:00 obsr1407710 S21717016 Traveling P22 EBIRD 105.0 1.609 3.0 1 G1138080 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS404650185 2021-04-01 11:30:42.037277 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-22 08:25:00 obsr1850011 S29759035 Historical P62 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308013894 2015-04-06 14:30:59 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--CLW office L2388208 P 42.4799683 -76.4513107 2015-04-06 11:40:00 obsr1696616 S22720109 Stationary P21 EBIRD 10.0 3.0 1 G1208160 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288248170 2022-01-09 18:48:43.534861 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY New York US-NY-061 30.0 Greenwich Village (14th St.-Houston St.; Broadway-Hudson River) L3238737 H 40.7342063 -74.0027145 2015-01-01 11:20:00 obsr2184966 S21121617 Traveling P22 EBIRD 60.0 0.5 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309712538 2016-04-02 21:11:18 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Franklin US-NY-033 14.0 SL Home L1959847 P 44.3193539 -74.1282213 2015-04-13 09:30:00 obsr2188170 S22841028 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312481177 2021-03-30 12:05:58.533651 483 species avibase-85625D75 Mallard Anas platyrhynchos 9 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-23 15:30:00 obsr644027 S23025999 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314444618 2021-04-01 11:15:31.646886 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:30:00 obsr2078092 S23149665 Traveling P22 EBIRD 390.0 4.828 30.0 1 G1244636 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316403953 2021-04-01 12:14:19.266649 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 5 United States US New York US-NY Suffolk US-NY-103 30.0 Smith Point Park/FINS L303182 P 40.7345819 -72.8652876 2015-04-22 07:00:00 obsr395994 S23260913 Traveling P22 EBIRD 90.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314957642 2021-04-01 11:15:31.646886 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 09:00:00 obsr2883698 S23180099 Traveling P22 EBIRD 160.0 4.023 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309731157 2021-04-01 11:30:42.037277 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus N 11 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-13 09:16:00 obsr259298 S22842534 Traveling P22 EBIRD 60.0 0.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314417508 2018-08-04 17:13:11 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 6 United States US New York US-NY Livingston US-NY-051 13.0 Home - Trails - Lima, NY L3408262 P 42.9316676 -77.6076794 2015-04-30 15:30:00 obsr912022 S23147791 Traveling P22 EBIRD 75.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302604754 2015-03-12 11:05:44 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Tompkins US-NY-109 28.0 Websterk Home L1084526 P 42.4154016 -76.3545191 2015-01-24 16:00:00 obsr2261732 S22310164 Area P23 EBIRD 15.0 0.8094 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306069991 2021-03-30 19:39:10.250398 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-03-29 08:30:00 obsr2814122 S22576559 Traveling P22 EBIRD 180.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309943007 2021-03-19 16:19:20.977326 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-04-14 09:00:00 obsr1079517 S22858064 Area P23 EBIRD 45.0 40.4686 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317213450 2018-08-04 17:15:19 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 4 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College L1485004 H 44.4375537 -74.2530447 2015-05-08 11:00:00 obsr443017 S23306664 Traveling P22 EBIRD 150.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304847203 2021-04-01 12:32:15.282601 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-22 10:32:00 obsr564905 S22482671 Traveling P22 EBIRD 16.0 4.828 2.0 1 G1190122 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309810177 2016-08-07 13:01:41 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Westchester US-NY-119 30.0 Angle Fly Preserve L1184284 H 41.2947905 -73.7167871 2015-04-13 16:30:00 obsr858943 S22848548 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293841767 2015-01-29 12:12:21 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Delaware US-NY-025 28.0 Denver-Vega Valley L2040482 P 42.258131 -74.53147 2015-01-29 09:00:00 obsr2124788 S21589917 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321089501 2021-03-26 06:21:54.883933 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-18 06:54:00 obsr2152799 S23523712 Traveling P22 EBIRD 220.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320669465 2021-03-26 06:12:17.833181 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N X United States US New York US-NY Chautauqua US-NY-013 13.0 Chautauqua Institution L4187097 H 42.2093327 -79.4660854 2015-05-17 15:31:00 obsr1092576 S23498814 Traveling P22 EBIRD 77.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302914105 2021-04-01 11:15:31.646886 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-13 11:15:00 obsr263005 S22333373 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS411996023 2021-03-26 06:07:45.516082 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-05-23 10:55:00 obsr1850011 S30231733 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306929893 2021-03-23 17:17:06.468947 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Wyoming US-NY-121 13.0 Carlton Hill MUA L153518 H 42.8317983 -78.1484556 2015-04-02 09:19:00 obsr393804 S22642118 Traveling P22 EBIRD 42.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291501252 2015-01-17 17:32:42 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 350 United States US New York US-NY Jefferson US-NY-045 13.0 Public Square L3298673 P 43.9746421 -75.9099001 2015-01-15 17:45:00 obsr1321679 S21385490 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308573763 2022-03-05 22:03:50.715584 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-08 17:00:00 obsr890053 S22762753 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310832995 2021-11-15 03:06:58.889978 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-11 12:40:00 obsr2072398 S22918928 Traveling P22 EBIRD 180.0 1.609 2.0 1 G1223862 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302678173 2021-04-01 12:18:57.910168 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-03-12 16:35:00 obsr2871406 S22315263 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314136858 2015-04-29 18:08:14 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Erie US-NY-029 13.0 Pleasant Ave L1817453 P 42.7266285 -78.8960089 2015-04-29 18:06:00 obsr548442 S23130704 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294479267 2015-02-02 17:54:14 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas X United States US New York US-NY Queens US-NY-081 30.0 Riis Landing L2721494 H 40.5676631 -73.8842089 2015-02-01 14:40:00 obsr2635084 S21639991 Traveling P22 EBIRD 40.0 0.161 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314079907 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 07:00:00 obsr1220115 S23127241 Traveling P22 EBIRD 120.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308271549 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-07 09:40:00 obsr454647 S22739699 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296195462 2018-01-19 21:42:57 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-02-09 11:14:00 obsr1821546 S21776574 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293904907 2021-11-09 21:23:47.89824 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-01-29 16:30:00 obsr1136997 S21595032 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298541974 2021-04-01 11:30:42.037277 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 5 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-02-20 09:13:00 obsr259298 S21985604 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314255653 2021-04-01 11:15:31.646886 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-29 16:15:00 obsr2603801 S23138189 Traveling P22 EBIRD 180.0 4.828 3.0 1 G1243854 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301203958 2017-08-16 16:47:03 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Riverhead Sod Farms--Doctors Path L588228 H 40.9613311 -72.6676512 2015-03-06 10:30:00 obsr1533477 S22193985 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292600230 2021-03-23 17:00:13.087107 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-01-22 08:34:00 obsr2683910 S21491884 Stationary P21 EBIRD 25.0 2.0 1 G1119384 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301849258 2021-03-26 07:46:52.994574 647 species avibase-BCBD2EAE Harlequin Duck Histrionicus histrionicus 2 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-08 16:50:00 obsr2270510 S22245205 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320761373 2021-03-31 04:01:57.961467 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-16 18:30:00 obsr1561508 S23503766 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1276357 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300692357 2017-09-16 13:26:01 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-03-02 13:40:00 obsr454647 S22155985 Traveling P22 EBIRD 80.0 3.219 2.0 1 G1165635 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291414190 2021-04-01 11:24:19.637193 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-14 10:00:00 obsr2289693 S21378379 Stationary P21 EBIRD 60.0 2.0 1 G1111818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323219903 2021-04-01 10:45:00.916278 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-24 11:45:00 obsr1567537 S23654214 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302879963 2021-03-26 06:21:54.883933 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Vale of Cashmere L1149386 H 40.6690561 -73.9683616 2015-03-13 12:30:00 obsr2476180 S22330656 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317735314 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 05:40:00 obsr119187 S23336978 Traveling P22 EBIRD 290.0 4.828 1.0 1 G1258875 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314852032 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY New York US-NY-061 30.0 Sutton Place Area L1058530 P 40.7536129 -73.9636892 2015-05-02 06:02:00 obsr259298 S23174663 Traveling P22 EBIRD 118.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308277409 2015-04-07 14:19:23 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Schenectady US-NY-093 13.0 Lock 7 L2807329 P 42.806747 -73.85175 2015-04-07 10:59:00 obsr648176 S22740086 Stationary P21 EBIRD 50.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305825104 2021-04-01 12:14:19.266649 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 5 United States US New York US-NY Suffolk US-NY-103 US-NY_2796 USFWS_480 Seatuck National Wildlife Refuge L2497290 P 40.7141276 -73.2085836 2015-03-28 14:35:00 obsr102311 S22558628 Traveling P22 EBIRD 10.0 0.805 2.0 1 G1195184 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290470913 2021-03-30 19:29:33.633096 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Suffolk US-NY-103 30.0 US-NY-Water Mill-606 Montauk Hwy L3281117 P 40.907844 -72.356146 2015-01-10 08:35:00 obsr1615708 S21302190 Stationary P21 EBIRD 5.0 8.0 1 G1105511 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315991995 2021-04-01 11:30:42.037277 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 7 Male, Adult (7) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 15:07:00 obsr924076 S23236897 Traveling P22 EBIRD 282.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310400541 2021-03-19 16:14:11.035882 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor16 L3513958 H 42.6625316 -76.0726389 2015-04-16 09:05:00 obsr1092576 S22889667 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307407840 2015-04-04 12:02:14 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southeast L879238 H 42.4674118 -76.4183235 2015-04-04 10:47:00 obsr1696616 S22677538 Traveling P22 EBIRD 73.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298786615 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 35 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-02-21 11:45:00 obsr247620 S22006984 Traveling P22 EBIRD 135.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294429041 2015-02-01 17:24:07 11431 issf avibase-ABF6C3C4 Crested Caracara Caracara plancus Crested Caracara (Northern) Caracara plancus [cheriway Group] 2 United States US New York US-NY Essex US-NY-031 13.0 125 Pine Springs Drive L3174221 P 43.8320347 -73.4437966 2015-02-01 07:15:00 obsr822321 S21636198 Stationary P21 EBIRD 270.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311162286 2021-03-26 07:30:35.289997 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 2 United States US New York US-NY Tompkins US-NY-109 13.0 Farm Pond Circle L2080608 P 42.5383387 -76.4633042 2015-04-19 07:30:00 obsr596741 S22939471 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314635997 2021-04-01 11:30:42.037277 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 14:00:00 obsr2514491 S23161546 Traveling P22 EBIRD 220.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305889103 2021-04-01 11:54:40.172593 12258 species avibase-11783075 Monk Parakeet Myiopsitta monachus 15 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-03-28 18:00:00 obsr1958124 S22563404 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320585628 2021-11-15 03:06:58.889978 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 10:00:00 obsr90751 S23494332 Traveling P22 EBIRD 120.0 3.219 2.0 1 G1275423 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295314450 2022-02-08 17:27:20.632176 5327 species avibase-3EF081A8 Common Gallinule Gallinula galeata 1 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-06 16:44:00 obsr2173269 S21706965 Stationary P21 EBIRD 56.0 3.0 0 G1137102 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315889823 2021-03-30 19:07:52.958398 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 15:45:00 obsr2908667 S23230957 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288624126 2015-02-01 08:53:49 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 200 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Hamlin-400-580 Jacobs Rd L3193363 P 43.342882 -77.955051 2015-01-02 16:00:00 obsr2504709 S21153040 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321928485 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-21 10:32:00 obsr2508114 S23575804 Traveling P22 EBIRD 120.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310342130 2016-10-11 17:00:32 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 26 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip D L3559811 P 40.162933 -73.250983 2015-04-11 10:00:00 obsr1821546 S22885546 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221326 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293615309 2017-08-15 16:58:53 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Hamilton US-NY-041 US-NY_864 14.0 13360 L2227400 P 43.72774 -74.73809 2015-01-24 15:04:00 obsr2581683 S21572107 Traveling P22 EBIRD 60.0 16.093 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323904803 2021-03-26 07:46:52.994574 662 species avibase-FB738385 Bufflehead Bucephala albeola 6 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-05-30 05:35:00 obsr1154 S23702255 Traveling P22 EBIRD 49.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301559719 2021-04-01 12:18:57.910168 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-07 13:00:00 obsr1160328 S22221928 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304253464 2021-03-26 08:11:28.0353 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 5 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Stillwater, NY 52 county route 76 L1926398 P 42.933103 -73.680332 2015-03-20 16:38:00 obsr2564462 S22438959 Stationary P21 EBIRD 38.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294469544 2021-11-09 18:43:48.417488 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Dutchess US-NY-027 28.0 US-NY-Dover Plains-2476 NY-22 L3331277 P 41.692654 -73.578607 2015-02-01 10:30:00 obsr1982614 S21639296 Stationary P21 EBIRD 150.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310092812 2021-03-26 06:59:15.841579 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 10:30:00 obsr2279567 S22868602 Traveling P22 EBIRD 450.0 0.322 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296340910 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus N 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-02-11 12:00:00 obsr1460516 S21789890 Traveling P22 EBIRD 30.0 1.609 2.0 1 G1144414 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306155733 2021-11-09 21:50:48.44865 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-29 11:30:00 obsr2862523 S22583144 Traveling P22 EBIRD 100.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319411721 2021-03-19 16:14:11.035882 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Cortland US-NY-023 28.0 I-81, Cortland L3641467 P 42.6007986 -76.1552954 2015-05-13 11:50:00 obsr2628711 S23430282 Incidental P20 EBIRD 2.0 0 G1269760 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317655189 2021-03-30 19:13:38.458673 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-09 09:44:00 obsr745890 S23332676 Traveling P22 EBIRD 135.0 0.805 2.0 1 G1259261 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314330268 2018-08-04 17:13:07 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Onondaga US-NY-067 US-NY_2803 13.0 Cicero Swamp WMA L270911 H 43.1333977 -75.9873074 2015-04-30 08:30:00 obsr660214 S23142398 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312140194 2021-03-30 19:39:10.250398 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-22 12:15:00 obsr1489009 S23002732 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290202181 2021-03-23 16:39:03.255227 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-01-10 09:14:00 obsr1958124 S21280250 Stationary P21 EBIRD 9.0 2.0 1 G1103726 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288606055 2021-04-01 11:49:53.573686 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 45 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-01-02 07:00:00 obsr352522 S21151408 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312969951 2021-03-30 12:05:58.533651 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-25 14:30:00 obsr2078092 S23058060 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312087969 2021-12-28 15:45:44.443942 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Ontario US-NY-069 13.0 US-NY-ONT Manchester--S. Main St., Howard St. to Merrick Ave. (3175A) [Clifton Springs_NW] L3138674 P 42.9660811 -77.2302389 2015-04-22 11:14:00 obsr606693 S22999299 Traveling P22 EBIRD 11.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295503218 2015-02-08 07:45:29 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-02-07 07:25:00 obsr72341 S21722432 Stationary P21 EBIRD 275.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308083349 2021-11-15 03:11:49.507437 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Rockland US-NY-087 30.0 Rockland Lake SP L283611 H 41.1468757 -73.9234741 2015-04-06 10:15:00 obsr1121454 S22725126 Traveling P22 EBIRD 105.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300374790 2021-03-26 06:38:32.090082 242 species avibase-D3A260BC Snow Goose Anser caerulescens N 5 United States US New York US-NY Montgomery US-NY-057 13.0 Kennedy Rd ( Feeders ) L3449728 P 43.0321921 -74.7174919 2015-03-01 13:55:00 obsr1708031 S22133560 Traveling P22 EBIRD 14.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319002883 2021-03-19 16:19:20.977326 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-12 10:30:00 obsr2871264 S23406696 Traveling P22 EBIRD 180.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296740325 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 45 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-14 06:08:00 obsr1189028 S21826071 Traveling P22 EBIRD 157.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297779271 2015-02-16 19:57:46 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria 5 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree SP L283564 H 40.6394313 -73.2644575 2015-02-16 16:15:00 obsr613775 S21919694 Traveling P22 EBIRD 20.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS584941433 2019-07-23 17:27:56 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-14 09:30:00 obsr967916 S43410927 Historical P62 EBIRD 45.0 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323262403 2021-11-15 03:06:58.889978 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-26 09:00:00 obsr1706920 S23656904 Traveling P22 EBIRD 210.0 0.483 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314306484 2022-01-20 09:38:40.245267 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-04-30 08:45:00 obsr443017 S23141393 Traveling P22 EBIRD 140.0 2.414 20.0 1 G1244118 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323266189 2018-08-06 22:31:12 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 30 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-26 13:14:00 obsr620377 S23657134 Traveling P22 EBIRD 38.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317121368 2021-04-01 11:15:31.646886 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 07:15:00 obsr1077730 S23301926 Traveling P22 EBIRD 300.0 4.828 36.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301664013 2015-03-08 13:42:49 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Erie US-NY-029 13.0 Amherst NY backyard L1352393 P 42.9591307 -78.7786432 2015-03-08 09:45:00 obsr1133450 S22229599 Stationary P21 EBIRD 5.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289049769 2015-01-04 14:34:36 6339 species avibase-8535345B Herring Gull Larus argentatus 75 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-01-04 08:50:00 obsr204036 S21188677 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314069356 2021-04-01 11:15:31.646886 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-29 08:00:00 obsr454647 S23126635 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320441794 2021-11-09 18:38:49.354947 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Dutchess US-NY-027 14.0 Deep Hollow Road - 3.7 Miles L2846204 P 41.8099163 -73.5804461 2015-05-16 06:10:00 obsr2175245 S23486810 Traveling P22 EBIRD 380.0 5.955 3.0 1 G1274551 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305391022 2021-03-23 17:00:13.087107 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-03-26 08:30:00 obsr881968 S22525545 Traveling P22 EBIRD 30.0 0.161 9.0 1 G1192880 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314425734 2021-03-23 17:00:13.087107 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-04-30 17:35:00 obsr455249 S23148320 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316691523 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 29.0 Battery Park City--South Cove and environs L1782883 H 40.7073453 -74.0183095 2015-05-06 obsr1546625 S23277729 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290852042 2019-07-23 17:26:47 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio 5 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-B L3288880 P 40.21933 -73.19694 2015-01-11 09:00:00 obsr41879 S21332693 Traveling P22 EBIRD 60.0 15.289 44.0 1 G1108334 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315690577 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L785945 P 40.783661 -73.9633942 2015-05-03 12:30:00 obsr2883401 S23220056 Traveling P22 EBIRD 300.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294842616 2021-03-26 07:07:10.758746 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris N 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-02-04 07:11:00 obsr1958124 S21669512 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289299863 2021-03-26 07:46:52.994574 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 3 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-01-05 11:51:00 obsr1885846 S21208107 Traveling P22 EBIRD 130.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291919752 2021-05-13 19:31:54.715042 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Inlet WMA--Sliker Hill Rd. dike & wetlands L674319 H 42.7145597 -77.7100646 2015-01-18 09:50:00 obsr1060479 S21417628 Traveling P22 EBIRD 80.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304458026 2021-03-24 20:33:47.533911 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena X United States US New York US-NY Tompkins US-NY-109 13.0 Salt Point Natural Area L353038 H 42.5394116 -76.5496267 2015-03-21 08:55:00 obsr241086 S22454154 Stationary P21 EBIRD 33.0 10.0 1 G1187140 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316316906 2021-03-26 06:20:10.658048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Genesee US-NY-037 US-NY_2802 13.0 Linear Park, Bergen L2403261 H 43.0916679 -77.9697454 2015-05-05 15:33:00 obsr408487 S23256432 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300298616 2022-02-17 14:32:23.002448 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-01 12:35:00 obsr642993 S22127975 Traveling P22 EBIRD 38.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308478518 2015-04-08 14:28:28 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-08 12:34:00 obsr879105 S22755450 Stationary P21 EBIRD 12.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310832768 2021-03-24 20:16:00.852773 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 10 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-18 06:58:00 obsr1958124 S22918915 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001713 2021-03-26 07:56:20.588749 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 48 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-29 09:00:00 obsr2218212 S23775944 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301994995 2018-08-04 16:59:10 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-09 12:44:00 obsr1958124 S22255867 Traveling P22 EBIRD 5.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316026236 2021-03-26 07:53:57.664705 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-05-05 06:31:00 obsr1060479 S23239159 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301368419 2021-03-23 17:32:20.03109 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-07 08:22:00 obsr184660 S22207851 Traveling P22 EBIRD 29.0 0.161 4.0 1 G1168623 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312555125 2021-03-26 07:46:52.994574 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-04-22 16:15:00 obsr2321296 S23031536 Stationary P21 EBIRD 15.0 2.0 1 G1233923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312500307 2018-08-04 17:11:51 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 3 United States US New York US-NY Oswego US-NY-075 US-NY_768 13.0 Three Mile Bay WMA--Phillips Pt. L298675 H 43.2392316 -76.0503864 2015-04-23 05:45:00 obsr979921 S23027236 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316676728 2021-11-09 19:01:40.008558 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-06 15:00:00 obsr237150 S23276885 Traveling P22 EBIRD 180.0 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301514715 2021-03-23 16:52:36.900075 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-03-07 08:01:00 obsr1848026 S22218413 Traveling P22 EBIRD 113.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293696987 2021-11-09 17:43:05.347258 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Dutchess US-NY-027 28.0 Brothers Rd - Depot Hill L1034813 P 41.5944317 -73.6783826 2015-01-28 10:30:00 obsr1732267 S21578377 Stationary P21 EBIRD 98.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323827375 2018-08-06 22:31:20 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Camp Allegany L635172 H 42.0991777 -78.7229633 2015-05-29 05:39:00 obsr2588479 S23696770 Stationary P21 EBIRD 2.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310612375 2021-04-01 10:45:00.916278 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 24 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-17 07:00:00 obsr128156 S22904515 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294349378 2021-03-26 07:07:10.758746 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Richmond US-NY-085 Mill Creek L1302294 H 40.5198919 -74.2406809 2015-02-01 08:55:00 obsr1958124 S21629997 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291681032 2021-03-30 19:39:10.250398 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 9 United States US New York US-NY Nassau US-NY-059 30.0 St Johns Pond Preserve L417415 P 40.8555653 -73.4619284 2015-01-18 09:50:00 obsr2423982 S21399436 Stationary P21 EBIRD 30.0 2.0 1 G1113874 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315852406 2021-11-09 17:58:40.313796 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-04 08:30:00 obsr1917973 S23228793 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296797569 2021-11-09 22:39:47.565044 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Sullivan US-NY-105 28.0 Rondout Reservoir (Sullivan Co.) L2693079 H 41.8604243 -74.5100577 2015-02-14 09:45:00 obsr444155 S21831021 Traveling P22 EBIRD 45.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310271395 2021-03-30 19:43:32.881136 591 species avibase-1929E1E1 Canvasback Aythya valisineria 9 United States US New York US-NY Westchester US-NY-119 30.0 Twin Lakes Park, Eastchester L1298009 H 40.9494471 -73.8027434 2015-04-15 11:00:00 obsr2266808 S22880541 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298256033 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Monroe US-NY-055 13.0 Slater Creek (Russell Station) L140439 H 43.2691002 -77.6264038 2015-02-18 14:47:00 obsr2756208 S21961019 Stationary P21 EBIRD 7.0 5.0 1 G1151963 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325834486 2021-10-31 10:38:57.098169 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 08:00:00 obsr1500485 S23831825 Traveling P22 EBIRD 600.0 4.5 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310429938 2021-03-26 06:09:25.361188 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-04-16 08:05:00 obsr879105 S22891593 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318706223 2021-11-09 18:46:29.098642 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Dutchess US-NY-027 13.0 Lagrange yard L3597754 P 41.6963841 -73.8455057 2015-04-27 06:00:00 obsr2786327 S23389492 Stationary P21 EBIRD 90.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294349374 2021-03-26 07:07:10.758746 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 47 United States US New York US-NY Richmond US-NY-085 Mill Creek L1302294 H 40.5198919 -74.2406809 2015-02-01 08:55:00 obsr1958124 S21629997 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319713696 2021-11-09 18:42:19.628792 6526 species avibase-4D2FF6F1 Common Tern Sterna hirundo 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-14 07:13:00 obsr1732267 S23447676 Traveling P22 EBIRD 195.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295471418 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 Brooklyn Army Terminal Pier 4 L2598864 H 40.646519 -74.026074 2015-02-07 11:15:00 obsr1407710 S21719848 Stationary P21 EBIRD 30.0 5.0 1 G1138402 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306824346 2015-04-01 20:33:51 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-04-01 15:00:00 obsr2842267 S22634278 Traveling P22 EBIRD 85.0 2.253 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307072706 2021-03-30 19:07:52.958398 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-02 13:15:00 obsr1807494 S22653154 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313813238 2021-03-24 20:53:39.352228 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Blueberry Hill East and West L782514 H 42.7004751 -73.8682283 2015-04-28 13:27:00 obsr440908 S23110615 Traveling P22 EBIRD 78.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323641168 2015-05-28 20:22:28 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Downtown Fredonia, NY, United States L3632811 P 42.4400141 -79.3312025 2015-05-28 14:30:00 obsr479109 S23682795 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309478411 2021-03-30 19:22:51.561415 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge--East Pond L109144 H 40.6226854 -73.8220096 2015-04-12 11:30:00 obsr454647 S22824876 Traveling P22 EBIRD 60.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310284657 2021-04-01 10:52:24.630268 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 10 United States US New York US-NY Clinton US-NY-019 13.0 MacDonough Park, Plattsburgh L2208600 H 44.6989346 -73.4512725 2015-04-15 08:30:00 obsr1613652 S22881539 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324133173 2021-04-01 11:12:52.834774 303 species avibase-B59E1863 Canada Goose Branta canadensis N 4 United States US New York US-NY Greene US-NY-039 13.0 wildwing park catskill L749524 P 42.2294707 -73.8825417 2015-05-30 07:00:00 obsr2515158 S23716524 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311810329 2021-03-26 06:55:00.227271 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Ontario US-NY-069 13.0 Foster Rd Backyard L2142459 P 42.8174402 -77.3030019 2015-04-21 11:01:00 obsr2486868 S22981248 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314487070 2021-03-26 06:39:43.334073 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Arthur Ross Pinetum L826628 H 40.7835168 -73.9667 2015-04-30 07:25:00 obsr2277801 S23152572 Historical P62 EBIRD 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304507164 2021-11-15 03:06:58.889978 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-21 10:50:00 obsr2858292 S22457873 Traveling P22 EBIRD 60.0 0.966 3.0 1 G1187572 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290291232 2021-03-24 20:23:39.258075 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Suffolk US-NY-103 30.0 Chandler Estate L1355478 H 40.9559916 -73.0192018 2015-01-10 11:40:00 obsr1868191 S21287781 Stationary P21 EBIRD 175.0 2.0 1 G4460183 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316474041 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-06 06:15:00 obsr2499879 S23264932 Traveling P22 EBIRD 300.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302616027 2021-03-30 19:43:32.881136 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 1 United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-03-12 11:30:00 obsr2924527 S22311014 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303406826 2021-11-09 20:19:38.948671 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Orange US-NY-071 28.0 Euclid Avenue L6537484 P 41.4347477 -74.4307208 2015-03-13 08:00:00 obsr1544235 S22372433 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292109407 2021-03-30 19:43:32.881136 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 10 United States US New York US-NY Westchester US-NY-119 28.0 US-NY-Croton-on-Hudson - 41.2278x-73.8572 - Jan 20, 2015, 11:36 AM L3305976 P 41.227803 -73.857259 2015-01-20 11:30:00 obsr258431 S21432813 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297198870 2021-04-01 11:42:50.317679 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 10 United States US New York US-NY Oneida US-NY-065 13.0 108 Diwght Dr Rome,NY L1952414 P 43.2223156 -75.4369354 2015-02-14 12:25:00 obsr1799453 S21866683 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310630571 2015-04-17 11:14:47 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 17 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 US-NY-Middleport-395 Lewiston Rd L2851891 P 43.12737 -78.446832 2015-04-17 10:05:00 obsr2588479 S22905729 Traveling P22 EBIRD 27.0 4.023 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308811627 2021-04-01 12:26:53.827486 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 Unknown Sex, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-04-10 07:50:00 obsr2512689 S22781058 Traveling P22 EBIRD 40.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315279959 2021-03-19 16:02:45.308962 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-03 06:00:00 obsr290506 S23198040 Traveling P22 EBIRD 240.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311350268 2021-03-26 07:20:31.408164 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Fire Island--Hawk Watch L109142 H 40.6305556 -73.2244444 2015-04-19 11:30:00 obsr1137265 S22950853 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324227559 2022-02-17 14:32:23.002448 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-31 10:14:00 obsr1152226 S23722427 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293584487 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-01-27 13:30:00 obsr1659461 S21569707 Traveling P22 EBIRD 120.0 5.23 3.0 1 G1126893 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311526960 2021-03-23 16:39:03.255227 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 8 United States US New York US-NY Richmond US-NY-085 30.0 Mariners Marsh L391227 H 40.638772 -74.1753101 2015-04-19 09:02:00 obsr1032565 S22961851 Traveling P22 EBIRD 135.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310475909 2021-11-15 03:11:49.507437 11494 species avibase-20C2214E American Kestrel Falco sparverius 3 United States US New York US-NY Rockland US-NY-087 30.0 Rockland Lake SP L283611 H 41.1468757 -73.9234741 2015-04-16 09:00:00 obsr1121454 S22894774 Traveling P22 EBIRD 170.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291403984 2021-03-23 16:52:36.900075 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 5 United States US New York US-NY Suffolk US-NY-103 30.0 Suffolk County Farm & Education Center L3140486 P 40.8253386 -72.9192209 2015-01-16 09:15:00 obsr1107696 S21377545 Traveling P22 EBIRD 92.0 1.545 1.0 1 G1111871 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299580551 2015-02-25 17:38:56 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-02-25 08:30:00 obsr2137468 S22071144 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292885478 2021-04-01 11:54:40.172593 26278 species avibase-A381417F House Wren Troglodytes aedon 13 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-24 09:50:00 obsr1958124 S21514210 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308803867 2018-08-04 17:08:12 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1906116 P 42.15194 -75.89267 2015-04-09 12:01:00 obsr290506 S22780459 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317467953 2021-03-19 16:02:45.308962 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 3 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.9026012 2015-05-09 08:30:00 obsr646558 S23321793 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308235608 2018-08-04 17:05:38 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 10 United States US New York US-NY Washington US-NY-115 13.0 Riverside Cemetery, Fort Edward, NY L3546079 P 43.1710233 -73.5867476 2015-04-05 14:00:00 obsr2685359 S22737193 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306824629 2021-03-26 06:09:25.361188 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-01 18:30:00 obsr2001289 S22634296 Traveling P22 EBIRD 30.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS333506977 2015-07-26 22:19:39 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Nassau US-NY-059 30.0 Cold Spring Harbor Labs L2844495 P 40.8615213 -73.4700286 2015-05-06 11:35:00 obsr2240960 S24394424 Traveling P22 EBIRD_WI 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307407359 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-04 07:21:00 obsr1807494 S22677499 Traveling P22 EBIRD 255.0 8.047 11.0 1 G1203947 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320834824 2015-05-18 08:40:09 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Monroe US-NY-055 13.0 Pinnacle Hill L2886443 P 43.135104 -77.591058 2015-05-18 07:52:00 obsr2678807 S23508753 Traveling P22 EBIRD 47.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319456416 2021-11-15 03:06:58.889978 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-13 15:40:00 obsr516108 S23432786 Traveling P22 EBIRD 205.0 1.931 4.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311512769 2015-05-07 17:07:25 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-20 07:19:00 obsr455249 S22960906 Traveling P22 EBIRD 10.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305741206 2018-12-15 15:57:31 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Beezamer L2957441 P 42.3907709 -76.407305 2015-03-28 09:20:00 obsr140280 S22552564 Stationary P21 EBIRD 4.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324308983 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field--North Forty Preserve L1226042 H 40.597792 -73.8983345 2015-05-31 15:30:00 obsr1310902 S23727873 Historical P62 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309782336 2021-03-26 07:42:06.558742 11494 species avibase-20C2214E American Kestrel Falco sparverius 2 United States US New York US-NY Washington US-NY-115 13.0 New Swamp Rd. L3805899 H 43.3275378 -73.5075903 2015-04-13 08:22:00 obsr1222746 S22846579 Traveling P22 EBIRD 47.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS339659963 2021-03-26 06:17:19.712573 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 8 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-09 11:46:00 obsr2002190 S24841004 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316552600 2021-03-26 07:52:59.845315 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-05 07:08:00 obsr316199 S23269663 Area P23 EBIRD 72.0 2.59 2.0 1 G1254761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306605308 2021-04-01 11:24:19.637193 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-03-31 09:25:00 obsr1782363 S22618147 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292679122 2018-12-04 21:15:33 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 40 United States US New York US-NY Tompkins US-NY-109 13.0 Scofield Rd. (north end), Lansing L367841 H 42.5564629 -76.4547586 2015-01-22 17:11:00 obsr1655171 S21498037 Stationary P21 EBIRD 29.0 3.0 1 G1119666 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316007768 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 Shore Road Park L616218 H 40.6220738 -74.0406629 2015-05-05 06:00:00 obsr1821546 S23238084 Traveling P22 EBIRD 70.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306381950 2019-03-04 17:55:09 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-03-30 08:30:00 obsr1918430 S22600349 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303243429 2021-03-26 07:07:10.758746 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Richmond US-NY-085 30.0 College of Staten Island L1771796 H 40.6027246 -74.1504937 2015-03-15 10:45:00 obsr1958124 S22359450 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314387223 2021-03-24 05:37:45.927792 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-30 08:15:00 obsr319738 S23145917 Traveling P22 EBIRD 225.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305458784 2021-03-26 06:55:00.227271 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-03-26 14:32:00 obsr606693 S22530795 Traveling P22 EBIRD 5.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310351573 2015-04-15 23:37:49 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-15 13:40:00 obsr516108 S22886232 Traveling P22 EBIRD 60.0 0.322 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304841186 2021-03-26 07:07:10.758746 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Richmond US-NY-085 30.0 Stately Richman Manor L2489256 P 40.6333994 -74.104638 2015-03-22 09:00:00 obsr2904420 S22482151 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316943186 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-07 08:15:00 obsr1693806 S23291823 Traveling P22 EBIRD 450.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318911723 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-12 07:00:00 obsr1668936 S23401665 Traveling P22 EBIRD 120.0 1.609 15.0 1 G1267306 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309487660 2021-04-01 10:52:54.724403 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Columbia US-NY-021 US-NY_806 13.0 Stockport Creek & Hudson River L3388489 P 42.3096104 -73.7715197 2015-04-12 15:15:00 obsr349211 S22825510 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293442834 2018-08-04 16:53:54 3441 species avibase-24E39ACD Common Nighthawk Chordeiles minor 2 United States US New York US-NY Delaware US-NY-025 28.0 Delaware River Bridge, Downsville L2424412 H 42.0746513 -74.9819514 2015-01-18 08:27:00 obsr1788273 S21558667 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312774911 2021-03-30 19:07:52.958398 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 07:29:00 obsr2519357 S23046705 Traveling P22 EBIRD 263.0 3.219 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310096175 2021-03-26 06:52:34.887371 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Niagara US-NY-063 Barker Bicentennial Park L2862000 H 43.367684 -78.5553789 2015-04-12 14:38:00 obsr745890 S22868857 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319509209 2020-08-03 19:51:47 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-14 07:44:00 obsr1097423 S23436162 Traveling P22 EBIRD 75.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288240503 2021-04-01 11:30:42.037277 337 species avibase-694C127A Mute Swan Cygnus olor N 48 United States US New York US-NY New York US-NY-061 30.0 Fort Washington Park--Dyckman St. Boat Marina L2984803 H 40.8695495 -73.9323986 2015-01-01 13:35:00 obsr259298 S21120960 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296228322 2015-02-12 11:15:14 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 1 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-02-12 07:30:00 obsr2377251 S21779109 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312157237 2021-03-24 20:33:47.533911 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Tareyton Drive yard L1133152 P 42.4712343 -76.4592433 2015-04-22 18:47:00 obsr1655171 S23003883 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314304659 2021-11-09 22:04:59.499979 591 species avibase-1929E1E1 Canvasback Aythya valisineria N 1 United States US New York US-NY Ulster US-NY-111 13.0 Saugerties Lighthouse L490267 H 42.0722249 -73.9367873 2015-04-30 07:27:00 obsr2546168 S23141299 Traveling P22 EBIRD 86.0 1.609 2.0 1 G1244056 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304297808 2021-03-30 19:07:12.70155 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 13 United States US New York US-NY Jefferson US-NY-045 US-NY_852 13.0 Fisher's Landing from Foxy's L1390138 P 44.2781483 -76.0064197 2015-03-20 13:25:00 obsr1558090 S22442505 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307869635 2021-03-30 19:19:56.775388 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, City Pier L357819 H 42.871907 -77.2725534 2015-04-05 17:00:00 obsr354090 S22709665 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307426426 2021-03-23 17:14:01.933181 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Washington US-NY-115 13.0 Bradley Beach, Ft. Edward L2477571 H 43.266989 -73.5908235 2015-04-04 09:52:00 obsr1222746 S22678764 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289844728 2021-04-01 11:30:42.037277 20384 species avibase-69A6E32F Canada Jay Perisoreus canadensis 1 United States US New York US-NY New York US-NY-061 30.0 Madison Square Park L525218 H 40.7424206 -73.9879739 2015-01-07 12:47:00 obsr2184966 S21251274 Traveling P22 EBIRD 10.0 0.161 2.0 1 G1101081 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320636362 2021-04-01 11:30:42.037277 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-17 14:30:00 obsr512869 S23496988 Traveling P22 EBIRD 135.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308649555 2021-03-26 07:20:31.408164 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-03-30 07:00:00 obsr1592950 S22768321 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298943814 2021-03-26 07:56:20.588749 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Nassau US-NY-059 30.0 Nassau Street, Bellmore L1925703 P 40.6639892 -73.5328567 2015-01-25 obsr902950 S22019789 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303160802 2018-08-04 17:00:43 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.9339927 -76.7278183 2015-03-14 14:03:00 obsr1655171 S22353185 Traveling P22 EBIRD 8.0 1.931 2.0 0 G1181035 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306157372 2019-10-25 15:56:46 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 210 United States US New York US-NY St. Lawrence US-NY-089 US-NY_802 13.0 Hawkins Point L2015634 P 44.9993422 -74.7955441 2015-03-29 14:15:00 obsr2916201 S22583263 Traveling P22 EBIRD 25.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295420225 2017-08-16 16:33:41 6526 species avibase-4D2FF6F1 Common Tern Sterna hirundo 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--West End (Field 2) L2597735 H 40.5934333 -73.5209483 2015-02-07 11:30:00 obsr1102914 S21715586 Traveling P22 EBIRD 30.0 0.805 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316488039 2021-04-01 12:32:15.282601 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-05 15:25:00 obsr647628 S23265627 Traveling P22 EBIRD 45.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308643272 2021-03-26 06:17:19.712573 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Erie US-NY-029 13.0 Home L2093742 P 42.7338768 -78.7242615 2015-04-09 11:10:00 obsr916033 S22767939 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311109237 2022-02-17 14:32:23.002448 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-18 15:00:00 obsr2448957 S22936462 Traveling P22 EBIRD 45.0 0.805 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291336004 2017-08-16 16:20:37 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 PI--Route 8 L991650 P 41.1703037 -72.2006679 2015-01-16 14:51:00 obsr2485753 S21372243 Traveling P22 EBIRD 31.0 1.77 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296683868 2021-04-01 11:24:19.637193 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 100 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-02-14 10:10:00 obsr1124114 S21820630 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312160428 2015-04-22 19:09:29 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N Sherwood Pltform base - small brdg (0.15km) L1370979 P 42.4801875 -76.4541519 2015-04-22 18:14:00 obsr2307843 S23004144 Traveling P22 EBIRD 5.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322657722 2021-03-26 06:29:56.44369 592 species avibase-3072CC16 Redhead Aythya americana 8 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-24 07:55:00 obsr302343 S23618491 Traveling P22 EBIRD 235.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288966582 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius 8 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-03 08:00:00 obsr352522 S21182176 Traveling P22 EBIRD 180.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308001190 2021-03-30 19:29:33.633096 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Frank Melville Memorial Park and Mill Pond L1114075 H 40.946195 -73.1156445 2015-04-06 12:33:00 obsr1228860 S22719261 Traveling P22 EBIRD 19.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304668637 2015-03-22 16:09:16 11528 species avibase-F3DA111C Merlin Falco columbarius 2 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-03-22 15:46:00 obsr2211210 S22469618 Traveling P22 EBIRD 16.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314081135 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-04-29 11:45:00 obsr247620 S23127326 Traveling P22 EBIRD 105.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320287811 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 10:00:00 obsr2883698 S23478660 Traveling P22 EBIRD 220.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292516284 2021-03-23 16:52:36.900075 279 species avibase-3E04020B Brant Branta bernicla 34 United States US New York US-NY Suffolk US-NY-103 Dune Road (Moriches Inlet to Shinnecock Inlet) L1057391 P 40.7992566 -72.615509 2015-01-21 07:30:00 obsr247620 S21485318 Traveling P22 EBIRD 90.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296200925 2018-10-06 16:50:39 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--East Rd. L99686 H 43.009646 -76.7582003 2015-02-11 16:30:00 obsr2744341 S21776989 Stationary P21 EBIRD 93.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314968539 2021-04-01 11:30:42.037277 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-02 10:00:00 obsr2033754 S23180676 Traveling P22 EBIRD 25.0 0.805 2.0 1 G3252553 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317348934 2021-08-17 17:04:49.077299 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-08 20:00:00 obsr745890 S23314332 Traveling P22 EBIRD 60.0 0.644 2.0 1 G1258210 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313931243 2021-03-31 04:03:12.559076 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Queens US-NY-081 30.0 Kissena Park L491873 H 40.7462409 -73.8080852 2015-04-28 12:21:00 obsr2233270 S23118133 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312283770 2018-08-04 17:11:45 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Fulton US-NY-035 13.0 Great Sacandaga Lake - Vicinity of Mayfield Town Beach. L1307270 P 43.1386605 -74.2288658 2015-04-22 10:09:00 obsr316199 S23012492 Stationary P21 EBIRD 63.0 4.0 1 G1232598 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288247753 2015-01-01 16:55:30 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Oswego US-NY-075 13.0 rice creek, brownell road L3254257 P 43.4298698 -76.54461 2015-01-01 13:30:00 obsr1769635 S21121578 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322295127 2021-03-23 17:18:00.959502 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N X United States US New York US-NY Albany US-NY-001 13.0 Stanton Pond L273495 H 42.5094164 -73.9012973 2015-05-23 17:43:00 obsr1154 S23597824 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322817579 2021-11-09 18:47:56.955842 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Dutchess Rail Trail - veterans mile L3671585 P 41.6209606 -73.8500977 2015-05-25 11:15:00 obsr2103727 S23628317 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297174929 2021-03-26 08:11:28.0353 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Stillwater, NY 52 county route 76 L1926398 P 42.933103 -73.680332 2015-02-15 12:30:00 obsr2564462 S21864548 Stationary P21 EBIRD 177.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308803163 2021-03-19 16:54:27.713469 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 Female, Adult (1) United States US New York US-NY Montgomery US-NY-057 13.0 Crum Creek Road L951022 P 43.0224863 -74.6916032 2015-04-09 09:10:00 obsr316199 S22780405 Traveling P22 EBIRD 38.0 3.058 4.0 1 G1212709 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315425312 2021-03-26 07:56:20.588749 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-05-03 14:30:00 obsr1296638 S23205524 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311044798 2021-03-30 19:25:27.212017 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-18 15:58:00 obsr155915 S22932295 Traveling P22 EBIRD 46.0 1.287 3.0 1 G1224784 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313665007 2015-04-27 21:30:13 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Fulton US-NY-035 13.0 State Rt 29, oppenheim L2608580 P 43.0657369 -74.6825695 2015-04-27 17:15:00 obsr1708031 S23101122 Traveling P22 EBIRD 35.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314842447 2021-03-26 06:29:56.44369 406 species avibase-27B2749A Wood Duck Aix sponsa N 2 United States US New York US-NY Monroe US-NY-055 13.0 374 Cromwell L1952255 P 43.1326227 -77.5253892 2015-05-01 15:30:00 obsr1463039 S23174118 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315316579 2021-04-01 11:15:31.646886 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 12:00:00 obsr360223 S23199825 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1249073 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307825066 2021-04-01 11:15:31.646886 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 08:00:00 obsr1152226 S22706571 Traveling P22 EBIRD 300.0 3.219 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309657806 2021-03-24 20:33:47.533911 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-13 08:02:00 obsr455249 S22836927 Traveling P22 EBIRD 7.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314944724 2021-03-26 06:21:54.883933 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park--Pier 2 and Pier 3 Terrace L1117224 H 40.6984488 -73.9976664 2015-05-02 12:00:00 obsr521443 S23179468 Traveling P22 EBIRD 117.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318969041 2018-08-06 22:29:46 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Essex US-NY-031 13.0 Coot Hill L2186719 H 44.0025771 -73.4684045 2015-05-12 12:03:00 obsr2769235 S23404701 Traveling P22 EBIRD 91.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319480194 2018-08-06 22:29:52 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 3 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.7628129 2015-05-14 05:25:00 obsr1154 S23434352 Traveling P22 EBIRD 43.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313250062 2021-03-26 06:29:56.44369 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Monroe US-NY-055 13.0 Rochester, 166 Harwick Road L3593046 P 43.17433 -77.55415 2015-04-26 16:41:00 obsr745890 S23074880 Stationary P21 EBIRD 10.0 2.0 1 G1237551 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316793289 2021-04-01 10:58:31.765174 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 5 United States US New York US-NY Franklin US-NY-033 14.0 US-NY-Saranac Lake-35 James St L2839009 P 44.331237 -74.139357 2015-05-07 08:00:00 obsr2630526 S23283586 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303467628 2018-08-04 17:01:33 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 2 United States US New York US-NY Steuben US-NY-101 13.0 42.5593x-77.1549 - Mar 16, 2015, 8:55 AM L3492256 P 42.55929 -77.154897 2015-03-16 08:55:00 obsr749440 S22377814 Traveling P22 EBIRD 18.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309126667 2021-04-01 12:31:09.823741 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Livingston US-NY-051 13.0 Sliker Hill Road L865467 P 42.714545 -77.6780793 2015-04-11 12:59:00 obsr72341 S22802493 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291867858 2015-01-19 08:57:23 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Boutwell Hill SF L2054628 H 42.3186058 -79.1861057 2015-01-19 07:57:00 obsr2497657 S21413712 Traveling P22 EBIRD 55.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310323205 2021-03-24 20:57:48.241391 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-04-15 16:20:00 obsr1708031 S22884255 Stationary P21 EBIRD 40.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293058976 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-24 12:01:00 obsr924076 S21527571 Traveling P22 EBIRD 277.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS796184267 2021-11-15 03:06:58.889978 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 06:30:00 obsr111604 S59098556 Traveling P22 EBIRD 150.0 1.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289978234 2021-11-09 19:56:28.26385 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Orange US-NY-071 28.0 Sawyer's Peak L3323518 P 41.3716881 -74.3810892 2015-01-09 08:00:00 obsr2273061 S21261991 Stationary P21 EBIRD 45.0 2.0 1 G1184388 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318677757 2021-04-01 11:15:31.646886 456 species avibase-D201EB72 American Wigeon Mareca americana 7 United States US New York US-NY Kings US-NY-047 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L3640607 P 40.6155949 -73.8359737 2015-05-09 12:24:00 obsr454647 S23387850 Traveling P22 EBIRD 150.0 1.0 6.0 1 G1265610 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298460743 2015-02-19 17:31:20 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 26 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-02-19 obsr1591201 S21979268 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330149844 2021-04-01 10:55:39.308231 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Erie US-NY-029 13.0 University at Buffalo (North Campus)--east side L2866122 H 43.0053117 -78.7777213 2015-05-05 09:00:00 obsr303203 S24144689 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313505304 2018-08-04 17:12:21 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Onondaga US-NY-067 28.0 Fabius NY Waters Rd L901277 P 42.8470866 -75.9362125 2015-04-26 08:30:00 obsr2290617 S23091194 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305373655 2021-03-26 06:55:00.227271 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Ontario US-NY-069 13.0 The Swamp L1660257 P 42.8848133 -77.0413991 2015-03-26 07:20:00 obsr572658 S22524104 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320008622 2021-03-26 06:29:56.44369 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-15 07:20:00 obsr2449897 S23464051 Traveling P22 EBIRD 90.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295800326 2019-07-23 17:27:17 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 3 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Road - Shinnecock Inlet Area L834914 P 40.8415413 -72.4786949 2015-02-07 13:00:00 obsr2934754 S21745017 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306467283 2021-03-26 07:46:52.994574 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-03-31 06:55:00 obsr2798912 S22607423 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293891620 2021-03-30 19:29:33.633096 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Hook Pond L283133 H 40.9461611 -72.1907833 2015-01-29 08:10:00 obsr544268 S21594080 Traveling P22 EBIRD 45.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303949695 2020-03-15 09:14:30 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo--Mirror Lake L2809120 H 42.9268351 -78.8632295 2015-03-16 07:45:00 obsr2096529 S22415154 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297677899 2021-03-30 19:07:52.958398 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-16 14:30:00 obsr454647 S21909836 Traveling P22 EBIRD 110.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299746452 2015-02-28 18:55:49 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Suffolk US-NY-103 30.0 Kodu L3355598 P 40.9032789 -72.8895308 2015-02-26 10:35:00 obsr1954215 S22083856 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309759478 2021-04-01 11:49:53.573686 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 8 United States US New York US-NY Queens US-NY-081 30.0 Rosie's Place-243 Beach 135th Street L869966 P 40.5751026 -73.8535845 2015-04-12 08:30:00 obsr604941 S22845087 Stationary P21 EBIRD 260.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308277198 2018-08-04 17:08:00 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Saratoga US-NY-091 13.0 Champlain Canal Lock 2 (Saratoga Co.) L2702022 H 42.874769 -73.6786079 2015-04-07 14:13:00 obsr648176 S22740067 Stationary P21 EBIRD 4.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299535307 2021-11-09 22:04:47.967972 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-22 15:05:00 obsr921269 S22067579 Traveling P22 EBIRD 45.0 1.609 26.0 1 G1159576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288589284 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 64 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-02 14:47:00 obsr924076 S21150148 Traveling P22 EBIRD 131.0 4.023 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS314066297 2021-03-19 16:02:45.308962 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Lisle Park & Keibel Rd. L885144 H 42.350552 -75.9814239 2015-04-29 09:30:00 obsr1830659 S23126382 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305248625 2018-08-04 16:59:05 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-08 14:05:00 obsr606571 S22514387 Traveling P22 EBIRD 55.0 0.161 10.0 1 G1192119 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307748535 2021-03-26 07:46:52.994574 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-04-05 13:15:00 obsr1885846 S22701002 Traveling P22 EBIRD 136.0 8.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309478396 2021-03-30 19:22:51.561415 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge--East Pond L109144 H 40.6226854 -73.8220096 2015-04-12 11:30:00 obsr454647 S22824876 Traveling P22 EBIRD 60.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308090392 2021-11-15 03:06:58.889978 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-06 14:00:00 obsr1460516 S22725701 Stationary P21 EBIRD 30.0 2.0 1 G1209775 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308523850 2021-11-09 18:17:26.599907 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Dutchess US-NY-027 13.0 Drake Lake L1363523 H 41.7871594 -73.8462642 2015-04-08 09:36:00 obsr2175245 S22758933 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310109086 2021-04-01 12:40:54.473014 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Saratoga US-NY-091 13.0 Saratoga Lake Marine Park L2461422 H 43.0533404 -73.71987 2015-04-14 17:42:00 obsr1222746 S22869724 Rusty Blackbird Spring Migration Blitz P41 EBIRD 18.0 0.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288185214 2020-08-22 21:44:55 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 6 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Rd. L508804 H 43.0489452 -76.7335796 2015-01-01 13:17:00 obsr800690 S21116229 Traveling P22 EBIRD 27.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320549457 2021-04-01 11:30:42.037277 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 5 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-05-16 10:52:00 obsr259298 S23492309 Stationary P21 EBIRD 61.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305739030 2021-11-09 21:57:29.848734 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 18 United States US New York US-NY Ulster US-NY-111 13.0 Rondout Creek L3519682 P 41.92083 -73.96611 2015-03-28 08:40:00 obsr1482758 S22552366 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS337025558 2022-03-05 22:03:50.715584 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-12 08:00:00 obsr1846672 S24661973 Traveling P22 EBIRD 210.0 6.437 3.0 1 G1379909 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311551219 2021-03-26 06:14:19.776945 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Columbia US-NY-021 13.0 Mud Creek Environmental Learning Center L2793575 H 42.2806092 -73.7101454 2015-04-19 07:30:00 obsr2766625 S22963384 Traveling P22 EBIRD 150.0 1.609 12.0 1 G1228299 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297118251 2021-03-23 16:52:36.900075 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-02-14 14:00:00 obsr1137265 S21859294 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298769005 2021-03-26 07:07:10.758746 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Richmond US-NY-085 Mill Creek L1302294 H 40.5198919 -74.2406809 2015-02-21 08:36:00 obsr1958124 S22005537 Stationary P21 EBIRD 9.0 2.0 1 G1155366 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322254116 2018-08-06 22:30:53 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-23 08:00:00 obsr1830659 S23595245 Traveling P22 EBIRD 180.0 4.828 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296064721 2021-03-26 08:14:57.071052 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 7 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-02-10 08:00:00 obsr2918150 S21766336 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309040181 2018-08-04 17:08:27 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-11 09:00:00 obsr1044068 S22797202 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312448806 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-23 15:00:00 obsr30103 S23023810 Traveling P22 EBIRD 135.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302628790 2021-04-01 12:18:57.910168 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 2500 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-03-12 13:13:00 obsr2211210 S22311993 Traveling P22 EBIRD 8.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323383588 2021-11-09 18:47:00.439121 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 6 United States US New York US-NY Dutchess US-NY-027 14.0 HVRT-Coleman Station Road, Millerton, NY L3611051 P 41.9022669 -73.5185659 2015-05-07 08:30:00 obsr2786327 S23665036 Traveling P22 EBIRD 105.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320617308 2021-11-15 03:06:58.889978 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 10:15:00 obsr856524 S23495957 Traveling P22 EBIRD 210.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302681661 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-12 13:15:00 obsr968874 S22315560 Traveling P22 EBIRD 105.0 0.805 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300112655 2018-05-17 15:38:12 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Seneca US-NY-099 13.0 Lodi Point Rd. Fields L2714479 P 42.6184467 -76.8510336 2015-02-28 09:25:00 obsr2211210 S22103504 Stationary P21 EBIRD 7.0 1.0 1 G1162257 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311170211 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-19 06:55:00 obsr2113222 S22939962 Traveling P22 EBIRD 120.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303344588 2021-03-23 16:48:08.60516 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Seneca US-NY-099 13.0 SEN-SeyboltRd L3490775 P 42.81596 -76.77087 2015-03-15 11:01:00 obsr278057 S22367620 Traveling P22 EBIRD 30.0 5.633 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310092907 2021-11-09 22:41:29.888948 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA--Haven Rd. (causeway bridge) L2865409 H 41.5356812 -74.5166769 2015-04-11 14:46:00 obsr2683910 S22868608 Traveling P22 EBIRD 22.0 0.805 2.0 1 G1219972 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308680196 2018-08-04 17:08:13 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Oneida US-NY-065 13.0 Sylvan Beach L509883 H 43.1939135 -75.731163 2015-04-09 13:41:00 obsr1640315 S22770953 Stationary P21 EBIRD 17.0 1.0 1 G1212355 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309966868 2021-11-09 21:31:40.219848 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-12 08:29:00 obsr1348614 S22859669 Traveling P22 EBIRD 120.0 1.609 2.0 1 G1219456 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302110450 2021-04-01 11:15:31.646886 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 13 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-03-09 16:19:00 obsr924076 S22264883 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310288848 2021-04-01 11:54:40.172593 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-04-15 05:50:00 obsr396989 S22881794 Traveling P22 EBIRD_NJ 385.0 6.116 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310166828 2021-03-24 20:20:25.430732 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-15 07:30:00 obsr1918430 S22873692 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322988746 2022-02-17 14:32:23.002448 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-23 08:30:00 obsr1605975 S23639156 Traveling P22 EBIRD 180.0 1.77 5.0 1 G1288834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307533665 2015-04-04 18:50:17 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Parkway Bridge East L3538667 P 43.3021332 -77.7223492 2015-04-04 17:25:00 obsr934639 S22685989 Stationary P21 EBIRD 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318168979 2021-04-01 10:58:31.765174 7011 species avibase-534FB490 Northern Gannet Morus bassanus 2 United States US New York US-NY Franklin US-NY-033 13.0 Dickinson L198982 T 44.74836 -74.56462 2015-05-10 05:30:00 obsr1672399 S23360015 Traveling P22 EBIRD 180.0 28.968 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305827213 2021-03-24 20:16:00.852773 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Richmond US-NY-085 Mill Creek L1302294 H 40.5198919 -74.2406809 2015-03-28 07:55:00 obsr1958124 S22558788 Stationary P21 EBIRD 12.0 2.0 1 G1195301 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317841764 2021-03-19 16:08:39.161312 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Cheney Point, Chautauqua Lake L2853116 H 42.1319065 -79.3897203 2015-05-08 08:30:00 obsr2418 S23342620 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309665605 2015-04-13 08:54:20 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 9 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-12 17:48:00 obsr666964 S22837408 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291418981 2021-04-01 12:14:19.266649 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Kmart, Holtsville L3297560 P 40.82837 -73.024275 2015-01-17 10:14:00 obsr613775 S21378788 Traveling P22 EBIRD 54.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305141250 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-24 13:15:00 obsr2448957 S22506112 Traveling P22 EBIRD 300.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322945688 2021-03-19 16:29:59.503892 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 7 United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum L467369 H 44.0669903 -75.7229233 2015-05-23 07:00:00 obsr408487 S23636395 Traveling P22 EBIRD 420.0 32.187 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292139967 2021-03-24 21:01:50.671145 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-20 12:00:00 obsr1488063 S21435209 Traveling P22 EBIRD 45.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323093363 2021-04-01 11:30:42.037277 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 14:45:00 obsr2182516 S23645953 Traveling P22 EBIRD 165.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306823082 2021-05-05 15:43:39.075206 337 species avibase-694C127A Mute Swan Cygnus olor N X United States US New York US-NY New York US-NY-061 Liberty Island/Statue of Liberty (NY County) L2686238 H 40.6900653 -74.0452476 2015-04-01 obsr1723136 S22634169 Incidental P20 EBIRD 4.0 0 G2440869 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135099 2021-03-26 07:56:20.588749 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 14 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-23 09:00:00 obsr2218212 S23589155 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299789885 2018-08-04 16:58:16 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Wayne US-NY-117 13.0 Erie Canal, Macedon Canal Park L4656843 H 43.0723128 -77.3012745 2015-02-26 09:38:00 obsr528918 S22087341 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294616879 2017-05-31 22:37:56 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Rd., Tiana Beach L821838 H 40.8307941 -72.5177908 2015-02-01 16:00:00 obsr2846902 S21651174 Stationary P21 EBIRD 20.0 2.0 1 G1133394 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303723608 2021-04-01 12:32:15.282601 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-17 10:55:00 obsr2505956 S22397404 Traveling P22 EBIRD 130.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305877245 2018-08-04 17:04:26 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Kings US-NY-047 US-NY_1722 Fresh Creek - inlet L3200063 P 40.636302 -73.877244 2015-03-28 08:54:00 obsr1077730 S22562423 Traveling P22 EBIRD 45.0 0.805 11.0 1 G1195439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305746676 2015-03-28 10:09:20 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Westchester US-NY-119 30.0 Kensico Lake, Cat-In L3351091 P 41.1177712 -73.7479913 2015-03-28 08:45:00 obsr2022298 S22553009 Traveling P22 EBIRD 83.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306942000 2021-03-23 17:32:20.03109 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 2 United States US New York US-NY Onondaga US-NY-067 13.0 Home, Thatchwood Dr., Manlius L1789277 P 43.008956 -76.0102533 2015-04-02 08:20:00 obsr724731 S22643035 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303988844 2021-11-15 03:06:58.889978 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-18 13:20:00 obsr516108 S22418037 Traveling P22 EBIRD 320.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320690126 2021-04-01 11:30:42.037277 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-11 05:45:00 obsr163987 S23499938 Traveling P22 EBIRD 420.0 8.047 5.0 1 G1266741 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313986745 2021-03-26 06:55:00.227271 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-29 07:02:00 obsr606693 S23121684 Traveling P22 EBIRD 16.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305300611 2015-03-25 18:53:19 6204 spuh avibase-4B2856FB large alcid sp. Uria/Alca sp. 18 United States US New York US-NY Montgomery US-NY-057 13.0 Little Nose capped landfill L3514692 P 42.8935419 -74.4663942 2015-03-25 15:33:00 obsr979921 S22518404 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294633779 2021-03-26 06:21:54.883933 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-02 15:00:00 obsr1417967 S21652512 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309373029 2018-08-04 17:08:42 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 50 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1906116 P 42.15194 -75.89267 2015-04-12 08:05:00 obsr290506 S22818543 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310696382 2018-08-04 17:09:28 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Warren US-NY-113 14.0 Rogers Rock Campgound L799286 H 43.7930769 -73.4800172 2015-04-16 18:11:00 obsr2420101 S22909842 Traveling P22 EBIRD 60.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307676764 2021-03-19 16:32:34.732091 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 08:16:00 obsr2692140 S22696014 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311520645 2021-03-24 21:12:31.336509 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Tioga US-NY-107 28.0 Parents house L1191707 P 42.0089992 -76.3041687 2015-04-19 18:00:00 obsr317968 S22961428 Traveling P22 EBIRD 60.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307054831 2021-04-01 10:44:41.995232 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-04-02 07:45:00 obsr2700440 S22651780 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316780560 2021-11-09 18:30:49.111703 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Dutchess US-NY-027 13.0 18 Platt Ave L2227389 P 41.931249 -73.910858 2015-05-06 16:30:00 obsr1469078 S23282900 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS437362587 2021-03-26 07:17:57.136956 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 42 United States US New York US-NY Seneca US-NY-099 13.0 South of Sheldrake Point to CR 141 L1031120 H 42.652205 -76.6959858 2015-01-31 09:17:00 obsr1092576 S21620444 Traveling P22 EBIRD 25.0 2.414 2.0 1 G1130463 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316163502 2021-03-24 05:37:45.927792 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-05 09:40:00 obsr2071643 S23246506 Traveling P22 EBIRD 160.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291309388 2021-04-01 12:32:15.282601 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-16 12:00:00 obsr1489009 S21370289 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300429138 2021-03-26 07:00:33.333856 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-03-01 11:44:00 obsr924076 S22137071 Traveling P22 EBIRD 435.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314029964 2021-03-24 19:20:44.053843 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Broome US-NY-007 28.0 SUNY Broome Community College L3583220 H 42.1353684 -75.9091816 2015-04-22 14:45:00 obsr2562905 S23124266 Traveling P22 EBIRD 90.0 1.609 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308114781 2021-04-01 12:14:19.266649 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 Mashomack Preserve red and yellow trails L1130683 P 41.0570585 -72.3148012 2015-04-04 09:30:00 obsr1257101 S22727558 Traveling P22 EBIRD 90.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309500452 2021-11-09 19:57:48.990233 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-12 07:27:00 obsr870166 S22826448 Traveling P22 EBIRD 19.0 0.402 2.0 1 G1216683 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307941884 2021-03-26 06:21:54.883933 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 4 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-06 08:22:00 obsr1821546 S22715168 Traveling P22 EBIRD 64.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323607770 2018-08-06 22:31:18 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 7 United States US New York US-NY Broome US-NY-007 28.0 Marsh Pond SF L3008686 H 42.1216187 -75.5404231 2015-05-28 10:15:00 obsr1830659 S23680252 Traveling P22 EBIRD 85.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309148865 2015-05-07 17:00:47 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Cabin L327724 P 42.34994 -76.30034 2015-04-11 14:05:00 obsr455249 S22803973 Stationary P21 EBIRD 132.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296144575 2021-03-24 20:16:00.852773 32949 species avibase-15EB3000 Hooded Warbler Setophaga citrina N 75 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-02-11 15:38:00 obsr1958124 S21772488 Traveling P22 EBIRD 7.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291441569 2018-08-04 16:53:30 242 species avibase-D3A260BC Snow Goose Anser caerulescens 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge--South Garden L791196 H 40.6175467 -73.825745 2015-01-17 12:38:00 obsr2844530 S21380737 Traveling P22 EBIRD 28.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921580 2021-03-26 07:56:20.588749 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-14 09:00:00 obsr2218212 S22173327 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309409441 2020-03-20 08:09:03 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Tompkins US-NY-109 28.0 Mount Pleasant L99402 H 42.4581378 -76.3845436 2015-04-12 11:15:00 obsr1655171 S22820771 Stationary P21 EBIRD 65.0 2.0 1 G1219985 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288305529 2015-01-01 19:28:52 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 4 United States US New York US-NY Madison US-NY-053 28.0 salter feeders carpenter rd sheds L3254999 P 42.795968 -75.811192 2015-01-01 13:10:00 obsr1955779 S21126866 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293293592 2020-06-22 14:18:48 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP--Ek Birding Trail L2888425 H 42.2128769 -76.8451113 2015-01-25 14:12:00 obsr1334267 S21546096 Traveling P22 EBIRD 33.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317665488 2021-04-01 11:30:42.037277 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 11:40:00 obsr609516 S23333251 Traveling P22 EBIRD 180.0 4.506 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302822914 2021-03-26 07:30:35.289997 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-13 08:08:00 obsr59643 S22326280 Traveling P22 EBIRD 43.0 0.161 2.0 1 G1178064 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313669726 2021-03-26 07:46:52.994574 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-04-27 18:25:00 obsr2270510 S23101453 Rusty Blackbird Spring Migration Blitz P41 EBIRD 11.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311052103 2021-03-26 06:17:19.712573 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 12 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-04-18 obsr2096529 S22932785 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295954512 2021-03-26 06:39:43.334073 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 100 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-10 09:37:00 obsr1668936 S21757717 Traveling P22 EBIRD 63.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS301299407 2015-03-06 22:29:13 483 species avibase-85625D75 Mallard Anas platyrhynchos 18 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-06 07:23:00 obsr1334267 S22201414 Traveling P22 EBIRD 14.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300084117 2021-03-19 16:44:35.607263 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis N 19 United States US New York US-NY Monroe US-NY-055 13.0 Erie Station Rd -- East of Middle Rd L3290135 P 43.0422336 -77.6395226 2015-02-27 17:40:00 obsr934639 S22110150 Stationary P21 EBIRD 7.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299654323 2021-03-23 16:30:20.514143 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-01-27 07:15:00 obsr2409011 S22076891 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319960761 2021-03-19 16:44:35.607263 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-14 09:30:00 obsr1534851 S23461371 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294032638 2022-02-08 17:27:20.632176 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 10 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-01-30 12:30:00 obsr967916 S21605111 Stationary P21 EBIRD 39.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308205002 2021-03-23 17:00:13.087107 33474 species avibase-043F337A Indigo Bunting Passerina cyanea N 14 United States US New York US-NY Tompkins US-NY-109 13.0 AviTom49 L3513991 H 42.5112342 -76.6349423 2015-04-07 08:25:00 obsr1092576 S22734720 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323516178 2015-05-28 09:04:20 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Herkimer US-NY-043 13.0 Brockett Road - Town of Manheim L621897 P 43.0860824 -74.8197008 2015-05-26 09:52:00 obsr2694889 S23674294 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314295528 2021-11-09 19:21:07.406501 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-04-30 07:28:00 obsr440908 S23140799 Traveling P22 EBIRD 174.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300710469 2019-07-23 17:27:37 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Broome US-NY-007 28.0 3665 River Rd Endicott L1466336 P 42.108244 -76.008055 2015-03-03 10:15:00 obsr1826325 S22157325 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319033283 2021-04-01 11:15:31.646886 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field, Kings Co. L1341687 P 40.5925957 -73.8870594 2015-05-12 09:35:00 obsr827632 S23408683 Traveling P22 EBIRD 70.0 1.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291626646 2021-04-01 12:18:57.910168 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 40 United States US New York US-NY Tompkins US-NY-109 13.0 Overlook, Rte. 89 N of Hog Hole L479673 H 42.4647843 -76.5246248 2015-01-18 09:46:00 obsr2211210 S21395327 Stationary P21 EBIRD 52.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298428826 2021-03-30 19:43:32.881136 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L462664 P 41.2146028 -73.8659227 2015-02-19 07:45:00 obsr2078798 S21976368 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298444980 2021-03-23 17:26:08.495143 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-02-19 08:02:00 obsr2505956 S21977976 Traveling P22 EBIRD 120.0 1.609 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303033884 2015-03-14 12:40:25 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-03-14 12:30:00 obsr1181085 S22343310 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296115001 2015-02-11 20:44:10 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--tss office (CLO 193B) L515673 P 42.480385 -76.4511779 2015-02-11 11:50:00 obsr1062070 S21770188 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302110438 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-03-09 16:19:00 obsr924076 S22264883 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308306969 2021-11-09 17:44:58.165123 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Feeder/yard observations L1072689 P 41.8611874 -73.6756039 2015-04-07 14:00:00 obsr1917973 S22742296 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313085696 2021-02-05 21:01:04.413265 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Brookhaven State Park L5570811 H 40.9212148 -72.8692644 2015-04-26 09:53:00 obsr1954215 S23065311 Traveling P22 EBIRD 55.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308322046 2019-04-19 13:17:53 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 14 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-07 16:45:00 obsr1918430 S22743439 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295227178 2021-11-09 19:38:09.932255 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 3 United States US New York US-NY Orange US-NY-071 28.0 Sterling Forest Woods Road L1450571 P 41.240948 -74.20288 2015-02-06 15:14:00 obsr1257101 S21699840 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311778707 2018-08-04 17:10:26 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-19 06:15:00 obsr2887137 S22979107 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295858604 2021-11-09 19:49:38.125658 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Orange US-NY-071 28.0 Warren Sod Farm L2726957 P 41.3311935 -74.4761467 2015-02-08 12:30:00 obsr1872991 S21749807 Stationary P21 EBIRD 40.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291428160 2021-03-23 16:52:36.900075 20829 species avibase-B9B272F4 Common Raven Corvus corax 6 United States US New York US-NY Suffolk US-NY-103 30.0 Suffolk County Farm & Education Center L3140486 P 40.8253386 -72.9192209 2015-01-16 09:15:00 obsr613775 S21379619 Traveling P22 EBIRD 92.0 1.545 1.0 1 G1111871 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311840919 2021-03-24 20:33:47.533911 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 NY:TOM:Lansing: Myers Pt L2309821 P 42.5373453 -76.5504692 2015-04-16 07:16:00 obsr2760150 S22983302 Stationary P21 EBIRD 101.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315027864 2021-03-26 06:11:29.8335 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 6 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Owasco Lake inlet area L302042 H 42.7542393 -76.4637132 2015-05-02 07:03:00 obsr1655171 S23184009 Traveling P22 EBIRD 83.0 0.805 2.0 1 G1247590 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289514208 2021-04-01 11:49:53.573686 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N X United States US New York US-NY Queens US-NY-081 30.0 Yard L3252095 P 40.7651771 -73.9292094 2015-01-06 15:18:00 obsr2310825 S21225234 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306090400 2018-08-04 17:04:42 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Suffolk US-NY-103 30.0 Marratooka Point Vicinity L3274424 P 40.985276 -72.5120831 2015-03-29 15:25:00 obsr2528068 S22578126 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340107501 2021-04-01 11:49:53.573686 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Queens US-NY-081 30.0 Ridgewood Reservoir L393007 H 40.688969 -73.8863182 2015-04-26 08:40:00 obsr294325 S24873719 Traveling P22 EBIRD 270.0 4.828 8.0 1 G1238523 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315686523 2021-03-26 07:56:20.588749 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Nassau US-NY-059 Morgan Memorial Park L1440142 H 40.8649583 -73.6531285 2015-05-04 09:30:00 obsr1296638 S23219865 Traveling P22 EBIRD 30.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313998424 2021-03-26 07:46:52.994574 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus N X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-29 07:00:00 obsr2321296 S23122434 Traveling P22 EBIRD 126.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS768271820 2021-04-01 11:15:31.646886 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-04 obsr192641 S56880477 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323731744 2015-05-29 08:45:45 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 century house L3594980 P 42.7707228 -73.7431741 2015-05-28 19:05:00 obsr2507995 S23690375 Traveling P22 EBIRD 30.0 0.402 2.0 1 G1294733 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315069026 2018-08-04 17:08:48 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Tompkins US-NY-109 28.0 Herman Rd. wetlands L1108700 H 42.5157265 -76.3355194 2015-04-12 09:52:00 obsr1476346 S23186394 Stationary P21 EBIRD 41.0 6.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS322859181 2018-08-06 22:31:08 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-25 13:10:00 obsr2588479 S23630842 Traveling P22 EBIRD 104.0 3.54 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298198240 2021-03-26 07:20:31.408164 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-02-10 07:00:00 obsr1592950 S21955925 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317436536 2015-05-09 09:15:25 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 6 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 US-NY-PORTAGE-E.LetchworthSP.ParadeGroundsRd. L3468840 P 42.583784 -78.030898 2015-05-05 10:54:00 obsr731272 S23319996 Traveling P22 EBIRD 263.0 17.059 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298332123 2015-02-18 21:47:15 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-02-15 13:09:00 obsr1548221 S21967512 Traveling P22 EBIRD 17.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313299340 2021-04-01 11:24:19.637193 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 3 United States US New York US-NY Monroe US-NY-055 13.0 Harwick Rd., Irondequoit (Varied Thrush 2015) L3593429 P 43.174 -77.55397 2015-04-26 12:30:00 obsr1655171 S23077947 Traveling P22 EBIRD 122.0 0.805 2.0 1 G1241608 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307453938 2015-04-04 15:31:12 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Holiday Inn L160744 H 42.08827 -76.79419 2015-04-04 11:50:00 obsr1092576 S22680601 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321355767 2020-03-15 09:14:53 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-17 17:00:00 obsr2096529 S23540223 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299950954 2015-02-27 21:02:04 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 19 United States US New York US-NY Albany US-NY-001 13.0 Green Island--Hudson&Tibbitts L3294938 P 42.7492098 -73.6883926 2015-02-27 15:30:00 obsr2186523 S22099453 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS488817280 2021-05-01 13:40:16.138719 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 8 United States US New York US-NY Rensselaer US-NY-083 13.0 US-NY-Poestenkill-455 Snyders Corners Rd L3438483 P 42.683002 -73.588114 2015-02-27 16:00:00 obsr1301707 S36174634 Stationary P21 EBIRD 10.0 1.0 1 G2354340 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306134370 2021-12-23 15:00:47.137144 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 29 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-03-29 11:50:00 obsr730231 S22581514 Traveling P22 EBIRD 296.0 0.08 3.0 1 G1196949 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294160532 2021-03-26 07:30:35.289997 616 species avibase-25C94A8F Greater Scaup Aythya marila 22 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Wegmans canal area L1368977 H 42.4346276 -76.5116732 2015-01-31 14:39:00 obsr1318356 S21615143 Traveling P22 EBIRD 7.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309373295 2015-04-12 12:24:35 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 6 United States US New York US-NY Tompkins US-NY-109 28.0 125 Yellow Barn L1154982 P 42.4758677 -76.3421059 2015-04-12 12:02:00 obsr2001485 S22818561 Traveling P22 EBIRD 22.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293433484 2021-03-23 16:30:20.514143 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 9 United States US New York US-NY Oswego US-NY-075 13.0 Baum Road yard L266171 P 43.3412537 -76.1184204 2015-01-26 07:30:00 obsr979921 S21557953 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323358688 2022-02-17 14:32:23.002448 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-27 09:15:00 obsr2078092 S23663365 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304450987 2021-04-01 10:49:39.496318 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 200 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-03-21 10:10:00 obsr887540 S22453638 Stationary P21 EBIRD 28.0 10.0 1 G1198796 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322597830 2018-08-06 22:31:02 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla X United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Iroquois NWR--Swallow Hollow Trail L771567 H 43.1254425 -78.3256102 2015-05-24 10:30:00 obsr2537615 S23614894 Traveling P22 EBIRD 90.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309712877 2017-08-16 17:04:03 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Franklin US-NY-033 14.0 Hobart Road L3279843 P 44.42647 -74.174994 2015-04-13 11:30:00 obsr2630526 S22841223 Traveling P22 EBIRD 45.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319698881 2021-04-01 10:55:39.308231 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-14 15:00:00 obsr1379161 S23446741 Traveling P22 EBIRD 150.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298709946 2021-03-26 07:30:35.289997 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 4 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-02-21 08:33:00 obsr1655171 S22000612 Stationary P21 EBIRD 21.0 2.0 1 G1155007 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288841361 2019-07-23 17:26:42 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 78 United States US New York US-NY Suffolk US-NY-103 30.0 Southold Town Beach L142618 H 41.0892334 -72.4137115 2015-01-03 08:55:00 obsr2485753 S21172721 Stationary P21 EBIRD 20.0 2.0 1 G1100214 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322301066 2021-03-23 17:21:37.486392 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus N 1 United States US New York US-NY Fulton US-NY-035 13.0 Broadalbin Public Boat Launch L3666763 P 43.1061255 -74.1735895 2015-05-22 10:01:00 obsr1222746 S23598156 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310266621 2021-03-24 20:23:39.258075 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Suffolk US-NY-103 30.0 Farm L137715 P 41.0795555 -72.4394913 2015-04-15 16:32:00 obsr2485753 S22880226 Traveling P22 EBIRD 36.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304095567 2021-03-24 05:37:45.927792 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-03-19 14:30:00 obsr2071643 S22426611 Historical P62 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321514302 2021-03-26 07:56:20.588749 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-20 12:15:00 obsr547602 S23549934 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310382123 2021-11-09 18:33:58.039151 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 6 United States US New York US-NY Dutchess US-NY-027 13.0 Cobb Ridge L2517475 P 42.0382655 -73.8797092 2015-04-16 07:30:00 obsr671490 S22888345 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309681764 2021-03-19 16:08:39.161312 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Watts Flats WMA L490893 H 42.0350422 -79.4263016 2015-04-12 09:15:00 obsr2910282 S22839266 Traveling P22 EBIRD 65.0 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305808460 2018-08-04 17:04:31 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 14 United States US New York US-NY Suffolk US-NY-103 30.0 Mattituck Creek--The Anchorage L2715832 P 41.001626 -72.544036 2015-03-28 14:32:00 obsr2485753 S22557422 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS329699579 2018-08-06 22:30:55 10728 species avibase-6BDADC9C Black-backed Woodpecker Picoides arcticus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-23 09:15:00 obsr1962295 S24113540 Traveling P22 EBIRD 90.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299776738 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-02-26 15:00:00 obsr2448957 S22086388 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319568232 2021-03-24 21:01:50.671145 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-05-14 09:10:00 obsr247620 S23439443 Traveling P22 EBIRD 70.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310943537 2021-04-01 11:15:31.646886 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 11:45:00 obsr152435 S22925878 Traveling P22 EBIRD 177.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310161459 2015-04-15 14:42:55 27616 species avibase-D77E4B41 American Robin Turdus migratorius 10 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-15 07:55:00 obsr2211210 S22873338 Traveling P22 EBIRD 26.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340289162 2021-11-09 17:42:54.12862 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Dutchess US-NY-027 28.0 Sylvan Lake L1034653 H 41.6086902 -73.7405241 2015-05-31 12:15:00 obsr189780 S24887955 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321549748 2018-08-06 22:30:39 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College L1485004 H 44.4375537 -74.2530447 2015-05-20 15:00:00 obsr877361 S23552093 Traveling P22 EBIRD 60.0 1.609 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290500930 2021-04-01 11:30:42.037277 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia N 279 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-11 07:24:00 obsr924076 S21304695 Traveling P22 EBIRD 432.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323512337 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Monroe US-NY-055 13.0 Shil's Backyard L242296 P 43.2591667 -77.6480556 2015-05-28 07:00:00 obsr991026 S23674014 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322376505 2015-05-23 22:23:40 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 11 United States US New York US-NY Erie US-NY-029 13.0 Old Lakeview Road L2956283 P 42.7103137 -78.8626474 2015-05-23 16:30:00 obsr711506 S23602691 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290213759 2021-03-26 07:20:31.408164 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-01-05 07:30:00 obsr1592950 S21281332 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307361989 2021-03-26 08:11:28.0353 6189 species avibase-39F29B55 Common Murre Uria aalge 2 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Stillwater, NY 52 county route 76 L1926398 P 42.933103 -73.680332 2015-04-04 08:28:00 obsr2564462 S22674151 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314449336 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-28 08:30:00 obsr1466628 S23150052 Traveling P22 EBIRD 150.0 3.219 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288697821 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY New York US-NY-061 30.0 Hudson River Park, Manhattan L1005616 P 40.7336582 -74.0106346 2015-01-02 10:30:00 obsr128156 S21158656 Traveling P22 EBIRD 60.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309355942 2021-04-01 11:30:42.037277 18439 species avibase-D97F93CC White-eyed Vireo Vireo griseus N 5 United States US New York US-NY New York US-NY-061 30.0 W Village Backyards and Airspace L974907 P 40.7366845 -74.0071853 2015-04-12 10:42:00 obsr128156 S22817543 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313887374 2021-03-30 19:43:32.881136 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Westchester US-NY-119 30.0 Tibbetts Brook Park L293496 H 40.9240387 -73.8786568 2015-04-28 17:56:00 obsr1348614 S23115384 Traveling P22 EBIRD 76.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304303034 2021-03-26 07:30:35.289997 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-03-20 08:00:00 obsr2137468 S22442879 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309129920 2021-03-24 21:10:11.310781 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Saratoga US-NY-091 13.0 Saratoga Lake, Brown's Beach L2593213 H 42.9862784 -73.7430807 2015-04-11 12:15:00 obsr2774749 S22802715 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310579193 2015-04-17 00:44:26 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Herkimer US-NY-043 13.0 Broat Road & Eatonville Rd - Town of Little Falls L637803 P 43.0367053 -74.9207497 2015-04-14 11:11:00 obsr1000124 S22902217 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319310852 2021-03-19 16:44:35.607263 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-13 09:15:00 obsr2504709 S23424518 Traveling P22 EBIRD 105.0 0.644 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319536855 2021-12-24 11:02:14.483178 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-14 09:44:00 obsr2595828 S23437713 Traveling P22 EBIRD 103.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303317197 2018-08-04 17:01:30 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 2 United States US New York US-NY Chenango US-NY-017 28.0 Chenango River off Hogsback Rd Greene L3400995 P 42.3494853 -75.7156062 2015-03-15 14:09:00 obsr1303581 S22364995 Traveling P22 EBIRD 8.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323217429 2021-04-01 12:32:15.282601 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 8 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-05-26 08:17:00 obsr873268 S23654052 Traveling P22 EBIRD 108.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307662508 2021-11-09 19:56:29.393767 431 species avibase-90E2543E Blue-winged Teal Spatula discors 1 United States US New York US-NY Orange US-NY-071 28.0 My spot L3350343 P 41.2308311 -74.3717122 2015-03-29 08:00:00 obsr1603513 S22695073 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321654524 2018-08-06 22:30:40 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-21 06:08:00 obsr1165633 S23558628 Traveling P22 EBIRD 152.0 5.472 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302743449 2021-11-15 03:06:58.889978 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-07 11:00:00 obsr93451 S22320355 Traveling P22 EBIRD 120.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303224675 2021-03-23 17:00:13.087107 592 species avibase-3072CC16 Redhead Aythya americana 4 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-03-15 10:00:00 obsr455249 S22357929 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294327451 2021-04-01 12:32:15.282601 7429 species avibase-1327AC55 Osprey Pandion haliaetus 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-31 14:00:00 obsr350767 S21628252 Traveling P22 EBIRD 90.0 8.047 3.0 1 G1131307 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295745408 2015-02-09 07:54:40 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-02-09 07:40:00 obsr2074043 S21740972 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317292219 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 10:30:00 obsr145923 S23311152 Traveling P22 EBIRD 285.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312622827 2021-03-26 07:07:10.758746 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Richmond US-NY-085 Lemon Creek Pier L673443 H 40.5108301 -74.2097712 2015-04-24 18:09:00 obsr1958124 S23036587 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306106319 2021-03-26 06:29:56.44369 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 10 United States US New York US-NY Monroe US-NY-055 13.0 Lyons and Wardell- traveling. L1567354 P 43.0028314 -77.6111956 2015-03-29 17:00:00 obsr270659 S22579377 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315197323 2021-03-23 17:23:45.772216 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 7 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus-Back Woods L698393 P 42.6703198 -77.6733398 2015-05-03 06:47:00 obsr72341 S23193700 Traveling P22 EBIRD 63.0 2.655 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323262144 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 1 United States US New York US-NY Albany US-NY-001 13.0 The Crossings L890715 H 42.7126511 -73.7964267 2015-05-26 13:00:00 obsr2186523 S23656887 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313065827 2021-11-09 22:38:55.83044 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 1 Male, Adult (1) United States US New York US-NY Sullivan US-NY-105 US-NY_2792 28.0 644 River Road L2326174 P 41.782401 -75.1017773 2015-04-26 09:20:00 obsr279522 S23064103 Incidental P20 EBIRD 2.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288976450 2021-03-26 08:09:53.772059 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 1 United States US New York US-NY Rensselaer US-NY-083 13.0 Coopers Pond, Brunswick L1008485 H 42.7363667 -73.6531746 2015-01-04 10:31:00 obsr2211210 S21183000 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294664298 2021-04-01 12:32:15.282601 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-01 07:30:00 obsr324709 S21654855 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289315085 2021-03-26 08:14:57.071052 6616 species avibase-7E022378 Common Loon Gavia immer 65 United States US New York US-NY Westchester US-NY-119 28.0 Steamboat Riverfront Park, Verplanck L2608460 H 41.2498799 -73.9654233 2015-01-05 10:30:00 obsr2078798 S21209338 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316049032 2021-04-01 11:15:31.646886 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 06:44:00 obsr41879 S23240477 Traveling P22 EBIRD 138.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302067370 2021-04-01 11:42:50.317679 1796 species avibase-018B3169 Horned Grebe Podiceps auritus N 5 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-03-09 17:45:00 obsr666964 S22261581 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309787184 2021-11-09 20:12:16.773384 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-04-13 16:02:00 obsr1912104 S22846904 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307046301 2015-04-02 20:48:39 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Binghamton, Confluence of Chenango and Susquehanna rivers L809496 P 42.0923312 -75.9136498 2015-04-02 12:10:00 obsr1764243 S22651092 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291759812 2018-08-04 16:53:25 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Seneca US-NY-099 13.0 Willard Town Park L356503 H 42.6813804 -76.8808201 2015-01-17 07:31:00 obsr1828453 S21405496 Traveling P22 EBIRD 9.0 0.322 1.0 1 G1112412 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323345086 2021-11-09 18:47:57.38119 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Dutchess US-NY-027 28.0 Berkshire Road, Dover Plains, NY L3677173 P 41.67904 -73.5525119 2015-05-27 07:30:00 obsr1062217 S23662507 Traveling P22 EBIRD 190.0 6.437 3.0 1 G1292783 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306777175 2022-02-04 06:14:13.892644 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-04-01 16:58:00 obsr870166 S22630820 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310568523 2019-07-23 17:28:22 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr870166 S22901497 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296861100 2021-11-09 21:57:09.307176 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Ulster US-NY-111 28.0 search for Gyr roadside route L3371091 P 41.6264784 -74.2098141 2015-02-14 10:30:00 obsr1588136 S21836797 Traveling P22 EBIRD 360.0 56.327 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS412854625 2021-04-01 12:24:14.132004 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis N X United States US New York US-NY Washington US-NY-115 13.0 River Rd., Ft. Miller L2742155 H 43.1343397 -73.5892952 2015-01-01 obsr2943723 S30292991 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316416898 2021-03-26 06:21:54.883933 33267 spuh avibase-62BC6EC7 warbler sp. (Parulidae sp.) Parulidae sp. 2 United States US New York US-NY Kings US-NY-047 30.0 Dyker Beach Park L1044216 H 40.6123885 -74.0192327 2015-05-06 07:58:00 obsr1189028 S23261700 Traveling P22 EBIRD 17.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305968089 2021-03-26 07:20:31.408164 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Suffolk US-NY-103 30.0 Cove Hollow Farm L786267 P 40.9400884 -72.2210312 2015-03-28 13:30:00 obsr1460516 S22569305 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323274180 2021-03-26 06:12:17.833181 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii N 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Chautauqua Rest Area L1355499 H 42.1340409 -79.3492388 2015-05-22 16:00:00 obsr1422479 S23657727 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294222180 2021-04-01 11:30:42.037277 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 196 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-31 08:26:00 obsr924076 S21619835 Traveling P22 EBIRD 536.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308624946 2018-08-04 17:08:11 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Oswego US-NY-075 13.0 Peter Scott Swamp L248391 H 43.2444498 -76.2705344 2015-04-09 10:00:00 obsr642516 S22766532 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323991757 2021-11-09 18:42:19.628792 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-30 09:00:00 obsr1917973 S23707516 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296566352 2016-04-29 17:01:34 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 2 United States US New York US-NY Chenango US-NY-017 28.0 535 Moran Rd, Oxford L2650908 P 42.3464446 -75.6593978 2015-02-13 08:00:00 obsr1303581 S21810237 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315119316 2021-04-01 11:30:42.037277 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-02 08:00:00 obsr2369927 S23189156 Traveling P22 EBIRD 360.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310201578 2015-04-15 12:06:24 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay at Empire Blvd. L1421812 P 43.1726027 -77.5176655 2015-04-14 11:00:00 obsr2449897 S22876038 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322254108 2018-08-06 22:30:53 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 3 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-23 08:00:00 obsr1830659 S23595245 Traveling P22 EBIRD 180.0 4.828 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317077539 2021-03-26 06:09:25.361188 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-05-08 06:10:00 obsr879105 S23299542 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308067460 2018-08-04 17:05:43 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Richmond US-NY-085 Conference House Park L302089 H 40.4995098 -74.2516756 2015-04-06 09:17:00 obsr155915 S22723840 Traveling P22 EBIRD 13.0 0.483 2.0 1 G1208448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304852800 2021-03-24 20:33:47.533911 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 10 United States US New York US-NY Tompkins US-NY-109 13.0 Newman Municipal Golf Course L2158758 H 42.4561318 -76.5052153 2015-03-22 16:32:00 obsr2683910 S22483258 Traveling P22 EBIRD 21.0 0.483 2.0 1 G1190056 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318668317 2021-03-19 16:32:34.732091 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-09 15:10:00 obsr876649 S23387358 Traveling P22 EBIRD 30.0 1.0 6.0 1 G1265608 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302933337 2021-04-01 12:18:57.910168 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 20 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-05 08:20:00 obsr2683910 S22335168 Stationary P21 EBIRD 33.0 2.0 1 G1178158 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314136143 2021-03-19 16:02:45.308962 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-29 16:18:00 obsr1764243 S23130663 Traveling P22 EBIRD 106.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306137041 2021-03-30 19:13:38.458673 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay L83 H 43.3130395 -77.7153471 2015-03-28 11:44:00 obsr1598543 S22581717 Traveling P22 EBIRD 76.0 1.287 4.0 1 G1196956 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293046527 2021-03-26 07:30:35.289997 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-24 14:28:00 obsr2683910 S21526463 Stationary P21 EBIRD 69.0 2.0 1 G1122004 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324084395 2022-02-17 14:32:23.002448 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-30 14:00:00 obsr1063023 S23713262 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304339020 2021-04-01 10:55:39.308231 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 27 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-03-21 07:29:00 obsr502830 S22445364 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295515607 2019-07-23 17:27:17 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Restaurant Deck, Montauk Pt L1115709 P 41.0732206 -71.8593621 2015-02-08 07:15:00 obsr1828047 S21723357 Stationary P21 EBIRD 90.0 5.0 1 G1139006 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309324051 2021-03-23 17:00:13.087107 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 6 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-12 07:58:00 obsr1476346 S22815566 Traveling P22 EBIRD 85.0 0.805 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296873103 2022-02-17 14:32:23.002448 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-14 10:00:00 obsr1807494 S21837820 Traveling P22 EBIRD 120.0 0.805 2.0 1 G1146116 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296811474 2021-03-30 19:07:52.958398 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-14 12:10:00 obsr876649 S21832286 Traveling P22 EBIRD 95.0 2.414 2.0 1 G1145873 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312865352 2021-03-30 19:07:52.958398 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 07:20:00 obsr876649 S23051967 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299034005 2021-04-01 10:55:39.308231 26890 species avibase-94A44032 European Starling Sturnus vulgaris 550 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-02-22 16:17:00 obsr502830 S22027601 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307841364 2015-04-05 20:40:32 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-04-05 08:27:00 obsr1839967 S22707720 Stationary P21 EBIRD 480.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309170088 2021-03-26 07:46:52.994574 5976 species avibase-F4829920 American Woodcock Scolopax minor 3 United States US New York US-NY Albany US-NY-001 13.0 NY, Alb, RtoT west L1405066 P 42.6333906 -73.8825816 2015-04-11 15:44:00 obsr1885846 S22805467 Traveling P22 EBIRD 123.0 8.69 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313749775 2015-04-28 10:21:32 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Oswego US-NY-075 13.0 Oswego County Airport--Howard Rd. L1814858 H 43.3553061 -76.3795964 2015-04-25 14:40:00 obsr1190754 S23106559 Stationary P21 EBIRD 30.0 7.0 1 G1240141 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289853567 2021-04-01 10:58:31.765174 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Franklin US-NY-033 14.0 US-NY-Saranac Lake-35 James St L2839009 P 44.331237 -74.139357 2015-01-08 11:45:00 obsr2630526 S21251985 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314237528 2021-03-26 07:52:59.845315 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 Female, Immature (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-29 07:45:00 obsr316199 S23137011 Area P23 EBIRD 95.0 2.59 2.0 1 G1243714 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310384055 2021-03-24 20:52:26.336264 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Wyoming US-NY-121 13.0 US-NY-Alexander-11214 Chaddock Rd L1586311 P 42.869288 -78.213345 2015-04-15 12:31:00 obsr393804 S22888508 Traveling P22 EBIRD 11.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313278016 2015-04-26 19:15:41 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 4 United States US New York US-NY Rensselaer US-NY-083 US-NY_763 14.0 Babcock Lake, Grafton, NY L1531175 P 42.8177071 -73.3989717 2015-04-26 07:00:00 obsr1379674 S23076617 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310730052 2021-11-09 20:53:17.759253 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis N 3 United States US New York US-NY Rockland US-NY-087 30.0 Nanuet L1293607 P 41.0931306 -74.0298271 2015-04-17 17:00:00 obsr1932005 S22912080 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312089429 2021-03-24 20:33:47.533911 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-22 13:40:00 obsr1655171 S22999405 Traveling P22 EBIRD 25.0 0.483 2.0 1 G1231557 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310605063 2019-03-04 17:55:09 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-17 08:30:00 obsr1918430 S22904010 Traveling P22 EBIRD 15.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300913893 2021-03-24 21:06:05.39641 505 species avibase-C732CB10 American Black Duck Anas rubripes N 2 United States US New York US-NY Onondaga US-NY-067 13.0 Home L1479128 P 43.1502997 -76.3703906 2015-03-04 13:00:00 obsr2172593 S22172725 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315484986 2021-03-19 16:44:35.607263 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-30 19:28:00 obsr334398 S23208806 Traveling P22 EBIRD 20.0 0.064 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316934894 2021-03-24 21:01:50.671145 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-07 13:30:00 obsr247620 S23291302 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310280040 2019-05-07 15:30:03 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Stadlen and Hoyt-Pileated Trail L1498735 H 42.4777154 -76.4481604 2015-04-15 17:46:00 obsr1062070 S22881154 Traveling P22 EBIRD 26.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302603466 2021-03-26 06:29:56.44369 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-03-10 08:30:00 obsr2759466 S22310026 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311185250 2021-04-01 10:57:06.520339 6040 species avibase-E7A14E91 Willet Tringa semipalmata 1 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-04-19 08:21:00 obsr2420101 S22940924 Traveling P22 EBIRD 119.0 1.609 2.0 1 G1225740 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332267385 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-31 11:25:00 obsr564905 S24303090 Traveling P22 EBIRD 110.0 1.609 2.0 1 G1349853 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307017451 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-02 08:32:00 obsr1548221 S22648981 Traveling P22 EBIRD 55.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305218553 2021-03-26 07:20:31.408164 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-03-25 08:00:00 obsr2011512 S22511940 Traveling P22 EBIRD 80.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298410658 2021-03-26 06:53:58.593564 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 14 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-02-18 14:30:00 obsr2892286 S21974212 Stationary P21 EBIRD 120.0 2.0 1 G1152653 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301950055 2018-08-04 16:59:01 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-03-08 09:16:00 obsr354239 S22252440 Stationary P21 EBIRD 7.0 11.0 1 G1170860 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325234440 2021-03-23 17:23:45.772216 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 20 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 US-NY PORTAGE-Letchworth SP-River Rd.-Dygert-ShortTrack-Williams L3699279 P 42.575554 -78.020111 2015-05-26 10:10:00 obsr731272 S23792644 Traveling P22 EBIRD 298.0 12.07 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307686993 2021-03-26 07:56:20.588749 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-05 08:30:00 obsr1668936 S22696699 Traveling P22 EBIRD 90.0 0.966 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309436784 2015-09-30 20:33:07 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 1 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-12 11:00:00 obsr2774749 S22822156 Traveling P22 EBIRD 50.0 1.287 2.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307691003 2021-03-30 19:13:38.458673 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 15 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--South Marina L458871 H 43.3060838 -77.7083373 2015-04-05 11:54:00 obsr334398 S22696961 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314048797 2021-03-30 19:22:51.561415 6610 species avibase-6C50988A Red-throated Loon Gavia stellata X United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-29 10:45:00 obsr1693806 S23125346 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316676593 2021-04-01 11:30:42.037277 11371 species avibase-75600969 Northern Flicker Colaptes auratus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 07:30:00 obsr1102914 S23276879 Traveling P22 EBIRD 300.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318366375 2021-03-26 06:12:17.833181 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-05-10 07:30:00 obsr479109 S23370812 Stationary P21 EBIRD 40.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289309324 2021-03-23 16:39:03.255227 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-01-05 14:48:00 obsr1958124 S21208859 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304345135 2021-03-26 07:46:52.994574 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-03-21 07:20:00 obsr1154 S22445857 Traveling P22 EBIRD 104.0 1.609 4.0 1 G1186979 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289827292 2015-05-07 17:05:30 3169 species avibase-0CF12F81 Yellow-billed Cuckoo Coccyzus americanus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm sugar shack field transect L2272444 P 42.346503 -76.2992924 2015-01-08 07:37:00 obsr455249 S21249660 Traveling P22 EBIRD 9.0 0.225 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290203344 2017-04-18 11:25:19 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Richmond US-NY-085 US-NY_818 30.0 Bridge Creek, Western Ave. L880325 H 40.6324936 -74.1838624 2015-01-10 13:46:00 obsr1958124 S21280371 Stationary P21 EBIRD 4.0 2.0 1 G1103713 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316769550 2021-04-01 11:24:19.637193 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-05-07 06:29:00 obsr1958774 S23282239 Traveling P22 EBIRD 42.0 0.483 2.0 1 G1291692 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311644975 2021-04-01 12:32:15.282601 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-20 06:00:00 obsr547602 S22970426 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323282447 2021-03-26 07:46:52.994574 483 species avibase-85625D75 Mallard Anas platyrhynchos N X United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-05-27 05:10:00 obsr1154 S23658303 Traveling P22 EBIRD 58.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315314835 2021-04-01 10:55:39.308231 616 species avibase-25C94A8F Greater Scaup Aythya marila 5 United States US New York US-NY Erie US-NY-029 13.0 132 College St - Buffalo L2102392 P 42.9005371 -78.879261 2015-05-03 09:00:00 obsr2537615 S23199749 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308829308 2021-04-01 10:58:47.067498 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 15 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-04-09 11:37:00 obsr408487 S22782331 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323079766 2021-03-26 07:46:52.994574 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-26 09:10:00 obsr1201479 S23645124 Stationary P21 EBIRD 47.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320570355 2018-08-06 22:30:03 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 32 United States US New York US-NY Jefferson US-NY-045 Snowshoe Rd. L1564994 H 43.8755609 -76.2282763 2015-05-16 06:00:00 obsr1558090 S23493472 Traveling P22 EBIRD 110.0 1.448 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308376110 2021-04-01 10:51:06.899622 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-07 10:45:00 obsr479109 S22747481 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300326732 2021-04-01 11:58:54.966271 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 11 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-03-01 07:00:00 obsr2211750 S22130420 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298954977 2020-04-10 18:36:08 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-22 11:30:00 obsr2172593 S22020638 Traveling P22 EBIRD 42.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319572305 2021-11-15 03:06:58.889978 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica N 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-14 10:09:00 obsr2149836 S23439643 Traveling P22 EBIRD 162.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288895623 2022-03-06 12:39:33.700954 616 species avibase-25C94A8F Greater Scaup Aythya marila 4 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-01-03 13:52:00 obsr1615708 S21176782 Traveling P22 EBIRD 43.0 0.402 3.0 1 G1094200 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310383090 2021-04-01 10:57:06.520339 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-04-16 06:55:00 obsr2420101 S22888428 Traveling P22 EBIRD 83.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296493467 2021-03-26 07:30:35.289997 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 270 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-13 12:43:00 obsr2074043 S21803411 Traveling P22 EBIRD 51.0 1.127 4.0 1 G1144788 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321514290 2021-03-26 07:56:20.588749 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis X United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-20 12:15:00 obsr547602 S23549934 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294429275 2021-11-09 18:32:20.227374 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 8 United States US New York US-NY Dutchess US-NY-027 13.0 2122 New Hackensack Road, Poughkeepsie, New York, US (41.66, -73.874) L233101 P 41.6600962 -73.8740462 2015-02-01 07:00:00 obsr842638 S21636219 Stationary P21 EBIRD 150.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311214741 2021-04-01 11:43:48.927316 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 3 United States US New York US-NY Ontario US-NY-069 13.0 Outlet Creek at Fisher Rd., Phelps L3504661 H 42.9576794 -76.9893336 2015-04-16 17:30:00 obsr2983460 S22942605 Area P23 EBIRD 45.0 2.0234 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292534929 2021-03-23 16:52:36.900075 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Shinnecock Inlet, west L3087424 H 40.8421473 -72.4781388 2015-01-21 13:30:00 obsr1489009 S21486644 Traveling P22 EBIRD 30.0 0.322 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308306357 2015-04-07 16:39:46 7429 species avibase-1327AC55 Osprey Pandion haliaetus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_839 Cedar Beach L149796 P 41.0363235 -72.3890305 2015-04-07 16:17:00 obsr2485753 S22742250 Traveling P22 EBIRD 21.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310506772 2021-04-01 11:42:15.525388 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Fort Niagara SP L210265 H 43.2638703 -79.0567981 2015-04-16 14:45:00 obsr2756208 S22897231 Traveling P22 EBIRD 28.0 0.322 3.0 1 G1222155 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292097468 2021-03-26 06:55:00.227271 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-01-20 09:39:00 obsr606693 S21431806 Traveling P22 EBIRD 16.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306938870 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris 25 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-02 09:00:00 obsr1175815 S22642816 Traveling P22 EBIRD 140.0 4.828 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS306204934 2018-08-04 17:04:40 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo--Cope Lake L3153083 H 40.855577 -73.8789371 2015-03-29 13:50:00 obsr1513140 S22586949 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296036318 2021-04-01 12:18:57.910168 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Tompkins US-NY-109 13.0 McGovern Fields L1115255 H 42.4361903 -76.4522052 2015-02-10 17:25:00 obsr1318356 S21764024 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316157943 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 09:15:00 obsr609516 S23246244 Traveling P22 EBIRD 270.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294870795 2021-03-26 07:56:20.588749 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-30 09:00:00 obsr2218212 S21672015 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313167001 2021-03-26 07:46:52.994574 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-04-26 06:11:00 obsr2512689 S23069992 Traveling P22 EBIRD 94.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292874875 2021-03-26 07:30:35.289997 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 10 United States US New York US-NY Tompkins US-NY-109 13.0 Salt Point Natural Area L353038 H 42.5394116 -76.5496267 2015-01-24 07:15:00 obsr2001485 S21513307 Traveling P22 EBIRD 62.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318449732 2021-04-01 10:55:39.308231 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-10 14:00:00 obsr1379161 S23375253 Traveling P22 EBIRD 135.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316957090 2021-04-01 11:30:42.037277 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 08:30:00 obsr1353449 S23292599 Traveling P22 EBIRD 300.0 4.828 2.0 1 G1256415 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319825483 2018-08-04 17:27:18 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Jefferson US-NY-045 US-NY_759 13.0 El Dorado Beach Preserve L122943 H 43.8077665 -76.2342086 2015-05-15 09:40:00 obsr490751 S23454290 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318741238 2018-08-06 22:29:41 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-11 10:45:00 obsr1991824 S23391551 Traveling P22 EBIRD 10.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288108869 2015-01-02 18:05:31 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Ontario US-NY-069 13.0 Home-Hillcrest dr. Cndga NY L3252206 P 42.826596 -77.2863212 2015-01-01 08:30:00 obsr670607 S21110089 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295471863 2021-03-26 07:30:35.289997 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Tareyton Drive yard L1133152 P 42.4712343 -76.4592433 2015-02-02 08:40:00 obsr2683910 S21719891 Stationary P21 EBIRD 20.0 2.0 1 G1138394 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313799560 2020-07-27 15:41:41 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Columbia US-NY-021 14.0 Harlem Valley Rail Trail--Copake Falls to Under Mountain Rd. L5803911 H 42.0757413 -73.5303798 2015-04-26 09:10:00 obsr798742 S23109697 Traveling P22 EBIRD 95.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315967704 2021-03-30 19:29:33.633096 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 7 United States US New York US-NY Suffolk US-NY-103 30.0 Fort Pond L3614249 P 41.0430008 -71.9527626 2015-01-01 15:40:00 obsr2722408 S23235383 Stationary P21 EBIRD 10.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314996025 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 07:15:00 obsr1711339 S23181568 Traveling P22 EBIRD 360.0 4.828 28.0 1 G1247342 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311184609 2021-04-01 11:30:42.037277 6201 species avibase-64F4DD81 Razorbill Alca torda X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-19 06:15:00 obsr1433400 S22940878 Traveling P22 EBIRD 180.0 6.276 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288986680 2021-04-01 10:49:39.496318 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Cayuga US-NY-011 13.0 Center Rd. L99618 H 42.6500149 -76.6246314 2015-01-04 11:00:00 obsr59643 S21183723 Traveling P22 EBIRD 10.0 0.805 6.0 1 G1095923 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305655371 2018-08-04 17:04:24 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 75 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-27 17:30:00 obsr71667 S22545915 Traveling P22 EBIRD 30.0 0.483 3.0 1 G1194341 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318954613 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-10 08:00:00 obsr442686 S23403895 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309565423 2021-01-11 20:24:27.438884 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 600 United States US New York US-NY Lewis US-NY-049 14.0 Ridge Road L2752149 P 43.8555736 -75.4884338 2015-04-12 14:00:00 obsr1882034 S22830809 Traveling P22 EBIRD 30.0 11.265 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313177426 2021-03-30 12:05:58.533651 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Westchester US-NY-119 30.0 Aiello Park L1815759 H 40.9030036 -73.7737132 2015-04-26 09:00:00 obsr352522 S23070397 Traveling P22 EBIRD 15.0 0.322 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301557300 2018-08-04 16:58:53 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 25 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-07 09:53:00 obsr2134737 S22221741 Stationary P21 EBIRD 26.0 3.0 1 G1169539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323810131 2021-11-15 03:06:58.889978 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-29 12:30:00 obsr511959 S23695668 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309248457 2018-08-04 17:08:20 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 100 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--South Marina L458871 H 43.3060838 -77.7083373 2015-04-10 09:20:00 obsr1561508 S22810758 Stationary P21 EBIRD 30.0 2.0 1 G1218433 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307658586 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-04-05 08:26:00 obsr152435 S22694807 Traveling P22 EBIRD 83.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306782262 2021-03-23 17:14:01.933181 406 species avibase-27B2749A Wood Duck Aix sponsa 4 United States US New York US-NY Washington US-NY-115 13.0 River Rd., Ft. Miller L2742155 H 43.1343397 -73.5892952 2015-04-01 12:22:00 obsr1222746 S22631227 Traveling P22 EBIRD 68.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301369117 2018-08-04 16:58:53 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-07 09:30:00 obsr2673845 S22207902 Stationary P21 EBIRD 75.0 5.0 1 G1168730 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295021055 2021-03-26 06:39:43.334073 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-05 09:00:00 obsr800463 S21685030 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300245823 2021-04-01 12:32:15.282601 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-01 07:30:00 obsr2207991 S22123715 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312657064 2021-03-19 16:08:39.161312 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 8 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-24 16:41:00 obsr1195275 S23038866 Stationary P21 EBIRD 69.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298327193 2017-05-18 15:46:14 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY New York US-NY-061 Randalls Island--Southwest section L1785369 H 40.7836216 -73.9351181 2015-02-14 11:30:00 obsr1548221 S21967122 Traveling P22 EBIRD 38.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309202927 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-10 13:00:00 obsr51266 S22807676 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310190341 2015-04-15 11:11:28 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Delaware US-NY-025 28.0 Home L150688 P 42.248363 -74.82349 2015-04-15 10:54:00 obsr2582087 S22875331 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312577010 2021-03-23 17:17:06.468947 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Wyoming US-NY-121 13.0 Silver Lake SP, inlet L811468 H 42.6724654 -78.0553293 2015-04-24 10:35:00 obsr660214 S23033128 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295722818 2021-11-15 03:06:58.889978 681 species avibase-407E2CA8 Common Merganser Mergus merganser 11 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-08 14:30:00 obsr2635084 S21739428 Traveling P22 EBIRD 70.0 0.483 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS315233676 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-05-03 08:56:00 obsr1124114 S23195711 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297775863 2015-02-16 19:51:20 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 6 United States US New York US-NY Oswego US-NY-075 13.0 Central Square L2053322 T 43.28677 -76.14605 2015-02-16 13:50:00 obsr797977 S21919358 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323577349 2021-04-01 12:30:15.438381 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 2 United States US New York US-NY Herkimer US-NY-043 13.0 McCoon's Road ponds L3591460 P 42.9225403 -75.0350246 2015-05-28 12:30:00 obsr1680059 S23678445 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291208856 2021-11-09 17:42:54.12862 27616 species avibase-D77E4B41 American Robin Turdus migratorius 34 United States US New York US-NY Dutchess US-NY-027 28.0 Sylvan Lake L1034653 H 41.6086902 -73.7405241 2015-01-10 13:55:00 obsr1062217 S21361790 Stationary P21 EBIRD 10.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS300281649 2022-02-17 14:32:23.002448 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-01 05:35:00 obsr1189028 S22126571 Traveling P22 EBIRD 165.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312994111 2021-03-26 07:30:35.289997 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-25 11:00:00 obsr1832107 S23059714 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305064110 2021-04-01 11:30:42.037277 33216 species avibase-1F09CCCC Wilson's Warbler Cardellina pusilla 22 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-24 10:48:00 obsr1668936 S22500248 Traveling P22 EBIRD 126.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313995283 2021-11-15 03:06:58.889978 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-28 15:45:00 obsr2031586 S23122261 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082879 2015-01-20 07:54:36 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-15 09:54:00 obsr1334267 S21430590 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298207906 2021-03-23 16:51:24.016808 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Steuben US-NY-101 28.0 7077 Early Road L2650322 P 42.4873437 -77.2881284 2015-02-16 08:00:00 obsr200430 S21956866 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307078309 2018-08-04 17:05:05 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-02 12:25:00 obsr528918 S22653519 Traveling P22 EBIRD 10.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290308294 2021-11-09 18:43:18.683873 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis X United States US New York US-NY Dutchess US-NY-027 13.0 Tivoli to rt 199 L3283394 P 42.0597444 -73.9100075 2015-01-10 16:10:00 obsr2862523 S21289198 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311452576 2021-05-21 00:06:20.034424 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Richmond US-NY-085 Mt. Loretto Unique Area L293510 H 40.5072899 -74.2180324 2015-04-19 09:20:00 obsr155915 S22957216 Traveling P22 EBIRD 27.0 0.966 3.0 1 G1227509 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307425320 2021-11-09 00:38:34.069905 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-04-04 08:00:00 obsr258431 S22678688 Traveling P22 EBIRD 240.0 4.667 4.0 1 G1204037 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303653009 2018-08-04 16:58:44 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-03-04 14:00:00 obsr319738 S22391998 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317900005 2021-03-24 19:23:17.886063 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-05-09 14:39:00 obsr1655171 S23345600 Traveling P22 EBIRD 12.0 1.931 2.0 1 G1268151 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311176898 2021-03-23 16:39:03.255227 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 4 United States US New York US-NY Richmond US-NY-085 30.0 Lemon Creek, bridge at Hylan Blvd. L916052 H 40.517649 -74.2011237 2015-04-19 09:53:00 obsr1958124 S22940373 Traveling P22 EBIRD 2.0 0.322 3.0 1 G1227507 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301491718 2021-03-30 19:22:51.561415 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus X United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-03-07 08:00:00 obsr2207991 S22216761 Traveling P22 EBIRD 60.0 0.322 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288251359 2021-03-23 16:52:36.900075 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Farm Field at N/E corner of Rt. 25A and Hulse Landing Road L1350954 P 40.9369529 -72.7974654 2015-01-01 14:30:00 obsr247620 S21121862 Traveling P22 EBIRD 60.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298590010 2021-03-24 20:33:47.533911 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Tompkins US-NY-109 13.0 7 Yardley Green L103725 P 42.4865541 -76.4746782 2015-02-13 07:00:00 obsr978194 S21990048 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314408599 2015-04-30 16:50:15 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Oswego US-NY-075 US-NY_798 14.0 Camp Zerbe L1584392 P 43.4606173 -75.9605495 2015-04-30 15:57:00 obsr1477887 S23147246 Traveling P22 EBIRD 51.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317397811 2015-05-09 05:45:34 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Greene US-NY-039 13.0 Shady Harbor Marina L1893325 H 42.451356 -73.7870121 2015-05-08 07:00:00 obsr826577 S23317613 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305258884 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-24 17:10:00 obsr2105033 S22515192 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321275518 2021-03-26 06:21:54.883933 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-19 07:30:00 obsr2363365 S23535476 Traveling P22 EBIRD 180.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308073806 2021-09-08 04:42:53.165995 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY New York US-NY-061 30.0 Sherman Creek Park and Swindler Cove L1018912 H 40.8580281 -73.921085 2015-04-06 13:20:00 obsr1706920 S22724327 Traveling P22 EBIRD 40.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314610282 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 16 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-01 09:15:00 obsr2883698 S23160183 Traveling P22 EBIRD 180.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295815004 2017-11-09 12:33:29 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-02-09 12:50:00 obsr706483 S21746182 Traveling P22 EBIRD 40.0 4.828 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS323943267 2018-02-01 15:11:46 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor11 L3513953 H 42.5527608 -76.0336385 2015-05-30 07:56:00 obsr2173269 S23704659 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300452849 2021-04-28 05:22:52.046239 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 50 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-03-01 07:00:00 obsr2233143 S22138790 Area P23 EBIRD 300.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295872336 2021-04-01 11:24:19.637193 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 3 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-02-09 11:00:00 obsr1782363 S21750997 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292918532 2021-03-26 07:30:35.289997 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Van Ostrand Road L3313874 P 42.54056 -76.4672899 2015-01-24 10:00:00 obsr2724574 S21517027 Stationary P21 EBIRD 5.0 4.0 1 G1121043 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313485327 2021-03-23 17:00:13.087107 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 35 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-04-26 15:20:00 obsr2724574 S23089956 Stationary P21 EBIRD 25.0 4.0 1 G1239384 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310894644 2021-04-01 12:18:57.910168 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-04-18 10:55:00 obsr2001485 S22922954 Traveling P22 EBIRD 73.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302603014 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-03-06 10:00:00 obsr2759466 S22309982 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307206271 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-03 09:30:00 obsr2207991 S22662644 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308652575 2017-08-16 17:01:08 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA--Kellogg and Sixty area L1542200 H 43.19662 -76.3229585 2015-04-09 09:51:00 obsr2700277 S22768543 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314957624 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 09:00:00 obsr2883698 S23180099 Traveling P22 EBIRD 160.0 4.023 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318557959 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-11 07:45:00 obsr1731572 S23381244 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303793553 2021-03-19 16:19:20.977326 6029 species avibase-D4A73324 Solitary Sandpiper Tringa solitaria N 64 United States US New York US-NY Erie US-NY-029 13.0 Delaware Park--Rumsey Woods L1348448 H 42.9307931 -78.8698229 2015-03-17 16:55:00 obsr2597186 S22403043 Traveling P22 EBIRD 20.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303095133 2021-03-26 07:20:31.408164 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Suffolk US-NY-103 30.0 Springs (40 Hog Creek Lane) [ACW] L994020 P 41.0478128 -72.1558146 2015-03-14 10:30:00 obsr598381 S22348022 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317804980 2021-03-30 19:39:10.250398 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-05-08 17:00:00 obsr547602 S23340594 Traveling P22 EBIRD 180.0 6.437 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322937126 2021-03-24 20:53:39.352228 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-05-25 18:48:00 obsr2270510 S23635889 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307665204 2021-03-26 08:09:53.772059 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 3 United States US New York US-NY Rensselaer US-NY-083 13.0 Coopers Pond, Brunswick L1008485 H 42.7363667 -73.6531746 2015-04-05 09:34:00 obsr2211210 S22695233 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312783460 2021-03-24 20:33:47.533911 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Nate's Patch--Bluegrass to Hanshaw to Freese L1006570 P 42.4655757 -76.4526987 2015-04-25 09:41:00 obsr1062070 S23047174 Traveling P22 EBIRD 158.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319755307 2018-08-06 22:29:33 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Delaware US-NY-025 28.0 Treadwell L676581 P 42.3407827 -75.0592804 2015-05-10 08:00:00 obsr2200827 S23450295 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299000453 2021-03-26 06:55:00.227271 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N 3 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-02-22 12:13:00 obsr606693 S22024228 Traveling P22 EBIRD 14.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317470229 2017-06-27 14:02:44 456 species avibase-D201EB72 American Wigeon Mareca americana 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Burger Park L390594 H 43.3099074 -77.7326596 2015-05-09 10:14:00 obsr934639 S23321923 Traveling P22 EBIRD 31.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311315282 2021-03-30 19:29:33.633096 26890 species avibase-94A44032 European Starling Sturnus vulgaris 12 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-19 09:15:00 obsr2534001 S22948717 Traveling P22 EBIRD 75.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324207855 2015-06-03 13:20:55 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Cheney Rd. Marsh L745263 H 42.1287048 -79.4474924 2015-05-31 07:25:00 obsr1092576 S23721166 Traveling P22 EBIRD 19.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291641326 2021-04-01 12:32:15.282601 6616 species avibase-7E022378 Common Loon Gavia immer 35 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-18 07:30:00 obsr1327990 S21396592 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296265694 2015-02-12 13:21:57 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 20 United States US New York US-NY Madison US-NY-053 28.0 Private Residence - bird feeders L1815034 P 42.7942356 -75.8091572 2015-02-11 07:45:00 obsr2589278 S21782260 Traveling P22 EBIRD 60.0 0.016 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291038224 2022-02-17 14:32:23.002448 6580 species avibase-88AB027C Black Skimmer Rynchops niger 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-14 14:30:00 obsr2448957 S21347841 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298488569 2021-03-30 19:22:51.561415 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Queens US-NY-081 30.0 Brookville Park L2687495 H 40.6629513 -73.7429361 2015-02-19 16:00:00 obsr1488063 S21981519 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310568653 2016-10-11 17:02:01 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 175 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip C L3559792 P 40.186003 -73.417567 2015-04-11 09:00:00 obsr870166 S22901504 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221331 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302141963 2021-03-30 19:28:38.115458 6616 species avibase-7E022378 Common Loon Gavia immer X United States US New York US-NY Seneca US-NY-099 US-NY_764 13.0 NY:SEN:Ovid: CR-153 - Sheldrake Pt - Wyers Pt Rd: all lakefront L2514527 P 42.6638424 -76.6950417 2015-03-08 15:52:00 obsr2760150 S22267014 Traveling P22 EBIRD 71.0 6.26 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288753597 2021-03-26 07:46:52.994574 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N X United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-01-03 12:39:00 obsr1154 S21163284 Traveling P22 EBIRD 83.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308219734 2018-08-26 20:15:15 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Tompkins US-NY-109 28.0 Thomas Rd., south (Six Mile Creek ponds & marsh) L388439 H 42.4020377 -76.3778114 2015-04-07 09:45:00 obsr1655171 S22735928 Traveling P22 EBIRD 11.0 3.54 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316762114 2021-03-26 06:53:58.593564 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 2 United States US New York US-NY Oneida US-NY-065 13.0 Whitestown L210157 P 43.17351 -75.4187135 2015-04-30 obsr1384380 S23281732 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296838914 2021-04-01 11:54:40.172593 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-02-14 09:07:00 obsr1032565 S21834805 Traveling P22 EBIRD 136.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323362775 2021-04-01 12:29:50.209479 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Fulton US-NY-035 13.0 Dolgeville - East L619350 P 43.0989461 -74.7668982 2015-05-27 08:00:00 obsr1000124 S23663599 Traveling P22 EBIRD 116.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288167274 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 250 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-01 09:00:00 obsr454647 S21114787 Traveling P22 EBIRD 200.0 3.219 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316462265 2018-08-04 17:14:59 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-06 08:56:00 obsr1201479 S23264392 Traveling P22 EBIRD 147.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303870237 2021-11-09 20:57:57.514297 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Rockland US-NY-087 30.0 Ferdon Feeder L1854891 P 41.0292909 -73.9245819 2015-03-18 10:30:00 obsr1009338 S22408962 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302922980 2021-03-30 19:29:33.633096 483 species avibase-85625D75 Mallard Anas platyrhynchos 18 United States US New York US-NY Suffolk US-NY-103 30.0 Mill Dam Park, Halesite L3577414 H 40.8856084 -73.4231741 2015-03-13 18:00:00 obsr1488063 S22334120 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311713449 2021-03-24 20:11:57.676649 242 species avibase-D3A260BC Snow Goose Anser caerulescens N 10 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-20 08:18:00 obsr2744341 S22975055 Traveling P22 EBIRD 642.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288457499 2015-01-02 11:48:19 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Tompkins US-NY-109 13.0 Lake van Leer (private) L524497 P 42.5196241 -76.6454744 2015-01-02 11:37:00 obsr1008519 S21138947 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320119621 2018-08-06 22:30:09 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Monroe US-NY-055 13.0 Durand-Eastman Park--Horseshoe Rd. L1167931 H 43.2369181 -77.564064 2015-05-16 09:47:00 obsr1124114 S23470167 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322994286 2018-08-06 22:30:58 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Allegany US-NY-003 28.0 Fulmer Valley Rd L3673546 P 42.0949977 -77.8441 2015-05-23 16:15:00 obsr2700440 S23639509 Traveling P22 EBIRD 65.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324373352 2021-03-26 06:39:43.334073 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-05-31 09:30:00 obsr1102914 S23732117 Traveling P22 EBIRD 180.0 2.414 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308539796 2018-08-04 17:08:07 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditchbank Auto tour L1001436 P 43.1068108 -75.7973814 2015-04-08 13:40:00 obsr2716320 S22760253 Traveling P22 EBIRD 25.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300068706 2021-03-26 07:07:10.758746 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris 1 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-28 11:14:00 obsr1893950 S22108970 Traveling P22 EBIRD 8.0 0.483 2.0 1 G1161949 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS306104259 2021-04-01 11:15:31.646886 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-29 14:00:00 obsr2519357 S22579212 Traveling P22 EBIRD 166.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS458793393 2021-05-21 00:06:20.034424 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Richmond US-NY-085 Mt. Loretto Unique Area L293510 H 40.5072899 -74.2180324 2015-03-21 17:00:00 obsr189984 S33797458 Traveling P22 EBIRD 60.0 1.609 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319420285 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L3640607 P 40.6155949 -73.8359737 2015-05-12 07:51:00 obsr2363365 S23430781 Traveling P22 EBIRD 190.0 4.023 4.0 1 G1269800 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308347764 2021-03-26 07:00:33.333856 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L526565 P 40.7469969 -73.7436676 2015-04-03 09:30:00 obsr2233270 S22745401 Traveling P22 EBIRD 170.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293110429 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-01-25 10:25:00 obsr41879 S21531974 Stationary P21 EBIRD 15.0 3.0 1 G1122483 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309511873 2021-04-01 12:45:19.712958 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve--Fergusons Lake Trail L2930491 H 41.1003343 -73.8233849 2015-04-12 14:30:00 obsr547602 S22827246 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312208266 2021-11-15 03:06:58.889978 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-22 08:32:00 obsr1548221 S23007524 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319569931 2021-03-30 19:13:38.458673 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Monroe US-NY-055 13.0 Seneca Park L836388 H 43.2101643 -77.623546 2015-05-14 11:40:00 obsr1545618 S23439523 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324223477 2018-08-06 22:31:32 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Broome US-NY-007 28.0 Foley Rd. L2164136 H 42.0452135 -75.9670258 2015-05-31 08:15:00 obsr1830659 S23722080 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322342820 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 35 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:20:00 obsr812739 S23600570 Traveling P22 EBIRD 462.0 8.047 3.0 1 G1259290 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306170617 2021-11-09 20:40:19.719779 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Putnam US-NY-079 28.0 Mahopac Yard L2129075 P 41.3747476 -73.7182617 2015-03-29 14:00:00 obsr1430256 S22584259 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310380415 2018-08-04 17:05:08 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Onondaga US-NY-067 13.0 Fikes Rd L2863493 P 43.0393479 -76.4017045 2015-04-02 19:00:00 obsr2223307 S22888223 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292918650 2021-04-01 12:18:57.910168 5664 species avibase-27903EF7 Black-bellied Plover Pluvialis squatarola 2 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-24 10:50:00 obsr881968 S21517039 Traveling P22 EBIRD 60.0 0.805 4.0 1 G1121045 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS428039534 2021-11-09 22:22:48.697021 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Ulster US-NY-111 13.0 Ulster Park L852495 T 41.85589 -73.97708 2015-04-12 11:05:00 obsr511710 S31448197 Traveling P22 EBIRD 120.0 1.287 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292182987 2021-03-23 16:52:36.900075 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Rd., Tiana Beach L821838 H 40.8307941 -72.5177908 2015-01-20 14:30:00 obsr547602 S21438389 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308371801 2021-03-23 17:14:01.933181 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 29 United States US New York US-NY Washington US-NY-115 13.0 Towpath Rd., Kingsbury L1527296 H 43.3054212 -73.5459734 2015-04-06 17:54:00 obsr1731061 S22747151 Traveling P22 EBIRD 78.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303619829 2015-03-16 22:38:44 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Green Island--Hudson&Tibbitts L3294938 P 42.7492098 -73.6883926 2015-03-16 11:00:00 obsr2186523 S22389483 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305095470 2022-02-17 14:32:23.002448 27616 species avibase-D77E4B41 American Robin Turdus migratorius 150 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-24 13:15:00 obsr1605975 S22502588 Traveling P22 EBIRD 95.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312142235 2021-04-01 12:32:15.282601 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-22 13:30:00 obsr1489009 S23002859 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314666366 2021-04-01 12:32:15.282601 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-01 08:00:00 obsr2505956 S23163309 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310674912 2021-04-01 11:54:40.172593 483 species avibase-85625D75 Mallard Anas platyrhynchos N 8 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-17 14:15:00 obsr1958124 S22908442 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307447483 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-04-03 07:15:00 obsr2449897 S22680195 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332449004 2021-04-01 11:24:19.637193 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-04-18 17:02:00 obsr334398 S24315920 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311177395 2021-04-01 10:53:25.818871 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Homer-6134-6370 US-11 L3574842 P 42.707889 -76.142146 2015-04-19 09:54:00 obsr2683805 S22940399 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS732539661 2021-04-01 10:55:39.308231 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 6 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-04-13 13:30:00 obsr1379161 S54471070 Traveling P22 EBIRD 120.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317568345 2021-04-01 11:15:31.646886 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:45:00 obsr2883698 S23328048 Traveling P22 EBIRD 330.0 4.023 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306062339 2021-03-26 06:55:00.227271 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Ontario US-NY-069 13.0 US-NY-ONT Manchester--State St. - PRIVATE (3175A) [Clifton Springs_NW] L2963561 P 42.9683681 -77.2376284 2015-03-29 13:36:00 obsr606693 S22575943 Traveling P22 EBIRD 16.0 0.225 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291659910 2021-04-01 12:18:57.910168 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Tompkins US-NY-109 13.0 Black Diamond Trail, Ithaca (southern end) L3300863 H 42.4524707 -76.517061 2015-01-18 12:23:00 obsr1655171 S21398209 Traveling P22 EBIRD 31.0 0.966 2.0 1 G1116208 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304316536 2018-08-04 17:01:57 662 species avibase-FB738385 Bufflehead Bucephala albeola 22 United States US New York US-NY Saratoga US-NY-091 13.0 Champlain Canal Lock 2 (Saratoga Co.) L2702022 H 42.874769 -73.6786079 2015-03-19 10:45:00 obsr648176 S22443775 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294031026 2021-03-01 11:20:54.007808 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-01-30 16:50:00 obsr1092576 S21605001 Traveling P22 EBIRD 13.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312299419 2021-04-01 11:54:40.172593 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-23 09:00:00 obsr1620361 S23013475 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS329002351 2021-03-26 06:21:54.883933 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 3 Male, Adult (3) United States US New York US-NY Kings US-NY-047 30.0 Home L468661 P 40.6361565 -73.9647943 2015-04-09 08:00:00 obsr1666581 S24063068 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297987085 2021-04-01 10:55:39.308231 5155 species avibase-4880DC55 Virginia Rail Rallus limicola 270 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Black Rock Canal Park L2060914 H 42.9454907 -78.9093792 2015-02-17 11:31:00 obsr502830 S21938131 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304006097 2015-03-19 09:22:28 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin L195377 T 42.03428 -75.80383 2015-03-19 09:00:00 obsr1337486 S22419316 Stationary P21 EBIRD 21.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369674649 2021-03-26 07:56:20.588749 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Nassau US-NY-059 Garvies Point Preserve L1770439 H 40.8600466 -73.6510118 2015-05-06 09:30:00 obsr1815722 S27204918 Traveling P22 EBIRD 120.0 1.609 12.0 1 G1254776 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309128444 2018-08-04 17:08:33 11371 species avibase-75600969 Northern Flicker Colaptes auratus X United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake - Inlet L723215 P 42.7139754 -77.7105045 2015-04-11 13:02:00 obsr72341 S22802611 Traveling P22 EBIRD 65.0 7.242 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315676237 2021-11-09 18:46:59.428056 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup East L3609979 P 41.911736 -73.660179 2015-05-03 08:14:00 obsr1442681 S23219315 Traveling P22 EBIRD 125.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302429902 2015-03-11 10:46:37 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-03-10 07:00:00 obsr2918150 S22296416 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292933479 2021-04-01 12:32:15.282601 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-24 10:30:00 obsr547602 S21518040 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307680492 2021-11-03 18:05:42.061523 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Suffolk US-NY-103 30.0 Fire Island--Lighthouse & Trails L1247206 H 40.6316712 -73.219918 2015-04-04 14:05:00 obsr322974 S22696263 Traveling P22 EBIRD 100.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309678617 2021-03-26 07:07:10.758746 33216 species avibase-1F09CCCC Wilson's Warbler Cardellina pusilla 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-04-13 09:48:00 obsr1958124 S22839048 Traveling P22 EBIRD 3.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305670770 2019-07-23 17:28:08 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-27 08:00:00 obsr341762 S22547206 Traveling P22 EBIRD 60.0 0.241 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300230690 2021-03-26 07:00:33.333856 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-02-28 08:42:00 obsr1407710 S22122506 Traveling P22 EBIRD 109.0 3.0 13.0 1 G1162161 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299815584 2020-09-05 16:22:26 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-02-21 11:30:00 obsr2409011 S22089287 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321423426 2018-08-06 22:30:35 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Watts Flats WMA L490893 H 42.0350422 -79.4263016 2015-05-20 05:23:00 obsr2910282 S23544574 Traveling P22 EBIRD 95.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314933172 2021-04-01 10:53:25.818871 242 species avibase-D3A260BC Snow Goose Anser caerulescens 2 United States US New York US-NY Cortland US-NY-023 28.0 AviCor1 L3513941 H 42.6076737 -75.8867458 2015-05-02 11:42:00 obsr620377 S23178849 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321639106 2018-08-04 17:28:09 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 16 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-21 06:17:00 obsr2321296 S23557775 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323512338 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Monroe US-NY-055 13.0 Shil's Backyard L242296 P 43.2591667 -77.6480556 2015-05-28 07:00:00 obsr991026 S23674014 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305414898 2021-03-30 19:13:38.458673 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-26 09:40:00 obsr2504709 S22527337 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293907140 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 11 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-01-29 08:00:00 obsr1160328 S21595195 Area P23 EBIRD 120.0 30.3514 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288777665 2021-11-09 17:47:17.381431 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Dutchess US-NY-027 13.0 * Ring Road, Salt Point, NY L1084767 P 41.7968319 -73.8318479 2015-01-02 09:00:00 obsr763723 S21165250 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324194615 2021-04-01 11:15:31.646886 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-31 07:51:00 obsr334398 S23720323 Traveling P22 EBIRD 286.0 0.805 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314157306 2021-03-26 07:46:52.994574 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-04-29 16:00:00 obsr2321296 S23131927 Stationary P21 EBIRD 192.0 2.0 1 G1250009 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310337305 2016-10-11 17:02:02 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 15 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip C L3559792 P 40.186003 -73.417567 2015-04-11 09:00:00 obsr2883074 S22885211 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221331 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308204457 2021-04-01 12:18:57.910168 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 10 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-07 07:20:00 obsr1696616 S22734684 Traveling P22 EBIRD 67.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311610371 2015-05-13 20:19:57 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 3 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-04-20 11:40:00 obsr2224244 S22967857 Traveling P22 EBIRD 77.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307593460 2022-02-04 06:14:13.892644 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-04-04 08:40:00 obsr599682 S22690342 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303133472 2021-04-01 11:58:54.966271 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-03-14 07:34:00 obsr2211750 S22351011 Stationary P21 EBIRD 190.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313994253 2020-01-16 17:01:29 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 1 United States US New York US-NY Oneida US-NY-065 14.0 * Marsh-Babcock Rd. (Patch) L1181751 P 43.3120015 -75.8179808 2015-04-29 07:09:00 obsr666964 S23122187 Incidental P20 EBIRD 2.0 0 G1242290 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291934309 2021-03-26 07:07:10.758746 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 4 United States US New York US-NY Richmond US-NY-085 US-NY_818 30.0 Old Place Creek--Western Ave. L890084 H 40.6293718 -74.1866482 2015-01-19 11:44:00 obsr1893950 S21418786 Traveling P22 EBIRD 4.0 0.322 3.0 1 G1115744 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291466769 2015-01-17 21:06:46 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 50 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Road - Traveling L3298064 P 40.8252888 -72.5390339 2015-01-17 07:45:00 obsr2406624 S21382763 Traveling P22 EBIRD 90.0 8.047 2.0 1 G1112053 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316155357 2015-05-05 15:53:18 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Erie US-NY-029 13.0 Green Acres L500059 P 43.013183 -78.8305092 2015-05-05 14:00:00 obsr1831158 S23246089 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299455522 2015-02-24 21:05:29 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Livingston US-NY-051 13.0 Route 63-Geneseo L1004523 P 42.7926294 -77.8172779 2015-02-24 08:58:00 obsr72341 S22061201 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293788397 2015-01-28 22:31:25 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Montgomery US-NY-057 13.0 US-NY-Sprakers - 42.9047x-74.4573 - Jan 28, 2015, 10:30 PM L3324905 P 42.904744 -74.457268 2015-01-28 14:30:00 obsr1181085 S21585534 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310108083 2021-11-09 21:41:38.795423 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-04-14 06:00:00 obsr1588136 S22869656 Stationary P21 EBIRD 660.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303793766 2015-03-17 22:29:34 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-03-01 08:30:00 obsr2694889 S22403066 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302936089 2021-12-10 08:21:29.396662 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-13 17:45:00 obsr258431 S22333244 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320736687 2021-03-26 06:29:56.44369 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-17 06:30:00 obsr2449897 S23502367 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317300690 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 06:26:00 obsr870166 S23311617 Traveling P22 EBIRD 235.0 5.954 3.0 1 G1735846 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310599759 2021-11-09 21:35:18.646328 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula X United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-16 06:30:00 obsr1110743 S22903650 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293718574 2018-08-04 16:55:21 11494 species avibase-20C2214E American Kestrel Falco sparverius 2 United States US New York US-NY Westchester US-NY-119 28.0 Steamboat Riverfront Park, Verplanck L2608460 H 41.2498799 -73.9654233 2015-01-28 09:00:00 obsr2078798 S21579938 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315794525 2021-04-01 12:32:15.282601 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 24 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-04 08:15:00 obsr647628 S23225661 Traveling P22 EBIRD 210.0 10.461 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307124917 2021-03-26 07:17:57.136956 5770 species avibase-95E28A57 Semipalmated Plover Charadrius semipalmatus 10 United States US New York US-NY Seneca US-NY-099 13.0 Wyers Point and Wyers Point Rd. L285461 H 42.6736408 -76.7156979 2015-04-01 18:30:00 obsr835300 S22657046 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312955668 2018-08-04 17:12:17 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-25 17:35:00 obsr2855945 S23057336 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296879544 2021-03-26 06:39:43.334073 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus N 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-02-14 11:45:00 obsr2796494 S21838383 Traveling P22 EBIRD 40.0 0.161 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304076621 2021-04-01 11:30:42.037277 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-19 12:20:00 obsr2105033 S22425136 Traveling P22 EBIRD 165.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314628133 2021-04-01 11:30:42.037277 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-01 09:30:00 obsr2319444 S23161123 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296857467 2021-04-01 11:24:19.637193 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-02-14 08:15:00 obsr1782363 S21836456 Stationary P21 EBIRD 480.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291035085 2015-10-06 07:29:55 337 species avibase-694C127A Mute Swan Cygnus olor 4 United States US New York US-NY Madison US-NY-053 28.0 Mason Hill, Hamilton, NY L2591505 P 42.8259191 -75.5196977 2015-01-14 12:30:00 obsr2843748 S21347553 Traveling P22 EBIRD 150.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305102631 2021-03-30 19:03:54.667077 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-24 11:15:00 obsr479109 S22503115 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292549989 2021-04-01 11:15:31.646886 7103 spuh avibase-528F0652 cormorant sp. Phalacrocoracidae sp. 4 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-01-21 15:05:00 obsr1488063 S21487927 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314161484 2018-08-04 17:12:34 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-28 07:02:00 obsr1165633 S23132189 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307151146 2021-11-20 09:30:27.481745 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake, end of Creekwalk L1331492 H 43.0680178 -76.1778662 2015-04-03 08:30:00 obsr660214 S22658918 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301342477 2021-03-26 08:09:29.707251 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Otsego US-NY-077 28.0 5954 Cord 18 L2228745 P 42.78321 -75.248564 2015-02-15 13:30:00 obsr1311461 S22205720 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314269139 2021-11-09 18:33:58.039151 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Dutchess US-NY-027 13.0 Cobb Ridge L2517475 P 42.0382655 -73.8797092 2015-04-30 05:30:00 obsr671490 S23139091 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307263649 2021-04-01 11:24:19.637193 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens N 3 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-04-03 18:33:00 obsr1545618 S22666746 Traveling P22 EBIRD 41.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312190443 2021-11-09 21:10:22.93363 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Rockland US-NY-087 30.0 Hamlets L3583566 P 41.1175692 -74.0226227 2015-04-22 06:00:00 obsr218870 S23006286 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291982212 2021-03-26 06:29:56.44369 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Rush-390 Jeffords Rd L3304548 P 43.009923 -77.621515 2015-01-19 12:00:00 obsr2744341 S21422717 Stationary P21 EBIRD 100.0 2.0 1 G1116089 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307657898 2021-03-23 17:00:13.087107 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom31 L3513973 H 42.4442101 -76.280451 2015-04-05 09:29:00 obsr620377 S22694752 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319422959 2021-04-01 10:57:06.520339 668 species avibase-9456DEDF Barrow's Goldeneye Bucephala islandica 1 United States US New York US-NY Essex US-NY-031 13.0 fairgrounds L3641536 P 44.187672 -73.450562 2015-05-09 09:10:00 obsr2420101 S23430948 Traveling P22 EBIRD 131.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306337002 2021-11-09 21:36:59.310849 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 2 United States US New York US-NY Ulster US-NY-111 13.0 rosendale, ny L1465355 P 41.8499692 -74.081765 2015-03-30 10:15:00 obsr187701 S22596830 Traveling P22 EBIRD 260.0 41.843 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307738530 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-05 09:00:00 obsr2319444 S22700332 Traveling P22 EBIRD 180.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309514501 2021-11-09 17:58:40.313796 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-04-12 09:00:00 obsr2700041 S22827403 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320924512 2021-12-24 11:02:14.483178 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-16 08:35:00 obsr1962295 S23513565 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391310 2021-03-30 19:29:33.633096 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 150 United States US New York US-NY Suffolk US-NY-103 US-NY_780 30.0 USFWS_602 Wertheim NWR--North Side L552085 H 40.794489 -72.8855968 2015-01-11 07:15:00 obsr1327990 S21295836 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293080343 2018-08-04 16:55:11 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Seneca US-NY-099 13.0 Poplar Beach Rd. L375246 H 42.7252813 -76.7602735 2015-01-25 07:38:00 obsr749440 S21529347 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312888040 2021-11-15 03:06:58.889978 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-25 12:00:00 obsr1762613 S23053320 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288446017 2021-04-01 11:15:31.646886 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-01 09:40:00 obsr986025 S21137865 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291508636 2021-03-30 19:29:33.633096 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Orowoc Lake, Islip L1864121 H 40.7292598 -73.2249385 2015-01-17 13:18:00 obsr1848026 S21386121 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323458857 2021-03-26 06:29:56.44369 592 species avibase-3072CC16 Redhead Aythya americana 5 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-05-27 15:10:00 obsr934639 S23670452 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288630137 2021-03-24 19:27:13.077399 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 10 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-02 09:35:00 obsr1334267 S21153546 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306128370 2021-03-23 17:26:08.495143 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 5 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-29 07:45:00 obsr1160328 S22581056 Area P23 EBIRD 45.0 6.0703 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295573374 2021-03-30 06:01:28.020715 27616 species avibase-D77E4B41 American Robin Turdus migratorius 15 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-08 14:05:00 obsr1092576 S21727877 Stationary P21 EBIRD 20.0 3.0 1 G1139160 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001787 2021-03-30 19:39:10.250398 622 species avibase-50566E50 Lesser Scaup Aythya affinis 4 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-30 09:00:00 obsr2218212 S23775946 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310597136 2021-03-19 16:10:30.527219 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Chemung US-NY-015 28.0 Bottchers Landing L143559 H 42.1246158 -76.951613 2015-04-17 07:29:00 obsr2871406 S22903470 Traveling P22 EBIRD 7.0 0.322 3.0 1 G1222628 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307175436 2021-11-09 00:38:34.069905 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 40 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-03-30 08:30:00 obsr2133003 S22660566 Traveling P22 EBIRD 150.0 2.414 9.0 1 G1202639 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319282414 2021-11-15 03:06:58.889978 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-13 09:00:00 obsr1175815 S23422925 Traveling P22 EBIRD 180.0 2.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319261868 2021-03-26 07:53:57.664705 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Livingston US-NY-051 13.0 Groveland, NY L2623278 P 42.7113986 -77.7185619 2015-05-09 06:40:00 obsr1743566 S23421788 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309469903 2021-03-30 19:29:33.633096 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Nissequogue River SP L501705 H 40.9004069 -73.2310757 2015-04-12 11:00:00 obsr1848026 S22824244 Traveling P22 EBIRD 86.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291509445 2022-01-25 11:01:55.389129 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Yanty Creek Marsh L139805 H 43.3576374 -77.9375696 2015-01-17 15:27:00 obsr1545618 S21386191 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000923 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-15 09:00:00 obsr2218212 S23775921 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298654107 2018-08-04 16:57:28 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-20 15:30:00 obsr324569 S21995452 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309021027 2021-03-23 17:32:20.03109 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Onondaga US-NY-067 13.0 Home, Thatchwood Dr., Manlius L1789277 P 43.008956 -76.0102533 2015-04-10 10:20:00 obsr724731 S22795922 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310213006 2015-04-15 13:29:31 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias X United States US New York US-NY Essex US-NY-031 13.0 Cole Bay L491060 H 44.1442144 -73.4214163 2015-04-15 12:52:00 obsr2769235 S22876740 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324385920 2021-03-30 19:29:33.633096 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-30 07:40:00 obsr1137265 S23732938 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314861911 2015-05-02 18:14:17 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Cayuga US-NY-011 13.0 Rt. 90 ravine, Locke L2949663 H 42.6466733 -76.4561909 2015-05-02 06:48:00 obsr1655171 S23175247 Traveling P22 EBIRD 2.0 0.322 2.0 1 G1247588 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319809169 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-15 08:57:00 obsr1201479 S23453304 Traveling P22 EBIRD 131.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307814324 2019-10-24 20:10:38 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2800 Napeague Harbor L283128 H 41.0084776 -72.0499114 2015-04-05 12:15:00 obsr150865 S22705770 Traveling P22 EBIRD 60.0 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319599153 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 10:00:00 obsr2387618 S23441129 Traveling P22 EBIRD 240.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323511089 2021-04-01 11:15:31.646886 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 09:48:00 obsr1982614 S23673930 Traveling P22 EBIRD 180.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307853081 2021-11-15 03:06:58.889978 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-05 11:54:00 obsr1548221 S22708541 Traveling P22 EBIRD 38.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295773238 2021-03-26 07:56:20.588749 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-02-09 07:10:00 obsr676630 S21742986 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288908578 2021-03-26 07:56:20.588749 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 3 United States US New York US-NY Nassau US-NY-059 30.0 US-NY-Hewlett-2-60 Thixton Dr L1854510 P 40.63087 -73.677011 2015-01-03 08:10:00 obsr1220115 S21177884 Stationary P21 EBIRD 20.0 4.0 1 G1094308 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308632554 2020-07-20 09:16:51 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 6 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-09 08:03:00 obsr2224244 S22767088 Traveling P22 EBIRD 46.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304902481 2021-04-01 12:39:55.985714 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 3 United States US New York US-NY Rensselaer US-NY-083 13.0 US-NY-Castleton-on-Hudson-901 Western Rd L3508922 P 42.5439 -73.734888 2015-03-23 09:32:00 obsr2321296 S22483317 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313634869 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-27 17:20:00 obsr1135516 S23099160 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313787181 2021-03-26 07:07:10.758746 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 10 United States US New York US-NY Richmond US-NY-085 30.0 Tottenville High School L884731 P 40.5282185 -74.1924763 2015-04-28 09:20:00 obsr1958124 S23108913 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299970846 2021-03-26 07:30:35.289997 8157 spuh avibase-E91E7830 Buteo sp. Buteo sp. 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-02-27 08:00:00 obsr2137468 S22100961 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307310988 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 H C2 H United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-03 13:23:00 obsr924076 S22670270 Traveling P22 EBIRD 380.0 6.437 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS300642782 2021-03-26 07:00:33.333856 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-02-28 08:42:00 obsr1481512 S22152307 Traveling P22 EBIRD 109.0 3.0 13.0 1 G1162161 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309464479 2021-04-01 12:32:15.282601 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-12 10:15:00 obsr2505956 S22823913 Rusty Blackbird Spring Migration Blitz P41 EBIRD 150.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311532519 2021-12-28 15:50:27.785498 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-20 09:36:00 obsr606693 S22962196 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288164572 2021-04-01 11:15:31.646886 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 250 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-01 09:00:00 obsr1711339 S21114593 Traveling P22 EBIRD 223.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304646845 2021-03-26 07:30:35.289997 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Libe Slope L1483567 H 42.44786 -76.48595 2015-03-16 15:59:00 obsr1895507 S22468007 Stationary P21 EBIRD 120.0 4.0 1 G1188369 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309377068 2022-03-05 22:03:50.715584 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-12 08:00:00 obsr2219590 S22818792 Traveling P22 EBIRD 210.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306197800 2022-02-17 14:32:23.002448 6339 species avibase-8535345B Herring Gull Larus argentatus 20 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-26 15:00:00 obsr1055148 S22586412 Stationary P21 EBIRD 20.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135306 2021-03-26 07:56:20.588749 32955 species avibase-41062654 Northern Parula Setophaga americana N 8 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-26 16:00:00 obsr2218212 S23589162 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309373082 2021-03-26 08:12:51.35913 20829 species avibase-B9B272F4 Common Raven Corvus corax 500 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-04-12 11:52:00 obsr2937317 S22818544 Traveling P22 EBIRD 31.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295061775 2018-08-04 16:55:43 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-02-05 16:37:00 obsr502830 S21688509 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204299 2015-01-25 17:59:01 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Nassau US-NY-059 30.0 The Links, North Hills L1413680 P 40.7637038 -73.6753561 2015-01-25 16:15:00 obsr1760429 S21539305 Stationary P21 EBIRD 43.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302640882 2021-04-01 11:42:50.317679 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea N 7 United States US New York US-NY Oneida US-NY-065 13.0 Utica Marina L990931 P 43.1116044 -75.2154386 2015-03-11 16:35:00 obsr2694889 S22312841 Traveling P22 EBIRD 11.0 0.322 4.0 1 G1176465 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306244871 2021-03-23 17:00:13.087107 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-03-29 17:00:00 obsr455249 S22589848 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311162822 2021-03-23 16:21:52.613913 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-04-19 07:12:00 obsr606693 S22939350 Traveling P22 EBIRD 17.0 0.628 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317350451 2021-09-19 18:57:52.903665 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY New York US-NY-061 30.0 Morningside Park, Manhattan L1799559 H 40.8067376 -73.9580993 2015-05-07 08:30:00 obsr1706920 S23314427 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296212358 2021-11-09 21:57:08.685532 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Ulster US-NY-111 28.0 Old Fort Rd; Gyr spot L3354451 P 41.6324769 -74.2318726 2015-02-11 11:25:00 obsr1666249 S21777889 Stationary P21 EBIRD 350.0 2.0 0 G1143578 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303655674 2021-04-01 12:32:15.282601 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Nassau US-NY-059 30.0 New Hyde Park Yard: Nassau County L2082174 P 40.7269986 -73.6824596 2015-03-08 obsr407134 S22392208 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304738059 2021-03-24 20:49:01.185993 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Washington US-NY-115 13.0 Granville L131798 T 43.4078712 -73.259552 2015-03-22 08:00:00 obsr2196530 S22474988 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298676074 2015-04-05 23:21:53 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-02-20 07:45:00 obsr2700440 S21997247 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319915624 2021-03-26 06:21:08.096334 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Jefferson US-NY-045 US-NY_838 13.0 Redlake, Town of Theresa L2180606 P 44.2692965 -75.7421494 2015-05-15 12:26:00 obsr585290 S23458886 Traveling P22 EBIRD 180.0 46.671 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311297686 2021-03-19 16:19:20.977326 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-19 08:20:00 obsr2071643 S22947665 Traveling P22 EBIRD 245.0 2.414 3.0 1 G1226244 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS296063790 2021-03-23 16:21:52.613913 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 1 United States US New York US-NY Ontario US-NY-069 13.0 Yellow Mills Rd. near Herendeen Rd. L3352827 P 42.9901063 -77.2527695 2015-02-10 16:20:00 obsr528918 S21766271 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317026974 2021-06-25 16:16:05.676603 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 16:15:00 obsr2448957 S23296587 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301867629 2018-08-04 16:59:04 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Yates US-NY-123 13.0 Severne Road lakeview Yates County L630493 P 42.5839276 -76.9317627 2015-03-08 13:40:00 obsr195058 S22246664 Traveling P22 EBIRD 20.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313332265 2021-03-30 19:07:52.958398 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 16:00:00 obsr2476180 S23080043 Traveling P22 EBIRD 120.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322136054 2021-03-26 07:56:20.588749 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-14 16:00:00 obsr2218212 S23589188 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309691417 2021-03-30 19:29:33.633096 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-04-13 09:32:00 obsr1228860 S22839868 Traveling P22 EBIRD 76.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322430649 2021-03-24 19:48:44.880783 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-24 06:16:00 obsr1696616 S23605772 Traveling P22 EBIRD 101.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293630417 2019-11-30 19:31:24 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: Bundy Rd: E/Hopkins Rd, N side woods L3322942 P 42.4605794 -76.5443981 2015-01-27 13:43:00 obsr2760150 S21573221 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316999009 2021-04-01 11:30:42.037277 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 8 H C2 H United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 15:30:00 obsr924076 S23294982 Traveling P22 EBIRD 246.0 2.414 3.0 1 G1256574 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317638990 2021-03-26 06:17:19.712573 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 12 United States US New York US-NY Erie US-NY-029 13.0 Home L654361 P 42.81914 -78.7520599 2015-05-08 17:30:00 obsr1079517 S23331781 Stationary P21 EBIRD 105.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295394505 2021-04-01 11:15:31.646886 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-02-07 12:15:00 obsr431494 S21713592 Stationary P21 EBIRD 180.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301500241 2021-03-30 19:29:33.633096 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 22 United States US New York US-NY Suffolk US-NY-103 30.0 Springs (3 Mile Harbor Dock) [ACW] L3462084 P 41.027979 -72.181121 2015-03-07 16:55:00 obsr598381 S22217370 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313445061 2022-02-18 10:47:29.953615 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 S C2 S United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-27 08:43:00 obsr1062070 S23087592 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1287010279 2021-11-30 23:46:29.309854 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Rockland US-NY-087 US-NY_2790 28.0 Bowline Point Park L3284864 H 41.2025824 -73.9587596 2015-01-25 09:31:00 obsr2919349 S98305384 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312714349 2018-08-04 17:11:20 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature Preserve, Rexford, NY L3587945 P 42.7923775 -73.7953484 2015-04-19 18:09:00 obsr1933201 S23042780 Traveling P22 EBIRD 157.0 3.219 9.0 1 G1234676 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314407829 2021-04-01 11:15:31.646886 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 10:30:00 obsr454647 S23147204 Traveling P22 EBIRD 350.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310343270 2016-10-11 17:00:32 406 species avibase-27B2749A Wood Duck Aix sponsa 46 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip D L3559811 P 40.162933 -73.250983 2015-04-11 10:00:00 obsr152435 S22885627 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221326 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323555234 2015-05-28 13:04:31 32955 species avibase-41062654 Northern Parula Setophaga americana 1 United States US New York US-NY Erie US-NY-029 13.0 WNY Land Conservancy Office L2058573 P 42.7636185 -78.5480404 2015-05-28 10:00:00 obsr2537615 S23676364 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288861321 2018-08-04 16:52:34 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 191 United States US New York US-NY Nassau US-NY-059 30.0 Lister Park L444840 H 40.6546376 -73.6543393 2015-01-03 07:30:00 obsr1160328 S21174221 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS796994889 2022-01-30 05:47:42.955422 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 10:30:00 obsr751942 S59164813 Traveling P22 EBIRD 120.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313721586 2015-04-28 12:01:07 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Future road trail, Ithaca L1745631 H 42.473917 -76.4556491 2015-04-28 07:12:00 obsr2211210 S23104755 Traveling P22 EBIRD 9.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316810496 2021-04-01 11:24:19.637193 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Hamlin-1026-1046 County Rd 211 L3619477 P 43.350623 -77.948858 2015-05-07 07:00:00 obsr334398 S23284450 Traveling P22 EBIRD 48.0 0.451 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308755894 2021-03-23 17:00:13.087107 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-08 07:33:00 obsr2683910 S22776887 Traveling P22 EBIRD 42.0 0.966 2.0 1 G1212820 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306510268 2021-04-01 11:24:19.637193 662 species avibase-FB738385 Bufflehead Bucephala albeola 35 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-30 obsr334398 S22610545 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307348790 2021-03-23 17:22:05.708166 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-04-03 06:50:00 obsr2694889 S22673142 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292947630 2021-12-10 08:21:29.396662 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 8 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-01-24 12:00:00 obsr2796494 S21519219 Traveling P22 EBIRD 180.0 3.219 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305320766 2021-03-26 07:56:20.588749 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-25 10:00:00 obsr1494607 S22519936 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS742881997 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-04-25 16:00:00 obsr28670 S55249411 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311947041 2015-04-21 20:46:40 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 3 United States US New York US-NY Madison US-NY-053 13.0 Fairchild-Lorenzo, Cazenovia L1974651 P 42.9218713 -75.8710992 2015-04-21 15:37:00 obsr2716320 S22990217 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298050489 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 12 United States US New York US-NY Monroe US-NY-055 13.0 19 Denishire Drive L1966779 P 43.1407806 -77.7889323 2015-02-14 09:00:00 obsr1910734 S21943581 Stationary P21 EBIRD 510.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316019675 2021-03-26 06:29:56.44369 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Monroe US-NY-055 13.0 Mt. Hope Cemetery L249453 H 43.1287817 -77.6206675 2015-05-04 15:40:00 obsr2065230 S23238788 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321565284 2021-11-09 18:31:48.13381 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Dutchess US-NY-027 28.0 Nuclear Lake L225084 H 41.595318 -73.6477569 2015-05-20 07:57:00 obsr440908 S23553063 Traveling P22 EBIRD 270.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301657287 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-08 07:30:00 obsr2519357 S22229118 Traveling P22 EBIRD 180.0 1.609 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318565228 2015-05-11 11:34:56 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 6 United States US New York US-NY Jefferson US-NY-045 13.0 Eastern Parcel - Private L3615491 P 43.9955931 -76.0055208 2015-05-06 19:00:00 obsr544268 S23381631 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316730631 2021-11-15 03:06:58.889978 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 Male, Adult (3) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-06 09:21:00 obsr1548221 S23279890 Traveling P22 EBIRD 33.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313747143 2021-03-26 06:07:26.162322 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Allegany US-NY-003 28.0 Cuba Lake L1326387 H 42.2508599 -78.2923025 2015-04-25 11:08:00 obsr870166 S23106385 Traveling P22 EBIRD 29.0 8.047 3.0 1 G1240624 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290811652 2021-04-01 10:57:06.520339 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Essex US-NY-031 13.0 Alexandria Ave bridge L2589364 P 43.8362139 -73.4292054 2015-01-07 10:40:00 obsr2420101 S21329167 Traveling P22 EBIRD 14.0 0.483 2.0 1 G1108078 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306293582 2021-03-30 19:37:33.521815 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Shaker Tract Rd. L349804 H 43.2368048 -76.9583096 2015-03-30 11:53:00 obsr1721609 S22593655 Stationary P21 EBIRD 17.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296507610 2021-04-01 10:47:08.851048 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 37 United States US New York US-NY Broome US-NY-007 28.0 from my yard L2624869 P 42.1113056 -75.9594167 2015-02-13 16:10:00 obsr2001289 S21804830 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314731497 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-01 15:40:00 obsr2908667 S23167151 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318063203 2021-11-15 03:06:58.889978 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-09 16:30:00 obsr2072398 S23354752 Traveling P22 EBIRD 105.0 2.414 2.0 1 G1261888 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303064699 2021-04-01 11:42:50.317679 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 1 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-03-14 13:48:00 obsr1640315 S22345694 Stationary P21 EBIRD 70.0 1.0 1 G1179071 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314408600 2015-04-30 16:50:15 32955 species avibase-41062654 Northern Parula Setophaga americana 1 United States US New York US-NY Oswego US-NY-075 US-NY_798 14.0 Camp Zerbe L1584392 P 43.4606173 -75.9605495 2015-04-30 15:57:00 obsr1477887 S23147246 Traveling P22 EBIRD 51.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315321624 2021-03-26 06:21:54.883933 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 08:00:00 obsr1407710 S23200084 Traveling P22 EBIRD 270.0 4.828 3.0 1 G1249104 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311581785 2018-08-04 17:11:22 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 1 United States US New York US-NY Schenectady US-NY-093 13.0 Niskayuna Railroad Station at Lions Park L505923 H 42.7776374 -73.823356 2015-04-20 09:47:00 obsr2846677 S22965487 Traveling P22 EBIRD 22.0 0.161 2.0 1 G1228466 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315836517 2021-11-09 17:47:17.381431 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Dutchess US-NY-027 13.0 * Ring Road, Salt Point, NY L1084767 P 41.7968319 -73.8318479 2015-05-01 09:00:00 obsr763723 S23227896 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319191287 2021-03-23 17:22:05.708166 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-05-12 06:10:00 obsr2694889 S23417745 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290013945 2021-11-09 18:25:59.444943 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Dutchess US-NY-027 13.0 Wappinger Lake L1829902 H 41.6070847 -73.9159704 2015-01-09 12:25:00 obsr2241630 S21265010 Traveling P22 EBIRD 55.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298469928 2018-08-04 16:57:27 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 6 United States US New York US-NY Richmond US-NY-085 Saw Mill Creek Marsh L833906 H 40.6081575 -74.1885844 2015-02-19 17:10:00 obsr1958124 S21980007 Stationary P21 EBIRD 4.0 2.0 1 G1153076 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307818389 2015-04-05 19:28:45 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-04-05 18:45:00 obsr2096529 S22706057 Stationary P21 EBIRD 10.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295742217 2021-03-24 19:47:16.07498 26278 species avibase-A381417F House Wren Troglodytes aedon 2 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-02-08 08:52:00 obsr589593 S21740798 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294451532 2015-02-04 08:56:04 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Oneida US-NY-065 13.0 Poppleton Road, Durhamville, NY L3332814 P 43.16987 -75.69905 2015-02-01 17:38:00 obsr1640315 S21637906 Stationary P21 EBIRD 10.0 1.0 1 G1131981 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315790084 2021-04-01 11:30:42.037277 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 09:00:00 obsr2448505 S23225443 Traveling P22 EBIRD 300.0 6.437 2.0 1 G1251560 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322323412 2021-04-01 11:14:02.420281 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum L467369 H 44.0669903 -75.7229233 2015-05-23 07:00:00 obsr790491 S23599457 Traveling P22 EBIRD 420.0 24.14 2.0 1 G1303491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310842 2021-03-23 17:18:00.959502 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 4 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.8729471 2015-01-16 08:05:00 obsr2837502 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309790732 2017-08-16 17:03:59 11494 species avibase-20C2214E American Kestrel Falco sparverius 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Burger Park L390594 H 43.3099074 -77.7326596 2015-04-13 09:00:00 obsr1534851 S22847126 Traveling P22 EBIRD 60.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293682607 2015-11-04 14:32:56 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 5 United States US New York US-NY Niagara US-NY-063 13.0 Home L292333 P 43.3264327 -78.7740913 2015-01-28 10:10:00 obsr2756208 S21577281 Incidental P20 EBIRD 2.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS314664045 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Monroe US-NY-055 13.0 Oakmark Circle L3183126 P 43.0820381 -77.575922 2015-05-01 15:00:00 obsr2290061 S23163162 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314947500 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-02 08:00:00 obsr1693806 S23179598 Traveling P22 EBIRD 220.0 6.437 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297788286 2021-03-26 07:56:20.588749 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-02-16 15:00:00 obsr613775 S21920603 Traveling P22 EBIRD 81.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293887238 2021-03-26 07:20:31.408164 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 6 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L635183 H 40.8348529 -72.6153374 2015-01-29 09:00:00 obsr2846902 S21593757 Traveling P22 EBIRD 120.0 1.609 2.0 0 G1128390 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310209288 2021-11-15 03:06:58.889978 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 31 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-15 08:48:00 obsr1548221 S22876524 Traveling P22 EBIRD 42.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313799975 2021-03-24 19:48:44.880783 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Monroe US-NY-055 13.0 Turning Point Park L473126 H 43.2299768 -77.6170778 2015-04-28 12:00:00 obsr1545618 S23109728 Traveling P22 EBIRD 47.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314800262 2018-08-04 17:13:15 32949 species avibase-15EB3000 Hooded Warbler Setophaga citrina 3 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-01 07:54:00 obsr1334267 S23171453 Traveling P22 EBIRD 38.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311429408 2021-11-09 21:10:28.19189 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 3 United States US New York US-NY Rockland US-NY-087 US-NY_843 28.0 Iona Island L404724 H 41.3033448 -73.9778137 2015-04-18 08:15:00 obsr1932005 S22955804 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301827201 2018-12-30 09:51:06 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 40 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-08 16:40:00 obsr2321296 S22243577 Stationary P21 EBIRD 40.0 5.0 1 G1172850 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288543854 2021-11-01 23:11:19.414929 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 30 United States US New York US-NY Kings US-NY-047 Coney Island Beach & Boardwalk L845817 H 40.5719793 -73.9778996 2015-01-02 07:59:00 obsr41879 S21146388 Traveling P22 EBIRD 90.0 2.414 2.0 1 G1091366 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316007826 2021-11-09 18:27:18.873475 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Allen Road yard list, Salt Point L1943130 P 41.8350253 -73.8021156 2015-05-05 05:35:00 obsr2175245 S23238088 Traveling P22 EBIRD 96.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323290964 2021-04-01 12:32:15.282601 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 10 United States US New York US-NY Nassau US-NY-059 US-NY_786 30.0 NY - Sands Point Preserve (Long Island) L3676741 P 40.8626205 -73.6933923 2015-05-24 10:00:00 obsr858549 S23658938 Incidental P20 EBIRD_WI 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300118241 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-02-28 16:30:00 obsr2750470 S22113594 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304369220 2021-03-30 19:37:33.521815 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-03-21 09:21:00 obsr1721609 S22447779 Traveling P22 EBIRD 125.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302995588 2021-04-01 11:49:53.573686 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Queens US-NY-081 30.0 Flushing Meadows Corona Park L520701 H 40.7397975 -73.8407834 2015-03-14 07:45:00 obsr2574755 S22339991 Traveling P22 EBIRD 41.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318532690 2021-03-19 16:19:20.977326 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 9 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-11 09:00:00 obsr1079517 S23379915 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318352743 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 9 United States US New York US-NY Nassau US-NY-059 30.0 Florence Ave, Oyster Bay L3483063 P 40.8748272 -73.525089 2015-05-10 13:45:00 obsr93451 S23370044 Traveling P22 EBIRD 75.0 64.374 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313139924 2021-03-19 16:27:31.421791 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 50 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kanyoo Trail L152120 H 43.1168988 -78.430624 2015-04-26 11:38:00 obsr1092576 S23068383 Traveling P22 EBIRD 104.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307518015 2020-01-27 21:36:43 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-04 16:45:00 obsr2350357 S22684955 Traveling P22 EBIRD 30.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423247 2021-03-30 19:13:38.458673 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-18 17:48:00 obsr1846130 S24163342 Traveling P22 EBIRD 92.0 1.207 2.0 1 G1337410 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS333506968 2015-07-26 22:19:39 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Nassau US-NY-059 30.0 Cold Spring Harbor Labs L2844495 P 40.8615213 -73.4700286 2015-05-06 11:35:00 obsr2240960 S24394424 Traveling P22 EBIRD_WI 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316079594 2021-11-09 18:42:19.628792 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-05 08:30:00 obsr1917973 S23242165 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309346312 2021-03-23 16:29:02.691496 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-12 08:15:00 obsr137150 S22816952 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317683980 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 Female, Adult (1); Unknown Sex, Juvenile (3); Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 17:05:00 obsr2493447 S23334211 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315397638 2017-03-21 22:11:35 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Administration Building L813773 H 42.1003559 -78.7494099 2015-05-03 11:00:00 obsr2933610 S23204024 Traveling P22 EBIRD 60.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292113057 2015-01-20 21:04:24 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--tss office (CLO 193B) L515673 P 42.480385 -76.4511779 2015-01-20 11:52:00 obsr1062070 S21433126 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291701423 2021-03-26 06:29:56.44369 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-01-13 08:25:00 obsr1245041 S21400807 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302459852 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis N 4 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-11 10:30:00 obsr2129334 S22298578 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318136367 2021-03-19 16:19:20.977326 26278 species avibase-A381417F House Wren Troglodytes aedon 7 United States US New York US-NY Erie US-NY-029 13.0 Tillman Rd. WMA L260205 H 42.9656289 -78.6090731 2015-05-10 07:00:00 obsr2138980 S23358467 Traveling P22 EBIRD 60.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312640207 2020-05-16 18:13:14 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 Male, Adult (3) United States US New York US-NY Otsego US-NY-077 28.0 Ottaway Pond L3568681 P 42.7363566 -74.8490193 2015-04-24 15:45:00 obsr189015 S23037725 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS656930759 2021-11-09 21:31:40.219848 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-03 14:00:00 obsr934683 S48490727 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309991836 2021-04-01 12:14:19.266649 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-04-14 09:00:00 obsr706483 S22861354 Traveling P22 EBIRD 180.0 4.828 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317412138 2021-04-01 11:30:42.037277 6616 species avibase-7E022378 Common Loon Gavia immer N 20 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-03 10:35:00 obsr1513140 S23318561 Traveling P22 EBIRD 90.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320639537 2021-11-15 03:06:58.889978 11371 species avibase-75600969 Northern Flicker Colaptes auratus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 10:00:00 obsr2361317 S23497169 Traveling P22 EBIRD 150.0 3.219 2.0 1 G1257994 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309807802 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-13 09:30:00 obsr827632 S22848381 Traveling P22 EBIRD 180.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298541771 2017-11-27 07:55:42 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Bellport Dock L1652660 P 40.752338 -72.9328722 2015-02-20 09:02:00 obsr613775 S21985581 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313056021 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 07:30:00 obsr1077730 S23063512 Traveling P22 EBIRD 360.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304151390 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Cedar Hill L5197378 H 40.7770344 -73.9654146 2015-03-19 08:25:00 obsr1548221 S22430896 Traveling P22 EBIRD 9.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317402309 2021-04-01 11:15:31.646886 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-09 05:17:00 obsr2404047 S23317922 Traveling P22 EBIRD 73.0 1.609 4.0 1 G1260406 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314170625 2021-03-24 20:33:47.533911 16223 species avibase-951C150C Olive-sided Flycatcher Contopus cooperi 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-29 07:00:00 obsr1831959 S23132797 Traveling P22 EBIRD 240.0 0.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315048442 2015-05-02 18:43:44 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-05-02 13:15:00 obsr1380963 S23185234 Stationary P21 EBIRD 330.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295248118 2018-08-04 16:55:44 5948 species avibase-A47B0BD4 Least Sandpiper Calidris minutilla 7 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-02-06 15:30:00 obsr544268 S21701609 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299497903 2018-01-07 20:13:45 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-02-24 14:52:00 obsr2693145 S22064627 Stationary P21 EBIRD 40.0 2.0 1 G1159346 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316157813 2021-03-26 06:29:56.44369 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-05-05 14:53:00 obsr934639 S23246238 Traveling P22 EBIRD 66.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS863072870 2020-02-11 18:26:14 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-26 12:30:00 obsr379453 S64372841 Historical P62 EBIRD 240.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305195573 2021-03-24 20:33:47.533911 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-03-25 07:42:00 obsr455249 S22510136 Traveling P22 EBIRD 8.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307696271 2021-03-23 17:00:13.087107 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom45 L3513987 H 42.3312349 -76.5993162 2015-04-05 08:35:00 obsr1092576 S22697309 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307532895 2021-03-23 17:18:00.959502 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris 3 United States US New York US-NY Albany US-NY-001 13.0 Nott Rd. Park L5202023 P 42.68518 -73.9100504 2015-04-04 16:00:00 obsr30103 S22685936 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295998130 2021-04-01 11:30:42.037277 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-10 12:15:00 obsr1353449 S21760919 Traveling P22 EBIRD 165.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303701765 2021-03-26 07:30:35.289997 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Plantations Restaurant L592633 H 42.4667747 -76.4113913 2015-03-16 17:48:00 obsr1006348 S22395678 Stationary P21 EBIRD 55.0 3.0 1 G1183317 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309308706 2015-04-12 07:57:19 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Saratoga US-NY-091 14.0 30 Acre Woods L2268000 P 43.1003228 -73.8689804 2015-04-11 09:10:00 obsr2893884 S22814587 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309117228 2021-04-01 12:32:15.282601 636 species avibase-B77377EE Common Eider Somateria mollissima 12 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-11 07:00:00 obsr547602 S22801931 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293291183 2018-08-04 16:55:16 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Westchester US-NY-119 30.0 White Plains Reservoir No. Two and Overflow Ponds L1072831 P 41.0533369 -73.7598038 2015-01-25 15:00:00 obsr2918150 S21545885 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316726237 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 14 P C3 P United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 15:52:00 obsr924076 S23279638 Traveling P22 EBIRD 252.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308014946 2021-04-01 11:54:40.172593 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Richmond US-NY-085 US-NY_818 30.0 Goethals Bridge Pond--Goethals Homes L884458 H 40.6283428 -74.1779176 2015-04-06 13:34:00 obsr1958124 S22720174 Traveling P22 EBIRD 8.0 0.322 2.0 1 G1208438 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306999208 2015-04-02 17:23:22 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Madison US-NY-053 13.0 RT NY I-90 OCT 28 L1019737 P 43.0955667 -75.8518667 2015-04-02 17:22:00 obsr1181085 S22647652 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322966428 2021-11-09 18:49:29.473548 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA--Cruger Island Rd. L3840109 H 42.0303286 -73.9201355 2015-05-25 19:00:00 obsr671490 S23637777 Traveling P22 EBIRD 45.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304510368 2021-04-01 10:53:25.818871 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 6 United States US New York US-NY Cortland US-NY-023 28.0 West River Rd., Marathon L2107039 H 42.511969 -76.0840988 2015-03-21 10:56:00 obsr2279567 S22458111 Traveling P22 EBIRD 52.0 4.828 2.0 1 G1188123 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313750768 2021-03-23 17:39:28.36772 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-04-28 09:07:00 obsr1565981 S23106614 Traveling P22 EBIRD 62.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322673580 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 07:10:00 obsr1348614 S23619469 Traveling P22 EBIRD 600.0 4.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307978470 2021-04-01 12:14:19.266649 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-04-05 08:30:00 obsr105122 S22717880 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS355729639 2019-01-16 03:48:50 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY New York US-NY-061 30.0 Manhattan--East River L4029136 P 40.7057906 -74.0036273 2015-05-17 obsr1387984 S26016157 Incidental P20 EBIRD 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295888251 2021-11-09 22:45:20.336857 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Sullivan US-NY-105 28.0 52 Old Turnpike Rd L3139459 P 41.5616466 -74.4509125 2015-02-07 08:00:00 obsr890053 S21752355 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299564147 2021-04-01 12:32:15.282601 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 6 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-25 13:00:00 obsr676630 S22069833 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315320669 2018-08-04 17:13:57 23383 species avibase-F5C181CA Cliff Swallow Petrochelidon pyrrhonota 2 Male, Unknown Age (1); Female, Unknown Age (1) United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-01 15:00:00 obsr2729089 S23200029 Historical P62 EBIRD 165.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313815897 2021-03-24 19:27:13.077399 7429 species avibase-1327AC55 Osprey Pandion haliaetus N 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-04-28 12:10:00 obsr142874 S23110799 Stationary P21 EBIRD 110.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297239137 2021-04-01 10:45:00.916278 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-02-14 09:26:00 obsr717528 S21870457 Traveling P22 EBIRD 54.0 0.402 2.0 1 G1147562 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304365664 2021-03-26 07:52:19.474233 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 12 United States US New York US-NY Delaware US-NY-025 28.0 Home L150688 P 42.248363 -74.82349 2015-03-21 07:47:00 obsr2582087 S22447466 Stationary P21 EBIRD 212.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311335050 2021-04-07 20:48:01.047637 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 60 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-19 09:54:00 obsr1655171 S22949927 Traveling P22 EBIRD 47.0 6.437 2.0 1 G1230119 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321032164 2015-05-18 18:41:15 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Albany US-NY-001 28.0 US-NY-Middleburgh-281-391 Co Rd 10 L3655081 P 42.528337 -74.207813 2015-05-18 18:40:00 obsr1885846 S23520483 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322377387 2021-04-01 12:31:09.823741 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 9 United States US New York US-NY Livingston US-NY-051 13.0 PFA Caledonia East Route L1173514 P 42.9468736 -77.7996826 2015-05-16 05:17:00 obsr1060479 S23602731 Traveling P22 EBIRD 93.0 17.703 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320897567 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Albany US-NY-001 13.0 Rte 155 and Normanskill L3110282 P 42.6761668 -73.9061529 2015-05-18 10:20:00 obsr634484 S23512201 Traveling P22 EBIRD 85.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317472631 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-09 09:24:00 obsr195244 S23322062 Traveling P22 EBIRD 86.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315566974 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 08:30:00 obsr2603801 S23213164 Traveling P22 EBIRD 480.0 12.875 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299564276 2021-04-01 11:42:50.317679 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius X United States US New York US-NY Oneida US-NY-065 13.0 Delta Lake Dam L3440985 H 43.2736746 -75.4303479 2015-02-25 14:45:00 obsr1640315 S22069842 Stationary P21 EBIRD 25.0 3.0 1 G1159656 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308039885 2019-07-23 17:28:15 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 2 United States US New York US-NY Wayne US-NY-117 13.0 Pultneyville Harbor L489590 H 43.2821007 -77.1852019 2015-04-06 14:50:00 obsr2914424 S22721942 Traveling P22 EBIRD 27.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320601443 2021-04-01 11:15:31.646886 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-17 06:30:00 obsr2363365 S23495133 Traveling P22 EBIRD 300.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323512455 2018-08-04 17:30:30 6167 spuh avibase-7FC8B7ED shorebird sp. Charadriiformes sp. 40 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 US-NY-Oakfield-5829-5845 Co Rd 23 L3679174 P 43.122911 -78.324924 2015-05-28 08:08:00 obsr2588479 S23674029 Stationary P21 EBIRD 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304961391 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-23 16:30:00 obsr1659461 S22491963 Traveling P22 EBIRD 80.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291110743 2015-01-15 10:56:50 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Oregon Road - Cutchogue L1402819 P 41.0294895 -72.5162339 2015-01-09 15:05:00 obsr2528068 S21353912 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302672305 2021-04-01 12:30:15.438381 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 16 United States US New York US-NY Herkimer US-NY-043 13.0 Platform Road - Town of Fairfield L622941 P 43.1581106 -74.9605751 2015-03-11 12:32:00 obsr316199 S22314787 Traveling P22 EBIRD 11.0 6.759 3.0 1 G1176911 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288561131 2015-01-02 18:02:00 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Onondaga US-NY-067 13.0 US-NY-Fayetteville-5515 N Manlius St L3236873 P 43.039309 -76.009601 2015-01-02 08:30:00 obsr475807 S21147865 Traveling P22 EBIRD 60.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305822034 2018-08-04 17:03:44 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-03-27 12:25:00 obsr1303581 S22558422 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319378389 2015-05-13 19:32:06 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-05-13 11:59:00 obsr2774009 S23428306 Traveling P22 EBIRD 35.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324153717 2021-11-09 18:37:59.328981 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays, Cruger Island Road L2826031 P 42.0290854 -73.9156294 2015-05-09 08:22:00 obsr2228949 S23717887 Traveling P22 EBIRD 170.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289564316 2021-03-30 19:39:10.250398 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-03 07:41:00 obsr1000553 S21229173 Traveling P22 EBIRD 266.0 3.219 3.0 1 G1094198 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307321075 2015-04-03 23:02:06 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-03 14:05:00 obsr39511 S22670988 Traveling P22 EBIRD 60.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304086342 2021-03-24 20:33:47.533911 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Tompkins US-NY-109 28.0 ***Fitzpatrick home L124872 P 42.42879 -76.395065 2015-03-17 15:20:00 obsr2124298 S22425893 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317448973 2021-03-26 06:29:56.44369 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 3 United States US New York US-NY Monroe US-NY-055 13.0 near pond at Mill Landing L2103068 P 43.235551 -77.702571 2015-05-05 09:50:00 obsr1721347 S23320721 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301351904 2021-04-01 12:14:19.266649 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 3 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-03-07 09:00:00 obsr105122 S22206468 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288602509 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-02 13:00:00 obsr2448957 S21151161 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS462405491 2021-04-01 11:54:40.172593 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-01-29 11:01:00 obsr1958124 S34094445 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311826106 2021-04-07 20:48:00.821523 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 40 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-19 09:54:00 obsr2683910 S22982400 Traveling P22 EBIRD 47.0 6.437 2.0 1 G1230119 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291741142 2021-03-23 17:00:13.087107 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Tompkins US-NY-109 13.0 845 Taughannock Blvd L3301517 P 42.4635812 -76.5241528 2015-01-18 08:45:00 obsr241086 S21404046 Stationary P21 EBIRD 70.0 7.0 1 G1114093 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319873395 2018-08-06 22:29:59 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 Unknown Sex, Adult (2) United States US New York US-NY Delaware US-NY-025 28.0 West Branch Nature Preserve L123036 H 42.1702618 -75.0311304 2015-05-15 08:30:00 obsr481595 S23456720 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309700938 2015-09-22 15:33:45 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF--Reed Marsh L1349275 H 40.5177631 -74.2204088 2015-04-13 11:18:00 obsr1958124 S22840434 Rusty Blackbird Spring Migration Blitz P41 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309368069 2021-04-01 11:30:42.037277 592 species avibase-3072CC16 Redhead Aythya americana 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-11 17:30:00 obsr2793388 S22818252 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302856772 2016-08-07 12:25:50 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 10 United States US New York US-NY Westchester US-NY-119 30.0 Deans Bridge, North Salem L2152201 H 41.3368943 -73.6588245 2015-03-13 10:30:00 obsr1628992 S22328890 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311173956 2021-04-01 10:49:39.496318 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 5 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-04-19 07:38:00 obsr1655171 S22940184 Traveling P22 EBIRD 45.0 0.483 2.0 1 G1230111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290913996 2021-03-26 06:55:00.227271 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-01-13 obsr1338126 S21337799 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308086777 2021-03-30 19:29:33.633096 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 2 United States US New York US-NY Suffolk US-NY-103 30.0 Frank Melville Memorial Park and Mill Pond L1114075 H 40.946195 -73.1156445 2015-04-06 16:49:00 obsr1228860 S22725381 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313285172 2021-03-23 17:21:08.587586 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Delaware US-NY-025 28.0 Bridge St., Downsville L2384566 H 42.0755272 -74.9899937 2015-04-26 17:40:00 obsr1788273 S23077057 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318830443 2021-03-23 17:22:05.708166 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-10 07:26:00 obsr1000124 S23396746 Area P23 EBIRD 66.0 2.59 2.0 1 G1266722 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289036326 2021-04-01 12:32:15.282601 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus X United States US New York US-NY Nassau US-NY-059 30.0 Roslyn Pond Town Park L592300 H 40.7979205 -73.6473307 2015-01-04 09:00:00 obsr2207991 S21187828 Traveling P22 EBIRD 60.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323977854 2021-03-24 20:53:39.352228 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Albany US-NY-001 28.0 Partridge Run WMA L332709 H 42.5747387 -74.1554202 2015-05-30 07:43:00 obsr1165633 S23706678 Traveling P22 EBIRD 250.0 3.219 8.0 1 G1296007 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296160845 2021-03-26 07:07:10.758746 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-02-11 09:08:00 obsr1032565 S21773762 Traveling P22 EBIRD 185.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320449489 2015-05-17 09:10:39 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park, ramble L3639243 P 40.77772 -73.9687 2015-05-16 09:09:00 obsr363953 S23487211 Stationary P21 EBIRD 120.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316487521 2015-05-06 12:45:12 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Gilbert Creek L251064 H 42.2101575 -75.8729663 2015-05-06 08:25:00 obsr879105 S23265596 Traveling P22 EBIRD 135.0 1.609 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309807262 2021-03-26 07:56:20.588749 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-13 16:15:00 obsr1693806 S22848341 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319800368 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-15 08:00:00 obsr1731572 S23452839 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318676881 2021-04-01 11:15:31.646886 337 species avibase-694C127A Mute Swan Cygnus olor 40 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:30:00 obsr1077730 S23387808 Traveling P22 EBIRD 300.0 3.0 6.0 1 G1265613 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302918037 2018-08-04 16:59:52 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP--North Point L2721599 H 42.548268 -76.601241 2015-03-13 14:20:00 obsr2260025 S22333716 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323345076 2021-11-09 18:47:57.38119 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 4 United States US New York US-NY Dutchess US-NY-027 28.0 Berkshire Road, Dover Plains, NY L3677173 P 41.67904 -73.5525119 2015-05-27 07:30:00 obsr1062217 S23662507 Traveling P22 EBIRD 190.0 6.437 3.0 1 G1292783 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317138383 2021-11-15 03:06:58.889978 662 species avibase-FB738385 Bufflehead Bucephala albeola 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 06:15:00 obsr642993 S23302815 Traveling P22 EBIRD 168.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304835374 2022-02-18 10:47:29.953615 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 S C2 S United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-23 07:09:00 obsr1062070 S22481707 Stationary P21 EBIRD 97.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311770014 2015-04-21 07:28:51 6029 species avibase-D4A73324 Solitary Sandpiper Tringa solitaria 4 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-04-21 07:12:00 obsr1349676 S22978524 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314395672 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 3 United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-04-30 13:15:00 obsr211892 S23146470 Traveling P22 EBIRD 35.0 1.127 14.0 1 G1244402 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291274356 2021-03-26 06:29:56.44369 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Monroe US-NY-055 13.0 374 Cromwell L1952255 P 43.1326227 -77.5253892 2015-01-11 08:30:00 obsr1463039 S21367229 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290368779 2021-03-23 16:39:03.255227 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-11 09:59:00 obsr1958124 S21293937 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321427016 2018-08-06 22:30:36 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 4 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-20 06:30:00 obsr1830659 S23544827 Traveling P22 EBIRD 180.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301953237 2021-11-09 21:30:06.280029 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Ulster US-NY-111 13.0 Weston Rd., swamp L1411814 H 41.7887897 -74.0242416 2015-03-08 16:45:00 obsr1072270 S22252697 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320342832 2021-03-26 07:52:59.845315 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-15 06:40:00 obsr1000124 S23481502 Area P23 EBIRD 170.0 2.59 2.0 1 G1273999 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS328759563 2021-11-09 19:41:29.904375 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Orange US-NY-071 28.0 12518 Cornwall L172024 PC 41.432674 -74.04274 2015-03-20 12:00:00 obsr428465 S24045459 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323087149 2018-08-06 22:30:56 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Rochester - 43.0982x-77.6865 - May 26, 2015, 10:22 AM L3674444 P 43.098224 -77.686513 2015-05-23 10:30:00 obsr2817239 S23645617 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309477491 2021-03-26 06:07:45.516082 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.8978678 -73.9124419 2015-04-12 09:30:00 obsr126810 S22824803 Traveling P22 EBIRD 130.0 1.207 30.0 1 G1216714 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310153801 2015-04-15 07:02:29 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Northeast Ithaca-119 Winston Dr L3500739 P 42.473569 -76.457685 2015-04-15 07:02:00 obsr2173269 S22872726 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319852553 2015-05-15 13:31:23 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Herkimer US-NY-043 13.0 Little Falls Rt 170 L3644907 P 43.0754412 -74.8587424 2015-05-15 10:00:00 obsr592357 S23455628 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301219224 2021-12-28 15:50:27.785498 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-03-06 obsr606693 S22195272 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302891968 2021-04-01 12:43:36.236969 27616 species avibase-D77E4B41 American Robin Turdus migratorius 150 United States US New York US-NY Tioga US-NY-107 28.0 US-NY-Owego-271 Front St L3447559 P 42.104094 -76.257765 2015-03-13 15:51:00 obsr1092576 S22331558 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304182733 2021-11-09 18:47:59.744367 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Dutchess US-NY-027 13.0 FEEDERS & YARD T/O MILAN, NY L3728471 P 41.951314 -73.821144 2015-03-20 09:59:00 obsr1442681 S22433435 Stationary P21 EBIRD 39.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302178439 2021-03-26 06:19:47.07548 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 1 United States US New York US-NY Essex US-NY-031 13.0 Tin Pan Alley L3437247 P 43.834301 -73.42659 2015-03-10 11:23:00 obsr2693145 S22270010 Stationary P21 EBIRD 21.0 2.0 1 G1174680 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369674548 2021-04-01 12:32:15.282601 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 4 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-25 09:30:00 obsr1815722 S27204911 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 0.805 25.0 1 G1254777 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290290518 2018-08-04 16:53:03 337 species avibase-694C127A Mute Swan Cygnus olor X United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP--Belmont Islands L1656456 H 40.7357853 -73.342391 2015-01-10 15:30:00 obsr757440 S21287734 Traveling P22 EBIRD 45.0 0.805 3.0 0 G1104138 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323137983 2021-11-09 19:02:27.638861 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-05-24 09:10:00 obsr2343626 S23648860 Traveling P22 EBIRD 173.0 2.736 1.0 1 G1291337 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289976145 2021-11-09 22:39:08.424847 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 3 United States US New York US-NY Sullivan US-NY-105 28.0 Duck Harbor Pond CBC - NY L2516210 P 41.7898387 -75.0069237 2015-01-04 14:20:00 obsr913595 S21261790 Traveling P22 EBIRD 70.0 29.612 4.0 1 G1101909 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306123556 2021-03-30 19:39:10.250398 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 5 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-26 08:00:00 obsr1160328 S22580691 Area P23 EBIRD 120.0 30.3514 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310604643 2021-03-19 16:54:27.713469 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Montgomery US-NY-057 13.0 Touareuna Rd, west L3555994 P 42.9209407 -74.0884018 2015-04-17 07:30:00 obsr1918430 S22903981 Traveling P22 EBIRD 70.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310355603 2021-03-30 19:07:52.958398 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-15 15:24:00 obsr1348614 S22886489 Traveling P22 EBIRD 222.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294973173 2021-03-30 19:18:56.909873 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 20 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-02-04 14:45:00 obsr150865 S21680309 Traveling P22 EBIRD 120.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310843771 2021-03-24 20:53:39.352228 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-04-18 08:00:00 obsr2798912 S22919670 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320346004 2018-08-06 22:30:05 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-05-16 07:33:00 obsr2693145 S23481662 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307234482 2021-11-09 17:44:00.03737 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 1 United States US New York US-NY Dutchess US-NY-027 13.0 Ludlow Woods Rd, Stanfordville NY L1062774 P 41.8618905 -73.6757755 2015-04-02 17:00:00 obsr1917973 S22664777 Traveling P22 EBIRD 5.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293605290 2015-01-27 18:50:27 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Suffolk US-NY-103 30.0 Montauk L1051370 P 41.0550198 -71.8984795 2015-01-25 09:31:00 obsr1987335 S21571355 Traveling P22 EBIRD 13.0 0.483 2.0 0 G1126998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1207453730 2021-07-26 21:04:57.530465 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 2 United States US New York US-NY Erie US-NY-029 13.0 University at Buffalo (North Campus) L6275102 H 43.0008539 -78.7889698 2015-05-08 07:45:00 obsr2155450 S92353602 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304540643 2021-03-26 06:39:43.334073 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-21 13:12:00 obsr366057 S22460468 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309785553 2021-03-30 19:13:38.458673 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Beatty Point L299148 H 43.2762602 -77.684471 2015-04-12 09:29:00 obsr1534851 S22846800 Traveling P22 EBIRD 35.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305393094 2021-03-26 06:55:00.227271 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 4 United States US New York US-NY Ontario US-NY-069 13.0 yard -- 3.0 miles RT to West Lake Rd to Wyffels, then return. L1842189 P 42.8530848 -77.2848701 2015-03-26 09:45:00 obsr983655 S22525709 Traveling P22 EBIRD 30.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307403963 2021-04-01 11:15:31.646886 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-04 07:35:00 obsr1189028 S22677269 Traveling P22 EBIRD 167.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322488523 2022-01-20 09:38:40.245267 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-17 07:00:00 obsr1565981 S23608927 Traveling P22 EBIRD 260.0 4.828 15.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315115028 2021-11-09 22:21:46.88202 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Ulster US-NY-111 US-NY_1728 28.0 Mohonk Preserve L80 H 41.7378154 -74.1985567 2015-04-18 10:00:00 obsr2633969 S23188908 Traveling P22 EBIRD 300.0 14.0 2.0 1 G1248924 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS470283192 2021-12-08 07:58:41.562209 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-01 07:30:00 obsr1843598 S34783332 Traveling P22 EBIRD 120.0 3.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293143291 2021-03-31 04:07:46.581409 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Quaker Lake L246475 H 42.0497222 -78.8716667 2015-01-24 08:50:00 obsr502830 S21529851 Traveling P22 EBIRD 74.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309187111 2021-03-24 19:19:28.646223 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 9 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-04-11 17:08:00 obsr955789 S22806616 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304488990 2021-03-26 07:20:31.408164 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 6 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven, Old Stump Road L1796581 P 40.774188 -72.89986 2015-03-21 07:00:00 obsr613775 S22456573 Stationary P21 EBIRD 75.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871280 2021-03-26 07:56:20.588749 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 7 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-20 16:00:00 obsr2218212 S21672039 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305922704 2021-11-01 23:11:19.414929 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Kings US-NY-047 Coney Island Beach & Boardwalk L845817 H 40.5719793 -73.9778996 2015-03-28 11:00:00 obsr2448957 S22565978 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300691527 2019-10-25 15:51:29 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 30 United States US New York US-NY St. Lawrence US-NY-089 13.0 home L1850306 P 44.6162578 -74.8236293 2015-03-03 08:00:00 obsr2834886 S22155941 Stationary P21 EBIRD 60.0 2.0 1 G1165629 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305794321 2021-03-24 20:33:47.533911 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 25 United States US New York US-NY Tompkins US-NY-109 13.0 Farm Pond Circle L2080608 P 42.5383387 -76.4633042 2015-03-28 11:30:00 obsr596741 S22556374 Stationary P21 EBIRD 30.0 4.0 1 G1194964 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300510892 2021-03-26 06:17:19.712573 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 43 United States US New York US-NY Erie US-NY-029 13.0 NY - 57 Briarwood, Lancaster L632062 P 42.8892776 -78.679989 2015-03-01 16:30:00 obsr2965835 S22142536 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303431488 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 Gravesend Bay, Shore Parkway Greenway Trail L483548 H 40.601293 -74.0120164 2015-03-15 13:30:00 obsr2310825 S22374415 Traveling P22 EBIRD 180.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302492856 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 30 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-11 12:40:00 obsr2590001 S22300927 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319933172 2021-03-19 16:14:11.035882 505 species avibase-C732CB10 American Black Duck Anas rubripes 8 United States US New York US-NY Cortland US-NY-023 28.0 AviCor27 L3513969 H 42.6604171 -76.149084 2015-05-09 06:03:00 obsr2535282 S23459924 Stationary P21 EBIRD 18.0 2.0 1 G1272254 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321459804 2021-11-09 18:31:48.13381 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Dutchess US-NY-027 28.0 Nuclear Lake L225084 H 41.595318 -73.6477569 2015-05-20 06:52:00 obsr1732267 S23546789 Traveling P22 EBIRD 290.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299179520 2021-03-24 19:47:16.07498 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-02-22 09:44:00 obsr589593 S22040523 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290470821 2021-04-01 12:14:19.266649 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree State Park L1028273 P 40.6402374 -73.2550335 2015-01-09 15:30:00 obsr1615708 S21302184 Traveling P22 EBIRD 15.0 0.805 2.0 1 G1105510 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310860999 2021-11-09 21:53:19.888662 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 3 United States US New York US-NY Ulster US-NY-111 13.0 Onteora Lake L3094034 P 41.98385 -74.08198 2015-04-18 08:30:00 obsr1482758 S22920801 Traveling P22 EBIRD 80.0 1.609 2.0 1 G1224121 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292035635 2021-04-01 11:15:31.646886 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 4 United States US New York US-NY Kings US-NY-047 Coney Island Creek Park L614792 H 40.5813224 -74.0052688 2015-01-19 12:15:00 obsr189780 S21426934 Traveling P22 EBIRD 45.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319466160 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 16:08:00 obsr598381 S23433400 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290279177 2021-11-12 15:54:04.00563 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 28 United States US New York US-NY New York US-NY-061 30.0 Hudson River Park--Tribeca Upland (Chambers to W Houston St.) L2617135 H 40.7238322 -74.0116863 2015-01-10 12:45:00 obsr1135516 S21286850 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311821139 2018-08-04 17:11:29 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-04-21 11:40:00 obsr2172593 S22982053 Traveling P22 EBIRD 39.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311240190 2021-03-26 07:20:31.408164 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Suffolk US-NY-103 30.0 Theodore Roosevelt County Park, Montauk L1301751 H 41.0548256 -71.8999386 2015-04-19 12:42:00 obsr598381 S22944138 Traveling P22 EBIRD 21.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300278566 2021-03-30 19:07:52.958398 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-01 12:45:00 obsr2519357 S22126330 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS498959756 2021-05-21 00:06:20.034424 483 species avibase-85625D75 Mallard Anas platyrhynchos 34 United States US New York US-NY Richmond US-NY-085 Mt. Loretto Unique Area L293510 H 40.5072899 -74.2180324 2015-04-12 09:05:00 obsr2391236 S36815903 Traveling P22 EBIRD 141.0 3.219 6.0 1 G1216707 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303458726 2015-05-07 17:04:48 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm pine tree trail transect L2272446 P 42.3482223 -76.2996706 2015-03-16 07:21:00 obsr455249 S22376522 Traveling P22 EBIRD 6.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319700422 2021-03-26 07:56:20.588749 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-05-14 08:00:00 obsr1494607 S23446844 Traveling P22 EBIRD 210.0 2.253 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291961237 2021-03-26 07:46:52.994574 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Albany US-NY-001 13.0 56 Somerset Drive, Glenmont L2829927 P 42.5944991 -73.8148373 2015-01-19 10:20:00 obsr2855945 S21421075 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307134640 2021-11-09 18:45:27.272498 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Dutchess US-NY-027 13.0 near Verbank L3534485 P 41.7142739 -73.677063 2015-03-07 08:00:00 obsr191447 S22657731 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315511869 2021-12-24 11:02:14.483178 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 7 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-02 08:00:00 obsr1534851 S23210316 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295629578 2015-02-08 18:07:37 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Kings US-NY-047 30.0 Atlantic Basin L3347658 P 40.6831114 -74.011395 2015-02-08 12:45:00 obsr2493447 S21732415 Traveling P22 EBIRD 15.0 1.609 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296709241 2021-03-30 19:29:33.633096 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 125 United States US New York US-NY Suffolk US-NY-103 30.0 Sound Ave Farm Pond L2519483 P 40.968461 -72.675004 2015-02-14 11:43:00 obsr2485753 S21823142 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322800149 2021-03-30 19:07:52.958398 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Dead Horse Bay, Marina L151656 H 40.585205 -73.901276 2015-05-25 09:15:00 obsr2476180 S23627253 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310649672 2021-03-22 09:15:15.32301 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 2 United States US New York US-NY Niagara US-NY-063 13.0 Wilson-Tuscarora SP L210266 H 43.3072398 -78.8548868 2015-04-17 09:30:00 obsr2756208 S22906871 Traveling P22 EBIRD 35.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319301699 2021-03-19 16:44:35.607263 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-13 07:18:00 obsr2504709 S23424033 Traveling P22 EBIRD 34.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323813619 2021-04-01 12:32:15.282601 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach State Park L359878 P 40.5898488 -73.5531744 2015-05-29 08:35:00 obsr916370 S23695918 Traveling P22 EBIRD 140.0 3.058 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296156756 2015-02-11 17:00:05 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 30 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-02-11 13:10:00 obsr2224244 S21773428 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305532374 2021-03-26 06:58:34.561206 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-03-26 11:48:00 obsr2588479 S22536432 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313909082 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-21 08:21:00 obsr2233270 S23116757 Traveling P22 EBIRD 459.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313637865 2021-11-09 21:57:40.409598 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Ulster US-NY-111 13.0 The Vly L3554956 P 42.13442 -73.94398 2015-04-27 18:00:00 obsr1446126 S23099367 Stationary P21 EBIRD 60.0 4.0 1 G1240333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312241508 2015-04-23 06:51:44 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-23 06:44:00 obsr2360922 S23009789 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319214625 2021-03-26 07:46:52.994574 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-13 06:16:00 obsr2512689 S23419143 Traveling P22 EBIRD 94.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310756259 2021-11-09 20:17:47.602699 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Orange US-NY-071 28.0 Benedict Park L616771 H 41.5302945 -74.2563665 2015-04-17 16:10:00 obsr1912104 S22913956 Traveling P22 EBIRD 50.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303290502 2021-03-26 06:39:43.334073 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 Unknown Sex, Adult (1) United States US New York US-NY New York US-NY-061 30.0 10034 New York L171669 PC 40.867027 -73.92021 2015-03-15 13:00:00 obsr1740835 S22362989 Traveling P22 EBIRD 90.0 2.124 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315250188 2020-09-05 16:26:38 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-03-12 07:15:00 obsr2409011 S23196579 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305499882 2018-08-04 17:03:40 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Westchester US-NY-119 28.0 Annsville Creek L450455 H 41.2966388 -73.9341903 2015-03-26 16:45:00 obsr237150 S22533960 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321091998 2021-03-19 16:10:30.527219 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 1 United States US New York US-NY Chemung US-NY-015 28.0 Harris Hill Park--Overlook L1760279 H 42.123902 -76.904434 2015-05-18 08:27:00 obsr1334267 S23523868 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311184628 2020-05-16 18:10:06 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Otsego US-NY-077 28.0 ninja HQ L2949037 P 42.474204 -75.053505 2015-04-19 08:59:00 obsr1536762 S22940881 Traveling P22 EBIRD 83.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322558087 2018-08-06 22:31:01 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area - NCAE L474355 P 43.0923966 -77.3768806 2015-05-24 09:20:00 obsr2113616 S23612778 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304172870 2021-04-01 12:41:58.738824 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla X United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-03-07 11:30:00 obsr2832110 S22432572 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307425324 2021-11-09 00:38:34.069905 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 24 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-04-04 08:00:00 obsr258431 S22678688 Traveling P22 EBIRD 240.0 4.667 4.0 1 G1204037 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304953983 2015-03-23 19:20:42 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-03-23 17:23:00 obsr646558 S22491367 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322233223 2021-03-26 06:19:47.07548 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Essex US-NY-031 13.0 Fort Ticonderoga L2321171 H 43.8429366 -73.3878243 2015-05-23 14:10:00 obsr2319580 S23594412 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304726133 2015-03-22 19:17:45 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 5 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-03-22 08:00:00 obsr2812831 S22474102 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298454718 2015-02-19 17:03:02 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-02-19 06:50:00 obsr646558 S21978764 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300005812 2021-03-26 07:43:12.52294 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Wayne US-NY-117 Sodus Bay L867215 H 43.2572057 -76.9688416 2015-02-18 15:07:00 obsr1721609 S22103806 Traveling P22 EBIRD 110.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320150545 2015-12-17 20:51:24 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Nassau US-NY-059 30.0 Theodore Roosevelt Audubon Sanctuary L511570 H 40.8698622 -73.5058951 2015-05-16 12:30:00 obsr2844530 S23471738 Traveling P22 EBIRD 39.0 0.322 2.0 1 G1501702 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301393017 2021-04-01 11:47:43.260314 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 150 United States US New York US-NY Oswego US-NY-075 13.0 W. Utica St. bridge L3461305 H 43.4532324 -76.507507 2015-03-07 12:35:00 obsr1828453 S22209816 Traveling P22 EBIRD 14.0 0.161 4.0 1 G1168813 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303001229 2018-08-04 16:59:53 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Broome US-NY-007 28.0 Anson Rd/TC airport L351859 P 42.0883449 -76.0905225 2015-03-13 16:19:00 obsr1626739 S22340485 Traveling P22 EBIRD 17.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306133912 2021-03-24 20:53:39.352228 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 9 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-03-29 17:43:00 obsr2270510 S22581483 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295994277 2021-03-24 20:23:39.258075 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius N 6 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--Golf Course L507417 H 40.6235296 -73.2860184 2015-02-10 11:00:00 obsr247620 S21760621 Traveling P22 EBIRD 240.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318530696 2015-09-13 11:57:51 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 8 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-09 09:40:00 obsr1079517 S23379820 Area P23 EBIRD 35.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304467718 2021-03-30 19:07:52.958398 11494 species avibase-20C2214E American Kestrel Falco sparverius 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-21 18:11:00 obsr152435 S22454906 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317100575 2021-11-15 03:06:58.889978 11528 species avibase-F3DA111C Merlin Falco columbarius N 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 07:00:00 obsr2033754 S23300885 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305393835 2021-03-30 06:01:28.020715 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Wayne US-NY-117 13.0 SW corner of Fisher & Lake Roads, Ontario NY L2509670 P 43.2750864 -77.2549582 2015-03-26 10:09:00 obsr2914424 S22525760 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089182 2021-03-23 17:00:13.087107 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Tompkins US-NY-109 13.0 845 Taughannock Blvd L3301517 P 42.4635812 -76.5241528 2015-01-18 08:45:00 obsr2255296 S21431070 Stationary P21 EBIRD 70.0 7.0 1 G1114093 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288484990 2016-01-01 16:35:16 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria 10 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-02 11:25:00 obsr1097423 S21141242 Traveling P22 EBIRD 95.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313583530 2021-03-26 07:20:31.408164 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-04-23 07:30:00 obsr1592950 S23095816 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311779746 2020-04-10 19:07:28 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 09:03:00 obsr2561576 S22979169 Stationary P21 EBIRD 466.0 20.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301994131 2021-03-30 19:03:54.667077 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-09 12:17:00 obsr2497657 S22255785 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302264605 2021-04-01 12:32:15.282601 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-03-10 08:30:00 obsr247620 S22280479 Traveling P22 EBIRD 270.0 6.437 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS298099172 2018-08-04 16:56:44 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 2 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-17 12:20:00 obsr2855945 S21947838 Stationary P21 EBIRD 60.0 2.0 1 G1151106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312940669 2021-03-24 19:24:40.212356 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 16:02:00 obsr1655171 S23056438 Stationary P21 EBIRD 75.0 3.0 1 G1240632 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316878257 2021-04-01 11:30:42.037277 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 07:00:00 obsr1220115 S23288037 Traveling P22 EBIRD 180.0 2.414 10.0 1 G1271504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290852341 2016-09-20 11:51:11 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 12 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-C L3288894 P 40.16935 -73.1073 2015-01-11 10:00:00 obsr1384082 S21332717 Traveling P22 EBIRD 60.0 16.254 44.0 1 G1108335 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322315109 2021-11-09 18:19:29.578852 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Dutchess US-NY-027 13.0 LaGrangeville L1403403 P 41.6293956 -73.7753336 2015-05-23 10:30:00 obsr2228257 S23598929 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311919275 2021-03-26 08:14:57.071052 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-21 15:30:00 obsr1628992 S22988266 Traveling P22 EBIRD 120.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306147955 2021-04-01 11:30:42.037277 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-03-29 17:44:00 obsr259298 S22582536 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314028174 2015-04-29 19:29:44 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Tompkins US-NY-109 13.0 South Hill--Town Line Road L897558 P 42.3902479 -76.536212 2015-04-29 07:36:00 obsr1655171 S23124173 Traveling P22 EBIRD 8.0 1.931 2.0 1 G1243200 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292920619 2018-08-04 16:55:09 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 8 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-01-24 13:40:00 obsr1062070 S21517212 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310353146 2021-03-19 16:44:35.607263 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-04-15 15:25:00 obsr528918 S22886344 Traveling P22 EBIRD 270.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320470737 2021-04-01 12:30:15.438381 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Eysaman Rd L3649039 P 43.0523792 -74.842279 2015-05-16 10:00:00 obsr1683226 S23488320 Traveling P22 EBIRD 60.0 8.047 4.0 1 G1274650 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300904527 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 20 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-04 13:30:00 obsr820113 S22172021 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308712197 2021-03-26 06:09:25.361188 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Whitney Point-19 Hemlock Hill Rd L3551288 P 42.396221 -75.954833 2015-04-09 16:38:00 obsr1764243 S22773637 Traveling P22 EBIRD 61.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309499258 2021-03-24 21:10:11.310781 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 N C3 N United States US New York US-NY Saratoga US-NY-091 13.0 Ballston, Ballston Creek Preserve L2823924 P 42.96697 -73.83397 2015-04-12 07:00:00 obsr777630 S22826358 Rusty Blackbird Spring Migration Blitz P41 EBIRD 180.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303575470 2021-04-01 12:18:57.910168 32952 species avibase-DB20CB6B Cape May Warbler Setophaga tigrina 7 F C1 F United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Palmer Woods L287796 H 42.4604469 -76.4789951 2015-03-16 16:10:00 obsr2820047 S22386015 Stationary P21 EBIRD 75.0 2.0 1 G1182622 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322157778 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-22 05:22:00 obsr34333 S23590481 Traveling P22 EBIRD 295.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309089617 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-10 16:00:00 obsr145923 S22800234 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304611981 2021-03-30 19:04:34.869795 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Columbia US-NY-021 13.0 Elizaville Diner Pond L3505976 H 42.0463847 -73.8055408 2015-03-22 11:15:00 obsr671490 S22465545 Stationary P21 EBIRD 30.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322553822 2021-04-01 11:15:31.646886 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 06:27:00 obsr1726069 S23612531 Traveling P22 EBIRD 149.0 6.003 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301414039 2021-03-26 07:07:10.758746 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 11 United States US New York US-NY Richmond US-NY-085 Page Ave. Beach L1340800 H 40.5023216 -74.2288034 2015-03-07 08:45:00 obsr1893950 S22211479 Stationary P21 EBIRD 30.0 2.0 1 G1169018 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322445911 2018-08-06 22:31:00 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-24 07:47:00 obsr1097423 S23606598 Traveling P22 EBIRD 104.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292099897 2018-04-22 15:45:16 681 species avibase-407E2CA8 Common Merganser Mergus merganser 50 United States US New York US-NY Wayne US-NY-117 13.0 Erie Canal, Newark Canal Park and trail, Edgett St. L986295 H 43.0485846 -77.1079758 2015-01-19 09:25:00 obsr606693 S21432030 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308428596 2021-03-23 17:37:19.520785 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 12 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-08 08:00:00 obsr2841967 S22751685 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316682680 2021-03-24 20:57:48.241391 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 24 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-05-06 16:05:00 obsr1708031 S23277213 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302859492 2021-03-30 19:29:33.633096 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 1 Male, Adult (1) United States US New York US-NY Suffolk US-NY-103 US-NY_847 30.0 Blydenburgh Park L524406 H 40.8353508 -73.220264 2015-03-10 13:30:00 obsr2852365 S22329117 Traveling P22 EBIRD 140.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290257573 2021-03-26 07:56:20.588749 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-10 14:39:00 obsr870166 S21285155 Traveling P22 EBIRD 85.0 0.805 2.0 1 G1103898 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316445108 2021-03-30 12:05:58.533651 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 5 United States US New York US-NY Nassau US-NY-059 30.0 North Woodmere Park L3514361 H 40.641285 -73.7363824 2015-05-06 08:30:00 obsr1693806 S23263386 Traveling P22 EBIRD 90.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318539865 2018-04-16 15:51:00 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-11 06:45:00 obsr2843748 S23380248 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304263127 2021-03-26 06:29:56.44369 32952 species avibase-DB20CB6B Cape May Warbler Setophaga tigrina 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-03-20 17:25:00 obsr2933610 S22439816 Traveling P22 EBIRD 41.0 0.483 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310511373 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.8729471 2015-04-16 08:10:00 obsr2837502 S22897531 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290212418 2015-01-10 15:33:17 5773 species avibase-671B69FE Piping Plover Charadrius melodus 1 United States US New York US-NY Queens US-NY-081 30.0 70 th St cemetary L1644790 P 40.6999283 -73.8799143 2015-01-10 11:45:00 obsr1861127 S21281234 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310902443 2015-04-18 13:44:54 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Broome US-NY-007 28.0 Whitney Point Lake Overlook L3134674 H 42.338524 -75.962913 2015-04-18 11:30:00 obsr2211210 S22923437 Stationary P21 EBIRD 5.0 1.0 1 G1224196 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310573049 2021-01-02 20:17:06.602961 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Allan H. Treman State Marine Park--marina (not lakeshore or woods) L159024 H 42.4571425 -76.5143238 2015-04-16 14:44:00 obsr528918 S22901787 Traveling P22 EBIRD 70.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311268678 2016-10-29 18:20:09 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 2 United States US New York US-NY Onondaga US-NY-067 13.0 Erie Canal Towpath-Kirkville to Poolsbrook L248191 P 43.0741321 -75.9281066 2015-04-19 06:45:00 obsr2087436 S22945978 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315316248 2021-03-26 06:17:19.712573 27616 species avibase-D77E4B41 American Robin Turdus migratorius N X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-03 09:30:00 obsr2537615 S23199812 Traveling P22 EBIRD 120.0 1.207 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311196421 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 22 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-19 08:30:00 obsr1135516 S22941519 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293088013 2021-04-01 11:30:42.037277 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 16 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Cedar Hill L5197378 H 40.7770344 -73.9654146 2015-01-22 08:18:00 obsr1548221 S21530039 Traveling P22 EBIRD 11.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307185881 2015-04-03 14:49:07 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Columbia US-NY-021 13.0 Glenco Mills L2428181 P 42.1436143 -73.742466 2015-04-03 08:35:00 obsr481595 S22661230 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309033596 2021-11-09 21:29:33.71224 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Ulster US-NY-111 13.0 George Freer Memorial Beach L1396692 H 41.9102459 -73.9727658 2015-04-11 09:30:00 obsr1482758 S22796771 Stationary P21 EBIRD 20.0 20.0 1 G1214173 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313628596 2019-07-24 17:34:53 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 250 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr1481512 S23098757 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316798057 2015-05-08 21:51:29 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Rochester-irondequoit 14622 yard L3146197 P 43.22078 -77.556809 2015-05-06 09:00:00 obsr140077 S23283835 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322503170 2018-08-06 22:30:59 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-24 07:00:00 obsr2024068 S23609734 Traveling P22 EBIRD 270.0 4.023 2.0 1 G1291916 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300027872 2021-03-26 06:29:56.44369 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-02-19 10:10:00 obsr1782363 S22105754 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304152105 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 51 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-19 08:34:00 obsr1548221 S22430941 Traveling P22 EBIRD 52.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312378250 2021-03-30 19:07:52.958398 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 07:15:00 obsr2363365 S23018991 Traveling P22 EBIRD 420.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312719503 2015-04-25 07:27:15 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Tompkins US-NY-109 13.0 My house L752736 P 42.4160332 -76.4502089 2015-04-25 07:16:00 obsr887540 S23043176 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309351670 2021-03-24 20:23:39.258075 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Calverton Ponds Preserve (Krusos Ecological Area) L498554 H 40.8911638 -72.8095293 2015-04-12 09:44:00 obsr1107696 S22817284 Traveling P22 EBIRD 87.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313088956 2021-03-19 16:19:20.977326 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-04-26 08:30:00 obsr736608 S23065480 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306202538 2021-03-26 07:00:33.333856 6339 species avibase-8535345B Herring Gull Larus argentatus 7 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L526565 P 40.7469969 -73.7436676 2015-03-29 12:15:00 obsr2233270 S22586742 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291703035 2021-11-09 19:56:27.431631 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 25 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt - Celery Ave L3301185 P 41.3685209 -74.4191498 2015-01-18 08:25:00 obsr1544235 S21400958 Traveling P22 EBIRD 15.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323120577 2015-05-26 12:53:20 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA--Kellogg and Sixty area L1542200 H 43.19662 -76.3229585 2015-04-13 11:30:00 obsr2409011 S23647723 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309962261 2015-04-14 12:46:48 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Chenango US-NY-017 28.0 Home woods L3452888 P 42.3471065 -75.6650519 2015-04-14 08:00:00 obsr1303581 S22859330 Traveling P22 EBIRD 150.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323177504 2022-02-17 14:32:23.002448 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-23 08:30:00 obsr1211277 S23651588 Traveling P22 EBIRD 180.0 1.77 5.0 1 G1288834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310125449 2021-03-26 06:29:56.44369 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 14 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-04-08 08:00:00 obsr2449897 S22870884 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288116452 2015-01-01 09:52:28 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 9 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard, 1544 Lake Rd L1802598 P 42.7108 -76.69262 2015-01-01 09:22:00 obsr800690 S21110527 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305353309 2021-11-15 03:06:58.889978 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 18 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-25 13:20:00 obsr516108 S22522442 Traveling P22 EBIRD 85.0 0.483 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321747459 2018-08-06 22:30:44 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cortland US-NY-023 28.0 Taylor Valley SF--day use area L3661816 P 42.637929 -75.968907 2015-05-21 12:34:00 obsr2279567 S23564322 Traveling P22 EBIRD 63.0 0.885 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288717255 2015-01-03 14:46:19 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 200 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk L3260801 P 42.578847 -73.868167 2015-01-03 11:39:00 obsr2214649 S21160443 Traveling P22 EBIRD 14.0 6.437 2.0 1 G1093024 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305676587 2021-12-08 07:58:41.562209 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-03-27 17:02:00 obsr2206421 S22547658 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307497325 2021-04-01 12:32:15.282601 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 10 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-04 13:30:00 obsr1137265 S22683577 Traveling P22 EBIRD 45.0 4.828 2.0 1 G1204414 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326426953 2020-01-16 17:01:33 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Franklin US-NY-033 US-NY_797 14.0 Spring Pond Bog Preserve (restricted access) L123031 H 44.39083 -74.465 2015-05-30 13:00:00 obsr998236 S23876454 Traveling P22 EBIRD 180.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295576178 2021-04-28 05:26:15.958627 32955 species avibase-41062654 Northern Parula Setophaga americana 2 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-08 13:00:00 obsr1801902 S21728089 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304002431 2015-03-19 08:42:59 505 species avibase-C732CB10 American Black Duck Anas rubripes 14 United States US New York US-NY Schuyler US-NY-097 13.0 US-NY-Burdett-4900 Satterly Hill Rd L3498292 P 42.473529 -76.8433 2015-03-19 07:41:00 obsr1828453 S22419107 Incidental P20 EBIRD 3.0 0 G1184893 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312252832 2015-04-23 08:43:42 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-04-23 08:35:00 obsr1349676 S23010522 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316090848 2021-03-26 06:21:54.883933 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 09:45:00 obsr1807494 S23242761 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303998054 2015-05-07 17:07:24 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 30 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-03-19 07:11:00 obsr455249 S22418714 Traveling P22 EBIRD 16.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318184587 2021-04-01 11:15:31.646886 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-10 07:10:00 obsr350767 S23360891 Traveling P22 EBIRD 106.0 3.219 4.0 1 G1262445 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313315999 2021-12-27 20:39:04.096623 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-04-26 12:00:00 obsr479109 S23079012 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317715013 2018-08-06 22:29:28 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 4 United States US New York US-NY Albany US-NY-001 28.0 beaver rd lake2 L3627222 P 42.5745509 -74.1863 2015-05-09 11:45:00 obsr777630 S23335824 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312306470 2020-05-16 18:13:14 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Otsego US-NY-077 28.0 Ottaway Pond L3568681 P 42.7363566 -74.8490193 2015-04-23 08:30:00 obsr189015 S23013934 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312026726 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-22 07:00:00 obsr1165633 S22995530 Traveling P22 EBIRD 156.0 5.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306857917 2018-08-04 17:04:58 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-01 15:00:00 obsr1160328 S22636723 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322022197 2021-11-09 18:38:00.243456 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Dutchess US-NY-027 13.0 Wappinger, 26 Oneil Farm Lane L2843210 P 41.60923 -73.86112 2015-05-16 10:00:00 obsr2452484 S23582094 Traveling P22 EBIRD 60.0 0.402 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297180057 2022-03-05 22:03:50.715584 592 species avibase-3072CC16 Redhead Aythya americana 8 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-15 08:30:00 obsr2219590 S21864987 Stationary P21 EBIRD 420.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309788794 2015-04-13 17:03:19 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 12 United States US New York US-NY Warren US-NY-113 13.0 Meadowbrook Nature Preserve L2113177 P 43.3467857 -73.6434603 2015-04-13 10:38:00 obsr1222746 S22847008 Traveling P22 EBIRD 90.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323949049 2015-05-30 11:56:25 27616 species avibase-D77E4B41 American Robin Turdus migratorius 11 United States US New York US-NY Erie US-NY-029 13.0 reinstein woods preserve L3684277 P 42.8836229 -78.7181997 2015-05-29 11:00:00 obsr1929165 S23705049 Traveling P22 EBIRD 120.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291536775 2021-04-01 12:14:19.266649 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Orowoc Lake, Islip L1864121 H 40.7292598 -73.2249385 2015-01-17 14:20:00 obsr2902954 S21388353 Stationary P21 EBIRD 25.0 2.0 1 G1112564 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313388999 2018-08-04 17:12:24 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Yates US-NY-123 13.0 Yates County Public Ponds L2142998 P 42.7601618 -77.2696346 2015-04-26 11:15:00 obsr195058 S23084015 Traveling P22 EBIRD 35.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312937365 2021-03-26 07:07:10.758746 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-25 06:00:00 obsr2342280 S23056229 Traveling P22 EBIRD 60.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316134034 2021-04-01 11:30:42.037277 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 06:00:00 obsr139757 S23245043 Traveling P22 EBIRD 450.0 4.828 23.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296377651 2021-11-09 21:56:47.283823 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Ulster US-NY-111 28.0 Wallkill River Walk L3161419 H 41.6024469 -74.1829652 2015-02-12 14:01:00 obsr2449954 S21792746 Traveling P22 EBIRD 28.0 8.047 2.0 1 G1144439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310478019 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 14:05:00 obsr2883698 S22894920 Traveling P22 EBIRD 70.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302224220 2021-03-23 17:00:13.087107 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 18 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Mt. Sapsucker L1772923 H 42.4817726 -76.449865 2015-03-10 12:13:00 obsr1655171 S22275397 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307845079 2021-04-01 11:54:40.172593 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 Female, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-04-04 08:00:00 obsr666331 S22708002 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318973239 2021-04-01 12:32:15.282601 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-05-12 11:00:00 obsr1488063 S23404942 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314944721 2021-03-26 06:21:54.883933 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park--Pier 2 and Pier 3 Terrace L1117224 H 40.6984488 -73.9976664 2015-05-02 12:00:00 obsr521443 S23179468 Traveling P22 EBIRD 117.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291024225 2021-11-09 18:43:18.978402 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Dutchess US-NY-027 14.0 Reagan Road Millerton L3292286 P 41.9044809 -73.5126543 2015-01-14 09:45:00 obsr1732267 S21346587 Traveling P22 EBIRD 105.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324168718 2018-08-06 22:31:32 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-31 08:27:00 obsr1472872 S23718805 Traveling P22 EBIRD 73.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302502309 2021-03-26 07:07:10.758746 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Richmond US-NY-085 30.0 Stately Richman Manor L2489256 P 40.6333994 -74.104638 2015-03-11 10:00:00 obsr2904420 S22301757 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304121424 2017-07-23 20:19:24 5922 species avibase-06B9BD24 Sanderling Calidris alba 2 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River, Riverwalk Plaza L3479883 H 42.1255097 -77.961348 2015-03-19 10:27:00 obsr1310178 S22428571 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288822759 2021-03-30 19:07:52.958398 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-01-03 10:30:00 obsr1289811 S21170871 Traveling P22 EBIRD 15.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300865634 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris 13 United States US New York US-NY Nassau US-NY-059 30.0 Thompson Place, Lynbrook L3382423 P 40.6502915 -73.6783307 2015-03-04 08:00:00 obsr2703784 S22169126 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309791806 2021-03-30 19:22:51.561415 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-13 11:30:00 obsr2078092 S22847195 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308361939 2021-04-01 11:54:40.172593 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-04-06 08:00:00 obsr666331 S22746453 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320656659 2022-01-12 17:57:10.417834 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Franklin US-NY-033 14.0 Bigelow Rd. L1209811 H 44.4208004 -74.114141 2015-05-17 08:37:00 obsr1222746 S23498151 Traveling P22 EBIRD 70.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369674528 2021-04-01 12:32:15.282601 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 5 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-25 09:30:00 obsr1815722 S27204911 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 0.805 25.0 1 G1254777 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290183555 2021-03-30 19:39:10.250398 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve--Massapequa Lake L881487 H 40.6669677 -73.4683228 2015-01-10 10:00:00 obsr87415 S21278766 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293324558 2021-03-24 20:11:57.676649 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina N 10 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Oswego-33 W. Albany St L3009180 P 43.450895 -76.51126 2015-01-24 08:10:00 obsr2700277 S21548207 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313065958 2021-04-01 11:54:40.172593 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-26 09:25:00 obsr1958124 S23064112 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320251434 2015-05-16 17:37:46 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-05-16 16:45:00 obsr1591201 S23476797 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305252158 2021-03-23 17:35:57.093178 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens N X United States US New York US-NY Rensselaer US-NY-083 13.0 Knickerbocker Rd L3501094 P 42.917479 -73.6472064 2015-03-21 09:30:00 obsr634484 S22514704 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306401729 2018-08-04 17:04:39 505 species avibase-C732CB10 American Black Duck Anas rubripes 20 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Park L99623 H 42.8427169 -76.6967529 2015-03-29 13:12:00 obsr2683910 S22601917 Stationary P21 EBIRD 24.0 2.0 1 G1198697 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310246458 2021-04-01 11:54:40.172593 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-15 15:20:00 obsr1958124 S22878886 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293256297 2021-03-30 19:29:33.633096 30494 species avibase-240E3390 House Sparrow Passer domesticus 64 United States US New York US-NY Suffolk US-NY-103 30.0 Swan Lake, East Patchogue L279859 H 40.770108 -72.9932633 2015-01-25 12:00:00 obsr1585511 S21543236 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301255962 2015-03-06 17:42:12 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Onondaga US-NY-067 13.0 Home L1479128 P 43.1502997 -76.3703906 2015-03-06 12:00:00 obsr2172593 S22198112 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298768472 2015-02-21 19:41:53 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-02-21 07:14:00 obsr1958124 S22005502 Traveling P22 EBIRD 4.0 0.483 2.0 1 G1155377 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS768271470 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-30 obsr192641 S56880465 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306992616 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-02 15:30:00 obsr1693806 S22646840 Traveling P22 EBIRD 75.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304400374 2021-03-24 19:48:44.880783 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Monroe US-NY-055 13.0 Cook Rd & Redman Rd L630568 H 43.3592028 -77.965765 2015-03-21 13:53:00 obsr1696616 S22450091 Traveling P22 EBIRD 4.0 1.207 2.0 1 G1188322 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303382931 2021-11-01 23:11:19.414929 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 8 United States US New York US-NY Kings US-NY-047 Coney Island Beach & Boardwalk L845817 H 40.5719793 -73.9778996 2015-03-15 09:00:00 obsr41879 S22370580 Traveling P22 EBIRD 90.0 1.207 2.0 1 G1181610 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319074464 2021-03-26 06:21:54.883933 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 13:50:00 obsr1516787 S23411306 Traveling P22 EBIRD 180.0 3.943 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294007805 2020-11-12 19:51:23 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 4 United States US New York US-NY Nassau US-NY-059 30.0 North Woodmere Park L3514361 H 40.641285 -73.7363824 2015-01-30 14:45:00 obsr1693806 S21603037 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321439164 2018-08-06 22:30:37 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Nassau US-NY-059 US-NY_872 30.0 Muttontown Preserve L250511 H 40.8315708 -73.5416646 2015-05-20 07:45:00 obsr1578741 S23545659 Traveling P22 EBIRD 180.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289466115 2021-03-24 21:06:05.39641 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-01-06 09:00:00 obsr2224244 S21221251 Traveling P22 EBIRD 49.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316550977 2021-04-01 11:30:42.037277 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 17 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 09:10:00 obsr1668936 S23269558 Traveling P22 EBIRD 405.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291399151 2015-01-17 08:26:58 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-01-16 08:00:00 obsr1349676 S21377139 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295539786 2021-04-01 11:15:31.646886 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-02-07 13:00:00 obsr544268 S21725266 Stationary P21 EBIRD 120.0 2.0 1 G1138958 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312589979 2017-11-14 12:02:04 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-04-24 10:00:00 obsr983655 S23034152 Traveling P22 EBIRD 40.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309975603 2021-03-26 06:29:14.715704 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 2 United States US New York US-NY Madison US-NY-053 13.0 Cazenovia behind Marquardt L2202903 P 42.9240004 -75.8094406 2015-04-14 12:15:00 obsr2290617 S22860322 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216799 2021-11-09 18:35:59.249164 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna N 2 United States US New York US-NY Dutchess US-NY-027 14.0 Reagan Road, Indian Lake Rd & Coleman Station Rd, Millerton, NY L2724266 P 41.9079144 -73.507247 2015-01-14 09:00:00 obsr1339050 S21619339 Traveling P22 EBIRD 210.0 4.345 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313205644 2021-04-01 11:30:42.037277 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 11:00:00 obsr2635084 S23072219 Traveling P22 EBIRD 180.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306999018 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-04-02 14:05:00 obsr2105033 S22647641 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298127380 2021-03-24 20:33:47.533911 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-01-23 15:25:00 obsr2980107 S21950109 Traveling P22 EBIRD 60.0 1.931 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323122814 2021-04-01 11:47:43.260314 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-04-15 06:30:00 obsr2409011 S23647875 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291921296 2021-03-30 19:29:33.633096 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-19 12:13:00 obsr1889800 S21417735 Traveling P22 EBIRD 78.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304001125 2021-04-01 11:24:19.637193 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-19 08:16:00 obsr334398 S22418984 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308308963 2017-12-26 16:26:10 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Monroe US-NY-055 13.0 Manitou Beach Exit Ramp L3546785 P 43.3185275 -77.7290225 2015-04-04 15:13:00 obsr1481464 S22742438 Incidental P20 EBIRD 3.0 0 G2810129 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305746261 2021-03-24 21:10:11.310781 303 species avibase-B59E1863 Canada Goose Branta canadensis 22 United States US New York US-NY Saratoga US-NY-091 13.0 Personal residence L1937009 P 42.9576788 -74.0717125 2015-03-28 07:30:00 obsr1557094 S22552970 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313650286 2021-12-10 08:21:29.396662 7429 species avibase-1327AC55 Osprey Pandion haliaetus 10 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-04-27 08:15:00 obsr1198912 S23100188 Traveling P22 EBIRD 225.0 4.506 25.0 1 G1239686 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306074795 2021-03-19 16:32:34.732091 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 7 United States US New York US-NY Kings US-NY-047 Bush Terminal waterfront, 51st St. access L1918383 H 40.6511335 -74.0227568 2015-03-29 13:15:00 obsr1189028 S22576882 Stationary P21 EBIRD 10.0 2.0 1 G1196554 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291432606 2021-04-01 11:49:53.573686 11371 species avibase-75600969 Northern Flicker Colaptes auratus X United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay, North Channel Bridge L1396935 H 40.638525 -73.8325786 2015-01-17 12:14:00 obsr2844530 S21380046 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313611066 2021-04-01 11:23:42.170869 622 species avibase-50566E50 Lesser Scaup Aythya affinis 3 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-04-26 09:00:00 obsr589593 S23097638 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297112353 2021-11-09 21:17:49.33878 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Ulster US-NY-111 28.0 Galeville Town Park L1097467 H 41.6428365 -74.200201 2015-02-15 13:05:00 obsr539141 S21858742 Traveling P22 EBIRD 7.0 1.159 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306976277 2021-03-30 19:03:54.667077 30494 species avibase-240E3390 House Sparrow Passer domesticus 8 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-04-02 14:32:00 obsr2497657 S22645608 Stationary P21 EBIRD 73.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312213095 2020-05-19 16:07:59 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Otsego US-NY-077 28.0 Lake Front Park L302037 H 42.7028363 -74.9225244 2015-04-22 19:00:00 obsr131845 S23007824 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299585968 2021-03-24 20:58:53.646623 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-02-25 07:15:00 obsr72341 S22071650 Stationary P21 EBIRD 585.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307738993 2021-03-26 07:30:35.289997 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-03-29 09:30:00 obsr1005220 S22700359 Traveling P22 EBIRD 60.0 3.219 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324259473 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 50 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-31 11:15:00 obsr1135516 S23724517 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309121191 2021-03-24 19:39:45.790741 592 species avibase-3072CC16 Redhead Aythya americana 4 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Oak Orchard WMA--Goose Pond overlook L294791 H 43.1245968 -78.2729208 2015-04-11 11:15:00 obsr1104059 S22802154 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318652063 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-05-11 12:15:00 obsr647628 S23386429 Traveling P22 EBIRD 150.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291637686 2021-03-30 06:01:28.020715 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 78 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-01-18 08:48:00 obsr2224244 S21396291 Traveling P22 EBIRD 90.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317570287 2018-02-01 15:11:46 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cortland US-NY-023 28.0 AviCor11 L3513953 H 42.5527608 -76.0336385 2015-05-09 13:04:00 obsr620377 S23328143 Stationary P21 EBIRD 7.0 2.0 1 G1272240 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317186596 2021-09-12 21:03:10.253835 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Main Pool L99388 H 42.9796604 -76.7437077 2015-04-03 08:53:00 obsr533086 S23305234 International Shorebird Survey (ISS) P74 EBIRD 163.0 4.828 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309123500 2021-11-09 21:57:40.409598 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Ulster US-NY-111 13.0 The Vly L3554956 P 42.13442 -73.94398 2015-04-11 11:00:00 obsr2862523 S22802288 Traveling P22 EBIRD 90.0 3.219 10.0 1 G1214308 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309408712 2018-08-04 17:08:45 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Allegany US-NY-003 28.0 Alma Pond L2864464 P 42.0217998 -77.9710007 2015-04-12 09:00:00 obsr1210649 S22820729 Traveling P22 EBIRD 105.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308722193 2021-03-26 07:07:10.758746 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 2 United States US New York US-NY Richmond US-NY-085 Conference House Park L302089 H 40.4995098 -74.2516756 2015-04-09 11:56:00 obsr155915 S22774343 Traveling P22 EBIRD 40.0 1.609 2.0 1 G1212576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340107139 2022-02-17 14:32:23.002448 11494 species avibase-20C2214E American Kestrel Falco sparverius 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-11 10:10:00 obsr294325 S24873703 Traveling P22 EBIRD 140.0 3.219 3.0 1 G1395740 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309945279 2021-03-26 06:29:56.44369 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Monroe US-NY-055 13.0 Thousand Acre Swamp Preserve L123006 H 43.17917 -77.45194 2015-04-14 08:00:00 obsr2240964 S22858216 Traveling P22 EBIRD 120.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307957200 2018-12-10 21:33:45 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-06 06:00:00 obsr820113 S22716396 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313119739 2021-04-01 11:30:42.037277 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 08:20:00 obsr2206421 S23067199 Traveling P22 EBIRD 190.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317214364 2021-03-19 16:19:20.977326 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-08 08:00:00 obsr1054748 S23306711 Traveling P22 EBIRD 210.0 0.08 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311179205 2021-03-26 07:46:52.994574 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 7 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-19 07:00:00 obsr2270510 S22940546 Traveling P22 EBIRD 51.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295256843 2019-07-23 17:27:16 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 PI--Route 1 L985254 P 41.1763283 -72.2099161 2015-02-06 11:36:00 obsr2485753 S21702377 Traveling P22 EBIRD 46.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312140429 2015-12-18 19:52:35 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 1 United States US New York US-NY Suffolk US-NY-103 30.0 Smith Point County Park L621111 H 40.7352017 -72.8641286 2015-04-22 10:20:00 obsr717785 S23002748 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294908891 2016-09-12 10:27:59 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-28 10:30:00 obsr2475075 S21674841 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323563148 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-28 06:09:00 obsr150415 S23677487 Traveling P22 EBIRD 145.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304928849 2018-08-04 17:02:41 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Suffolk US-NY-103 30.0 Marratooka L143474 P 40.9934692 -72.5238113 2015-03-23 17:01:00 obsr2485753 S22489284 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322725818 2021-04-01 11:24:19.637193 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-05-24 09:20:00 obsr1782363 S23622803 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309860777 2021-11-09 18:09:08.212564 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 2 United States US New York US-NY Dutchess US-NY-027 US-NY_870 13.0 Thompson Pond Preserve L123019 H 41.9677583 -73.6819272 2015-04-13 18:45:00 obsr2862523 S22852065 Traveling P22 EBIRD 10.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309657808 2021-03-24 20:33:47.533911 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-13 08:02:00 obsr455249 S22836927 Traveling P22 EBIRD 7.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294532788 2021-03-26 07:20:31.408164 7261 species avibase-86D45B8F Green Heron Butorides virescens 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-01-31 06:45:00 obsr1592950 S21644361 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306972792 2021-03-24 20:33:47.533911 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Tompkins US-NY-109 13.0 206 Tareyton Drive, Ithaca L141039 P 42.471756 -76.4603653 2015-03-29 10:00:00 obsr620377 S22645372 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307858695 2021-04-01 12:18:57.910168 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-05 16:38:00 obsr1655171 S22708909 Traveling P22 EBIRD 21.0 0.483 2.0 1 G1212795 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296090342 2021-03-26 07:30:35.289997 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-02-11 07:52:00 obsr1318356 S21768297 Traveling P22 EBIRD 55.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317827081 2021-04-01 12:30:15.438381 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Herkimer US-NY-043 13.0 Route 5 at corner of Gun club Rd L2662845 P 43.0234746 -74.8939705 2015-05-09 13:08:00 obsr1708031 S23341800 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306402547 2021-11-09 21:31:40.219848 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-03-30 15:30:00 obsr915089 S22601990 Traveling P22 EBIRD 75.0 1.207 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304490348 2021-03-30 19:13:38.458673 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Cranberry Pond, Greece L139798 H 43.3003006 -77.6968002 2015-03-21 17:05:00 obsr934639 S22456660 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309690309 2015-04-13 10:42:35 285 hybrid avibase-AA36FA05 Snow Goose x Brant (hybrid) Anser caerulescens x Branta bernicla 6 C C3 C Male, Adult (6) United States US New York US-NY Rensselaer US-NY-083 13.0 Jensis Rd L998226 P 42.5520845 -73.7279069 2015-04-06 19:45:00 obsr489496 S22839791 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297358194 2015-02-15 21:24:44 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY Herkimer US-NY-043 13.0 New Hartford L3371710 P 43.0429978 -75.2033901 2015-02-15 12:00:00 obsr1198111 S21881093 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294973880 2021-04-01 12:32:15.282601 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 40 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-04 09:00:00 obsr1160328 S21680359 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289685934 2021-04-01 11:30:42.037277 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY New York US-NY-061 30.0 Union Square Park L486424 H 40.7361632 -73.9901558 2015-01-07 13:25:00 obsr1481911 S21238692 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293172933 2021-04-01 11:30:42.037277 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-01 obsr2277801 S21536765 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316316894 2021-03-26 06:20:10.658048 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Genesee US-NY-037 US-NY_2802 13.0 Linear Park, Bergen L2403261 H 43.0916679 -77.9697454 2015-05-05 15:33:00 obsr408487 S23256432 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308803220 2021-03-26 07:52:59.845315 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-07 08:00:00 obsr316199 S22780410 Area P23 EBIRD 68.0 2.59 2.0 1 G1213046 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303068030 2019-07-23 17:27:58 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 25 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-14 13:42:00 obsr1696616 S22345946 Traveling P22 EBIRD 51.0 1.287 2.0 1 G1179145 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301406571 2018-08-04 16:58:53 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-07 09:30:00 obsr71667 S22208020 Stationary P21 EBIRD 75.0 5.0 1 G1168730 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001645 2021-03-26 07:56:20.588749 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-28 09:00:00 obsr2218212 S23775942 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289866287 2021-03-26 06:53:58.593564 456 species avibase-D201EB72 American Wigeon Mareca americana 3 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-01-05 10:30:00 obsr1195517 S21253005 Stationary P21 EBIRD 120.0 2.0 1 G1101267 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300293434 2021-03-26 07:20:31.408164 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 45 griffing ave, amityville ny 11701 L3448874 P 40.6822418 -73.3763123 2015-02-16 13:15:00 obsr2442436 S22127532 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319243321 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-13 06:30:00 obsr547602 S23420820 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315251665 2021-04-01 11:30:42.037277 447 species avibase-C235A4D7 Gadwall Mareca strepera 13 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-02 06:15:00 obsr1780417 S23196646 Traveling P22 EBIRD 451.0 1.207 2.0 1 G1248808 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323788958 2021-03-26 06:29:56.44369 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-29 09:00:00 obsr2966702 S23694244 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313896946 2021-03-23 17:23:45.772216 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis N 2 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake Park L792637 H 42.7759994 -77.6113701 2015-04-28 13:20:00 obsr2504709 S23115957 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309031998 2020-03-22 07:58:01 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-04-11 09:26:00 obsr730231 S22796652 Stationary P21 EBIRD 26.0 2.0 1 G1214148 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312103787 2018-04-28 14:02:38 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 10 United States US New York US-NY Tompkins US-NY-109 28.0 Thomas Rd., south (Six Mile Creek ponds & marsh) L388439 H 42.4020377 -76.3778114 2015-04-22 08:26:00 obsr2074043 S23000342 Traveling P22 EBIRD 13.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299949618 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-27 13:30:00 obsr2310825 S22099355 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310855747 2021-03-23 16:21:52.613913 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 S7 C3 S7 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--Bunker Hill Rd. X Coleman Rd. [Clifton Springs_NE] L978886 P 42.9842756 -77.1518862 2015-04-18 08:15:00 obsr606693 S22920455 Traveling P22 EBIRD 7.0 1.529 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320322809 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-16 08:00:00 obsr2519357 S23480500 Traveling P22 EBIRD 200.0 4.023 2.0 1 G1273908 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS328111767 2018-08-06 22:30:14 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 14:45:00 obsr2182516 S23996462 Traveling P22 EBIRD 150.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290683746 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 50 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-12 12:45:00 obsr2394424 S21319435 Traveling P22 EBIRD 30.0 3.219 2.0 1 G1107127 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319800394 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 18:00:00 obsr1077730 S23452841 Traveling P22 EBIRD 75.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288476235 2021-03-30 19:39:10.250398 30494 species avibase-240E3390 House Sparrow Passer domesticus N 1 United States US New York US-NY Nassau US-NY-059 30.0 Saint Johns Pond Sanctuary L123034 H 40.85417 -73.46333 2015-01-02 11:30:00 obsr676630 S21140550 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289143764 2018-08-04 16:52:39 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 60 United States US New York US-NY Saratoga US-NY-091 13.0 Lock 6 State Canal Park, Waterford L1457772 H 42.8032933 -73.7021245 2015-01-03 11:55:00 obsr2855945 S21196302 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300727113 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 38 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-03-03 08:15:00 obsr247620 S22158580 Traveling P22 EBIRD 285.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310097325 2022-02-27 09:35:49.066489 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-04-14 16:15:00 obsr2087436 S22868928 Traveling P22 EBIRD 75.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305453464 2021-03-31 04:08:44.613777 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Onondaga US-NY-067 13.0 BB Yard L2743427 P 43.1547263 -76.3614365 2015-03-26 15:00:00 obsr756196 S22530442 Incidental P20 EBIRD 1.0 0 G1193268 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300006016 2015-02-28 09:54:37 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 4 United States US New York US-NY Wayne US-NY-117 13.0 Red Creek, 13539-13615 Mixer Road L3444806 P 43.29997 -76.74276 2015-02-22 12:37:00 obsr1721609 S22103824 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322514269 2018-08-06 22:31:02 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 S7 C3 S7 United States US New York US-NY Columbia US-NY-021 14.0 Taconic SP - Alander Mountain Area L3644642 P 42.065543 -73.511796 2015-05-24 11:35:00 obsr798742 S23610315 Traveling P22 EBIRD 70.0 3.541 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307103776 2021-04-01 11:54:40.172593 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 14 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-04-01 15:35:00 obsr1032565 S22655445 Traveling P22 EBIRD 115.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS920854275 2020-05-13 10:56:06 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Jefferson US-NY-045 13.0 US-NY-Watertown - 44.0016x-75.8060 - Apr 27, 2015, 9:18 AM L3594949 P 44.001569 -75.805958 2015-04-27 09:18:00 obsr2720788 S68975094 Traveling P22 EBIRD 87.0 6.437 2.0 1 G5326516 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307941049 2021-11-09 18:42:19.628792 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-04-06 07:32:00 obsr1732267 S22715094 Traveling P22 EBIRD 93.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310168026 2022-02-18 10:47:29.953615 26278 species avibase-A381417F House Wren Troglodytes aedon 7 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-15 08:36:00 obsr1062070 S22873790 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921468 2021-03-26 07:56:20.588749 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-12 09:00:00 obsr2218212 S22173323 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304751825 2021-04-01 11:15:31.646886 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Kings US-NY-047 30.0 Sheepshead Bay L835012 H 40.582363 -73.9434105 2015-03-22 16:00:00 obsr2448957 S22475877 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310615605 2021-04-01 11:15:31.646886 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park-Pier 1 L1064703 P 40.7014636 -73.9971256 2015-04-17 09:00:00 obsr263005 S22904793 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293250118 2021-11-09 18:28:50.133002 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Dutchess US-NY-027 13.0 Home, Millbrook, NY L2119013 P 41.7923452 -73.6592703 2015-01-24 07:00:00 obsr1062217 S21542760 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308208527 2021-03-26 06:58:34.561206 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 1 United States US New York US-NY Orleans US-NY-073 13.0 Burns Rd., btwn CR 22 and Hemlock Ridge Rd. L822513 H 43.1463408 -78.2838357 2015-04-07 08:36:00 obsr2588479 S22734982 Traveling P22 EBIRD 21.0 3.862 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319698767 2021-03-26 06:17:19.712573 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata 2 United States US New York US-NY Erie US-NY-029 13.0 Buffalo - Marriott Niagara L3643671 P 42.9883253 -78.7954849 2015-05-14 19:30:00 obsr2503906 S23446735 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294752422 2021-03-26 07:07:10.758746 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 6 United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-02-02 15:41:00 obsr1893950 S21661956 Stationary P21 EBIRD 132.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312640896 2022-03-05 22:03:50.715584 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 9 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-24 17:35:00 obsr1544235 S23037779 Traveling P22 EBIRD 75.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298360722 2021-11-09 21:57:10.447183 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L3399027 P 41.6331504 -74.2334819 2015-02-18 12:00:00 obsr1136981 S21969925 Stationary P21 EBIRD 110.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311666977 2018-08-04 17:11:17 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Lewis US-NY-049 13.0 Location F L1847764 P 43.936171 -75.505298 2015-04-19 12:58:00 obsr417887 S22972002 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313502981 2021-04-01 11:54:40.172593 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-27 09:00:00 obsr666331 S23091056 Traveling P22 EBIRD 150.0 3.219 2.0 1 G1239560 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310237669 2021-03-24 21:10:11.310781 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Saratoga US-NY-091 13.0 Betar Byway--South Trail L2704435 P 43.2882726 -73.6483794 2015-04-15 10:49:00 obsr1222746 S22878310 Traveling P22 EBIRD 44.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300697272 2015-03-03 10:37:58 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Monroe US-NY-055 13.0 Oatka Creek Park L140441 H 43.0066986 -77.8019028 2015-02-28 15:15:00 obsr1534851 S22156362 Traveling P22 EBIRD 45.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305773658 2021-03-19 16:02:45.308962 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 12 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-03-28 09:00:00 obsr1830659 S22552480 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296377976 2015-02-13 08:23:01 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-02-13 07:30:00 obsr2074043 S21792776 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309579586 2021-03-23 17:21:08.587586 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 20 United States US New York US-NY Delaware US-NY-025 28.0 Bridge St., Downsville L2384566 H 42.0755272 -74.9899937 2015-04-11 06:58:00 obsr1788273 S22831805 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318556361 2021-03-19 16:44:35.607263 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-11 09:30:00 obsr2223307 S23381156 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296334642 2021-04-01 11:42:50.317679 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-02-11 11:45:00 obsr2892286 S21789450 Stationary P21 EBIRD 150.0 2.0 1 G1144220 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299000219 2015-02-22 15:50:27 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Bird Song Trail L290845 H 43.0202323 -77.5809949 2015-02-22 14:25:00 obsr934639 S22024212 Traveling P22 EBIRD 50.0 0.805 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308177823 2018-08-04 17:06:18 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-04-06 18:00:00 obsr1380963 S22732762 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301457656 2019-07-23 17:27:43 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 20 United States US New York US-NY Cayuga US-NY-011 13.0 Ellis Rd., Levanna L1340510 H 42.7851685 -76.7161914 2015-03-07 15:49:00 obsr1092576 S22213828 Traveling P22 EBIRD 14.0 0.805 4.0 1 G1169136 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289510113 2021-12-19 10:32:19.574298 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-01-06 10:20:00 obsr1167884 S21224897 Traveling P22 EBIRD 110.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301410693 2021-03-23 17:00:13.087107 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Orchard Hill Rd/Dubois Rd L3461551 P 42.4749141 -76.5466914 2015-03-07 11:20:00 obsr2673845 S22211239 Traveling P22 EBIRD 5.0 0.016 5.0 1 G1168938 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293813261 2021-03-26 08:05:20.615241 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 S C2 S United States US New York US-NY Onondaga US-NY-067 13.0 Skan - 5 E. Lake St L631480 P 42.9468657 -76.4167383 2015-01-29 07:53:00 obsr2279567 S21587594 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293531644 2021-11-15 03:06:58.889978 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-24 10:00:00 obsr599682 S21565498 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299925264 2021-04-01 11:54:40.172593 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 22 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-02-27 10:01:00 obsr1032565 S22097423 Traveling P22 EBIRD 186.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306590390 2015-03-31 19:00:35 483 species avibase-85625D75 Mallard Anas platyrhynchos 12 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-03-31 18:00:00 obsr1839967 S22616830 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321962597 2021-11-09 19:01:40.008558 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-22 09:59:00 obsr2175245 S23578072 Traveling P22 EBIRD 156.0 5.311 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293832573 2021-11-09 20:51:06.773494 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 3 United States US New York US-NY Rockland US-NY-087 28.0 Kakiat County Park L1023278 H 41.1461171 -74.11466 2015-01-29 09:22:00 obsr1253931 S21589222 Traveling P22 EBIRD 92.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306438007 2021-03-23 16:21:52.613913 6186 species avibase-B0932D89 Dovekie Alle alle 1 United States US New York US-NY Ontario US-NY-069 13.0 Shortsville Rd. X Payne Rd., Farmington L800361 H 42.9615545 -77.3038334 2015-03-30 10:15:00 obsr528918 S22604958 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320705001 2022-01-20 09:38:40.245267 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-17 06:15:00 obsr2303787 S23500692 Traveling P22 EBIRD 373.0 4.023 20.0 1 G1275330 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314001057 2017-09-09 13:14:35 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Hoyt spur powerline cut trail (0.223 km) L1368198 P 42.4797939 -76.4474848 2015-04-29 08:24:00 obsr2307843 S23122595 Traveling P22 EBIRD 5.0 0.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307293400 2021-11-09 21:29:33.71224 507 hybrid avibase-43C9473C Mallard x American Black Duck (hybrid) Anas platyrhynchos x rubripes 2 United States US New York US-NY Ulster US-NY-111 13.0 George Freer Memorial Beach L1396692 H 41.9102459 -73.9727658 2015-04-03 16:45:00 obsr1110743 S22668967 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306100296 2022-02-17 14:32:23.002448 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-29 13:35:00 obsr876649 S22578869 Traveling P22 EBIRD 70.0 1.609 2.0 1 G1395744 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314108789 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 08:00:00 obsr2319444 S23129015 Traveling P22 EBIRD 240.0 3.219 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310393297 2021-03-24 20:33:47.533911 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N 2 United States US New York US-NY Tompkins US-NY-109 28.0 Webster estate, Hollister Rd., Dryden L1653802 P 42.41531 -76.35452 2015-04-16 07:12:00 obsr2211210 S22889218 Traveling P22 EBIRD 44.0 0.805 4.0 1 G1221723 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288179305 2022-02-21 17:38:19.333534 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-01 12:53:00 obsr1958124 S21115717 Stationary P21 EBIRD 10.0 2.0 1 G1088902 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305975581 2021-11-09 21:50:48.44865 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 24 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-29 08:00:00 obsr1588136 S22569835 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321926329 2021-04-01 12:28:44.297881 352 spuh avibase-F9EC83D6 swan sp. Cygnus sp. 1 United States US New York US-NY Chenango US-NY-017 28.0 Stiles Rd thicket L3662259 P 42.3341303 -75.6602481 2015-05-22 06:48:00 obsr1303581 S23575712 Traveling P22 EBIRD 147.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314335628 2021-03-26 06:11:29.8335 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Owasco Lake inlet area L302042 H 42.7542393 -76.4637132 2015-04-30 06:03:00 obsr1092576 S23142719 Traveling P22 EBIRD 62.0 0.805 2.0 1 G1244189 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298139206 2021-04-01 10:52:54.724403 7011 species avibase-534FB490 Northern Gannet Morus bassanus 25 United States US New York US-NY Columbia US-NY-021 13.0 Smith Road & Route 9, Kinderhook L3192238 P 42.3917446 -73.6932635 2015-02-17 15:30:00 obsr349211 S21950999 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297011015 2021-03-24 20:33:47.533911 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-02-15 08:00:00 obsr455249 S21849382 Stationary P21 EBIRD 74.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313816256 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 07:12:00 obsr609516 S23110816 Traveling P22 EBIRD 297.0 7.242 30.0 1 G1241310 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311543558 2021-03-26 07:30:35.289997 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Tompkins US-NY-109 13.0 AviTom43 L3513985 H 42.5762079 -76.5107421 2015-04-20 09:25:00 obsr2535282 S22962858 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256866 2021-11-09 21:29:36.23688 16223 species avibase-951C150C Olive-sided Flycatcher Contopus cooperi 1 United States US New York US-NY Ulster US-NY-111 13.0 Esopus Meadows Lighthouse Park L1396701 H 41.8684798 -73.9511925 2015-01-01 13:30:00 obsr2862523 S21122366 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295529512 2021-04-01 10:49:39.496318 32666 species avibase-5110842F Baltimore Oriole Icterus galbula N 15 United States US New York US-NY Cayuga US-NY-011 13.0 Indian Field Rd. N of Rt. 90, Genoa L2523375 H 42.67725 -76.54871 2015-02-08 09:13:00 obsr2871406 S21724521 Traveling P22 EBIRD 5.0 2.736 3.0 1 G1138940 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS449666237 2016-12-17 18:48:28 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-03-31 15:31:00 obsr2270510 S22614139 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310251528 2021-03-19 16:19:20.977326 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-15 11:15:00 obsr2871264 S22879270 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000306 2021-03-26 07:56:20.588749 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 12 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-03 09:00:00 obsr2218212 S23775902 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289987517 2021-06-13 05:18:24.710376 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Kings US-NY-047 30.0 Wyckoff Street Home L903070 P 40.683806 -73.9857732 2015-01-09 10:30:00 obsr2883698 S21262885 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318747315 2021-04-01 11:30:42.037277 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-04-28 17:00:00 obsr1310902 S23391949 Stationary P21 EBIRD 20.0 2.0 1 G1266022 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315107332 2021-04-01 11:15:31.646886 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 07:30:00 obsr2078092 S23188477 Traveling P22 EBIRD 480.0 6.437 28.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293169541 2021-03-26 07:56:20.588749 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-25 14:45:00 obsr598381 S21536503 Traveling P22 EBIRD 71.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309862129 2021-11-09 18:45:58.530767 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 7 United States US New York US-NY Dutchess US-NY-027 13.0 Rhinecliff train station L3562397 P 41.9201936 -73.9527726 2015-04-13 19:30:00 obsr2862523 S22852162 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322964564 2018-08-06 22:30:20 16283 species avibase-2778A3F4 Acadian Flycatcher Empidonax virescens 1 United States US New York US-NY Herkimer US-NY-043 14.0 Lake Rondaxe, Burgers Camp L992096 P 43.761071 -74.9080167 2015-05-17 08:15:00 obsr186330 S23637668 Traveling P22 EBIRD 180.0 4.828 4.0 1 G1289899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317489296 2018-08-06 22:29:18 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-09 05:45:00 obsr290506 S23323639 Traveling P22 EBIRD 240.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311910044 2015-04-21 18:19:58 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Livingston US-NY-051 13.0 14435 L3581270 P 42.693501 -77.711644 2015-04-21 07:02:00 obsr682121 S22987665 Stationary P21 EBIRD 372.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293754761 2021-04-01 11:24:19.637193 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-28 10:35:00 obsr1782363 S21583121 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296005179 2022-03-05 22:03:50.715584 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 5 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-02-10 08:00:00 obsr2219590 S21761495 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311267288 2022-03-05 22:03:50.715584 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-19 08:15:00 obsr890053 S22945880 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294602217 2017-03-07 22:27:41 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-01-23 13:30:00 obsr1152226 S21650019 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305491710 2015-04-15 11:42:51 27616 species avibase-D77E4B41 American Robin Turdus migratorius 7 United States US New York US-NY Tompkins US-NY-109 13.0 Scofield Rd. (north end), Lansing L367841 H 42.5564629 -76.4547586 2015-03-26 06:50:00 obsr2683910 S22533420 Stationary P21 EBIRD 7.0 2.0 1 G1193439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302343507 2021-03-26 06:59:15.841579 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Oswego US-NY-075 13.0 Derby Hill Bird Observatory L982887 P 43.5273932 -76.2341309 2015-03-10 11:00:00 obsr979921 S22289732 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290812236 2021-03-23 17:40:24.452972 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Warren US-NY-113 14.0 Peggie's Point L3187023 P 43.745544 -73.497391 2015-01-07 09:18:00 obsr2693145 S21329212 Traveling P22 EBIRD 27.0 0.322 2.0 1 G1108079 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295021219 2018-08-04 16:55:38 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Emerson Park L354461 H 42.901996 -76.537299 2015-02-03 13:24:00 obsr2279567 S21685050 Traveling P22 EBIRD 46.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320213852 2019-01-07 15:37:19 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Boutwell Hill SF L2054628 H 42.3186058 -79.1861057 2015-05-16 14:15:00 obsr2497657 S23474897 Traveling P22 EBIRD 76.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314563600 2021-11-09 18:37:30.327421 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA--South Bay L2782184 H 42.0203489 -73.922756 2015-04-30 14:01:00 obsr440908 S23157415 Traveling P22 EBIRD 173.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318233360 2016-05-14 19:56:23 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Monroe US-NY-055 13.0 Mt. Hope Cemetery L249453 H 43.1287817 -77.6206675 2015-05-10 07:50:00 obsr2065230 S23363707 Traveling P22 EBIRD 130.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297410107 2015-02-16 00:59:47 634 species avibase-F3D74914 King Eider Somateria spectabilis 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Sandhill Designs L3320804 P 42.006055 -79.1649109 2015-02-15 09:30:00 obsr1593030 S21885505 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313268499 2021-03-23 16:48:08.60516 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-04-26 11:40:00 obsr171901 S23076012 Stationary P21 EBIRD 100.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308095381 2021-03-22 09:17:32.016297 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N 5 United States US New York US-NY Oneida US-NY-065 13.0 Sylvan Beach L509883 H 43.1939135 -75.731163 2015-04-06 16:15:00 obsr1640315 S22726115 Stationary P21 EBIRD 10.0 1.0 1 G1208661 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307117240 2021-03-24 19:48:44.880783 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-02 14:15:00 obsr2173269 S22656497 Traveling P22 EBIRD 44.0 0.805 1.0 1 G1202325 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319797287 2021-03-23 17:23:45.772216 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus-Back Woods L698393 P 42.6703198 -77.6733398 2015-05-15 09:10:00 obsr72341 S23452666 Traveling P22 EBIRD 52.0 2.092 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310438042 2020-05-16 18:13:14 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Otsego US-NY-077 28.0 Wilber Lake left side L3567800 P 42.517371 -75.0565982 2015-04-16 09:44:00 obsr1452192 S22892078 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299416074 2019-05-29 16:43:27 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Tompkins US-NY-109 13.0 Salt Point Natural Area L353038 H 42.5394116 -76.5496267 2015-02-24 12:33:00 obsr1655171 S22058341 Traveling P22 EBIRD 19.0 0.322 2.0 1 G1183304 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309617137 2021-03-26 08:14:57.071052 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-04-11 09:15:00 obsr2918150 S22834169 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322180433 2021-04-01 11:15:31.646886 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 06:15:00 obsr152435 S23591664 Traveling P22 EBIRD 311.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304259187 2021-03-26 06:29:56.44369 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-20 16:10:00 obsr934639 S22439441 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310849995 2021-03-26 06:11:29.8335 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-04-18 08:55:00 obsr59643 S22920089 Stationary P21 EBIRD 17.0 2.0 1 G1224761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314944706 2018-08-04 17:13:59 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-05-02 05:50:00 obsr1044068 S23179466 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304490921 2021-11-09 21:50:48.44865 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-21 14:30:00 obsr1636520 S22456696 Traveling P22 EBIRD 75.0 0.805 4.0 1 G1188107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313004498 2021-03-23 17:41:09.545385 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-22 08:00:00 obsr2078798 S23060334 Traveling P22 EBIRD 90.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307576308 2018-08-04 17:05:26 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Washington US-NY-115 13.0 Towpath Rd., Kingsbury L1527296 H 43.3054212 -73.5459734 2015-04-04 15:20:00 obsr1731061 S22689215 Traveling P22 EBIRD 63.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310291561 2016-08-07 13:01:41 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 2 United States US New York US-NY Westchester US-NY-119 30.0 Angle Fly Preserve L1184284 H 41.2947905 -73.7167871 2015-04-15 16:45:00 obsr858943 S22881982 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320598230 2021-03-26 07:46:52.994574 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 10 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-17 07:12:00 obsr2512689 S23494972 Traveling P22 EBIRD 108.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310914821 2018-08-04 17:09:44 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Whitney Point-5869 State Route 26 L3572310 P 42.380064 -75.96567 2015-04-18 11:23:00 obsr1092576 S22924135 Stationary P21 EBIRD 4.0 2.0 1 G1224245 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289866654 2021-04-01 12:18:57.910168 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius N 200 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-01-08 13:01:00 obsr1092576 S21253040 Traveling P22 EBIRD 10.0 1.609 2.0 1 G1101269 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309722792 2018-08-04 17:09:02 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-13 11:05:00 obsr2024068 S22841862 Traveling P22 EBIRD 40.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296445235 2015-02-13 13:23:39 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-02-13 13:10:00 obsr1958124 S21799210 Traveling P22 EBIRD 5.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309534246 2015-04-12 19:33:02 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-04-12 08:22:00 obsr2426404 S22828760 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322149584 2021-03-30 19:13:38.458673 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-23 08:12:00 obsr1696616 S23589970 Traveling P22 EBIRD 67.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310233775 2021-03-26 08:11:28.0353 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 Male, Adult (2); Unknown Sex and Age (2) United States US New York US-NY Saratoga US-NY-091 13.0 Betar Byway L1528567 H 43.2984602 -73.6411847 2015-04-15 08:47:00 obsr1222746 S22878031 Traveling P22 EBIRD 106.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308318414 2015-04-07 17:35:36 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Genesee US-NY-037 13.0 covell rd, pavilion L3546878 P 42.9614707 -78.0406952 2015-04-07 14:00:00 obsr393804 S22743139 Traveling P22 EBIRD 6.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305400029 2021-03-26 06:20:10.658048 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Genesee US-NY-037 13.0 hunn rd alexander L3492933 P 42.9283369 -78.2158113 2015-03-26 08:31:00 obsr393804 S22526238 Traveling P22 EBIRD 46.0 7.081 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS520158196 2021-11-09 20:06:29.536516 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 10 United States US New York US-NY Orange US-NY-071 28.0 Fancher Davidge Park L4424296 H 41.4575972 -74.4327749 2015-04-11 08:00:00 obsr2753135 S38248967 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294262584 2021-03-24 19:27:13.077399 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-31 10:46:00 obsr1334267 S21623175 Traveling P22 EBIRD 36.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311454746 2021-07-29 22:33:30.646935 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-17 obsr1220115 S22957358 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292486587 2021-03-31 04:04:22.116638 279 species avibase-3E04020B Brant Branta bernicla 20 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-19 15:34:00 obsr1987335 S21482823 Traveling P22 EBIRD 47.0 0.644 2.0 1 G1118671 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312086362 2021-03-26 07:07:10.758746 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-22 13:45:00 obsr1958124 S22999174 Traveling P22 EBIRD 8.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298820078 2021-03-30 19:29:33.633096 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L635183 H 40.8348529 -72.6153374 2015-02-21 14:00:00 obsr2692002 S22009759 Traveling P22 EBIRD 105.0 3.219 2.0 1 G1155234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300230701 2021-03-26 07:00:33.333856 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-02-28 08:42:00 obsr1407710 S22122506 Traveling P22 EBIRD 109.0 3.0 13.0 1 G1162161 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323177506 2022-02-17 14:32:23.002448 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-23 08:30:00 obsr1211277 S23651588 Traveling P22 EBIRD 180.0 1.77 5.0 1 G1288834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316668131 2021-11-09 17:58:40.313796 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-06 11:30:00 obsr1917973 S23276381 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308382982 2017-08-16 17:00:04 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Franklin US-NY-033 14.0 Lake Colby Railroad Tracks L1509081 H 44.3364468 -74.1524597 2015-04-06 16:15:00 obsr2188170 S22748008 Traveling P22 EBIRD 50.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313724523 2021-03-24 21:12:31.336509 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-04-28 06:30:00 obsr1839967 S23104953 Traveling P22 EBIRD 85.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289388474 2021-03-26 07:52:59.845315 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-05 08:15:00 obsr1000124 S21215231 Area P23 EBIRD 79.0 2.59 2.0 1 G1100456 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303995558 2021-03-23 16:39:03.255227 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 13 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-19 06:48:00 obsr1958124 S22418452 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310840808 2021-11-09 19:57:48.990233 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-18 07:38:00 obsr749440 S22919461 Stationary P21 EBIRD 33.0 2.0 1 G1225461 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293976917 2021-04-27 06:10:29.086343 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 2 United States US New York US-NY Kings US-NY-047 30.0 Hendrix Creek L821734 H 40.6482804 -73.8749027 2015-01-30 10:11:00 obsr1821546 S21600829 Traveling P22 EBIRD 58.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312159904 2015-04-22 19:06:44 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Newfield-Robert Treman State Park LOWA L3583278 P 42.400775 -76.577742 2015-04-22 19:06:00 obsr1092576 S23004091 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291177412 2021-03-26 08:14:57.071052 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 448 United States US New York US-NY Westchester US-NY-119 US-NY_2790 28.0 US-NY-Verplanck-2 Riverview Ave L1878232 P 41.248277 -73.963709 2015-01-15 16:00:00 obsr258431 S21359116 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302856367 2021-04-01 11:47:43.260314 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-03-09 13:58:00 obsr2700277 S22328861 Traveling P22 EBIRD 46.0 0.483 2.0 1 G1177756 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314736431 2021-04-01 11:12:52.834774 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 4 United States US New York US-NY Greene US-NY-039 13.0 wildwing park catskill L749524 P 42.2294707 -73.8825417 2015-05-01 08:30:00 obsr2515158 S23167473 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316432133 2015-05-06 09:31:45 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Albany US-NY-001 13.0 GHS L3402141 P 42.6977028 -73.967042 2015-05-06 08:56:00 obsr2270510 S23262572 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314276115 2019-03-03 16:25:13 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 4 United States US New York US-NY Montgomery US-NY-057 13.0 Touareuna Rd, west L3555994 P 42.9209407 -74.0884018 2015-04-29 07:39:00 obsr1918430 S23139556 Traveling P22 EBIRD 12.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323960415 2021-04-01 11:15:31.646886 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 05:40:00 obsr2499879 S23705700 Traveling P22 EBIRD 285.0 3.219 2.0 1 G1295955 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317038549 2018-08-04 17:15:05 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-07 06:10:00 obsr1778524 S23297293 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298077108 2021-04-01 11:15:31.646886 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia N 108 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-02-17 16:35:00 obsr1821546 S21945938 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294324363 2021-03-23 17:41:09.545385 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Westchester US-NY-119 30.0 NY - Yonkers - Kimble Ave L2432769 P 40.9168156 -73.8558269 2015-02-01 09:52:00 obsr1348614 S21628008 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299104596 2021-03-26 08:11:28.0353 406 species avibase-27B2749A Wood Duck Aix sponsa 3 United States US New York US-NY Saratoga US-NY-091 13.0 Wrights Loop L691715 H 42.9902551 -73.6132237 2015-02-22 13:45:00 obsr820113 S22034869 Traveling P22 EBIRD 15.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291913560 2021-03-26 07:20:31.408164 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Springs (40 Hog Creek Lane) [ACW] L994020 P 41.0478128 -72.1558146 2015-01-19 08:00:00 obsr598381 S21417185 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287403 2021-06-05 00:42:11.854802 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Richmond US-NY-085 US-NY_2794 30.0 Clay Pit Ponds State Park Preserve L374210 H 40.539776 -74.2319955 2015-01-01 08:36:00 obsr1893950 S21125173 Traveling P22 EBIRD 12.0 0.048 2.0 1 G1088919 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309655453 2021-03-26 06:55:00.227271 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 3 Male, Adult (3) United States US New York US-NY Ontario US-NY-069 13.0 The Swamp L1660257 P 42.8848133 -77.0413991 2015-04-13 07:10:00 obsr572658 S22836769 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303136836 2021-04-01 11:15:31.646886 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-14 15:30:00 obsr1659461 S22351300 Traveling P22 EBIRD 65.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305804034 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-03-28 14:15:00 obsr259298 S22557103 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311339502 2018-08-04 17:09:43 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Onondaga US-NY-067 28.0 Tully Lakes L1129390 P 42.79011 -76.1278725 2015-04-18 11:13:00 obsr1178949 S22950185 Traveling P22 EBIRD 240.0 47.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307957866 2021-04-01 11:49:53.573686 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 3 United States US New York US-NY Queens US-NY-081 30.0 Rockaway Community Park L298364 H 40.5984323 -73.7870095 2015-04-06 09:59:00 obsr2574755 S22716452 Traveling P22 EBIRD 34.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320867905 2021-04-01 10:45:00.916278 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 Male, Adult (1) United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-18 09:00:00 obsr128156 S23510539 Rusty Blackbird Spring Migration Blitz P41 EBIRD 33.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313786514 2021-11-09 21:56:49.750103 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Ulster US-NY-111 28.0 home L3265416 P 41.9668096 -74.2864877 2015-04-25 17:00:00 obsr595164 S23108874 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319959907 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-15 08:30:00 obsr2448505 S23461333 Traveling P22 EBIRD 360.0 6.437 3.0 1 G1273003 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298534037 2021-11-09 22:39:47.565044 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Sullivan US-NY-105 28.0 Rondout Reservoir (Sullivan Co.) L2693079 H 41.8604243 -74.5100577 2015-02-18 10:00:00 obsr444155 S21984904 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311364040 2015-04-19 18:27:12 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-18 09:30:00 obsr271871 S22951674 Traveling P22 EBIRD 120.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303751912 2021-03-23 17:23:45.772216 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Livingston US-NY-051 13.0 Co Rd 10 L846164 P 42.7543863 -77.7720129 2015-03-17 09:29:00 obsr72341 S22399619 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304377150 2021-03-26 07:30:35.289997 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 F C1 F United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, Home Depot/Kohls parking lot L3503125 P 42.4192649 -76.522581 2015-03-21 11:13:00 obsr2307843 S22448366 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082442 2021-03-24 19:27:13.077399 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-18 09:11:00 obsr1334267 S21430560 Traveling P22 EBIRD 18.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298919987 2015-02-22 09:09:41 5956 species avibase-F35821AA Semipalmated Sandpiper Calidris pusilla 1 United States US New York US-NY Suffolk US-NY-103 30.0 Backyard- Wading River L2473993 P 40.9573854 -72.8095722 2015-02-22 08:30:00 obsr1006926 S22017883 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289726951 2021-03-26 06:55:00.227271 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Ontario US-NY-069 13.0 The Swamp L1660257 P 42.8848133 -77.0413991 2015-01-07 15:50:00 obsr572658 S21241557 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310945701 2021-03-26 07:07:10.758746 483 species avibase-85625D75 Mallard Anas platyrhynchos 20 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-18 13:22:00 obsr1958124 S22926012 Traveling P22 EBIRD 85.0 2.414 3.0 1 G1224790 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291025139 2015-01-14 17:35:35 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Nassau US-NY-059 48 Potters La. L3292310 P 40.8047548 -73.7517518 2015-01-13 09:30:00 obsr1160328 S21346688 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288208258 2021-11-09 21:31:40.219848 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 7 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-01-01 09:10:00 obsr187701 S21118251 Traveling P22 EBIRD 80.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301312584 2022-03-08 13:50:22.901821 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-03-06 08:30:00 obsr473055 S22203201 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317871267 2021-04-01 11:12:52.834774 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 9 United States US New York US-NY Greene US-NY-039 13.0 wildwing park catskill L749524 P 42.2294707 -73.8825417 2015-05-09 06:30:00 obsr2515158 S23344131 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301416830 2019-09-10 13:56:02 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-03-07 14:57:00 obsr1092576 S22211674 Traveling P22 EBIRD 11.0 0.483 4.0 1 G1169055 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309954710 2021-04-01 11:24:19.637193 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay L83 H 43.3130395 -77.7153471 2015-04-14 09:00:00 obsr2933610 S22858850 Stationary P21 EBIRD 115.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297307830 2021-03-19 16:02:45.308962 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Broome US-NY-007 28.0 Home - Backyard L2734900 P 42.0961985 -75.8793983 2015-02-15 09:00:00 obsr2491105 S21876672 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312473307 2021-04-01 11:24:19.637193 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-01 08:56:00 obsr334398 S23025458 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319305880 2021-03-19 16:44:35.607263 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-13 07:52:00 obsr2504709 S23424252 Traveling P22 EBIRD 75.0 0.322 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314086527 2015-05-06 19:17:29 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-04-29 07:40:00 obsr2766625 S23127654 Traveling P22 EBIRD 245.0 0.966 19.0 1 G1242821 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303696291 2018-08-04 17:01:42 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 750 United States US New York US-NY Suffolk US-NY-103 30.0 Oregon Rd L756800 P 41.0287369 -72.51719 2015-03-17 13:20:00 obsr2485753 S22395307 Traveling P22 EBIRD 31.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316440642 2015-05-06 10:05:10 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-06 09:19:00 obsr2595828 S23263132 Traveling P22 EBIRD 45.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312974269 2021-11-09 21:57:40.409598 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Ulster US-NY-111 13.0 The Vly L3554956 P 42.13442 -73.94398 2015-04-25 13:10:00 obsr2862523 S23058482 Traveling P22 EBIRD 32.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308608705 2021-03-23 17:00:13.087107 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 3 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-08 07:01:00 obsr455249 S22765312 Traveling P22 EBIRD 15.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315588660 2021-11-15 03:06:58.889978 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 12:20:00 obsr1555046 S23214400 Traveling P22 EBIRD 180.0 4.828 2.0 1 G1250420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288829278 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-03 14:30:00 obsr856524 S21171649 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311787630 2021-03-30 19:28:38.115458 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-19 09:00:00 obsr712690 S22979594 Traveling P22 EBIRD 60.0 3.219 4.0 1 G1232811 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324001096 2022-03-06 22:19:43.839237 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Hamilton US-NY-041 14.0 Ferd's Bog L109141 H 43.7886933 -74.749732 2015-05-30 09:00:00 obsr545221 S23708055 Traveling P22 EBIRD 70.0 1.207 2.0 1 G1296160 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296839675 2021-03-30 19:07:52.958398 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-14 10:30:00 obsr1408339 S21834871 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321168005 2018-08-06 22:30:25 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Hamilton US-NY-041 US-NY_864 14.0 Lake Durant, SP L3656654 P 43.8385314 -74.3891358 2015-05-17 13:15:00 obsr2139704 S23528972 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314069488 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 07:30:00 obsr369788 S23126640 Traveling P22 EBIRD 270.0 4.828 17.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312433893 2021-03-26 07:30:35.289997 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-04-23 09:00:00 obsr2137468 S23022773 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304908596 2021-11-09 18:02:59.935226 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 Male, Adult (3); Female, Adult (3) United States US New York US-NY Dutchess US-NY-027 28.0 Madam Brett Park L1171361 H 41.4886892 -73.9742571 2015-03-23 12:20:00 obsr1422726 S22487424 Traveling P22 EBIRD 45.0 1.931 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292905045 2021-03-26 07:16:36.956617 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-01-24 08:40:00 obsr481595 S21515984 Traveling P22 EBIRD 145.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290853432 2019-01-03 10:54:11 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-A L3288843 P 40.26648 -73.25628 2015-01-11 08:00:00 obsr1384082 S21332822 Traveling P22 EBIRD 60.0 12.392 44.0 1 G1108331 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS307555760 2021-04-01 11:15:31.646886 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-04 06:36:00 obsr2404047 S22687656 Traveling P22 EBIRD 370.0 6.437 2.0 1 G1205525 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292185176 2021-04-01 10:45:00.916278 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N 14 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.8768877 -73.7898123 2015-01-20 10:43:00 obsr1348614 S21438598 Traveling P22 EBIRD 282.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322088706 2022-01-20 09:38:40.245267 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-21 08:30:00 obsr877361 S23586163 Traveling P22 EBIRD 120.0 4.828 7.0 1 G1285032 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305258008 2021-03-24 20:56:44.139453 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-03-19 10:30:00 obsr2475075 S22515123 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310705185 2021-03-24 20:11:19.423282 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Orleans US-NY-073 13.0 Gaines-Waterport Rd L2408367 P 43.2855406 -78.2156423 2015-04-17 12:00:00 obsr137150 S22910455 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317046064 2021-03-19 15:59:05.496822 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Allegany US-NY-003 28.0 Genesee River, Riverwalk Plaza L3479883 H 42.1255097 -77.961348 2015-05-07 16:30:00 obsr2700440 S23297718 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293556507 2017-05-28 19:21:10 33306 species avibase-0ADA5F17 Western Tanager Piranga ludoviciana 1 United States US New York US-NY Suffolk US-NY-103 30.0 Bayview Ave Boat Ramp L3322015 P 41.084665 -72.401128 2015-01-27 13:26:00 obsr2485753 S21567166 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310830891 2018-02-01 15:11:46 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 21 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom35 L3513977 H 42.6070262 -76.3369512 2015-04-18 06:36:00 obsr620377 S22918801 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323083961 2019-01-02 12:14:37 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Monroe US-NY-055 13.0 10 Parkview Drive yard birds L690404 P 43.1565179 -77.5146952 2015-05-26 07:30:00 obsr2817239 S23645432 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288717658 2021-03-26 07:46:52.994574 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Feura Bush L3260809 P 42.589187 -73.869008 2015-01-03 11:25:00 obsr2214649 S21160475 Traveling P22 EBIRD 10.0 9.656 2.0 1 G1093025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315103691 2021-03-19 16:08:39.161312 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-05-02 06:30:00 obsr2909248 S23188277 Stationary P21 EBIRD 270.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309891484 2017-09-10 18:56:36 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 9 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Shaker Tract Rd. L349804 H 43.2368048 -76.9583096 2015-04-13 16:15:00 obsr528918 S22854304 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321609585 2016-09-12 10:40:05 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 ASP, Salamanca, Park Road L3660664 P 42.14675 -78.72343 2015-05-20 16:47:00 obsr1424559 S23555910 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323940201 2018-08-04 17:30:40 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata X United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kanyoo Trail L152120 H 43.1168988 -78.430624 2015-05-30 10:33:00 obsr1092576 S23704472 Traveling P22 EBIRD 43.0 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296512987 2015-02-13 17:15:43 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 1 United States US New York US-NY Herkimer US-NY-043 13.0 Route 167 - Town of Manheim L649785 P 43.0667559 -74.7947502 2015-02-12 12:15:00 obsr2694889 S21805380 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314746260 2020-03-15 09:14:53 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 10 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-01 12:10:00 obsr2096529 S23168056 Traveling P22 EBIRD 35.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322179126 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-23 05:53:00 obsr2512689 S23591617 Traveling P22 EBIRD 254.0 4.023 15.0 1 G1285606 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308871556 2021-12-19 10:32:19.574298 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-04-10 09:05:00 obsr1167884 S22785108 Traveling P22 EBIRD 115.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304006988 2021-03-26 07:30:35.289997 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 2 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-03-18 09:30:00 obsr2137468 S22419478 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300006985 2021-04-01 12:11:50.996293 11494 species avibase-20C2214E American Kestrel Falco sparverius N X United States US New York US-NY Seneca US-NY-099 13.0 Seybolt Road, N of Bait Ponds L882643 H 42.8684157 -76.7654228 2015-02-27 14:34:00 obsr1721609 S22103901 Traveling P22 EBIRD 92.0 4.828 3.0 1 G1162959 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321001810 2021-03-26 06:21:54.883933 11371 species avibase-75600969 Northern Flicker Colaptes auratus N X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-18 15:57:00 obsr152435 S23518826 Traveling P22 EBIRD 82.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297598470 2021-04-01 12:45:19.712958 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-16 10:40:00 obsr258431 S21902510 Stationary P21 EBIRD 20.0 9.0 1 G1149057 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291474642 2021-11-09 21:56:59.12055 6361 issf avibase-0C55DFCC Iceland Gull Larus glaucoides Iceland Gull (kumlieni) Larus glaucoides kumlieni 2 Unknown Sex, Adult (2) United States US New York US-NY Ulster US-NY-111 13.0 Winter Waterfowl Count, Sector F L3298078 P 41.9068176 -74.0655327 2015-01-17 08:00:00 obsr1482758 S21383387 Traveling P22 EBIRD 315.0 48.28 2.0 1 G1112072 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312716229 2021-03-23 16:39:03.255227 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-25 06:36:00 obsr1958124 S23042919 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295657567 2021-12-10 08:21:29.396662 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-08 08:00:00 obsr2534001 S21734677 Traveling P22 EBIRD 420.0 16.093 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305143013 2021-03-26 06:12:17.833181 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-03-24 08:30:00 obsr479109 S22506275 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305680792 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus N 7 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-03-27 08:00:00 obsr2759466 S22547981 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298942552 2015-02-22 18:23:42 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Erie US-NY-029 13.0 Majors Park L1745589 H 42.7481082 -78.6100658 2015-02-22 10:30:00 obsr2939916 S22019687 Stationary P21 EBIRD 43.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312580369 2021-04-01 12:25:32.91759 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Wyoming US-NY-121 13.0 Carlton Hill MUA L153518 H 42.8317983 -78.1484556 2015-04-24 12:40:00 obsr660214 S23033371 Traveling P22 EBIRD 145.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305338462 2021-11-09 20:57:30.35263 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Rockland US-NY-087 30.0 10962 Orangeburg L171741 PC 41.045967 -73.9647 2015-03-22 17:00:00 obsr2448283 S22521257 Traveling P22 EBIRD 15.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313062220 2021-03-23 16:39:03.255227 11528 species avibase-F3DA111C Merlin Falco columbarius 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-26 09:02:00 obsr1958124 S23063879 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311173940 2021-04-01 10:49:39.496318 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-04-19 07:38:00 obsr1655171 S22940184 Traveling P22 EBIRD 45.0 0.483 2.0 1 G1230111 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS314225831 2021-03-30 19:29:33.633096 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 16 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-24 16:18:00 obsr2939887 S23136246 Traveling P22 EBIRD 76.0 1.8 3.0 1 G1243634 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296484502 2015-02-13 15:33:44 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 4 United States US New York US-NY Suffolk US-NY-103 30.0 Saint James L852912 T 40.879 -73.15676 2015-02-12 07:00:00 obsr72402 S21802578 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320695280 2021-04-01 12:26:53.827486 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-17 15:35:00 obsr2270510 S23500216 Traveling P22 EBIRD 26.0 0.322 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294173033 2021-04-01 12:32:15.282601 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-01-31 09:50:00 obsr1348614 S21616062 Stationary P21 EBIRD 18.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323650446 2021-03-24 19:30:07.33826 303 species avibase-B59E1863 Canada Goose Branta canadensis N 2 United States US New York US-NY Cortland US-NY-023 28.0 AviCor5 L3513947 H 42.7868405 -75.9281065 2015-05-28 14:48:00 obsr2279567 S23683382 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386090520 2020-08-23 12:17:54 406 species avibase-27B2749A Wood Duck Aix sponsa X United States US New York US-NY Schenectady US-NY-093 13.0 1381 Clifton Park Road, Niskayuna, NY L4427247 P 42.8123914 -73.8958481 2015-03-22 12:00:00 obsr2413557 S28571171 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317119154 2021-03-30 19:13:38.458673 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-05-08 09:22:00 obsr2595828 S23301801 Traveling P22 EBIRD 50.0 0.322 2.0 1 G1257533 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298781314 2021-01-26 11:54:44.804994 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-02-21 10:31:00 obsr606693 S22006558 Incidental P20 EBIRD 3.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299109206 2021-04-26 04:57:02.963704 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 25 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-22 13:30:00 obsr454647 S22035237 Traveling P22 EBIRD 120.0 0.805 2.0 1 G1157090 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294121068 2021-11-09 18:43:47.87054 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 20 United States US New York US-NY Dutchess US-NY-027 13.0 Morse Hill Rd L3316800 P 41.89612 -73.570316 2015-01-31 07:30:00 obsr1433400 S21611923 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316406599 2021-03-19 16:02:45.308962 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-05-06 06:15:00 obsr1830659 S23261094 Traveling P22 EBIRD 45.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304448215 2021-03-24 20:23:39.258075 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 5 United States US New York US-NY Suffolk US-NY-103 30.0 Long Beach Rd L476693 P 40.905307 -73.1955528 2015-03-21 17:05:00 obsr725344 S22453400 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321277191 2021-04-01 11:15:31.646886 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-05-19 11:25:00 obsr187432 S23535562 Traveling P22 EBIRD 45.0 1.609 2.0 1 G1281359 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314289314 2021-03-23 16:48:08.60516 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-29 16:40:00 obsr214789 S23140404 Traveling P22 EBIRD 45.0 6.437 2.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311184608 2021-04-01 11:30:42.037277 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-19 06:15:00 obsr1433400 S22940878 Traveling P22 EBIRD 180.0 6.276 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317543581 2021-04-01 10:53:25.818871 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor13 L3513955 H 42.5391611 -76.0407839 2015-05-09 12:47:00 obsr620377 S23326452 Stationary P21 EBIRD 9.0 2.0 1 G1272242 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308213256 2021-03-19 16:02:45.308962 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 16 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-04-07 08:55:00 obsr800690 S22735398 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317048340 2021-03-24 19:48:44.880783 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-07 19:43:00 obsr1545618 S23297859 Traveling P22 EBIRD 53.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308700117 2017-08-16 17:01:14 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-09 11:52:00 obsr642516 S22772598 Stationary P21 EBIRD 249.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317992909 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 07:20:00 obsr1601967 S23351029 Traveling P22 EBIRD 400.0 40.233 1.0 1 G1261215 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304620133 2020-05-16 18:11:44 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Otsego US-NY-077 28.0 207 Stoller Hill Rd L3359197 P 42.7034192 -75.0299799 2015-03-22 07:58:00 obsr131845 S22466109 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303577899 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-16 12:30:00 obsr2078092 S22386183 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289723540 2016-09-12 10:27:59 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-03 10:30:00 obsr2475075 S21241260 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298328702 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY New York US-NY-061 Randalls Island--saltmarsh at Little Hell Gate Inlet L1785361 H 40.7913671 -73.9265029 2015-02-14 12:57:00 obsr1548221 S21967249 Traveling P22 EBIRD 66.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS317545776 2021-03-26 06:29:56.44369 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-05-09 12:37:00 obsr934639 S23326563 Traveling P22 EBIRD 28.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303161576 2015-03-15 17:25:36 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 300 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-03-14 16:38:00 obsr1655171 S22353253 Stationary P21 EBIRD 2.0 2.0 1 G1181045 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320322901 2021-04-01 11:15:31.646886 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 11:40:00 obsr2519357 S23480502 Traveling P22 EBIRD 285.0 8.047 2.0 1 G1273909 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318879774 2015-05-16 10:13:05 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area - NCAW L473419 P 43.091096 -77.3856997 2015-05-11 09:50:00 obsr2113616 S23399961 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309144640 2021-04-01 10:58:47.067498 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-04-11 11:25:00 obsr408487 S22803707 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298431134 2021-04-01 12:45:19.712958 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana N 5 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-17 16:00:00 obsr2078798 S21976612 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309307074 2021-01-26 11:55:02.346497 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-04-12 07:08:00 obsr606693 S22814465 Traveling P22 EBIRD 21.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290505033 2021-04-01 12:14:19.266649 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Rd., Triton Lane L296189 H 40.8219025 -72.5469155 2015-01-11 11:30:00 obsr547602 S21305067 Traveling P22 EBIRD 30.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298879070 2021-11-09 21:17:58.494129 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Ulster US-NY-111 28.0 Lippincott Rd., Wallkill L1097498 H 41.6194441 -74.1931401 2015-02-21 13:20:00 obsr2514491 S22014410 Stationary P21 EBIRD 5.0 4.0 1 G1155617 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307186956 2015-07-09 21:50:33 303 species avibase-B59E1863 Canada Goose Branta canadensis 20 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-03 14:50:00 obsr2211210 S22661306 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311773003 2015-05-07 17:07:25 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-21 07:09:00 obsr455249 S22978710 Traveling P22 EBIRD 14.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS502599363 2021-04-01 11:30:42.037277 660 spuh avibase-CB56BEF1 scoter sp. Melanitta sp. X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-04-25 07:38:00 obsr320411 S37023578 Area P23 EBIRD 555.0 0.0 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288735939 2021-03-26 07:20:31.408164 1796 species avibase-018B3169 Horned Grebe Podiceps auritus N 4 United States US New York US-NY Suffolk US-NY-103 30.0 Lily Pond County Park L523536 H 40.8330257 -73.127482 2015-01-03 09:00:00 obsr1848026 S21161904 Traveling P22 EBIRD 140.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299030678 2018-08-04 16:58:05 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Washington US-NY-115 13.0 US-NY-Fort Edward-3 Bridge St L3408439 P 43.266979 -73.585567 2015-02-22 15:03:00 obsr1165633 S22026856 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318600619 2021-03-26 06:29:56.44369 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Monroe US-NY-055 13.0 University of Rochester--River Front and Pedestrian Bridge L899443 H 43.1310098 -77.6327848 2015-05-11 12:13:00 obsr2678807 S23383566 Traveling P22 EBIRD 50.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298719255 2021-03-24 20:52:47.158779 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 Unknown Sex, Immature (1) United States US New York US-NY Yates US-NY-123 13.0 Seneca Lake, Plum Point Rd. L1047169 H 42.5944014 -76.9216883 2015-02-21 09:55:00 obsr1092576 S22001482 Traveling P22 EBIRD 18.0 2.414 2.0 1 G1154745 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313059143 2021-03-26 06:12:17.833181 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-25 17:30:00 obsr1655171 S23063686 Traveling P22 EBIRD 90.0 2.414 3.0 1 G1240633 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312109748 2021-11-15 03:06:58.889978 26109 species avibase-BAC33609 Brown Creeper Certhia americana 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-21 19:00:00 obsr2072398 S23000688 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1231680 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320291179 2021-03-19 16:44:35.607263 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-16 06:50:00 obsr2504709 S23478847 Traveling P22 EBIRD 110.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293190977 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 12 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-25 13:30:00 obsr547602 S21538212 Traveling P22 EBIRD 90.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301959354 2015-03-09 11:12:11 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-09 09:00:00 obsr1165633 S22253163 Stationary P21 EBIRD 55.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308004807 2018-08-04 17:06:14 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Richmond US-NY-085 30.0 Willowbrook Park L519640 H 40.6014415 -74.1580582 2015-04-06 12:31:00 obsr1958124 S22719485 Rusty Blackbird Spring Migration Blitz P41 EBIRD 33.0 0.644 2.0 1 G1208440 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295474723 2021-11-09 22:04:47.967972 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-07 16:12:00 obsr1545384 S21720114 Stationary P21 EBIRD 63.0 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311602657 2021-03-24 19:48:44.880783 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Monroe US-NY-055 13.0 Mt. Hope Cemetery L249453 H 43.1287817 -77.6206675 2015-04-20 13:51:00 obsr1958774 S22967391 Traveling P22 EBIRD 57.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295642639 2021-03-26 07:07:10.758746 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 10 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-02-08 17:25:00 obsr1958124 S21733520 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314483293 2022-02-17 14:32:23.002448 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-30 14:30:00 obsr642516 S23152330 Traveling P22 EBIRD 70.0 1.609 2.0 0 G1244786 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293035125 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-23 11:30:00 obsr1494607 S21525665 Traveling P22 EBIRD 120.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301805727 2021-12-10 08:21:29.396662 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-08 13:31:00 obsr839844 S22241867 Traveling P22 EBIRD 79.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303281143 2021-11-09 21:23:47.89824 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-03-15 10:06:00 obsr1136997 S22362324 Traveling P22 EBIRD 99.0 1.287 2.0 1 G1180638 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324049960 2015-05-30 19:16:24 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Pond House L3573738 P 42.6579532 -74.0361866 2015-05-29 17:15:00 obsr1635947 S23711067 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302031617 2015-03-09 16:08:05 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 1 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-03-09 15:55:00 obsr288410 S22258651 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317367715 2021-03-26 06:09:25.361188 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Broome US-NY-007 28.0 917 grant street L1861629 P 42.1114312 -76.0806034 2015-05-08 08:00:00 obsr1947568 S23315348 Stationary P21 EBIRD 360.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292539998 2021-03-17 20:40:01.119925 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X 4 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-01-21 14:40:00 obsr881968 S21487055 Stationary P21 EBIRD 7.0 3.0 1 G1118987 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320097546 2021-03-19 16:02:45.308962 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-16 06:05:00 obsr800690 S23469117 Traveling P22 EBIRD 254.0 3.219 2.0 1 G1273111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300964127 2021-03-26 06:29:56.44369 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-03-04 16:05:00 obsr934639 S22176543 Traveling P22 EBIRD 70.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322786841 2021-03-23 17:18:00.959502 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-05-25 06:22:00 obsr1154 S23626530 Traveling P22 EBIRD 153.0 1.77 3.0 1 G1288936 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320342480 2021-03-19 16:19:20.977326 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-16 14:00:00 obsr2096529 S23481478 Traveling P22 EBIRD 155.0 0.805 2.0 1 G1274011 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317247094 2021-11-15 03:06:58.889978 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 08:10:00 obsr800463 S23308635 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306073981 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-29 10:00:00 obsr1489009 S22576819 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317924047 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-09 11:15:00 obsr1555046 S23346990 Traveling P22 EBIRD 180.0 6.437 2.0 1 G1261102 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298695563 2021-03-26 07:20:31.408164 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 5 United States US New York US-NY Suffolk US-NY-103 30.0 Brookhaven, Old Stump Road L1796581 P 40.774188 -72.89986 2015-02-20 06:47:00 obsr613775 S21999394 Stationary P21 EBIRD 53.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298846991 2021-03-26 07:07:10.758746 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 70 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-02-21 12:15:00 obsr1893950 S22011849 Traveling P22 EBIRD 8.0 0.322 2.0 1 G1155356 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310128640 2021-12-08 07:58:41.562209 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-14 17:30:00 obsr2206421 S22871097 Rusty Blackbird Spring Migration Blitz P41 EBIRD 54.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS548593921 2021-03-19 16:29:59.503892 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Jefferson US-NY-045 US-NY_805 Point Peninsula Bird Conservation Area L1367385 H 43.9953255 -76.2449646 2015-03-14 14:05:00 obsr2188450 S40446289 Traveling P22 EBIRD 145.0 40.234 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314007925 2021-04-01 11:15:31.646886 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-04-29 08:25:00 obsr1711339 S23122996 Traveling P22 EBIRD 86.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320029105 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 15:45:00 obsr2277801 S23465184 Historical P62 EBIRD 165.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314593048 2021-04-01 11:54:40.172593 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-04-30 08:00:00 obsr666331 S23159203 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306722072 2017-01-06 19:18:59 5134 species avibase-E893F98D Clapper Rail Rallus crepitans 2 United States US New York US-NY Richmond US-NY-085 30.0 Wolfe's Pond Park--Acme Pond L1131894 H 40.5222942 -74.1931951 2015-04-01 13:04:00 obsr1958124 S22626962 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293733124 2021-03-26 06:29:56.44369 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 15 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-28 15:27:00 obsr934639 S21581068 Traveling P22 EBIRD 35.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310490324 2021-03-26 06:20:37.302746 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Greene US-NY-039 13.0 wildwing park catskill L749524 P 42.2294707 -73.8825417 2015-04-16 07:30:00 obsr2515158 S22896040 Stationary P21 EBIRD 495.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322763488 2021-03-26 06:29:56.44369 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 8 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-25 07:41:00 obsr334398 S23625071 Traveling P22 EBIRD 107.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310334939 2021-11-09 19:51:09.255083 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-04-15 17:15:00 obsr1628992 S22885049 Traveling P22 EBIRD 135.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321174338 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 14:00:00 obsr2182516 S23529380 Traveling P22 EBIRD 150.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306362424 2018-08-04 17:04:48 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 10 United States US New York US-NY Oswego US-NY-075 13.0 Mallory Pond L1236257 P 43.3235542 -76.1184955 2015-03-30 16:48:00 obsr979921 S22598770 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293246641 2021-11-09 18:43:47.995785 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Dutchess US-NY-027 13.0 Allen Road, Salt Point, NY L3318081 P 41.8292501 -73.7998928 2015-01-25 10:00:00 obsr2175245 S21542503 Stationary P21 EBIRD 20.0 2.0 1 G1123241 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306977702 2021-04-01 11:30:42.037277 681 species avibase-407E2CA8 Common Merganser Mergus merganser N X United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-04-02 13:15:00 obsr215694 S22645695 Traveling P22 EBIRD 40.0 0.805 12.0 1 G1201660 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288719269 2021-11-09 20:59:08.238638 27616 species avibase-D77E4B41 American Robin Turdus migratorius 125 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-01-03 08:30:00 obsr473055 S21160596 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309855619 2021-03-31 04:02:52.909278 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-04-13 18:44:00 obsr2588479 S22851678 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314127654 2021-03-24 20:11:57.676649 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 6 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-29 09:00:00 obsr1633923 S23130146 Traveling P22 EBIRD 480.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS295391359 2021-12-03 21:50:44.732892 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-02-07 13:05:00 obsr1958124 S21713369 Traveling P22 EBIRD 30.0 1.287 2.0 1 G1137886 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292163244 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 15 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-20 15:49:00 obsr934639 S21437043 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303298254 2021-03-24 19:27:13.077399 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-03-15 10:10:00 obsr142874 S22363644 Stationary P21 EBIRD 290.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324315325 2018-08-06 22:31:33 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 6 United States US New York US-NY Delaware US-NY-025 28.0 Beaverkill Valley Road (Delaware County) L7152184 P 41.9671413 -74.8916316 2015-05-31 08:54:00 obsr1788273 S23728241 Traveling P22 EBIRD 36.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304682174 2021-04-01 12:32:15.282601 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-22 12:45:00 obsr87415 S22470791 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290440007 2021-03-30 19:19:56.775388 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 1 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, Deep Run Park, Gorham L661694 H 42.8205251 -77.2593784 2015-01-11 15:13:00 obsr749440 S21299611 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317243698 2021-03-26 07:56:20.588749 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-08 10:55:00 obsr916370 S23308426 Traveling P22 EBIRD 95.0 3.058 5.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295398278 2021-03-26 08:14:57.071052 11371 species avibase-75600969 Northern Flicker Colaptes auratus 8 United States US New York US-NY Westchester US-NY-119 28.0 Our House L475950 P 41.3454114 -73.7258604 2015-02-07 14:00:00 obsr2078798 S21713901 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305792085 2021-04-01 11:15:31.646886 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. N 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field, Kings Co. L1341687 P 40.5925957 -73.8870594 2015-03-28 09:45:00 obsr827632 S22556219 Traveling P22 EBIRD 105.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314984064 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 07:15:00 obsr1807494 S23181575 Traveling P22 EBIRD 360.0 4.828 28.0 1 G1247342 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1014287731 2021-03-30 12:05:58.533651 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Nassau US-NY-059 30.0 North Woodmere Park L3514361 H 40.641285 -73.7363824 2015-04-15 14:30:00 obsr2284156 S76439029 Traveling P22 EBIRD 30.0 0.805 2.0 1 G5921041 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318632722 2021-04-01 12:31:09.823741 32955 species avibase-41062654 Northern Parula Setophaga americana X United States US New York US-NY Livingston US-NY-051 13.0 Conesus Inlet WMA Marshbird survey L2831974 P 42.7026229 -77.7038956 2015-05-08 05:31:00 obsr1060479 S23385400 Traveling P22 EBIRD 149.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293092973 2021-04-01 11:15:31.646886 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica N X United States US New York US-NY Kings US-NY-047 US-NY_1722 Dead Horse Point L169814 H 40.579594 -73.89466 2015-01-25 08:30:00 obsr2404047 S21530519 Traveling P22 EBIRD 80.0 2.414 2.0 1 G1124405 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292769754 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-01-23 11:40:00 obsr904434 S21505048 Traveling P22 EBIRD 30.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298319293 2015-02-18 20:26:25 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Chenango US-NY-017 28.0 Rte 206 between Harrington & Bowbell Rds L3398199 P 42.3205216 -75.7005563 2015-02-18 09:00:00 obsr2855945 S21966346 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302746925 2015-03-12 23:02:37 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Westchester US-NY-119 28.0 Half Moon Bay home L3253911 P 41.1967264 -73.8883481 2015-03-11 10:30:00 obsr114791 S22320619 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308331791 2015-04-07 18:31:12 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Erie US-NY-029 13.0 Home L2093742 P 42.7338768 -78.7242615 2015-04-03 08:30:00 obsr916033 S22744177 Stationary P21 EBIRD 2.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288882912 2021-11-01 23:11:19.414929 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY Kings US-NY-047 Coney Island Beach & Boardwalk L845817 H 40.5719793 -73.9778996 2015-01-03 08:15:00 obsr876649 S21175866 Traveling P22 EBIRD 105.0 1.207 12.0 1 G1093829 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323168964 2021-04-27 05:37:04.934789 447 species avibase-C235A4D7 Gadwall Mareca strepera 5 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-05-22 11:28:00 obsr1987335 S23651031 Traveling P22 EBIRD 35.0 1.127 2.0 1 G1291559 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308432461 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-08 07:30:00 obsr1229227 S22751988 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301394890 2018-08-04 16:58:55 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 30 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Oswego-2847 NY-48 L3461000 P 43.401671 -76.475051 2015-03-07 11:47:00 obsr184660 S22209973 Stationary P21 EBIRD 4.0 4.0 1 G1168755 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308661517 2019-12-02 15:22:15 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Lansing: The Strand: Scott Haber's feeders L3550573 P 42.4859972 -76.4754036 2015-04-07 14:16:00 obsr2760150 S22769151 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290438607 2018-08-04 16:53:08 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 20 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-01-11 12:00:00 obsr59643 S21299516 Stationary P21 EBIRD 12.0 12.0 1 G1105493 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302657256 2021-03-30 19:37:33.521815 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-03-09 15:17:00 obsr1721609 S22313761 Stationary P21 EBIRD 49.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305766009 2021-11-15 03:06:58.889978 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-21 14:15:00 obsr2797341 S22554521 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321315904 2021-04-01 11:30:42.037277 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-18 17:00:00 obsr2277801 S23537861 Historical P62 EBIRD 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318155196 2021-03-26 06:17:19.712573 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Buffalo and Erie Co. Naval and Military Park L3299181 H 42.8776565 -78.8792379 2015-05-10 08:08:00 obsr2071643 S23359357 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000641 2021-03-26 07:56:20.588749 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-09 16:00:00 obsr2218212 S23775913 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316769569 2021-04-01 11:24:19.637193 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 35 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-05-07 06:29:00 obsr1958774 S23282239 Traveling P22 EBIRD 42.0 0.483 2.0 1 G1291692 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310287561 2016-09-12 10:28:01 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-04-13 10:00:00 obsr2475075 S22881715 Stationary P21 EBIRD 570.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298943340 2015-02-22 11:20:55 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 8 United States US New York US-NY Nassau US-NY-059 30.0 Nassau Street, Bellmore L1925703 P 40.6639892 -73.5328567 2015-01-26 obsr902950 S22019753 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299332794 2015-02-24 08:55:03 447 species avibase-C235A4D7 Gadwall Mareca strepera 8 United States US New York US-NY Essex US-NY-031 13.0 magic triangle L2415718 P 44.266838 -73.364296 2015-02-22 15:00:00 obsr2105231 S22052385 Traveling P22 EBIRD 30.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309496108 2021-11-15 03:06:58.889978 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-12 15:30:00 obsr1927179 S22826145 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317979283 2021-04-01 11:30:42.037277 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca N X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park--Muscota Marsh L2697698 H 40.8740092 -73.918705 2015-05-09 10:30:00 obsr2072398 S23350328 Stationary P21 EBIRD 15.0 2.0 1 G1261100 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305378046 2022-02-18 10:47:29.953615 11371 species avibase-75600969 Northern Flicker Colaptes auratus 8 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-26 08:32:00 obsr1062070 S22524513 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312818739 2015-04-26 21:36:42 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Tompkins US-NY-109 28.0 West Danby Fire Station L1160446 P 42.3130842 -76.5297318 2015-04-25 13:07:00 obsr887540 S23049306 Stationary P21 EBIRD 28.0 3.0 1 G1238417 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315402344 2021-11-09 18:36:27.898762 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-04-08 15:00:00 obsr2786327 S23204294 Traveling P22 EBIRD 60.0 2.736 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314288073 2021-03-19 16:25:42.617988 6526 species avibase-4D2FF6F1 Common Tern Sterna hirundo 2 United States US New York US-NY Essex US-NY-031 13.0 Ticonderoga Ferry and Boat Launch L2384243 H 43.853925 -73.3852333 2015-04-30 07:09:00 obsr2420101 S23140337 Traveling P22 EBIRD 47.0 0.322 2.0 1 G1247224 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS360465321 2021-03-19 16:02:45.308962 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-16 08:00:00 obsr246469 S26406575 Stationary P21 EBIRD 240.0 18.0 1 G1508800 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301798010 2021-11-09 18:43:49.061486 622 species avibase-50566E50 Lesser Scaup Aythya affinis 3 United States US New York US-NY Dutchess US-NY-027 28.0 Purgatory Hill L3345412 P 41.5670731 -73.566159 2015-03-08 10:30:00 obsr1058852 S22241240 Stationary P21 EBIRD 80.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289240753 2021-03-30 19:29:33.633096 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 27 United States US New York US-NY Suffolk US-NY-103 30.0 Mount Sinai Harbor, Shore Road L808919 P 40.9542335 -73.0278397 2015-01-04 14:45:00 obsr395994 S21203368 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309132455 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-11 08:10:00 obsr384772 S22802891 Traveling P22 EBIRD 320.0 8.047 2.0 1 G1214489 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307408039 2021-03-26 07:56:20.588749 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-04 08:04:00 obsr1982614 S22677553 Traveling P22 EBIRD 60.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309413861 2021-04-01 11:15:31.646886 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 6 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-12 09:31:00 obsr1189028 S22821031 Traveling P22 EBIRD 220.0 5.633 2.0 1 G1216108 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306956508 2021-04-01 10:53:25.818871 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 119 United States US New York US-NY Cortland US-NY-023 28.0 Yaman Park L1887040 H 42.6093841 -76.158183 2015-04-02 13:41:00 obsr1696616 S22644145 Stationary P21 EBIRD 7.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS300295969 2021-04-26 04:57:02.963704 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 5 Male, Adult (2); Female, Adult (3) United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-01 08:55:00 obsr642993 S22127750 Traveling P22 EBIRD 190.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310629686 2021-04-01 11:30:42.037277 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-17 09:00:00 obsr2706811 S22905670 Traveling P22 EBIRD 120.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319690776 2015-05-14 20:52:14 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2737378 P 42.7558333 -78.8616667 2015-05-14 09:15:00 obsr436899 S23446302 Stationary P21 EBIRD 315.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318848608 2021-03-30 19:13:38.458673 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-11 09:32:00 obsr528918 S23397858 Traveling P22 EBIRD 323.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305981767 2021-03-26 07:07:10.758746 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-03-29 09:53:00 obsr1958124 S22570278 Traveling P22 EBIRD 3.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291495772 2021-04-01 12:14:19.266649 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea X United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-17 08:30:00 obsr547602 S21385063 Traveling P22 EBIRD 60.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295660964 2021-12-10 08:21:29.396662 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-08 14:30:00 obsr369788 S21734896 Traveling P22 EBIRD 90.0 0.805 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313460832 2015-04-30 10:51:23 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Greenhurst on Chautauqua Lake L3594824 P 42.1160961 -79.3118799 2015-04-27 09:00:00 obsr2418 S23088465 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303039076 2021-04-22 12:55:05.75868 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Oneida US-NY-065 13.0 Waterville Home Grounds L1257983 P 42.9688865 -75.3351134 2015-03-14 11:00:00 obsr2139704 S22343719 Stationary P21 EBIRD 135.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307269230 2021-04-01 11:23:28.992084 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Lewis US-NY-049 13.0 US-NY-Carthage-10585 2nd Rd L3535742 P 43.927577 -75.493508 2015-04-03 12:50:00 obsr417887 S22667250 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314921711 2022-02-17 14:32:23.002448 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-02 08:30:00 obsr2289692 S23178288 Traveling P22 EBIRD 150.0 1.931 5.0 1 G1247128 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295613716 2015-02-09 05:35:12 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 20 United States US New York US-NY Ontario US-NY-069 13.0 14A & Hall L3347476 P 42.7827716 -77.0691347 2015-02-08 09:15:00 obsr2832110 S21731087 Traveling P22 EBIRD 10.0 0.805 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288993200 2021-03-30 19:39:10.250398 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 47 United States US New York US-NY Nassau US-NY-059 30.0 Cammanns Pond Park L444842 H 40.6537553 -73.5509445 2015-01-04 11:15:00 obsr1488063 S21184385 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297312350 2015-02-15 19:52:29 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-02-15 07:00:00 obsr290506 S21877087 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301510641 2021-03-30 19:07:52.958398 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-22 14:00:00 obsr2277801 S22218112 Historical P62 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315760641 2021-04-01 11:15:31.646886 6029 species avibase-D4A73324 Solitary Sandpiper Tringa solitaria N 4 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-04 06:50:00 obsr1605975 S23223861 Traveling P22 EBIRD 350.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298322317 2021-03-23 17:17:33.263343 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Yates US-NY-123 13.0 West Bluff Dr. L2687514 P 42.5507092 -77.1423483 2015-02-17 13:00:00 obsr228875 S21966605 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316149620 2021-04-01 11:30:42.037277 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 09:30:00 obsr2448505 S23245814 Traveling P22 EBIRD 180.0 4.828 2.0 1 G1253571 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308031406 2021-03-26 07:20:31.408164 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 7 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Captree Island L2865928 H 40.6469348 -73.2632673 2015-04-03 09:41:00 obsr564905 S22721377 Traveling P22 EBIRD 9.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288257278 2021-03-30 19:07:52.958398 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-01 14:01:00 obsr1659461 S21122406 Traveling P22 EBIRD 140.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292534934 2021-03-23 16:52:36.900075 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 8 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Shinnecock Inlet, west L3087424 H 40.8421473 -72.4781388 2015-01-21 13:30:00 obsr1489009 S21486644 Traveling P22 EBIRD 30.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001495 2021-03-26 07:56:20.588749 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-26 09:00:00 obsr2218212 S23775938 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324163279 2021-11-09 18:29:40.19003 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY Dutchess US-NY-027 13.0 Barrytown Rd, Red Hook L2139298 P 42.0010507 -73.9219809 2015-05-25 08:40:00 obsr2228949 S23718479 Traveling P22 EBIRD 120.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307743704 2021-03-26 07:46:52.994574 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-04-03 16:43:00 obsr648176 S22700663 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313607150 2018-08-04 17:12:10 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 10 United States US New York US-NY Oswego US-NY-075 13.0 Mexico Bay/ Derby Hill L2812007 P 43.508223 -76.3105202 2015-04-25 11:00:00 obsr568671 S23097429 Stationary P21 EBIRD 30.0 7.0 1 G1240092 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295349319 2021-04-01 10:55:39.308231 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 5 United States US New York US-NY Erie US-NY-029 13.0 Buckhorn Island SP L164983 H 43.0606218 -78.9882132 2015-02-07 08:43:00 obsr1603345 S21710150 Traveling P22 EBIRD 238.0 5.23 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317295844 2015-05-08 19:32:51 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-05-08 19:00:00 obsr290506 S23311361 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311226234 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 09:10:00 obsr2152799 S22943327 Traveling P22 EBIRD 193.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294830503 2021-03-26 07:52:59.845315 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris N 5 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-31 08:45:00 obsr316199 S21668573 Area P23 EBIRD 85.0 2.59 2.0 1 G1135025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302325645 2021-04-01 12:32:15.282601 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 400 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-09 15:00:00 obsr2008637 S22286040 Traveling P22 EBIRD 75.0 0.402 4.0 1 G1172903 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310201497 2017-08-16 17:04:22 6285 species avibase-FB02DD96 Black-headed Gull Chroicocephalus ridibundus 2 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-04-15 07:45:00 obsr2842267 S22876033 Traveling P22 EBIRD 160.0 0.805 19.0 1 G1232165 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298840949 2021-04-01 11:49:53.573686 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 6 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-02-21 10:53:00 obsr1982614 S22011408 Traveling P22 EBIRD 130.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312807951 2021-04-01 10:51:06.899622 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-04-25 11:53:00 obsr2497657 S23048753 Traveling P22 EBIRD 88.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302102705 2021-03-30 19:38:56.569827 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe N 2 United States US New York US-NY Herkimer US-NY-043 13.0 Ashe Road & Vicinity L2764332 P 43.0173168 -74.7824969 2015-03-09 16:18:00 obsr316199 S22264266 Traveling P22 EBIRD 82.0 2.736 3.0 1 G1173124 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312260283 2021-04-01 12:14:19.266649 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Stony Brook University L2350778 H 40.9146933 -73.1215687 2015-04-23 08:01:00 obsr758734 S23011000 Traveling P22 EBIRD 57.0 2.4 2.0 1 G1232534 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311842423 2021-03-30 19:07:52.958398 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 07:30:00 obsr2363365 S22983392 Traveling P22 EBIRD 300.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303998062 2015-05-07 17:04:48 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm pine tree trail transect L2272446 P 42.3482223 -76.2996706 2015-03-19 07:27:00 obsr455249 S22418717 Traveling P22 EBIRD 5.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304774876 2015-10-03 13:12:22 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 3 United States US New York US-NY Tompkins US-NY-109 28.0 Lindsay-Parsons Biodiversity Preserve (FLLT) L109055 H 42.3101677 -76.5216895 2015-03-22 15:23:00 obsr1655171 S22477637 Traveling P22 EBIRD 41.0 0.644 2.0 1 G1190057 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313281688 2021-04-01 12:45:19.712958 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve--Swan Lake area L2724297 H 41.1098093 -73.8352114 2015-04-26 08:00:00 obsr1460601 S23076869 Traveling P22 EBIRD 150.0 5.633 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295164189 2015-02-06 08:02:31 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-02-05 08:07:00 obsr455249 S21694936 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319807543 2021-11-09 17:58:40.313796 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-15 06:58:00 obsr1732267 S23453218 Traveling P22 EBIRD 210.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155611 2021-03-26 06:07:45.516082 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-15 08:45:00 obsr128156 S21357350 Traveling P22 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303794215 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-17 09:45:00 obsr334398 S22403093 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302016976 2021-04-01 11:47:43.260314 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 7 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-03-09 13:58:00 obsr2945658 S22257487 Traveling P22 EBIRD 46.0 0.483 2.0 1 G1177756 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309062188 2021-12-10 08:21:29.396662 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 57 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-04-11 09:20:00 obsr258431 S22798585 Traveling P22 EBIRD 155.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296547575 2021-11-09 19:34:18.590596 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 8 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-02-13 14:30:00 obsr1665312 S21808644 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295397595 2021-04-01 12:45:19.712958 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Playland Lake Overlook (Hawk Watch Site) L92440 H 40.9683291 -73.6664001 2015-02-06 15:00:00 obsr2078798 S21713839 Traveling P22 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312887923 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-25 09:30:00 obsr585997 S23053310 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288770926 2021-11-09 21:56:49.555782 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus X United States US New York US-NY Ulster US-NY-111 28.0 JBNHS Wallkill Valley Raptors L3261415 P 41.7190555 -74.1366005 2015-01-03 08:00:00 obsr1446126 S21164690 Traveling P22 EBIRD 300.0 24.14 37.0 1 G1093120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321870980 2021-03-19 16:19:20.977326 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-20 15:30:00 obsr1379161 S23572298 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309178535 2021-04-01 11:15:31.646886 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 14 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 07:30:00 obsr2152799 S22806046 Traveling P22 EBIRD 300.0 8.047 1.0 1 G1214818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301257285 2018-08-04 16:58:50 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 6 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-06 14:30:00 obsr2716320 S22198220 Traveling P22 EBIRD 88.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306621624 2021-11-09 18:20:58.864231 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 6 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA--Kidd Ln. Gravel Rd. L1457415 H 42.041573 -73.9101222 2015-03-31 07:24:00 obsr1433400 S22619320 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301215010 2021-04-01 11:24:19.637193 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 10 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-03-05 09:25:00 obsr1782363 S22194954 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS328108453 2021-04-01 11:30:42.037277 6361 issf avibase-0C55DFCC Iceland Gull Larus glaucoides Iceland Gull (kumlieni) Larus glaucoides kumlieni 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-20 15:30:00 obsr2182516 S23996250 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305115038 2021-03-26 06:29:56.44369 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-24 16:10:00 obsr934639 S22504033 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310259858 2018-08-04 17:09:16 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Erie US-NY-029 Buffalo Small Boat Harbor L367923 P 42.8448369 -78.8637685 2015-04-15 10:55:00 obsr2871264 S22879784 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303828136 2015-03-18 09:18:00 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail and West Trail intersection shelter L301128 P 42.47736 -76.45312 2015-03-18 08:06:00 obsr2307843 S22405732 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311962485 2021-03-26 08:14:57.071052 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-04-21 07:10:00 obsr2918150 S22991181 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316265287 2021-03-26 07:30:35.289997 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--Comstock Knoll L290965 H 42.4498398 -76.4723566 2015-04-26 09:48:00 obsr1725472 S23253434 Traveling P22 EBIRD 60.0 0.805 3.0 1 G1239953 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306244840 2021-03-30 19:13:38.458673 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-03-29 12:00:00 obsr991026 S22589845 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314603491 2021-11-09 17:54:09.395076 447 species avibase-C235A4D7 Gadwall Mareca strepera 4 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook School Rd L1122291 P 41.8551144 -73.6171532 2015-05-01 09:00:00 obsr1917973 S23159804 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291717503 2021-03-23 17:00:13.087107 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-18 08:40:00 obsr1154 S21402166 Traveling P22 EBIRD 237.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308041968 2016-01-27 10:57:09 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Jefferson US-NY-045 13.0 Black River Fishing site L2127803 P 43.9789116 -75.8680201 2015-04-06 12:00:00 obsr2091520 S22722078 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288881957 2021-04-01 12:32:15.282601 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 19 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-01-03 07:00:00 obsr247620 S21175800 Traveling P22 EBIRD 480.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313401282 2021-04-01 11:24:19.637193 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 12 United States US New York US-NY Monroe US-NY-055 13.0 Lucien Morin Park L1745769 H 43.1666318 -77.5274502 2015-04-26 13:54:00 obsr408487 S23084770 Traveling P22 EBIRD 40.0 0.805 2.0 1 G1238810 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309967267 2015-04-14 12:03:17 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Franklin US-NY-033 14.0 Lake Colby Railroad Tracks L1509081 H 44.3364468 -74.1524597 2015-04-14 10:00:00 obsr2188170 S22859696 Traveling P22 EBIRD 45.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311025804 2021-11-09 19:46:58.593297 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Orange US-NY-071 28.0 Washington Lake (Orange Co.) L2329036 H 41.4926995 -74.0686655 2015-04-18 11:21:00 obsr1912104 S22931055 Traveling P22 EBIRD 38.0 1.609 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293443394 2018-08-04 16:55:10 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Delaware US-NY-025 28.0 Bridge St., Downsville L2384566 H 42.0755272 -74.9899937 2015-01-24 15:35:00 obsr1788273 S21558715 Traveling P22 EBIRD 16.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302536864 2019-07-23 17:27:53 483 species avibase-85625D75 Mallard Anas platyrhynchos 20 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach SP L502729 H 41.1286489 -72.2700955 2015-03-11 10:30:00 obsr531522 S22304648 Traveling P22 EBIRD 150.0 4.828 4.0 1 G1175461 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320927806 2021-04-01 11:15:31.646886 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) N X United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-18 13:04:00 obsr152435 S23513752 Traveling P22 EBIRD 34.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322800106 2018-08-06 22:31:08 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor26 L3513968 H 42.5409476 -76.1192138 2015-05-25 12:08:00 obsr2625207 S23627250 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290384322 2021-03-26 06:07:26.162322 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-01-11 08:30:00 obsr2700440 S21295263 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319024626 2018-08-06 22:29:43 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus X United States US New York US-NY Broome US-NY-007 28.0 King Street L2197366 P 42.2921674 -75.9153557 2015-05-12 07:25:00 obsr1044068 S23407924 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303583576 2021-03-26 07:56:20.588749 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 Male, Unknown Age (1); Female, Unknown Age (1) United States US New York US-NY Nassau US-NY-059 30.0 N 2nd St. L2585098 P 40.738664 -73.6975363 2015-03-16 08:30:00 obsr143739 S22386638 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310158651 2021-03-23 17:00:13.087107 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-15 07:04:00 obsr455249 S22873141 Traveling P22 EBIRD 18.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302605227 2021-03-24 20:33:47.533911 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Tompkins US-NY-109 13.0 Enfield, 16 Enfield Center Road East L3482410 P 42.43765 -76.57109 2015-03-12 10:15:00 obsr2673845 S22310206 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317203774 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Kings US-NY-047 Owls Head Park L304833 H 40.6403687 -74.0322153 2015-05-08 09:15:00 obsr2078092 S23306116 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302269652 2021-04-01 11:47:43.260314 303 species avibase-B59E1863 Canada Goose Branta canadensis 35 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-03-10 11:07:00 obsr2224244 S22280868 Traveling P22 EBIRD 54.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308935508 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-10 13:45:00 obsr186539 S22789918 Traveling P22 EBIRD 120.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309314848 2021-03-23 16:39:03.255227 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Richmond US-NY-085 US-NY_818 30.0 Bridge Creek, Western Ave. L880325 H 40.6324936 -74.1838624 2015-04-12 08:38:00 obsr1958124 S22814983 Stationary P21 EBIRD 6.0 2.0 1 G1216230 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300643235 2021-04-01 11:49:53.573686 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 11 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-02-28 10:41:00 obsr1481512 S22152309 Traveling P22 EBIRD 147.0 4.0 13.0 1 G1162162 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318285429 2021-03-30 19:13:38.458673 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-09 13:45:00 obsr528918 S23366351 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320133760 2021-03-19 16:02:45.308962 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-16 06:05:00 obsr290506 S23470939 Traveling P22 EBIRD 254.0 3.219 2.0 1 G1273111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297057603 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Monroe US-NY-055 13.0 9 Lemon Lane {Home} L3364084 P 43.160535 -77.72389 2015-02-14 09:00:00 obsr2329907 S21853743 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305155639 2021-03-26 07:30:35.289997 681 species avibase-407E2CA8 Common Merganser Mergus merganser 90 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-24 07:46:00 obsr2683910 S22507252 Traveling P22 EBIRD 60.0 0.644 2.0 1 G1191720 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319266590 2021-03-26 06:21:54.883933 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-13 07:39:00 obsr150415 S23422033 Traveling P22 EBIRD 86.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308369096 2015-04-07 21:10:56 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park L1397548 P 42.9638619 -78.9229789 2015-04-06 16:50:00 obsr2597186 S22746965 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312932049 2021-03-19 16:02:45.308962 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-04-25 16:30:00 obsr290506 S23055868 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294178029 2021-03-23 16:52:36.900075 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Suffolk US-NY-103 30.0 Sagg Bridge L505854 H 40.9185757 -72.2912621 2015-01-31 13:00:00 obsr598381 S21616429 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304978555 2021-05-31 11:49:18.789436 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 17 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson (General Area) L1827108 H 43.1930605 -76.2914843 2015-03-23 17:58:00 obsr2224244 S22493262 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300820483 2020-05-16 18:08:46 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 18 United States US New York US-NY Otsego US-NY-077 28.0 Home L2028000 P 42.7258934 -75.1045132 2015-02-16 14:15:00 obsr2122363 S22165868 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309941101 2018-08-04 17:09:06 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Fall Creek Rd. wetlands L1111423 H 42.5171015 -76.3409478 2015-04-14 07:50:00 obsr1655171 S22857908 Stationary P21 EBIRD 3.0 2.0 1 G1223893 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312071539 2021-03-19 16:44:35.607263 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Monroe US-NY-055 13.0 LaSalle's Landing Park L140438 H 43.1763487 -77.5259313 2015-04-21 17:55:00 obsr1962295 S22998288 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312254305 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 07:20:00 obsr152435 S23010613 Traveling P22 EBIRD 93.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303786547 2018-08-04 17:01:43 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-03-17 17:40:00 obsr1555046 S22402377 Stationary P21 EBIRD 5.0 2.0 1 G1186129 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS398702717 2021-11-15 03:06:58.889978 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 06:39:00 obsr1552744 S29427802 Traveling P22 EBIRD 294.0 5.15 3.0 1 G1735849 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309488426 2021-03-24 20:04:09.481678 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Oneida US-NY-065 13.0 Verona Beach State Park, Swamp Trail L2824450 P 43.1793372 -75.7156105 2015-04-12 08:40:00 obsr545221 S22825567 Traveling P22 EBIRD 130.0 3.219 2.0 1 G1217158 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294029926 2017-08-16 16:28:47 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 Male, Adult (1) United States US New York US-NY Ontario US-NY-069 13.0 The Swamp L1660257 P 42.8848133 -77.0413991 2015-01-30 14:40:00 obsr572658 S21604920 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314444650 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:30:00 obsr2078092 S23149665 Traveling P22 EBIRD 390.0 4.828 30.0 1 G1244636 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313205653 2021-04-01 11:30:42.037277 27380 species avibase-E53FC25C Swainson's Thrush Catharus ustulatus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 11:00:00 obsr2635084 S23072219 Traveling P22 EBIRD 180.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS364931204 2021-04-01 11:30:42.037277 34699 spuh avibase-CFD25837 passerine sp. Passeriformes sp. 1 United States US New York US-NY New York US-NY-061 30.0 Home -- Previous on UWS L3257300 P 40.7882588 -73.9802921 2015-01-01 obsr2277801 S26811896 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303648501 2021-03-23 17:00:13.087107 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 4 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--Snyder Rd. L763841 H 42.4976053 -76.4600587 2015-03-16 18:02:00 obsr241086 S22391621 Traveling P22 EBIRD 15.0 2.414 2.0 1 G1183038 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322721869 2021-03-19 16:44:35.607263 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Monroe US-NY-055 13.0 Kirkwood Rd. south to Slater Creek L823860 H 43.26855 -77.6372024 2015-05-25 05:36:00 obsr1696616 S23622549 Traveling P22 EBIRD 31.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302924878 2021-03-23 17:00:13.087107 30494 species avibase-240E3390 House Sparrow Passer domesticus 1275 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-13 17:23:00 obsr730231 S22334281 Traveling P22 EBIRD 40.0 0.563 2.0 1 G1178129 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294617325 2021-04-01 10:47:08.851048 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 12 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-02-02 16:19:00 obsr1764243 S21651204 Traveling P22 EBIRD 69.0 30.255 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304907859 2021-04-01 11:54:40.172593 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-23 14:45:00 obsr1958124 S22487348 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306244502 2015-05-07 17:06:12 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm creek trail transect L2272449 P 42.3462003 -76.3006094 2015-03-30 07:36:00 obsr455249 S22589825 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295949819 2021-11-09 22:04:47.967972 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-07 09:10:00 obsr2816169 S21757342 Traveling P22 EBIRD 172.0 56.327 2.0 1 G1516811 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311325861 2020-05-16 18:11:44 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Otsego US-NY-077 28.0 207 Stoller Hill Rd L3359197 P 42.7034192 -75.0299799 2015-04-19 15:00:00 obsr131845 S22946919 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313494970 2021-11-09 21:31:08.177013 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Ulster US-NY-111 13.0 Ulster Landing Park L1425202 H 42.0105983 -73.9456637 2015-04-27 10:20:00 obsr118701 S23090552 Traveling P22 EBIRD 103.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309194398 2021-11-09 21:31:40.219848 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-11 15:00:00 obsr2700041 S22807107 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323998361 2021-03-26 07:53:57.664705 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 10 United States US New York US-NY Livingston US-NY-051 13.0 Pole Bridge Rd, Avon L2843218 P 42.884392 -77.7360606 2015-05-30 15:00:00 obsr1529308 S23707890 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS570328591 2018-01-22 19:55:31 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 3 United States US New York US-NY Nassau US-NY-059 30.0 Sands Point Preserve L293460 H 40.8591053 -73.6970283 2015-04-11 obsr2509699 S42168591 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305650050 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-27 15:40:00 obsr454647 S22545485 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311323161 2021-03-26 06:21:54.883933 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 10:40:00 obsr2519357 S22949188 Traveling P22 EBIRD 260.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291077792 2021-03-23 17:22:05.708166 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 3 Male, Adult (1); Female, Adult (2) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-13 07:50:00 obsr1000124 S21351020 Area P23 EBIRD 82.0 2.59 2.0 1 G1109824 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315906055 2018-08-04 17:14:43 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 Male, Adult (4); Unknown Sex, Adult (2) United States US New York US-NY Fulton US-NY-035 14.0 Cline Road Marsh/Forest Loop L2499202 P 43.0665479 -74.65976 2015-05-04 11:00:00 obsr1000124 S23231899 Traveling P22 EBIRD 140.0 4.506 2.0 1 G1252395 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297991835 2021-03-24 21:12:31.336509 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 11 United States US New York US-NY Tioga US-NY-107 28.0 134 Church St. Apker Homestead L2229874 P 42.0298729 -76.3876953 2015-02-16 09:30:00 obsr1537249 S21938536 Stationary P21 EBIRD 260.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293142325 2021-11-09 20:44:39.499986 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Putnam US-NY-079 28.0 Constitution Marsh Audubon Center & Sanctuary L469459 H 41.4042697 -73.9342737 2015-01-23 09:30:00 obsr118940 S21534397 Traveling P22 EBIRD 30.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310548729 2021-11-15 03:06:58.889978 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-16 08:39:00 obsr1548221 S22900219 Traveling P22 EBIRD 69.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299269986 2021-03-24 20:23:39.258075 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-02-23 14:45:00 obsr1137265 S22047734 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291245368 2022-02-18 10:47:29.953615 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-01-16 07:15:00 obsr1062070 S21364737 Stationary P21 EBIRD 88.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293680159 2021-04-01 10:57:06.520339 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 2 United States US New York US-NY Essex US-NY-031 13.0 dog park L3323607 P 43.841747 -73.43177 2015-01-23 13:28:00 obsr2420101 S21577087 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS450217800 2021-03-24 20:33:47.533911 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Mt. Sapsucker L1772923 H 42.4817726 -76.449865 2015-03-16 12:25:00 obsr1655171 S22383943 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311972976 2021-03-30 19:07:52.958398 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 09:35:00 obsr1821546 S22991830 Traveling P22 EBIRD 245.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292088982 2021-03-26 07:30:35.289997 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 13.0 Overlook, Rte. 89 N of Hog Hole L479673 H 42.4647843 -76.5246248 2015-01-20 07:30:00 obsr1092576 S21431055 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS304583542 2021-03-19 16:02:45.308962 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-21 16:25:00 obsr290506 S22463508 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311769171 2021-03-24 20:58:04.794277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 Female, Adult (2); Unknown Sex and Age (1); Male, Adult (3) United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-04-20 08:30:00 obsr1680059 S22978463 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314847344 2021-03-24 19:23:17.886063 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-05-01 obsr1395007 S23174383 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291814506 2021-03-26 07:52:59.845315 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 6 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-16 08:07:00 obsr316199 S21409673 Area P23 EBIRD 85.0 2.59 2.0 1 G1114850 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309360182 2021-11-09 22:21:10.362064 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Reservoir - Sawkill Rd L787643 P 42.0128256 -74.0682793 2015-04-12 11:25:00 obsr1636520 S22817792 Stationary P21 EBIRD 15.0 3.0 1 G1215889 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294497850 2021-03-26 07:52:59.845315 483 species avibase-85625D75 Mallard Anas platyrhynchos 64 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-01 07:55:00 obsr1000124 S21641625 Area P23 EBIRD 150.0 2.59 2.0 1 G1135024 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295420378 2021-11-09 18:28:50.133002 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 26 United States US New York US-NY Dutchess US-NY-027 13.0 Home, Millbrook, NY L2119013 P 41.7923452 -73.6592703 2015-01-31 07:00:00 obsr1062217 S21715606 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310368937 2021-03-23 17:22:05.708166 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-04-15 06:30:00 obsr2694889 S22887394 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307801847 2021-03-19 16:02:45.308962 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 20 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309 -75.8817852 2015-04-05 08:00:00 obsr998593 S22704897 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303205907 2021-03-19 16:26:51.561076 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 14 United States US New York US-NY Franklin US-NY-033 14.0 US-NY-Saranac Lake-35 James St L2839009 P 44.331237 -74.139357 2015-03-15 07:35:00 obsr2630526 S22356364 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302462851 2021-04-01 11:15:31.646886 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-11 11:45:00 obsr2906952 S22298803 Traveling P22 EBIRD 35.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292534033 2021-11-09 19:34:18.590596 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-01-21 15:55:00 obsr1665312 S21486564 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297575395 2021-11-09 22:45:30.031526 3441 species avibase-24E39ACD Common Nighthawk Chordeiles minor 1 United States US New York US-NY Sullivan US-NY-105 28.0 Fauble Road L3359894 P 41.7976753 -74.9381458 2015-02-16 10:00:00 obsr444155 S21900342 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291100940 2015-04-15 11:42:51 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Tompkins US-NY-109 13.0 Scofield Rd. (north end), Lansing L367841 H 42.5564629 -76.4547586 2015-01-14 17:00:00 obsr596741 S21352956 Stationary P21 EBIRD 15.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309654134 2021-03-24 20:33:47.533911 7318 species avibase-C6772490 Yellow-crowned Night-Heron Nyctanassa violacea X United States US New York US-NY Tompkins US-NY-109 28.0 Mom & Dad's L3130585 P 42.3140997 -76.6017115 2015-04-12 16:00:00 obsr1311434 S22836678 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322057249 2019-08-07 16:03:31 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 S C2 S United States US New York US-NY Monroe US-NY-055 13.0 US-NY-MON Perinton--Pannell Rd. X Pannell Circle [new BBA line] L3664758 P 43.0626859 -77.3752123 2015-05-21 11:49:00 obsr606693 S23584111 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313039223 2015-04-26 05:46:13 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 3 United States US New York US-NY Oneida US-NY-065 13.0 Whitestown L210157 P 43.17351 -75.4187135 2015-04-18 obsr1384380 S23062433 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304644913 2021-04-01 12:14:19.266649 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 250 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Cedar Beach Marina L283643 H 40.6342526 -73.3447755 2015-03-21 12:25:00 obsr870166 S22467868 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305594915 2021-03-31 04:03:32.881251 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Richmond US-NY-085 30.0 Freshkills Park L910281 H 40.5775746 -74.1861379 2015-03-27 10:28:00 obsr155915 S22541356 Traveling P22 EBIRD 140.0 8.047 2.0 1 G2151601 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324563827 2015-06-01 23:41:08 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 Male, Adult (1) United States US New York US-NY Broome US-NY-007 28.0 917 grant street L1861629 P 42.1114312 -76.0806034 2015-05-05 10:00:00 obsr1947568 S23744770 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292851145 2021-04-01 12:32:15.282601 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 14 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-23 09:50:00 obsr186539 S21511535 Traveling P22 EBIRD 150.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314477901 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:15:00 obsr1152226 S23151957 Traveling P22 EBIRD 300.0 3.219 26.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297287733 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 4 United States US New York US-NY Kings US-NY-047 30.0 Cemetery of the Evergreens L1801271 P 40.6817096 -73.9016701 2015-02-15 17:00:00 obsr1382841 S21874880 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309968266 2021-03-22 08:58:29.008072 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-04-14 07:45:00 obsr2054320 S22859775 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295976057 2015-02-10 13:42:31 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Varna center L3351645 P 42.4537917 -76.4420342 2015-02-10 12:30:00 obsr1006348 S21759210 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304391439 2021-03-23 16:39:03.255227 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N 4 United States US New York US-NY Richmond US-NY-085 30.0 40.5380x-74.1498 - Mar 21, 2015, 12:44 PM L3503306 P 40.537999 -74.149786 2015-03-21 12:44:00 obsr1958124 S22449468 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301641457 2021-11-09 21:57:19.583063 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Ulster US-NY-111 13.0 884 DeWitt Lake rd. L3463931 P 41.8934368 -74.0270939 2015-03-08 08:00:00 obsr1466241 S22227979 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307759285 2021-03-30 19:29:33.633096 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-05 12:30:00 obsr247620 S22701767 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295129965 2021-03-26 07:52:59.845315 7200 species avibase-49D9148A Great Egret Ardea alba 7 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-05 08:07:00 obsr316199 S21692547 Area P23 EBIRD 78.0 2.59 2.0 1 G1136347 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312799918 2015-04-25 13:00:39 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Suffolk US-NY-103 30.0 Big Fresh Pond L3589148 P 40.9221306 -72.4212635 2015-04-25 11:10:00 obsr1864342 S23048314 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299793214 2021-04-01 11:30:42.037277 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-26 15:31:00 obsr924076 S22087631 Traveling P22 EBIRD 132.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313331572 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-04-26 09:40:00 obsr2504709 S23080005 Traveling P22 EBIRD 80.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311166269 2015-04-19 09:12:21 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Orleans US-NY-073 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Schoolhouse Marsh Overlook L153402 H 43.1460569 -78.3751774 2015-04-19 09:01:00 obsr2588479 S22939727 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317403156 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Plains Preserve L1575568 H 40.7240849 -73.5844534 2015-05-09 05:30:00 obsr2823378 S23317982 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291626109 2021-03-19 16:44:35.607263 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 10 United States US New York US-NY Monroe US-NY-055 13.0 Jeffords Rd (Monroe Co.) L2406511 P 43.00994 -77.63193 2015-01-18 10:10:00 obsr1097423 S21395291 Traveling P22 EBIRD 13.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304889013 2015-03-23 13:46:40 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 4 United States US New York US-NY Suffolk US-NY-103 30.0 Farm L137715 P 41.0795555 -72.4394913 2015-03-23 13:22:00 obsr2485753 S22485892 Traveling P22 EBIRD 24.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309424087 2021-05-21 00:06:20.034424 6189 species avibase-39F29B55 Common Murre Uria aalge 5 United States US New York US-NY Richmond US-NY-085 Mt. Loretto Unique Area L293510 H 40.5072899 -74.2180324 2015-04-12 12:22:00 obsr155915 S22821602 Traveling P22 EBIRD 35.0 0.805 3.0 1 G1216217 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS335414344 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 11 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-22 07:58:00 obsr1175815 S24536648 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310569008 2022-02-04 06:14:13.892644 7429 species avibase-1327AC55 Osprey Pandion haliaetus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-04-16 17:15:00 obsr1289811 S22901525 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312195140 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-04-21 07:30:00 obsr2449897 S23006634 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332419570 2021-03-19 16:44:35.607263 27616 species avibase-D77E4B41 American Robin Turdus migratorius 270 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-16 19:51:00 obsr334398 S24313912 Traveling P22 EBIRD 28.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309024131 2021-12-08 07:58:41.562209 32955 species avibase-41062654 Northern Parula Setophaga americana N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-06 14:45:00 obsr2182516 S22796134 Traveling P22 EBIRD 150.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319332380 2021-04-01 12:32:15.282601 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-11 08:30:00 obsr1987335 S23425716 Traveling P22 EBIRD 113.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306416899 2015-03-30 21:23:21 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 20 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-03-21 10:45:00 obsr34822 S22603095 Stationary P21 EBIRD 18.0 10.0 1 G1198789 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296763860 2021-11-09 18:26:49.457915 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N X United States US New York US-NY Dutchess US-NY-027 13.0 Morse Hill Road L1872881 P 41.8958711 -73.5696736 2015-02-14 09:30:00 obsr1917973 S21828244 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323914947 2021-03-19 16:27:31.421791 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Oak Orchard WMA--Goose Pond overlook L294791 H 43.1245968 -78.2729208 2015-05-30 08:30:00 obsr1092576 S23702889 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310734125 2021-12-08 07:58:41.562209 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 50 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-17 15:52:00 obsr2206421 S22912392 Rusty Blackbird Spring Migration Blitz P41 EBIRD 83.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317774070 2021-04-01 11:15:31.646886 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 07:00:00 obsr139757 S23338952 Traveling P22 EBIRD 480.0 11.265 5.0 0 G1259834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310295466 2021-04-01 10:47:08.851048 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-15 14:20:00 obsr1166980 S22882233 Traveling P22 EBIRD 90.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302600237 2021-11-20 09:30:27.481745 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 7 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake, end of Creekwalk L1331492 H 43.0680178 -76.1778662 2015-03-12 08:05:00 obsr324569 S22309767 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309941531 2021-03-26 07:30:35.289997 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 20 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-14 08:23:00 obsr1655171 S22857952 Traveling P22 EBIRD 32.0 0.483 2.0 1 G1220019 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291631963 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-18 11:06:00 obsr934639 S21395783 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318311533 2015-05-10 19:17:30 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 11 United States US New York US-NY Erie US-NY-029 13.0 Gallagher Beach L2138552 H 42.8407505 -78.8598984 2015-05-10 14:30:00 obsr2871264 S23367762 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306803425 2021-11-09 19:55:29.587179 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Orange US-NY-071 28.0 Six and a Half Station Rd. Sanctuary L306143 H 41.4025242 -74.3499176 2015-04-01 18:00:00 obsr1872991 S22632704 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320853442 2021-03-19 16:29:59.503892 16285 species avibase-5BC4E0EF Willow Flycatcher Empidonax traillii 1 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-18 09:20:00 obsr1302604 S23509746 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310620836 2018-08-21 20:28:43 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-17 09:59:00 obsr1655171 S22905127 Traveling P22 EBIRD 26.0 0.322 2.0 1 G1222720 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291526801 2021-03-26 06:21:54.883933 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-17 10:35:00 obsr41879 S21387573 Traveling P22 EBIRD 93.0 1.609 4.0 1 G1112437 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314398233 2021-03-26 07:56:20.588749 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Nassau US-NY-059 30.0 Hofstra University L639147 H 40.7145119 -73.6003128 2015-04-30 15:05:00 obsr904434 S23146659 Traveling P22 EBIRD 50.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291336772 2021-03-24 20:23:39.258075 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 PI--Route 9 L992024 P 41.1824976 -72.1910977 2015-01-16 15:35:00 obsr2485753 S21372280 Traveling P22 EBIRD 28.0 2.253 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313106897 2021-03-24 20:33:47.533911 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-26 08:18:00 obsr34822 S23066530 Traveling P22 EBIRD 141.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289687419 2021-03-23 17:41:09.545385 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Westchester US-NY-119 30.0 81 Lake Street, Peach Lake, North Salem L141329 P 41.3594812 -73.5793018 2015-01-06 09:15:00 obsr1736921 S21238792 Stationary P21 EBIRD 345.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304831166 2022-02-18 08:25:20.66755 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 6 United States US New York US-NY Erie US-NY-029 13.0 Buffalo Zoo L5825994 H 42.9387038 -78.8514959 2015-03-20 08:00:00 obsr1978185 S22481372 Traveling P22 EBIRD 5.0 0.322 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313504987 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Nassau US-NY-059 Morgan Memorial Park L1440142 H 40.8649583 -73.6531285 2015-04-27 11:15:00 obsr1296638 S23091178 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292944551 2021-04-01 11:24:19.637193 526 species avibase-56CCA717 Northern Pintail Anas acuta 160 United States US New York US-NY Monroe US-NY-055 Summerville Pier L275794 H 43.25659 -77.60215 2015-01-24 14:38:00 obsr2678807 S21518946 Traveling P22 EBIRD 53.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290685048 2021-03-26 06:55:00.227271 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Ontario US-NY-069 13.0 Home L1898533 P 42.8006436 -77.2645283 2015-01-12 09:00:00 obsr696564 S21319520 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289385379 2017-08-16 16:13:48 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Seneca US-NY-099 13.0 Martin Rd / Airport Road L3262347 P 42.8767328 -76.7788929 2015-01-05 15:30:00 obsr1034751 S21215028 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311602651 2021-03-24 19:48:44.880783 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 24 United States US New York US-NY Monroe US-NY-055 13.0 Mt. Hope Cemetery L249453 H 43.1287817 -77.6206675 2015-04-20 13:51:00 obsr1958774 S22967391 Traveling P22 EBIRD 57.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323364595 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-27 08:00:00 obsr2874437 S23663726 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312744461 2021-03-26 07:30:35.289997 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-25 09:38:00 obsr59643 S23044814 Traveling P22 EBIRD 18.0 0.483 2.0 1 G1235118 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308248652 2021-04-01 12:26:53.827486 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-04-07 11:40:00 obsr1154 S22738182 Traveling P22 EBIRD 35.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308136653 2021-11-09 21:57:39.793898 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 4 United States US New York US-NY Ulster US-NY-111 13.0 Stone Church Rd. Wetland L3544805 H 41.9395912 -74.1746777 2015-04-06 17:00:00 obsr915089 S22729169 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312269551 2018-08-04 17:11:38 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Fulton US-NY-035 14.0 Cline Road Marsh/Forest Loop L2499202 P 43.0665479 -74.65976 2015-04-22 07:29:00 obsr1000124 S23011590 Traveling P22 EBIRD 56.0 4.184 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314321670 2021-03-30 19:07:52.958398 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:15:00 obsr2152799 S23141976 Traveling P22 EBIRD 240.0 6.437 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307117642 2015-04-03 09:54:50 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Franklin US-NY-033 14.0 Lake clear L1842743 P 44.3706519 -74.234226 2015-04-03 07:00:00 obsr1366295 S22656522 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321834741 2021-03-19 16:08:39.161312 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 09:17:00 obsr334398 S23569482 Traveling P22 EBIRD 112.0 0.08 6.0 1 G1298714 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308194622 2021-03-26 07:43:12.52294 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Wayne US-NY-117 13.0 Powell's Yard L783199 P 43.0918854 -77.3488167 2015-04-06 17:30:00 obsr749440 S22733946 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304511410 2022-02-17 14:32:23.002448 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 15 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-21 15:30:00 obsr2448957 S22458199 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324180853 2021-11-09 18:39:48.961966 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 5 United States US New York US-NY Dutchess US-NY-027 13.0 Salisbury Turnpike Power Line Cut L2906305 P 41.955059 -73.802476 2015-05-30 05:33:00 obsr1433400 S23719491 Traveling P22 EBIRD 150.0 5.793 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313733388 2021-03-23 16:47:03.540174 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 6 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-04-28 08:05:00 obsr1918430 S23105547 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290838010 2021-12-08 07:58:41.562209 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-01-13 10:50:00 obsr2184966 S21331406 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309486332 2021-03-23 16:30:20.514143 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-09 11:30:00 obsr2279567 S22825414 Stationary P21 EBIRD 400.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310393249 2015-04-16 09:47:54 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 2 United States US New York US-NY Saratoga US-NY-091 13.0 36 Curt Blvd L2229955 P 43.0492325 -73.8315735 2015-04-15 10:00:00 obsr907769 S22889216 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298598872 2021-03-30 19:39:10.250398 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 3 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-02-20 12:00:00 obsr1102914 S21990856 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS451337013 2021-03-26 07:30:35.289997 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-02-07 08:15:00 obsr1655171 S21707245 Stationary P21 EBIRD 20.0 3.0 1 G1137378 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316158281 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-05 12:15:00 obsr547602 S23246260 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303905226 2021-04-01 11:54:40.172593 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-03-18 08:22:00 obsr396989 S22411851 Traveling P22 EBIRD_NJ 370.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289061004 2021-03-30 12:05:58.533651 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Nassau US-NY-059 30.0 Baldwin L193543 T 40.6565 -73.60927 2015-01-03 07:34:00 obsr564905 S21189546 Traveling P22 EBIRD 142.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311903500 2015-04-25 19:03:30 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Onondaga US-NY-067 13.0 Elbridge - Tracks Hamilton Rd-Co. line L847513 P 43.0088054 -76.4669466 2015-04-15 19:29:00 obsr2279567 S22987209 Traveling P22 EBIRD 56.0 0.885 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301082008 2021-04-01 12:11:50.996293 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-03-05 15:05:00 obsr354090 S22184665 Traveling P22 EBIRD 22.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288534694 2021-04-01 11:30:42.037277 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 28 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-02 09:30:00 obsr2319444 S21145566 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301253414 2015-03-06 17:26:12 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-03-06 07:15:00 obsr646558 S22197930 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311096225 2021-03-26 07:43:12.52294 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Wayne US-NY-117 13.0 East Palmyra L1156478 P 43.0839344 -77.1562529 2015-04-18 11:00:00 obsr2561613 S22935699 Area P23 EBIRD 240.0 0.607 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311832968 2016-01-27 15:21:38 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY Tompkins US-NY-109 28.0 125C Yellow Barn Rd. L1044911 P 42.4758637 -76.3421112 2015-04-19 07:00:00 obsr2001485 S22982841 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314569459 2018-08-04 17:13:16 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 John Boyd Thacher SP--Beaver Dam Road Trail L3630909 H 42.6363582 -74.0147853 2015-05-01 08:45:00 obsr777630 S23157797 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304379701 2021-03-26 06:29:56.44369 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 2 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-21 12:03:00 obsr334398 S22448537 Traveling P22 EBIRD 17.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320581916 2018-08-06 22:30:19 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 5 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-17 07:30:00 obsr1472872 S23494129 Traveling P22 EBIRD 98.0 7.065 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306578980 2021-04-01 12:14:19.266649 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-03-31 10:30:00 obsr105122 S22615901 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295391815 2021-03-23 16:39:03.255227 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 17 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-02-07 15:10:00 obsr1958124 S21713403 Stationary P21 EBIRD 9.0 2.0 1 G1137882 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306111740 2021-03-19 16:32:34.732091 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 4 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-03-29 16:31:00 obsr152435 S22579781 Traveling P22 EBIRD 92.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116226 2015-01-04 17:54:44 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Broome US-NY-007 28.0 Jones Park L716848 P 42.0111915 -75.9924424 2015-01-04 09:55:00 obsr1626739 S21194068 Traveling P22 EBIRD 58.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316724055 2021-04-01 10:52:54.724403 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 2 United States US New York US-NY Columbia US-NY-021 13.0 Germantown L284394 T 42.13449 -73.89178 2015-05-06 18:00:00 obsr712039 S23279528 Traveling P22 EBIRD 60.0 20.921 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293381137 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos N X United States US New York US-NY New York US-NY-061 30.0 79th Street and 1st Avenue L3319894 P 40.7721038 -73.9523435 2015-01-22 08:00:00 obsr1548221 S21552894 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288142580 2021-03-26 06:29:56.44369 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 10 United States US New York US-NY Monroe US-NY-055 13.0 Jacobs Rd. (Hamlin) L651742 P 43.3428767 -77.9506159 2015-01-01 11:00:00 obsr749440 S21112690 Traveling P22 EBIRD 26.0 2.414 1.0 1 G1087972 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299017474 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-22 12:00:00 obsr2207991 S22025671 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301368581 2021-03-30 19:40:59.354574 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 15 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--Nine Mile Creek Outlet L674655 H 43.0890275 -76.2294155 2015-03-07 08:07:00 obsr184660 S22207862 Traveling P22 EBIRD 2.0 0.322 4.0 1 G1168612 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316054956 2021-04-01 11:30:42.037277 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-30 08:07:00 obsr363953 S23240788 Traveling P22 EBIRD 240.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306675166 2021-03-22 09:17:32.016297 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-01 07:24:00 obsr666964 S22623394 Stationary P21 EBIRD 15.0 2.0 1 G1200337 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307707733 2021-04-01 11:15:31.646886 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 5 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek L845821 H 40.5811388 -73.9927912 2015-04-05 08:02:00 obsr1189028 S22698070 Traveling P22 EBIRD 22.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317992502 2021-04-01 11:30:42.037277 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 40 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 08:50:00 obsr1601967 S23351012 Traveling P22 EBIRD 250.0 4.828 15.0 1 G1261209 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300258835 2021-03-24 20:23:39.258075 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Suffolk US-NY-103 30.0 Dad's Yard L1115448 P 41.0256329 -72.4729764 2015-03-01 11:00:00 obsr2528068 S22124757 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309134766 2021-04-01 12:45:19.712958 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) N 2 United States US New York US-NY Westchester US-NY-119 30.0 US-NY-Port Chester-575 Boston Post Rd L3555476 P 40.992834 -73.675112 2015-04-11 11:45:00 obsr2918150 S22803018 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313459335 2021-04-01 12:44:06.475065 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Warren US-NY-113 14.0 Loon Lake Camp L3594831 P 43.6637614 -73.8404503 2015-04-26 13:00:00 obsr2841967 S23088419 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321305273 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-19 16:30:00 obsr2031586 S23537222 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311226238 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 09:10:00 obsr2152799 S22943327 Traveling P22 EBIRD 193.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309926477 2021-03-23 17:00:13.087107 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-14 06:53:00 obsr455249 S22856786 Traveling P22 EBIRD 8.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313780322 2021-04-01 11:30:42.037277 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 08:30:00 obsr145923 S23108484 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS498959540 2021-03-26 07:07:10.758746 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 11 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-04-12 12:25:00 obsr2391236 S36815889 Traveling P22 EBIRD 90.0 0.483 6.0 1 G1216761 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296377821 2021-11-09 22:04:47.967972 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 40 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-12 13:16:00 obsr2449954 S21792762 Traveling P22 EBIRD 42.0 8.047 2.0 1 G1144440 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322940436 2021-03-30 19:13:38.458673 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-25 07:23:00 obsr302343 S23636087 Traveling P22 EBIRD 186.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316828825 2021-04-01 12:32:15.282601 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 2 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-07 07:45:00 obsr916370 S23285426 Traveling P22 EBIRD 150.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311053333 2022-02-17 14:32:23.002448 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-18 13:20:00 obsr41879 S22932868 Traveling P22 EBIRD 80.0 1.609 16.0 1 G1224973 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323731489 2018-08-06 22:31:16 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-05-28 06:11:00 obsr2716320 S23690361 Traveling P22 EBIRD 56.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301395764 2018-08-04 16:58:54 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Richmond US-NY-085 30.0 Huguenot Ave. Beach L2035653 H 40.5200028 -74.1832461 2015-03-07 10:29:00 obsr1958124 S22210041 Stationary P21 EBIRD 7.0 2.0 1 G1169008 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311061019 2018-08-04 17:09:09 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Onondaga US-NY-067 13.0 Erie Canal, Fayetteville L723439 H 43.0433627 -76.0207558 2015-04-14 12:30:00 obsr2648237 S22933390 Traveling P22 EBIRD 120.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311044934 2021-03-26 07:07:10.758746 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 6 United States US New York US-NY Richmond US-NY-085 30.0 Miller Field L391319 H 40.5674723 -74.0990352 2015-04-18 12:05:00 obsr155915 S22932305 Traveling P22 EBIRD 8.0 0.483 3.0 1 G1224792 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309650511 2021-03-23 17:00:13.087107 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-12 07:45:00 obsr1008519 S22836473 Traveling P22 EBIRD 45.0 0.402 7.0 1 G1218533 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295478296 2015-02-07 23:04:10 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Delaware US-NY-025 28.0 NY, Del, 3205 Roses Brook Road L3343054 P 42.3272656 -74.7052657 2015-02-06 10:40:00 obsr2216678 S21720384 Stationary P21 EBIRD 3.0 3.0 1 G1138450 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290020120 2021-04-01 11:47:43.260314 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-01-09 14:05:00 obsr2945658 S21265491 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310795896 2021-04-01 11:43:48.927316 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 7 United States US New York US-NY Ontario US-NY-069 13.0 Muar Lake west, Canandaigua L786557 H 42.8801468 -77.2634339 2015-04-17 11:15:00 obsr528918 S22916557 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS519895021 2021-04-01 12:32:15.282601 7429 species avibase-1327AC55 Osprey Pandion haliaetus 7 United States US New York US-NY Nassau US-NY-059 30.0 Manhasset - Private: No Access L2913708 P 40.7762193 -73.6884141 2015-05-11 07:00:00 obsr696226 S38228444 Traveling P22 EBIRD 300.0 8.047 3.0 1 G1645520 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321507253 2018-08-06 22:30:37 32955 species avibase-41062654 Northern Parula Setophaga americana 2 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-05-20 07:45:00 obsr2842267 S23549436 Traveling P22 EBIRD 240.0 0.805 9.0 1 G1280820 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313040931 2021-03-23 17:15:00.080143 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 4 United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP, Sodus L712218 H 43.2673188 -77.0297813 2015-04-25 08:07:00 obsr1569772 S23062566 Traveling P22 EBIRD 135.0 1.931 13.0 1 G1235657 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308781569 2021-03-26 06:39:43.334073 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Greywacke Arch L2179946 H 40.7792619 -73.9657742 2015-04-08 08:16:00 obsr1548221 S22778848 Traveling P22 EBIRD 23.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299511043 2015-02-25 10:17:53 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-02-25 08:23:00 obsr666964 S22065708 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295574517 2021-03-24 20:33:47.533911 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 90 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-02-08 13:23:00 obsr887540 S21727965 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293327569 2018-08-04 16:55:09 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 30 United States US New York US-NY Yates US-NY-123 13.0 Canandaigua Lake, Vine Valley L845804 H 42.723056 -77.327013 2015-01-24 14:00:00 obsr2979658 S21548448 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304683204 2021-03-26 06:29:56.44369 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-03-22 14:41:00 obsr730231 S22470865 Traveling P22 EBIRD 58.0 1.368 5.0 1 G1188621 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322595160 2021-03-23 17:22:05.708166 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-05-20 05:20:00 obsr2694889 S23614757 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306148329 2015-04-09 09:13:50 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.7298675 2015-03-29 15:16:00 obsr241086 S22582573 Stationary P21 EBIRD 12.0 4.0 0 G1197068 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS317735630 2021-03-26 06:29:56.44369 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-09 18:25:00 obsr2595828 S23336995 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314108805 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 08:00:00 obsr2319444 S23129015 Traveling P22 EBIRD 240.0 3.219 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312622659 2021-04-01 12:40:54.473014 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Saratoga US-NY-091 13.0 Everts L2784190 P 43.2234315 -73.5887325 2015-04-24 14:40:00 obsr648176 S23036576 Traveling P22 EBIRD 245.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317030714 2021-03-23 17:21:08.587586 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Delaware US-NY-025 28.0 Denver-Vega Valley L2040482 P 42.258131 -74.53147 2015-05-07 09:00:00 obsr2124788 S23296804 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290854307 2016-10-10 10:35:42 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 75 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 06:45:00 obsr2206421 S21332895 Traveling P22 EBIRD 75.0 18.99 44.0 1 G1108327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322568039 2021-04-01 11:15:31.646886 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 11:48:00 obsr152435 S23613325 Traveling P22 EBIRD 292.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316525082 2021-03-19 16:19:20.977326 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-06 11:37:00 obsr2324853 S23267936 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293371439 2021-03-23 16:39:03.255227 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-01-26 12:21:00 obsr1958124 S21551999 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303165224 2021-03-30 19:37:33.521815 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Wayne US-NY-117 13.0 Sodus Point L929415 P 43.2714248 -76.9817591 2015-03-14 10:15:00 obsr195058 S22353543 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320100908 2021-11-09 18:47:29.451417 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 12 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook School Wildlife Sanctuary L3646901 P 41.8443339 -73.6147714 2015-05-15 06:15:00 obsr445356 S23469283 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS335858084 2015-08-10 16:55:05 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Warren US-NY-113 13.0 A87 River Hudson L3500913 P 43.2655813 -73.6754322 2015-03-20 10:15:00 obsr876939 S24568854 Stationary P21 EBIRD 10.0 2.0 1 G1372823 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298738606 2019-07-23 17:27:25 6339 species avibase-8535345B Herring Gull Larus argentatus 8 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Fort Niagara SP L210265 H 43.2638703 -79.0567981 2015-02-21 11:01:00 obsr558077 S22003004 Traveling P22 EBIRD 43.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135646 2021-03-26 07:56:20.588749 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-02 16:00:00 obsr2218212 S23589172 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301250237 2018-08-04 16:58:50 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-06 13:30:00 obsr2493328 S22197673 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302371916 2021-03-26 06:12:17.833181 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-03-10 09:00:00 obsr479109 S22292055 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305502167 2015-03-26 20:32:09 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 100 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Main Pool (West Side Overlook) L767028 H 42.9747388 -76.7707336 2015-03-26 19:40:00 obsr204036 S22534197 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309919236 2018-08-04 17:08:39 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Columbia US-NY-021 13.0 Wilson M. Powell Wildlife Sanctuary L357262 H 42.4309937 -73.5655057 2015-04-12 obsr1220115 S22856255 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309409243 2021-03-26 06:12:17.833181 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-04-12 09:00:00 obsr1380963 S22820764 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS464812643 2017-02-11 09:50:36 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Tompkins US-NY-109 13.0 NY - east loop from Monkey Run North L5172526 P 42.4711048 -76.4232159 2015-01-01 13:15:00 obsr1708417 S34293017 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313920385 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-02 12:30:00 obsr1652207 S23117527 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302700589 2021-03-23 16:39:03.255227 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Richmond US-NY-085 Mill Creek L1302294 H 40.5198919 -74.2406809 2015-03-12 18:26:00 obsr1958124 S22317134 Stationary P21 EBIRD 15.0 2.0 1 G1177150 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310891838 2018-08-04 17:09:44 26890 species avibase-94A44032 European Starling Sturnus vulgaris 20 United States US New York US-NY Richmond US-NY-085 Oakwood Beach L2501874 H 40.5533157 -74.1087484 2015-04-18 11:46:00 obsr1958124 S22922779 Stationary P21 EBIRD 10.0 3.0 1 G1224793 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312589990 2017-11-14 12:02:04 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-04-24 10:00:00 obsr983655 S23034152 Traveling P22 EBIRD 40.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001884 2021-03-30 19:39:10.250398 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-31 09:00:00 obsr2218212 S23775948 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307929332 2015-04-06 13:50:41 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-04 14:30:00 obsr317968 S22714350 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS395739360 2021-03-19 16:19:20.977326 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Erie US-NY-029 13.0 Yard L1525949 P 42.65485 -78.70295 2015-05-10 07:40:00 obsr1905321 S29245561 Area P23 EBIRD 105.0 2.0234 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317112380 2018-08-06 22:29:14 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-05-08 09:05:00 obsr1830659 S23301478 Traveling P22 EBIRD 45.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289461516 2021-03-30 19:29:33.633096 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-06 09:00:00 obsr1488063 S21220897 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309759474 2021-04-01 11:49:53.573686 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Queens US-NY-081 30.0 Rosie's Place-243 Beach 135th Street L869966 P 40.5751026 -73.8535845 2015-04-12 08:30:00 obsr604941 S22845087 Stationary P21 EBIRD 260.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314464220 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 08:55:00 obsr2105033 S23151035 Traveling P22 EBIRD 260.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116263 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-01-04 11:20:00 obsr856524 S21194074 Stationary P21 EBIRD 30.0 2.0 1 G1095758 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306926387 2015-04-02 11:41:33 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Genesee US-NY-037 13.0 mill rd e bethany L3462586 P 42.8917105 -78.1625748 2015-04-02 09:04:00 obsr393804 S22641821 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319555325 2017-11-28 16:58:09 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 JB West End 2: Red Trail L2782119 P 40.5842677 -73.5518789 2015-05-14 08:50:00 obsr1761797 S23438766 International Shorebird Survey (ISS) P74 EBIRD 75.0 1.77 1.0 1 G1277347 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314542661 2021-04-01 11:24:19.637193 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Monroe US-NY-055 13.0 Lucien Morin Park L1745769 H 43.1666318 -77.5274502 2015-04-30 07:50:00 obsr1534851 S23156132 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313043475 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 Helderberg Hudson Rail Trail--Slingerlands to Voorheesville L2584243 H 42.6414841 -73.897974 2015-04-26 06:00:00 obsr1154 S23062710 Traveling P22 EBIRD 59.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292123648 2021-11-09 17:43:04.343771 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Dutchess US-NY-027 28.0 Red Wing Pond, Beekman L1034656 H 41.6005643 -73.7231211 2015-01-20 12:35:00 obsr1732267 S21433969 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296924806 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-14 14:10:00 obsr150415 S21842274 Traveling P22 EBIRD 60.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323441674 2021-11-09 18:47:57.38119 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Dutchess US-NY-027 28.0 Berkshire Road, Dover Plains, NY L3677173 P 41.67904 -73.5525119 2015-05-26 18:30:00 obsr1442681 S23669301 Traveling P22 EBIRD 60.0 3.219 3.0 1 G1293108 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316510330 2018-08-04 17:15:01 279 species avibase-3E04020B Brant Branta bernicla 3 United States US New York US-NY Fulton US-NY-035 13.0 Mayfield Beach, Burr Rd., Fulton Co., N.Y. L3104334 P 43.1404831 -74.2333639 2015-05-06 11:30:00 obsr2590001 S23267007 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306349106 2021-03-23 17:26:08.495143 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-29 13:20:00 obsr1987335 S22597794 Rusty Blackbird Spring Migration Blitz P41 EBIRD 103.0 1.609 2.0 1 G1198389 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311026453 2021-04-01 11:24:19.637193 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 4 United States US New York US-NY Monroe US-NY-055 13.0 Veterans Memorial Park, Henrietta L3573525 H 43.0662239 -77.6219799 2015-04-18 16:38:00 obsr934639 S22931096 Traveling P22 EBIRD 128.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300018317 2018-01-07 20:13:45 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 2 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-02-28 09:46:00 obsr2693145 S22105030 Stationary P21 EBIRD 24.0 2.0 1 G1161681 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304831855 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 16 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-23 07:00:00 obsr1135516 S22481434 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309601018 2021-03-26 06:17:19.712573 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 1 United States US New York US-NY Erie US-NY-029 13.0 US-NY-Derby-7678-7966 Dennis Rd L3559897 P 42.670825 -79.043622 2015-04-12 10:52:00 obsr916033 S22833148 Traveling P22 EBIRD 22.0 17.702 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304022709 2018-04-27 16:39:45 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Shinnecock Inlet, west L3087424 H 40.8421473 -72.4781388 2015-01-25 16:35:00 obsr2233270 S22421200 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316569078 2017-05-02 11:19:42 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Genesee US-NY-037 13.0 9605 Francis Rd , Batavia L3360943 P 42.947728 -78.1616086 2015-05-06 08:30:00 obsr393804 S23270653 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310311642 2021-03-19 16:08:39.161312 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-04-15 17:43:00 obsr2497657 S22883384 Traveling P22 EBIRD 161.0 5.633 2.0 1 G1221320 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311042010 2021-03-19 16:19:20.977326 7200 species avibase-49D9148A Great Egret Ardea alba X United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-18 10:00:00 obsr319738 S22932078 Traveling P22 EBIRD 120.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313352033 2019-10-25 16:04:19 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 40 United States US New York US-NY St. Lawrence US-NY-089 US-NY_802 13.0 Jacques Cartier State Park L2441084 H 44.555858 -75.6810667 2015-04-26 07:25:00 obsr1558090 S23081201 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321903147 2021-03-19 16:06:54.047432 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-05-22 07:40:00 obsr2744341 S23574399 Traveling P22 EBIRD 100.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312289011 2021-03-24 20:20:25.430732 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 2 United States US New York US-NY Schenectady US-NY-093 13.0 Home L3584494 P 42.8089401 -73.9914393 2015-04-23 11:30:00 obsr2095714 S23012809 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323007688 2021-01-27 22:21:46.823269 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-23 09:50:00 obsr2837502 S23640373 Traveling P22 EBIRD 110.0 6.437 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS677103392 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 obsr448704 S49980984 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305412762 2021-03-26 07:56:20.588749 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Nassau US-NY-059 30.0 113 Lawson L3509276 P 40.693829 -73.6169661 2015-03-25 15:10:00 obsr2664032 S22527142 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311600641 2021-04-01 12:24:14.132004 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia N 2 United States US New York US-NY Washington US-NY-115 13.0 Easton L2821504 P 43.052407 -73.514906 2015-04-20 14:11:00 obsr648176 S22967263 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291079444 2021-11-15 03:06:58.889978 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-07 08:45:00 obsr601383 S21351154 Traveling P22 EBIRD 15.0 0.402 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000402 2021-03-26 07:56:20.588749 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-05 16:00:00 obsr2218212 S23775905 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290871206 2021-03-23 17:26:08.495143 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-01-13 09:00:00 obsr247620 S21334452 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316114397 2015-05-05 13:42:00 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-05-05 12:20:00 obsr1962295 S23243988 Traveling P22 EBIRD 55.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304950041 2021-11-09 20:51:06.773494 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Rockland US-NY-087 28.0 Kakiat County Park L1023278 H 41.1461171 -74.11466 2015-03-23 15:30:00 obsr2346161 S22491066 Traveling P22 EBIRD 90.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309023830 2021-03-23 17:00:13.087107 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 28.0 Herman Rd. wetlands L1108700 H 42.5157265 -76.3355194 2015-04-11 08:02:00 obsr1696616 S22796118 Stationary P21 EBIRD 25.0 2.0 1 G1214133 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305560939 2021-03-26 07:30:35.289997 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-27 08:09:00 obsr59643 S22538638 Stationary P21 EBIRD 16.0 2.0 1 G1194006 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305506963 2015-03-26 20:55:16 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Columbia US-NY-021 14.0 Austerlitz L207556 P 42.3036668 -73.5189287 2015-03-26 11:00:00 obsr712039 S22534591 Traveling P22 EBIRD 120.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297128679 2015-02-15 13:51:46 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Suffolk US-NY-103 30.0 Riverhead Sod Farms--Doctors Path L588228 H 40.9613311 -72.6676512 2015-02-08 11:10:00 obsr758734 S21860291 Incidental P20 EBIRD 2.0 0 G1147181 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295605471 2021-04-26 04:57:02.963704 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-08 11:30:00 obsr1659461 S21730384 Traveling P22 EBIRD 75.0 0.805 2.0 1 G1139379 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313502946 2021-04-01 11:54:40.172593 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-27 09:00:00 obsr666331 S23091056 Traveling P22 EBIRD 150.0 3.219 2.0 1 G1239560 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316546269 2021-11-15 03:06:58.889978 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-06 10:25:00 obsr2310825 S23269279 Traveling P22 EBIRD 210.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313391081 2021-03-26 06:39:43.334073 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-04-23 11:00:00 obsr1264993 S23084131 Traveling P22 EBIRD 120.0 1.609 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312971348 2021-11-09 21:22:28.893225 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Ulster US-NY-111 13.0 Falling Waters Preserve L1236834 H 42.0541799 -73.9394009 2015-04-25 11:27:00 obsr2862523 S23058296 Traveling P22 EBIRD 68.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309492812 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-12 09:00:00 obsr2883698 S22825898 Traveling P22 EBIRD 190.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306522196 2021-03-23 17:32:20.03109 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-03-31 10:28:00 obsr2224244 S22611400 Stationary P21 EBIRD 149.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309150255 2018-08-04 17:08:36 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Arshamomaque Preserve L273407 H 41.0956498 -72.3911698 2015-04-11 16:11:00 obsr2485753 S22804094 Traveling P22 EBIRD 37.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316149567 2015-05-05 15:38:50 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Genesee US-NY-037 13.0 Leroy Park N Ride- Genesee County NY L3613152 P 43.033229 -77.967001 2015-05-05 05:21:00 obsr749440 S23245810 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319425005 2021-04-01 10:57:06.520339 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Essex US-NY-031 13.0 US-NY-Ticonderoga-park L2835690 P 43.849661 -73.418867 2015-05-09 07:39:00 obsr2693145 S23431050 Traveling P22 EBIRD 15.0 0.322 2.0 1 G1269867 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312628888 2021-04-01 11:54:40.172593 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 17 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-24 15:05:00 obsr1032565 S23036989 Traveling P22 EBIRD 148.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322018449 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-22 11:43:00 obsr2149836 S23581846 Traveling P22 EBIRD 98.0 0.644 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320769724 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-14 05:55:00 obsr876649 S23504233 Traveling P22 EBIRD 390.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296738743 2022-01-30 05:31:50.734676 483 species avibase-85625D75 Mallard Anas platyrhynchos 80 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-14 10:43:00 obsr715105 S21825916 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301221173 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY New York US-NY-061 East River, Brooklyn Bridge to S.I. Ferry L3339003 H 40.7039737 -74.0059423 2015-03-06 12:44:00 obsr2179748 S22195400 Traveling P22 EBIRD 56.0 2.285 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318133933 2021-11-09 17:58:40.313796 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-10 08:30:00 obsr1917973 S23358348 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313367820 2021-12-27 21:06:26.931657 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY St. Lawrence US-NY-089 US-NY_775 13.0 Upper & Lower Lakes WMA--Observation Tower (Hwy. 15) L270474 H 44.5796495 -75.3091865 2015-04-26 12:28:00 obsr1558090 S23082125 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310747366 2015-04-17 19:26:09 5155 species avibase-4880DC55 Virginia Rail Rallus limicola 1 United States US New York US-NY Washington US-NY-115 13.0 Rte 40 just S of Burton Rd L3570857 P 43.0436136 -73.5373843 2015-04-17 11:30:00 obsr2855945 S22913421 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322925533 2015-05-25 18:43:26 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY Herkimer US-NY-043 13.0 Fairview Road - Town of Salisbury L637821 P 43.1284259 -74.7896004 2015-05-25 09:19:00 obsr1000124 S23635069 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288323560 2021-11-09 21:30:06.280029 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Ulster US-NY-111 13.0 Weston Rd., swamp L1411814 H 41.7887897 -74.0242416 2015-01-01 10:45:00 obsr890053 S21128283 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322989003 2021-03-30 19:29:33.633096 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 6 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-29 10:40:00 obsr1319071 S23639166 Traveling P22 EBIRD 65.0 2.993 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292758374 2021-04-01 11:54:40.172593 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens N 10 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-01-22 09:00:00 obsr666331 S21504173 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325710583 2021-04-01 10:58:47.067498 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Genesee US-NY-037 13.0 upton & rose rds, batavia L3705269 P 42.9722609 -78.2795277 2015-05-16 11:02:00 obsr393804 S23823485 Traveling P22 EBIRD 58.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304945001 2021-04-01 11:15:31.646886 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 3 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-03-23 16:30:00 obsr1731572 S22490629 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297600166 2021-03-30 19:43:32.881136 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 3 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-16 12:15:00 obsr258431 S21902653 Stationary P21 EBIRD 20.0 4.0 1 G1149056 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319338148 2021-03-26 07:46:52.994574 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-12 09:10:00 obsr2837502 S23426061 Traveling P22 EBIRD 130.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319466328 2021-03-26 07:52:59.845315 7200 species avibase-49D9148A Great Egret Ardea alba 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-12 07:00:00 obsr316199 S23433411 Area P23 EBIRD 78.0 2.59 2.0 1 G1270076 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321824429 2021-03-19 16:19:20.977326 27374 species avibase-B904BB22 Gray-cheeked Thrush Catharus minimus 5 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-19 09:35:00 obsr1079517 S23568911 Area P23 EBIRD 45.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307497150 2018-08-04 17:05:27 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Niagara US-NY-063 US-NY_1729 13.0 Tonawanda WMA--Wood Marsh (West) L811484 H 43.1120117 -78.4883881 2015-04-04 16:05:00 obsr1958774 S22683565 Stationary P21 EBIRD 31.0 2.0 1 G1205191 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320623769 2022-02-04 06:14:13.892644 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-05-17 16:51:00 obsr884514 S23496294 Traveling P22 EBIRD 25.0 0.402 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319513815 2021-04-01 10:45:00.916278 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 S C2 S United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-14 08:47:00 obsr128156 S23436387 Rusty Blackbird Spring Migration Blitz P41 EBIRD 32.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311774020 2015-04-21 08:40:49 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-04-21 07:52:00 obsr2211210 S22978778 Traveling P22 EBIRD 12.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322236643 2021-03-26 06:29:56.44369 1375 species avibase-4B9EEF56 Ring-necked Pheasant Phasianus colchicus 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-05-23 12:10:00 obsr2504709 S23594604 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310166038 2021-04-01 10:57:06.520339 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-04-15 07:08:00 obsr2420101 S22873633 Traveling P22 EBIRD 99.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304736258 2021-03-26 06:39:43.334073 669 hybrid avibase-8DE9CD30 Common x Barrow's Goldeneye (hybrid) Bucephala clangula x islandica N 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park - Winterdale L2398632 P 40.7811264 -73.9705074 2015-03-22 11:49:00 obsr2885680 S22474843 Traveling P22 EBIRD 12.0 0.322 2.0 1 G1188913 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315946748 2021-11-15 03:06:58.889978 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-01 18:55:00 obsr1548221 S23234110 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312901646 2021-03-23 17:35:23.829899 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Otsego US-NY-077 28.0 Oneonta Susquehanna Greenway L563049 H 42.439496 -75.1034349 2015-04-25 10:30:00 obsr1452192 S23054049 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294674822 2021-04-01 11:47:43.260314 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Oswego County-Winter Raptor Survey Route - L3220240 P 43.449913 -76.3036421 2015-01-19 12:34:00 obsr2700277 S21655638 Traveling P22 EBIRD 215.0 64.855 2.0 1 G1133879 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289188190 2021-04-01 11:42:15.525388 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 BUFFALO AVE NIAGARA FALLS L3267202 P 43.080612 -79.0124488 2015-01-01 11:00:00 obsr2965498 S21199590 Traveling P22 EBIRD 15.0 16.093 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312966251 2015-08-02 20:45:19 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake Park L792637 H 42.7759994 -77.6113701 2015-04-25 14:00:00 obsr1962295 S23058009 Stationary P21 EBIRD 30.0 2.0 1 G1235908 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308428326 2021-03-23 17:00:13.087107 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 1 United States US New York US-NY Tompkins US-NY-109 28.0 Fall Creek Rd. wetlands L1111423 H 42.5171015 -76.3409478 2015-04-08 09:10:00 obsr1655171 S22751659 Stationary P21 EBIRD 2.0 2.0 1 G1212826 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310183129 2021-03-30 19:43:32.881136 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 5 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-04-15 08:00:00 obsr258431 S22874862 Traveling P22 EBIRD 155.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320570527 2018-08-06 22:30:24 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-17 11:05:00 obsr646558 S23493483 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324100057 2021-04-01 11:15:31.646886 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 18 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-30 13:08:00 obsr2404047 S23714306 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291612908 2021-04-01 11:54:40.172593 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-18 08:44:00 obsr1958124 S21394096 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313061709 2015-04-26 09:07:41 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-04-26 09:00:00 obsr1349676 S23063853 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291531995 2021-03-26 06:21:54.883933 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-01-17 11:00:00 obsr1659461 S21387979 Stationary P21 EBIRD 20.0 3.0 1 G1112862 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302705108 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-12 13:15:00 obsr958911 S22317536 Traveling P22 EBIRD 90.0 0.805 14.0 1 G1177038 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299028393 2021-03-26 07:17:57.136956 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Seneca US-NY-099 13.0 Wyers Point and Wyers Point Rd. L285461 H 42.6736408 -76.7156979 2015-02-22 13:15:00 obsr2303116 S22026650 Traveling P22 EBIRD 60.0 6.437 5.0 1 G1156312 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297604612 2021-11-09 18:44:19.225291 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus N 1 United States US New York US-NY Dutchess US-NY-027 28.0 15 Kim Lane L3385782 P 41.5386108 -73.7414736 2015-02-15 08:00:00 obsr1505869 S21903032 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323739147 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-29 08:10:00 obsr1962295 S23690856 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313103162 2021-04-01 12:18:57.910168 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Beebe Lake L281786 H 42.4512932 -76.4767515 2015-04-26 08:35:00 obsr881968 S23066314 Traveling P22 EBIRD 65.0 0.161 3.0 1 G1239951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293295476 2015-01-26 06:50:55 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 50 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Point Lookout--Firemans Park L1870410 H 40.5919777 -73.5755787 2015-01-25 15:00:00 obsr324709 S21546250 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314188239 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 13.0 Webster Big Field L526104 H 43.2440148 -77.4909067 2015-04-29 18:20:00 obsr302343 S23133870 Traveling P22 EBIRD 95.0 2.012 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320100876 2021-11-09 18:47:29.451417 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook School Wildlife Sanctuary L3646901 P 41.8443339 -73.6147714 2015-05-15 06:15:00 obsr445356 S23469283 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310216659 2021-03-19 16:06:54.047432 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Union Springs-1003-1005 County Rte 89 L3565718 P 42.810694 -76.678783 2015-04-15 07:53:00 obsr2871406 S22876968 Traveling P22 EBIRD 6.0 0.161 3.0 1 G1220762 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302665400 2019-07-23 17:27:52 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 NY:TOM:Lansing: Myers Pt, lighthouse L1036392 P 42.5356943 -76.5498269 2015-03-10 13:57:00 obsr2760150 S22314342 Traveling P22 EBIRD 58.0 0.322 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307810437 2021-03-23 16:52:36.900075 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-04-05 14:00:00 obsr150865 S22705464 Traveling P22 EBIRD 105.0 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1097187012 2021-03-17 20:57:42.714388 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-05-20 09:30:00 obsr2155450 S83593089 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307651757 2021-04-01 12:18:57.910168 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 2 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom34 L3513976 H 42.5522945 -76.3229178 2015-04-05 08:58:00 obsr620377 S22694347 Stationary P21 EBIRD 13.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310623946 2019-07-23 17:28:22 681 species avibase-407E2CA8 Common Merganser Mergus merganser 300 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr1189028 S22905340 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305267572 2018-08-04 17:02:52 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 5 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-03-25 16:03:00 obsr1958124 S22515803 Traveling P22 EBIRD 5.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311824125 2016-03-11 08:58:42 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - West Trail intersect spur trail to Winston Court L301740 P 42.4781834 -76.4567368 2015-04-21 07:47:00 obsr2307843 S22982271 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289499927 2021-11-09 18:43:18.378649 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Upton Lake Christian School L3271185 P 41.833243 -73.7613273 2015-01-06 08:00:00 obsr2862523 S21224162 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305133790 2021-03-19 16:19:20.977326 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla X United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-03-24 16:30:00 obsr2071643 S22505488 Traveling P22 EBIRD 60.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308944626 2021-03-24 20:11:57.676649 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 6 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-10 08:30:00 obsr1633923 S22790555 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319058278 2021-03-26 06:39:43.334073 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-05-10 12:23:00 obsr1348614 S23410338 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314132569 2021-03-26 07:46:52.994574 11494 species avibase-20C2214E American Kestrel Falco sparverius N 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-29 14:00:00 obsr30103 S23130433 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323917451 2022-02-17 14:32:23.002448 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens N 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-30 07:40:00 obsr1605975 S23703055 Traveling P22 EBIRD 79.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309449440 2018-08-04 17:08:55 7261 species avibase-86D45B8F Green Heron Butorides virescens 1 United States US New York US-NY Oneida US-NY-065 13.0 Oneida Creek L3544087 P 43.16167 -75.727 2015-04-12 14:13:00 obsr666964 S22822958 Traveling P22 EBIRD 15.0 1.207 1.0 1 G1216677 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302499744 2018-08-04 16:59:41 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 28.0 Otsiningo Park L1869659 H 42.1293844 -75.9026012 2015-03-11 15:58:00 obsr1764243 S22301510 Traveling P22 EBIRD 54.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313638991 2021-11-09 18:36:27.898762 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 8 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-04-27 15:45:00 obsr1917973 S23099436 Traveling P22 EBIRD 60.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312764303 2019-01-03 22:08:57 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Warren US-NY-113 14.0 Rogers Rock Campgound L799286 H 43.7930769 -73.4800172 2015-04-25 09:07:00 obsr2693145 S23046080 Traveling P22 EBIRD 107.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306155884 2021-03-30 19:13:38.458673 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 15:17:00 obsr334398 S22582411 Stationary P21 EBIRD 45.0 3.0 1 G1197122 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294334532 2015-02-01 11:11:09 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 3 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-02-01 10:55:00 obsr255324 S21628836 Stationary P21 EBIRD 10.0 1.0 1 G1131329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321695270 2021-03-19 16:27:31.421791 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Tonawanda WMA--Meadville Rd. L152121 H 43.1145 -78.4563 2015-05-21 11:36:00 obsr916033 S23561081 Traveling P22 EBIRD 32.0 0.322 1.0 1 G1281682 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290242971 2021-12-29 17:37:07.163452 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 1 United States US New York US-NY Dutchess US-NY-027 13.0 Old Post Rd N Red Hook L859826 P 42.0237536 -73.8463211 2015-01-10 09:15:00 obsr2954986 S21283949 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302034532 2021-03-26 06:21:54.883933 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-09 14:03:00 obsr2152799 S22258897 Traveling P22 EBIRD 132.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308983862 2021-03-26 07:16:36.956617 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-10 11:00:00 obsr281585 S22793238 Traveling P22 EBIRD 135.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289351837 2021-03-26 08:11:28.0353 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis N 2 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-01-05 10:00:00 obsr1664745 S21212370 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295377794 2015-02-13 10:37:22 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Oswego River at Phoenix Dam L3344137 P 43.2293773 -76.3057705 2015-02-07 09:15:00 obsr545221 S21712277 Stationary P21 EBIRD 15.0 2.0 1 G1137718 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304421875 2021-03-23 16:30:20.514143 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-21 11:00:00 obsr1633923 S22451522 Stationary P21 EBIRD 232.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288910874 2015-01-03 22:12:01 30494 species avibase-240E3390 House Sparrow Passer domesticus 2000 United States US New York US-NY Suffolk US-NY-103 30.0 Riverhead Sod Farms--Doctors Path L588228 H 40.9613311 -72.6676512 2015-01-03 13:30:00 obsr2883401 S21178040 Incidental P20 EBIRD 2.0 0 G1094330 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302838688 2021-11-09 19:13:30.171485 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Dutchess US-NY-027 28.0 Home Acre, Fishkill L763458 P 41.5211579 -73.8836306 2015-03-13 10:00:00 obsr1259654 S22327565 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289712943 2021-12-28 15:50:27.785498 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 4 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-01-07 15:28:00 obsr606693 S21240456 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309129870 2015-04-11 15:39:17 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake - Inlet L723215 P 42.7139754 -77.7105045 2015-04-11 14:07:00 obsr72341 S22802713 Traveling P22 EBIRD 30.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319074207 2021-03-19 16:44:35.607263 32955 species avibase-41062654 Northern Parula Setophaga americana 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-12 05:44:00 obsr1410564 S23411292 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314285967 2015-04-30 09:44:37 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Jefferson US-NY-045 13.0 NRCS office L3535741 P 43.924618 -75.949333 2015-04-29 12:25:00 obsr1321679 S23140187 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317415860 2018-08-06 22:29:20 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Allegany US-NY-003 28.0 Peterson Trails West L3020973 P 42.2116521 -77.7505714 2015-05-09 06:15:00 obsr1868960 S23318790 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288369022 2021-03-26 07:30:35.289997 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 South Hill Rec Way L3255812 P 42.4233298 -76.4813018 2015-01-01 10:13:00 obsr2501204 S21131861 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304466365 2021-04-01 12:18:57.910168 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Hungerford Hill L2977397 P 42.429311 -76.454101 2015-03-21 13:04:00 obsr1318356 S22454801 Traveling P22 EBIRD 2.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315036800 2015-05-02 18:07:29 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.8768877 -73.7898123 2015-04-25 09:45:00 obsr98313 S23184569 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306966225 2021-03-24 19:48:44.880783 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-02 14:15:00 obsr2211210 S22644886 Traveling P22 EBIRD 44.0 0.805 1.0 1 G1202325 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299831340 2015-02-27 10:02:29 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3442848 P 43.429016 -75.903778 2015-02-27 09:23:00 obsr1477887 S22090568 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319656132 2018-08-04 17:27:12 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 6 United States US New York US-NY Herkimer US-NY-043 13.0 McKoons Road pond near Smith Road L2812296 P 42.9248029 -75.0358315 2015-05-14 14:30:00 obsr1680059 S23444353 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308482369 2015-04-08 14:48:19 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard to Garden L332946 P 42.3697437 -76.3665764 2015-04-08 14:48:00 obsr2074043 S22755744 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324315313 2018-08-06 22:31:33 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 4 United States US New York US-NY Delaware US-NY-025 28.0 Beaverkill Valley Road (Delaware County) L7152184 P 41.9671413 -74.8916316 2015-05-31 08:54:00 obsr1788273 S23728241 Traveling P22 EBIRD 36.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313055833 2015-04-26 08:39:27 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic L192823 T 40.802 -72.84095 2015-04-25 13:00:00 obsr129127 S23063498 Stationary P21 EBIRD 30.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303022205 2021-11-15 03:06:58.889978 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-13 14:00:00 obsr585997 S22342246 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312378373 2018-08-04 17:11:55 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Nassau US-NY-059 30.0 East Shore Rd, Great Neck L1414428 P 40.7977755 -73.7126586 2015-04-23 14:00:00 obsr676630 S23019010 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319339875 2018-07-09 13:20:06 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Panama Rocks Scenic Park L7686395 H 42.072845 -79.488153 2015-05-13 09:45:00 obsr2816437 S23426133 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310692046 2018-08-04 17:09:22 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Ontario US-NY-069 13.0 muar pond L981244 P 42.8811688 -77.2650433 2015-04-15 19:00:00 obsr2979658 S22909516 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299195553 2019-07-23 17:27:27 30494 species avibase-240E3390 House Sparrow Passer domesticus 10 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-02-22 12:20:00 obsr241086 S22041698 Stationary P21 EBIRD 60.0 2.0 1 G1157767 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293813263 2021-03-26 08:05:20.615241 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Onondaga US-NY-067 13.0 Skan - 5 E. Lake St L631480 P 42.9468657 -76.4167383 2015-01-29 07:53:00 obsr2279567 S21587594 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293672902 2021-11-09 19:56:28.26385 7011 species avibase-534FB490 Northern Gannet Morus bassanus 1 United States US New York US-NY Orange US-NY-071 28.0 Sawyer's Peak L3323518 P 41.3716881 -74.3810892 2015-01-27 08:30:00 obsr2273061 S21576496 Stationary P21 EBIRD 210.0 3.0 1 G1184311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290009048 2022-03-05 22:03:50.715584 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-01-09 10:30:00 obsr444155 S21264609 Traveling P22 EBIRD 60.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292540170 2021-03-30 19:29:33.633096 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 2 United States US New York US-NY Suffolk US-NY-103 30.0 Coopers pond L3308975 P 40.8873031 -72.3511505 2015-01-21 12:35:00 obsr649205 S21487071 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308773190 2021-04-01 11:49:53.573686 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Queens US-NY-081 30.0 Kissena Park L491873 H 40.7462409 -73.8080852 2015-04-09 11:03:00 obsr2233270 S22778197 Traveling P22 EBIRD 115.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317112374 2018-08-06 22:29:14 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-05-08 09:05:00 obsr1830659 S23301478 Traveling P22 EBIRD 45.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311775324 2018-08-04 17:08:33 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Onondaga US-NY-067 13.0 Old Erie Canal--Bennett'sCrs Rd to Newport Rd L288524 P 43.0828263 -76.356028 2015-04-11 13:16:00 obsr2279567 S22978864 Rusty Blackbird Spring Migration Blitz P41 EBIRD 104.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308979654 2021-03-26 07:52:59.845315 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-10 07:53:00 obsr1000124 S22792936 Area P23 EBIRD 75.0 2.59 2.0 1 G1213922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303285450 2021-03-23 16:52:36.900075 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Bayard Cutting Arboretum SP L715580 H 40.7355391 -73.1629871 2015-03-15 10:30:00 obsr2555972 S22362624 Traveling P22 EBIRD 45.0 1.609 2.0 1 G1180660 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301006219 2021-11-09 18:27:18.873475 16285 species avibase-5BC4E0EF Willow Flycatcher Empidonax traillii 1 United States US New York US-NY Dutchess US-NY-027 13.0 Allen Road yard list, Salt Point L1943130 P 41.8350253 -73.8021156 2015-03-05 07:30:00 obsr2175245 S22179535 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS693008653 2021-03-30 19:22:51.561415 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus X United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-23 16:15:00 obsr251507 S51243808 Traveling P22 EBIRD 255.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330091912 2018-08-04 17:12:38 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 5 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-04-28 16:50:00 obsr1846130 S24140475 Traveling P22 EBIRD 123.0 2.012 2.0 1 G1335321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319632569 2018-08-06 22:29:54 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 4 United States US New York US-NY Columbia US-NY-021 14.0 Drowned Lands Swamp Conservation Area L2704928 H 42.0536902 -73.5669422 2015-05-14 07:45:00 obsr798742 S23443018 Traveling P22 EBIRD 175.0 1.609 10.0 1 G1270783 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303929171 2021-12-03 21:50:44.732892 8773 species avibase-7AA076EF Barred Owl Strix varia 1 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-03-18 13:00:00 obsr1535951 S22413646 Traveling P22 EBIRD 60.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307966388 2021-04-01 12:14:19.266649 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Oak Beach L267998 H 40.63923 -73.28832 2015-04-06 08:21:00 obsr564905 S22717059 Traveling P22 EBIRD 54.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311035514 2020-02-18 11:49:12 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 3 United States US New York US-NY Suffolk US-NY-103 30.0 Terrell River County Park L523654 H 40.7921091 -72.7785873 2015-04-18 10:30:00 obsr1592950 S22931640 Traveling P22 EBIRD 90.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307078856 2021-03-19 16:06:54.047432 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-04-02 obsr1395007 S22653553 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312987253 2021-04-01 11:30:42.037277 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 15:00:00 obsr2369927 S23059302 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308195115 2021-03-30 19:22:51.561415 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-04-06 08:00:00 obsr1160328 S22733992 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292617813 2021-11-09 22:38:55.83044 406 species avibase-27B2749A Wood Duck Aix sponsa 1 Male, Adult (1) United States US New York US-NY Sullivan US-NY-105 US-NY_2792 28.0 644 River Road L2326174 P 41.782401 -75.1017773 2015-01-11 08:20:00 obsr279522 S21493386 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312360485 2021-04-01 11:15:31.646886 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-23 13:20:00 obsr41879 S23017668 Traveling P22 EBIRD 140.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310175612 2021-04-01 11:15:31.646886 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-15 06:58:00 obsr41879 S22874320 Traveling P22 EBIRD 110.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307267241 2021-03-23 16:52:36.900075 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 PI--Route 2 L985256 P 41.1773619 -72.202642 2015-04-03 15:13:00 obsr2485753 S22667083 Traveling P22 EBIRD 24.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310923002 2021-12-28 15:50:27.785498 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-18 10:28:00 obsr606693 S22924602 Traveling P22 EBIRD 10.0 0.032 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289485253 2021-04-01 11:30:42.037277 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 17 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-06 12:20:00 obsr259298 S21222953 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303391945 2021-03-30 19:13:38.458673 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus X United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-15 16:00:00 obsr2240964 S22371315 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324388341 2018-08-06 22:31:25 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Cayuga US-NY-011 US-NY_1726 13.0 Duck Lake L3047142 P 43.1493445 -76.6843987 2015-05-30 07:00:00 obsr2050665 S23733076 Traveling P22 EBIRD 80.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300138294 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-28 12:10:00 obsr1706920 S22115132 Traveling P22 EBIRD 135.0 0.322 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS325001129 2021-03-26 07:56:20.588749 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 4 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-19 16:00:00 obsr2218212 S23775927 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308489531 2021-03-26 06:21:54.883933 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-08 14:15:00 obsr454647 S22756313 Traveling P22 EBIRD 50.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315488835 2021-09-08 04:42:53.165995 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 8 United States US New York US-NY New York US-NY-061 30.0 Sherman Creek Park and Swindler Cove L1018912 H 40.8580281 -73.921085 2015-05-03 15:25:00 obsr2105033 S23208579 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309924440 2021-03-23 17:00:13.087107 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 17 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-04-14 07:36:00 obsr455249 S22856666 Traveling P22 EBIRD 9.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308383699 2021-03-19 16:10:30.527219 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 United States US New York US-NY Chemung US-NY-015 28.0 Sperr Memorial Park L7578475 H 42.1465676 -76.9144776 2015-04-07 19:27:00 obsr2173269 S22748062 Traveling P22 EBIRD 43.0 0.483 1.0 1 G1210649 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288472730 2021-03-26 06:21:54.883933 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 15 United States US New York US-NY Kings US-NY-047 Floyd Bennett Field--Community Gardens L996212 H 40.5863861 -73.892777 2015-01-01 12:20:00 obsr1868191 S21140281 Traveling P22 EBIRD 85.0 0.402 2.0 1 G4460190 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301554050 2021-03-24 21:10:11.310781 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-03-06 08:30:00 obsr1664745 S22221504 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318487648 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 30 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-09 16:30:00 obsr1348614 S23377598 Traveling P22 EBIRD 80.0 1.0 6.0 1 G1265607 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309745197 2021-04-01 11:15:31.646886 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-13 10:00:00 obsr263005 S22844194 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322197235 2021-04-01 11:15:31.646886 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata N 15 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-23 08:00:00 obsr1731572 S23592519 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303594299 2021-04-01 12:18:57.910168 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-03-16 09:00:00 obsr2137468 S22387481 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307744247 2018-08-04 17:05:26 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area - NCAE L474355 P 43.0923966 -77.3768806 2015-04-04 14:20:00 obsr2113616 S22700706 Traveling P22 EBIRD 95.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293262898 2018-08-04 16:55:15 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 50 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-01-25 13:40:00 obsr2871264 S21543719 Stationary P21 EBIRD 15.0 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298961263 2021-03-24 19:19:28.646223 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 10 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-02-22 08:00:00 obsr2700440 S22021133 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300067155 2021-04-01 12:32:15.282601 30494 species avibase-240E3390 House Sparrow Passer domesticus 10 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-02-28 13:19:00 obsr613775 S22108861 Traveling P22 EBIRD 94.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292949223 2015-02-22 11:23:01 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 1 United States US New York US-NY Greene US-NY-039 13.0 Coxsackie Creek Grassland Preserve L293901 H 42.3734151 -73.8229966 2015-01-24 15:45:00 obsr1181085 S21519370 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311452442 2021-03-24 20:16:00.852773 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Richmond US-NY-085 30.0 Blue Heron Park--Barclay Ave. Ponds L3548453 H 40.532467 -74.170855 2015-04-19 11:50:00 obsr155915 S22957206 Traveling P22 EBIRD 5.0 0.322 3.0 1 G1227502 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316079606 2021-11-09 18:42:19.628792 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-05 08:30:00 obsr1917973 S23242165 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295532639 2018-08-04 16:55:53 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 2 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Aurora-1849 Honoco Rd L3346401 P 42.709315 -76.702003 2015-02-08 09:42:00 obsr1828453 S21724730 Traveling P22 EBIRD 20.0 1.609 3.0 1 G1138935 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307742694 2021-03-26 07:30:35.289997 30494 species avibase-240E3390 House Sparrow Passer domesticus N 4 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-05 11:01:00 obsr1655171 S22700589 Traveling P22 EBIRD 34.0 0.966 2.0 1 G1212774 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301655918 2018-08-04 16:59:02 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-03-08 11:30:00 obsr1135516 S22229024 Traveling P22 EBIRD 75.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319220865 2021-03-26 07:46:52.994574 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-13 08:08:00 obsr1165633 S23419528 Traveling P22 EBIRD 106.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302670548 2021-03-26 07:07:10.758746 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N 5 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-03-12 15:45:00 obsr1958124 S22314653 Traveling P22 EBIRD 12.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304728345 2021-12-10 08:21:29.396662 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 5 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-21 11:50:00 obsr568671 S22474260 Traveling P22 EBIRD 240.0 3.219 3.0 1 G1190626 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308755869 2021-03-23 17:00:13.087107 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-08 07:33:00 obsr2683910 S22776887 Traveling P22 EBIRD 42.0 0.966 2.0 1 G1212820 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304736331 2021-11-15 03:06:58.889978 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-22 12:01:00 obsr2885680 S22474849 Traveling P22 EBIRD 167.0 0.966 2.0 1 G1188914 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308983350 2015-04-15 08:31:16 7429 species avibase-1327AC55 Osprey Pandion haliaetus 250 United States US New York US-NY Onondaga US-NY-067 13.0 RUBL roost L3553931 P 43.1191543 -76.2398815 2015-04-10 18:55:00 obsr2279567 S22793200 Rusty Blackbird Spring Migration Blitz P41 EBIRD 18.0 0.08 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288275450 2018-08-04 16:52:26 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY New York US-NY-061 Randalls Island--saltmarsh at Little Hell Gate Inlet L1785361 H 40.7913671 -73.9265029 2015-01-01 15:50:00 obsr856524 S21124061 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308584231 2021-03-23 17:22:05.708166 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Herkimer US-NY-043 13.0 Eatonville Reservoir & Vicinity L2083419 P 43.0306726 -74.9159941 2015-04-08 11:38:00 obsr316199 S22763519 Traveling P22 EBIRD 30.0 0.483 3.0 1 G1211922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317643709 2021-04-01 10:45:00.916278 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-09 07:00:00 obsr1135516 S23332052 Traveling P22 EBIRD 420.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293825500 2021-10-03 11:22:58.518171 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--scrub W of maint. bldgs L1350743 H 40.512992 -74.2150962 2015-01-29 10:27:00 obsr1958124 S21588688 Traveling P22 EBIRD 3.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292120816 2021-03-26 06:29:56.44369 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-01-19 12:48:00 obsr334398 S21433743 Traveling P22 EBIRD 4.0 0.032 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319164929 2021-04-01 11:15:31.646886 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 06:58:00 obsr1821546 S23416257 Traveling P22 EBIRD 392.0 4.184 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288413646 2021-04-01 12:35:52.669792 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 12 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-01 14:50:00 obsr1633923 S21135066 Stationary P21 EBIRD 80.0 1.0 1 G1090261 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306956526 2021-03-26 06:15:05.840405 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Cortland US-NY-023 28.0 Upper Little York Lake L2712885 H 42.7019606 -76.1568832 2015-04-02 14:05:00 obsr1696616 S22644146 Traveling P22 EBIRD 7.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313205918 2019-01-07 15:35:03 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Chautauqua US-NY-013 13.0 College Lodge SUNY L2220962 H 42.3440743 -79.4279337 2015-04-26 10:38:00 obsr916033 S23072238 Traveling P22 EBIRD 231.0 5.633 2.0 1 G1237515 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323407593 2016-01-03 21:19:26 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Iroquois NWR--Swallow Hollow Trail L771567 H 43.1254425 -78.3256102 2015-05-27 10:00:00 obsr2912088 S23666763 Traveling P22 EBIRD 120.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318292377 2021-03-30 19:13:38.458673 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-10 10:20:00 obsr983655 S23366719 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306295872 2022-02-17 14:32:23.002448 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-30 10:00:00 obsr1284279 S22593817 Traveling P22 EBIRD 40.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001810 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 14 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-30 16:00:00 obsr2218212 S23775947 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288194156 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-01 08:26:00 obsr756196 S21117018 Traveling P22 EBIRD 83.0 0.805 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290179975 2021-11-09 20:12:16.773384 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 7 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-01-10 09:23:00 obsr1912104 S21278479 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289659749 2021-03-24 21:13:42.099821 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 4 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-01-07 09:00:00 obsr258431 S21236867 Stationary P21 EBIRD 140.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322881673 2018-08-06 22:31:09 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Fulton US-NY-035 14.0 East Stoner Lake L3096105 P 43.2269437 -74.516058 2015-05-25 13:30:00 obsr2590001 S23632232 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316827000 2018-08-06 22:29:05 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 3 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-05-07 07:30:00 obsr349211 S23285315 Traveling P22 EBIRD 180.0 2.414 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305822761 2021-11-09 21:50:48.44865 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 8 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-28 13:45:00 obsr1588136 S22558464 Traveling P22 EBIRD 40.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323812945 2018-08-06 22:31:22 30494 species avibase-240E3390 House Sparrow Passer domesticus 7 United States US New York US-NY Erie US-NY-029 13.0 WNY Land Conservancy Office L2058573 P 42.7636185 -78.5480404 2015-05-29 09:15:00 obsr2537615 S23690924 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310219668 2021-03-26 06:59:15.841579 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Oswego US-NY-075 Rudy's L3565747 P 43.44948 -76.55813 2015-04-15 12:52:00 obsr1494506 S22877145 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309373537 2021-03-30 19:13:38.458673 33034 species avibase-6283E61E Pine Warbler Setophaga pinus N 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay L83 H 43.3130395 -77.7153471 2015-04-12 11:15:00 obsr2933610 S22818578 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314967880 2021-04-01 12:32:15.282601 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-05-02 13:30:00 obsr544268 S23180634 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307667533 2021-03-19 16:10:30.527219 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Chemung US-NY-015 28.0 Bottchers Landing L143559 H 42.1246158 -76.951613 2015-04-05 10:11:00 obsr1092576 S22695369 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322441175 2021-04-01 11:24:19.637193 30494 species avibase-240E3390 House Sparrow Passer domesticus 65 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Devil's Nose trails L985791 H 43.3669197 -77.9770732 2015-05-24 08:08:00 obsr1696616 S23606325 Traveling P22 EBIRD 60.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316079574 2021-11-09 18:42:19.628792 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus X United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-05 08:30:00 obsr1917973 S23242165 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292539956 2018-08-04 16:54:50 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 50 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-01-21 15:00:00 obsr2673845 S21487049 Stationary P21 EBIRD 15.0 3.0 1 G1118989 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292792868 2021-03-26 06:07:45.516082 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 Male, Adult (1) United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-01-23 09:30:00 obsr128156 S21504340 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307824568 2022-02-17 14:32:23.002448 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis N 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-04 11:30:00 obsr1152226 S22706535 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297206203 2015-02-17 08:17:37 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Captree Island L2865928 H 40.6469348 -73.2632673 2015-02-13 09:04:00 obsr756196 S21867350 Traveling P22 EBIRD 7.0 0.966 2.0 1 G1150413 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289288788 2021-04-01 12:14:19.266649 32869 species avibase-D204A930 Tennessee Warbler Leiothlypis peregrina 1 United States US New York US-NY Suffolk US-NY-103 30.0 Shorts Pond L549100 H 40.9455791 -72.3332505 2015-01-05 07:45:00 obsr1736113 S21207195 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309424380 2021-03-23 16:39:03.255227 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 1 United States US New York US-NY Richmond US-NY-085 US-NY_818 30.0 Bridge Creek, Western Ave. L880325 H 40.6324936 -74.1838624 2015-04-12 08:38:00 obsr155915 S22821618 Stationary P21 EBIRD 6.0 2.0 1 G1216230 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319714007 2022-02-17 14:32:23.002448 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 19 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-14 15:30:00 obsr2448957 S23447689 Traveling P22 EBIRD 260.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316917939 2021-03-30 19:39:10.250398 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 2 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-05-07 08:00:00 obsr1494607 S23290263 Traveling P22 EBIRD 150.0 1.609 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295454502 2021-03-30 19:43:32.881136 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-07 15:45:00 obsr1540211 S21718515 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313301442 2018-08-04 17:12:28 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 8 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Muckrace Flats L690187 H 43.0734492 -76.739459 2015-04-26 17:11:00 obsr1655171 S23078082 Stationary P21 EBIRD 2.0 2.0 1 G1241615 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302233854 2021-04-01 11:49:53.573686 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 11 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-03-10 11:42:00 obsr1982614 S22276438 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320576121 2018-08-06 22:30:25 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Chautauqua US-NY-013 13.0 Whalen Memorial SF L1217557 H 42.1285297 -79.5270681 2015-05-17 13:51:00 obsr1092576 S23493820 Traveling P22 EBIRD 74.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290714543 2021-03-23 16:30:20.514143 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-New Haven- Kibby Rd - Home (Private) L5185742 P 43.449899 -76.30402 2015-01-12 08:11:00 obsr2945658 S21321882 Stationary P21 EBIRD 169.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300505612 2021-11-14 08:08:43.2446 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Albany US-NY-001 13.0 South Manning Boulevard, Albany (yard list) L1648401 P 42.65848 -73.8029 2015-03-02 07:28:00 obsr2512689 S22142119 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324077220 2021-03-24 19:24:40.212356 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-05-30 08:00:00 obsr479109 S23712773 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300314022 2018-08-04 16:58:31 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 11 United States US New York US-NY Tioga US-NY-107 28.0 Upper Mill Pond, Candor L2309020 H 42.23488 -76.341895 2015-03-01 10:46:00 obsr1655171 S22129230 Stationary P21 EBIRD 2.0 2.0 1 G1171264 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311574715 2021-03-19 16:06:54.047432 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Owasco Flats Nature Reserve L3578209 P 42.7471613 -76.4643717 2015-04-18 08:45:00 obsr534615 S22965027 Traveling P22 EBIRD 180.0 1.609 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309135922 2018-08-04 17:08:34 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Saratoga US-NY-091 13.0 Wrights Loop L691715 H 42.9902551 -73.6132237 2015-04-11 13:50:00 obsr2774749 S22803108 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309383896 2015-04-12 12:55:36 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Nassau US-NY-059 30.0 Whitney Pond Park L1412003 H 40.7848952 -73.7037661 2015-04-11 10:00:00 obsr676630 S22819189 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304951511 2021-12-10 08:21:29.396662 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N X United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-21 11:50:00 obsr2161273 S22491189 Traveling P22 EBIRD 240.0 3.219 3.0 1 G1190626 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314868543 2018-08-04 17:14:00 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Albany US-NY-001 13.0 Mohawk-Hudson Bike-Hike Trail, Mohawk Riverside Landing Park L2584161 H 42.7739949 -73.816349 2015-05-02 06:00:00 obsr777630 S23175608 Traveling P22 EBIRD 165.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386090528 2020-08-23 12:17:54 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Schenectady US-NY-093 13.0 1381 Clifton Park Road, Niskayuna, NY L4427247 P 42.8123914 -73.8958481 2015-03-22 12:00:00 obsr2413557 S28571171 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293333375 2021-04-01 12:43:36.236969 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Tioga US-NY-107 28.0 Cannon Hole (Barton Landing) L3319362 H 42.0246104 -76.4646721 2015-01-25 15:30:00 obsr317968 S21548876 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302658596 2015-04-07 11:31:49 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-03-10 11:17:00 obsr2760150 S22313866 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316037464 2021-04-01 11:15:31.646886 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 06:13:00 obsr150415 S23239811 Traveling P22 EBIRD 146.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306056817 2021-04-01 11:15:31.646886 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-29 09:00:00 obsr1659461 S22575450 Traveling P22 EBIRD 180.0 6.437 2.0 1 G1196469 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309777822 2021-03-23 16:30:20.514143 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 09:00:00 obsr948687 S22846292 Stationary P21 EBIRD_CAN 240.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300228997 2021-11-09 21:57:19.082805 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Ulster US-NY-111 28.0 US-NY-Gardiner-246 Farmer's Turnpike L3447989 P 41.685743 -74.163438 2015-03-01 10:20:00 obsr721883 S22122359 Stationary P21 EBIRD 43.0 2.0 1 G3776448 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290952533 2021-03-30 19:39:10.250398 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 7 United States US New York US-NY Nassau US-NY-059 30.0 Saint Johns Pond Sanctuary L123034 H 40.85417 -73.46333 2015-01-14 09:50:00 obsr1107696 S21340862 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311970532 2018-08-04 17:11:30 447 species avibase-C235A4D7 Gadwall Mareca strepera X United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-21 14:20:00 obsr319738 S22991675 Traveling P22 EBIRD 100.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299097701 2021-03-23 17:22:05.708166 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 10 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-19 07:05:00 obsr1000124 S22034311 Area P23 EBIRD 70.0 2.59 2.0 1 G1157022 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317072835 2018-08-04 17:15:13 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-07 17:46:00 obsr749440 S23299260 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293512427 2021-03-24 19:47:16.07498 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-01-24 08:49:00 obsr589593 S21563807 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320274746 2021-03-30 19:13:38.458673 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-16 06:46:00 obsr745890 S23477949 Traveling P22 EBIRD 180.0 0.966 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307197671 2018-08-04 17:05:07 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Columbia US-NY-021 14.0 Drowned Lands Swamp Conservation Area L2704928 H 42.0536902 -73.5669422 2015-04-02 15:50:00 obsr481595 S22662010 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312697150 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 H C2 H Female, Adult (1); Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 16:58:00 obsr924076 S23041648 Traveling P22 EBIRD 118.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302633442 2015-03-12 13:52:54 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-16 Enfield Center Rd E L3482684 P 42.437649 -76.571372 2015-03-12 01:15:00 obsr2001485 S22312381 Stationary P21 EBIRD 757.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311541926 2021-03-30 19:29:33.633096 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 4 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-19 08:35:00 obsr1987335 S22962756 Rusty Blackbird Spring Migration Blitz P41 EBIRD 70.0 1.609 2.0 1 G1228234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291770910 2021-03-30 19:13:38.458673 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-18 13:25:00 obsr302343 S21406384 Traveling P22 EBIRD 65.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303538971 2021-03-24 20:03:01.953443 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 100 United States US New York US-NY Niagara US-NY-063 13.0 Olcott Pier L1345996 H 43.3399055 -78.7176999 2015-03-16 07:38:00 obsr2756208 S22383379 Traveling P22 EBIRD 43.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303468895 2019-07-23 17:27:15 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Plum Gut L1633340 P 41.1627284 -72.2217071 2015-02-01 14:05:00 obsr564905 S22377936 Traveling P22 EBIRD 10.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309940548 2021-04-01 10:57:06.520339 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-04-14 07:54:00 obsr2420101 S22857868 Traveling P22 EBIRD 106.0 1.287 2.0 1 G1239076 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304693834 2021-04-01 11:15:31.646886 7200 species avibase-49D9148A Great Egret Ardea alba N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-18 16:15:00 obsr2603801 S22471655 Traveling P22 EBIRD 60.0 4.023 2.0 1 G1188675 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305202328 2021-03-26 08:05:20.615241 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 17 United States US New York US-NY Onondaga US-NY-067 13.0 Skan - 5 E. Lake St L631480 P 42.9468657 -76.4167383 2015-03-25 07:54:00 obsr2279567 S22510684 Stationary P21 EBIRD 63.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313112032 2021-11-09 21:35:18.646328 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 3 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-26 08:15:00 obsr1446126 S23066804 Stationary P21 EBIRD 223.0 4.0 1 G1236777 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305197919 2021-03-23 16:48:08.60516 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 6 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-03-24 13:42:00 obsr2914424 S22503712 Traveling P22 EBIRD 228.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS354453982 2021-04-01 11:24:19.637193 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 155 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-01-17 12:13:00 obsr2276013 S25925645 Traveling P22 EBIRD 88.0 0.483 3.0 1 G1472319 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319278956 2015-05-13 13:39:17 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-13 07:55:00 obsr2289693 S23422714 Traveling P22 EBIRD 60.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306510151 2021-03-26 06:20:10.658048 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY Genesee US-NY-037 13.0 hunn rd alexander L3492933 P 42.9283369 -78.2158113 2015-03-31 09:02:00 obsr393804 S22610536 Traveling P22 EBIRD 17.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316712681 2021-04-01 12:32:15.282601 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-05 07:30:00 obsr271871 S23278546 Traveling P22 EBIRD 90.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295437517 2021-04-01 11:15:31.646886 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-02-07 14:00:00 obsr1711339 S21717025 Traveling P22 EBIRD 105.0 1.609 3.0 1 G1138080 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290924625 2021-04-01 10:55:39.308231 6619 spuh avibase-C3E757A3 loon sp. Gavia sp. 80 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-01-13 09:20:00 obsr1895272 S21337483 Stationary P21 EBIRD 15.0 3.0 1 G1108675 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308492954 2021-03-24 19:27:13.077399 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-04-08 10:35:00 obsr142874 S22756583 Stationary P21 EBIRD 205.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298711580 2021-03-26 07:46:10.228013 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Yates US-NY-123 13.0 Seneca Lake, Glenora Falls and Spit L463248 H 42.4907071 -76.9120216 2015-02-21 08:52:00 obsr2871406 S22000777 Traveling P22 EBIRD 23.0 2.092 2.0 1 G1154692 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322304230 2021-03-26 07:56:20.588749 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-23 11:55:00 obsr916370 S23598326 Traveling P22 EBIRD 80.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314287322 2021-11-15 03:06:58.889978 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 09:00:00 obsr423515 S23140276 Traveling P22 EBIRD 210.0 4.828 4.0 1 G1243147 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301814820 2018-08-04 16:59:01 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-03-08 09:16:00 obsr241086 S22242618 Stationary P21 EBIRD 7.0 11.0 1 G1170860 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303953386 2015-03-18 20:56:51 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 Male, Adult (1) United States US New York US-NY Fulton US-NY-035 14.0 Canada Lake & Kasson Drive L774836 P 43.1663043 -74.5057046 2015-03-18 11:41:00 obsr316199 S22415418 Traveling P22 EBIRD 17.0 2.092 3.0 1 G1184565 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317133259 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 07:15:00 obsr2363365 S23302552 Traveling P22 EBIRD 420.0 4.828 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309520860 2021-04-01 12:18:57.910168 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 3 United States US New York US-NY Tompkins US-NY-109 13.0 Salt Point Natural Area L353038 H 42.5394116 -76.5496267 2015-04-12 10:10:00 obsr436489 S22827849 Traveling P22 EBIRD 60.0 0.75 2.0 1 G1216802 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305258902 2021-03-24 05:37:45.927792 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-03-25 10:40:00 obsr2071643 S22515194 Traveling P22 EBIRD 750.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295574796 2021-03-26 06:39:43.334073 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-02-08 10:45:00 obsr2033754 S21727992 Traveling P22 EBIRD 75.0 0.805 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS320310743 2021-11-09 18:49:39.300433 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 4 United States US New York US-NY Dutchess US-NY-027 US-NY_2790 28.0 Dennings Point SP L393533 H 41.4888644 -73.9865263 2015-05-16 17:00:00 obsr2542037 S23479879 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299529863 2021-04-01 12:18:57.910168 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 25 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-02-25 12:06:00 obsr1318356 S22067218 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311657568 2015-05-07 17:07:25 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Pond Trail L122741 P 42.3452195 -76.2989625 2015-04-20 17:46:00 obsr455249 S22971343 Traveling P22 EBIRD 11.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288476089 2021-11-09 22:39:08.499417 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Sullivan US-NY-105 28.0 Monticello L2516226 P 41.6544045 -74.6830845 2015-01-02 07:27:00 obsr1788273 S21140541 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314297621 2015-04-30 10:36:41 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Oneida US-NY-065 13.0 My Yard L367163 P 43.1337619 -75.6569678 2015-04-30 09:35:00 obsr2950436 S23140930 Traveling P22 EBIRD 61.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287161 2021-03-23 16:39:03.255227 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 38 United States US New York US-NY Richmond US-NY-085 Lemon Creek Pier L673443 H 40.5108301 -74.2097712 2015-01-01 12:36:00 obsr1893950 S21125151 Stationary P21 EBIRD 10.0 2.0 1 G1088903 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294209215 2017-08-16 16:29:39 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-01-31 14:00:00 obsr2363365 S21618779 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312084699 2018-08-04 17:11:15 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 2 United States US New York US-NY US-NY_1726 13.0 Montezuma NWR (general area) L246782 H 42.9833651 -76.7562389 2015-04-19 11:45:00 obsr2887137 S22999065 Traveling P22 EBIRD 180.0 1.609 26.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313808348 2021-03-23 16:52:36.900075 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Pine Neck Sanctuary L122956 H 40.84111 -72.56528 2015-04-28 12:45:00 obsr1693806 S23110290 Traveling P22 EBIRD 40.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308216662 2021-03-26 07:30:35.289997 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 25 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-07 09:28:00 obsr2683805 S22735663 Traveling P22 EBIRD 80.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319499101 2021-04-01 10:57:06.520339 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-05-14 06:54:00 obsr2420101 S23435514 Traveling P22 EBIRD 102.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300554674 2021-03-23 17:26:08.495143 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 200 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-21 13:00:00 obsr564905 S22145875 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1165032 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297522067 2015-03-03 10:02:11 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-02-16 08:00:00 obsr1792012 S21895560 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316050198 2021-11-09 17:58:40.313796 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-05 06:04:00 obsr1732267 S23240549 Traveling P22 EBIRD 240.0 5.472 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313069511 2018-08-04 17:12:23 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-26 09:44:00 obsr48167 S23064349 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309335817 2021-03-24 19:35:34.045988 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Erie US-NY-029 13.0 Pleasant Ave L1817453 P 42.7266285 -78.8960089 2015-04-12 09:30:00 obsr548442 S22816273 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323928969 2018-08-06 22:31:27 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Broome US-NY-007 28.0 King St. (Broome Co.) L3605158 H 42.2758278 -75.9053646 2015-05-30 08:38:00 obsr1830659 S23703742 Traveling P22 EBIRD 42.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290550633 2021-03-26 06:55:00.227271 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Home L3158249 P 42.7894329 -77.5681436 2015-01-11 08:30:00 obsr39511 S21308529 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324642298 2021-11-09 18:45:27.272498 7346 species avibase-D4540F88 Glossy Ibis Plegadis falcinellus 2 United States US New York US-NY Dutchess US-NY-027 13.0 near Verbank L3534485 P 41.7142739 -73.677063 2015-05-29 obsr191447 S23750341 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291266363 2015-01-16 12:11:26 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 2 United States US New York US-NY Livingston US-NY-051 13.0 Pucker Road L980436 P 42.6925102 -77.6854151 2015-01-16 11:25:00 obsr72341 S21366594 Traveling P22 EBIRD 10.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313561997 2021-03-30 19:37:33.521815 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Larkin Rd. L4342619 H 43.3037091 -76.7905645 2015-04-27 13:56:00 obsr1721609 S23094514 Traveling P22 EBIRD 127.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313725409 2021-03-23 16:21:52.613913 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-04-28 07:03:00 obsr606693 S23105001 Traveling P22 EBIRD 19.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295018772 2021-04-01 10:47:08.851048 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Broome US-NY-007 28.0 Vestal NY L1744580 P 42.0843082 -75.95502 2015-02-05 10:35:00 obsr1830659 S21684820 Stationary P21 EBIRD 25.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304904642 2021-11-09 19:02:27.638861 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 3 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-03-22 11:00:00 obsr2700041 S22487137 Traveling P22 EBIRD 240.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309447999 2018-08-04 17:06:21 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L1874982 P 42.108534 -76.0072181 2015-04-07 09:00:00 obsr998593 S22822877 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309164955 2015-04-11 17:32:18 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Suffolk US-NY-103 30.0 Town Creek L1402872 P 41.0626646 -72.4238587 2015-04-11 13:00:00 obsr2528068 S22805099 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309406685 2015-04-12 14:01:07 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Howard Ave farm field L2111844 P 42.0802249 -79.2724836 2015-04-12 13:30:00 obsr1380963 S22820603 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307783776 2021-03-23 17:26:08.495143 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 4 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-02 11:00:00 obsr1494607 S22703671 Traveling P22 EBIRD 60.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310951138 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos N 25 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-18 14:32:00 obsr332782 S22926441 Traveling P22 EBIRD 5.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314837870 2021-11-15 03:06:58.889978 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 06:00:00 obsr1135516 S23173835 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308558535 2021-03-26 06:39:43.334073 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-08 16:15:00 obsr822430 S22761702 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312173482 2021-03-26 06:39:43.334073 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-22 16:00:00 obsr2277801 S23005107 Historical P62 EBIRD 180.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309411625 2021-03-24 19:20:44.053843 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-12 07:00:00 obsr1044068 S22820916 Traveling P22 EBIRD 165.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314262710 2021-03-23 17:22:05.708166 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-04-27 06:30:00 obsr2694889 S23138653 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313621311 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-04-27 06:14:00 obsr259298 S23098263 Stationary P21 EBIRD 52.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309182470 2015-04-11 18:24:44 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Montgomery US-NY-057 13.0 Bean Hill L3555976 P 42.8752923 -74.234829 2015-04-11 17:00:00 obsr1918430 S22806310 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316445593 2018-11-16 19:55:00 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L692296 H 42.8874107 -78.7166119 2015-05-06 09:00:00 obsr2149313 S23263419 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308660103 2018-08-04 17:08:12 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 34 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant--East L870144 H 42.990146 -78.2094383 2015-04-09 10:32:00 obsr393804 S22769050 Traveling P22 EBIRD 88.0 3.862 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320503745 2018-08-06 22:30:21 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 S C2 S United States US New York US-NY Columbia US-NY-021 14.0 Drowned Lands Swamp Conservation Area L2704928 H 42.0536902 -73.5669422 2015-05-17 08:40:00 obsr798742 S23490084 Traveling P22 EBIRD 75.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307838096 2021-11-15 03:06:58.889978 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-05 13:00:00 obsr856524 S22707471 Traveling P22 EBIRD 70.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303348432 2021-04-01 11:24:19.637193 681 species avibase-407E2CA8 Common Merganser Mergus merganser 9 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Hamlin-1352-1920 County Rd 209 L3107443 P 43.338139 -77.886438 2015-03-15 15:25:00 obsr334398 S22367924 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135743 2021-03-26 07:56:20.588749 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-07 09:00:00 obsr2218212 S23589177 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS327403947 2021-03-24 19:27:13.077399 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-04-27 17:49:00 obsr1334267 S23944935 Traveling P22 EBIRD 27.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295600006 2021-03-26 08:14:57.071052 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Westchester US-NY-119 28.0 Georges Island Park L374054 H 41.2407495 -73.943342 2015-02-08 12:40:00 obsr186539 S21729921 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306894140 2021-03-26 07:46:52.994574 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 10 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-04-02 06:55:00 obsr2798912 S22639239 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290134360 2021-03-26 06:09:25.361188 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-01-10 07:30:00 obsr879105 S21274387 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313726813 2021-03-26 06:20:10.658048 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Genesee US-NY-037 13.0 Roberts Road, Basom, NY L1383329 P 43.1089883 -78.3658174 2015-04-28 08:00:00 obsr2588479 S23105094 Traveling P22 EBIRD 6.0 4.023 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299833326 2021-03-26 07:17:57.136956 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 100 United States US New York US-NY Seneca US-NY-099 13.0 Seybolt Road, S of Bait Ponds L2524923 H 42.836262 -76.7689204 2015-02-27 07:52:00 obsr869999 S22090733 Traveling P22 EBIRD 51.0 8.047 2.0 1 G1160929 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521290 2018-08-04 16:53:08 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus 12 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-11 11:18:00 obsr869999 S21306332 Stationary P21 EBIRD 7.0 1.0 1 G1105900 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301345893 2021-03-24 21:06:05.39641 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 2 United States US New York US-NY Onondaga US-NY-067 13.0 US-NY-Baldwinsville-8336-8412 County Rd 180 L3460645 P 43.174258 -76.397673 2015-03-07 09:05:00 obsr2871406 S22206015 Stationary P21 EBIRD 6.0 4.0 1 G1168629 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323500243 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 3 United States US New York US-NY New York US-NY-061 30.0 W Village Backyards and Airspace L974907 P 40.7366845 -74.0071853 2015-05-28 05:52:00 obsr128156 S23673179 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320500389 2021-04-01 11:30:42.037277 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-17 06:15:00 obsr1135516 S23489896 Traveling P22 EBIRD 315.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295974373 2021-04-01 11:54:40.172593 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 6 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-10 13:25:00 obsr1958124 S21759066 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308443146 2021-03-30 19:07:52.958398 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-08 10:30:00 obsr1536880 S22752790 Traveling P22 EBIRD 47.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312793450 2019-07-23 17:28:27 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.4220913 -79.4281205 2015-04-25 12:04:00 obsr1092576 S23047748 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289245163 2021-11-09 20:38:35.618233 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater N 10 United States US New York US-NY Putnam US-NY-079 28.0 Mahopac L123681 T 41.37229 -73.73348 2015-01-03 07:00:00 obsr1502560 S21203705 Traveling P22 EBIRD 450.0 9.656 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS567509405 2021-03-26 06:21:08.096334 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Jefferson US-NY-045 13.0 2800–2908 Favret Rd, Cape Vincent US-NY (44.1114,-76.3142) surrogate two for roadsides torn of Cape Vincent L6479881 P 44.111423 -76.314217 2015-01-30 12:50:00 obsr2188450 S41913665 Traveling P22 EBIRD 100.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304229116 2021-03-24 19:27:13.077399 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-03-20 11:00:00 obsr142874 S22437102 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300235352 2015-03-04 17:36:00 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Broome US-NY-007 28.0 Whitney Point Lake Overlook L3134674 H 42.338524 -75.962913 2015-03-01 11:28:00 obsr2871406 S22122885 Stationary P21 EBIRD 8.0 3.0 1 G1163316 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318875462 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-11 05:45:00 obsr1353449 S23399673 Traveling P22 EBIRD 420.0 8.047 5.0 1 G1266741 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309487966 2021-12-03 21:50:44.732892 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-04-12 14:15:00 obsr41879 S22825275 Traveling P22 EBIRD 35.0 0.402 6.0 1 G1216757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323260035 2021-11-15 03:06:58.889978 483 species avibase-85625D75 Mallard Anas platyrhynchos N 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-23 11:55:00 obsr1706920 S23656723 Traveling P22 EBIRD 120.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307120847 2018-12-20 18:38:37 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 20 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-02 14:40:00 obsr214789 S22653407 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315019462 2017-12-21 12:25:41 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 3 United States US New York US-NY Columbia US-NY-021 13.0 Olana State Historic Site L357372 H 42.2183005 -73.8287207 2015-05-02 08:00:00 obsr349211 S23180167 Traveling P22 EBIRD 150.0 2.092 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309929853 2021-03-26 07:46:52.994574 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-04-14 06:45:00 obsr2798912 S22857030 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308534721 2021-11-09 21:05:40.072124 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Rockland US-NY-087 30.0 NY State Thruway L3549187 P 41.1017823 -73.9924765 2015-04-08 15:30:00 obsr1253931 S22759875 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311682391 2018-11-05 18:44:57 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Chemung US-NY-015 28.0 Big Flats Trail--East L1404014 H 42.1456056 -76.9078173 2015-04-04 09:02:00 obsr1334267 S22973075 Traveling P22 EBIRD 95.0 2.012 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296457951 2015-02-13 20:46:28 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 2 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-13 13:12:00 obsr1062070 S21800254 Traveling P22 EBIRD 48.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309983243 2021-04-01 10:47:08.851048 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 20 United States US New York US-NY Broome US-NY-007 28.0 3665 River Rd Endicott L1466336 P 42.108244 -76.008055 2015-04-14 08:00:00 obsr1826325 S22860831 Traveling P22 EBIRD 240.0 4.828 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310305200 2021-04-01 11:30:42.037277 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-15 15:30:00 obsr2277801 S22882955 Historical P62 EBIRD 90.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301357575 2021-11-09 20:12:16.773384 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-03-07 09:57:00 obsr1912104 S22206938 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318770420 2021-04-01 11:30:42.037277 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-11 07:15:00 obsr2605333 S23393294 Traveling P22 EBIRD 150.0 4.828 3.0 1 G1267396 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300899686 2021-04-01 11:47:43.260314 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-03-04 10:21:00 obsr2224244 S22171605 Traveling P22 EBIRD 73.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310513250 2021-03-30 19:29:33.633096 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Suffolk US-NY-103 30.0 41 Belton Road, Babylon L986538 P 40.6931311 -73.3296955 2015-04-16 07:00:00 obsr247620 S22897656 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314203638 2021-03-26 07:20:31.408164 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-27 07:40:00 obsr2555972 S23134887 Traveling P22 EBIRD 50.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309682807 2021-03-19 16:08:39.161312 505 species avibase-C732CB10 American Black Duck Anas rubripes 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Watts Flats WMA - Green Flats Rd. L2381797 P 42.0315399 -79.4339633 2015-04-12 10:20:00 obsr2910282 S22839319 Traveling P22 EBIRD 40.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298188170 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 125 United States US New York US-NY New York US-NY-061 East River, Brooklyn Bridge to S.I. Ferry L3339003 H 40.7039737 -74.0059423 2015-02-18 07:58:00 obsr2179748 S21955018 Traveling P22 EBIRD 66.0 3.235 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312290495 2015-04-23 11:52:58 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 80 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--Golf Course L507417 H 40.6235296 -73.2860184 2015-04-23 08:28:00 obsr1228860 S23012881 Traveling P22 EBIRD 27.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321721917 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-21 09:01:00 obsr1049835 S23562654 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294362988 2021-03-24 20:23:39.258075 505 species avibase-C732CB10 American Black Duck Anas rubripes 12 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach State Park L230716 P 41.1295147 -72.2665183 2015-02-01 11:52:00 obsr2485753 S21630972 Traveling P22 EBIRD 72.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310840534 2021-03-26 07:00:33.333856 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-04-18 07:07:00 obsr2574755 S22919441 Traveling P22 EBIRD 71.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290951488 2021-04-01 11:42:50.317679 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-01-12 10:15:00 obsr2892286 S21340774 Stationary P21 EBIRD 200.0 2.0 1 G1108933 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322349715 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:20:00 obsr1152226 S23601011 Traveling P22 EBIRD 390.0 4.828 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312798113 2021-11-09 21:31:40.219848 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-25 11:47:00 obsr1446126 S23048145 Traveling P22 EBIRD 69.0 0.805 2.0 1 G1235164 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290462026 2021-03-30 19:29:33.633096 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-01-11 15:40:00 obsr1228860 S21301440 Traveling P22 EBIRD 28.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290503463 2015-01-11 18:59:37 447 species avibase-C235A4D7 Gadwall Mareca strepera 7 United States US New York US-NY Suffolk US-NY-103 30.0 Mecox Bay L3284851 P 40.9073298 -72.3561716 2015-01-10 08:35:00 obsr2338506 S21304942 Stationary P21 EBIRD 8.0 8.0 1 G1105253 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312820202 2021-03-26 06:39:43.334073 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Sheep Meadow L1153696 H 40.7718806 -73.9749652 2015-04-25 08:13:00 obsr1175815 S23049391 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300960564 2015-03-04 21:58:08 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 75 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-04 16:30:00 obsr777630 S22176263 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305584741 2021-03-24 20:33:47.533911 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 4 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-27 09:47:00 obsr2871406 S22540529 Traveling P22 EBIRD 41.0 0.161 2.0 1 G1194817 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316446143 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 08:30:00 obsr2527497 S23263463 Traveling P22 EBIRD 210.0 3.219 3.0 1 G1250033 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321874498 2021-03-26 06:17:19.712573 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-21 11:30:00 obsr1379161 S23572574 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288345963 2015-01-01 21:28:59 7127 species avibase-13E9F9B4 American Bittern Botaurus lentiginosus 2 United States US New York US-NY Wayne US-NY-117 13.0 Clyde -Hunts Corners Road L3255467 P 43.1018759 -76.8670893 2015-01-01 12:25:00 obsr195058 S21130138 Traveling P22 EBIRD 10.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319506309 2021-04-01 11:30:42.037277 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 07:30:00 obsr794187 S23435985 Traveling P22 EBIRD 270.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310429893 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-16 08:40:00 obsr1605975 S22891590 Traveling P22 EBIRD 170.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316742373 2021-03-26 06:17:19.712573 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-06 07:20:00 obsr2597186 S23280537 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310066189 2018-08-04 17:09:10 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 9 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-New Haven- Kibby Rd - Home (Private) L5185742 P 43.449899 -76.30402 2015-04-14 16:11:00 obsr2945658 S22866726 Traveling P22 EBIRD 142.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292527909 2021-03-26 07:52:40.224846 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Fulton US-NY-035 13.0 Rt 67 - between Rt 334 & Fulton Co. Solid Waste L3259465 P 43.0073547 -74.4421889 2015-01-21 15:31:00 obsr2694889 S21486057 Traveling P22 EBIRD 49.0 0.966 4.0 1 G1118894 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295540891 2021-11-09 20:12:16.773384 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 3 Female, Adult (3) United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-02-08 09:10:00 obsr1912104 S21725372 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324471377 2021-04-01 11:27:18.37144 6324 species avibase-342F6965 Short-billed Gull Larus brachyrhynchus 1 United States US New York US-NY Montgomery US-NY-057 13.0 West Ames Rd., horse farm L1208609 H 42.8466304 -74.6416926 2015-05-30 14:57:00 obsr1987335 S23738264 Traveling P22 EBIRD 53.0 3.219 2.0 1 G1299194 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301956376 2021-11-09 19:21:07.406501 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-03-08 09:00:00 obsr671490 S22252940 Rusty Blackbird Spring Migration Blitz P41 EBIRD 180.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306638739 2021-04-01 12:29:50.209479 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 55 United States US New York US-NY Fulton US-NY-035 13.0 County Route - 108 L641756 P 43.0583529 -74.7484016 2015-03-31 10:46:00 obsr1000124 S22620675 Traveling P22 EBIRD 28.0 5.794 3.0 1 G1200102 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309324043 2022-01-20 13:44:29.539827 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Seneca US-NY-099 US-NY_803 13.0 Geneva Lakefront Park, birds over water ONLY (Seneca Co.) L360643 H 42.8659781 -76.9714307 2015-04-12 06:31:00 obsr1278262 S22815565 Traveling P22 EBIRD 42.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309018330 2018-08-04 17:08:23 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Rensselaer US-NY-083 13.0 Tomhannock Reservoir L213216 H 42.8487622 -73.548707 2015-04-10 16:30:00 obsr2533499 S22795725 Traveling P22 EBIRD 60.0 16.093 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310398231 2021-03-30 19:29:33.633096 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Suffolk US-NY-103 30.0 Sound Beach (hamlet) L2967435 H 40.957488 -72.9679352 2015-04-11 15:43:00 obsr758734 S22889533 Traveling P22 EBIRD 21.0 1.0 2.0 1 G1221743 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292097469 2021-03-26 06:55:00.227271 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-01-20 09:39:00 obsr606693 S21431806 Traveling P22 EBIRD 16.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219354 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-31 14:59:00 obsr2493447 S21619523 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303828453 2021-03-19 16:14:11.035882 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cortland US-NY-023 28.0 West River Road - Virgil (Tioughnioga River) L2065122 P 42.5383466 -76.0960293 2015-03-14 10:20:00 obsr931232 S22405767 Traveling P22 EBIRD 45.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319415420 2022-02-17 14:32:23.002448 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-12 11:48:00 obsr454647 S23430496 Traveling P22 EBIRD 145.0 3.219 4.0 1 G1269781 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300056877 2021-04-01 12:11:50.996293 31530 species avibase-B48335B1 Pine Siskin Spinus pinus N 50 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Landfill (restricted access) L99684 H 42.9143943 -76.8409517 2015-02-28 12:55:00 obsr620377 S22108020 Traveling P22 EBIRD 59.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311447330 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-19 10:26:00 obsr574658 S22956861 Traveling P22 EBIRD 144.0 2.736 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324169968 2018-08-06 22:31:34 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-05-31 10:25:00 obsr1472872 S23718877 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323117094 2018-08-04 17:30:17 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-25 09:20:00 obsr1079517 S23647492 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316014686 2018-08-04 17:14:49 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-05-05 07:35:00 obsr1764243 S23238482 Traveling P22 EBIRD 19.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314203408 2021-04-01 11:54:40.172593 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 8 S C2 S United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-28 16:50:00 obsr1032565 S23134875 Traveling P22 EBIRD 168.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307300183 2021-03-30 19:13:38.458673 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Park West L1756090 H 43.1831991 -77.5278997 2015-04-03 18:05:00 obsr302343 S22669456 Stationary P21 EBIRD 40.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298469494 2019-07-23 17:27:23 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-02-19 14:40:00 obsr1958124 S21979971 Traveling P22 EBIRD 20.0 0.483 2.0 1 G1153084 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317272824 2015-05-08 18:10:22 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-05-07 18:10:00 obsr646558 S23310046 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306477573 2021-03-26 06:29:56.44369 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-03-28 07:50:00 obsr1245041 S22608082 Stationary P21 EBIRD 85.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303997767 2018-01-07 20:13:45 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-03-19 07:12:00 obsr2420101 S22418680 Stationary P21 EBIRD 38.0 2.0 1 G1184969 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1042658116 2021-02-14 21:48:55.95746 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus X United States US New York US-NY Westchester US-NY-119 30.0 Schools (Private Property) L11890148 P 40.9362227 -73.8187828 2015-02-25 15:30:00 obsr709145 S78535938 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316530912 2021-03-22 08:58:29.008072 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-05-06 08:45:00 obsr794187 S23268286 Traveling P22 EBIRD 25.0 0.483 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291999016 2021-04-01 12:18:57.910168 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Black Diamond Trail, Ithaca (southern end) L3300863 H 42.4524707 -76.517061 2015-01-18 12:23:00 obsr2683910 S21424088 Traveling P22 EBIRD 31.0 0.966 2.0 1 G1116208 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322644443 2021-03-30 19:13:38.458673 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Beatty Point L299148 H 43.2762602 -77.684471 2015-05-24 19:09:00 obsr730231 S23617658 Traveling P22 EBIRD 49.0 1.287 2.0 1 G1288068 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291450446 2019-01-03 10:54:11 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-17 08:15:00 obsr2448785 S21381408 Stationary P21 EBIRD 20.0 2.0 1 G1112054 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288811653 2021-04-01 11:24:19.637193 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-01-03 08:54:00 obsr745890 S21168012 Incidental P20 EBIRD 2.0 1 G1093566 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323511101 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 09:48:00 obsr1982614 S23673930 Traveling P22 EBIRD 180.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306320714 2018-08-04 17:04:46 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-03-30 10:17:00 obsr1565981 S22595601 Traveling P22 EBIRD 53.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303937876 2021-03-19 16:44:35.607263 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-03-17 08:00:00 obsr2759466 S22414310 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290710501 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Zachs Bay L610793 H 40.6014415 -73.4918618 2015-01-11 12:15:00 obsr1062217 S21321547 Stationary P21 EBIRD 60.0 6.0 1 G1107395 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310612250 2021-03-26 07:30:35.289997 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-17 08:26:00 obsr1655171 S22904512 Traveling P22 EBIRD 24.0 0.644 2.0 1 G1223890 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303700165 2021-03-19 16:43:17.120646 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 10 United States US New York US-NY Madison US-NY-053 13.0 Caz Patch L1138637 P 42.9656245 -75.8726978 2015-03-15 08:00:00 obsr735566 S22395572 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308143279 2021-03-26 06:14:19.776945 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 8 United States US New York US-NY Columbia US-NY-021 14.0 rt 7 w.copake L226319 P 42.1065155 -73.5936478 2015-04-05 14:05:00 obsr1225900 S22729632 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298480968 2021-10-03 11:22:58.518171 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 10 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--scrub W of maint. bldgs L1350743 H 40.512992 -74.2150962 2015-02-19 08:12:00 obsr1893950 S21980833 Incidental P20 EBIRD 2.0 1 G1153107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312478380 2021-03-23 17:00:13.087107 1189 species avibase-6D2B5CDA Ruffed Grouse Bonasa umbellus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-04-24 08:05:00 obsr455249 S23025805 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305414729 2021-03-24 20:33:47.533911 657 species avibase-B7B1A5DD Black Scoter Melanitta americana N 8 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-03-26 11:05:00 obsr1006348 S22526924 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288098218 2015-01-01 08:12:24 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southeast L879238 H 42.4674118 -76.4183235 2015-01-01 07:20:00 obsr887540 S21109012 Traveling P22 EBIRD 51.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308949145 2021-03-30 19:07:52.958398 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-10 16:00:00 obsr2448957 S22790866 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321930573 2021-11-09 18:42:19.628792 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 12 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-22 08:47:00 obsr1442681 S23575904 Traveling P22 EBIRD 144.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305259277 2021-03-24 20:56:44.139453 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-03-20 10:30:00 obsr2475075 S22515217 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308638577 2021-03-26 06:29:56.44369 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 75 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-09 11:26:00 obsr334398 S22767539 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304601055 2015-06-03 10:12:43 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-03-22 10:43:00 obsr1765131 S22464783 Traveling P22 EBIRD 50.0 0.805 2.0 1 G1191064 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307240078 2021-11-09 18:58:19.805596 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Dutchess US-NY-027 13.0 Mills-Norrie SP--Norrie Point L450314 H 41.8326889 -73.9417694 2015-03-30 17:00:00 obsr1062217 S22665209 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314066315 2021-03-19 16:02:45.308962 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Lisle Park & Keibel Rd. L885144 H 42.350552 -75.9814239 2015-04-29 09:30:00 obsr1830659 S23126382 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316724045 2021-04-01 10:52:54.724403 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Columbia US-NY-021 13.0 Germantown L284394 T 42.13449 -73.89178 2015-05-06 18:00:00 obsr712039 S23279528 Traveling P22 EBIRD 60.0 20.921 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307205244 2021-11-09 21:50:48.44865 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-03 14:00:00 obsr1588136 S22662586 Traveling P22 EBIRD 90.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303458056 2015-03-16 07:55:42 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Suffolk US-NY-103 US-NY_780 30.0 USFWS_602 Wertheim NWR L295971 H 40.7754935 -72.8810839 2015-03-15 08:00:00 obsr1954215 S22376462 Traveling P22 EBIRD 70.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302691099 2021-04-01 11:54:40.172593 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-12 17:40:00 obsr1958124 S22316340 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300048844 2021-04-01 11:49:53.573686 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-02-28 11:35:00 obsr1481911 S22107378 Traveling P22 EBIRD 134.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319593904 2021-03-19 16:27:31.421791 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Feeder Rd. Trail (Genesee Co.) L153041 H 43.1242469 -78.429129 2015-05-14 14:02:00 obsr800690 S23440861 Traveling P22 EBIRD 78.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322159477 2018-08-04 17:28:22 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-21 18:05:00 obsr334398 S23590578 Traveling P22 EBIRD 53.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319317949 2018-08-04 17:27:03 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Columbia US-NY-021 13.0 Mud Creek Environmental Learning Center L2793575 H 42.2806092 -73.7101454 2015-05-13 14:00:00 obsr2766625 S23424897 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290810011 2021-03-30 19:43:32.881136 1796 species avibase-018B3169 Horned Grebe Podiceps auritus N X United States US New York US-NY Westchester US-NY-119 30.0 Deans Bridge, North Salem L2152201 H 41.3368943 -73.6588245 2015-01-13 07:05:00 obsr2688589 S21329006 Traveling P22 EBIRD 40.0 0.161 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290255844 2021-04-01 12:32:15.282601 26278 species avibase-A381417F House Wren Troglodytes aedon 5 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-10 09:20:00 obsr1982614 S21285003 Traveling P22 EBIRD 70.0 0.499 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323605430 2018-08-06 22:31:17 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Broome US-NY-007 28.0 Page Pond SF L3008713 H 42.1472497 -75.5108732 2015-05-28 07:00:00 obsr1830659 S23680082 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288985951 2021-03-26 07:30:35.289997 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Tompkins US-NY-109 13.0 my back yard Trumansburg L2594789 P 42.5410818 -76.6596392 2015-01-04 10:30:00 obsr2260025 S21183644 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311794885 2021-04-01 10:45:00.916278 483 species avibase-85625D75 Mallard Anas platyrhynchos 7 S7 C3 S7 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-21 08:00:00 obsr128156 S22980103 Rusty Blackbird Spring Migration Blitz P41 EBIRD 40.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304418034 2021-03-19 16:02:45.308962 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-21 09:15:00 obsr1044068 S22451267 Traveling P22 EBIRD 45.0 1.609 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291290862 2021-04-01 11:30:42.037277 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-16 11:30:00 obsr1349960 S21368767 Traveling P22 EBIRD 170.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304010205 2019-07-23 17:28:01 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-03-18 15:37:00 obsr1721609 S22419677 Stationary P21 EBIRD 70.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319698902 2021-04-01 10:55:39.308231 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 4 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-14 15:00:00 obsr1379161 S23446741 Traveling P22 EBIRD 150.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298120520 2021-03-23 17:22:05.708166 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-17 07:45:00 obsr316199 S21949586 Area P23 EBIRD 80.0 2.59 2.0 1 G1151207 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311641359 2017-05-02 11:19:42 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Genesee US-NY-037 13.0 9605 Francis Rd , Batavia L3360943 P 42.947728 -78.1616086 2015-04-20 16:30:00 obsr393804 S22970146 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305100211 2021-03-30 19:37:33.521815 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 9 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Point, Rte 14 First Creek Boat Launch L3512196 P 43.26272 -76.99367 2015-03-21 09:13:00 obsr1386068 S22502919 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321552742 2021-11-09 18:11:08.644452 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Dutchess US-NY-027 28.0 Great Thicket NWR (pka Nellie Hill Preserve) L123077 H 41.73139 -73.57333 2015-05-20 16:00:00 obsr1062217 S23552300 Traveling P22 EBIRD 75.0 1.207 2.0 1 G1297557 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323676496 2018-08-06 22:31:12 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Essex US-NY-031 14.0 Schroon river L3680867 P 43.897911 -73.744598 2015-05-26 14:59:00 obsr2420101 S23685033 Traveling P22 EBIRD 120.0 6.437 2.0 1 G1294405 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289461521 2021-03-30 19:29:33.633096 6339 species avibase-8535345B Herring Gull Larus argentatus N 4 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-06 09:00:00 obsr1488063 S21220897 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305622971 2021-03-30 19:13:38.458673 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-03-27 08:30:00 obsr1463039 S22543494 Traveling P22 EBIRD 75.0 0.805 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308662103 2021-03-19 16:19:20.977326 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-09 10:10:00 obsr2597186 S22769205 Traveling P22 EBIRD 105.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319736111 2021-03-19 16:08:39.161312 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-05-14 19:45:00 obsr2418 S23449002 Traveling P22 EBIRD 50.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302170653 2021-04-01 11:47:43.260314 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Oswego US-NY-075 13.0 Oswego River, Lock 6 L1883838 H 43.4443141 -76.4956891 2015-03-07 12:11:00 obsr2871406 S22269135 Traveling P22 EBIRD 12.0 0.161 4.0 1 G1168808 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299085004 2021-03-24 21:10:11.310781 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 5 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-02-16 08:30:00 obsr1664745 S22033407 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308420374 2015-04-08 08:54:25 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 4 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA--viewing platform L2141318 H 43.209271 -76.326006 2015-04-08 08:36:00 obsr2561576 S22750956 Stationary P21 EBIRD 17.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309792447 2018-08-04 17:09:04 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Dam Pond L137721 P 41.1336632 -72.3326111 2015-04-13 16:42:00 obsr2485753 S22847248 Traveling P22 EBIRD 34.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295752931 2021-03-26 07:20:31.408164 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Suffolk US-NY-103 30.0 45 Leeward Ct L1343060 P 40.936245 -73.0488129 2015-02-08 12:03:00 obsr1711649 S21741521 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309482053 2018-08-04 17:08:30 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 11 United States US New York US-NY Onondaga US-NY-067 28.0 Tully Lakes L1129390 P 42.79011 -76.1278725 2015-04-11 11:03:00 obsr1178949 S22825101 Traveling P22 EBIRD 102.0 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323646862 2021-04-01 12:32:15.282601 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-05-28 10:20:00 obsr606571 S23683188 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301854415 2022-02-17 14:32:23.002448 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-08 17:30:00 obsr152435 S22245599 Traveling P22 EBIRD 105.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295949827 2021-11-09 22:04:47.967972 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-07 09:10:00 obsr2816169 S21757342 Traveling P22 EBIRD 172.0 56.327 2.0 1 G1516811 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322643983 2021-03-26 07:46:52.994574 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 1 United States US New York US-NY Albany US-NY-001 13.0 Albany Bob's Backyard 143 Manning Blvd. L2114263 P 42.6714094 -73.7904131 2015-05-24 11:00:00 obsr2798912 S23617635 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316816269 2021-03-26 07:46:52.994574 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-07 05:56:00 obsr1165633 S23284753 Traveling P22 EBIRD 282.0 6.035 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307291169 2021-03-26 06:29:56.44369 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 7 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-04-03 19:05:00 obsr934639 S22668817 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319873414 2018-08-06 22:29:59 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Delaware US-NY-025 28.0 West Branch Nature Preserve L123036 H 42.1702618 -75.0311304 2015-05-15 08:30:00 obsr481595 S23456720 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309763474 2021-04-01 11:30:42.037277 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 34 United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-04-13 13:45:00 obsr2475766 S22845350 Traveling P22 EBIRD 75.0 0.805 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313594132 2021-04-01 10:58:31.765174 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Franklin US-NY-033 13.0 Reagan flats Rd. NY L964226 P 44.9301969 -74.6336539 2015-04-27 15:00:00 obsr1820582 S23096624 Traveling P22 EBIRD 120.0 8.047 2.0 1 G1240030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313422998 2015-05-07 16:52:53 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 4 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm new beaver dam L3594528 P 42.342367 -76.305265 2015-04-26 09:40:00 obsr455249 S23086182 Traveling P22 EBIRD 35.0 1.368 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314368299 2021-11-15 03:11:49.507437 303 species avibase-B59E1863 Canada Goose Branta canadensis 23 United States US New York US-NY Rockland US-NY-087 30.0 Rockland Lake SP L283611 H 41.1468757 -73.9234741 2015-04-30 08:15:00 obsr1121454 S23144591 Traveling P22 EBIRD 150.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306402662 2021-03-26 06:11:29.8335 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 20 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-03-29 10:40:00 obsr2683910 S22601998 Traveling P22 EBIRD 70.0 0.805 2.0 1 G1198715 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294501022 2021-03-26 07:52:40.224846 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca N 11 United States US New York US-NY Fulton US-NY-035 13.0 Youker's Bush Road L660482 P 43.0341674 -74.6843089 2015-01-31 13:58:00 obsr1000124 S21641857 Traveling P22 EBIRD 46.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322266217 2021-04-01 11:15:31.646886 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 15 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:15:00 obsr1711339 S23596212 Traveling P22 EBIRD 420.0 8.047 20.0 1 G1285843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317530439 2018-08-06 22:29:23 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-09 07:38:00 obsr1097423 S23325754 Traveling P22 EBIRD 153.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291703669 2017-02-26 12:50:10 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Suffolk US-NY-103 30.0 Lake Montauk, South End L1882082 H 41.0522071 -71.9086055 2015-01-18 12:25:00 obsr186539 S21401015 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310535049 2018-08-04 17:09:24 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Hamilton US-NY-041 14.0 Stanton Road, Indian Lake, NY L2380943 P 43.774555 -74.256253 2015-04-16 08:15:00 obsr2177751 S22899273 Stationary P21 EBIRD 751.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310910582 2018-03-28 07:13:34 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Towpath Rd. L266832 H 43.0038224 -76.7457005 2015-04-18 10:10:00 obsr204036 S22923901 Traveling P22 EBIRD 55.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296374842 2021-11-09 21:57:08.630224 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Ulster US-NY-111 28.0 Old Fort Rd. L3354323 P 41.6314745 -74.2284259 2015-02-11 11:16:00 obsr2976435 S21792469 Traveling P22 EBIRD 364.0 0.483 2.0 1 G1144428 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310233224 2021-03-26 06:55:00.227271 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Ontario US-NY-069 13.0 Seneca, Ontario Pathways L3194858 P 42.87315 -77.1061 2015-04-15 13:20:00 obsr1243175 S22877991 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313471094 2021-04-01 11:49:53.573686 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Queens US-NY-081 30.0 59-14 Grove Street 11385 L3154048 P 40.7092 -73.903725 2015-04-26 12:00:00 obsr2691134 S23089087 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316023931 2021-04-01 10:58:47.067498 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Genesee US-NY-037 13.0 PFA Black Street Route Gen_Co L1193753 P 42.9343383 -77.9926729 2015-05-02 06:20:00 obsr1060479 S23239031 Traveling P22 EBIRD 47.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290433365 2015-01-11 17:45:44 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-10 17:15:00 obsr1848026 S21299086 Stationary P21 EBIRD 5.0 4.0 1 G1105269 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305914978 2021-04-28 05:22:52.046239 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 5 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-03-28 14:32:00 obsr2519357 S22565420 Traveling P22 EBIRD 130.0 4.828 2.0 1 G1195672 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS314558131 2021-03-19 16:42:57.886401 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Lewis US-NY-049 13.0 Location H L4611970 P 43.940282 -75.401446 2015-05-01 07:54:00 obsr417887 S23157092 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324132578 2021-04-01 11:12:52.834774 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Greene US-NY-039 13.0 wildwing park catskill L749524 P 42.2294707 -73.8825417 2015-05-30 07:00:00 obsr2515158 S23716477 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288258198 2021-04-01 12:14:19.266649 26890 species avibase-94A44032 European Starling Sturnus vulgaris 40 United States US New York US-NY Suffolk US-NY-103 Robert Moses Field 5 - Beach L2458961 P 40.629197 -73.2237911 2015-01-01 14:05:00 obsr2902954 S21122491 Traveling P22 EBIRD 65.0 4.023 3.0 1 G1088629 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318008212 2022-02-17 14:32:23.002448 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-09 08:30:00 obsr2502574 S23351802 Traveling P22 EBIRD 90.0 1.609 3.0 1 G1260060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300152846 2021-03-26 07:17:57.136956 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 200 United States US New York US-NY Seneca US-NY-099 13.0 Sheldrake Point L99384 H 42.6658357 -76.6997626 2015-02-28 08:55:00 obsr2683910 S22116216 Stationary P21 EBIRD 5.0 2.0 1 G1162600 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312273622 2021-03-26 07:46:52.994574 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-04-23 06:20:00 obsr2512689 S23011868 Rusty Blackbird Spring Migration Blitz P41 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289135942 2018-08-04 16:52:42 32955 species avibase-41062654 Northern Parula Setophaga americana 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-01-04 09:48:00 obsr59643 S21195664 Stationary P21 EBIRD 8.0 6.0 1 G1095946 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314049462 2015-04-29 12:47:07 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-29 12:11:00 obsr2001485 S23125394 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312796356 2021-04-01 11:15:31.646886 28886 species avibase-AEF821EC Bohemian Waxwing Bombycilla garrulus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 09:00:00 obsr1601967 S23048057 Traveling P22 EBIRD 140.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311293755 2021-11-15 03:06:58.889978 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-15 14:20:00 obsr585997 S22947452 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310914140 2021-05-10 13:35:55.973042 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Schuyler US-NY-097 13.0 Catharine Creek WMA--Rock Cabin Rd. L1359885 H 42.369661 -76.8471749 2015-04-18 07:07:00 obsr1042912 S22924091 Traveling P22 EBIRD 40.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292957502 2018-08-04 16:55:08 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus X United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-24 11:45:00 obsr317968 S21519959 Stationary P21 EBIRD 60.0 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295557855 2019-09-10 13:56:02 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-02-08 13:03:00 obsr2871406 S21726673 Traveling P22 EBIRD 5.0 0.805 3.0 1 G1139064 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306011378 2021-03-30 19:13:38.458673 303 species avibase-B59E1863 Canada Goose Branta canadensis N 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 11:40:00 obsr934639 S22572430 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302059265 2021-04-01 11:30:42.037277 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 16 United States US New York US-NY New York US-NY-061 Randalls Island--Urban Farm and Scylla Playground L2370275 H 40.7840903 -73.9259435 2015-03-08 15:06:00 obsr1548221 S22260961 Traveling P22 EBIRD 14.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295331738 2021-04-01 11:49:53.573686 505 species avibase-C732CB10 American Black Duck Anas rubripes N 6 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-02-07 09:54:00 obsr2574755 S21708669 Traveling P22 EBIRD 62.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314463506 2018-08-04 17:11:58 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-24 08:20:00 obsr2331937 S23150984 Traveling P22 EBIRD 90.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295885952 2021-04-01 11:15:31.646886 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-08 07:45:00 obsr2404047 S21752162 Traveling P22 EBIRD 272.0 4.828 2.0 1 G1141762 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303160979 2016-03-30 17:44:19 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-03-14 15:12:00 obsr1655171 S22353202 Traveling P22 EBIRD 3.0 1.609 2.0 1 G1181040 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313611439 2021-04-01 11:30:42.037277 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 40 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-27 15:30:00 obsr2793388 S23097658 Traveling P22 EBIRD 180.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302587850 2021-11-09 18:49:39.300433 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Dutchess US-NY-027 US-NY_2790 28.0 Dennings Point SP L393533 H 41.4888644 -73.9865263 2015-03-11 09:00:00 obsr1339050 S22308725 Traveling P22 EBIRD 150.0 1.609 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312604387 2021-11-15 03:06:58.889978 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-24 11:00:00 obsr2105033 S23035212 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304005371 2021-04-01 11:54:40.172593 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-19 07:15:00 obsr564905 S22419364 Traveling P22 EBIRD 78.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312220932 2021-03-23 17:00:13.087107 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 4 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP Rice Hill trail L2617704 P 42.5449906 -76.6149965 2015-04-22 14:30:00 obsr2260025 S23008354 Traveling P22 EBIRD 45.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298148198 2021-04-01 11:15:31.646886 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 200 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-02-17 15:20:00 obsr1731572 S21951827 Traveling P22 EBIRD 130.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313637856 2021-11-09 21:57:40.409598 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Ulster US-NY-111 13.0 The Vly L3554956 P 42.13442 -73.94398 2015-04-27 18:00:00 obsr1446126 S23099367 Stationary P21 EBIRD 60.0 4.0 1 G1240333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293749014 2018-08-04 16:55:23 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 50 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L2146812 P 42.09197 -76.06111 2015-01-28 15:30:00 obsr290506 S21582626 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316426698 2017-08-16 17:13:40 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-06 08:28:00 obsr2595828 S23262255 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323313702 2021-03-30 19:13:38.458673 30494 species avibase-240E3390 House Sparrow Passer domesticus 25 United States US New York US-NY Monroe US-NY-055 13.0 LaSalle's Landing Park L140438 H 43.1763487 -77.5259313 2015-05-26 18:45:00 obsr1962295 S23660579 Stationary P21 EBIRD 30.0 2.0 1 G1295877 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315208129 2021-12-24 11:02:14.483178 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 20 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-03 07:38:00 obsr2595828 S23194329 Traveling P22 EBIRD 83.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294219353 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-31 14:59:00 obsr2493447 S21619523 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299990715 2021-03-26 07:56:20.588749 486 domestic avibase-07FFC1E5 Mallard (Domestic type) Anas platyrhynchos (Domestic type) 1 United States US New York US-NY Nassau US-NY-059 30.0 001home, bethpage, ny L1333196 P 40.719284 -73.4770712 2015-02-27 16:45:00 obsr547602 S22102356 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310222599 2021-11-09 18:45:58.552215 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Dutchess US-NY-027 14.0 Harlem Valley Rail Trail - Sharon Station Rd L3565765 P 41.8769266 -73.5215271 2015-04-15 09:15:00 obsr1917973 S22877328 Traveling P22 EBIRD 60.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292139720 2021-11-15 03:06:58.889978 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-20 11:45:00 obsr2105033 S21435197 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288097822 2018-08-04 16:52:12 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-01-01 07:50:00 obsr800690 S21108969 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318535469 2021-03-26 06:17:19.712573 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY Erie US-NY-029 13.0 Home L654361 P 42.81914 -78.7520599 2015-05-09 18:10:00 obsr1079517 S23380041 Stationary P21 EBIRD 65.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307995415 2018-08-04 17:04:58 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-01 13:45:00 obsr1338126 S22718974 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313014895 2021-03-30 19:29:33.633096 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Bayard Cutting Arboretum SP L715580 H 40.7355391 -73.1629871 2015-04-25 10:00:00 obsr391865 S23060890 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309938469 2021-04-01 11:30:42.037277 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-14 07:00:00 obsr2706811 S22857722 Traveling P22 EBIRD 120.0 1.609 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321027781 2021-03-26 06:20:10.658048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 16 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-05 10:59:00 obsr1104059 S23520227 Area P23 EBIRD 75.0 121.4057 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307942621 2021-03-24 20:33:47.533911 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Research Ponds Unit II (restricted access) L266582 H 42.5034956 -76.4374457 2015-04-06 07:57:00 obsr1655171 S22715210 Traveling P22 EBIRD 5.0 0.322 2.0 1 G1212801 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314459624 2021-04-01 11:54:40.172593 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-04-30 18:30:00 obsr1958124 S23150758 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313890148 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-28 07:30:00 obsr1481512 S23115542 Traveling P22 EBIRD 90.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310949399 2021-04-01 11:30:42.037277 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-18 13:42:00 obsr961138 S22926332 Stationary P21 EBIRD 5.0 15.0 1 G1224250 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316754854 2021-03-22 08:58:29.008072 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Cherry Hill L1089061 H 40.7747813 -73.972173 2015-05-06 09:40:00 obsr1706920 S23281261 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308029643 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-06 10:55:00 obsr2906952 S22721254 Traveling P22 EBIRD 120.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304198814 2015-03-20 12:23:02 668 species avibase-9456DEDF Barrow's Goldeneye Bucephala islandica X United States US New York US-NY Albany US-NY-001 13.0 Elks Lodge Parking Lot, Cohoes L2610868 P 42.7792074 -73.7018842 2015-03-19 09:30:00 obsr777630 S22434791 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310843878 2021-11-09 20:51:06.773494 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Rockland US-NY-087 28.0 Kakiat County Park L1023278 H 41.1461171 -74.11466 2015-04-18 06:53:00 obsr1253931 S22919676 Traveling P22 EBIRD 105.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290720427 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Monroe US-NY-055 13.0 Yard on Village Lane L3270389 P 43.1324965 -77.5516507 2015-01-12 08:35:00 obsr1534851 S21322409 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314058663 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 06:40:00 obsr145923 S23125937 Traveling P22 EBIRD 280.0 6.437 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311517756 2021-03-26 06:39:43.334073 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-04-16 06:59:00 obsr894191 S22961256 Traveling P22 EBIRD 130.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294817199 2021-03-26 06:39:43.334073 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-02-03 08:00:00 obsr324709 S21667546 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307986516 2021-03-24 20:33:47.533911 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Tompkins US-NY-109 13.0 105 Eastern Heights Dr., Ithaca L2724192 P 42.425089 -76.455526 2015-04-06 09:08:00 obsr1318356 S22718476 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300220534 2018-08-04 16:58:31 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 3 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-01 10:04:00 obsr1092576 S22121584 Traveling P22 EBIRD 18.0 0.805 3.0 1 G1163207 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1264149061 2021-11-15 03:06:58.889978 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-18 obsr863974 S54486115 Historical P62 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292660858 2021-03-30 19:39:10.250398 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-01-22 10:00:00 obsr916370 S21496606 Traveling P22 EBIRD 75.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300790523 2022-02-21 16:56:20.41462 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1300 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-03 10:12:00 obsr1821546 S22163706 Traveling P22 EBIRD 198.0 4.426 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320185868 2018-08-04 17:27:28 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 2 United States US New York US-NY Albany US-NY-001 US-NY_863 13.0 Black Creek Marsh. W. of Hennessy L3647501 P 42.6676408 -73.9745665 2015-05-16 07:30:00 obsr777630 S23473504 Traveling P22 EBIRD 20.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312440816 2019-10-25 16:17:36 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 21 United States US New York US-NY St. Lawrence US-NY-089 US-NY_775 13.0 Fields behind Rte 68 DEC facility L3554159 P 44.6191938 -75.2304161 2015-04-23 17:40:00 obsr2056110 S23023240 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312764739 2021-03-26 07:46:52.994574 32578 species avibase-000482C9 Orchard Oriole Icterus spurius 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-25 07:27:00 obsr481595 S23046105 Traveling P22 EBIRD 100.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290353946 2021-03-23 16:39:03.255227 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-11 08:00:00 obsr1958124 S21292687 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308032613 2021-11-12 15:54:04.00563 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY New York US-NY-061 30.0 Hudson River Park--Tribeca Upland (Chambers to W Houston St.) L2617135 H 40.7238322 -74.0116863 2015-04-04 obsr1659598 S22721464 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294102153 2021-03-23 16:33:05.415158 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 4 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-01-31 07:05:00 obsr2574755 S21610153 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308264216 2019-07-26 16:53:13 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-07 10:30:00 obsr2493328 S22739157 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315384237 2021-03-19 16:02:45.308962 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Broome US-NY-007 28.0 Monkey Run Road L2237953 P 42.2195386 -75.756496 2015-05-03 09:08:00 obsr1044068 S23203341 Traveling P22 EBIRD 30.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313908290 2021-11-15 03:06:58.889978 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 Female, Adult (3) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-28 16:10:00 obsr2277801 S23116703 Historical P62 EBIRD 185.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS307097952 2021-03-30 19:13:38.458673 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-02 15:03:00 obsr2211210 S22654935 Stationary P21 EBIRD 11.0 3.0 1 G1202289 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307924216 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 09:00:00 obsr644027 S22714015 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309470724 2021-11-09 19:02:27.638861 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 1 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-04-12 13:30:00 obsr2103727 S22824309 Traveling P22 EBIRD 45.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311232942 2021-11-15 03:06:58.889978 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-19 10:00:00 obsr585997 S22943730 Traveling P22 EBIRD 105.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301969508 2022-02-13 06:32:05.759346 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 45 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-03-09 08:30:00 obsr1318356 S22253900 Traveling P22 EBIRD 34.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310915223 2015-07-10 19:12:17 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Schuyler US-NY-097 US-NY_791 28.0 Cayuta Gulf L2947274 H 42.3465081 -76.7309135 2015-04-18 08:10:00 obsr1042912 S22924158 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302773182 2021-03-26 07:07:10.758746 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-03-13 07:10:00 obsr1958124 S22323353 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522942 2021-03-26 07:07:10.758746 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-04-08 08:15:00 obsr155915 S22758873 Traveling P22 EBIRD 58.0 1.287 2.0 1 G1211604 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294372560 2018-08-04 16:55:33 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Nassau US-NY-059 30.0 Tackapausha Museum and Preserve L617756 H 40.6685464 -73.482399 2015-02-01 09:10:00 obsr2871735 S21631709 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295442590 2018-08-04 16:55:46 505 species avibase-C732CB10 American Black Duck Anas rubripes 3 United States US New York US-NY Nassau US-NY-059 30.0 40.6546x-73.5509 - Feb 7, 2015, 9:16 L3345090 P 40.654556 -73.550858 2015-02-07 09:16:00 obsr1828047 S21717558 Stationary P21 EBIRD 10.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292228616 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola 45 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-01-20 12:08:00 obsr187432 S21441614 Traveling P22 EBIRD 51.0 1.046 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314169169 2015-04-29 19:58:31 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 5 United States US New York US-NY Chautauqua US-NY-013 13.0 4945 Damon Hill Rd L3102682 P 42.2144545 -79.2483999 2015-04-29 19:00:00 obsr45779 S23132701 Traveling P22 EBIRD 30.0 0.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323874642 2021-03-26 07:56:20.588749 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Lido Beach Passive Nature Area L723695 H 40.5923663 -73.5957384 2015-05-29 15:35:00 obsr1095727 S23699988 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300273923 2021-04-01 12:14:19.266649 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree State Park L3344167 P 40.6370305 -73.2574046 2015-03-01 10:06:00 obsr1848026 S22125941 Traveling P22 EBIRD 24.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310251531 2021-03-19 16:19:20.977326 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-15 11:15:00 obsr2871264 S22879270 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323954000 2021-03-26 06:29:56.44369 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Monroe US-NY-055 13.0 near pond at Mill Landing L2103068 P 43.235551 -77.702571 2015-05-10 14:00:00 obsr1721347 S23705306 Traveling P22 EBIRD 26.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302774627 2021-04-01 11:54:40.172593 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas N 17 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-13 07:28:00 obsr1958124 S22323470 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291155159 2021-04-01 11:30:42.037277 23291 species avibase-58C502EA Barn Swallow Hirundo rustica N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park Zoo L1292244 H 40.7678342 -73.9717613 2015-01-15 14:49:00 obsr2243270 S21357315 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311279391 2018-08-04 17:08:07 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Warren US-NY-113 14.0 Veteran's Park L3192312 P 43.5622261 -73.6516142 2015-04-08 13:25:00 obsr2019190 S22946627 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308200284 2021-03-26 06:14:19.776945 662 species avibase-FB738385 Bufflehead Bucephala albeola 7 United States US New York US-NY Columbia US-NY-021 14.0 Copake Lake L808952 H 42.1440725 -73.5950003 2015-04-06 13:45:00 obsr481595 S22734388 Traveling P22 EBIRD 35.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309966492 2015-10-05 23:52:16 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Madison US-NY-053 28.0 Madison St. Impoundment L461279 H 42.8382445 -75.5422497 2015-04-14 10:40:00 obsr2843748 S22859643 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311527414 2021-03-24 20:33:47.533911 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-04-20 09:14:00 obsr1655171 S22961888 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308271718 2021-04-01 11:15:31.646886 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-07 09:20:00 obsr263005 S22739711 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305247430 2021-03-26 07:56:20.588749 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-03-23 09:10:00 obsr1296638 S22514297 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311878466 2021-03-26 07:46:52.994574 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-04-21 15:45:00 obsr2270510 S22985597 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305675290 2021-04-01 11:30:42.037277 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-03-27 18:00:00 obsr2180607 S22547565 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313646589 2015-04-27 20:38:09 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Montgomery US-NY-057 13.0 Charleston State Forest, Main entrance L3596229 P 42.8224675 -74.3347797 2015-04-27 14:50:00 obsr286403 S23099904 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308418729 2021-03-23 17:00:13.087107 592 species avibase-3072CC16 Redhead Aythya americana X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-08 08:05:00 obsr2001485 S22750805 Traveling P22 EBIRD 31.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313988907 2015-04-29 08:07:16 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-04-29 07:55:00 obsr1349676 S23121818 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304312207 2021-11-09 19:38:27.588139 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Orange US-NY-071 28.0 Circle Drive, Tuxedo, NY L1457834 P 41.188319 -74.1869493 2015-03-20 13:05:00 obsr2346161 S22443494 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306703797 2022-03-05 22:03:50.715584 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 3 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-01 08:30:00 obsr2219590 S22625630 Traveling P22 EBIRD 135.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320626392 2021-11-15 03:06:58.889978 5956 species avibase-F35821AA Semipalmated Sandpiper Calidris pusilla X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 07:34:00 obsr521443 S23496421 Traveling P22 EBIRD 476.0 3.219 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299558587 2018-08-04 16:58:09 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Westchester US-NY-119 28.0 Steamboat Riverfront Park, Verplanck L2608460 H 41.2498799 -73.9654233 2015-02-24 08:00:00 obsr2078798 S22069401 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314800253 2018-08-04 17:13:15 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-01 07:54:00 obsr1334267 S23171453 Traveling P22 EBIRD 38.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292126026 2021-12-10 08:21:29.396662 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 59 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-01-20 13:15:00 obsr258431 S21434137 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310175602 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-15 06:58:00 obsr41879 S22874320 Traveling P22 EBIRD 110.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320807800 2021-04-01 11:15:31.646886 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh/Marine Park L3514666 P 40.6035594 -73.9283967 2015-05-17 10:40:00 obsr827632 S23506938 Traveling P22 EBIRD 80.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296404284 2021-03-26 07:42:06.558742 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 3 United States US New York US-NY Washington US-NY-115 13.0 Wait Road L3358733 P 43.3338366 -73.5721844 2015-02-13 10:10:00 obsr968133 S21795550 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306060094 2015-03-29 15:09:27 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Suffolk US-NY-103 30.0 Great Pond L137722 P 41.0666122 -72.4558716 2015-03-29 15:04:00 obsr2485753 S22575774 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293863407 2021-03-30 19:40:59.354574 1796 species avibase-018B3169 Horned Grebe Podiceps auritus N 2 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-29 09:30:00 obsr2143830 S21591849 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301404105 2021-03-24 20:23:39.258075 32949 species avibase-15EB3000 Hooded Warbler Setophaga citrina 2 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 USFWS_636 Elizabeth A. Morton NWR L208927 H 40.9909126 -72.3699903 2015-03-07 08:30:00 obsr717785 S22210737 Traveling P22 EBIRD 180.0 4.828 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310218085 2018-08-04 17:09:15 303 species avibase-B59E1863 Canada Goose Branta canadensis 12 United States US New York US-NY Clinton US-NY-019 US-NY_849 13.0 Chazy Riverlands L577352 H 44.9196891 -73.3785868 2015-04-15 09:25:00 obsr884584 S22877038 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288809899 2019-07-23 17:26:40 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 Mashomack Preserve L122936 H 41.0562576 -72.2896713 2015-01-03 07:30:00 obsr613775 S21160504 Traveling P22 EBIRD 269.0 8.047 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305817336 2021-03-24 21:10:11.310781 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-03-28 13:00:00 obsr1664745 S22558085 Stationary P21 EBIRD 135.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312009838 2021-04-01 10:53:25.818871 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor18 L3513960 H 42.4410677 -76.0746521 2015-04-22 07:02:00 obsr1696616 S22994345 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303067265 2021-03-26 07:42:06.558742 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 Female, Juvenile (1); Male, Adult (3); Unknown Sex and Age (2) United States US New York US-NY Washington US-NY-115 13.0 Bradley Beach, Ft. Edward L2477571 H 43.266989 -73.5908235 2015-03-14 10:43:00 obsr1222746 S22345900 Stationary P21 EBIRD 42.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301495565 2018-08-04 16:58:32 591 species avibase-1929E1E1 Canvasback Aythya valisineria X United States US New York US-NY Onondaga US-NY-067 13.0 Marble St. Island L1506468 H 43.15653 -76.3305652 2015-03-01 12:18:00 obsr2945658 S22217017 Stationary P21 EBIRD 79.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304655948 2019-10-01 15:51:08 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 4 United States US New York US-NY Tompkins US-NY-109 28.0 George Rd. Pond (destroyed) L686439 H 42.4991242 -76.3275147 2015-03-22 14:51:00 obsr887540 S22468655 Traveling P22 EBIRD 24.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323048930 2018-08-06 22:31:08 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Cortland US-NY-023 28.0 AviCor15 L3513957 H 42.6073973 -76.0575746 2015-05-25 12:58:00 obsr2625207 S23642960 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318498029 2021-04-01 11:30:42.037277 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-05-09 07:56:00 obsr758734 S23378152 Traveling P22 EBIRD 17.0 0.2 2.0 1 G1264583 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761417 2021-03-26 07:56:20.588749 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 10 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-12 09:00:00 obsr2218212 S22629521 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309057358 2021-04-01 12:18:57.910168 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-04-11 10:36:00 obsr2001485 S22798296 Traveling P22 EBIRD 62.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308146227 2021-11-09 21:50:48.44865 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-06 15:22:00 obsr1446126 S22729857 Traveling P22 EBIRD 20.0 0.402 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308157559 2015-04-06 22:24:03 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Herkimer US-NY-043 13.0 Carlson Road L795137 P 43.1091058 -74.7949541 2015-04-05 16:15:00 obsr2694889 S22730672 Traveling P22 EBIRD 5.0 1.77 4.0 1 G1209042 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316416361 2021-04-01 10:55:39.308231 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 20 Queens Drive L1383581 P 43.0393001 -78.946665 2015-05-06 07:40:00 obsr502830 S23261673 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319078792 2021-04-01 11:30:42.037277 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-12 18:20:00 obsr1433400 S23411562 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304581166 2021-04-01 10:55:39.308231 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 8 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Unity Island (aka Squaw Is.)--North End L2036486 H 42.9321075 -78.9062977 2015-03-08 12:54:00 obsr2155111 S22463350 Traveling P22 EBIRD 100.0 0.483 2.0 1 G1188096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306936635 2015-04-02 12:43:14 7261 species avibase-86D45B8F Green Heron Butorides virescens 1 United States US New York US-NY Chenango US-NY-017 28.0 Chenango River off Anthony Rd, Oxford L3396673 P 42.3681375 -75.6463006 2015-04-02 11:00:00 obsr1303581 S22642619 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311594121 2021-03-19 16:19:20.977326 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-20 11:25:00 obsr502830 S22966783 Traveling P22 EBIRD 166.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303331417 2019-07-23 17:27:58 26890 species avibase-94A44032 European Starling Sturnus vulgaris 100 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-03-14 11:47:00 obsr2683910 S22366545 Stationary P21 EBIRD 31.0 2.0 1 G1181021 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307673152 2015-04-05 10:56:22 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Burdick Hill Rd., Lansing L1107958 H 42.4980885 -76.4998821 2015-04-05 10:54:00 obsr1476346 S22695762 Stationary P21 EBIRD 10.0 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310091060 2021-03-26 07:30:35.289997 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Drake Rd., Lansing L366342 H 42.5309152 -76.5116 2015-04-10 08:31:00 obsr2683910 S22868474 Traveling P22 EBIRD 16.0 3.219 2.0 1 G1219954 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290476354 2021-04-01 11:30:42.037277 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY New York US-NY-061 30.0 US-NY-New York-247-249 W 11th St L3249089 P 40.73624 -74.00319 2015-01-11 15:53:00 obsr1107696 S21302631 Traveling P22 EBIRD 16.0 0.483 1.0 1 G1108773 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312297355 2021-03-19 16:14:11.035882 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 2 United States US New York US-NY Cortland US-NY-023 28.0 Cornell Lane, Harford L508623 H 42.4382173 -76.2464476 2015-04-23 08:19:00 obsr1092576 S23013329 Traveling P22 EBIRD 3.0 0.322 2.0 0 G1232700 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309194755 2015-04-11 18:59:34 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 43 United States US New York US-NY Washington US-NY-115 13.0 Fort Ann L3524202 P 43.3706789 -73.4468222 2015-04-11 18:20:00 obsr2196530 S22807138 Traveling P22 EBIRD 30.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308702456 2021-04-01 12:31:09.823741 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 5 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Inlet WMA--south section L674323 H 42.6874829 -77.7060413 2015-04-09 16:25:00 obsr1060479 S22772790 Traveling P22 EBIRD 17.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306806274 2021-04-01 12:32:15.282601 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-01 09:15:00 obsr916370 S22632911 Traveling P22 EBIRD 95.0 2.575 7.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299095809 2021-03-23 17:22:05.708166 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 United States US New York US-NY Herkimer US-NY-043 13.0 Sheep Run Daylily Farm L655147 H 43.2036169 -74.9769688 2015-02-22 13:10:00 obsr1787323 S22034198 Stationary P21 EBIRD 50.0 2.0 1 G1156978 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300030832 2021-04-01 11:15:31.646886 505 species avibase-C732CB10 American Black Duck Anas rubripes 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-28 09:30:00 obsr454647 S22105966 Traveling P22 EBIRD 135.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319549093 2021-03-26 06:14:19.776945 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-05-14 10:15:00 obsr570335 S23438398 Traveling P22 EBIRD 90.0 3.219 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319061455 2021-04-01 11:24:19.637193 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-05-12 16:10:00 obsr934639 S23410533 Traveling P22 EBIRD 138.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317842778 2021-03-26 07:56:20.588749 30494 species avibase-240E3390 House Sparrow Passer domesticus N X United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-09 11:15:00 obsr547602 S23342679 Traveling P22 EBIRD 120.0 2.414 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320544298 2019-12-30 20:10:53 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 2 United States US New York US-NY Franklin US-NY-033 13.0 Dickinson L198982 T 44.74836 -74.56462 2015-05-17 10:00:00 obsr1672399 S23492068 Traveling P22 EBIRD 150.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306913427 2018-08-04 17:04:59 7200 species avibase-49D9148A Great Egret Ardea alba 8 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2057628 P 42.0853565 -76.077919 2015-04-01 16:45:00 obsr290506 S22640832 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304337652 2021-03-30 19:13:38.458673 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus N 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-21 06:53:00 obsr1696616 S22445261 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306603697 2021-04-01 11:54:40.172593 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 25 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-03-30 09:00:00 obsr666331 S22618034 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319243302 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-13 06:30:00 obsr547602 S23420820 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313986750 2021-03-26 06:55:00.227271 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-04-29 07:02:00 obsr606693 S23121684 Traveling P22 EBIRD 16.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291723273 2021-04-01 12:18:57.910168 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-18 11:50:00 obsr1062070 S21402625 Stationary P21 EBIRD 151.0 3.0 1 G1114002 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306130155 2021-04-01 10:47:08.851048 26278 species avibase-A381417F House Wren Troglodytes aedon 7 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-03-29 15:50:00 obsr1303581 S22581185 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290478881 2022-01-12 18:14:50.403512 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail L212481 H 44.4128015 -74.121715 2015-01-11 13:00:00 obsr2769235 S21302857 Traveling P22 EBIRD 60.0 0.644 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292938275 2020-02-15 04:21:41 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Seneca US-NY-099 13.0 Finger Lakes Regional Airport L3284263 H 42.8787599 -76.783458 2015-01-24 14:50:00 obsr2001485 S21518458 Traveling P22 EBIRD 14.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291947050 2018-08-04 16:53:58 27616 species avibase-D77E4B41 American Robin Turdus migratorius 7 United States US New York US-NY Onondaga US-NY-067 13.0 Skaneateles Lake - Brook Farm L1377662 P 42.9088698 -76.4209002 2015-01-18 15:52:00 obsr2279567 S21419843 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317159932 2018-08-04 17:15:19 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-08 10:19:00 obsr548442 S23303932 Traveling P22 EBIRD 124.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314669330 2021-03-19 16:25:42.617988 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 5 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-04-16 12:15:00 obsr2019190 S23163482 Traveling P22 EBIRD 45.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312275232 2021-03-26 06:55:00.227271 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Ontario US-NY-069 13.0 Woodbrooke Road L344897 P 43.0318823 -77.39645 2015-04-21 obsr1338126 S23011956 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315720546 2021-11-09 17:58:40.313796 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-04 07:00:00 obsr915089 S23221760 Traveling P22 EBIRD 240.0 6.115 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304830832 2015-05-08 13:51:52 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm hawk watch L123521 P 42.3457336 -76.298584 2015-03-22 16:15:00 obsr455249 S22481342 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296322084 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-12 11:05:00 obsr2852365 S21788470 Traveling P22 EBIRD 300.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316002370 2021-04-01 12:30:15.438381 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Lyon Road - Manheim L637794 P 43.0973479 -74.7933769 2015-05-04 06:15:00 obsr2694889 S23237719 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323373966 2021-04-01 11:15:31.646886 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-27 09:05:00 obsr1711339 S23664381 Traveling P22 EBIRD 353.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289160496 2021-11-09 19:34:18.590596 26278 species avibase-A381417F House Wren Troglodytes aedon 5 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-01-04 08:15:00 obsr1665312 S21197526 Stationary P21 EBIRD 100.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303460313 2018-08-04 17:01:32 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Erie US-NY-029 13.0 Delaware Park--Rumsey Woods L1348448 H 42.9307931 -78.8698229 2015-03-16 07:47:00 obsr502830 S22376671 Traveling P22 EBIRD 32.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305151278 2021-04-01 12:14:19.266649 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Road L552975 P 40.8179665 -72.5592041 2015-02-01 15:30:00 obsr2654038 S22506940 Traveling P22 EBIRD 120.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291098177 2021-04-01 11:15:31.646886 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana N 2 United States US New York US-NY Kings US-NY-047 Coney Island Creek Park L614792 H 40.5813224 -74.0052688 2015-01-14 16:02:00 obsr187432 S21352706 Traveling P22 EBIRD 13.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000323 2021-03-26 07:56:20.588749 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 74 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-03 09:00:00 obsr2218212 S23775902 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290873725 2021-01-30 10:27:08.559792 7662 species avibase-5F8E7CA8 Golden Eagle Aquila chrysaetos 2 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-I L3289026 P 40.29866 -73.31405 2015-01-11 16:00:00 obsr1220115 S21334670 Traveling P22 EBIRD 60.0 10.622 44.0 1 G1108342 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314306106 2021-03-19 16:29:59.503892 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Jefferson US-NY-045 Kring Point SP L787951 H 44.378098 -75.8550806 2015-04-29 11:25:00 obsr2834886 S23141375 Traveling P22 EBIRD 30.0 4.828 2.0 1 G1244064 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313078792 2015-04-26 10:22:08 668 species avibase-9456DEDF Barrow's Goldeneye Bucephala islandica 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Hundred Acre Pond L139802 H 43.0289001 -77.5643997 2015-04-26 10:05:00 obsr1097423 S23064904 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310393068 2018-08-04 17:09:25 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Saratoga US-NY-091 13.0 Betar Byway L1528567 H 43.2984602 -73.6411847 2015-04-16 08:35:00 obsr1119101 S22889204 Traveling P22 EBIRD 71.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301237901 2021-04-01 11:54:40.172593 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-03-06 10:36:00 obsr1893950 S22196676 Stationary P21 EBIRD 301.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323165964 2021-11-09 18:46:59.900607 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Dutchess US-NY-027 13.0 Stissing Mountain Road, Pine Plains, NY L3610347 P 41.9835913 -73.6865258 2015-05-01 11:10:00 obsr2786327 S23650783 Stationary P21 EBIRD 2.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321443662 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis N 4 United States US New York US-NY Monroe US-NY-055 13.0 374 Cromwell L1952255 P 43.1326227 -77.5253892 2015-05-17 17:00:00 obsr1463039 S23545956 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315066741 2021-03-19 16:44:35.607263 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-04-25 07:51:00 obsr34861 S23186238 Traveling P22 EBIRD 229.0 6.437 31.0 1 G1235125 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290635488 2021-04-01 11:24:19.637193 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Monroe US-NY-055 13.0 Priem Road L830367 P 43.3470587 -77.9353809 2015-01-12 08:20:00 obsr334398 S21314991 Traveling P22 EBIRD 4.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301357572 2021-11-09 20:12:16.773384 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 1 Male, Adult (1) United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-03-07 09:57:00 obsr1912104 S22206938 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288712058 2018-08-04 16:52:38 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-01-03 11:00:00 obsr2914424 S21160038 Traveling P22 EBIRD 40.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS354316926 2021-11-15 03:06:58.889978 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-14 07:00:00 obsr663350 S25914916 Traveling P22 EBIRD 120.0 3.219 5.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308303096 2015-04-07 16:21:45 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 4 United States US New York US-NY Erie US-NY-029 13.0 Stage Rd. L3536312 P 42.9846137 -78.5258746 2015-04-07 14:35:00 obsr2871264 S22741986 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300915573 2021-04-01 10:47:08.851048 303 species avibase-B59E1863 Canada Goose Branta canadensis N 4 United States US New York US-NY Broome US-NY-007 28.0 Martin Luther King Jr. Memorial Promenade L2467334 H 42.1006345 -75.9154898 2015-03-04 09:25:00 obsr1830659 S22172752 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290980904 2021-11-09 18:04:38.977393 681 species avibase-407E2CA8 Common Merganser Mergus merganser 26 United States US New York US-NY Dutchess US-NY-027 13.0 Valley Farm Road, Millbrook, NY L1178967 P 41.8260997 -73.6900127 2015-01-06 07:30:00 obsr1062217 S21343074 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310481822 2015-04-16 17:07:10 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Watervliet-277-299 NY-155 L3568246 P 42.726769 -73.727593 2015-04-16 17:00:00 obsr2186523 S22895484 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312427888 2021-03-23 17:23:45.772216 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 2 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lk inlet-east swamp rd L3585820 P 42.6872536 -77.6988316 2015-04-23 12:22:00 obsr393804 S23022361 Traveling P22 EBIRD 42.0 4.989 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310063694 2018-08-04 17:09:11 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Washington US-NY-115 13.0 Towpath Rd., Kingsbury L1527296 H 43.3054212 -73.5459734 2015-04-14 16:40:00 obsr2533499 S22866550 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302591482 2021-11-02 20:32:06.137153 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-03-12 08:50:00 obsr2871406 S22309043 Traveling P22 EBIRD 16.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312381471 2021-03-23 17:37:19.520785 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 1 United States US New York US-NY Saratoga US-NY-091 13.0 Kelly Park L1952020 P 43.0098409 -73.8438535 2015-04-23 16:25:00 obsr907769 S23019208 Traveling P22 EBIRD 65.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302925467 2021-03-22 09:17:32.016297 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 10 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-03-13 17:19:00 obsr666964 S22334334 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303203117 2021-03-23 16:48:08.60516 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Seneca US-NY-099 13.0 US-NY-Romulus-5026–5208 State Route 89 L3447372 P 42.778663 -76.769669 2015-03-04 16:08:00 obsr1696616 S22356159 Traveling P22 EBIRD 27.0 3.219 3.0 1 G1179649 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322171785 2021-04-01 10:51:06.899622 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Mouth of Dutch Hollow Creek L3665727 P 42.1163067 -79.3121481 2015-05-23 07:07:00 obsr2910282 S23591231 Stationary P21 EBIRD 40.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135715 2021-03-26 07:56:20.588749 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-04 09:00:00 obsr2218212 S23589175 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294553907 2015-02-02 11:21:51 6204 spuh avibase-4B2856FB large alcid sp. Uria/Alca sp. 2 United States US New York US-NY Queens US-NY-081 30.0 Riis Landing L2721494 H 40.5676631 -73.8842089 2015-01-31 14:47:00 obsr2796494 S21646135 Stationary P21 EBIRD 10.0 12.0 1 G1132928 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323093344 2021-04-01 11:30:42.037277 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 14:45:00 obsr2182516 S23645953 Traveling P22 EBIRD 165.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320555592 2015-06-01 19:54:18 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 10 United States US New York US-NY Cayuga US-NY-011 13.0 Frontenac Harbor Marina (private) L632907 H 42.8396606 -76.6973591 2015-05-17 12:45:00 obsr887540 S23492659 Stationary P21 EBIRD 31.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307711865 2021-03-30 19:13:38.458673 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-05 11:53:00 obsr613775 S22698315 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS406228915 2021-11-09 21:59:59.062235 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Ulster US-NY-111 13.0 Lucas Ave Ext Near Binnewater Road L4383548 P 41.8927578 -74.0804243 2015-03-27 obsr2602710 S29849729 Historical P62 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307125806 2017-12-12 11:24:35 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 54 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-04-03 08:30:00 obsr2512689 S22657116 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303003273 2021-03-26 06:55:00.227271 483 species avibase-85625D75 Mallard Anas platyrhynchos N 4 United States US New York US-NY Ontario US-NY-069 13.0 2042 Buffalo St. MY YARD L588940 P 42.8875365 -77.1006775 2015-03-14 09:05:00 obsr354090 S22340663 Stationary P21 EBIRD 38.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304718954 2021-03-30 19:29:33.633096 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 24 United States US New York US-NY Suffolk US-NY-103 Mt. Sinai Harbor L834919 H 40.9604561 -73.0357361 2015-03-20 07:39:00 obsr2633969 S22473588 Traveling P22 EBIRD 11.0 0.1 2.0 1 G1188796 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320029096 2021-11-15 03:06:58.889978 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 15:45:00 obsr2277801 S23465184 Historical P62 EBIRD 165.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312834885 2021-03-19 16:19:20.977326 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-25 09:42:00 obsr2324853 S23050194 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312738444 2015-04-25 09:33:13 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Saratoga US-NY-091 14.0 30 Acre Woods L2268000 P 43.1003228 -73.8689804 2015-04-18 07:30:00 obsr2893884 S23044411 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307000896 2021-04-01 11:49:53.573686 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 50 United States US New York US-NY Queens US-NY-081 30.0 Flushing Meadows Corona Park--Meadow Lake L1788995 H 40.7351876 -73.8404751 2015-04-02 13:34:00 obsr2310825 S22647784 Traveling P22 EBIRD 122.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305587733 2021-04-01 12:45:19.712958 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Westchester US-NY-119 30.0 Tarrytown, 153 West Main Street L3517846 P 41.07703 -73.86875 2015-03-27 11:26:00 obsr1566889 S22540757 Traveling P22 EBIRD 25.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320436207 2018-08-06 22:30:18 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Onondaga Trail L157279 H 43.12222 -78.36889 2015-05-17 06:41:00 obsr2588479 S23486438 Traveling P22 EBIRD 84.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315599239 2021-03-19 16:29:59.503892 337 species avibase-694C127A Mute Swan Cygnus olor 30 United States US New York US-NY Jefferson US-NY-045 Morrison's Loop Cottage L3611726 P 44.0585252 -76.3082242 2015-05-03 14:00:00 obsr2561613 S23215020 Area P23 EBIRD 240.0 0.4047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316883493 2015-05-07 13:54:36 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Montgomery US-NY-057 13.0 Charleston State Forest, Hughes Rd L3596206 P 42.852651 -74.3168215 2015-05-07 10:30:00 obsr286403 S23288305 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309032498 2021-03-24 20:33:47.533911 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-11 09:37:00 obsr455249 S22796685 Traveling P22 EBIRD 16.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303786682 2021-04-01 11:27:18.37144 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 Male, Immature (1) United States US New York US-NY Montgomery US-NY-057 13.0 Mohawk River - North Shore Vicinity of NYS Canal Corp L2580860 P 42.9503882 -74.3704214 2015-03-16 17:50:00 obsr316199 S22402411 Traveling P22 EBIRD 31.0 0.161 3.0 1 G1183749 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303022386 2021-12-03 21:50:44.732892 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-03-14 08:33:00 obsr1958124 S22342262 Traveling P22 EBIRD 15.0 0.805 2.0 1 G1178974 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316406491 2018-08-04 17:14:57 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 2 United States US New York US-NY Monroe US-NY-055 13.0 Home (Penfield) L2838011 P 43.176981 -77.4734187 2015-05-06 06:40:00 obsr650224 S23261086 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305821645 2015-03-28 15:34:20 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 11 United States US New York US-NY Westchester US-NY-119 28.0 Lake Rd, Westchester County, NY L2503678 P 41.2635206 -73.8820481 2015-03-28 15:15:00 obsr572503 S22558410 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307170357 2015-04-03 13:49:19 5922 species avibase-06B9BD24 Sanderling Calidris alba 2 United States US New York US-NY Erie US-NY-029 13.0 95 Dorchester Rd L1772192 P 42.923244 -78.881744 2015-04-03 08:26:00 obsr1603345 S22660215 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306371580 2021-03-19 16:02:45.308962 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-30 17:43:00 obsr1764243 S22599540 Traveling P22 EBIRD 21.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315220959 2021-03-26 06:39:43.334073 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata N 50 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-02 15:30:00 obsr1299160 S23195007 Traveling P22 EBIRD 90.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305774419 2021-03-19 16:14:11.035882 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Cortland US-NY-023 28.0 NYS Rte 11, Blodgett Mills to Messengerville L3448402 P 42.5350579 -76.0907722 2015-03-28 08:36:00 obsr931232 S22555136 Traveling P22 EBIRD 24.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304214886 2021-05-05 15:43:39.075206 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY New York US-NY-061 Liberty Island/Statue of Liberty (NY County) L2686238 H 40.6900653 -74.0452476 2015-03-20 12:30:00 obsr1765131 S22436041 Traveling P22 EBIRD 77.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319568419 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 13.0 University of Rochester--River Front and Pedestrian Bridge L899443 H 43.1310098 -77.6327848 2015-05-14 12:05:00 obsr2678807 S23439451 Traveling P22 EBIRD 50.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303160976 2016-03-30 17:44:19 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-03-14 15:12:00 obsr1655171 S22353202 Traveling P22 EBIRD 3.0 1.609 2.0 1 G1181040 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317537103 2021-04-01 10:55:39.308231 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-05-09 11:50:00 obsr2939916 S23326113 Traveling P22 EBIRD 58.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310625824 2021-03-26 06:59:15.841579 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 4 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-16 09:40:00 obsr979921 S22905472 Stationary P21 EBIRD 380.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297498811 2021-11-09 18:27:18.485647 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Dutchess US-NY-027 13.0 Kimlin Cider Mill L1938526 P 41.666292 -73.904171 2015-02-15 08:00:00 obsr932528 S21893406 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313193473 2021-04-01 10:57:06.520339 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-04-26 14:00:00 obsr2769235 S23071584 Traveling P22 EBIRD 101.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309538709 2021-03-24 19:35:34.045988 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-12 09:31:00 obsr2324853 S22829039 Traveling P22 EBIRD 270.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314170603 2021-03-24 20:33:47.533911 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-29 07:00:00 obsr1831959 S23132797 Traveling P22 EBIRD 240.0 0.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294270209 2021-04-01 11:54:40.172593 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-01-30 09:00:00 obsr666331 S21623736 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315353473 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-03 07:00:00 obsr1220115 S23201616 Traveling P22 EBIRD 300.0 3.219 2.0 1 G1249262 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291707796 2021-03-22 09:15:15.32301 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY Niagara US-NY-063 US-NY_1724 13.0 Niagara Falls SP--Goat Island L207766 H 43.080477 -79.0683617 2015-01-18 13:00:00 obsr2537615 S21401364 Traveling P22 EBIRD 30.0 0.402 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322159374 2021-03-24 19:48:44.880783 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 4 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-23 07:07:00 obsr334398 S23590574 Traveling P22 EBIRD 34.0 0.29 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308249894 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 12 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-07 05:50:00 obsr1731572 S22738259 Traveling P22 EBIRD 270.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290013343 2015-02-01 21:25:08 406 species avibase-27B2749A Wood Duck Aix sponsa 13 United States US New York US-NY Franklin US-NY-033 14.0 Saranac Lake--Split Rock Rd L3279653 P 44.415945 -74.155109 2015-01-09 12:05:00 obsr422472 S21264953 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320258047 2021-03-19 16:44:35.607263 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-16 14:30:00 obsr2364166 S23477124 Traveling P22 EBIRD 70.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290997788 2021-04-01 11:54:40.172593 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-01-13 09:13:00 obsr1032565 S21344423 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308556748 2021-11-09 21:50:48.44865 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 12 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-08 13:00:00 obsr677511 S22761562 Stationary P21 EBIRD 25.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322143206 2021-03-19 16:43:17.120646 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 14 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditchbank Auto tour L1001436 P 43.1068108 -75.7973814 2015-05-22 16:22:00 obsr2716320 S23589629 Traveling P22 EBIRD 48.0 5.8 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288134386 2021-03-26 07:07:10.758746 483 species avibase-85625D75 Mallard Anas platyrhynchos 12 United States US New York US-NY Richmond US-NY-085 Conference House Park L302089 H 40.4995098 -74.2516756 2015-01-01 10:05:00 obsr1958124 S21111881 Traveling P22 EBIRD 43.0 0.129 2.0 1 G1088911 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310838796 2021-03-26 07:30:35.289997 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-17 08:26:00 obsr2683910 S22919322 Traveling P22 EBIRD 24.0 0.644 2.0 1 G1223890 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307811117 2015-04-05 19:04:38 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-04-05 12:00:00 obsr1257010 S22705518 Stationary P21 EBIRD 30.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314160750 2021-03-30 19:29:33.633096 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 West Creek L682890 P 40.9962897 -72.482729 2015-04-29 19:23:00 obsr2485753 S23132139 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317174677 2021-04-01 11:30:42.037277 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-05-08 12:00:00 obsr2498716 S23304609 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312804245 2021-04-01 12:18:57.910168 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-25 11:00:00 obsr246591 S23048587 Traveling P22 EBIRD 50.0 1.0 2.0 1 G1235066 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311864267 2021-04-01 11:30:42.037277 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-21 11:00:00 obsr1353449 S22984632 Traveling P22 EBIRD 105.0 2.414 2.0 1 G1230318 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311691944 2021-03-26 07:43:12.52294 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 6 United States US New York US-NY Wayne US-NY-117 13.0 2155 Evergreen Circle, Ontario, NY L1847173 P 43.2480127 -77.2772876 2015-04-20 16:30:00 obsr2914424 S22973740 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312985924 2021-12-19 10:32:19.574298 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-04-25 07:10:00 obsr2087436 S23059229 Traveling P22 EBIRD 240.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311623977 2021-03-26 06:21:54.883933 5327 species avibase-3EF081A8 Common Gallinule Gallinula galeata 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-20 12:55:00 obsr1516787 S22968877 Traveling P22 EBIRD 60.0 2.334 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303955528 2015-03-18 21:05:22 303 species avibase-B59E1863 Canada Goose Branta canadensis 12 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L195519 P 42.0961408 -76.0479164 2015-03-18 14:00:00 obsr1947568 S22415663 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316998307 2015-05-07 20:28:09 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Albany US-NY-001 13.0 12 Graylon Place L2671745 P 42.6919701 -73.8786417 2015-05-07 19:28:00 obsr648176 S23294934 Stationary P21 EBIRD 59.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315772488 2021-04-01 11:30:42.037277 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 13:00:00 obsr1760429 S23224541 Traveling P22 EBIRD 55.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306144184 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 19 S C2 S United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-28 14:46:00 obsr924076 S22582278 Traveling P22 EBIRD 200.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295387918 2021-03-26 07:30:35.289997 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-07 13:45:00 obsr1655171 S21713107 Stationary P21 EBIRD 76.0 2.0 1 G1138391 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326746025 2015-06-13 22:50:30 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 7 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail East Woods L2372368 P 42.210721 -76.837918 2015-04-19 08:17:00 obsr1587816 S23898248 Traveling P22 EBIRD 45.0 1.465 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316110903 2021-03-26 06:29:56.44369 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Monroe US-NY-055 13.0 744 Plank Rd., Penfield, NY L747676 P 43.1829034 -77.4731022 2015-05-03 16:00:00 obsr1545618 S23243784 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322610567 2021-04-01 11:24:19.637193 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-24 12:28:00 obsr934639 S23615592 Traveling P22 EBIRD 378.0 9.656 4.0 1 G1337409 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323126993 2021-04-01 11:15:31.646886 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 10 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-26 09:30:00 obsr606571 S23648169 Traveling P22 EBIRD 160.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295905333 2015-02-10 01:09:23 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 t-burg mini golf course L2721319 P 42.5251711 -76.6336754 2015-02-09 15:15:00 obsr2260025 S21753665 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294831881 2021-03-26 06:21:54.883933 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 5 United States US New York US-NY Kings US-NY-047 30.0 Home L468661 P 40.6361565 -73.9647943 2015-02-03 08:35:00 obsr187432 S21668673 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291614156 2018-08-04 16:53:54 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 3 United States US New York US-NY Oneida US-NY-065 13.0 Sherrill Pond L510479 H 43.0776674 -75.59672 2015-01-18 08:56:00 obsr2950436 S21394213 Stationary P21 EBIRD 4.0 2.0 1 G1113581 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293893195 2021-03-23 16:52:36.900075 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 1 United States US New York US-NY Suffolk US-NY-103 30.0 Field (Watermill near Hayground Cmtry) L3326154 P 40.9296732 -72.3226333 2015-01-29 16:00:00 obsr544268 S21594198 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323915356 2021-03-19 16:02:45.308962 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-30 07:05:00 obsr1830659 S23702917 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314076420 2021-03-23 16:52:36.900075 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Captree Island L1288564 P 40.6453336 -73.2663846 2015-04-29 08:15:00 obsr247620 S23127039 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303476749 2015-03-16 10:06:56 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Ontario US-NY-069 13.0 east street L3147087 P 42.8983836 -77.2684765 2015-03-16 07:40:00 obsr2979658 S22378572 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290391533 2017-01-08 08:51:25 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 35 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College--Visitor Interpretive Center L212478 H 44.4486136 -74.2594002 2015-01-11 10:40:00 obsr835300 S21295856 Traveling P22 EBIRD 82.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323724620 2021-03-24 20:58:53.646623 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-28 12:10:00 obsr72341 S23689922 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304390898 2021-03-26 07:07:10.758746 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 42 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-03-21 10:05:00 obsr1958124 S22449421 Traveling P22 EBIRD 15.0 0.483 2.0 1 G1186868 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300056645 2021-03-26 07:43:12.52294 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-02-28 11:24:00 obsr1721609 S22108004 Traveling P22 EBIRD 125.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312111327 2021-03-24 20:33:47.533911 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-22 15:06:00 obsr1655171 S23000752 Traveling P22 EBIRD 28.0 0.805 2.0 1 G1240586 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299566701 2015-02-25 16:19:09 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 60 United States US New York US-NY Queens US-NY-081 ROCKAWAY BEACH L1094857 P 40.5821492 -73.8085556 2015-02-25 16:15:00 obsr2189493 S22070047 Stationary P21 EBIRD 1.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306914175 2021-03-26 08:14:57.071052 456 species avibase-D201EB72 American Wigeon Mareca americana 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Westchester US-NY-119 30.0 Wilton L963070 P 41.0891766 -73.8526082 2015-02-02 10:15:00 obsr1538953 S22640899 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316046420 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-05 06:42:00 obsr2512689 S23240345 Traveling P22 EBIRD 108.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310396886 2017-05-07 22:30:53 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-04-16 07:53:00 obsr2588479 S22889447 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300101866 2021-03-23 17:22:05.708166 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-26 07:55:00 obsr316199 S22112151 Area P23 EBIRD 60.0 2.59 2.0 1 G1162124 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311046206 2018-08-04 17:10:23 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-18 14:05:00 obsr2154746 S22932385 Traveling P22 EBIRD 87.0 4.828 81.0 1 G1224925 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303592969 2021-03-30 19:13:38.458673 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 9 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-16 17:40:00 obsr302343 S22387391 Traveling P22 EBIRD 55.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295800334 2019-07-23 17:27:17 3174 species avibase-41E9F54B Black-billed Cuckoo Coccyzus erythropthalmus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Road - Shinnecock Inlet Area L834914 P 40.8415413 -72.4786949 2015-02-07 13:00:00 obsr2934754 S21745017 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS318049618 2021-03-19 16:44:35.607263 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Manitou Beach Preserve L2105165 H 43.3211034 -77.7145064 2015-05-10 07:11:00 obsr1124114 S23354016 Traveling P22 EBIRD 170.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293144872 2021-11-09 20:12:16.773384 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-01-25 14:05:00 obsr1912104 S21534621 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319002896 2021-03-19 16:19:20.977326 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-12 10:30:00 obsr2871264 S23406696 Traveling P22 EBIRD 180.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323810132 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-29 12:30:00 obsr511959 S23695668 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292685599 2021-03-24 20:33:47.533911 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-01-22 11:33:00 obsr2760150 S21498620 Traveling P22 EBIRD 70.0 0.241 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294009517 2019-10-25 16:06:25 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris 6 United States US New York US-NY St. Lawrence US-NY-089 13.0 Winthrop, NY L2642737 P 44.7689019 -74.7688293 2015-01-30 11:30:00 obsr1717998 S21603206 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298270159 2015-07-09 21:50:33 26278 species avibase-A381417F House Wren Troglodytes aedon 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-02-18 14:03:00 obsr1318356 S21962230 Incidental P20 EBIRD 5.0 0 G1152027 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318964254 2021-11-09 21:48:09.904449 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Ulster US-NY-111 13.0 104 rowe court L2662281 P 42.0136083 -74.0778896 2015-02-16 10:00:00 obsr2276225 S23404439 Stationary P21 EBIRD 315.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308108758 2022-02-17 14:32:23.002448 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-06 18:16:00 obsr152435 S22727107 Traveling P22 EBIRD 59.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315264154 2021-11-09 18:36:27.898762 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 20 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-05-03 06:01:00 obsr1433400 S23197286 Traveling P22 EBIRD 45.0 1.899 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313040932 2021-03-23 17:15:00.080143 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 6 United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP, Sodus L712218 H 43.2673188 -77.0297813 2015-04-25 08:07:00 obsr1569772 S23062566 Traveling P22 EBIRD 135.0 1.931 13.0 1 G1235657 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294880299 2021-11-09 18:43:18.378649 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Upton Lake Christian School L3271185 P 41.833243 -73.7613273 2015-02-04 07:30:00 obsr2862523 S21672765 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312057412 2021-11-15 03:06:58.889978 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-21 19:00:00 obsr1555046 S22997432 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1231680 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301659591 2021-03-24 20:33:47.533911 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 15 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Reservoir L2133605 H 42.4125738 -76.4588892 2015-03-08 12:00:00 obsr887540 S22229276 Traveling P22 EBIRD 71.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311340932 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-19 13:00:00 obsr263005 S22950261 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308420395 2022-02-18 10:47:29.953615 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-08 07:10:00 obsr1062070 S22750957 Stationary P21 EBIRD 104.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298228589 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-02-18 08:00:00 obsr247620 S21958663 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307917386 2018-08-04 17:05:40 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 9 Unknown Sex, Adult (9) United States US New York US-NY Saratoga US-NY-091 13.0 Wrights Loop L691715 H 42.9902551 -73.6132237 2015-04-05 17:58:00 obsr1647272 S22713536 Rusty Blackbird Spring Migration Blitz P41 EBIRD 43.0 1.77 2.0 1 G1207213 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288754921 2021-03-19 16:44:35.607263 26890 species avibase-94A44032 European Starling Sturnus vulgaris 13 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-03 08:52:00 obsr916033 S21163380 Traveling P22 EBIRD 229.0 4.828 2.0 1 G1092968 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293919231 2021-03-24 20:33:47.533911 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--South L99397 H 42.4645343 -76.4241559 2015-01-29 08:09:00 obsr2683910 S21596106 Traveling P22 EBIRD 39.0 1.127 2.0 1 G1128688 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314881854 2019-01-07 15:35:23 7261 species avibase-86D45B8F Green Heron Butorides virescens 8 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.4220913 -79.4281205 2015-05-02 09:45:00 obsr2497657 S23176229 Traveling P22 EBIRD 82.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290242454 2021-03-30 19:29:33.633096 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Suffolk US-NY-103 30.0 Swan Lake, East Patchogue L279859 H 40.770108 -72.9932633 2015-01-10 09:00:00 obsr757440 S21283889 Stationary P21 EBIRD 60.0 5.0 0 G1103818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307097958 2021-03-30 19:13:38.458673 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 15 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-02 15:03:00 obsr2211210 S22654935 Stationary P21 EBIRD 11.0 3.0 1 G1202289 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295247087 2021-03-26 06:29:56.44369 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-02-06 09:00:00 obsr334398 S21701534 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288135659 2021-04-01 11:49:53.573686 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 15 United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-01-01 10:35:00 obsr2574755 S21112009 Traveling P22 EBIRD 23.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310648378 2018-08-04 17:09:32 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-04-17 11:45:00 obsr1154 S22906784 Traveling P22 EBIRD 30.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313154862 2022-03-05 22:03:50.715584 303 species avibase-B59E1863 Canada Goose Branta canadensis 125 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-26 09:00:00 obsr444155 S23069257 Traveling P22 EBIRD 240.0 6.437 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311993775 2021-03-26 07:43:12.52294 5976 species avibase-F4829920 American Woodcock Scolopax minor 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Morgan Rd. Marshes L99689 H 43.0673045 -76.7170787 2015-04-20 16:57:00 obsr528918 S22993231 Traveling P22 EBIRD 70.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306116972 2021-03-30 19:07:52.958398 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-29 12:35:00 obsr839844 S22580135 Traveling P22 EBIRD 255.0 4.023 2.0 1 G2955676 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307653941 2021-03-23 16:39:03.255227 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-05 09:14:00 obsr1958124 S22694488 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298752923 2021-03-19 16:29:59.503892 279 species avibase-3E04020B Brant Branta bernicla 200 United States US New York US-NY Jefferson US-NY-045 13.0 Kelsey Creek, Watertown L273304 H 43.9906455 -75.9170911 2015-02-18 09:00:00 obsr585290 S22004224 Traveling P22 EBIRD 480.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300862611 2021-04-01 11:54:40.172593 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-02 12:20:00 obsr1032565 S22168797 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313728872 2021-04-01 11:24:19.637193 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 4 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-04-27 08:34:00 obsr745890 S23105250 Traveling P22 EBIRD 45.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298088398 2021-04-01 11:24:19.637193 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 1 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-02-17 15:52:00 obsr334398 S21946937 Stationary P21 EBIRD 66.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311837887 2021-03-23 16:39:03.255227 505 species avibase-C732CB10 American Black Duck Anas rubripes 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-21 13:10:00 obsr1958124 S22983139 Traveling P22 EBIRD 9.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297662061 2021-03-24 20:21:02.634125 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Schoharie US-NY-095 28.0 193 flat creek rd gilboa ny L3358423 P 42.3966333 -74.45117 2015-02-15 09:05:00 obsr2521546 S21908352 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310182491 2021-04-01 11:47:43.260314 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-04-15 08:33:00 obsr2224244 S22874827 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317819538 2022-02-17 14:32:23.002448 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-09 08:30:00 obsr2352976 S23341384 Traveling P22 EBIRD 90.0 1.609 3.0 1 G1260060 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308067267 2021-04-01 11:54:40.172593 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Richmond US-NY-085 US-NY_818 30.0 Goethals Bridge Pond--Goethals Homes L884458 H 40.6283428 -74.1779176 2015-04-06 13:34:00 obsr155915 S22723828 Traveling P22 EBIRD 8.0 0.322 2.0 1 G1208438 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303461275 2019-07-23 17:27:57 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-14 10:30:00 obsr317968 S22376741 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292741164 2021-03-24 20:23:39.258075 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 30 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--Golf Course L507417 H 40.6235296 -73.2860184 2015-01-23 09:15:00 obsr1228860 S21502814 Traveling P22 EBIRD 33.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313427958 2021-03-26 07:51:58.821109 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 4 United States US New York US-NY Chenango US-NY-017 28.0 Afton, NY L3538730 P 42.2255156 -75.5192041 2015-04-26 15:30:00 obsr1544235 S23086516 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310408646 2021-03-26 07:46:52.994574 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo X United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-16 08:17:00 obsr1165633 S22890189 Traveling P22 EBIRD 118.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306096811 2021-11-09 21:10:28.19189 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Rockland US-NY-087 US-NY_843 28.0 Iona Island L404724 H 41.3033448 -73.9778137 2015-03-29 15:30:00 obsr1121454 S22578605 Traveling P22 EBIRD 60.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304760949 2021-03-26 07:52:59.845315 32955 species avibase-41062654 Northern Parula Setophaga americana 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-22 07:05:00 obsr1000124 S22476541 Area P23 EBIRD 60.0 2.59 2.0 1 G1189317 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310289033 2018-08-04 17:09:06 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Oneida US-NY-065 13.0 8741 Maple Flats Rd., Cleveland, NY. 13042 L3215241 P 43.2874926 -75.8489975 2015-04-14 08:00:00 obsr1248598 S22881813 Stationary P21 EBIRD 495.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316123587 2018-08-04 17:04:52 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Knox-Marsellus and Puddler Marshes L679571 H 43.0074716 -76.7464542 2015-03-31 12:09:00 obsr533086 S23244500 International Shorebird Survey (ISS) P74 EBIRD 41.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305827543 2021-03-24 20:16:00.852773 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 10 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-03-28 08:39:00 obsr1958124 S22558818 Traveling P22 EBIRD 15.0 0.644 2.0 1 G1195296 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321214986 2018-08-06 22:30:32 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 Roch. , Syr. & Eastern Trail East L684655 P 43.0613631 -77.3933601 2015-05-19 07:30:00 obsr1338126 S23531926 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321326656 2020-12-14 15:56:49.243642 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Lewis US-NY-049 13.0 Location H L4611970 P 43.940282 -75.401446 2015-05-19 08:05:00 obsr417887 S23538504 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297338979 2015-02-15 20:41:50 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 2 United States US New York US-NY Steuben US-NY-101 28.0 Home L211141 P 42.1402153 -76.97072 2015-02-15 09:30:00 obsr562284 S21879455 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310434752 2016-01-27 10:57:24 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Niagara US-NY-063 13.0 US-NY-Ransomville-3631 Palmer Rd L3406078 P 43.237426 -78.891684 2015-04-16 13:08:00 obsr2869455 S22891888 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316178632 2021-03-26 06:17:19.712573 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-05-05 14:00:00 obsr2096529 S23247398 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288256423 2021-03-26 07:56:20.588749 7429 species avibase-1327AC55 Osprey Pandion haliaetus 2 United States US New York US-NY Nassau US-NY-059 30.0 001home, bethpage, ny L1333196 P 40.719284 -73.4770712 2015-01-01 06:50:00 obsr547602 S21122317 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314575726 2021-03-19 16:25:42.617988 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 3 United States US New York US-NY Essex US-NY-031 14.0 Corner of Bull Rock and Shattuck L3026671 P 43.815311 -73.498596 2015-04-15 16:20:00 obsr2693145 S23158199 Traveling P22 EBIRD 12.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316549697 2017-12-20 02:29:11 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Marsh Mill Road, wetlands L925329 H 43.1175018 -75.9310198 2015-05-05 09:00:00 obsr1167884 S23269492 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301373742 2021-04-01 10:51:06.899622 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-07 10:00:00 obsr558077 S22208311 Stationary P21 EBIRD 124.0 40.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311184573 2021-04-01 11:30:42.037277 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-19 06:15:00 obsr1433400 S22940878 Traveling P22 EBIRD 180.0 6.276 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323121920 2021-03-23 16:30:20.514143 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-04-14 07:00:00 obsr2409011 S23647808 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309318277 2021-04-01 10:53:25.818871 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor10 L3513952 H 42.5109495 -76.0097765 2015-04-12 07:16:00 obsr1318356 S22815200 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294595634 2015-02-02 15:17:22 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field--Boat Launch L1058531 H 40.5960975 -73.8814259 2015-01-17 12:30:00 obsr1152226 S21649443 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300455221 2021-03-24 20:33:47.533911 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-03-02 07:02:00 obsr1696616 S22139000 Stationary P21 EBIRD 51.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310641345 2021-03-24 21:06:05.39641 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--Liverpool Marina L837889 H 43.1007479 -76.2093687 2015-04-17 08:45:00 obsr660214 S22906359 Stationary P21 EBIRD 50.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS325604867 2018-08-06 22:30:31 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Essex US-NY-031 US-NY_846 14.0 Adirondak Loj L358592 H 44.1829118 -73.9642096 2015-05-18 14:30:00 obsr2376028 S23816235 Traveling P22 EBIRD 180.0 6.437 2.0 1 G1306402 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293229317 2021-12-14 03:49:46.629529 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias N 14 United States US New York US-NY New York US-NY-061 30.0 FDR Drive to 1st Ave. btwn 38th-42nd St. (incl. U Thant Is.) L1940751 H 40.747189 -73.9699067 2015-01-24 16:25:00 obsr259298 S21541218 Traveling P22 EBIRD 30.0 0.998 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298085761 2021-11-09 18:11:48.679808 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Dutchess US-NY-027 13.0 Andrew Haight Rd. L1268498 H 41.8140583 -73.645885 2015-02-17 12:30:00 obsr1917973 S21946706 Traveling P22 EBIRD 15.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310553156 2021-03-26 07:30:35.289997 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-04-16 09:00:00 obsr2137468 S22900495 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317523680 2021-12-24 11:02:14.483178 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-09 07:15:00 obsr1962379 S23325418 Traveling P22 EBIRD 35.0 0.402 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307081114 2018-08-04 17:05:06 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-02 13:38:00 obsr528918 S22653684 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318698709 2021-11-09 18:36:27.898762 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-04-25 09:00:00 obsr2786327 S23389016 Traveling P22 EBIRD 180.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288858466 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 2 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek L845821 H 40.5811388 -73.9927912 2015-01-03 10:24:00 obsr1407710 S21174006 Traveling P22 EBIRD 150.0 2.897 12.0 1 G1093831 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313804044 2015-04-28 14:13:21 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP - Yanty Creek Trail L269421 P 43.3618733 -77.9527094 2015-04-28 10:10:00 obsr2966702 S23109994 Traveling P22 EBIRD 40.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311297641 2021-03-19 16:19:20.977326 337 species avibase-694C127A Mute Swan Cygnus olor 5 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-19 08:20:00 obsr2071643 S22947665 Traveling P22 EBIRD 245.0 2.414 3.0 1 G1226244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313629479 2021-03-23 17:32:20.03109 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Onondaga US-NY-067 28.0 Tully Lakes L1129390 P 42.79011 -76.1278725 2015-04-25 13:42:00 obsr1178949 S23074726 Traveling P22 EBIRD 216.0 47.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135554 2021-03-26 07:56:20.588749 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-21 09:00:00 obsr2218212 S23589169 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323298646 2021-03-26 06:29:56.44369 11494 species avibase-20C2214E American Kestrel Falco sparverius N 12 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-05-27 07:36:00 obsr1124114 S23659369 Traveling P22 EBIRD 76.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289081696 2021-04-01 11:15:31.646886 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Kings US-NY-047 Gravesend Bay, southern parking lot L1847433 H 40.5972024 -74.0049123 2015-01-04 12:24:00 obsr1189028 S21191360 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300553067 2021-04-01 12:26:53.827486 616 species avibase-25C94A8F Greater Scaup Aythya marila 10 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-02 09:50:00 obsr2512689 S22145716 Stationary P21 EBIRD 48.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313639730 2021-03-24 19:56:35.845413 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Montgomery US-NY-057 13.0 629 State Highway 161 L3554520 P 42.8835997 -74.2643339 2015-04-27 06:45:00 obsr286403 S23099483 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311537505 2018-08-04 17:11:22 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Schenectady US-NY-093 13.0 Niskayuna Railroad Station at Lions Park L505923 H 42.7776374 -73.823356 2015-04-20 09:47:00 obsr2321296 S22962499 Traveling P22 EBIRD 22.0 0.161 2.0 1 G1228466 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309451125 2015-04-12 15:51:47 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Broome US-NY-007 28.0 Brixius Creek Sports Facility, Endwell L3558383 P 42.1223071 -76.0401696 2015-04-07 09:00:00 obsr998593 S22823063 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296398245 2021-11-15 03:06:58.889978 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-12 13:50:00 obsr516108 S21794919 Traveling P22 EBIRD 190.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314090939 2018-08-04 17:12:40 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-04-29 07:40:00 obsr2978565 S23127929 Traveling P22 EBIRD 245.0 2.092 19.0 1 G1242821 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293179687 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-25 13:45:00 obsr2603801 S21537313 Stationary P21 EBIRD 30.0 2.0 1 G1122803 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306146794 2021-04-01 11:49:53.573686 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Queens US-NY-081 30.0 Worlds Fair Marina, Flushing L1791669 H 40.7599179 -73.8530159 2015-03-27 14:45:00 obsr327318 S22582464 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305585092 2021-04-01 12:18:57.910168 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-03-27 09:07:00 obsr1655171 S22540555 Traveling P22 EBIRD 101.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304833849 2021-11-09 18:25:59.444943 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Dutchess US-NY-027 13.0 Wappinger Lake L1829902 H 41.6070847 -73.9159704 2015-03-22 10:10:00 obsr2343626 S22481592 Stationary P21 EBIRD 33.0 2.0 1 G1189941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308128661 2021-03-19 16:44:35.607263 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 11 United States US New York US-NY Monroe US-NY-055 13.0 LaSalle's Landing Park L140438 H 43.1763487 -77.5259313 2015-04-06 16:10:00 obsr2504709 S22728591 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291921999 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Theodore Roosevelt Nature Center L1029227 H 40.5885208 -73.546552 2015-01-19 12:00:00 obsr2423982 S21417788 Traveling P22 EBIRD 90.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321294888 2021-03-24 19:35:34.045988 337 species avibase-694C127A Mute Swan Cygnus olor N 3 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-19 08:38:00 obsr2071643 S23536628 Traveling P22 EBIRD 100.0 1.931 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311919104 2021-03-30 19:29:33.633096 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe N 1 United States US New York US-NY Suffolk US-NY-103 30.0 Frank Melville Memorial Park and Mill Pond L1114075 H 40.946195 -73.1156445 2015-03-28 13:05:00 obsr320396 S22988256 Traveling P22 EBIRD 50.0 1.3 6.0 1 G1201641 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312972238 2022-03-05 22:03:50.715584 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-25 15:30:00 obsr1565981 S23058352 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299817978 2021-03-26 06:29:56.44369 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 2 United States US New York US-NY Monroe US-NY-055 13.0 998 cane patch webster ny L2689634 P 43.198669 -77.5033951 2015-02-26 07:32:00 obsr1277758 S22089474 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297938412 2015-02-17 09:47:12 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Ontario US-NY-069 28.0 Wesley HIll Maple Syrup Farm L2621459 P 42.7290459 -77.4821091 2015-02-14 09:00:00 obsr1820840 S21933943 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317679698 2015-05-09 16:58:59 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Monroe US-NY-055 13.0 Durand-Eastman Park--Horseshoe Rd. L1167931 H 43.2369181 -77.564064 2015-05-09 08:38:00 obsr2774009 S23333978 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310394592 2021-03-30 19:22:51.561415 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 8 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr12303 S22889309 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306913239 2021-03-26 06:17:19.712573 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Buffalo and Erie Co. Naval and Military Park L3299181 H 42.8776565 -78.8792379 2015-04-02 08:30:00 obsr2071643 S22640818 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289127247 2021-11-09 22:28:59.791993 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Sullivan US-NY-105 US-NY_796 28.0 Mongaup Valley WMA Eagle Blind L1097151 H 41.553811 -74.7868538 2015-01-04 15:30:00 obsr1015200 S21194966 Stationary P21 EBIRD 240.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320169722 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 06:28:00 obsr1189028 S23472638 Traveling P22 EBIRD 276.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302826428 2015-03-13 09:36:11 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY Erie US-NY-029 13.0 WNY Land Conservancy Office L2058573 P 42.7636185 -78.5480404 2015-03-13 09:00:00 obsr2537615 S22326535 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318916311 2015-07-19 10:30:31 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Broome US-NY-007 28.0 Finch Hollow Nature Center L1006547 H 42.1610683 -75.9833262 2015-05-08 14:55:00 obsr2954210 S23401894 Traveling P22 EBIRD 60.0 0.483 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309393776 2021-03-24 19:30:07.33826 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Homer-5100–5186 State Route 281 L3557922 P 42.65824 -76.181291 2015-04-12 13:11:00 obsr1318356 S22819774 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295314483 2022-02-08 17:27:20.632176 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-02-06 16:44:00 obsr2173269 S21706965 Stationary P21 EBIRD 56.0 3.0 0 G1137102 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304120012 2019-07-23 17:28:02 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-19 14:15:00 obsr479109 S22428462 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311077002 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-18 10:30:00 obsr2505956 S22934531 Rusty Blackbird Spring Migration Blitz P41 EBIRD 200.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292126660 2018-01-07 20:13:45 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-01-20 10:55:00 obsr2693145 S21434189 Stationary P21 EBIRD 153.0 2.0 1 G1117553 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322774877 2022-02-17 14:32:23.002448 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 10 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-23 08:30:00 obsr943380 S23625786 Traveling P22 EBIRD 180.0 1.77 5.0 1 G1288834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315221054 2021-11-15 03:06:58.889978 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 07:30:00 obsr431494 S23195017 Traveling P22 EBIRD 164.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311315072 2021-03-26 06:12:17.833181 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Fredonia-126 Eagle St L3575960 P 42.43869 -79.323719 2015-04-19 15:45:00 obsr2343764 S22948693 Stationary P21 EBIRD 44.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308625194 2021-04-01 12:40:54.473014 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 18 United States US New York US-NY Saratoga US-NY-091 13.0 Wilbur Rd L3550218 P 43.018588 -73.596406 2015-04-09 09:45:00 obsr648176 S22766546 Stationary P21 EBIRD 31.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304039034 2021-11-09 19:47:29.45622 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 1 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Winding Waters Trail (NY) L2393335 H 41.2878143 -74.5339547 2015-03-19 10:50:00 obsr1597672 S22422278 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309833348 2021-03-23 17:00:13.087107 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum X United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-04-11 09:40:00 obsr711169 S22850187 Stationary P21 EBIRD 20.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318912497 2015-05-12 10:29:24 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Herkimer US-NY-043 13.0 Moore Road L3616946 P 43.1098834 -74.8037696 2015-05-07 06:50:00 obsr2694889 S23401703 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423029 2021-04-01 11:24:19.637193 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-05-29 20:03:00 obsr1846130 S24163334 Stationary P21 EBIRD 35.0 2.0 1 G1337404 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306417488 2015-03-30 21:25:00 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. south of Long Pt SP L3524071 P 42.7134394 -76.7062211 2015-03-29 10:29:00 obsr34822 S22603144 Stationary P21 EBIRD 5.0 4.0 1 G1197075 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314203406 2021-04-01 11:54:40.172593 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 5 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-28 16:50:00 obsr1032565 S23134875 Traveling P22 EBIRD 168.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312298258 2015-05-13 20:19:57 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-04-23 09:50:00 obsr2224244 S23013403 Stationary P21 EBIRD 25.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310305803 2015-04-15 20:00:22 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 29 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2737378 P 42.7558333 -78.8616667 2015-04-14 09:15:00 obsr436899 S22882995 Stationary P21 EBIRD 225.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288709022 2022-02-17 14:32:23.002448 6339 species avibase-8535345B Herring Gull Larus argentatus 6 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-03 08:32:00 obsr1605975 S21159756 Traveling P22 EBIRD 148.0 2.414 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308811589 2021-04-01 11:54:40.172593 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 18 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-04-08 15:10:00 obsr1032565 S22781056 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289240757 2021-11-09 18:28:47.869738 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Bard College L2062518 P 42.0209241 -73.9082158 2015-01-03 11:00:00 obsr2010779 S21203370 Stationary P21 EBIRD 60.0 2.0 1 G1096875 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292118794 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Rush-375 Jeffords Rd L3302221 P 43.009819 -77.621631 2015-01-20 11:41:00 obsr991026 S21433574 Stationary P21 EBIRD 97.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323259150 2021-03-26 06:29:56.44369 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-26 07:15:00 obsr2449897 S23656686 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305264433 2021-11-09 19:02:27.638861 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-03-25 08:48:00 obsr440908 S22515596 Traveling P22 EBIRD 180.0 2.012 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302621736 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-12 08:45:00 obsr1555046 S22311420 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1186131 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319109037 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 08:30:00 obsr1301982 S23413283 Traveling P22 EBIRD 180.0 2.414 10.0 1 G1251698 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319123869 2021-11-13 12:47:25.390808 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-08 08:45:00 obsr1996460 S23414061 Traveling P22 EBIRD 210.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310093932 2021-03-26 07:30:35.289997 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--Comstock Knoll L290965 H 42.4498398 -76.4723566 2015-04-12 12:47:00 obsr2683910 S22868689 Traveling P22 EBIRD 20.0 0.322 2.0 1 G1219987 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317528842 2015-05-09 12:33:49 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-09 08:00:00 obsr1962379 S23325666 Traveling P22 EBIRD 30.0 0.322 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315879370 2021-04-01 11:15:31.646886 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 15:30:00 obsr454647 S23230378 Traveling P22 EBIRD 200.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303607928 2015-03-16 21:22:39 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2737378 P 42.7558333 -78.8616667 2015-03-16 08:30:00 obsr436899 S22388530 Stationary P21 EBIRD 390.0 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304378333 2021-11-09 19:13:30.171485 32757 species avibase-EF47E15D Boat-tailed Grackle Quiscalus major 2 United States US New York US-NY Dutchess US-NY-027 28.0 Home Acre, Fishkill L763458 P 41.5211579 -73.8836306 2015-03-21 07:30:00 obsr1259654 S22448451 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300209584 2021-03-24 20:20:25.430732 6339 species avibase-8535345B Herring Gull Larus argentatus N 2 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-02-28 08:00:00 obsr1918430 S22120611 Traveling P22 EBIRD 70.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306365203 2021-03-23 17:39:28.36772 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 29 United States US New York US-NY Tioga US-NY-107 28.0 Crumtown Road, Spencer, NY L3526508 P 42.2384312 -76.4445019 2015-03-30 12:25:00 obsr2430746 S22598993 Traveling P22 EBIRD 15.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309319270 2015-04-12 14:47:10 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Richmond US-NY-085 Saw Mill Creek Marsh L833906 H 40.6081575 -74.1885844 2015-04-12 09:03:00 obsr1958124 S22815269 Stationary P21 EBIRD 2.0 2.0 1 G1216226 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307026655 2015-04-02 19:23:29 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-04-02 15:00:00 obsr1792012 S22649623 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308942840 2021-03-26 07:30:35.289997 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 10 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-04-10 18:06:00 obsr1655171 S22790442 Traveling P22 EBIRD 23.0 0.322 2.0 1 G1219957 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302883131 2018-08-04 16:59:52 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-03-13 13:15:00 obsr1472872 S22330883 Traveling P22 EBIRD 93.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300028019 2021-03-26 07:30:35.289997 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 25 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-28 11:05:00 obsr2634885 S22105763 Traveling P22 EBIRD 15.0 0.322 5.0 1 G1161716 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310596248 2021-03-24 20:23:39.258075 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 12 United States US New York US-NY Suffolk US-NY-103 US-NY_847 David Weld Preserve L498539 H 40.9062922 -73.2089183 2015-04-14 10:26:00 obsr1107696 S22903407 Rusty Blackbird Spring Migration Blitz P41 EBIRD 95.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291785732 2021-04-01 12:18:57.910168 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-18 11:50:00 obsr620377 S21407544 Stationary P21 EBIRD 151.0 3.0 1 G1114002 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305394168 2021-04-01 11:30:42.037277 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-26 06:58:00 obsr1433400 S22525790 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292112820 2022-02-17 14:32:23.002448 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-20 08:22:00 obsr1605975 S21433100 Traveling P22 EBIRD 180.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319273074 2021-03-26 06:09:25.361188 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-06 15:15:00 obsr1817738 S23422386 Traveling P22 EBIRD 60.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295752925 2021-03-26 07:20:31.408164 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY Suffolk US-NY-103 30.0 45 Leeward Ct L1343060 P 40.936245 -73.0488129 2015-02-08 12:03:00 obsr1711649 S21741521 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313257061 2021-11-15 03:06:58.889978 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-26 12:30:00 obsr492329 S23075296 Traveling P22 EBIRD 210.0 4.828 2.0 1 G1237565 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303231288 2021-03-24 19:19:28.646223 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-03-15 10:03:00 obsr955789 S22358451 Stationary P21 EBIRD 47.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319678742 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 17:15:00 obsr822430 S23445698 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313217140 2021-11-09 19:02:27.638861 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-04-26 08:30:00 obsr2700041 S23072917 Traveling P22 EBIRD 270.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313723589 2021-03-24 20:33:47.533911 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 7 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-04-28 07:10:00 obsr869999 S23104890 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309254414 2021-03-24 19:27:13.077399 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-04-11 09:14:00 obsr1334267 S22811110 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS488812971 2018-08-06 22:31:00 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Delaware US-NY-025 28.0 Franklin Mountain, DOAS Sanctuary L305962 H 42.4263804 -75.048065 2015-05-24 08:05:00 obsr1885846 S36174369 Traveling P22 EBIRD 67.0 2.092 2.0 1 G2354314 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307064764 2021-03-26 06:59:15.841579 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-02 09:44:00 obsr2588479 S22652558 Traveling P22 EBIRD 428.0 0.08 5.0 1 G1202058 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301353852 2018-08-04 16:58:53 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 13 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-07 09:40:00 obsr2172593 S22206627 Stationary P21 EBIRD 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320343918 2021-04-01 11:30:42.037277 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 08:45:00 obsr2240960 S23481555 Traveling P22 EBIRD_WI 225.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308754871 2021-03-24 20:33:47.533911 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-06 12:10:00 obsr2001485 S22776809 Traveling P22 EBIRD 40.0 1.609 2.0 1 G1212806 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305157693 2021-03-24 20:33:47.533911 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 15 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Wegmans canal area L1368977 H 42.4346276 -76.5116732 2015-03-24 16:15:00 obsr2683910 S22507377 Traveling P22 EBIRD 3.0 0.322 2.0 1 G1191728 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291798894 2021-03-26 06:29:56.44369 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-01-18 07:40:00 obsr2449897 S21408590 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294888074 2021-03-26 07:07:10.758746 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-04 14:05:00 obsr1958124 S21673361 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289098406 2018-08-04 16:52:40 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-03 14:25:00 obsr730231 S21192664 Stationary P21 EBIRD 5.0 2.0 1 G1095577 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320577571 2021-03-26 06:39:43.334073 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 18 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-17 06:57:00 obsr2514491 S23493889 Traveling P22 EBIRD 340.0 0.805 2.0 1 G1277440 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305657876 2021-12-10 08:21:29.396662 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-27 15:30:00 obsr363163 S22546146 Traveling P22 EBIRD 170.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293415220 2021-04-01 12:11:16.886124 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. N 2 United States US New York US-NY Schoharie US-NY-095 13.0 42.7578x-74.5147 - Jan 24, 2015, 2:17 PM L3320388 P 42.757824 -74.514671 2015-01-24 14:17:00 obsr2268588 S21556337 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314584020 2015-05-01 11:15:43 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-30 07:45:00 obsr1633923 S23158698 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314749603 2021-11-09 19:26:46.111034 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Orange US-NY-071 28.0 Stewart SF L1136870 H 41.4968697 -74.1592259 2015-04-30 10:00:00 obsr662396 S23168271 Traveling P22 EBIRD 90.0 6.437 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324146487 2021-03-24 19:57:24.612804 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY New York US-NY-061 30.0 W Village Backyards and Airspace L974907 P 40.7366845 -74.0071853 2015-05-30 18:50:00 obsr128156 S23717403 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304940045 2021-03-26 08:14:57.071052 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-03-23 07:45:00 obsr2918150 S22490224 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293747124 2022-02-17 14:32:23.002448 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-28 14:40:00 obsr1605975 S21582465 Traveling P22 EBIRD 80.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311158159 2021-03-26 07:00:33.333856 592 species avibase-3072CC16 Redhead Aythya americana 350 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-04-19 07:32:00 obsr2574755 S22939206 Traveling P22 EBIRD 55.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313864156 2021-03-24 21:10:11.310781 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Saratoga US-NY-091 13.0 36 Curt Blvd L2229955 P 43.0492325 -73.8315735 2015-04-28 11:00:00 obsr907769 S23113843 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306176039 2021-03-26 06:39:43.334073 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-03-29 14:00:00 obsr601383 S22584696 Traveling P22 EBIRD 45.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288926332 2018-08-04 16:52:14 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-01-01 09:00:00 obsr1380963 S21179149 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294331768 2015-09-26 22:51:13 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 1 United States US New York US-NY Chenango US-NY-017 28.0 Ironwood Hill (private residence) L2420806 P 42.5495553 -75.4411411 2015-02-01 10:25:00 obsr294236 S21628535 Traveling P22 EBIRD 22.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317643703 2021-04-01 10:45:00.916278 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-09 07:00:00 obsr1135516 S23332052 Traveling P22 EBIRD 420.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303688016 2021-03-23 17:32:20.03109 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 5 United States US New York US-NY Onondaga US-NY-067 13.0 Pompey Estey Rd L2720155 P 42.905839 -75.9615326 2015-03-14 07:30:00 obsr2290617 S22394699 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309451503 2021-04-01 11:24:19.637193 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Monroe US-NY-055 13.0 Mt. Hope Cemetery L249453 H 43.1287817 -77.6206675 2015-04-12 14:17:00 obsr1958774 S22823090 Traveling P22 EBIRD 91.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304152724 2018-08-04 17:00:42 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Cayuga L Salt Pt L3500550 P 42.542248 -76.550747 2015-03-14 11:30:00 obsr1587816 S22430986 Incidental P20 EBIRD 12.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316198217 2021-04-01 11:30:42.037277 18439 species avibase-D97F93CC White-eyed Vireo Vireo griseus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 09:30:00 obsr1353449 S23248683 Traveling P22 EBIRD 180.0 4.828 2.0 1 G1253571 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310235499 2018-08-04 17:09:07 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 3 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area - NCAE L474355 P 43.0923966 -77.3768806 2015-04-14 08:40:00 obsr2113616 S22878147 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313209320 2021-03-31 08:21:38.875049 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Richmond US-NY-085 Chelsea Rd. and Bloomfield Ave., wetlands L958539 H 40.6130955 -74.187672 2015-04-25 13:36:00 obsr155915 S23072437 Stationary P21 EBIRD 4.0 3.0 1 G1237321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309922507 2018-08-04 17:06:16 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-04-06 15:50:00 obsr564905 S22856521 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295571278 2021-11-09 18:34:57.804398 456 species avibase-D201EB72 American Wigeon Mareca americana 5 United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-02-08 13:00:00 obsr1264675 S21727695 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288317529 2015-01-02 12:16:31 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 United States US New York US-NY Suffolk US-NY-103 30.0 Madder Lake Circle L3255125 P 40.8458835 -73.2793558 2015-01-01 11:30:00 obsr481595 S21127824 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305980151 2021-11-09 21:35:18.646328 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-03-29 09:25:00 obsr2214649 S22570174 Traveling P22 EBIRD 17.0 0.805 2.0 1 G1196109 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317468207 2021-03-26 07:56:20.588749 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 4 United States US New York US-NY Nassau US-NY-059 Shorecrest L3582358 P 40.8670413 -73.6517713 2015-05-09 08:45:00 obsr1296638 S23321806 Traveling P22 EBIRD 45.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324135998 2021-03-19 16:06:54.047432 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 6 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Dorothy McIlroy Bird Sanctuary (FLLT) L295002 H 42.6700861 -76.2951639 2015-05-31 07:06:00 obsr1696616 S23716718 Traveling P22 EBIRD 62.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307116584 2021-11-15 03:06:58.889978 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-03 08:31:00 obsr1175815 S22656447 Traveling P22 EBIRD 66.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318695171 2022-02-04 06:14:13.892644 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-05-11 12:15:00 obsr2619204 S23388806 Traveling P22 EBIRD 45.0 0.805 2.0 1 G1266012 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300722738 2021-11-09 18:58:19.805596 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Mills-Norrie SP--Norrie Point L450314 H 41.8326889 -73.9417694 2015-02-25 09:00:00 obsr1339050 S22158281 Traveling P22 EBIRD 180.0 3.219 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288958194 2021-04-01 12:18:57.910168 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Wegmans canal area L1368977 H 42.4346276 -76.5116732 2015-01-01 14:00:00 obsr39511 S21181497 Traveling P22 EBIRD 40.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293179384 2021-04-01 11:15:31.646886 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 3 United States US New York US-NY Kings US-NY-047 erie basin L3317358 P 40.6704181 -74.015429 2015-01-25 12:30:00 obsr377694 S21537289 Historical P62 EBIRD 30.0 6.437 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289955976 2019-10-25 15:51:29 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 home L1850306 P 44.6162578 -74.8236293 2015-01-08 15:00:00 obsr2834886 S21260249 Stationary P21 EBIRD 10.0 2.0 1 G1101768 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307250523 2015-04-03 18:41:20 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 PI--Harbor L991033 P 41.1725166 -72.2054958 2015-04-03 08:12:00 obsr2485753 S22665865 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312653871 2021-04-01 11:30:42.037277 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 09:00:00 obsr2319444 S23038629 Traveling P22 EBIRD 180.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301990928 2021-04-01 11:54:40.172593 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-03-06 09:00:00 obsr666331 S22255543 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323085133 2021-04-01 11:47:43.260314 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 3 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-04-06 06:30:00 obsr2409011 S23645503 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298593315 2021-03-26 08:05:20.615241 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Onondaga US-NY-067 13.0 Home, Thatchwood Dr., Manlius L1789277 P 43.008956 -76.0102533 2015-02-20 09:30:00 obsr724731 S21990347 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310383427 2021-03-24 20:23:39.258075 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 15 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Captree Island L2865928 H 40.6469348 -73.2632673 2015-04-16 08:23:00 obsr1228860 S22888451 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318868382 2021-03-26 07:53:57.664705 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-05-08 11:55:00 obsr1060479 S23399233 Stationary P21 EBIRD 460.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312032298 2021-04-01 12:14:19.266649 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-04-21 10:30:00 obsr105122 S22995891 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291264261 2017-01-13 19:19:32 6616 species avibase-7E022378 Common Loon Gavia immer 3 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3295510 P 43.429016 -75.903778 2015-01-16 11:07:00 obsr1477887 S21366410 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291613144 2021-03-26 07:30:35.289997 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 10 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-17 14:48:00 obsr2683910 S21394121 Stationary P21 EBIRD 51.0 2.0 1 G1113287 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309944035 2021-04-01 11:49:53.573686 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Environmental Center L1476823 H 40.7621022 -73.7535993 2015-04-14 08:00:00 obsr676630 S22858140 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307678013 2015-04-05 11:15:49 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Great Lawn L593577 H 40.7814351 -73.9665967 2015-04-05 11:00:00 obsr1175815 S22696112 Traveling P22 EBIRD 17.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322988416 2021-03-26 07:20:31.408164 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 10 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-23 11:02:00 obsr1319071 S23639137 Traveling P22 EBIRD 60.0 1.996 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314335010 2018-08-04 17:13:05 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-30 07:00:00 obsr1830659 S23142582 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310608067 2021-03-24 20:23:39.258075 592 species avibase-3072CC16 Redhead Aythya americana 6 United States US New York US-NY Suffolk US-NY-103 30.0 North Fork Preserve L1421657 H 40.97294 -72.6178146 2015-04-12 08:30:00 obsr379239 S22904224 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310601673 2021-03-23 17:22:05.708166 7318 species avibase-C6772490 Yellow-crowned Night-Heron Nyctanassa violacea 2 United States US New York US-NY Herkimer US-NY-043 13.0 Davis Road L865272 P 43.06355 -74.8198986 2015-04-16 08:48:00 obsr2694889 S22903778 Traveling P22 EBIRD 7.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314293576 2021-04-01 12:26:28.140316 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Yates US-NY-123 13.0 71 Hunt Rd, Rock Stream L885499 P 42.4619983 -76.9125205 2015-04-30 06:45:00 obsr1795612 S23140670 Traveling P22 EBIRD 60.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296738740 2022-01-30 05:31:50.734676 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-14 10:43:00 obsr715105 S21825916 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322866517 2021-04-01 11:15:31.646886 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 50 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 07:29:00 obsr1077730 S23631311 Traveling P22 EBIRD 300.0 3.219 14.0 1 G1289314 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288763696 2021-03-23 16:39:03.255227 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-03 13:39:00 obsr1893950 S21164064 Traveling P22 EBIRD 6.0 0.048 2.0 1 G1093016 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316584016 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-06 08:00:00 obsr423515 S23271560 Traveling P22 EBIRD 150.0 3.219 22.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298719049 2021-03-26 07:16:36.956617 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Schenectady US-NY-093 13.0 122 Willow Lane L3404351 P 42.8799502 -73.9210367 2015-02-21 08:30:00 obsr481595 S22001376 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294655467 2021-03-24 19:24:40.212356 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-02-02 07:30:00 obsr479109 S21654158 Stationary P21 EBIRD 300.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314035381 2021-11-09 21:31:40.219848 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 1 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-29 11:04:00 obsr1636520 S23124585 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313923026 2018-08-04 17:12:36 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Martens Tract L266868 H 43.0847778 -76.7093333 2015-04-28 10:19:00 obsr2760150 S23117672 Traveling P22 EBIRD 44.0 0.917 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314622329 2021-03-26 07:46:52.994574 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-01 10:15:00 obsr2590001 S23160817 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316920380 2015-08-03 08:20:54 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 3 S7 C3 S7 United States US New York US-NY Cortland US-NY-023 28.0 Taylor Valley SF--Mt Roderick Rd. crossing L3195390 H 42.645263 -75.982069 2015-05-07 12:37:00 obsr2279567 S23290426 Traveling P22 EBIRD 83.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305047150 2021-03-26 07:30:35.289997 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4000 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-24 07:46:00 obsr1655171 S22498871 Traveling P22 EBIRD 60.0 0.644 2.0 1 G1191720 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288592618 2019-07-23 17:26:40 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 7 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point SP L109151 H 41.0719093 -71.8838119 2015-01-02 07:45:00 obsr1832543 S21150427 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319609097 2021-03-19 16:14:11.035882 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor30 L3513972 H 42.745 -76.2441865 2015-05-14 07:05:00 obsr1042912 S23441659 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312579386 2021-03-26 06:09:25.361188 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Broome US-NY-007 28.0 SUNY Broome Community College L3583220 H 42.1353684 -75.9091816 2015-04-24 14:30:00 obsr1889889 S23033290 Traveling P22 EBIRD 65.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308946343 2021-04-01 11:24:19.637193 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-10 09:20:00 obsr1782363 S22790668 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321729214 2018-08-06 22:30:44 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Iroquois NWR--Swallow Hollow Trail L771567 H 43.1254425 -78.3256102 2015-05-21 13:15:00 obsr916033 S23563081 Traveling P22 EBIRD 83.0 3.219 2.0 1 G1281890 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294589837 2015-02-02 14:43:00 23242 species avibase-94A1C447 Bank Swallow Riparia riparia 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 30.0 Rosalie Manning Apartments, UES, New York, NY L3334589 P 40.7795795 -73.9519612 2015-02-02 09:00:00 obsr901178 S21648949 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321501935 2021-03-26 06:17:19.712573 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-18 11:00:00 obsr2871264 S23549137 Traveling P22 EBIRD 180.0 1.207 2.0 1 G1280786 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290313449 2021-04-01 11:24:19.637193 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 11 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-01-10 08:10:00 obsr1782363 S21289593 Stationary P21 EBIRD 60.0 3.0 1 G1104736 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS354311120 2021-11-15 03:06:58.889978 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-23 07:00:00 obsr663350 S25914451 Traveling P22 EBIRD 120.0 3.219 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290144562 2021-12-03 21:50:44.732892 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-01-09 10:22:00 obsr155915 S21275372 Traveling P22 EBIRD 35.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298270866 2021-11-09 19:42:30.164461 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Orange US-NY-071 28.0 Home L1977472 P 41.2531655 -74.3198544 2015-02-13 07:10:00 obsr769408 S21962297 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314184490 2021-11-09 18:45:59.829413 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 10 United States US New York US-NY Dutchess US-NY-027 13.0 Kraus Residence L3566761 P 41.8664609 -73.6636305 2015-04-29 09:00:00 obsr1468815 S23133661 Traveling P22 EBIRD_NJ 345.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292187655 2021-04-01 11:42:50.317679 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 4 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-01-20 10:50:00 obsr2892286 S21438774 Stationary P21 EBIRD 90.0 2.0 1 G1117937 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314958678 2021-04-01 11:15:31.646886 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 08:30:00 obsr369788 S23180152 Traveling P22 EBIRD 270.0 8.047 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301845276 2018-08-04 16:58:53 7429 species avibase-1327AC55 Osprey Pandion haliaetus X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-07 09:40:00 obsr1303581 S22244870 Stationary P21 EBIRD 30.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318625256 2018-08-06 22:29:41 7429 species avibase-1327AC55 Osprey Pandion haliaetus 8 United States US New York US-NY Delaware US-NY-025 28.0 Emmons Pond Bog Preserve L123020 H 42.4237205 -75.0141896 2015-05-11 13:13:00 obsr1885846 S23385013 Traveling P22 EBIRD 59.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308834172 2021-03-26 08:14:57.071052 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 17 United States US New York US-NY Westchester US-NY-119 30.0 White Plains Reservoir No. Two and Overflow Ponds L1072831 P 41.0533369 -73.7598038 2015-04-09 10:45:00 obsr2918150 S22782640 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296053081 2021-11-09 22:04:47.967972 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-10 12:00:00 obsr1327349 S21765377 Traveling P22 EBIRD 210.0 0.805 2.0 1 G1143024 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310568461 2018-02-20 13:22:31 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-04-11 17:46:00 obsr870166 S22901493 Traveling P22 EBIRD 8.0 0.402 2.0 1 G1222457 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292799480 2021-04-01 12:11:50.996293 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 30 United States US New York US-NY Seneca US-NY-099 13.0 Geneva Waterfront - Seneca Lake L1187906 P 42.8739513 -76.9593143 2015-01-23 15:00:00 obsr1633923 S21507436 Traveling P22 EBIRD 90.0 3.219 1.0 1 G1122413 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313330059 2019-10-25 16:34:17 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 9 United States US New York US-NY St. Lawrence US-NY-089 US-NY_775 13.0 Upper & Lower Lakes WMA--Hwy 68 marsh L590701 H 44.6182107 -75.2228737 2015-04-26 05:39:00 obsr1558090 S23079921 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303391643 2021-03-30 12:05:58.533651 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 10 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-15 14:00:00 obsr1807494 S22371292 Traveling P22 EBIRD 150.0 4.828 2.0 1 G1181463 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302914113 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-13 11:15:00 obsr263005 S22333373 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298817876 2015-02-21 17:37:56 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Erie US-NY-029 13.0 Rowley Rd L3405722 P 42.8964973 -78.7170625 2015-02-21 13:00:00 obsr1464134 S22009566 Traveling P22 EBIRD 1.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307917832 2018-08-04 17:05:36 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Saratoga US-NY-091 13.0 Hudson Crossing Park L1476458 H 43.1155261 -73.577908 2015-04-05 12:46:00 obsr1647272 S22713576 Rusty Blackbird Spring Migration Blitz P41 EBIRD 67.0 0.483 2.0 1 G1207228 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307003842 2021-03-30 19:39:10.250398 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park /Hendr.Park L365070 P 40.6787341 -73.6936927 2015-04-02 11:00:00 obsr916370 S22648008 Traveling P22 EBIRD 105.0 5.311 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305221489 2021-03-26 07:30:35.289997 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 6 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-25 07:47:00 obsr1655171 S22512179 Traveling P22 EBIRD 64.0 0.483 2.0 1 G1194527 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316291583 2021-03-19 16:32:34.732091 303 species avibase-B59E1863 Canada Goose Branta canadensis N 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 07:30:00 obsr2363365 S23254906 Traveling P22 EBIRD 360.0 4.828 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310336495 2021-03-23 17:15:00.080143 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Road L349902 P 43.0473407 -76.7303157 2015-04-15 08:55:00 obsr195058 S22885167 Traveling P22 EBIRD 70.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306987145 2021-03-23 17:26:08.495143 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-02 08:00:00 obsr1160328 S22646425 Area P23 EBIRD 120.0 30.3514 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320134928 2022-01-12 18:15:23.330035 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 6 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--CR 55 to Bigelow Rd. L1432948 H 44.4167104 -74.1195601 2015-05-16 07:24:00 obsr2950436 S23470997 Traveling P22 EBIRD 155.0 1.448 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296442508 2021-11-09 19:42:29.811957 622 species avibase-50566E50 Lesser Scaup Aythya affinis 4 United States US New York US-NY Orange US-NY-071 28.0 Highland Mills L1970726 P 41.3623801 -74.1055298 2015-02-13 11:00:00 obsr818959 S21798948 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS329943040 2021-03-26 06:17:19.712573 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-29 12:00:00 obsr1379161 S24130032 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300106551 2021-03-26 07:00:33.333856 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 30 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-02-28 08:42:00 obsr876649 S22112575 Traveling P22 EBIRD 109.0 3.0 13.0 1 G1162161 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290575257 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 Unknown Sex, Immature (1) United States US New York US-NY New York US-NY-061 30.0 Chelsea (14th-34th St.; 6th Ave. to Hudson R.) L9165682 H 40.746702 -74.0015091 2015-01-10 10:20:00 obsr2863596 S21310488 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303222381 2021-11-09 21:57:19.605717 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N X United States US New York US-NY Ulster US-NY-111 13.0 Rondout-Kingston L3465160 P 41.91695 -73.98631 2015-03-15 08:30:00 obsr1482758 S22357749 Traveling P22 EBIRD 90.0 7.242 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318491870 2018-08-06 22:29:38 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-11 06:55:00 obsr1044068 S23377801 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314072025 2018-08-04 17:11:58 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-24 08:30:00 obsr1200152 S23126784 Traveling P22 EBIRD 90.0 0.805 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300291703 2021-03-24 20:21:40.993321 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica N 35 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Falls L122667 T 42.91067 -76.79658 2015-02-28 15:00:00 obsr2534001 S22127375 Stationary P21 EBIRD 70.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324013489 2021-03-26 06:29:56.44369 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-25 07:28:00 obsr1696616 S23708810 Traveling P22 EBIRD 75.0 0.8 2.0 1 G1296178 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312879089 2022-03-05 22:03:50.715584 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-25 10:00:00 obsr2219590 S23052835 Traveling P22 EBIRD 120.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288743798 2021-11-09 19:56:27.170379 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 30 United States US New York US-NY Orange US-NY-071 28.0 0nion Ave L3261195 P 41.3678395 -74.4371796 2015-01-03 09:10:00 obsr1665312 S21162473 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308204091 2017-08-16 02:23:57 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-07 07:37:00 obsr1764243 S22734659 Traveling P22 EBIRD 48.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293856722 2021-04-01 10:55:39.308231 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 33 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-01-29 14:04:00 obsr502830 S21591299 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321865088 2021-03-26 07:46:52.994574 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-21 07:15:00 obsr2083114 S23571949 Traveling P22 EBIRD 155.0 4.828 10.0 1 G1282738 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312554489 2015-06-16 16:58:42 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Carncross Rd. L99688 H 43.0787739 -76.7080184 2015-04-24 13:00:00 obsr1721609 S23031489 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302832789 2021-03-30 19:28:38.115458 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 40 United States US New York US-NY Seneca US-NY-099 13.0 US-NY-Ovid-7334 Wyers Point Rd L3484636 P 42.66759 -76.709021 2015-03-13 10:04:00 obsr2871406 S22327089 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322316721 2021-03-23 17:20:04.546757 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Cattaraugus US-NY-009 13.0 Country Side Gravel (Lake Flavia) L302200 H 42.3615565 -79.0011191 2015-05-23 16:57:00 obsr2497657 S23599029 Traveling P22 EBIRD 86.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312916374 2015-04-25 18:33:57 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 18:32:00 obsr1092576 S23054900 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293114303 2018-08-04 16:55:06 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-01-24 09:50:00 obsr1079517 S21532298 Area P23 EBIRD 35.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303031429 2021-04-01 12:43:36.236969 6616 species avibase-7E022378 Common Loon Gavia immer 2 United States US New York US-NY Tioga US-NY-107 28.0 Nichols 701-1663 County Rd 502 L3487000 P 42.041322 -76.346465 2015-03-14 12:25:00 obsr979921 S22343028 Traveling P22 EBIRD 25.0 4.023 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299216863 2021-11-09 20:12:16.773384 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-02-23 10:58:00 obsr1912104 S22043371 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288099989 2021-03-23 16:39:03.255227 447 species avibase-C235A4D7 Gadwall Mareca strepera 30 United States US New York US-NY Richmond US-NY-085 30.0 Bloomingdale Park L870575 H 40.5319533 -74.2133646 2015-01-01 08:22:00 obsr1958124 S21109207 Traveling P22 EBIRD 8.0 0.032 2.0 1 G1088920 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311008935 2021-03-23 17:23:45.772216 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Livingston US-NY-051 13.0 South Conesus-Back Woods L698393 P 42.6703198 -77.6733398 2015-04-18 07:30:00 obsr72341 S22930045 Traveling P22 EBIRD 60.0 2.816 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289714130 2015-01-07 15:59:48 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-01-01 12:16:00 obsr535265 S21240571 Traveling P22 EBIRD 56.0 1.127 1.0 1 G1100193 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294881077 2021-04-01 11:49:53.573686 27616 species avibase-D77E4B41 American Robin Turdus migratorius 65 United States US New York US-NY Queens US-NY-081 30.0 Little Neck Bay, Cross Island Parkway L490036 H 40.78275 -73.7717833 2015-02-04 09:45:00 obsr676630 S21672833 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311848808 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-04-21 07:40:00 obsr599682 S22983818 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305348645 2021-03-26 07:30:35.289997 337 species avibase-694C127A Mute Swan Cygnus olor 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-25 17:30:00 obsr2260025 S22522025 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303332484 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-03-15 13:00:00 obsr2908667 S22366622 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302353311 2015-03-10 19:33:35 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-03-10 06:43:00 obsr2426404 S22290590 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316012914 2021-03-30 19:13:38.458673 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 82 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--East Spit L256061 H 43.3107525 -77.7073288 2015-05-04 13:01:00 obsr2774009 S23238370 Traveling P22 EBIRD 90.0 0.193 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313082852 2021-03-23 16:52:36.900075 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Swan-SH Town Boat Basin, EQ L1657759 P 40.8469317 -72.5716377 2015-04-26 09:50:00 obsr717785 S23065129 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320145079 2022-02-17 14:32:23.002448 33049 species avibase-136451CF Yellow-throated Warbler Setophaga dominica X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-16 11:02:00 obsr152435 S23471454 Traveling P22 EBIRD 111.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303560042 2021-12-28 15:50:27.785498 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-03-16 17:10:00 obsr606693 S22384904 Traveling P22 EBIRD 10.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299914491 2018-08-04 16:58:22 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 9 United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-02-27 16:19:00 obsr1821546 S22096537 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305888572 2021-03-26 07:07:10.758746 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-03-28 16:55:00 obsr1958124 S22563365 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305300465 2021-03-23 17:00:13.087107 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-25 07:45:00 obsr2430746 S22518396 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306041422 2021-11-09 19:56:29.281836 483 species avibase-85625D75 Mallard Anas platyrhynchos 20 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River Refuge L3344713 P 41.2816972 -74.5278168 2015-03-29 09:55:00 obsr1544235 S22574492 Traveling P22 EBIRD 140.0 4.345 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301230584 2019-01-21 12:29:47 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-06 13:15:00 obsr2914424 S22196122 Stationary P21 EBIRD 88.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309524848 2021-03-23 16:30:20.514143 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 30 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Schroeppel- Flooded Fields - (Private) L3559161 P 43.287913 -76.326693 2015-04-12 18:55:00 obsr2945658 S22828103 Stationary P21 EBIRD 8.0 3.0 1 G1225671 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308758460 2021-03-26 06:21:54.883933 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-09 07:25:00 obsr2519357 S22777090 Traveling P22 EBIRD 95.0 2.414 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301779003 2021-03-26 08:14:57.071052 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Westchester US-NY-119 30.0 NY - Yonkers - Kimble Ave L2432769 P 40.9168156 -73.8558269 2015-03-08 08:13:00 obsr1348614 S22239867 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319941583 2021-03-26 07:46:52.994574 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Coeymans Landing L484629 H 42.4734739 -73.7895441 2015-05-15 17:13:00 obsr1181085 S23459831 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312401587 2021-03-30 19:07:52.958398 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 17:30:00 obsr1807494 S23020573 Traveling P22 EBIRD 90.0 1.609 2.0 1 G1233184 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307143995 2021-04-01 12:24:45.865424 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 1 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-02 09:23:00 obsr211814 S22658418 Traveling P22 EBIRD 313.0 1.609 3.0 1 G1202494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS341668812 2015-09-11 15:26:19 32666 species avibase-5110842F Baltimore Oriole Icterus galbula X United States US New York US-NY Essex US-NY-031 13.0 125 Pine Springs Drive L3174221 P 43.8320347 -73.4437966 2015-02-01 obsr822321 S24983409 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308259353 2021-03-23 16:21:52.613913 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-04-07 11:45:00 obsr606693 S22738951 Traveling P22 EBIRD 13.0 0.563 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322336488 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-23 11:00:00 obsr1659461 S23600196 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301973130 2021-04-01 12:26:53.827486 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla N X United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-09 10:00:00 obsr1201479 S22254207 Stationary P21 EBIRD 35.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320447926 2021-03-19 16:08:39.161312 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Chautauqua US-NY-013 13.0 South Ripley, Miller Road L3360057 P 42.21902 -79.75516 2015-05-17 08:10:00 obsr37369 S23487123 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308870149 2021-03-24 20:53:39.352228 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 Unknown Sex, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-04-10 12:50:00 obsr2512689 S22785010 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315064938 2021-03-24 19:20:44.053843 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Broome US-NY-007 28.0 Vestal L2177398 P 42.1016932 -75.9767246 2015-05-02 09:43:00 obsr1626739 S23186148 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316178646 2015-05-05 17:05:16 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Greene US-NY-039 28.0 Purling L3358133 P 42.2972028 -74.0221721 2015-05-05 16:15:00 obsr951823 S23247399 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313464808 2015-04-27 10:11:50 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Onondaga US-NY-067 13.0 Clark Reservation SP L269990 H 42.9953045 -76.0941063 2015-04-26 09:35:00 obsr1167884 S23088695 Traveling P22 EBIRD 100.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301648686 2015-09-13 11:57:51 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-03-08 11:15:00 obsr1079517 S22228530 Area P23 EBIRD 45.0 40.4686 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309773900 2021-11-09 18:27:18.873475 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 4 United States US New York US-NY Dutchess US-NY-027 13.0 Allen Road yard list, Salt Point L1943130 P 41.8350253 -73.8021156 2015-04-13 07:15:00 obsr2175245 S22846014 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306853632 2021-03-30 19:07:52.958398 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-01 16:15:00 obsr2750470 S22636452 Traveling P22 EBIRD 105.0 2.414 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318589643 2021-04-01 12:32:15.282601 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-05-11 09:45:00 obsr247620 S23382907 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306380145 2021-03-30 19:07:52.958398 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-03-30 17:15:00 obsr2908667 S22600173 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309324765 2021-11-09 18:39:18.952338 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 20 United States US New York US-NY Dutchess US-NY-027 13.0 Pine Plains, Rt 82 at Conklin Hill Rd L2855074 P 41.93936 -73.65635 2015-04-12 08:40:00 obsr1732267 S22815609 Stationary P21 EBIRD 20.0 2.0 1 G1217897 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310325564 2019-07-23 17:28:18 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip F L3559849 P 40.22115 -73.03615 2015-04-11 13:00:00 obsr782651 S22884404 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221325 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301950101 2021-04-01 10:49:39.496318 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus X United States US New York US-NY Cayuga US-NY-011 13.0 Triangle Diner L368656 H 42.664724 -76.638903 2015-03-08 10:10:00 obsr354239 S22252447 Stationary P21 EBIRD 24.0 11.0 1 G1170858 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307185144 2017-09-10 16:53:09 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Wayne US-NY-117 13.0 Casey Park, Town of Ontario L2933674 H 43.2352297 -77.2896552 2015-04-03 13:10:00 obsr2914424 S22661185 Traveling P22 EBIRD 94.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300242982 2021-03-26 07:20:31.408164 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 9 United States US New York US-NY Suffolk US-NY-103 30.0 Ocean Beach, NY L3366716 P 40.6474012 -73.1545901 2015-03-01 08:35:00 obsr17971 S22123477 Traveling P22 EBIRD 180.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324390762 2021-11-09 18:37:59.213196 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Dutchess US-NY-027 28.0 Cricket Hill Road L2823155 P 41.66373 -73.56602 2015-05-16 15:58:00 obsr1732267 S23733223 Traveling P22 EBIRD 12.0 0.805 2.0 1 G1298915 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299323748 2021-04-01 12:45:19.712958 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 30 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-23 10:45:00 obsr1869834 S22051597 Stationary P21 EBIRD 10.0 9.0 1 G1157697 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310349408 2021-03-30 19:22:51.561415 7429 species avibase-1327AC55 Osprey Pandion haliaetus 22 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr155915 S22886050 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292006547 2018-08-04 16:54:44 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 3 United States US New York US-NY Essex US-NY-031 13.0 Westport Boat Launch L479943 H 44.1887912 -73.4342089 2015-01-19 15:50:00 obsr822321 S21424700 Stationary P21 EBIRD 40.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311984564 2021-03-26 07:20:31.408164 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Islip Grange Park L3581884 P 40.7507032 -73.0682874 2015-04-21 18:00:00 obsr1325561 S22992625 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321788359 2021-03-19 16:19:20.977326 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Erie US-NY-029 13.0 11 Ironwood Court L2904834 P 43.0168464 -78.723591 2015-05-21 17:45:00 obsr2741295 S23566819 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301367462 2021-04-01 11:27:18.37144 5966 species avibase-CB343E43 Long-billed Dowitcher Limnodromus scolopaceus N 10 United States US New York US-NY Montgomery US-NY-057 13.0 1364 Kennedy Rd L3460933 P 43.0321725 -74.717229 2015-03-07 09:00:00 obsr481595 S22207762 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309699111 2021-03-23 16:39:03.255227 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF--Snag Swamp L1473094 H 40.515363 -74.2213938 2015-04-13 10:58:00 obsr1958124 S22840318 Rusty Blackbird Spring Migration Blitz P41 EBIRD 18.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305834332 2018-08-04 17:04:29 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-03-28 12:10:00 obsr319738 S22559302 Traveling P22 EBIRD 35.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321143314 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-17 17:30:00 obsr1382841 S23527010 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307939561 2021-11-09 21:31:39.331046 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Ulster US-NY-111 13.0 Fehr L1431569 P 42.0463601 -73.9834186 2015-04-06 08:30:00 obsr1110743 S22714995 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309010334 2018-08-04 17:08:14 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe X United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-09 15:30:00 obsr1174140 S22795170 Traveling P22 EBIRD 240.0 5.633 5.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS379408929 2021-09-19 18:57:52.903665 26278 species avibase-A381417F House Wren Troglodytes aedon 4 United States US New York US-NY New York US-NY-061 30.0 Morningside Park, Manhattan L1799559 H 40.8067376 -73.9580993 2015-01-05 13:55:00 obsr1477666 S28009304 Traveling P22 EBIRD 50.0 1.287 2.0 1 G1634019 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301161188 2021-03-26 07:30:35.289997 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-03-05 10:00:00 obsr2137468 S22190662 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309859389 2018-08-04 17:08:37 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-11 16:55:00 obsr711169 S22851967 Stationary P21 EBIRD 20.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313490770 2021-04-01 11:30:42.037277 622 species avibase-50566E50 Lesser Scaup Aythya affinis 3 Unknown Sex and Age (1); Unknown Sex, Adult (2) United States US New York US-NY New York US-NY-061 30.0 Sakura Park L3595087 P 40.8129972 -73.9621282 2015-04-26 13:00:00 obsr1555046 S23090266 Incidental P20 EBIRD 2.0 0 G1239821 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301279856 2021-03-24 19:20:44.053843 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 18 United States US New York US-NY Broome US-NY-007 28.0 Mersereau Park Floodwall L837941 P 42.0905478 -76.0625124 2015-03-06 16:20:00 obsr1626739 S22199903 Traveling P22 EBIRD 36.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307761625 2021-03-26 07:46:52.994574 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 20 United States US New York US-NY Albany US-NY-001 13.0 Stanton Pond L273495 H 42.5094164 -73.9012973 2015-04-05 13:00:00 obsr2214649 S22701913 Stationary P21 EBIRD 15.0 2.0 1 G1210516 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311553430 2021-03-26 07:56:20.588749 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 15 United States US New York US-NY Nassau US-NY-059 30.0 Great Neck North Middle School L3578002 P 40.803783 -73.7421441 2015-03-10 09:25:00 obsr544054 S22963548 Traveling P22 EBIRD 30.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305065393 2021-03-24 20:33:47.533911 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 F C1 F United States US New York US-NY Tompkins US-NY-109 13.0 SSW - n. leg of West Trail (0.225km) L1364967 P 42.4785915 -76.4558458 2015-03-24 08:00:00 obsr2307843 S22500349 Traveling P22 EBIRD 10.0 0.25 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299088171 2021-04-01 11:58:54.966271 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 21 United States US New York US-NY St. Lawrence US-NY-089 13.0 Canton: NE neighborhood walk L1815904 P 44.5982045 -75.1673892 2015-02-22 07:58:00 obsr1558090 S22033662 Traveling P22 EBIRD 67.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314847872 2021-03-22 08:58:29.008072 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-05 09:00:00 obsr2227913 S23169792 Traveling P22 EBIRD 120.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317009410 2021-03-26 07:52:59.845315 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 28 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-06 14:55:00 obsr1000124 S23295559 Area P23 EBIRD 48.0 2.59 2.0 1 G1256611 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310220443 2021-03-19 16:06:54.047432 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Union Springs-1003-1005 County Rte 89 L3565718 P 42.810694 -76.678783 2015-04-15 07:53:00 obsr1092576 S22877185 Traveling P22 EBIRD 6.0 0.161 3.0 1 G1220762 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292153132 2021-04-01 11:15:31.646886 431 species avibase-90E2543E Blue-winged Teal Spatula discors 6 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-20 10:00:00 obsr2363365 S21436280 Traveling P22 EBIRD 80.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288995816 2015-01-04 11:50:06 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Schoharie US-NY-095 28.0 US-NY-Middleburgh-709 Stone Store Rd L2867488 P 42.48565 -74.2984 2015-01-03 11:14:00 obsr2268588 S21184614 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313377091 2020-05-16 18:10:42 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Otsego US-NY-077 28.0 Buck Horn Lake L3148294 P 42.3527462 -75.2922034 2015-04-25 12:30:00 obsr789570 S23082667 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305973753 2021-03-24 20:16:00.852773 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-03-29 08:01:00 obsr1958124 S22569712 Traveling P22 EBIRD 22.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308055799 2018-08-04 17:05:40 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Washington US-NY-115 13.0 Ft. Miller (hamlet) L199770 H 43.1618045 -73.5779071 2015-04-05 18:10:00 obsr2533499 S22722988 Traveling P22 EBIRD 30.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321541403 2021-04-01 10:47:08.851048 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps N 1 United States US New York US-NY Broome US-NY-007 28.0 Workwalk L207593 P 42.0992895 -75.9106445 2015-05-20 06:55:00 obsr646558 S23551589 Traveling P22 EBIRD 20.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294973166 2021-03-30 19:18:56.909873 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-02-04 14:45:00 obsr150865 S21680309 Traveling P22 EBIRD 120.0 4.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308865773 2021-03-24 20:21:40.993321 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 80 United States US New York US-NY Seneca US-NY-099 13.0 Seneca Lake SP L148712 H 42.8731414 -76.949299 2015-04-10 07:23:00 obsr1278262 S22784730 Traveling P22 EBIRD 451.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312823736 2021-03-26 07:07:10.758746 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius X United States US New York US-NY Richmond US-NY-085 30.0 Goodhue Park L474119 H 40.6363403 -74.098134 2015-04-25 12:45:00 obsr2904420 S23049582 Traveling P22 EBIRD 40.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316134995 2018-08-04 17:14:51 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-05 09:00:00 obsr1079517 S23245079 Area P23 EBIRD 35.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312123342 2021-03-26 06:11:29.8335 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 2 United States US New York US-NY Cayuga US-NY-011 13.0 Burtis Point L3315411 P 42.8663964 -76.5147758 2015-04-05 14:45:00 obsr1737482 S23001570 Stationary P21 EBIRD 140.0 4.0 1 G1231819 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306365433 2022-02-17 14:32:23.002448 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-30 12:30:00 obsr2448957 S22599018 Traveling P22 EBIRD 270.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324049948 2015-05-30 19:16:24 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 29 United States US New York US-NY Albany US-NY-001 13.0 Pond House L3573738 P 42.6579532 -74.0361866 2015-05-29 17:15:00 obsr1635947 S23711067 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305679568 2021-04-01 12:14:19.266649 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Chandler Estate L1355478 H 40.9559916 -73.0192018 2015-03-27 16:00:00 obsr2338506 S22547897 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293733122 2021-03-26 06:29:56.44369 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 8 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-28 15:27:00 obsr934639 S21581068 Traveling P22 EBIRD 35.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293376988 2015-01-26 13:14:24 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Schenectady US-NY-093 13.0 US-NY-Pattersonville - 42.8555x-74.0322 - Jan 26, 2015, 1:13 PM L3319841 P 42.855453 -74.032185 2015-01-26 13:13:00 obsr1181085 S21552532 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298026151 2020-11-02 07:20:56 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Onondaga US-NY-067 13.0 * Casa Weber L3258842 P 43.01599 -76.12866 2015-02-16 10:00:00 obsr2561576 S21941407 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299498641 2018-08-04 16:58:13 23291 species avibase-58C502EA Barn Swallow Hirundo rustica X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-02-25 08:12:00 obsr1165633 S22064700 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304681639 2021-04-01 11:15:31.646886 660 spuh avibase-CB56BEF1 scoter sp. Melanitta sp. 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-03-21 12:30:00 obsr2033754 S22470744 Traveling P22 EBIRD 60.0 0.402 2.0 1 G3716442 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317740173 2018-08-04 16:53:24 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-01-17 obsr2774749 S23337228 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312363311 2018-08-04 17:11:50 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 10 Male, Adult (7); Female, Adult (3) United States US New York US-NY Hamilton US-NY-041 14.0 Big Brook Road - from Jerry Savarie Rd to Moulton Rd. L1794427 P 43.739812 -74.2324492 2015-04-22 16:39:00 obsr316199 S23017871 Traveling P22 EBIRD 43.0 4.023 4.0 1 G1232884 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361564339 2021-11-09 22:04:47.967972 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 9 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-07 09:10:00 obsr132593 S26494836 Traveling P22 EBIRD 172.0 56.327 2.0 1 G1516811 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313274405 2018-08-04 17:12:29 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Tompkins US-NY-109 28.0 Thomas Rd., south (Six Mile Creek ponds & marsh) L388439 H 42.4020377 -76.3778114 2015-04-26 18:52:00 obsr2074043 S23076380 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313389693 2021-04-01 11:24:19.637193 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 3 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-25 10:15:00 obsr1782363 S23084057 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313780674 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 Female, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-27 18:45:00 obsr1548221 S23108509 Traveling P22 EBIRD 27.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316007834 2021-11-09 18:27:18.873475 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Dutchess US-NY-027 13.0 Allen Road yard list, Salt Point L1943130 P 41.8350253 -73.8021156 2015-05-05 05:35:00 obsr2175245 S23238088 Traveling P22 EBIRD 96.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300210772 2015-03-01 09:24:53 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Rt. 13 at Sapsucker Woods L1118746 P 42.4827636 -76.4548874 2015-03-01 08:45:00 obsr2211210 S22120725 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290852040 2019-07-23 17:26:47 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-B L3288880 P 40.21933 -73.19694 2015-01-11 09:00:00 obsr41879 S21332693 Traveling P22 EBIRD 60.0 15.289 44.0 1 G1108334 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS322012859 2021-03-26 06:21:54.883933 7261 species avibase-86D45B8F Green Heron Butorides virescens 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-22 07:50:00 obsr1516787 S23581515 Traveling P22 EBIRD 190.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289125756 2021-04-01 11:24:19.637193 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Monroe US-NY-055 13.0 Fleming House L3266492 P 43.2523923 -77.6315403 2015-01-04 09:00:00 obsr991026 S21194865 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307098539 2021-07-29 22:05:06.883121 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-28 obsr1220115 S22654975 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299166346 2021-03-26 06:07:45.516082 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-02-23 10:00:00 obsr128156 S22039530 Traveling P22 EBIRD 30.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322959570 2015-05-25 20:30:16 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Herkimer US-NY-043 US-NY_864 14.0 ALC - Gravel Pit L2878452 P 43.6402991 -74.9533653 2015-05-24 09:30:00 obsr2255732 S23637316 Traveling P22 EBIRD 30.0 0.644 2.0 1 G1289877 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310300900 2021-04-01 11:15:31.646886 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-15 18:15:00 obsr2750470 S22882623 Traveling P22 EBIRD 1.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319806230 2015-05-15 11:04:09 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Madison US-NY-053 13.0 Great Swamp Conservancy L3352652 P 43.1164602 -75.7335663 2015-05-09 15:00:00 obsr1520505 S23453147 Traveling P22 EBIRD 75.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305260417 2021-03-24 20:56:44.139453 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-03-21 10:30:00 obsr2475075 S22515297 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305744749 2018-08-04 17:03:44 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 60 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Taughannock Falls SP--Loon Watch L99383 H 42.5491687 -76.5984989 2015-03-27 10:46:00 obsr2867163 S22552872 Traveling P22 EBIRD 20.0 0.161 2.0 1 G1194819 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921700 2021-03-30 19:39:10.250398 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 12 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-18 16:00:00 obsr2218212 S22173332 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309011611 2021-04-01 11:47:43.260314 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-10 09:00:00 obsr2224244 S22795248 Stationary P21 EBIRD 388.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294702353 2015-02-03 09:03:42 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 6 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-02-03 07:48:00 obsr666964 S21657649 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307276014 2021-03-23 17:26:08.495143 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 100 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Lido Beach Passive Nature Area L723695 H 40.5923663 -73.5957384 2015-04-03 11:35:00 obsr1160328 S22667690 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301348093 2015-03-07 09:26:15 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 3 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-03-07 08:31:00 obsr1764243 S22206165 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320677141 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-17 11:00:00 obsr2603801 S23499213 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311610239 2019-09-29 09:48:34 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-20 12:47:00 obsr1721609 S22967844 Stationary P21 EBIRD 143.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298459504 2021-11-09 18:09:08.212564 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Dutchess US-NY-027 US-NY_870 13.0 Thompson Pond Preserve L123019 H 41.9677583 -73.6819272 2015-02-11 09:00:00 obsr1339050 S21979163 Traveling P22 EBIRD 180.0 3.219 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304906228 2021-04-01 11:49:53.573686 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Queens US-NY-081 30.0 Brookville Park L2687495 H 40.6629513 -73.7429361 2015-03-23 10:30:00 obsr2505956 S22487259 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS304214195 2021-04-01 11:15:31.646886 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-03-20 10:00:00 obsr827632 S22435990 Traveling P22 EBIRD 165.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312184790 2018-08-04 17:11:30 26109 species avibase-BAC33609 Brown Creeper Certhia americana 25 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Tonawanda WMA--Meadville Rd. L152121 H 43.1145 -78.4563 2015-04-21 14:20:00 obsr408487 S23005891 Traveling P22 EBIRD 5.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312299140 2021-03-23 16:21:52.613913 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Ontario US-NY-069 13.0 Finger Lakes Community College (Ontario Co.) L661673 H 42.8692335 -77.2442722 2015-04-20 13:02:00 obsr1243175 S23013452 Traveling P22 EBIRD 24.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321823121 2021-03-26 06:12:17.833181 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-05-18 07:30:00 obsr479109 S23568819 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313458175 2021-04-01 10:45:00.916278 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-27 09:10:00 obsr128156 S23088347 Rusty Blackbird Spring Migration Blitz P41 EBIRD 20.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311162473 2021-04-01 11:15:31.646886 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-18 10:51:00 obsr839844 S22939483 Traveling P22 EBIRD 241.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314050298 2021-04-01 10:47:08.851048 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Broome US-NY-007 28.0 Jones Park L1180843 P 42.0166518 -75.9677124 2015-04-29 08:00:00 obsr1826325 S23125443 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309114913 2021-12-08 07:58:41.562209 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-11 13:05:00 obsr1349960 S22801793 Traveling P22 EBIRD 109.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291917042 2021-04-01 12:31:09.823741 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake L1142429 P 42.7979199 -77.7138519 2015-01-18 09:20:00 obsr1060479 S21417435 Traveling P22 EBIRD 55.0 14.484 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302600241 2021-11-20 09:30:27.481745 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake, end of Creekwalk L1331492 H 43.0680178 -76.1778662 2015-03-12 08:05:00 obsr324569 S22309767 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323218002 2021-03-30 19:07:52.958398 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 06:33:00 obsr873268 S23654080 Traveling P22 EBIRD 187.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319583476 2021-03-19 16:02:45.308962 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Broome US-NY-007 28.0 Greenwood County Park L998784 H 42.2869951 -76.0881629 2015-05-14 12:30:00 obsr1830659 S23440260 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921109 2021-03-26 07:56:20.588749 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 6 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-28 09:00:00 obsr2218212 S22173309 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312862498 2015-04-25 16:07:03 26890 species avibase-94A44032 European Starling Sturnus vulgaris 5 United States US New York US-NY Broome US-NY-007 28.0 Jones Park L1598748 H 42.0156115 -75.983731 2015-04-25 10:04:00 obsr800690 S23051812 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310397753 2021-03-26 06:39:43.334073 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-16 09:09:00 obsr1034702 S22889495 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294727283 2021-03-26 08:14:57.071052 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-02-03 10:00:00 obsr2924527 S21659758 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312898998 2021-04-01 11:15:31.646886 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 11:00:00 obsr2319444 S23053905 Traveling P22 EBIRD 270.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302924083 2019-07-23 17:27:55 5953 species avibase-ACC99F35 Pectoral Sandpiper Calidris melanotos 6 United States US New York US-NY Suffolk US-NY-103 US-NY_782 PI--Route 1 L985254 P 41.1763283 -72.2099161 2015-03-13 08:45:00 obsr2485753 S22334214 Traveling P22 EBIRD 38.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303603097 2021-03-24 20:11:57.676649 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-16 09:30:00 obsr2744341 S22388181 Stationary P21 EBIRD 525.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291450270 2021-03-23 16:39:03.255227 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 8 United States US New York US-NY Richmond US-NY-085 Lemon Creek Pier L673443 H 40.5108301 -74.2097712 2015-01-17 10:33:00 obsr1958124 S21381393 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321726160 2021-03-26 06:29:56.44369 32955 species avibase-41062654 Northern Parula Setophaga americana 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-11 10:30:00 obsr1962295 S23562918 Traveling P22 EBIRD 300.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295077303 2021-03-30 19:07:52.958398 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-05 14:30:00 obsr2448957 S21689792 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314196314 2021-09-16 18:37:17.374067 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-29 19:00:00 obsr2933610 S23134412 Traveling P22 EBIRD 129.0 0.322 3.0 1 G1245626 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288809413 2021-11-09 20:42:30.328155 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 41 United States US New York US-NY Putnam US-NY-079 28.0 US-NY-Brewster-251 Maple Rd L3262156 P 41.40464 -73.645225 2015-01-03 08:44:00 obsr187432 S21167844 Traveling P22 EBIRD 33.0 4.023 2.0 1 G1097918 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295129198 2021-03-26 07:52:59.845315 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-05 08:07:00 obsr1000124 S21692499 Area P23 EBIRD 78.0 2.59 2.0 1 G1136347 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307549147 2015-04-04 20:58:25 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Washington US-NY-115 13.0 Granville L131798 T 43.4078712 -73.259552 2015-04-04 10:00:00 obsr2196530 S22687193 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294605716 2018-08-04 16:55:33 30494 species avibase-240E3390 House Sparrow Passer domesticus 13 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-01 09:30:00 obsr1152226 S21650329 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322987942 2018-08-06 22:30:15 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Herkimer US-NY-043 14.0 Lake Rondaxe, Burgers Camp L992096 P 43.761071 -74.9080167 2015-05-16 16:30:00 obsr2535282 S23639104 Traveling P22 EBIRD 120.0 1.609 4.0 1 G1289898 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289440753 2021-04-01 12:14:19.266649 447 species avibase-C235A4D7 Gadwall Mareca strepera N 1 United States US New York US-NY Suffolk US-NY-103 30.0 Swan Lake, East Patchogue L279859 H 40.770108 -72.9932633 2015-01-03 08:40:00 obsr2934754 S21219055 Traveling P22 EBIRD 140.0 1.609 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310302699 2021-11-15 03:06:58.889978 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-12 14:15:00 obsr968874 S22882754 Traveling P22 EBIRD 120.0 6.437 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305867617 2021-04-01 11:15:31.646886 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum N 2 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-03-28 12:25:00 obsr1711339 S22561715 Traveling P22 EBIRD 110.0 2.012 11.0 1 G1195436 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289055624 2019-07-23 17:26:40 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-03 07:00:00 obsr544268 S21189157 Stationary P21 EBIRD 80.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311244215 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-19 05:45:00 obsr478499 S22944423 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306475516 2022-02-18 10:47:29.953615 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 Male, Adult (1) United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-31 07:06:00 obsr1062070 S22607931 Stationary P21 EBIRD 91.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291617078 2018-08-04 16:53:30 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-17 13:00:00 obsr2555972 S21394483 Traveling P22 EBIRD 45.0 0.483 2.0 1 G1113328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294264999 2021-03-26 07:43:12.52294 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Feeders in Savannah L1790820 P 43.0734788 -76.7648262 2015-01-31 15:15:00 obsr195058 S21623350 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310425111 2015-04-16 12:29:21 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Chenango US-NY-017 28.0 Home woods L3452888 P 42.3471065 -75.6650519 2015-04-16 08:40:00 obsr1303581 S22891265 Traveling P22 EBIRD 170.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316131712 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 10:00:00 obsr1223279 S23244907 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300098343 2021-04-01 11:47:43.260314 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-02-23 06:45:00 obsr2409011 S22111880 Stationary P21 EBIRD 165.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304057436 2018-08-04 17:01:58 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-19 12:00:00 obsr2258053 S22423731 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310628223 2021-04-01 10:52:24.630268 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Clinton US-NY-019 13.0 Saranac River Mouth L635726 H 44.6994858 -73.4455347 2015-04-17 10:43:00 obsr2420101 S22905601 Traveling P22 EBIRD 18.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317417954 2021-03-19 16:44:35.607263 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 117 Lyons Rd L154230 P 43.0025601 -77.6175928 2015-05-09 06:56:00 obsr270659 S23318911 Stationary P21 EBIRD 71.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305470232 2021-04-01 12:24:45.865424 6361 issf avibase-0C55DFCC Iceland Gull Larus glaucoides Iceland Gull (kumlieni) Larus glaucoides kumlieni 1 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Larkin Rd. L4342619 H 43.3037091 -76.7905645 2015-03-26 17:37:00 obsr1721609 S22531689 Traveling P22 EBIRD 19.0 1.609 3.0 1 G1193967 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288925672 2018-08-04 16:52:36 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Times Beach Nature Preserve L811486 H 42.8742747 -78.8825647 2015-01-03 09:30:00 obsr1043007 S21179097 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315067197 2015-05-02 19:38:54 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Broome US-NY-007 28.0 Harold Moore Park L278836 P 42.101117 -76.0136825 2015-05-02 14:55:00 obsr1626739 S23186262 Traveling P22 EBIRD 29.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS920854665 2021-03-23 16:30:20.514143 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Mexico-28-94 Sage Creek Dr L3591923 P 43.516939 -76.234604 2015-04-26 11:12:00 obsr2720788 S68975112 Stationary P21 EBIRD 40.0 2.0 1 G5326518 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304207494 2022-03-05 22:03:50.715584 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 4 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-20 11:00:00 obsr444155 S22435441 Traveling P22 EBIRD 90.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317437002 2015-05-09 09:16:57 5949 species avibase-153BA306 White-rumped Sandpiper Calidris fuscicollis 1 United States US New York US-NY Livingston US-NY-051 13.0 US-NY-PORTAGE, 625 NY-436 L3579171 P 42.574927 -78.013591 2015-05-06 11:21:00 obsr731272 S23320020 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313206262 2021-08-05 15:12:08.31456 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea N 12 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Heckscher SP, East Islip L547888 H 40.7129149 -73.1650615 2015-04-26 08:45:00 obsr706483 S23072261 Traveling P22 EBIRD 130.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314925875 2018-06-17 09:20:07 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 5 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Thunder Rocks L2208461 H 42.0411776 -78.7020421 2015-05-02 08:15:00 obsr2933610 S23178499 Traveling P22 EBIRD 113.0 3.38 2.0 1 G1254125 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306244115 2021-03-24 19:23:17.886063 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Cayuga US-NY-011 13.0 North Mill Pond, Union Springs L146185 H 42.8451691 -76.6927338 2015-03-29 12:08:00 obsr67057 S22589787 Stationary P21 EBIRD 10.0 4.0 1 G1197070 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309067993 2021-04-01 12:18:57.910168 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 28.0 Lindsay-Parsons Biodiversity Preserve (FLLT) L109055 H 42.3101677 -76.5216895 2015-04-11 09:30:00 obsr1418810 S22798949 Traveling P22 EBIRD 130.0 3.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312939362 2021-03-26 06:29:56.44369 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Irondequoit-9 Vayo St, Varied Thrush Stake Out L3590413 P 43.174028 -77.554661 2015-04-25 16:39:00 obsr749440 S23056357 Stationary P21 EBIRD 188.0 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289099471 2021-03-24 19:47:16.07498 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-01-02 07:53:00 obsr589593 S21192739 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322740730 2021-03-26 06:11:29.8335 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-05-25 08:36:00 obsr2001485 S23623736 Traveling P22 EBIRD 15.0 1.609 2.0 1 G1289536 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310758656 2020-01-16 17:01:29 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Oneida US-NY-065 13.0 Germany Road Marsh L910139 P 43.1560261 -75.6142462 2015-04-17 19:20:00 obsr545221 S22914121 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292014069 2021-03-30 19:29:33.633096 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-19 09:15:00 obsr1659461 S21425288 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294364567 2021-04-01 12:32:15.282601 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus N 21 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-01 07:30:00 obsr547602 S21631072 Traveling P22 EBIRD 240.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307081999 2015-04-03 00:29:30 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 5 United States US New York US-NY Fulton US-NY-035 14.0 Cline Road Marsh/Forest Loop L2499202 P 43.0665479 -74.65976 2015-04-02 11:42:00 obsr316199 S22653763 Traveling P22 EBIRD 73.0 4.345 3.0 1 G1202219 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304343534 2021-04-01 11:49:53.573686 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-03-21 07:14:00 obsr2574755 S22445734 Traveling P22 EBIRD 92.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310349313 2017-04-15 20:22:11 616 species avibase-25C94A8F Greater Scaup Aythya marila 5 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip E L3559835 P 40.093967 -72.878533 2015-04-11 12:00:00 obsr155915 S22886043 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221332 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300434818 2021-03-26 08:14:57.071052 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-03-01 09:15:00 obsr2918150 S22137515 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309184563 2021-11-09 21:50:48.44865 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-11 07:00:00 obsr1110743 S22806441 Traveling P22 EBIRD 150.0 1.609 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314505189 2021-03-26 07:56:20.588749 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus N X United States US New York US-NY Nassau US-NY-059 30.0 Centennial Gardens Bird Sanctuary L3113329 H 40.7156722 -73.6956919 2015-04-30 16:00:00 obsr143739 S23153655 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313050337 2021-04-01 10:51:06.899622 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-26 06:56:00 obsr1092576 S23063161 Stationary P21 EBIRD 68.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318706220 2021-11-09 18:46:29.098642 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Lagrange yard L3597754 P 41.6963841 -73.8455057 2015-04-27 06:00:00 obsr2786327 S23389492 Stationary P21 EBIRD 90.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS768675981 2021-04-01 12:45:19.712958 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 3 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-03-02 08:30:00 obsr363553 S56910140 Traveling P22 EBIRD 90.0 1.609 2.0 1 G4236487 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309099245 2021-03-30 19:29:33.633096 592 species avibase-3072CC16 Redhead Aythya americana 5 United States US New York US-NY Suffolk US-NY-103 US-NY_780 30.0 USFWS_602 Wertheim NWR L295971 H 40.7754935 -72.8810839 2015-04-11 13:30:00 obsr1618264 S22800818 Traveling P22 EBIRD 30.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296674416 2015-02-14 10:22:00 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Seneca US-NY-099 13.0 Kingtown Road, Covert, New York, US L3365389 P 42.556368 -76.6499913 2015-02-14 08:25:00 obsr349994 S21819743 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307785047 2021-03-23 17:26:08.495143 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-03 09:30:00 obsr1494607 S22703765 Traveling P22 EBIRD 25.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287377 2021-03-26 07:07:10.758746 483 species avibase-85625D75 Mallard Anas platyrhynchos 130 United States US New York US-NY Richmond US-NY-085 Sharrotts Shoreline L2029141 H 40.5374597 -74.2442361 2015-01-01 08:55:00 obsr1893950 S21125169 Traveling P22 EBIRD 7.0 0.032 2.0 1 G1088916 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310094179 2021-03-30 19:07:12.70155 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 6 United States US New York US-NY Jefferson US-NY-045 US-NY_778 13.0 Perch River WMA L253293 H 44.0861979 -75.9664464 2015-04-14 18:00:00 obsr585290 S22868710 Traveling P22 EBIRD 70.0 22.531 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311223556 2021-12-08 07:58:41.562209 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-19 07:36:00 obsr2206421 S22943163 Traveling P22 EBIRD 159.0 2.736 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288443717 2019-01-27 11:09:05 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 75 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-01 07:15:00 obsr1121454 S21137670 Traveling P22 EBIRD 75.0 4.023 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312130825 2021-04-01 11:15:31.646886 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-22 10:44:00 obsr1601967 S23002105 Traveling P22 EBIRD 257.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322748175 2015-05-25 09:20:10 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Broome US-NY-007 28.0 Lamoureux Yard list L1160914 P 42.0812478 -75.9837198 2015-05-25 09:00:00 obsr1044068 S23624148 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303998786 2021-04-01 12:32:15.282601 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-03-13 08:55:00 obsr1112275 S22418764 Traveling P22 EBIRD 90.0 2.414 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309340780 2018-08-04 17:08:46 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 2 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-04-12 09:22:00 obsr1565981 S22816591 Traveling P22 EBIRD 52.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288543981 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-01-02 13:35:00 obsr2105033 S21146406 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313230859 2021-03-26 06:55:00.227271 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 50 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, Kershaw Park L971641 H 42.8750049 -77.26656 2015-04-26 14:18:00 obsr606693 S23073695 Traveling P22 EBIRD 9.0 0.322 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296277972 2021-04-01 11:58:54.966271 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 40 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-Potsdam-28 Pleasant St L3346483 P 44.67341 -74.981799 2015-02-10 09:50:00 obsr2762365 S21783292 Stationary P21 EBIRD 42.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303036600 2021-03-30 19:25:27.212017 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus N 2 United States US New York US-NY Richmond US-NY-085 30.0 Cameron Lake L1441085 H 40.6004365 -74.0804102 2015-03-14 07:55:00 obsr1893950 S22343525 Traveling P22 EBIRD 10.0 0.322 2.0 1 G1178976 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295482956 2018-08-04 16:55:48 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail East Woods L2372368 P 42.210721 -76.837918 2015-02-07 11:33:00 obsr1587816 S21720763 Traveling P22 EBIRD 88.0 1.448 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318268876 2021-11-09 19:02:27.638861 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-05-10 08:30:00 obsr2103727 S23365490 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135435 2021-03-26 07:56:20.588749 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum N 8 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-29 16:00:00 obsr2218212 S23589166 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301514943 2018-08-04 16:58:55 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Cayuga US-NY-011 13.0 Island Park L1317417 H 42.9032503 -76.5416498 2015-03-07 12:15:00 obsr324569 S22218433 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316478567 2021-04-01 10:47:08.851048 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Broome US-NY-007 28.0 Vick's House L1532231 P 42.2154158 -75.8717773 2015-05-06 08:30:00 obsr1826325 S23265176 Traveling P22 EBIRD 120.0 2.414 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315646794 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 06:00:00 obsr1135516 S23217699 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311008490 2015-04-18 18:10:15 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Rensselaer US-NY-083 13.0 Papscanee Island Nature Preserve L488165 H 42.5762804 -73.7484741 2015-04-18 08:20:00 obsr979921 S22930009 Traveling P22 EBIRD 55.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312774086 2015-04-25 11:53:37 32469 species avibase-3E2D0C9B Yellow-headed Blackbird Xanthocephalus xanthocephalus 4 United States US New York US-NY Franklin US-NY-033 14.0 Lake Colby Railroad Tracks L1509081 H 44.3364468 -74.1524597 2015-04-25 10:24:00 obsr2630526 S23046649 Traveling P22 EBIRD 75.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304350714 2021-03-24 20:33:47.533911 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-03-21 08:20:00 obsr455249 S22446291 Traveling P22 EBIRD 17.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311833901 2021-11-09 22:29:06.963069 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Sullivan US-NY-105 28.0 rubin road L1097851 P 41.6292371 -74.7296906 2015-04-21 11:30:00 obsr444155 S22982907 Traveling P22 EBIRD 15.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308818058 2021-03-26 07:07:10.758746 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 2 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-04-10 08:58:00 obsr1958124 S22781501 Traveling P22 EBIRD 38.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315378741 2021-04-01 11:15:31.646886 32666 species avibase-5110842F Baltimore Oriole Icterus galbula N 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 06:27:00 obsr2519357 S23203074 Traveling P22 EBIRD 320.0 8.047 4.0 1 G1249270 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303261865 2021-03-30 19:07:52.958398 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-15 08:30:00 obsr2363365 S22360794 Traveling P22 EBIRD 210.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307857161 2018-08-04 17:05:40 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 42 United States US New York US-NY Chemung US-NY-015 28.0 Marsh Dam, Erin L3082963 H 42.1742578 -76.6627244 2015-04-05 19:20:00 obsr2430746 S22708813 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288761591 2022-03-06 12:39:33.700954 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N 5 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-01-03 13:52:00 obsr2394424 S21163897 Traveling P22 EBIRD 43.0 0.402 3.0 1 G1094200 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288423938 2021-03-30 19:29:33.633096 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 5 United States US New York US-NY Suffolk US-NY-103 30.0 Laurel Ave Road End L1053205 P 41.0796746 -72.4161673 2015-01-02 09:20:00 obsr2485753 S21136026 Stationary P21 EBIRD 9.0 1.0 1 G1100208 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310896494 2021-04-01 10:51:06.899622 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-04-18 10:35:00 obsr2497657 S22923089 Traveling P22 EBIRD 101.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323727698 2021-03-26 06:29:56.44369 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-28 07:15:00 obsr2449897 S23690132 Traveling P22 EBIRD 90.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298817826 2021-11-09 19:56:57.158358 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Orange US-NY-071 28.0 Orange County Feb 16, 2015, 12:59 PM L3385298 P 41.58843 -74.235743 2015-02-16 13:00:00 obsr2955569 S22009562 Incidental P20 EBIRD 1.0 1 G1155218 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921610 2021-03-26 07:56:20.588749 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-17 09:00:00 obsr2218212 S22173329 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325708156 2015-06-07 23:16:00 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Genesee US-NY-037 13.0 donahue & rose rds L3705229 P 42.9813035 -78.2309475 2015-05-16 09:14:00 obsr393804 S23823308 Traveling P22 EBIRD 46.0 2.575 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311523969 2021-03-26 07:30:35.289997 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-20 08:41:00 obsr1092576 S22961649 Traveling P22 EBIRD 19.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320282670 2015-05-16 19:09:04 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-16 14:15:00 obsr979921 S23478374 Traveling P22 EBIRD 40.0 0.483 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307856069 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-04-05 07:19:00 obsr150415 S22708732 Traveling P22 EBIRD 102.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306907867 2021-03-24 20:33:47.533911 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Tompkins US-NY-109 13.0 Farm Pond Circle L2080608 P 42.5383387 -76.4633042 2015-04-02 07:50:00 obsr596741 S22640379 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320544055 2021-03-26 06:17:19.712573 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Erie US-NY-029 13.0 Knox Farm SP L160588 H 42.7715237 -78.636327 2015-05-17 09:25:00 obsr2852739 S23492058 Traveling P22 EBIRD 117.0 19.312 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315496223 2021-04-01 11:30:42.037277 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:00:00 obsr2852365 S23209470 Traveling P22 EBIRD 360.0 6.437 20.0 1 G1249497 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306145446 2021-04-01 11:15:31.646886 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-29 14:00:00 obsr327318 S22582378 Traveling P22 EBIRD 165.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306386100 2021-03-19 16:44:35.607263 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 7 Female, Adult (2); Male, Adult (5) United States US New York US-NY Monroe US-NY-055 13.0 North Ponds Park L3586927 H 43.2188554 -77.4429465 2015-03-30 18:05:00 obsr302343 S22600681 Traveling P22 EBIRD 35.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312478190 2018-08-04 17:11:57 7127 species avibase-13E9F9B4 American Bittern Botaurus lentiginosus 4 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-04-24 06:08:00 obsr2588479 S23025789 Traveling P22 EBIRD 20.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288895354 2018-08-04 16:52:32 32955 species avibase-41062654 Northern Parula Setophaga americana X United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-03 05:32:00 obsr1615708 S21176762 Stationary P21 EBIRD 7.0 1.0 1 G1094194 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308283835 2021-04-01 11:30:42.037277 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-07 11:00:00 obsr2448505 S22740567 Traveling P22 EBIRD 240.0 4.828 2.0 1 G1209984 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322746376 2021-03-26 06:29:56.44369 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-25 08:02:00 obsr1696616 S23624037 Traveling P22 EBIRD 69.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306984808 2020-05-16 18:07:33 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Otsego US-NY-077 28.0 Betty & Wilbur Davis SP L1637598 H 42.6621211 -74.8337189 2015-04-02 08:30:00 obsr1049575 S22646239 Stationary P21 EBIRD 300.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319281213 2018-08-06 22:29:49 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis 5 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-05-13 07:30:00 obsr2978565 S23422844 Traveling P22 EBIRD 270.0 1.609 10.0 1 G1269120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306090508 2016-05-28 18:15:04 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Monroe US-NY-055 13.0 Martin Rd., N fields and transient pond L1170980 H 43.3450614 -77.8750849 2015-03-29 16:46:00 obsr334398 S22578134 Stationary P21 EBIRD 8.0 1.0 1 G1197123 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320082001 2015-05-16 09:34:12 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 1 United States US New York US-NY Albany US-NY-001 13.0 Pond House L3573738 P 42.6579532 -74.0361866 2015-05-16 07:30:00 obsr1635947 S23468326 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319249518 2021-04-01 11:30:42.037277 18439 species avibase-D97F93CC White-eyed Vireo Vireo griseus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 05:51:00 obsr150865 S23421140 Traveling P22 EBIRD 297.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289011413 2021-04-01 10:47:08.851048 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Broome US-NY-007 28.0 NY, Endicott, 24 Spring St L932555 P 42.1455911 -76.0703123 2015-01-04 08:07:00 obsr1764243 S21185826 Traveling P22 EBIRD 265.0 32.186 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313290193 2021-04-01 11:15:31.646886 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-26 16:59:00 obsr152435 S23077411 Traveling P22 EBIRD 160.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302170705 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-09 16:15:00 obsr2031586 S22269142 Traveling P22 EBIRD 90.0 6.437 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS296770767 2021-03-26 08:09:53.772059 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 2 United States US New York US-NY Rensselaer US-NY-083 13.0 Poestenkill, Home Yard L940921 P 42.6943279 -73.5632408 2015-02-14 07:45:00 obsr1735540 S21828827 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312350486 2021-03-19 16:08:39.161312 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-23 13:36:00 obsr408487 S23016960 Stationary P21 EBIRD 76.0 7.0 1 G1232915 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318197899 2021-04-01 12:32:15.282601 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-10 07:15:00 obsr544268 S23361632 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321953536 2021-03-19 16:27:31.421791 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 50 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-22 10:00:00 obsr1104059 S23577395 Area P23 EBIRD 75.0 121.4057 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS553959711 2021-03-30 19:13:38.458673 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 5 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-21 obsr1829200 S40859991 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290944824 2021-03-30 19:13:38.458673 3543 species avibase-8D3E8871 Chuck-will's-widow Antrostomus carolinensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-11 08:50:00 obsr1534851 S21322453 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311220778 2021-03-24 19:57:24.612804 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-19 08:00:00 obsr2313260 S22942968 Traveling P22 EBIRD 249.0 1.609 10.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320572927 2021-04-01 12:26:53.827486 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Albany US-NY-001 13.0 Stanton Pond L273495 H 42.5094164 -73.9012973 2015-05-16 11:09:00 obsr2512689 S23493625 Stationary P21 EBIRD 24.0 2.0 1 G1276035 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322609984 2021-12-23 15:00:47.137144 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-05-24 18:14:00 obsr730231 S23615566 Traveling P22 EBIRD 36.0 0.08 2.0 1 G1287863 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544738 2019-10-25 15:53:11 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 7 United States US New York US-NY St. Lawrence US-NY-089 13.0 Massena: St. Lawrence River from haversack Road L1869040 P 44.9858859 -74.7495792 2015-01-11 15:11:00 obsr1558090 S21308142 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322855986 2021-04-01 11:15:31.646886 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea N X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 07:29:00 obsr1807494 S23630657 Traveling P22 EBIRD 300.0 3.219 14.0 1 G1289314 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323381321 2021-11-09 18:39:48.558558 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 2 United States US New York US-NY Dutchess US-NY-027 28.0 Ridge Road, Dover Plains, NY L2894192 P 41.698045 -73.6109734 2015-05-26 19:45:00 obsr2175245 S23664885 Traveling P22 EBIRD 75.0 3.219 3.0 1 G1292919 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300349816 2021-04-01 12:45:19.712958 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus N 5 United States US New York US-NY Westchester US-NY-119 30.0 NY - Yonkers - Kimble Ave L2432769 P 40.9168156 -73.8558269 2015-03-01 08:11:00 obsr1348614 S22131973 Traveling P22 EBIRD 19.0 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312636593 2021-11-09 19:56:59.753161 5134 species avibase-E893F98D Clapper Rail Rallus crepitans 1 United States US New York US-NY Orange US-NY-071 28.0 Powerhouse Park L3453708 P 41.1976359 -74.1837162 2015-04-22 17:05:00 obsr2346161 S23037465 Traveling P22 EBIRD 10.0 0.531 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308067411 2021-12-03 21:50:44.732892 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 4 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-04-06 09:57:00 obsr155915 S22723838 Traveling P22 EBIRD 21.0 0.805 2.0 1 G1208446 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313528133 2015-10-04 17:51:37 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Montezuma (NMWMA)--Martens Tract L266868 H 43.0847778 -76.7093333 2015-04-25 12:50:00 obsr534615 S23092502 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317688520 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 11 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:40:00 obsr41879 S23334473 Traveling P22 EBIRD 560.0 15.771 6.0 1 G1259504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319673136 2021-03-24 05:37:45.927792 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-14 11:00:00 obsr319738 S23445376 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS354457519 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-23 14:08:00 obsr2276013 S25925915 Traveling P22 EBIRD 57.0 0.644 3.0 1 G1472365 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310171662 2021-11-09 18:40:19.746769 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--West L3002249 H 41.9197784 -73.6751747 2015-04-15 06:30:00 obsr2862523 S22874041 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309318909 2021-04-01 10:53:25.818871 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 25 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-McGraw-2761–2849 McGraw Marathon Rd L3557306 P 42.543377 -76.030988 2015-04-12 08:05:00 obsr1318356 S22815242 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311093597 2018-08-04 17:10:24 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Warren US-NY-113 14.0 Glen Lake, Warren County Bikeway, Ash Drive L1787301 P 43.3568324 -73.6843188 2015-04-18 16:30:00 obsr258497 S22935522 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316123050 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 07:35:00 obsr1711339 S23244467 Traveling P22 EBIRD 391.0 6.437 16.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311196037 2021-03-24 19:27:13.077399 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-04-18 11:00:00 obsr142874 S22941503 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306402904 2021-03-26 07:30:35.289997 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata 20 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-29 08:25:00 obsr2683910 S22602018 Traveling P22 EBIRD 63.0 0.966 2.0 1 G1198724 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309768403 2015-04-13 15:40:28 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-13 13:26:00 obsr1472872 S22845663 Traveling P22 EBIRD 136.0 7.869 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314406417 2016-09-30 13:29:36 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Nassau US-NY-059 US-NY_872 30.0 Muttontown Preserve L250511 H 40.8315708 -73.5416646 2015-04-30 12:30:00 obsr2505956 S23147122 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311077000 2021-04-24 09:25:32.068828 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 H C2 H Unknown Sex and Age (1); Unknown Sex, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 15:36:00 obsr924076 S22934530 Traveling P22 EBIRD 231.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310117017 2021-03-23 17:18:00.959502 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 8 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-14 14:35:00 obsr2855945 S22870296 Traveling P22 EBIRD 115.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316803437 2021-03-26 07:56:20.588749 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 Female, Unknown Age (1); Male, Unknown Age (3) United States US New York US-NY Nassau US-NY-059 Shorecrest L3582358 P 40.8670413 -73.6517713 2015-05-07 08:00:00 obsr1296638 S23284114 Traveling P22 EBIRD 60.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291650680 2021-04-01 12:32:15.282601 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-01-18 09:00:00 obsr2207991 S21397359 Stationary P21 EBIRD 90.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291770902 2021-03-30 19:13:38.458673 11371 species avibase-75600969 Northern Flicker Colaptes auratus 72 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-18 13:25:00 obsr302343 S21406384 Traveling P22 EBIRD 65.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301678138 2018-08-04 16:59:05 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 8 United States US New York US-NY Herkimer US-NY-043 13.0 Mohawk River at Dyke Road L2592405 P 43.0913154 -75.1577711 2015-03-08 14:15:00 obsr642516 S22230670 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317300603 2021-04-01 11:30:42.037277 5942 species avibase-0A0B8431 Purple Sandpiper Calidris maritima 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-08 08:15:00 obsr1353449 S23311613 Traveling P22 EBIRD 300.0 6.437 3.0 1 G1257992 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320089624 2021-03-23 17:26:08.495143 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 4 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-05-16 09:05:00 obsr670643 S23468685 Traveling P22 EBIRD 49.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301504346 2021-04-01 12:32:15.282601 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-07 09:45:00 obsr1668936 S22217689 Traveling P22 EBIRD 150.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305099686 2021-11-09 22:33:07.565745 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 8 United States US New York US-NY Sullivan US-NY-105 28.0 Neversink River -Woodbourne north to Reservoir L1363573 P 41.7580474 -74.5985842 2015-03-24 09:00:00 obsr662396 S22502891 Traveling P22 EBIRD 30.0 8.047 2.0 1 G1191446 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308015315 2021-11-02 20:32:06.137153 616 species avibase-25C94A8F Greater Scaup Aythya marila 15 Male, Adult (11); Female, Adult (4) United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-04-06 12:30:00 obsr317968 S22720196 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323730534 2018-08-06 22:31:20 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Albany US-NY-001 13.0 century house L3594980 P 42.7707228 -73.7431741 2015-05-29 06:25:00 obsr2507995 S23690301 Traveling P22 EBIRD 50.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293557554 2020-05-02 15:38:26 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Riley Patch - Owasco CE, Cayuga County, New York L367750 P 42.8247115 -76.4062214 2015-01-27 13:03:00 obsr943683 S21567472 Stationary P21 EBIRD 54.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289849105 2021-04-01 10:51:50.668112 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Dam L160699 H 42.0864692 -76.8096739 2015-01-04 14:57:00 obsr1334267 S21251616 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306134318 2015-03-29 19:13:30 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-03-29 14:30:00 obsr87415 S22581511 Traveling P22 EBIRD 45.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296067848 2021-11-15 03:06:58.889978 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-10 08:26:00 obsr1548221 S21766580 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322490049 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 08:30:00 obsr1408339 S23608997 Traveling P22 EBIRD 159.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306716351 2021-11-15 03:06:58.889978 447 species avibase-C235A4D7 Gadwall Mareca strepera 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-01 08:30:00 obsr599682 S22626537 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292082194 2015-01-20 07:45:24 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-01-20 07:39:00 obsr2074043 S21430535 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322356888 2018-08-04 17:30:05 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-23 18:00:00 obsr1043007 S23601411 Traveling P22 EBIRD 135.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305989391 2022-01-01 15:48:16.226995 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Nassau US-NY-059 30.0 428F House Area L1065546 P 40.8524945 -73.4621347 2015-03-29 09:54:00 obsr2423982 S22570895 Traveling P22 EBIRD 43.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306910251 2021-03-26 08:14:57.071052 526 species avibase-56CCA717 Northern Pintail Anas acuta 60 United States US New York US-NY Westchester US-NY-119 30.0 Wilton L963070 P 41.0891766 -73.8526082 2015-03-20 08:15:00 obsr1538953 S22640592 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313979452 2015-04-30 23:26:32 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Essex US-NY-031 14.0 Mountain spring Rd L3599256 P 44.110298 -73.521904 2015-04-28 11:30:00 obsr2420101 S23121131 Traveling P22 EBIRD 200.0 11.265 1.0 1 G1242233 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321033184 2021-03-19 16:27:31.421791 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 1 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-04-21 11:10:00 obsr1104059 S23520530 Area P23 EBIRD 60.0 121.4057 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309368071 2021-04-01 11:30:42.037277 406 species avibase-27B2749A Wood Duck Aix sponsa 20 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-11 17:30:00 obsr2793388 S22818252 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS320746308 2021-04-01 11:30:42.037277 5561 species avibase-E196D6F9 Sandhill Crane Antigone canadensis 2 H C2 H Female, Unknown Age (2) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-17 15:23:00 obsr924076 S23502930 Traveling P22 EBIRD 293.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317196404 2021-03-26 06:07:45.516082 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus N 7 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo -- Center for Global Conservation (CGC) L1147553 P 40.8545266 -73.8786364 2015-05-08 14:00:00 obsr128156 S23305764 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332250242 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-29 14:06:00 obsr564905 S24301960 Traveling P22 EBIRD 109.0 1.127 2.0 1 G1349792 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319564233 2018-08-06 22:29:56 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Chenango US-NY-017 28.0 Home woods L3452888 P 42.3471065 -75.6650519 2015-05-14 11:15:00 obsr1303581 S23439232 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291688604 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 54 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-18 08:50:00 obsr856524 S21399871 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314224620 2021-03-26 07:20:31.408164 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 3 United States US New York US-NY Suffolk US-NY-103 30.0 Stony Brook University L2350778 H 40.9146933 -73.1215687 2015-04-24 06:54:00 obsr758734 S23136165 Traveling P22 EBIRD 46.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294354795 2021-03-30 19:19:56.775388 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake - Butler Rd. L1474117 P 42.8520571 -77.2811504 2015-02-01 11:00:00 obsr983655 S21630384 Traveling P22 EBIRD 20.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305317829 2015-03-25 20:23:32 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-25 14:15:00 obsr979921 S22519755 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294020188 2021-04-01 10:51:06.899622 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis N X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-01-30 16:02:00 obsr2497657 S21604025 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291895058 2015-01-19 22:46:50 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Ontario US-NY-069 13.0 US-NY-Clifton Springs - 42.9743x-77.1138 - Jan 19, 2015, 11:20 AM L3303474 P 42.974259 -77.113779 2015-01-19 11:20:00 obsr1633923 S21415756 Incidental P20 EBIRD 1.0 1 G1116650 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294143058 2015-01-31 13:16:32 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Oswego US-NY-075 13.0 Schroeppel grasslands L380894 P 43.293825 -76.2221146 2015-01-31 13:13:00 obsr979921 S21613685 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306481105 2021-04-01 12:14:19.266649 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Klein Backyard, Northport, NY L1367104 P 40.895424 -73.3472556 2015-03-30 15:00:00 obsr105122 S22608374 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313559528 2022-02-17 14:32:23.002448 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-27 09:30:00 obsr1284279 S23094349 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311769152 2021-03-24 20:58:53.646623 32666 species avibase-5110842F Baltimore Oriole Icterus galbula N X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-19 08:10:00 obsr72341 S22978462 Stationary P21 EBIRD 575.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300838192 2021-11-09 19:56:59.830667 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Orange US-NY-071 28.0 Walden--Lake Osiris Rd L3454418 P 41.575196 -74.1635513 2015-03-01 13:00:00 obsr856524 S22166714 Traveling P22 EBIRD 10.0 0.644 3.0 0 G1634051 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304095649 2021-04-01 12:18:57.910168 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis X United States US New York US-NY Tompkins US-NY-109 13.0 Newman Municipal Golf Course L2158758 H 42.4561318 -76.5052153 2015-03-19 18:20:00 obsr59643 S22426626 Stationary P21 EBIRD 12.0 2.0 1 G1185731 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309972560 2021-04-01 11:47:43.260314 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 75 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 07:00:00 obsr2744341 S22860105 Stationary P21 EBIRD 620.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311954087 2021-03-24 20:33:47.533911 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 4 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-21 09:16:00 obsr2211210 S22990685 Traveling P22 EBIRD 29.0 0.805 2.0 1 G1230733 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322269565 2021-03-19 16:29:59.503892 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum L467369 H 44.0669903 -75.7229233 2015-05-23 07:00:00 obsr724731 S23596396 Traveling P22 EBIRD 330.0 40.234 17.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314063115 2021-04-01 11:15:31.646886 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-29 07:56:00 obsr152435 S23126268 Traveling P22 EBIRD 286.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295752933 2021-03-26 07:20:31.408164 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Suffolk US-NY-103 30.0 45 Leeward Ct L1343060 P 40.936245 -73.0488129 2015-02-08 12:03:00 obsr1711649 S21741521 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303896167 2021-11-09 21:23:47.89824 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 3 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-22 14:30:00 obsr186871 S22411141 Traveling P22 EBIRD 30.0 0.402 26.0 1 G1159547 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322881670 2018-08-06 22:31:09 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Fulton US-NY-035 14.0 East Stoner Lake L3096105 P 43.2269437 -74.516058 2015-05-25 13:30:00 obsr2590001 S23632232 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290554806 2020-09-09 12:39:49 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--West Shore Trail, Visitor's Center to Lakeview Point L2975271 H 43.0804886 -76.2126732 2015-01-11 10:30:00 obsr643238 S21308809 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306082127 2021-04-01 11:30:42.037277 12258 species avibase-11783075 Monk Parakeet Myiopsitta monachus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-29 13:00:00 obsr2793388 S22577485 Traveling P22 EBIRD 100.0 2.414 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291264267 2017-01-13 19:19:32 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3295510 P 43.429016 -75.903778 2015-01-16 11:07:00 obsr1477887 S21366410 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297067999 2021-03-23 16:52:36.900075 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Hortons Beach L142330 P 41.0780487 -72.4511108 2015-02-15 11:34:00 obsr2485753 S21854715 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316310793 2016-09-12 10:37:46 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP L246469 H 42.055 -78.7661111 2015-05-02 10:42:00 obsr2919757 S23256062 Stationary P21 EBIRD 11.0 2.0 1 G1254123 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313438006 2018-08-04 17:11:28 7261 species avibase-86D45B8F Green Heron Butorides virescens 1 United States US New York US-NY Warren US-NY-113 14.0 Rogers Rock Campgound L799286 H 43.7930769 -73.4800172 2015-04-21 10:12:00 obsr2693145 S23087159 Traveling P22 EBIRD 109.0 0.805 2.0 1 G1239067 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294371147 2021-04-01 11:30:42.037277 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-01 09:40:00 obsr822430 S21631578 Traveling P22 EBIRD 185.0 4.023 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307470073 2018-08-04 17:05:21 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Suffolk US-NY-103 30.0 Wading River L3355605 P 40.9550574 -72.8506362 2015-04-04 09:25:00 obsr1954215 S22681668 Traveling P22 EBIRD 20.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324478401 2021-03-26 06:52:34.887371 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-04-15 10:00:00 obsr2141910 S23738762 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310417920 2020-01-16 17:00:36 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 32 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-16 09:06:00 obsr1213920 S22890793 Stationary P21 EBIRD 165.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310607528 2021-03-23 17:32:20.03109 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-04-17 08:15:00 obsr2172593 S22904183 Traveling P22 EBIRD 61.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302928937 2021-11-09 21:50:48.44865 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-13 17:45:00 obsr1482758 S22334766 Traveling P22 EBIRD 60.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323226523 2021-03-26 06:09:25.361188 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-05-26 19:15:00 obsr646558 S23654667 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311019771 2018-08-04 17:09:38 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 6 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-18 08:00:00 obsr998593 S22930697 Stationary P21 EBIRD 180.0 10.0 1 G1224864 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305633270 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Harold Moore Park L1464971 H 42.099743 -76.0129688 2015-03-27 16:05:00 obsr800690 S22544218 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316733888 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 17:35:00 obsr2796494 S23280067 Traveling P22 EBIRD 120.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321441476 2021-04-01 10:55:39.308231 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 4 United States US New York US-NY Erie US-NY-029 13.0 Delaware Park--Rumsey Woods L1348448 H 42.9307931 -78.8698229 2015-05-06 08:45:00 obsr2155111 S23545818 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301853606 2021-03-24 19:24:40.212356 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-03-08 09:30:00 obsr479109 S22245529 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309935330 2015-04-14 09:13:09 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Fulton US-NY-035 14.0 HOME L2580910 P 43.1207486 -74.5033795 2015-04-13 15:00:00 obsr117560 S22857462 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311970027 2018-08-04 17:11:31 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-New Haven- Kibby Rd - Home (Private) L5185742 P 43.449899 -76.30402 2015-04-21 17:32:00 obsr2945658 S22991644 Traveling P22 EBIRD 153.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323628693 2021-03-30 19:07:52.958398 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-28 07:30:00 obsr187432 S23681788 Traveling P22 EBIRD 155.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306086892 2021-03-30 19:07:52.958398 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-29 13:30:00 obsr1407710 S22577846 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1196641 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299537099 2021-04-01 10:51:06.899622 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 12 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-02-22 09:02:00 obsr1133450 S22067692 Stationary P21 EBIRD 132.0 7.0 1 G1158017 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309673176 2021-03-26 06:19:47.07548 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Essex US-NY-031 13.0 Ticonderoga, open areas L2501405 H 43.8675281 -73.4258312 2015-04-11 11:14:00 obsr2420101 S22838689 Traveling P22 EBIRD 24.0 8.047 28.0 1 G1217881 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323330614 2018-08-04 17:30:27 337 species avibase-694C127A Mute Swan Cygnus olor 6 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-27 08:55:00 obsr2512689 S23661671 Stationary P21 EBIRD 35.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315786872 2015-05-04 15:36:58 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 S C2 S United States US New York US-NY Columbia US-NY-021 14.0 Drowned Lands Swamp Conservation Area L2704928 H 42.0536902 -73.5669422 2015-05-02 18:15:00 obsr798742 S23225285 Traveling P22 EBIRD 45.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292168157 2021-03-19 16:44:35.607263 7318 species avibase-C6772490 Yellow-crowned Night-Heron Nyctanassa violacea N 56 United States US New York US-NY Monroe US-NY-055 13.0 Lehigh Valley Trail-East River Rd to Genesee River L2939807 P 42.987258 -77.7015352 2015-01-20 13:45:00 obsr2504709 S21437439 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294553605 2015-02-02 11:20:17 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Onondaga US-NY-067 13.0 NY--Onondaga County road birds L281417 P 43.1193275 -76.3037775 2015-01-29 10:00:00 obsr1167884 S21646109 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304007544 2021-11-09 19:58:19.554592 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 200 United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region--Pumpkin Swamp Rd. L3557702 H 41.3420216 -74.3813699 2015-03-15 09:03:00 obsr2343626 S22419528 Traveling P22 EBIRD 66.0 3.219 2.0 1 G1184997 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298769431 2021-04-26 04:57:02.963704 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-21 11:00:00 obsr2499879 S22005581 Traveling P22 EBIRD 120.0 2.414 2.0 1 G1155796 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293860942 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-01-29 09:45:00 obsr247620 S21591653 Traveling P22 EBIRD 225.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291287084 2021-11-09 19:56:26.25442 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 4 United States US New York US-NY Orange US-NY-071 28.0 Harrison Pond L3170020 P 41.4990639 -74.0436029 2015-01-16 13:30:00 obsr1665312 S21368394 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294873074 2021-04-01 12:32:15.282601 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 20 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-04 11:43:00 obsr2906952 S21672155 Traveling P22 EBIRD 56.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310023733 2018-08-04 17:09:10 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Orleans US-NY-073 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Schoolhouse Marsh Overlook L153402 H 43.1460569 -78.3751774 2015-04-14 15:52:00 obsr2588479 S22863591 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314482056 2021-03-26 06:58:34.561206 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-04-30 09:55:00 obsr2588479 S23152218 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315461394 2015-05-03 19:03:57 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Port Crane-202-220 Monkey Run Rd L1846698 P 42.216739 -75.754681 2015-05-03 16:24:00 obsr1472872 S23207450 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310168786 2017-09-09 13:29:46 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 1 Male, Adult (1) United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail, Sherwood Pltform base - West Trail (0.137km) L1369671 P 42.4793682 -76.4546071 2015-04-15 08:50:00 obsr2307843 S22873845 Traveling P22 EBIRD 10.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312083195 2019-07-23 17:28:26 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Suffolk US-NY-103 US-NY_847 David Weld Preserve L498539 H 40.9062922 -73.2089183 2015-04-22 08:26:00 obsr1107696 S22998972 Traveling P22 EBIRD 74.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306808738 2021-03-30 19:43:32.881136 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 3 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-04-01 13:35:00 obsr2255732 S22633117 Traveling P22 EBIRD 100.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309644211 2021-11-09 21:48:00.131772 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Ulster US-NY-111 13.0 Franny Reese SP L2657553 H 41.7044358 -73.9565511 2015-04-12 12:15:00 obsr1588136 S22836098 Traveling P22 EBIRD 90.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290621278 2021-04-01 11:23:42.170869 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Madison US-NY-053 28.0 US-NY-New Woodstock-2949 E Rd L3287542 P 42.860858 -75.854134 2015-01-12 09:00:00 obsr2172593 S21313846 Stationary P21 EBIRD 18.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311000565 2021-03-19 16:54:27.713469 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Montgomery US-NY-057 13.0 West Ames Rd., horse farm L1208609 H 42.8466304 -74.6416926 2015-04-18 09:56:00 obsr119187 S22929517 Traveling P22 EBIRD 108.0 2.414 3.0 1 G1224394 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323512470 2018-08-04 17:30:30 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 US-NY-Oakfield-5829-5845 Co Rd 23 L3679174 P 43.122911 -78.324924 2015-05-28 08:08:00 obsr2588479 S23674029 Stationary P21 EBIRD 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332421493 2021-12-24 11:02:14.483178 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-16 14:26:00 obsr334398 S24314064 Traveling P22 EBIRD 131.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307851745 2022-02-17 14:32:23.002448 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-05 14:00:00 obsr2448957 S22708463 Traveling P22 EBIRD 300.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS925734079 2021-04-01 11:30:42.037277 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 obsr1012618 S69259633 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315631251 2021-12-24 11:02:14.483178 20829 species avibase-B9B272F4 Common Raven Corvus corax N 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-03 14:45:00 obsr2289693 S23216765 Traveling P22 EBIRD 75.0 1.609 2.0 1 G1250682 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315316611 2021-03-26 06:21:54.883933 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 US-NY - 40.6642x-73.9692 - May 3, 2015, 1:13 PM L3609771 P 40.664248 -73.969162 2015-05-03 13:13:00 obsr2005486 S23199827 Traveling P22 EBIRD 22.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316584006 2021-11-15 03:06:58.889978 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-06 08:00:00 obsr423515 S23271560 Traveling P22 EBIRD 150.0 3.219 22.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319779372 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-15 05:13:00 obsr1189028 S23451699 Traveling P22 EBIRD 193.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298345666 2021-04-01 11:43:48.927316 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 24 United States US New York US-NY Ontario US-NY-069 13.0 Finger Lakes Community College (Ontario Co.) L661673 H 42.8692335 -77.2442722 2015-02-18 09:25:00 obsr528918 S21968699 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304120873 2021-03-30 19:39:10.250398 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 15 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-03-13 09:00:00 obsr2331937 S22428526 Traveling P22 EBIRD 90.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS327326326 2015-06-29 08:46:33 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis X United States US New York US-NY Queens US-NY-081 30.0 Baisley Pond Park L1058047 H 40.6766674 -73.7854242 2015-01-04 obsr39610 S23939457 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315703132 2018-08-04 17:14:41 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-04 07:30:00 obsr2843748 S23220713 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316470897 2021-03-30 19:07:52.958398 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-06 08:25:00 obsr1516787 S23264774 Traveling P22 EBIRD 140.0 3.058 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323722985 2021-03-24 20:58:53.646623 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-28 09:00:00 obsr72341 S23689838 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316452834 2021-03-19 16:43:17.120646 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Marsh Mill Road L1178579 P 43.1182772 -75.9305906 2015-05-06 09:15:00 obsr2087436 S23263847 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309532414 2021-04-01 12:18:57.910168 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 150 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-10 15:10:00 obsr1042912 S22828625 Stationary P21 EBIRD 55.0 3.0 1 G1216885 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289849132 2021-03-24 19:27:13.077399 32974 species avibase-4168AF09 Blackburnian Warbler Setophaga fusca 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-01-04 09:13:00 obsr1334267 S21251622 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293263602 2021-03-31 04:01:01.671742 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 20 United States US New York US-NY Jefferson US-NY-045 US-NY_805 Point Peninsula Bird Conservation Area L1367385 H 43.9953255 -76.2449646 2015-01-25 15:25:00 obsr193855 S21543773 Traveling P22 EBIRD 105.0 9.656 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312249546 2017-05-11 09:45:38 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Owen's platform boardwalk (0.03km) L301741 P 42.4810062 -76.4511417 2015-04-23 07:49:00 obsr2307843 S23010309 Traveling P22 EBIRD 5.0 0.02 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293212110 2015-01-25 18:25:46 337 species avibase-694C127A Mute Swan Cygnus olor 3 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-01-25 08:34:00 obsr1708031 S21539906 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300553352 2021-11-09 22:45:30.031526 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 61 United States US New York US-NY Sullivan US-NY-105 28.0 Fauble Road L3359894 P 41.7976753 -74.9381458 2015-03-02 13:30:00 obsr444155 S22145765 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318344157 2016-09-30 13:29:36 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Nassau US-NY-059 US-NY_872 30.0 Muttontown Preserve L250511 H 40.8315708 -73.5416646 2015-05-10 10:30:00 obsr2635084 S23369538 Traveling P22 EBIRD 120.0 2.414 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299542295 2021-11-09 22:04:47.967972 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 30 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-22 15:05:00 obsr2343626 S22068095 Traveling P22 EBIRD 45.0 1.609 26.0 1 G1159576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321383367 2021-04-01 11:30:42.037277 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park, ramble L3639243 P 40.77772 -73.9687 2015-05-17 08:17:00 obsr363953 S23541888 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300951972 2021-03-26 07:07:10.758746 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-03-04 16:55:00 obsr1958124 S22175569 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304297713 2015-03-20 21:20:06 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Herkimer US-NY-043 13.0 Saltsman Road L677810 P 43.0091035 -74.7420502 2015-03-20 17:38:00 obsr1000124 S22442496 Traveling P22 EBIRD 21.0 1.448 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312078498 2021-04-01 11:15:31.646886 657 species avibase-B7B1A5DD Black Scoter Melanitta americana N 40 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-22 07:55:00 obsr1516787 S22998674 Traveling P22 EBIRD 210.0 4.41 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297561924 2021-04-01 12:32:15.282601 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 25 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-16 11:35:00 obsr2793388 S21899130 Traveling P22 EBIRD 55.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315007026 2021-03-30 12:05:58.533651 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-29 14:00:00 obsr2182516 S23182853 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303274944 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-15 10:42:00 obsr1711339 S22361852 Traveling P22 EBIRD 55.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290370655 2015-01-11 11:13:48 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 1 United States US New York US-NY Albany US-NY-001 13.0 US-NY-Selkirk-Rupert Rd L3284385 P 42.539554 -73.854804 2015-01-11 10:11:00 obsr2214649 S21294095 Traveling P22 EBIRD 4.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316973221 2021-11-09 21:57:48.700199 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Ulster US-NY-111 28.0 Uncle John's Place L3620611 P 41.7610477 -74.3052645 2015-03-15 08:00:00 obsr2391099 S23293498 Traveling P22 EBIRD 420.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317350456 2021-09-19 18:57:52.903665 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY New York US-NY-061 30.0 Morningside Park, Manhattan L1799559 H 40.8067376 -73.9580993 2015-05-07 08:30:00 obsr1706920 S23314427 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300922218 2021-04-01 12:32:15.282601 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos N 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-21 09:00:00 obsr2218212 S22173360 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302716730 2022-02-17 14:32:23.002448 11494 species avibase-20C2214E American Kestrel Falco sparverius 20 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-12 17:50:00 obsr454647 S22318446 Traveling P22 EBIRD 90.0 0.805 3.0 1 G1178449 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291615690 2021-11-09 19:51:09.255083 592 species avibase-3072CC16 Redhead Aythya americana 50 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-01-17 14:12:00 obsr1502560 S21394361 Traveling P22 EBIRD 50.0 0.402 1.0 1 G1112198 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314405782 2021-04-01 11:30:42.037277 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 15:25:00 obsr2793388 S23147082 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305849380 2015-03-28 17:18:32 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 60 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-03-28 07:30:00 obsr1893950 S22560361 Stationary P21 EBIRD 10.0 2.0 1 G1195302 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313829461 2015-04-28 15:59:46 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY Columbia US-NY-021 13.0 Lindenwald Wayside Trail L3597922 P 42.3699147 -73.7040675 2015-04-28 10:00:00 obsr349211 S23111636 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298819020 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-02-21 13:00:00 obsr1536880 S22009682 Traveling P22 EBIRD 45.0 0.805 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304353014 2015-03-21 10:05:25 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Westchester US-NY-119 28.0 Annsville Creek L450455 H 41.2966388 -73.9341903 2015-03-20 17:00:00 obsr237150 S22446483 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317654210 2021-04-01 11:30:42.037277 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L2020281 P 40.783661 -73.963995 2015-05-09 06:30:00 obsr2436774 S23332627 Traveling P22 EBIRD 330.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304695254 2021-11-09 18:45:26.632097 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Dutchess US-NY-027 13.0 Creek at Route 376 & Van Voorhis Drive, Wappingers Falls, NY L3506980 P 41.6226299 -73.8709953 2015-03-22 14:12:00 obsr2175245 S22471760 Stationary P21 EBIRD 7.0 3.0 1 G1188686 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300246023 2021-03-26 07:07:10.758746 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-01 12:22:00 obsr1958124 S22123726 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312083320 2021-03-23 17:00:13.087107 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-22 12:48:00 obsr2001485 S22998979 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323269831 2021-04-01 11:15:31.646886 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 4 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-26 17:41:00 obsr187432 S23657379 Traveling P22 EBIRD 162.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303793253 2015-03-17 22:25:40 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-02-28 06:20:00 obsr2694889 S22403015 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295465998 2021-03-26 07:07:10.758746 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus X United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-07 09:30:00 obsr1152226 S21719405 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310496902 2021-04-01 10:44:41.995232 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Allegany US-NY-003 28.0 (Private) Behind house L2478297 P 42.2231272 -78.2660329 2015-04-16 16:08:00 obsr955789 S22896574 Traveling P22 EBIRD 96.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323132923 2021-03-26 06:20:10.658048 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-26 11:45:00 obsr1104059 S23648553 Area P23 EBIRD 80.0 121.4057 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299942086 2021-11-09 22:50:40.464902 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Sullivan US-NY-105 28.0 Westbrookville Rt 209 L761533 P 41.5055081 -74.5591342 2015-02-25 10:00:00 obsr1706920 S22098804 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320314165 2017-12-20 02:29:11 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Marsh Mill Road, wetlands L925329 H 43.1175018 -75.9310198 2015-05-16 09:25:00 obsr1167884 S23480047 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292089276 2017-04-05 16:49:11 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-01-20 07:11:00 obsr1165633 S21431078 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307937723 2015-09-17 17:22:25 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Jefferson US-NY-045 13.0 Kelsey Creek, Watertown L273304 H 43.9906455 -75.9170911 2015-04-03 08:30:00 obsr585290 S22714886 Traveling P22 EBIRD 480.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299554887 2021-04-01 11:54:40.172593 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 9 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-25 15:05:00 obsr1958124 S22069123 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319791231 2021-04-01 11:15:31.646886 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-15 06:45:00 obsr41879 S23452374 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297981448 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-13 16:00:00 obsr2598985 S21937645 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298054712 2021-04-01 11:54:40.172593 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-17 15:40:00 obsr1958124 S21943964 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305234536 2021-04-01 11:54:40.172593 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 6 United States US New York US-NY Richmond US-NY-085 30.0 Tottenville High School L884731 P 40.5282185 -74.1924763 2015-03-25 13:00:00 obsr1958124 S22513217 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS360465332 2021-03-19 16:02:45.308962 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-16 08:00:00 obsr246469 S26406575 Stationary P21 EBIRD 240.0 18.0 1 G1508800 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301780026 2015-03-08 16:00:07 406 species avibase-27B2749A Wood Duck Aix sponsa 10 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L3466449 P 40.95359 -73.70195 2015-03-08 12:17:00 obsr1348614 S22239942 Traveling P22 EBIRD 66.0 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310597771 2021-03-23 17:23:45.772216 1785 species avibase-9A8E55D0 Pied-billed Grebe Podilymbus podiceps 2 United States US New York US-NY Livingston US-NY-051 13.0 Twin Cedars Environmental Area (DEC pond), Avon L800055 H 42.9002384 -77.6689625 2015-04-17 07:45:00 obsr1060479 S22903512 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311125147 2021-05-01 05:40:50.213405 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 18:30:00 obsr2796494 S22937389 Traveling P22 EBIRD 120.0 0.805 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1062743223 2021-04-01 10:51:06.899622 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 7 United States US New York US-NY Chautauqua US-NY-013 US-NY_857 13.0 Ripley (Double DAB Riding Stable) L13439163 P 42.2497997 -79.6761163 2015-05-10 10:00:00 obsr2155450 S80161308 Traveling P22 EBIRD 90.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299499318 2021-04-01 11:54:40.172593 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 110 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-02-24 12:15:00 obsr1032565 S22064761 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308358085 2022-02-17 14:32:23.002448 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator N 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-07 14:00:00 obsr2448957 S22746171 Traveling P22 EBIRD 210.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315012651 2015-05-02 17:01:51 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 3 United States US New York US-NY Erie US-NY-029 13.0 Peanut Line path - Amherst L3607448 P 43.0197054 -78.7178779 2015-04-30 16:30:00 obsr1381746 S23183161 Traveling P22 EBIRD 60.0 3.219 2.0 1 G1247480 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313504985 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis N 2 United States US New York US-NY Nassau US-NY-059 Morgan Memorial Park L1440142 H 40.8649583 -73.6531285 2015-04-27 11:15:00 obsr1296638 S23091178 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315808472 2020-07-27 15:41:41 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Columbia US-NY-021 14.0 Harlem Valley Rail Trail--Copake Falls to Under Mountain Rd. L5803911 H 42.0757413 -73.5303798 2015-05-03 08:30:00 obsr798742 S23226382 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316051996 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 07:00:00 obsr2706811 S23240629 Traveling P22 EBIRD 120.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291241202 2015-01-16 07:23:56 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-01-15 obsr1591201 S21364336 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312859541 2021-03-19 16:19:20.977326 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon N X United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-25 12:00:00 obsr2537615 S23051616 Traveling P22 EBIRD 60.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309315183 2021-03-19 16:14:11.035882 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor22 L3513964 H 42.5801264 -76.092219 2015-04-12 08:43:00 obsr1318356 S22815006 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301674258 2021-04-01 10:47:08.851048 20829 species avibase-B9B272F4 Common Raven Corvus corax X United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-07 14:45:00 obsr1044068 S22230361 Traveling P22 EBIRD 45.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310250868 2021-04-01 11:15:31.646886 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Kings US-NY-047 Shore Road Park L616218 H 40.6220738 -74.0406629 2015-04-15 09:00:00 obsr2078092 S22879229 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289711976 2019-10-18 07:40:54 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Albany US-NY-001 28.0 Huyck Preserve--Lake Myosotis L304714 H 42.5220704 -74.1483993 2015-01-03 08:30:00 obsr1188777 S21240370 Traveling P22 EBIRD 170.0 7.081 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307884944 2021-03-19 16:10:30.527219 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 160 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Holiday Inn L160744 H 42.08827 -76.79419 2015-04-05 15:37:00 obsr1587816 S22710941 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311046702 2021-04-01 11:54:40.172593 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Richmond US-NY-085 30.0 SI-Goethals Bridge P/Bridge Creek L272491 P 40.6305777 -74.1856123 2015-04-18 08:13:00 obsr1032565 S22932421 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310402731 2021-03-23 17:32:20.03109 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-16 06:25:00 obsr2224244 S22889779 Traveling P22 EBIRD 200.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319932644 2021-11-09 18:47:29.006727 26890 species avibase-94A44032 European Starling Sturnus vulgaris 25 United States US New York US-NY Dutchess US-NY-027 28.0 Crown Maple farm L3645570 P 41.70082 -73.61783 2015-05-15 06:06:00 obsr444273 S23459894 Traveling P22 EBIRD 315.0 5.311 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288327873 2018-08-04 16:52:24 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 1 United States US New York US-NY Suffolk US-NY-103 30.0 Setauket Harbor L3250300 P 40.948853 -73.1009245 2015-01-01 13:40:00 obsr2448785 S21128644 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304101229 2021-03-26 07:20:31.408164 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-19 17:00:00 obsr1489009 S22427041 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319873363 2021-04-01 11:15:31.646886 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-15 10:58:00 obsr152435 S23456719 Traveling P22 EBIRD 220.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290503604 2021-11-09 22:38:26.937409 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Sullivan US-NY-105 28.0 Rio Reservoir and Plank Rd. L1921926 H 41.5101199 -74.7559547 2015-01-11 16:00:00 obsr1015200 S21304955 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324171711 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis N 3 United States US New York US-NY Monroe US-NY-055 13.0 near pond at Mill Landing L2103068 P 43.235551 -77.702571 2015-05-30 08:40:00 obsr1721347 S23718985 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323441994 2021-11-09 18:39:48.558558 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Dutchess US-NY-027 28.0 Ridge Road, Dover Plains, NY L2894192 P 41.698045 -73.6109734 2015-05-26 19:45:00 obsr1442681 S23669329 Traveling P22 EBIRD 75.0 3.219 3.0 1 G1292919 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301004580 2021-03-22 09:17:32.016297 27616 species avibase-D77E4B41 American Robin Turdus migratorius 12 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-03-05 06:45:00 obsr666964 S22179406 Stationary P21 EBIRD 30.0 2.0 1 G1167077 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291192588 2021-03-26 08:14:57.071052 11371 species avibase-75600969 Northern Flicker Colaptes auratus N 2 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-01-15 12:20:00 obsr1932005 S21360306 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309553558 2021-03-30 19:29:33.633096 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 51 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-12 09:55:00 obsr2633969 S22830060 Traveling P22 EBIRD 95.0 2.0 3.0 1 G1217074 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311398257 2021-04-01 11:24:19.637193 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] N 5 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-19 08:00:00 obsr2289693 S22953887 Stationary P21 EBIRD 60.0 2.0 1 G1227056 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306400598 2021-03-30 19:03:28.117389 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 20 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.9339927 -76.7278183 2015-03-29 14:21:00 obsr2683910 S22601838 Traveling P22 EBIRD 28.0 2.414 2.0 1 G1198688 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289134961 2018-08-04 16:52:44 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-04 12:17:00 obsr59643 S21195588 Stationary P21 EBIRD 10.0 6.0 1 G1095941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314622314 2021-03-26 07:46:52.994574 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-01 10:15:00 obsr2590001 S23160817 Traveling P22 EBIRD 30.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323202792 2021-12-24 11:02:14.483178 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-26 10:20:00 obsr1534851 S23653111 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321498321 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Monroe US-NY-055 13.0 Tinker Nature Park L946685 H 43.0670694 -77.57339 2015-05-20 07:40:00 obsr1534851 S23548938 Traveling P22 EBIRD 60.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303709418 2021-04-01 11:43:48.927316 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 5 United States US New York US-NY Ontario US-NY-069 13.0 Shortsville Rd. X Payne Rd., Farmington L800361 H 42.9615545 -77.3038334 2015-03-16 07:45:00 obsr1243175 S22396246 Traveling P22 EBIRD 7.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300427344 2021-04-26 04:57:02.963704 30494 species avibase-240E3390 House Sparrow Passer domesticus 283 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-01 06:08:00 obsr924076 S22136932 Traveling P22 EBIRD 319.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312292923 2021-04-01 11:13:31.816805 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 3 United States US New York US-NY Hamilton US-NY-041 14.0 Algonquin Drive - Co Rt. 5 L874662 P 43.4015944 -74.294765 2015-04-22 12:08:00 obsr1000124 S23013047 Traveling P22 EBIRD 44.0 4.023 4.0 1 G1232659 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306541680 2021-04-01 10:47:08.851048 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 15 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-03-31 11:40:00 obsr1830659 S22612880 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294799459 2015-02-03 19:47:17 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 7 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary--HQ L92442 H 40.968598 -73.6647309 2015-02-03 08:20:00 obsr986025 S21666136 Traveling P22 EBIRD 15.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307032098 2021-03-23 16:48:08.60516 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 8 United States US New York US-NY Seneca US-NY-099 13.0 US-NY-Seneca Falls-2168-2178 Lake Rd L2713634 P 42.920063 -76.749082 2015-04-02 18:34:00 obsr1092576 S22650015 Stationary P21 EBIRD 12.0 3.0 1 G1202713 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322019910 2018-08-06 22:30:50 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-22 11:00:00 obsr1472872 S23581945 Traveling P22 EBIRD 210.0 9.656 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317526899 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 Male, Adult (4); Female, Adult (2) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-08 07:20:00 obsr2449897 S23325568 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310042741 2021-03-19 16:27:31.421791 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Genesee US-NY-037 13.0 Lehigh Rd,Batavia L3521553 P 42.9809909 -78.1752831 2015-04-12 09:58:00 obsr393804 S22865016 Traveling P22 EBIRD 26.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311153614 2015-12-12 17:07:04 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Cortland US-NY-023 28.0 Kennedy SF--Baldwin Rd (42.487, -76.142) L3574639 P 42.487358 -76.141908 2015-04-19 07:38:00 obsr1696616 S22938893 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307126390 2021-11-09 18:56:49.988387 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 10 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies L428335 H 41.7861111 -73.7397222 2015-03-28 09:00:00 obsr1835267 S22657166 Traveling P22 EBIRD 150.0 3.219 9.0 1 G1202408 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316185016 2021-04-01 12:32:15.282601 30494 species avibase-240E3390 House Sparrow Passer domesticus N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-05 06:30:00 obsr916370 S23247849 Traveling P22 EBIRD 140.0 4.989 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303755169 2018-08-04 17:01:43 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 100 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-03-17 17:00:00 obsr544268 S22399847 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303701234 2021-03-24 21:10:11.310781 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Saratoga US-NY-091 13.0 Betar Byway L1528567 H 43.2984602 -73.6411847 2015-03-17 10:04:00 obsr1222746 S22395647 Traveling P22 EBIRD 33.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295763045 2021-11-15 03:06:58.889978 32955 species avibase-41062654 Northern Parula Setophaga americana 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-08 10:30:00 obsr1033228 S21742225 Stationary P21 EBIRD_NJ 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304233602 2021-03-30 19:29:33.633096 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 25 United States US New York US-NY Suffolk US-NY-103 Mt. Sinai Harbor L834919 H 40.9604561 -73.0357361 2015-03-20 07:39:00 obsr758734 S22437481 Traveling P22 EBIRD 11.0 0.1 2.0 1 G1188796 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294998977 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-02-05 07:49:00 obsr334398 S21682512 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303883018 2020-05-16 18:11:44 337 species avibase-694C127A Mute Swan Cygnus olor 5 United States US New York US-NY Otsego US-NY-077 28.0 207 Stoller Hill Rd L3359197 P 42.7034192 -75.0299799 2015-03-17 08:15:00 obsr131845 S22410154 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301414264 2021-03-23 16:39:03.255227 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-03-07 07:01:00 obsr1893950 S22211497 Stationary P21 EBIRD 1.0 2.0 1 G1169030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1348025829 2022-02-20 21:19:37.443452 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 North Woods L3607367 P 40.7954068 -73.9559805 2015-05-02 09:00:00 obsr2807282 S103313229 Traveling P22 EBIRD 165.0 1.609 2.0 1 G7909912 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316079504 2021-04-01 11:30:42.037277 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 33 United States US New York US-NY New York US-NY-061 30.0 Sutton Place Area L1058530 P 40.7536129 -73.9636892 2015-05-05 05:49:00 obsr259298 S23242157 Traveling P22 EBIRD 186.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308014953 2021-04-01 11:54:40.172593 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 1 United States US New York US-NY Richmond US-NY-085 US-NY_818 30.0 Goethals Bridge Pond--Goethals Homes L884458 H 40.6283428 -74.1779176 2015-04-06 13:34:00 obsr1958124 S22720174 Traveling P22 EBIRD 8.0 0.322 2.0 1 G1208438 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305827699 2015-03-28 15:55:20 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Richmond US-NY-085 30.0 40.5718x-74.1900 - Mar 28, 2015, 9:18 AM L3520651 P 40.571784 -74.189988 2015-03-28 09:18:00 obsr1958124 S22558827 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304355563 2021-04-01 11:24:19.637193 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 32 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-03-21 09:37:00 obsr1696616 S22446676 Traveling P22 EBIRD 43.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300761403 2021-04-01 10:52:54.724403 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 48 United States US New York US-NY Columbia US-NY-021 13.0 26A Stuyvesant L3345121 P 42.3893287 -73.7681723 2015-03-03 12:00:00 obsr2766625 S22161024 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320636449 2021-04-01 11:15:31.646886 27311 species avibase-58312873 Varied Thrush Ixoreus naevius 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-17 07:12:00 obsr152435 S23496991 Traveling P22 EBIRD 624.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305778280 2021-04-01 10:53:25.818871 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X 2 United States US New York US-NY Cortland US-NY-023 28.0 Cortland Wastewater Treatment Facility L1903152 H 42.597544 -76.157798 2015-03-28 11:20:00 obsr1655171 S22555426 Stationary P21 EBIRD 16.0 3.0 1 G1197849 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309505234 2021-03-26 06:07:45.516082 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris X United States US New York US-NY Bronx US-NY-005 30.0 Wave Hill L506632 H 40.8978678 -73.9124419 2015-04-12 09:30:00 obsr2796494 S22826810 Traveling P22 EBIRD 130.0 1.207 30.0 1 G1216714 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307379658 2017-08-16 02:23:57 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-04 09:36:00 obsr1764243 S22675389 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292000492 2022-01-20 13:44:29.539827 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Seneca US-NY-099 US-NY_803 13.0 Geneva Lakefront Park, birds over water ONLY (Seneca Co.) L360643 H 42.8659781 -76.9714307 2015-01-19 15:25:00 obsr1655171 S21423742 Stationary P21 EBIRD 34.0 2.0 1 G1116492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312855228 2021-11-09 21:10:28.19189 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 2 United States US New York US-NY Rockland US-NY-087 US-NY_843 28.0 Iona Island L404724 H 41.3033448 -73.9778137 2015-04-25 10:40:00 obsr1121454 S23051391 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305390429 2021-03-23 17:00:13.087107 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 10 United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-03-26 08:30:00 obsr71667 S22525506 Traveling P22 EBIRD 30.0 0.161 9.0 1 G1192880 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310839 2021-03-23 17:18:00.959502 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.8729471 2015-01-16 08:05:00 obsr2837502 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293962244 2021-03-26 08:14:57.071052 303 species avibase-B59E1863 Canada Goose Branta canadensis N 16 United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-01-29 07:30:00 obsr2924527 S21599496 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305797834 2017-08-16 16:55:45 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 10 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Gilgo Beach L499715 H 40.6172753 -73.3947659 2015-03-28 10:45:00 obsr247620 S22556660 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS347742275 2021-11-15 03:06:58.889978 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-16 08:15:00 obsr189780 S25407670 Traveling P22 EBIRD 285.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288671884 2021-03-23 17:39:28.36772 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-01-02 09:00:00 obsr1839967 S21156538 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305715082 2021-04-01 11:24:19.637193 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-03-27 09:40:00 obsr1782363 S22550452 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300928811 2018-08-04 16:58:44 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Quantuck Creek off S Country Rd. L3400763 H 40.8327316 -72.6180303 2015-03-04 15:05:00 obsr1736113 S22173827 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306535092 2021-03-26 07:46:52.994574 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 5 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-03-31 14:00:00 obsr2186523 S22612400 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311178259 2015-04-19 12:29:40 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 7 United States US New York US-NY Oneida US-NY-065 13.0 Preston Hill Rd. South, Vienna L570949 P 43.2824541 -75.7692719 2015-04-19 10:00:00 obsr666964 S22940466 Incidental P20 EBIRD 1.0 1 G1225985 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305091837 2021-03-30 19:07:52.958398 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 64 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek L845821 H 40.5811388 -73.9927912 2015-03-24 14:55:00 obsr1821546 S22502284 Stationary P21 EBIRD 33.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302491232 2021-12-19 10:32:19.574298 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 7 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-03-10 14:40:00 obsr1167884 S22300795 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315563650 2018-08-04 17:14:37 292 species avibase-60214D49 Cackling Goose Branta hutchinsii 20 United States US New York US-NY Essex US-NY-031 13.0 Bobcat Trail L3611406 P 44.2479351 -73.4319305 2015-05-03 14:45:00 obsr822321 S23212990 Traveling P22 EBIRD 80.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296142988 2021-03-23 16:39:03.255227 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-02-11 15:35:00 obsr1958124 S21772377 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761780 2021-03-26 07:56:20.588749 341 species avibase-B86C504C Trumpeter Swan Cygnus buccinator 25 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-25 09:00:00 obsr2218212 S22629536 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322418380 2021-08-17 17:05:39.549418 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-24 04:44:00 obsr1696616 S23605088 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305978391 2021-03-26 07:43:12.52294 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-03-28 08:10:00 obsr1721609 S22570054 Stationary P21 EBIRD 128.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311295185 2021-03-30 19:43:08.006315 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Schuyler US-NY-097 13.0 Seneca Lake, Lake St. L271672 H 42.53521 -76.88287 2015-04-19 08:37:00 obsr2436517 S22947533 Stationary P21 EBIRD 22.0 1.0 1 G1226344 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313088115 2021-03-23 17:00:13.087107 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Podell Boardwalk (0.08 km) L1075029 P 42.4782515 -76.4511698 2015-04-26 08:52:00 obsr2307843 S23065441 Traveling P22 EBIRD 5.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313789134 2022-03-05 22:03:50.715584 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-28 08:30:00 obsr444155 S23109044 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS771256440 2021-11-02 20:32:06.137153 6408 spuh avibase-E8FAD0BB Larus sp. Larus sp. 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-04-22 14:15:00 obsr2647637 S57095379 Traveling P22 EBIRD 120.0 3.219 17.0 1 G4253413 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291759746 2021-03-19 16:44:35.607263 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush Dam L1066995 H 42.9928613 -77.6449406 2015-01-17 13:26:00 obsr1828453 S21405489 Stationary P21 EBIRD 23.0 1.0 1 G1112434 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316825616 2021-03-19 16:02:45.308962 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-07 07:35:00 obsr2887137 S23285242 Traveling P22 EBIRD 120.0 1.609 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292000490 2022-01-20 13:44:29.539827 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 50 United States US New York US-NY Seneca US-NY-099 US-NY_803 13.0 Geneva Lakefront Park, birds over water ONLY (Seneca Co.) L360643 H 42.8659781 -76.9714307 2015-01-19 15:25:00 obsr1655171 S21423742 Stationary P21 EBIRD 34.0 2.0 1 G1116492 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306040326 2021-11-09 22:12:17.655802 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 3 United States US New York US-NY Ulster US-NY-111 13.0 Stone Ridge Pond off Mill Dam Rd. L624963 H 41.8618905 -74.1432953 2015-03-29 13:18:00 obsr2214649 S22574398 Stationary P21 EBIRD 22.0 2.0 1 G1196377 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289759164 2021-03-26 07:52:59.845315 26890 species avibase-94A44032 European Starling Sturnus vulgaris 37 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-07 08:40:00 obsr316199 S21244134 Area P23 EBIRD 94.0 2.59 2.0 1 G1100454 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299006493 2021-03-26 07:42:06.558742 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Washington US-NY-115 13.0 Bradley Beach, Ft. Edward L2477571 H 43.266989 -73.5908235 2015-02-22 11:43:00 obsr1222746 S22024729 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300291875 2021-03-26 07:20:31.408164 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Suffolk US-NY-103 30.0 Magnolia Drive and Talbot Lane, Selden, NY L2620004 P 40.8894264 -73.0453113 2015-02-28 15:00:00 obsr2958873 S22127390 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314064947 2015-04-29 13:37:59 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 2 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-04-28 13:15:00 obsr800690 S23126373 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316754577 2021-03-19 16:43:17.120646 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Madison US-NY-053 28.0 Lake Moraine, Colgate University Boat House L2128786 P 42.8524078 -75.5247456 2015-05-06 18:00:00 obsr378453 S23281243 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312894513 2021-03-26 06:12:17.833181 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Dunkirk-5372 Lakeside Blvd Ext L3589998 P 42.451118 -79.410467 2015-04-25 16:36:00 obsr334398 S23053669 Stationary P21 EBIRD 19.0 2.0 1 G1282910 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317038539 2018-08-04 17:15:05 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-07 06:10:00 obsr1778524 S23297293 Traveling P22 EBIRD 180.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300361271 2021-11-09 21:57:19.381437 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Ulster US-NY-111 28.0 Sand Hill Rd L3449606 P 41.6653174 -74.1577628 2015-02-28 13:15:00 obsr1009338 S22132608 Traveling P22 EBIRD 165.0 32.187 3.0 1 G1171286 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319966748 2021-03-26 06:29:56.44369 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-15 08:08:00 obsr2504709 S23461691 Traveling P22 EBIRD 130.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302913687 2021-03-26 06:21:54.883933 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-13 17:20:00 obsr2692140 S22333336 Traveling P22 EBIRD 45.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301656889 2019-07-23 17:27:45 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 6 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-08 11:47:00 obsr620377 S22229095 Traveling P22 EBIRD 87.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321290460 2021-03-26 07:56:20.588749 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-19 14:00:00 obsr916370 S23536336 Traveling P22 EBIRD 130.0 1.77 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305230987 2017-08-31 22:45:04 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Suffolk US-NY-103 Lake Montauk Inlet, west side L1091365 H 41.0764396 -71.9386482 2015-03-22 10:15:00 obsr1927254 S22512953 Traveling P22 EBIRD 15.0 0.161 2.0 1 G1192072 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315512303 2021-11-15 03:06:58.889978 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 07:45:00 obsr2277801 S23210341 Historical P62 EBIRD 630.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308374753 2021-04-01 11:15:31.646886 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-07 11:00:00 obsr2750470 S22747374 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290852046 2019-07-23 17:26:47 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 7 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-B L3288880 P 40.21933 -73.19694 2015-01-11 09:00:00 obsr41879 S21332693 Traveling P22 EBIRD 60.0 15.289 44.0 1 G1108334 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313306608 2021-03-19 16:08:39.161312 456 species avibase-D201EB72 American Wigeon Mareca americana X United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-26 10:30:00 obsr479109 S23078436 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317437010 2015-05-09 09:16:57 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Livingston US-NY-051 13.0 US-NY-PORTAGE, 625 NY-436 L3579171 P 42.574927 -78.013591 2015-05-06 11:21:00 obsr731272 S23320020 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306259434 2018-08-04 17:04:42 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-03-29 14:47:00 obsr2233270 S22591023 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324436955 2021-11-09 18:35:27.846267 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Dutchess US-NY-027 28.0 Old Forge Road L2671919 P 41.65796 -73.52951 2015-05-16 16:14:00 obsr2343626 S23736192 Traveling P22 EBIRD 46.0 1.609 2.0 1 G1298919 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310877644 2021-03-24 19:42:42.07177 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-18 09:51:00 obsr152435 S22921914 Stationary P21 EBIRD 79.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314498102 2021-03-30 19:29:33.633096 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southaven County Park L2117422 H 40.8157861 -72.8972683 2015-04-30 13:00:00 obsr1489009 S23153215 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306940442 2021-03-23 17:00:13.087107 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Tompkins US-NY-109 28.0 Mount Pleasant L99402 H 42.4581378 -76.3845436 2015-04-02 08:59:00 obsr887540 S22642928 Stationary P21 EBIRD 63.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291537954 2015-03-10 04:48:56 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Saratoga US-NY-091 13.0 Flight Lock Rd., Waterford boat launch L3257879 H 42.8074604 -73.7144208 2015-01-17 14:20:00 obsr777630 S21388452 Stationary P21 EBIRD 15.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314019843 2015-04-29 10:44:41 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 5 United States US New York US-NY Albany US-NY-001 13.0 Helderberg Hudson Rail Trail--Slingerlands to Voorheesville L2584243 H 42.6414841 -73.897974 2015-04-29 09:20:00 obsr2321296 S23123706 Traveling P22 EBIRD 84.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289585250 2015-01-06 21:51:55 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Herkimer US-NY-043 13.0 Castle Road - South of Teall Road L900702 P 43.1428317 -74.8889494 2015-01-06 15:49:00 obsr1000124 S21230723 Traveling P22 EBIRD 8.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299713281 2021-03-26 07:30:35.289997 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 150 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-26 10:18:00 obsr1655171 S22081165 Traveling P22 EBIRD 23.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309928057 2015-11-05 11:19:11 580 spuh avibase-BD7161A9 dabbling duck sp. Anatidae sp. (dabbling duck sp.) 1 United States US New York US-NY Tompkins US-NY-109 13.0 105 Eastern Heights Dr., Ithaca L2724192 P 42.425089 -76.455526 2015-04-14 06:15:00 obsr1318356 S22856890 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318744744 2021-11-15 03:06:58.889978 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana N 100 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-11 07:40:00 obsr258560 S23391754 Traveling P22 EBIRD 360.0 8.851 2.0 1 G1266014 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291516638 2015-01-17 18:32:42 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 Male, Adult (1) United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-01-17 13:00:00 obsr2814495 S21386725 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135666 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-03 09:00:00 obsr2218212 S23589173 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310906758 2015-04-18 12:46:42 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-18 11:35:00 obsr1349960 S22923696 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318091710 2021-03-19 16:08:39.161312 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-05-10 11:32:00 obsr2497657 S23356188 Traveling P22 EBIRD 20.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301395695 2021-03-23 16:39:03.255227 5998 species avibase-F5C8516D Wilson's Snipe Gallinago delicata 30 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-03-07 10:07:00 obsr1958124 S22210037 Traveling P22 EBIRD 18.0 0.483 2.0 1 G1169012 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314444668 2021-04-01 11:15:31.646886 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:30:00 obsr2078092 S23149665 Traveling P22 EBIRD 390.0 4.828 30.0 1 G1244636 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322035011 2021-04-01 11:30:42.037277 251 domestic avibase-6835DC6C Graylag Goose (Domestic type) Anser anser (Domestic type) 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-22 09:00:00 obsr2028250 S23582817 Traveling P22 EBIRD 120.0 1.609 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294344080 2021-04-01 11:49:53.573686 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-02-01 11:55:00 obsr2574755 S21629590 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290045004 2021-11-09 19:34:18.590596 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 20 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-01-09 15:20:00 obsr1665312 S21267536 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290272443 2021-04-01 11:42:50.317679 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 10 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-01-10 11:00:00 obsr2812831 S21286309 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312605674 2022-03-05 22:03:50.715584 5948 species avibase-A47B0BD4 Least Sandpiper Calidris minutilla 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-24 17:00:00 obsr2219590 S23035317 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310900683 2015-04-18 12:27:27 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 3 United States US New York US-NY Cortland US-NY-023 28.0 Rte 13 X Gracie Rd L3556400 P 42.5512783 -76.2431055 2015-04-10 18:30:00 obsr2663400 S22923326 Incidental P20 EBIRD 2.0 0 G1224107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290942753 2021-03-24 20:33:47.533911 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-01-14 07:42:00 obsr2377251 S21340112 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300554704 2021-03-23 17:26:08.495143 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 300 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-21 13:00:00 obsr564905 S22145875 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1165032 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308271726 2021-04-01 11:15:31.646886 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-07 09:20:00 obsr263005 S22739711 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290203269 2021-03-23 16:39:03.255227 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-01-10 12:37:00 obsr1958124 S21280363 Traveling P22 EBIRD 25.0 0.644 2.0 1 G1103716 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323628716 2021-03-30 19:07:52.958398 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 12 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-28 07:30:00 obsr187432 S23681788 Traveling P22 EBIRD 155.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316481024 2021-04-01 11:30:42.037277 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 08:30:00 obsr2677000 S23265289 Traveling P22 EBIRD 180.0 2.414 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311895476 2021-03-26 07:07:10.758746 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 10 United States US New York US-NY Richmond US-NY-085 30.0 Willowbrook Park L519640 H 40.6014415 -74.1580582 2015-04-21 12:40:00 obsr1620361 S22986653 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305323354 2021-04-01 11:15:31.646886 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Kings US-NY-047 30.0 Brooklyn College L476967 H 40.6305324 -73.9542532 2015-03-25 13:30:00 obsr2448957 S22520141 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306363690 2021-04-01 11:54:40.172593 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-30 09:57:00 obsr1032565 S22598873 Traveling P22 EBIRD 221.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321684161 2021-03-26 06:39:43.334073 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pool L318103 H 40.7947416 -73.9606707 2015-05-20 12:10:00 obsr1706920 S23560479 Traveling P22 EBIRD 25.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322477148 2015-05-24 11:19:55 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Chenango US-NY-017 28.0 Coventry State For L3668404 P 42.330375 -75.63842 2015-05-24 10:29:00 obsr1042912 S23608275 Traveling P22 EBIRD 49.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306590105 2021-11-15 03:06:58.889978 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-31 12:45:00 obsr1555046 S22616803 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1208366 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319085171 2021-03-30 19:29:33.633096 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 46 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-29 07:24:00 obsr1987335 S23411926 Traveling P22 EBIRD 66.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291889032 2021-03-24 20:23:39.258075 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 Mashomack Preserve L122936 H 41.0562576 -72.2896713 2015-01-19 09:37:00 obsr613775 S21415275 Traveling P22 EBIRD 67.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295426748 2021-04-26 04:57:02.963704 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 50 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-07 14:15:00 obsr1488063 S21716057 Stationary P21 EBIRD 15.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292731264 2021-03-26 07:20:31.408164 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-01-13 07:00:00 obsr1592950 S21501937 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310326537 2019-07-23 17:28:19 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 23 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip G L3559870 P 40.435667 -73.336683 2015-04-11 15:00:00 obsr544268 S22884486 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299942215 2021-04-01 11:42:50.317679 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Oneida US-NY-065 13.0 Westmoreland Rd L2228987 P 43.123841 -75.313303 2015-02-23 08:00:00 obsr2892286 S22098819 Stationary P21 EBIRD 150.0 2.0 1 G1161325 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309207811 2015-04-11 19:43:26 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-04-11 09:07:00 obsr2426404 S22808041 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301516365 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-07 12:30:00 obsr2277801 S22218541 Historical P62 EBIRD 180.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985245 2021-04-01 10:47:08.851048 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L166652 H 42.096123 -76.04759 2015-01-24 10:46:00 obsr1626739 S21521928 Traveling P22 EBIRD 112.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315787019 2021-03-26 06:29:56.44369 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-03 13:55:00 obsr745890 S23225297 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292645326 2021-11-09 20:12:16.773384 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-01-22 12:57:00 obsr1912104 S21495267 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS559062135 2021-03-24 21:01:50.671145 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 JFK Memorial Wildlife Sanctuary L194386 H 40.6105495 -73.4519033 2015-01-03 07:00:00 obsr2274198 S41226316 Historical P62 EBIRD 240.0 9.656 3.0 1 G5206810 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309002578 2021-04-01 11:47:43.260314 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-10 08:04:00 obsr2945658 S22794581 Traveling P22 EBIRD 594.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303684914 2022-03-05 22:03:50.715584 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 32 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-17 10:00:00 obsr444155 S22394502 Traveling P22 EBIRD 120.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296473700 2021-04-01 11:15:31.646886 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus N 2 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek--Leon S. Kaiser Park L1312993 H 40.5806115 -73.9979002 2015-02-13 13:30:00 obsr454647 S21801560 Traveling P22 EBIRD 80.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311323239 2021-04-01 11:15:31.646886 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek L845821 H 40.5811388 -73.9927912 2015-04-19 14:24:00 obsr1189028 S22949193 Traveling P22 EBIRD 14.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290873730 2021-01-30 10:27:08.559792 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-I L3289026 P 40.29866 -73.31405 2015-01-11 16:00:00 obsr1220115 S21334670 Traveling P22 EBIRD 60.0 10.622 44.0 1 G1108342 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320709595 2018-08-06 22:30:26 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-05-17 14:15:00 obsr2846677 S23500922 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311165633 2021-03-26 07:17:57.136956 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Seneca US-NY-099 13.0 Cayuga Lake, as seen from CR 141 (destroyed) L1072574 H 42.6359242 -76.6912598 2015-04-19 08:55:00 obsr1092576 S22939686 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288805449 2021-11-09 19:34:18.590596 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 35 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-01-03 15:00:00 obsr1665312 S21167619 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319932387 2018-02-01 15:11:46 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 2 United States US New York US-NY Cortland US-NY-023 28.0 AviCor6 L3513948 H 42.5284473 -75.9639848 2015-05-09 12:12:00 obsr2535282 S23459877 Stationary P21 EBIRD 8.0 2.0 1 G1272244 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305068459 2018-12-15 15:57:31 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Beezamer L2957441 P 42.3907709 -76.407305 2015-03-21 08:15:00 obsr140280 S22500562 Stationary P21 EBIRD 250.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302377676 2015-03-10 21:44:18 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Ontario US-NY-069 13.0 Co. Rd. 28 Near Rt. 96 L3352830 P 42.9635037 -77.2759438 2015-03-09 15:35:00 obsr528918 S22292480 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305877037 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-03-28 12:25:00 obsr1077730 S22562406 Traveling P22 EBIRD 110.0 2.012 11.0 1 G1195436 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306372795 2021-03-24 20:23:39.258075 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L635183 H 40.8348529 -72.6153374 2015-03-30 16:00:00 obsr717785 S22599637 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305876993 2021-04-01 11:15:31.646886 5976 species avibase-F4829920 American Woodcock Scolopax minor 2 United States US New York US-NY Kings US-NY-047 30.0 Hendrix Creek L821734 H 40.6482804 -73.8749027 2015-03-28 10:45:00 obsr1668936 S22562404 Traveling P22 EBIRD 50.0 0.644 11.0 1 G1195438 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316545531 2018-08-04 17:15:01 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 Female, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-06 12:15:00 obsr794187 S23269213 Traveling P22 EBIRD 30.0 0.805 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312522958 2021-04-01 11:54:40.172593 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-04-23 08:00:00 obsr666331 S23028709 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304171047 2021-04-01 11:24:19.637193 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 14 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-20 07:50:00 obsr334398 S22432416 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288778487 2021-11-09 17:47:17.381431 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 * Ring Road, Salt Point, NY L1084767 P 41.7968319 -73.8318479 2015-01-03 13:00:00 obsr763723 S21165315 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319536850 2021-12-24 11:02:14.483178 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-14 09:44:00 obsr2595828 S23437713 Traveling P22 EBIRD 103.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290609388 2021-03-26 07:07:10.758746 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-12 07:36:00 obsr1958124 S21312789 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307995044 2021-03-24 19:19:28.646223 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-04-06 09:29:00 obsr955789 S22718958 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319534686 2018-08-06 22:29:55 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 1 United States US New York US-NY Fulton US-NY-035 13.0 Mayfield Beach, Burr Rd., Fulton Co., N.Y. L3104334 P 43.1404831 -74.2333639 2015-05-14 10:00:00 obsr2590001 S23437596 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309463129 2015-04-12 16:25:23 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Broome US-NY-007 28.0 377 Conklin Ave. L1311981 P 42.099309 -75.8817852 2015-04-10 07:00:00 obsr998593 S22823816 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313142114 2021-03-19 16:32:34.732091 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-26 11:42:00 obsr1801902 S23068490 Traveling P22 EBIRD 104.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320098429 2021-11-09 18:47:29.366198 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Dutchess US-NY-027 14.0 Harlem Valley Rail Trail-Sharon Sta. Road Section L3646878 P 41.8678843 -73.5242414 2015-05-15 08:00:00 obsr445356 S23469162 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323386816 2021-11-09 18:09:06.55827 30494 species avibase-240E3390 House Sparrow Passer domesticus 7 United States US New York US-NY Dutchess US-NY-027 28.0 Pawling Nature Reserve L122964 H 41.61833 -73.55833 2015-05-27 08:00:00 obsr1339050 S23665260 Traveling P22 EBIRD 240.0 5.472 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315490544 2021-03-24 20:57:48.241391 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 2 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-05-03 18:15:00 obsr1708031 S23209146 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295064660 2021-03-24 20:33:47.533911 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-02-05 12:45:00 obsr1655171 S21688766 Traveling P22 EBIRD 8.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298313000 2021-03-26 07:42:06.558742 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 42 United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 US-NY-Argyle-40 Swamp Rd L3398076 P 43.258613 -73.544689 2015-02-18 14:47:00 obsr648176 S21965780 Traveling P22 EBIRD 65.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295323638 2021-04-01 10:51:06.899622 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-02-07 09:27:00 obsr2497657 S21707959 Traveling P22 EBIRD 23.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302662425 2021-11-09 20:39:07.387799 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Putnam US-NY-079 28.0 Paul A. Camarda Park L1354733 H 41.4031816 -73.6813005 2015-03-12 13:00:00 obsr1458092 S22314136 Traveling P22 EBIRD 33.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317855984 2021-11-09 18:36:27.898762 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-04-24 13:30:00 obsr2786327 S23343363 Traveling P22 EBIRD 45.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216010 2021-03-19 16:06:54.047432 616 species avibase-25C94A8F Greater Scaup Aythya marila 50 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road, South Bend to Bluffs L2088990 H 42.7223015 -76.7084078 2015-01-31 13:04:00 obsr1655171 S21619275 Traveling P22 EBIRD 9.0 1.609 2.0 1 G1131441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305970748 2015-04-25 19:41:50 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 14 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-03-24 14:56:00 obsr2279567 S22569513 Stationary P21 EBIRD 111.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316122552 2021-04-01 11:15:31.646886 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 09:00:00 obsr2906952 S23244444 Traveling P22 EBIRD 260.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314207584 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 15:30:00 obsr2277801 S23135170 Historical P62 EBIRD 225.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305871083 2018-08-04 17:04:32 406 species avibase-27B2749A Wood Duck Aix sponsa 35 United States US New York US-NY Chemung US-NY-015 28.0 Grove St. Fishing Access L1949349 H 42.08293 -76.81726 2015-03-28 17:49:00 obsr1334267 S22561974 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314606631 2021-03-30 19:29:33.633096 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Pine Neck Sanctuary L122956 H 40.84111 -72.56528 2015-04-30 09:33:00 obsr1107696 S23159967 Traveling P22 EBIRD 68.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320003829 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Conservatory Garden L278130 H 40.7937283 -73.9523798 2015-05-08 09:00:00 obsr2303233 S23463801 Traveling P22 EBIRD 165.0 4.828 40.0 1 G1272676 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318191433 2021-04-01 11:15:31.646886 11494 species avibase-20C2214E American Kestrel Falco sparverius N 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-10 07:30:00 obsr827632 S23361276 Traveling P22 EBIRD 220.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295561787 2015-02-09 13:58:54 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Aurora-3068 NY-90 L3346812 P 42.766117 -76.708469 2015-02-08 13:26:00 obsr1092576 S21726983 Incidental P20 EBIRD 2.0 0 G1139091 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305264705 2017-02-21 09:18:50 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Madison US-NY-053 13.0 Bush Rd., NY 31 to Oneida Lake L925356 H 43.1584863 -75.9301615 2015-03-25 14:30:00 obsr1167884 S22515610 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322243328 2021-03-26 06:21:54.883933 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 08:20:00 obsr986025 S23594957 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310732798 2017-08-16 17:05:23 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Oswego US-NY-075 13.0 Sunset Bay Park L250628 H 43.5211406 -76.3839446 2015-04-17 16:47:00 obsr2945658 S22912290 Traveling P22 EBIRD 91.0 2.253 3.0 1 G1225672 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307100262 2021-03-26 06:12:17.833181 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Celoron Boat Launch, Chautauqua Lake L200467 H 42.1113404 -79.2830005 2015-04-02 08:00:00 obsr2910282 S22655115 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293079189 2021-03-30 19:28:38.115458 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 300 United States US New York US-NY Seneca US-NY-099 13.0 US-NY-Seneca Falls-4359-4431 NY-89 L3315922 P 42.810905 -76.754597 2015-01-25 07:10:00 obsr749440 S21529263 Traveling P22 EBIRD 22.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298808781 2021-09-03 19:22:31.034431 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Mezzio Road, Forestville L3611156 H 42.4529497 -79.2192119 2015-02-21 15:18:00 obsr2497657 S22008815 Stationary P21 EBIRD 103.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304041436 2015-03-19 13:20:47 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Genesee US-NY-037 13.0 Genesee County Airport (GVQ) L2486434 H 43.0306505 -78.1733465 2015-03-19 12:37:00 obsr1310178 S22422453 Traveling P22 EBIRD 42.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306416274 2019-07-23 17:28:09 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 20 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-03-28 10:00:00 obsr1995798 S22603043 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304316446 2021-04-01 12:40:54.473014 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Mechanicville-1 Ferry St L3502419 P 42.906292 -73.683986 2015-03-19 09:10:00 obsr648176 S22443768 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318659164 2021-03-26 06:07:45.516082 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Bronx US-NY-005 US-NY_779 30.0 Van Cortlandt Park--NW Forest L188940 H 40.904835 -73.89131 2015-05-09 11:00:00 obsr1336375 S23386790 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288558724 2021-04-01 12:32:15.282601 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Nassau US-NY-059 30.0 Sands Point Preserve L293460 H 40.8591053 -73.6970283 2015-01-02 14:00:00 obsr547602 S21147678 Traveling P22 EBIRD 120.0 2.414 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322195620 2021-03-19 16:44:35.607263 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Monroe US-NY-055 13.0 Whiting Rd. Nature Preserve L524399 H 43.251267 -77.4698353 2015-05-23 07:10:00 obsr302343 S23592442 Traveling P22 EBIRD 155.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306094027 2021-04-01 12:14:19.266649 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-03-29 12:45:00 obsr544268 S22578410 Traveling P22 EBIRD 45.0 4.828 2.0 1 G1196683 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308071023 2021-03-22 09:17:32.016297 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 15 United States US New York US-NY Oneida US-NY-065 13.0 Sylvan Beach L509883 H 43.1939135 -75.731163 2015-04-06 16:15:00 obsr666964 S22724119 Stationary P21 EBIRD 10.0 1.0 1 G1208661 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303210070 2021-03-24 20:33:47.533911 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 11 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-03-15 08:32:00 obsr2377251 S22356697 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298418201 2021-04-01 10:52:54.724403 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 9 United States US New York US-NY Columbia US-NY-021 13.0 Smith Road & Route 9, Kinderhook L3192238 P 42.3917446 -73.6932635 2015-02-19 10:15:00 obsr349211 S21974910 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320341575 2021-03-26 06:29:56.44369 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-16 06:30:00 obsr2449897 S23481427 Traveling P22 EBIRD 120.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310926028 2021-03-26 07:56:20.588749 5956 species avibase-F35821AA Semipalmated Sandpiper Calidris pusilla 10 United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-04-18 08:05:00 obsr1296638 S22924788 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294892283 2021-04-01 11:47:43.260314 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 30 United States US New York US-NY Oswego US-NY-075 Oswego Harbor L247908 H 43.4658286 -76.5149873 2015-02-04 13:00:00 obsr2744341 S21673684 Traveling P22 EBIRD 90.0 0.805 1.0 1 G1135287 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311694561 2021-03-23 17:32:20.03109 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 1 United States US New York US-NY Onondaga US-NY-067 13.0 7474 James Street, Fayetteville, NY L269868 P 43.0374547 -76.0071565 2015-04-18 08:00:00 obsr1167884 S22973894 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315316126 2021-12-08 07:58:41.562209 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-03 08:17:00 obsr247782 S23199805 Traveling P22 EBIRD 253.0 3.219 2.0 1 G1249071 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316496288 2015-05-06 13:13:42 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-01 15:00:00 obsr938548 S23266116 Historical P62 EBIRD 120.0 3.219 40.4686 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313165493 2015-04-26 14:29:16 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Shindagin Hollow SF, MtnBike trail 1 L3592364 P 42.3348466 -76.3407004 2015-04-26 11:30:00 obsr2535282 S23069893 Traveling P22 EBIRD 70.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293443074 2021-04-01 11:15:31.646886 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-25 15:20:00 obsr327318 S21558683 Traveling P22 EBIRD 100.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318367453 2018-08-04 17:15:47 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-10 07:55:00 obsr1044068 S23370861 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300922271 2021-04-01 12:32:15.282601 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 8 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-25 09:00:00 obsr2218212 S22173362 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316165661 2015-05-05 20:53:32 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-25 17:17:00 obsr1987335 S23246633 Traveling P22 EBIRD 29.0 1.127 2.0 0 G1253378 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS308019299 2018-08-04 17:06:14 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Suffolk US-NY-103 30.0 Lakeland County Park L2680286 H 40.8044899 -73.1562702 2015-04-06 12:52:00 obsr1987335 S22720459 Rusty Blackbird Spring Migration Blitz P41 EBIRD 26.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292495224 2021-03-26 06:17:19.712573 331 spuh avibase-A0148BE3 goose sp. Anser/Branta sp. 1 United States US New York US-NY Erie US-NY-029 13.0 Home L654361 P 42.81914 -78.7520599 2015-01-21 16:15:00 obsr1079517 S21483473 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313139909 2021-03-19 16:27:31.421791 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kanyoo Trail L152120 H 43.1168988 -78.430624 2015-04-26 11:38:00 obsr1092576 S23068383 Traveling P22 EBIRD 104.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318745014 2019-01-07 15:36:30 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Chautauqua US-NY-013 13.0 Canadaway Creek WMA L2266749 H 42.367272 -79.2358312 2015-05-11 17:43:00 obsr2497657 S23391773 Traveling P22 EBIRD 121.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307286808 2021-11-09 21:57:30.391586 7200 species avibase-49D9148A Great Egret Ardea alba 2 United States US New York US-NY Ulster US-NY-111 13.0 Hurley, 1637 Hurley Mountain Road L3535911 P 41.92469 -74.08275 2015-04-03 17:30:00 obsr1482758 S22668525 Stationary P21 EBIRD 45.0 2.0 1 G1203333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290020912 2015-01-18 10:49:21 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 Female, Adult (1) United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-01-09 07:40:00 obsr2377251 S21265572 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319267529 2021-03-26 07:53:57.664705 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Livingston US-NY-051 13.0 Groveland, NY L2623278 P 42.7113986 -77.7185619 2015-05-09 09:40:00 obsr1743566 S23422089 Stationary P21 EBIRD 200.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291123700 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Albany US-NY-001 13.0 Corning Riverfront Park L910351 H 42.6513938 -73.7457898 2015-01-15 11:50:00 obsr1154 S21354889 Traveling P22 EBIRD 35.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312405079 2021-03-26 07:53:57.664705 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 5 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-04-18 14:05:00 obsr1060479 S23020791 Stationary P21 EBIRD 250.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321898454 2018-08-06 22:30:47 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Blueberry Hill East and West L782514 H 42.7004751 -73.8682283 2015-05-22 06:04:00 obsr777630 S23574109 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309036434 2022-02-04 06:14:13.892644 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-04-11 08:59:00 obsr1348614 S22796971 Traveling P22 EBIRD 46.0 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295481906 2021-11-30 17:34:34.127683 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica N X United States US New York US-NY Orange US-NY-071 28.0 Black Dirt Region--Sod Farms L682671 H 41.3257764 -74.4660351 2015-02-07 13:23:00 obsr2816169 S21720672 Traveling P22 EBIRD 90.0 9.656 2.0 1 G1516812 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296238896 2021-03-26 06:55:00.227271 33020 species avibase-544A5E6B Blackpoll Warbler Setophaga striata N 50 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. hilltop [Clifton Springs_NE] L1070132 P 42.9974476 -77.1602449 2015-02-11 13:40:00 obsr606693 S21779932 Traveling P22 EBIRD 11.0 0.644 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309019377 2021-11-09 19:57:48.772402 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus X United States US New York US-NY Orange US-NY-071 28.0 Brock's Farm, River Rd, Montgomery L3554409 P 41.540292 -74.220182 2015-04-10 12:40:00 obsr2175245 S22795794 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313628874 2018-08-04 17:12:33 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail, Sherwood Pltform base - West Trail (0.137km) L1369671 P 42.4793682 -76.4546071 2015-04-27 18:18:00 obsr2307843 S23098778 Traveling P22 EBIRD 5.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305849283 2015-03-28 17:18:28 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-03-28 08:32:00 obsr1893950 S22560355 Traveling P22 EBIRD 5.0 0.322 2.0 1 G1195297 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000365 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-05 09:00:00 obsr2218212 S23775904 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292493116 2016-09-12 10:27:59 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-17 10:30:00 obsr2475075 S21483309 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307047393 2021-03-24 20:33:47.533911 30494 species avibase-240E3390 House Sparrow Passer domesticus 60 United States US New York US-NY Tompkins US-NY-109 13.0 206 Tareyton Drive, Ithaca L141039 P 42.471756 -76.4603653 2015-04-02 13:00:00 obsr620377 S22651182 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291119832 2021-11-09 20:52:46.916672 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Rockland US-NY-087 30.0 Tallman Mountain SP L1250992 H 41.0262764 -73.9088058 2015-01-15 09:30:00 obsr473055 S21354576 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308820587 2021-03-26 06:21:54.883933 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-10 08:15:00 obsr2750470 S22781697 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301226698 2018-08-04 16:58:50 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-06 13:45:00 obsr2172593 S22195778 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305099743 2022-03-05 22:03:50.715584 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris N 5 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-03-24 08:00:00 obsr662396 S22502894 Traveling P22 EBIRD 30.0 8.047 2.0 1 G1191447 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302018038 2015-03-09 14:58:07 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Bradfield Hall Cornell L1826966 P 42.447794 -76.476053 2015-03-09 14:53:00 obsr887540 S22257578 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316998707 2018-08-04 17:15:10 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-05-07 11:29:00 obsr393804 S23294963 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308617495 2015-04-09 09:24:07 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-04-09 08:30:00 obsr869999 S22765985 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303210671 2021-03-24 20:16:00.852773 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-03-15 08:28:00 obsr1958124 S22356754 Traveling P22 EBIRD 30.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312699030 2021-03-30 12:05:58.533651 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Southern Meadow and environs L1816707 H 40.8533174 -73.8219978 2015-04-24 15:00:00 obsr538462 S23041788 Traveling P22 EBIRD 80.0 2.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307777582 2018-08-04 17:05:39 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Clinton US-NY-019 13.0 Ausable Marsh WMA--Ausable Point L143224 H 44.5680008 -73.4219971 2015-04-05 15:30:00 obsr2508112 S22703215 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309435411 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-12 11:00:00 obsr1516787 S22822081 Traveling P22 EBIRD 100.0 2.173 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS323190593 2021-12-24 11:02:14.483178 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 8 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-05-07 07:25:00 obsr408487 S23652350 Traveling P22 EBIRD 95.0 2.092 2.0 1 G1291693 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308692837 2021-03-26 06:55:00.227271 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-04-09 13:27:00 obsr606693 S22772023 Traveling P22 EBIRD 20.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316560990 2021-04-01 11:15:31.646886 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia N 20 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-06 06:00:00 obsr2233143 S23270200 Area P23 EBIRD 540.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314230592 2021-11-09 21:05:38.662868 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus N 3 United States US New York US-NY Rockland US-NY-087 30.0 Pearl River L3339680 P 41.0602136 -74.0242052 2015-04-29 17:59:00 obsr2628711 S23136542 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310651338 2021-03-26 06:29:56.44369 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 1 United States US New York US-NY Monroe US-NY-055 13.0 nash yard L2119313 P 43.1642149 -77.7328634 2015-04-17 11:00:00 obsr1929165 S22906992 Stationary P21 EBIRD 20.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313302174 2021-04-01 11:47:43.260314 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 12 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-03-08 10:30:00 obsr2409011 S23078124 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293640077 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-01-27 14:20:00 obsr41879 S21573974 Traveling P22 EBIRD 35.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311971581 2021-03-26 06:17:19.712573 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-04-21 obsr2096529 S22991745 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302909404 2021-03-19 16:02:45.308962 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Harold Moore Park L1464971 H 42.099743 -76.0129688 2015-03-13 17:09:00 obsr1764243 S22332981 Traveling P22 EBIRD 21.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290144095 2021-03-24 19:46:49.147482 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Lewis US-NY-049 14.0 Lowville Village L1791251 P 43.7883908 -75.4987824 2015-01-10 07:00:00 obsr1882034 S21275321 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351698 2021-03-26 07:07:10.758746 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-11 07:26:00 obsr1958124 S21292479 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315676225 2021-11-09 18:46:59.428056 592 species avibase-3072CC16 Redhead Aythya americana 4 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup East L3609979 P 41.911736 -73.660179 2015-05-03 08:14:00 obsr1442681 S23219315 Traveling P22 EBIRD 125.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310664573 2021-03-19 16:08:39.161312 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-04-17 13:02:00 obsr2497657 S22907809 Traveling P22 EBIRD 34.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304218321 2019-01-07 15:30:49 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Sheridan Cemetery and Fields L2790341 H 42.48523 -79.23768 2015-03-20 13:03:00 obsr2497657 S22436271 Traveling P22 EBIRD 59.0 1.127 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307418009 2021-04-01 10:47:08.851048 483 species avibase-85625D75 Mallard Anas platyrhynchos N 6 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-04-04 12:15:00 obsr800690 S22678264 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322489502 2021-03-19 16:25:42.617988 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-24 07:47:00 obsr822321 S23608978 Traveling P22 EBIRD 254.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308043575 2021-03-23 17:32:20.03109 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-06 14:00:00 obsr660214 S22722186 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293879825 2021-04-01 12:18:57.910168 8829 species avibase-8F123A11 Short-eared Owl Asio flammeus X United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-01-28 08:00:00 obsr1895507 S21593194 Stationary P21 EBIRD 30.0 3.0 1 G1128299 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312905711 2022-03-05 22:03:50.715584 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-25 08:45:00 obsr1544235 S23054293 Traveling P22 EBIRD 300.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313722789 2021-04-01 11:15:31.646886 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-04-28 06:32:00 obsr564905 S23104845 Traveling P22 EBIRD 20.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304429206 2021-03-23 16:45:39.358281 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 Remington Recreation Trail L270558 H 44.6127667 -75.1665791 2015-03-12 17:00:00 obsr1558090 S22452038 Traveling P22 EBIRD 40.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296241327 2021-03-24 20:06:25.370375 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Ontario US-NY-069 13.0 yard - 5030 Butler Rd. L824954 P 42.8530016 -77.2913074 2015-02-12 09:40:00 obsr983655 S21780150 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314306040 2021-04-01 11:14:02.420281 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 2 United States US New York US-NY Jefferson US-NY-045 US-NY_805 Point Peninsula Bird Conservation Area L1367385 H 43.9953255 -76.2449646 2015-04-29 13:48:00 obsr2834886 S23141371 Traveling P22 EBIRD 90.0 24.14 2.0 1 G1244061 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300290588 2019-07-23 17:27:36 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 10 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Niagara River Corridor (NY) L109154 H 43.099165 -79.058469 2015-03-01 12:30:00 obsr1437174 S22127277 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297561919 2021-04-01 12:32:15.282601 32869 species avibase-D204A930 Tennessee Warbler Leiothlypis peregrina N 6 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-16 11:35:00 obsr2793388 S21899130 Traveling P22 EBIRD 55.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307212626 2020-03-15 18:48:35 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 2 S C2 S United States US New York US-NY Ontario US-NY-069 13.0 Ontario Pathways--NY 96, Phelps L348453 H 42.9580206 -77.0920904 2015-04-03 14:47:00 obsr606693 S22663140 Traveling P22 EBIRD 22.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302479550 2017-01-08 08:50:20 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College L1485004 H 44.4375537 -74.2530447 2015-03-11 14:00:00 obsr568671 S22300025 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289396280 2021-04-01 11:24:19.637193 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 6 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-01-05 12:42:00 obsr745890 S21215811 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316516033 2021-03-26 06:09:25.361188 11603 spuh avibase-37EE6EA4 small falcon sp. Falco sp. (small falcon sp.) 2 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-05-06 13:15:00 obsr879105 S23267423 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322610991 2021-03-23 17:22:05.708166 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-18 07:05:00 obsr1000124 S23615609 Area P23 EBIRD 55.0 2.59 2.0 1 G1288508 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310447061 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-16 07:25:00 obsr1077730 S22892677 Traveling P22 EBIRD 300.0 4.828 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312124366 2021-03-24 20:33:47.533911 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-02-11 13:34:00 obsr1737482 S23001650 Traveling P22 EBIRD 17.0 0.161 1.0 1 G1143090 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296695116 2021-04-01 10:47:08.851048 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-02-14 09:51:00 obsr646558 S21821757 Traveling P22 EBIRD 5.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317005640 2018-08-04 17:15:12 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-07 15:38:00 obsr2716320 S23295350 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321699569 2018-08-06 22:30:32 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-19 05:43:00 obsr1410564 S23561312 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300308146 2021-04-01 11:30:42.037277 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-01 10:00:00 obsr2793388 S22128786 Traveling P22 EBIRD 40.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291729889 2021-03-23 17:00:13.087107 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Tompkins US-NY-109 13.0 845 Taughannock Blvd L3301517 P 42.4635812 -76.5241528 2015-01-18 08:45:00 obsr59643 S21403091 Stationary P21 EBIRD 70.0 7.0 1 G1114093 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308677601 2015-04-09 14:49:35 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - boardwalk to white barn pond (0.04km) L1287548 P 42.480817 -76.4502794 2015-04-09 12:33:00 obsr2307843 S22770730 Traveling P22 EBIRD 5.0 0.04 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321957359 2018-08-06 22:30:50 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 5 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-22 10:00:00 obsr2364166 S23577729 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313559499 2022-02-17 14:32:23.002448 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-27 09:30:00 obsr1284279 S23094349 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307384269 2021-03-26 06:29:56.44369 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 4 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-04-03 09:00:00 obsr2759466 S22675771 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319961525 2021-11-09 17:44:00.03737 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Dutchess US-NY-027 13.0 Ludlow Woods Rd, Stanfordville NY L1062774 P 41.8618905 -73.6757755 2015-05-15 17:30:00 obsr1917973 S23461414 Traveling P22 EBIRD 10.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303331701 2018-08-04 17:00:42 27616 species avibase-D77E4B41 American Robin Turdus migratorius 20 United States US New York US-NY Cayuga US-NY-011 13.0 Aurora High Banks (MacKenzie-Childs bluffs) L276331 H 42.7778992 -76.7108037 2015-03-14 12:24:00 obsr2683910 S22366560 Stationary P21 EBIRD 13.0 2.0 1 G1181024 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310246460 2021-04-01 11:54:40.172593 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-04-15 15:20:00 obsr1958124 S22878886 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292916928 2021-03-30 19:29:33.633096 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Narrow River Rd L168826 P 41.132015 -72.29454 2015-01-24 13:15:00 obsr2485753 S21516898 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322192085 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-23 07:30:00 obsr1175815 S23592261 Traveling P22 EBIRD 180.0 3.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323940185 2018-08-04 17:30:40 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kanyoo Trail L152120 H 43.1168988 -78.430624 2015-05-30 10:33:00 obsr1092576 S23704472 Traveling P22 EBIRD 43.0 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300162132 2021-11-09 18:44:40.134933 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Dutchess US-NY-027 28.0 South Green Haven Road L3446931 P 41.5789 -73.71016 2015-02-28 20:55:00 obsr1732267 S22116887 Stationary P21 EBIRD 2.0 2.0 1 G1164092 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315474663 2021-03-30 19:13:38.458673 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-04 09:22:00 obsr334398 S23208230 Stationary P21 EBIRD 63.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318780048 2021-04-01 10:55:39.308231 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 20 Queens Drive L1383581 P 43.0393001 -78.946665 2015-05-11 06:45:00 obsr502830 S23393842 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314389598 2021-04-01 11:30:42.037277 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 13:55:00 obsr2883698 S23146107 Traveling P22 EBIRD 70.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306073033 2021-03-19 16:12:42.877422 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana N 1 United States US New York US-NY Columbia US-NY-021 13.0 Germantown, Anchorage Rd L1456685 P 42.15849 -73.88694 2015-03-29 09:55:00 obsr2321296 S22576762 Stationary P21 EBIRD 27.0 3.0 1 G1196539 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313527758 2021-03-24 20:33:47.533911 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-27 12:25:00 obsr2001485 S23091624 Traveling P22 EBIRD 38.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300004703 2021-03-26 07:43:12.52294 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-02-15 08:45:00 obsr1721609 S22103679 Stationary P21 EBIRD 115.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311007637 2021-04-01 12:32:15.282601 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-18 09:15:00 obsr1489009 S22929956 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288762480 2021-03-23 17:26:08.495143 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa preserve- Walker Street L3175652 P 40.6969856 -73.4523153 2015-01-03 07:00:00 obsr547602 S21163952 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304681096 2021-11-09 18:25:59.444943 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Dutchess US-NY-027 13.0 Wappinger Lake L1829902 H 41.6070847 -73.9159704 2015-03-22 10:04:00 obsr1062217 S22470701 Stationary P21 EBIRD 46.0 3.0 1 G1188617 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303996326 2021-03-26 06:17:19.712573 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 1 United States US New York US-NY Erie US-NY-029 13.0 Stiglmeier Park L965034 H 42.8821636 -78.7297356 2015-03-18 12:15:00 obsr319738 S22418540 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317652569 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 06:00:00 obsr1760429 S23332547 Traveling P22 EBIRD 600.0 0.805 2.0 1 G1262228 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308617267 2021-04-01 11:30:42.037277 6526 species avibase-4D2FF6F1 Common Tern Sterna hirundo 45 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-09 06:55:00 obsr1433400 S22765975 Traveling P22 EBIRD 90.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294926672 2021-03-30 19:07:52.958398 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-04 11:30:00 obsr2363365 S21677021 Traveling P22 EBIRD 150.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297703418 2021-04-01 12:32:15.282601 11528 species avibase-F3DA111C Merlin Falco columbarius 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-02-16 11:45:00 obsr1585511 S21912448 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290515113 2021-03-30 19:29:33.633096 32955 species avibase-41062654 Northern Parula Setophaga americana 8 United States US New York US-NY Suffolk US-NY-103 Dune Road (Moriches Inlet to Shinnecock Inlet) L1057391 P 40.7992566 -72.615509 2015-01-11 12:30:00 obsr247620 S21305873 Traveling P22 EBIRD 150.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310606795 2021-04-01 12:18:57.910168 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Tompkins US-NY-109 28.0 Websterk Estate L3569539 P 42.4151243 -76.3541704 2015-04-17 07:20:00 obsr2724574 S22904129 Stationary P21 EBIRD 30.0 4.0 1 G1222662 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309384966 2021-11-09 18:45:58.331167 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Dutchess US-NY-027 13.0 US-NY-Rhinebeck - 41.9546x-73.9444 - Apr 12, 2015, 12:52 PM L3557838 P 41.954552 -73.944446 2015-04-12 12:52:00 obsr278769 S22819266 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310337517 2019-07-23 17:28:18 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip F L3559849 P 40.22115 -73.03615 2015-04-11 13:00:00 obsr2883074 S22885221 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221325 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320341336 2018-08-06 22:30:02 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Broome US-NY-007 28.0 west corners swamp rte 26 L2023984 P 42.116052 -76.0736275 2015-05-15 18:00:00 obsr1947568 S23481413 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312838077 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-25 10:30:00 obsr544268 S23050386 Traveling P22 EBIRD 90.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299621889 2015-02-25 21:12:43 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 2 Male, Adult (2) United States US New York US-NY Herkimer US-NY-043 13.0 Poland & Rt.28 South to SE Graves Road Intersection L849421 P 43.2121678 -75.0452685 2015-02-25 16:55:00 obsr1000124 S22074464 Traveling P22 EBIRD 17.0 1.931 4.0 1 G1159903 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323345845 2015-05-27 12:58:38 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 30 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-05-27 12:57:00 obsr1764243 S23662542 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305596167 2021-03-26 07:20:31.408164 26890 species avibase-94A44032 European Starling Sturnus vulgaris 7 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--Golf Course L507417 H 40.6235296 -73.2860184 2015-03-27 09:00:00 obsr247620 S22541469 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293089317 2015-05-07 17:00:47 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm Cabin L327724 P 42.34994 -76.30034 2015-01-24 14:22:00 obsr455249 S21530144 Stationary P21 EBIRD 140.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306157037 2021-04-01 11:47:43.260314 6299 species avibase-57C93A74 Franklin's Gull Leucophaeus pipixcan 4 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-29 09:30:00 obsr1633923 S22583242 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316526816 2021-04-01 11:30:42.037277 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 07:00:00 obsr1220115 S23268012 Traveling P22 EBIRD 195.0 2.414 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304583799 2021-04-01 11:54:40.172593 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes - Heart Healthy Trail L1175194 P 40.6224465 -74.1183186 2015-03-22 08:08:00 obsr1231731 S22463533 Traveling P22 EBIRD 132.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314097102 2021-11-15 03:06:58.889978 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 09:15:00 obsr263005 S23128279 Traveling P22 EBIRD 145.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS833041725 2021-03-23 17:26:08.495143 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 10 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-20 obsr606571 S61845631 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321425371 2021-12-08 07:58:41.562209 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-20 06:58:00 obsr2206421 S23544712 Traveling P22 EBIRD 60.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317477333 2021-03-26 06:17:19.712573 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 147 marine drive buffalo NY 14202 L3370710 P 42.8799674 -78.8813397 2015-05-09 06:10:00 obsr2071643 S23322357 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288779769 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 14 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach Bay Islands L1904830 H 40.6113808 -73.5494848 2015-01-03 08:00:00 obsr1832543 S21165409 Traveling P22 EBIRD 360.0 6.437 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323697937 2021-04-01 10:51:50.668112 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 28 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Dam L160699 H 42.0864692 -76.8096739 2015-04-11 13:10:00 obsr1587816 S23687625 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301367593 2018-08-04 16:58:54 3543 species avibase-8D3E8871 Chuck-will's-widow Antrostomus carolinensis X United States US New York US-NY Saratoga US-NY-091 13.0 Stillwater L196899 T 42.93838 -73.65316 2015-03-07 10:20:00 obsr634484 S22207779 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312894499 2021-03-26 06:12:17.833181 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Chautauqua US-NY-013 13.0 US-NY-Dunkirk-5372 Lakeside Blvd Ext L3589998 P 42.451118 -79.410467 2015-04-25 16:36:00 obsr334398 S23053669 Stationary P21 EBIRD 19.0 2.0 1 G1282910 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304411833 2021-03-26 08:14:57.071052 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris N 7 United States US New York US-NY Westchester US-NY-119 30.0 Seney Ave L3362269 P 40.9373411 -73.7317613 2015-03-05 11:57:00 obsr2420438 S22450860 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312484716 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Kings US-NY-047 30.0 Sunset Park (Brooklyn) L2891769 H 40.6479975 -74.0038026 2015-04-24 06:25:00 obsr2750470 S23026249 Traveling P22 EBIRD 20.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307924147 2021-03-26 07:30:35.289997 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 25 United States US New York US-NY Tompkins US-NY-109 13.0 Allan Treman State Marine Park L3542613 P 42.46125 -76.5155053 2015-04-05 16:30:00 obsr2535282 S22714008 Traveling P22 EBIRD 90.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322763617 2015-05-25 10:25:26 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Blueberry Hill East and West L782514 H 42.7004751 -73.8682283 2015-05-25 09:15:00 obsr119187 S23625079 Traveling P22 EBIRD 35.0 0.322 2.0 1 G1288768 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305452244 2021-04-01 11:47:43.260314 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-26 09:20:00 obsr2744341 S22530358 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306090181 2021-03-23 16:52:36.900075 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-03-29 09:30:00 obsr544268 S22578110 Rusty Blackbird Spring Migration Blitz P41 EBIRD 180.0 4.828 3.0 1 G1196667 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310065715 2018-04-27 05:03:51 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Suffolk US-NY-103 30.0 Roosevelt Estate County Park L7273270 H 40.7386078 -73.0728777 2015-04-14 17:29:00 obsr1107696 S22866697 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS345258804 2021-03-31 04:08:01.38714 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Livingston US-NY-051 13.0 PFA South Caledonia route L1168673 P 42.9306621 -77.8268051 2015-05-27 05:08:00 obsr1060479 S25235135 Traveling P22 EBIRD 85.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302415566 2015-03-11 09:01:53 592 species avibase-3072CC16 Redhead Aythya americana 2 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-10 13:30:00 obsr1735540 S22295277 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312103793 2018-04-28 14:02:38 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Thomas Rd., south (Six Mile Creek ponds & marsh) L388439 H 42.4020377 -76.3778114 2015-04-22 08:26:00 obsr2074043 S23000342 Traveling P22 EBIRD 13.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304775738 2021-12-10 08:21:29.396662 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 12 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-22 18:30:00 obsr114791 S22477709 Traveling P22 EBIRD 90.0 1.609 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311330846 2015-04-19 17:08:54 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-04-05 09:38:00 obsr98313 S22949648 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318404532 2021-11-09 19:01:40.008558 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 9 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-10 06:15:00 obsr1433400 S23372915 Traveling P22 EBIRD 300.0 8.561 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323596217 2021-04-01 12:32:15.282601 337 species avibase-694C127A Mute Swan Cygnus olor 3 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-28 06:45:00 obsr547602 S23679631 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302124810 2018-08-04 16:59:10 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Herkimer US-NY-043 13.0 Poland & Rt.28 South to SE Graves Road Intersection L849421 P 43.2121678 -75.0452685 2015-03-09 13:58:00 obsr316199 S22265877 Traveling P22 EBIRD 6.0 2.092 3.0 1 G1173373 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315754351 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 08:30:00 obsr2677000 S23223519 Traveling P22 EBIRD 180.0 2.414 10.0 1 G1251698 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295665214 2015-02-08 20:15:23 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-02-08 08:15:00 obsr646558 S21735241 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295670306 2021-03-24 19:24:40.212356 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-02-08 09:00:00 obsr479109 S21735582 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306355840 2015-03-30 20:00:01 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Broome US-NY-007 28.0 Harold Moore Park L1464971 H 42.099743 -76.0129688 2015-03-30 16:10:00 obsr1764243 S22598294 Traveling P22 EBIRD 52.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306916468 2018-08-04 17:05:03 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 25 United States US New York US-NY Oneida US-NY-065 13.0 Oneida Lake at Oneida Creek L1602079 P 43.1659026 -75.7396389 2015-04-02 10:19:00 obsr2950436 S22641080 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305679525 2021-03-19 16:44:35.607263 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis N 1 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-03-26 09:30:00 obsr2759466 S22547893 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298268331 2021-03-26 06:55:00.227271 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 14 United States US New York US-NY Ontario US-NY-069 13.0 The Swamp L1660257 P 42.8848133 -77.0413991 2015-02-18 14:35:00 obsr572658 S21962058 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290213795 2021-03-26 07:20:31.408164 668 species avibase-9456DEDF Barrow's Goldeneye Bucephala islandica N 3 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-01-08 07:00:00 obsr1592950 S21281335 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313580801 2021-03-26 07:56:20.588749 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-26 11:56:00 obsr1987335 S23095649 Rusty Blackbird Spring Migration Blitz P41 EBIRD 82.0 1.609 2.0 1 G1239967 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309750026 2021-03-23 16:52:36.900075 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-04-13 13:36:00 obsr129868 S22844490 Traveling P22 EBIRD 34.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314772039 2015-05-01 21:53:21 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Greene US-NY-039 13.0 south mountain palenville L3533498 P 42.1933333 -74.026486 2015-04-30 08:00:00 obsr594889 S23169733 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323620321 2021-03-19 16:44:35.607263 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-05-28 15:20:00 obsr934639 S23681191 Traveling P22 EBIRD 43.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292178625 2017-11-27 07:55:42 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-20 14:15:00 obsr1736113 S21438233 Traveling P22 EBIRD 45.0 0.161 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299150709 2021-03-23 17:26:08.495143 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-22 16:45:00 obsr2796494 S22038299 Traveling P22 EBIRD 45.0 0.322 11.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS320256524 2021-11-09 19:19:16.74786 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 3 United States US New York US-NY Dutchess US-NY-027 13.0 Tivoli Bays - Kidd Lane L902373 P 42.0455003 -73.906703 2015-05-14 08:45:00 obsr2954986 S23477056 Traveling P22 EBIRD 95.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308722278 2021-12-03 21:50:44.732892 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-04-09 10:49:00 obsr155915 S22774347 Traveling P22 EBIRD 10.0 0.805 2.0 1 G1212580 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293242482 2015-01-25 20:05:16 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Franklin US-NY-033 14.0 Jones Pond L2271996 H 44.4498025 -74.1893005 2015-01-23 14:00:00 obsr717785 S21542187 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310548614 2021-03-23 17:37:19.520785 6339 species avibase-8535345B Herring Gull Larus argentatus 20 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-16 18:00:00 obsr820113 S22900208 Traveling P22 EBIRD 150.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319416180 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 40 United States US New York US-NY Kings US-NY-047 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L3640607 P 40.6155949 -73.8359737 2015-05-12 07:51:00 obsr454647 S23430536 Traveling P22 EBIRD 190.0 4.023 4.0 1 G1269800 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314606390 2021-03-30 19:39:10.250398 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 1 United States US New York US-NY Nassau US-NY-059 30.0 Saint Johns Pond Sanctuary L123034 H 40.85417 -73.46333 2015-04-29 09:33:00 obsr1107696 S23159951 Traveling P22 EBIRD 47.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295540959 2021-03-30 06:01:28.020715 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-08 11:45:00 obsr2172593 S21725379 Stationary P21 EBIRD 9.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309509653 2021-03-24 19:27:13.077399 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Chemung US-NY-015 28.0 Martz/Shafer Farm L3558884 P 42.0250049 -76.7728901 2015-04-12 12:15:00 obsr1957925 S22827084 Traveling P22 EBIRD 65.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293108932 2021-04-01 11:15:31.646886 592 species avibase-3072CC16 Redhead Aythya americana 18 United States US New York US-NY Kings US-NY-047 Gravesend Bay, middle parking lot L1843449 H 40.6040297 -74.0243731 2015-01-25 10:53:00 obsr598381 S21531859 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323195173 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Nassau US-NY-059 30.0 Planting Fields Arboretum L517497 H 40.8638744 -73.5580158 2015-05-26 15:45:00 obsr1895507 S23652636 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319393259 2021-03-26 06:29:56.44369 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-13 01:45:00 obsr1534851 S23429174 Traveling P22 EBIRD 105.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS519895023 2021-04-01 12:32:15.282601 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 6 United States US New York US-NY Nassau US-NY-059 30.0 Manhasset - Private: No Access L2913708 P 40.7762193 -73.6884141 2015-05-11 07:00:00 obsr696226 S38228444 Traveling P22 EBIRD 300.0 8.047 3.0 1 G1645520 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292081379 2021-03-26 07:53:57.664705 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-01-19 07:47:00 obsr1060479 S21430460 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324201903 2021-04-01 12:32:15.282601 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Lido Beach Passive Nature Area L723695 H 40.5923663 -73.5957384 2015-05-31 08:30:00 obsr2207991 S23720794 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289885983 2021-11-09 22:39:47.565044 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Sullivan US-NY-105 28.0 Rondout Reservoir (Sullivan Co.) L2693079 H 41.8604243 -74.5100577 2015-01-08 10:00:00 obsr444155 S21254736 Traveling P22 EBIRD 20.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309381380 2021-04-01 12:11:50.996293 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-12 09:46:00 obsr800690 S22819029 Traveling P22 EBIRD 182.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313213759 2021-03-26 07:56:20.588749 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-26 12:15:00 obsr1137265 S23072727 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1237358 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325151103 2019-07-23 17:28:22 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 25 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr109265 S23786939 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319509194 2020-08-03 19:51:47 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 1 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-05-14 07:44:00 obsr1097423 S23436162 Traveling P22 EBIRD 75.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289234200 2021-11-09 18:26:50.162401 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Dutchess US-NY-027 13.0 Separate Road, Amenia, NY L1893810 P 41.8622316 -73.6034884 2015-01-02 11:00:00 obsr1062217 S21202873 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322501576 2018-08-06 22:31:01 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-05-24 09:30:00 obsr2766625 S23609659 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318049575 2021-03-19 16:44:35.607263 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Manitou Beach Preserve L2105165 H 43.3211034 -77.7145064 2015-05-10 07:11:00 obsr1124114 S23354016 Traveling P22 EBIRD 170.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS376882193 2019-07-23 17:26:39 681 species avibase-407E2CA8 Common Merganser Mergus merganser 98 United States US New York US-NY Suffolk US-NY-103 30.0 Southold Town Beach L142618 H 41.0892334 -72.4137115 2015-01-01 11:03:00 obsr1214394 S27808231 Stationary P21 EBIRD 23.0 1.0 1 G1100191 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296689484 2021-04-01 11:15:31.646886 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 11 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-02-14 08:40:00 obsr1731572 S21821194 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303210065 2021-03-24 20:33:47.533911 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-03-15 08:32:00 obsr2377251 S22356697 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292486594 2021-03-31 04:04:22.116638 505 species avibase-C732CB10 American Black Duck Anas rubripes 13 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-19 15:34:00 obsr1987335 S21482823 Traveling P22 EBIRD 47.0 0.644 2.0 1 G1118671 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317201871 2021-03-26 06:17:19.712573 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 5 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-08 13:15:00 obsr252591 S23306015 Traveling P22 EBIRD 69.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308201119 2021-03-23 17:00:13.087107 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-07 06:53:00 obsr455249 S22734454 Traveling P22 EBIRD 7.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315906046 2018-08-04 17:14:43 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Fulton US-NY-035 14.0 Cline Road Marsh/Forest Loop L2499202 P 43.0665479 -74.65976 2015-05-04 11:00:00 obsr1000124 S23231899 Traveling P22 EBIRD 140.0 4.506 2.0 1 G1252395 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS427911074 2021-03-19 16:19:20.977326 505 species avibase-C732CB10 American Black Duck Anas rubripes 5 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Times Beach Nature Preserve L811486 H 42.8742747 -78.8825647 2015-05-14 07:30:00 obsr318741 S31438720 Traveling P22 EBIRD 90.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299615496 2021-03-30 19:43:32.881136 505 species avibase-C732CB10 American Black Duck Anas rubripes N 12 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-25 11:30:00 obsr1832377 S22074059 Stationary P21 EBIRD 25.0 2.0 1 G1159867 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320247426 2021-03-30 19:07:52.958398 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 07:30:00 obsr1152226 S23476590 Traveling P22 EBIRD 270.0 3.219 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300291212 2020-05-16 18:13:11 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 1 United States US New York US-NY Otsego US-NY-077 28.0 by the falls on Susquehanna, off Rt 23, across from Southside Mall L3436997 P 42.4492302 -75.0423396 2015-02-28 16:10:00 obsr131845 S22127329 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312900946 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-25 15:15:00 obsr1659461 S23054001 Traveling P22 EBIRD 45.0 1.609 2.0 1 G2865415 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311319533 2018-08-04 17:08:49 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Warren US-NY-113 14.0 Up Yonda Farm EEC L3469115 H 43.5761802 -73.6543977 2015-04-12 10:45:00 obsr2019190 S22948974 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308078960 2021-04-01 12:32:15.282601 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-06 14:00:00 obsr547602 S22724709 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310094882 2018-08-04 17:09:01 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 20 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Tschache Pool L99391 H 42.9892318 -76.7711279 2015-04-13 09:49:00 obsr2683910 S22868763 Stationary P21 EBIRD 6.0 2.0 1 G1220003 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319272816 2021-11-09 19:02:27.638861 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-05-13 07:00:00 obsr2700041 S23422373 Traveling P22 EBIRD 330.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306553185 2021-03-19 16:43:17.120646 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Madison US-NY-053 28.0 Mason Hill, Hamilton, NY L2591505 P 42.8259191 -75.5196977 2015-03-31 14:00:00 obsr2843748 S22613896 Traveling P22 EBIRD 75.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293377915 2018-08-04 16:55:19 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, Deep Run Park, Gorham L661694 H 42.8205251 -77.2593784 2015-01-26 12:43:00 obsr1243175 S21552613 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS348685357 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-07 obsr647628 S25469775 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290876612 2021-03-30 19:29:33.633096 11494 species avibase-20C2214E American Kestrel Falco sparverius X United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-13 08:00:00 obsr916370 S21334914 Traveling P22 EBIRD 110.0 3.058 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300162427 2021-03-30 06:01:28.020715 8773 species avibase-7AA076EF Barred Owl Strix varia 37 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-28 13:30:00 obsr324569 S22116910 Traveling P22 EBIRD 130.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294266332 2021-03-26 06:29:56.44369 11494 species avibase-20C2214E American Kestrel Falco sparverius N 3 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-01-31 07:50:00 obsr2449897 S21623478 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316500660 2021-11-15 03:06:58.889978 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 09:00:00 obsr98313 S23266451 Traveling P22 EBIRD 270.0 4.828 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313780329 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 08:30:00 obsr145923 S23108484 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291831693 2021-03-26 06:29:56.44369 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 5 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-01-18 13:00:00 obsr1269398 S21410955 Traveling P22 EBIRD 60.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305914511 2021-04-01 11:15:31.646886 7200 species avibase-49D9148A Great Egret Ardea alba N 7 United States US New York US-NY Kings US-NY-047 Canarsie Pier L247765 H 40.6287773 -73.8836704 2015-03-28 08:05:00 obsr2519357 S22565391 Traveling P22 EBIRD 40.0 0.322 11.0 1 G1195440 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320544474 2021-04-01 11:30:42.037277 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-17 09:30:00 obsr145923 S23492077 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311193876 2021-03-19 16:02:45.308962 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Broome US-NY-007 28.0 Kiebel Road L212515 P 42.3459785 -75.979822 2015-04-19 06:50:00 obsr646558 S22941382 Traveling P22 EBIRD 40.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299032880 2021-11-09 20:19:38.948671 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 12 United States US New York US-NY Orange US-NY-071 28.0 Euclid Avenue L6537484 P 41.4347477 -74.4307208 2015-02-21 08:00:00 obsr1544235 S22027513 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298482930 2021-03-22 09:17:32.016297 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-02-19 06:45:00 obsr2812831 S21981013 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309398907 2018-08-04 17:08:53 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Reservoir L2133605 H 42.4125738 -76.4588892 2015-04-12 12:52:00 obsr59643 S22820064 Traveling P22 EBIRD 42.0 0.322 2.0 1 G1217114 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS627776297 2021-04-01 11:30:42.037277 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-12 07:30:00 obsr251507 S46307274 Traveling P22 EBIRD 240.0 3.219 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288555344 2021-04-01 11:43:48.927316 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Ontario US-NY-069 13.0 Muar Lake west, Canandaigua L786557 H 42.8801468 -77.2634339 2015-01-02 13:35:00 obsr354090 S21147398 Stationary P21 EBIRD 23.0 2.0 1 G1091403 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308413800 2021-03-26 07:07:10.758746 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-08 07:40:00 obsr1958124 S22750283 Traveling P22 EBIRD 6.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317889201 2021-03-26 07:52:59.845315 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 Female, Adult (3); Male, Adult (4) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-09 12:50:00 obsr1000124 S23345055 Area P23 EBIRD 60.0 2.59 2.0 1 G1266723 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311505192 2021-03-19 16:14:11.035882 33031 issf avibase-90B0892B Palm Warbler Setophaga palmarum Palm Warbler (Yellow) Setophaga palmarum hypochrysea 2 United States US New York US-NY Cortland US-NY-023 28.0 Upper Little York Lake L2712885 H 42.7019606 -76.1568832 2015-04-20 06:44:00 obsr1696616 S22960443 Traveling P22 EBIRD 5.0 0.805 2.0 1 G1346337 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289044190 2015-01-04 14:15:21 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 5 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-01-04 13:07:00 obsr2574755 S21188253 Traveling P22 EBIRD 67.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307290547 2021-11-09 21:50:48.44865 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-03 18:45:00 obsr1446126 S22668781 Traveling P22 EBIRD 45.0 1.609 2.0 1 G1203334 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312807389 2021-04-01 11:15:31.646886 11371 species avibase-75600969 Northern Flicker Colaptes auratus 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-25 08:45:00 obsr827632 S23048720 Traveling P22 EBIRD 195.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302181744 2016-07-31 19:46:53 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Westchester US-NY-119 28.0 Charles Point, Peekskill L651242 H 41.2780121 -73.9418079 2015-03-09 12:30:00 obsr1917973 S22270303 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315963942 2021-11-15 03:06:58.889978 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 16 Male, Adult (7); Female, Adult (2); Unknown Sex, Adult (7) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 10:15:00 obsr1548221 S23235160 Traveling P22 EBIRD 271.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311090646 2021-09-08 17:22:56.334642 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 8 United States US New York US-NY Oswego US-NY-075 13.0 Home L9190121 P 43.6053848 -76.1471608 2015-04-18 12:10:00 obsr193855 S22935343 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312681889 2021-11-09 19:47:28.242585 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR - Winding River Trail L2367403 P 41.2883842 -74.5329666 2015-04-16 17:00:00 obsr1872991 S23040732 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303688030 2021-03-23 17:32:20.03109 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Pompey Estey Rd L2720155 P 42.905839 -75.9615326 2015-03-14 07:30:00 obsr2290617 S22394699 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292999344 2015-01-24 19:03:37 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 5 United States US New York US-NY Clinton US-NY-019 13.0 Marsh to east of Dead Creek L3314829 P 44.5695185 -73.4285107 2015-01-24 12:30:00 obsr1342647 S21523098 Traveling P22 EBIRD 150.0 4.828 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309137981 2021-04-01 11:30:42.037277 406 species avibase-27B2749A Wood Duck Aix sponsa N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-11 10:30:00 obsr2206421 S22803265 Traveling P22 EBIRD 95.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300893249 2021-03-26 07:30:35.289997 292 species avibase-60214D49 Cackling Goose Branta hutchinsii 6 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-04 12:18:00 obsr2074043 S22171189 Stationary P21 EBIRD 24.0 1.0 1 G1166506 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293847487 2019-07-23 17:27:11 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 42 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point SP L109151 H 41.0719093 -71.8838119 2015-01-25 10:07:00 obsr1987335 S21590447 Stationary P21 EBIRD 86.0 2.0 1 G1128213 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306928701 2021-03-24 21:13:42.099821 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 25 United States US New York US-NY Westchester US-NY-119 30.0 Stone Barns Center for Food and Agriculture L596032 H 41.1000516 -73.8308716 2015-04-02 09:30:00 obsr473055 S22642008 Traveling P22 EBIRD 75.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299202938 2021-03-26 07:42:06.558742 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Washington US-NY-115 13.0 Kingsbury Rd L1475049 P 43.3647344 -73.5123533 2015-02-23 09:53:00 obsr1222746 S22042311 Traveling P22 EBIRD 45.0 3.38 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312814800 2021-04-01 12:32:15.282601 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-25 09:30:00 obsr676630 S23049112 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 0.805 25.0 1 G1254777 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS321457707 2021-11-09 18:47:30.124634 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Dutchess US-NY-027 28.0 Pawling, Appalachian Trail L3659262 P 41.59524 -73.64777 2015-05-20 09:20:00 obsr590008 S23546686 Traveling P22 EBIRD 120.0 5.793 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292524779 2021-03-30 19:43:32.881136 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-01-21 14:00:00 obsr114791 S21485819 Traveling P22 EBIRD 40.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315252359 2021-04-01 11:47:43.260314 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-03-13 07:15:00 obsr2409011 S23196691 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321729204 2018-08-06 22:30:44 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Iroquois NWR--Swallow Hollow Trail L771567 H 43.1254425 -78.3256102 2015-05-21 13:15:00 obsr916033 S23563081 Traveling P22 EBIRD 83.0 3.219 2.0 1 G1281890 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306007418 2018-08-04 17:04:36 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-03-29 09:35:00 obsr934639 S22572174 Stationary P21 EBIRD 50.0 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308114592 2021-04-01 10:58:47.067498 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 6 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-04-06 13:32:00 obsr2588479 S22727547 Traveling P22 EBIRD 76.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309364762 2018-01-07 20:13:45 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 6 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-04-12 11:21:00 obsr2420101 S22818058 Stationary P21 EBIRD 35.0 2.0 1 G1215893 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289951406 2021-11-09 22:39:08.424847 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Sullivan US-NY-105 28.0 Duck Harbor Pond CBC - NY L2516210 P 41.7898387 -75.0069237 2015-01-07 06:45:00 obsr1624964 S21259901 Traveling P22 EBIRD 120.0 28.164 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315073352 2017-12-21 12:25:41 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Columbia US-NY-021 13.0 Olana State Historic Site L357372 H 42.2183005 -73.8287207 2015-05-02 07:59:00 obsr440908 S23186633 Traveling P22 EBIRD 303.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291553860 2018-08-04 16:53:27 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 20 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-01-17 09:20:00 obsr119187 S21389727 Stationary P21 EBIRD 8.0 2.0 1 G1112757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289050869 2018-08-04 16:52:45 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 1 United States US New York US-NY Essex US-NY-031 13.0 US-NY-Ticonderoga-93 Outlet Dr L3265558 P 43.829153 -73.428275 2015-01-04 14:34:00 obsr822321 S21188766 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313478005 2021-03-30 18:54:05.959583 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-04-09 10:00:00 obsr98313 S23089504 Traveling P22 EBIRD 45.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306127399 2021-11-09 21:31:09.655151 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 2 United States US New York US-NY Ulster US-NY-111 28.0 Yard Patch L1431340 P 42.110472 -74.032592 2015-03-29 14:00:00 obsr1110743 S22580982 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304018363 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 26 United States US New York US-NY Albany US-NY-001 13.0 University at Albany SUNY--Wetland Mitigation Project L1910024 H 42.67859 -73.82207 2015-03-19 08:39:00 obsr2512689 S22420310 Traveling P22 EBIRD 76.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304462622 2015-03-21 18:02:34 7429 species avibase-1327AC55 Osprey Pandion haliaetus 4 United States US New York US-NY Jefferson US-NY-045 US-NY-Watertown - 44.0055x-76.0460 - Mar 21, 2015, 6:00 PM L3504145 P 44.005451 -76.045997 2015-03-21 10:45:00 obsr891847 S22454501 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309932975 2021-03-26 07:30:35.289997 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Rockwell Azalea Garden L269457 H 42.4478844 -76.4806044 2015-04-14 08:39:00 obsr2634885 S22857297 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296812856 2021-04-01 12:14:19.266649 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 3 United States US New York US-NY Suffolk US-NY-103 Lake Montauk Inlet, east side L280126 H 41.0778598 -71.9366662 2015-02-14 11:55:00 obsr717785 S21832414 Stationary P21 EBIRD 15.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306762042 2021-04-01 12:32:15.282601 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-13 09:00:00 obsr2218212 S22629547 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291838800 2015-01-19 00:07:29 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 Unknown Sex, Immature (1) United States US New York US-NY Jefferson US-NY-045 13.0 maxson airfield L3302750 P 44.3171772 -75.8947992 2015-01-18 11:30:00 obsr2056110 S21411398 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311188019 2021-04-01 12:18:57.910168 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 1 Male, Adult (1) United States US New York US-NY Tompkins US-NY-109 13.0 Washington Street, Trumansburg, NY L1365739 P 42.547329 -76.6643316 2015-04-19 08:50:00 obsr982339 S22941069 Traveling P22 EBIRD 55.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312776227 2017-08-16 17:08:46 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 10 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 11:55:00 obsr1092576 S23046771 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS973377394 2021-03-24 19:28:50.176616 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla N X United States US New York US-NY Columbia US-NY-021 14.0 Steepletop, Edna St. Vincent Millay's home L3664883 H 42.3142817 -73.452487 2015-05-17 08:00:00 obsr712650 S72914747 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291449808 2022-01-09 18:48:43.534861 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY New York US-NY-061 30.0 Greenwich Village (14th St.-Houston St.; Broadway-Hudson River) L3238737 H 40.7342063 -74.0027145 2015-01-10 10:30:00 obsr2235775 S21381360 Traveling P22 EBIRD 240.0 8.047 2.0 1 G1111987 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311571770 2017-09-09 13:29:46 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail, Sherwood Pltform base - West Trail (0.137km) L1369671 P 42.4793682 -76.4546071 2015-04-20 08:36:00 obsr2307843 S22964813 Traveling P22 EBIRD 10.0 0.15 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312640433 2018-04-16 15:51:00 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 2 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-24 16:00:00 obsr2716320 S23037741 Traveling P22 EBIRD 90.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307199136 2021-03-22 09:17:32.016297 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Oneida US-NY-065 13.0 Sylvan Beach L509883 H 43.1939135 -75.731163 2015-04-03 14:05:00 obsr666964 S22662134 Stationary P21 EBIRD 10.0 2.0 1 G1202725 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299012933 2021-04-01 11:49:53.573686 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-02-22 13:45:00 obsr2189493 S22025306 Traveling P22 EBIRD 150.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297924339 2021-03-26 06:09:25.361188 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-02-17 08:15:00 obsr879105 S21932674 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318431658 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-09 05:59:00 obsr924076 S23374379 Traveling P22 EBIRD 155.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307410781 2021-04-01 11:47:43.260314 26890 species avibase-94A44032 European Starling Sturnus vulgaris 9 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-03 12:00:00 obsr2744341 S22677766 Stationary P21 EBIRD 340.0 2.0 1 G1203977 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293966451 2015-01-31 21:39:13 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 14 United States US New York US-NY Kings US-NY-047 Canarsie Pier L247765 H 40.6287773 -73.8836704 2015-01-30 08:58:00 obsr1821546 S21599875 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522650 2018-08-04 17:08:07 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-08 14:37:00 obsr155915 S22758854 Traveling P22 EBIRD 5.0 0.322 2.0 1 G1211588 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300561453 2021-03-23 17:26:08.495143 456 species avibase-D201EB72 American Wigeon Mareca americana 30 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-21 13:00:00 obsr1987335 S22146438 Traveling P22 EBIRD 90.0 3.219 2.0 1 G1165032 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311613514 2020-01-16 17:00:36 431 species avibase-90E2543E Blue-winged Teal Spatula discors 28 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-20 10:44:00 obsr1213920 S22968091 Stationary P21 EBIRD 261.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304377123 2021-11-09 19:13:30.171485 11494 species avibase-20C2214E American Kestrel Falco sparverius 1 Unknown Sex, Immature (1) United States US New York US-NY Dutchess US-NY-027 28.0 Home Acre, Fishkill L763458 P 41.5211579 -73.8836306 2015-03-20 19:00:00 obsr1259654 S22448361 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294140801 2015-01-31 13:06:45 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--Snyder Rd. L763841 H 42.4976053 -76.4600587 2015-01-31 10:30:00 obsr241086 S21613517 Traveling P22 EBIRD 18.0 1.931 2.0 1 G1130000 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307944675 2021-03-26 07:30:35.289997 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 7 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-06 08:36:00 obsr1655171 S22715456 Stationary P21 EBIRD 19.0 2.0 1 G1212805 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295530013 2021-03-26 07:30:35.289997 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 3 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-02-08 08:10:00 obsr2871406 S21724571 Stationary P21 EBIRD 12.0 3.0 1 G1138945 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315476781 2021-03-19 16:44:35.607263 6339 species avibase-8535345B Herring Gull Larus argentatus 18 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-02 08:53:00 obsr334398 S23208349 Traveling P22 EBIRD 30.0 0.113 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298287670 2021-03-26 06:07:45.516082 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-02-18 10:30:00 obsr1659461 S21963700 Traveling P22 EBIRD 300.0 16.093 2.0 1 G1152399 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298823077 2022-02-17 14:32:23.002448 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-21 15:45:00 obsr1516787 S22010009 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308517841 2015-04-08 17:47:22 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 2 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Perry Road L3549028 P 41.0908747 -73.8233078 2015-04-08 14:20:00 obsr1742994 S22758497 Traveling P22 EBIRD 30.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302324364 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-10 08:40:00 obsr531522 S22285955 Traveling P22 EBIRD 270.0 4.828 3.0 1 G1174182 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309367731 2021-04-01 12:14:19.266649 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-12 09:07:00 obsr1228860 S22818240 Traveling P22 EBIRD 164.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309310008 2021-11-09 19:57:48.990233 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-12 07:27:00 obsr1092576 S22814699 Traveling P22 EBIRD 19.0 0.402 2.0 1 G1216683 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301962369 2022-03-08 13:50:22.901821 28886 species avibase-AEF821EC Bohemian Waxwing Bombycilla garrulus 15 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-03-08 12:03:00 obsr2343626 S22253380 Traveling P22 EBIRD 60.0 2.414 2.0 1 G1171958 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312723635 2018-08-04 17:12:05 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Steuben US-NY-101 28.0 Almond Lake L268790 H 42.3492255 -77.7133725 2015-04-25 07:53:00 obsr1092576 S23043473 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304198404 2021-04-01 11:54:40.172593 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-03-20 08:16:00 obsr1893950 S22434754 Stationary P21 EBIRD 243.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301825768 2021-03-26 07:56:20.588749 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 4 United States US New York US-NY Nassau US-NY-059 30.0 New Hyde Park Yard: Nassau County L2082174 P 40.7269986 -73.6824596 2015-03-01 obsr407134 S22243452 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296488259 2021-04-01 12:32:15.282601 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-13 10:40:00 obsr916370 S21802963 Traveling P22 EBIRD 105.0 3.541 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308887866 2019-09-29 09:48:34 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 19 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-10 08:30:00 obsr1213920 S22786256 Stationary P21 EBIRD 225.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313823570 2020-07-14 13:04:34 26278 species avibase-A381417F House Wren Troglodytes aedon 11 United States US New York US-NY Lewis US-NY-049 14.0 Castorland- Ridge Rd L3597879 P 43.886415 -75.50903 2015-04-28 13:42:00 obsr642516 S23111273 Traveling P22 EBIRD 107.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292775678 2021-03-26 07:07:10.758746 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-23 14:33:00 obsr1958124 S21505472 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313870695 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-28 10:00:00 obsr827632 S23114304 Traveling P22 EBIRD 240.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288895478 2021-03-30 19:39:10.250398 303 species avibase-B59E1863 Canada Goose Branta canadensis 25 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-03 07:41:00 obsr1615708 S21176774 Traveling P22 EBIRD 266.0 3.219 3.0 1 G1094198 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308639957 2021-11-09 21:53:09.607373 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Ulster US-NY-111 13.0 HITS property L299880 P 42.0902699 -73.9452838 2015-04-09 10:22:00 obsr118701 S22767668 Traveling P22 EBIRD 79.0 4.345 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292644283 2015-01-22 15:59:39 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Greene US-NY-039 28.0 Freehold Backyard L2621415 P 42.3633957 -74.0563059 2015-01-22 15:30:00 obsr1188777 S21495165 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305207965 2021-11-09 19:21:07.406501 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-03-25 07:45:00 obsr671490 S22511098 Rusty Blackbird Spring Migration Blitz P41 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319372505 2018-08-06 22:29:51 31600 species avibase-9BEBC025 Snow Bunting Plectrophenax nivalis 1 United States US New York US-NY Albany US-NY-001 13.0 Louise E. Keir WMA L3020762 H 42.5122671 -73.888236 2015-05-13 17:40:00 obsr1154 S23427935 Traveling P22 EBIRD 70.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310337387 2016-10-11 17:00:32 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 48 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip D L3559811 P 40.162933 -73.250983 2015-04-11 10:00:00 obsr2883074 S22885216 Traveling P22 EBIRD 120.0 32.187 45.0 1 G1221326 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298982107 2021-09-08 17:22:56.334642 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Oswego US-NY-075 13.0 Home L9190121 P 43.6053848 -76.1471608 2015-02-22 13:00:00 obsr193855 S22022774 Stationary P21 EBIRD 60.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299028534 2021-03-19 16:32:34.732091 6339 species avibase-8535345B Herring Gull Larus argentatus 20 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-22 08:00:00 obsr800463 S22026663 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310014196 2021-03-30 19:07:52.958398 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-14 07:30:00 obsr2363365 S22862909 Traveling P22 EBIRD 330.0 4.828 4.0 1 G1226171 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320364072 2021-03-26 06:39:43.334073 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Maintenance Meadow L719748 H 40.7778421 -73.9679231 2015-05-16 09:20:00 obsr1560381 S23482566 Traveling P22 EBIRD 25.0 0.2 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323809415 2018-08-06 22:31:23 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 US-NY-Salamanca - 42.1261x-78.7049 - May 29, 2015, 2:50 PM L3682733 P 42.126149 -78.70494 2015-05-29 14:50:00 obsr2588479 S23695616 Traveling P22 EBIRD 95.0 6.437 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291628320 2015-01-18 10:50:58 6339 species avibase-8535345B Herring Gull Larus argentatus 9 United States US New York US-NY Greene US-NY-039 13.0 Coxsackie Boat Launch L474746 H 42.3533746 -73.7957346 2015-01-18 10:49:00 obsr1181085 S21395481 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317201568 2021-03-30 19:13:38.458673 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-05-08 09:22:00 obsr334398 S23306001 Traveling P22 EBIRD 50.0 0.322 2.0 1 G1257533 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323803608 2018-08-04 17:30:36 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-05-29 15:51:00 obsr1165633 S23695215 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317234770 2021-03-19 16:19:20.977326 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2146060 H 42.756017 -78.862009 2015-05-08 10:29:00 obsr502830 S23307893 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298639439 2021-03-24 20:21:40.993321 591 species avibase-1929E1E1 Canvasback Aythya valisineria 2 United States US New York US-NY Seneca US-NY-099 13.0 Cove L678244 P 42.6487254 -76.8698493 2015-02-20 obsr2731440 S21993932 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304775430 2021-03-30 19:07:52.958398 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-22 11:45:00 obsr1536880 S22477682 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309786130 2021-03-24 21:06:05.39641 7429 species avibase-1327AC55 Osprey Pandion haliaetus 4 United States US New York US-NY Onondaga US-NY-067 13.0 Onondaga Lake Park--West Shore Trail, Lakeview Point L2992400 H 43.0894736 -76.2202692 2015-04-13 10:00:00 obsr2143830 S22846835 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319229489 2021-03-30 19:07:52.958398 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-13 09:15:00 obsr1536880 S23420064 Traveling P22 EBIRD 50.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315440811 2021-03-24 19:35:34.045988 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-03 08:35:00 obsr319738 S23206357 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319324682 2015-10-17 16:11:51 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-13 06:20:00 obsr1886281 S23425318 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305961434 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 8 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-03-28 12:25:00 obsr1189028 S22568798 Traveling P22 EBIRD 110.0 2.012 11.0 1 G1195436 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321562497 2021-11-15 03:06:58.889978 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-20 16:55:00 obsr2277801 S23552891 Historical P62 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316433247 2021-03-24 19:48:44.880783 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 2 United States US New York US-NY Monroe US-NY-055 13.0 Mt. Hope Cemetery L249453 H 43.1287817 -77.6206675 2015-05-06 08:40:00 obsr1958774 S23262631 Traveling P22 EBIRD 55.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309073845 2021-03-19 16:12:42.877422 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 10 United States US New York US-NY Columbia US-NY-021 13.0 Ooms Conservation Area at Sutherland Pond L472635 H 42.4036111 -73.5694444 2015-04-11 08:00:00 obsr2766625 S22799289 Traveling P22 EBIRD 180.0 2.414 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313722356 2021-03-23 17:00:13.087107 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--office 248 L286682 P 42.4804061 -76.4510196 2015-04-27 08:30:00 obsr2001485 S23104817 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291830607 2015-01-18 23:16:32 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 12 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach L3302659 P 40.5889282 -73.5314941 2015-01-10 12:30:00 obsr872554 S21410874 Traveling P22 EBIRD 150.0 3.219 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135333 2021-03-26 07:56:20.588749 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-28 09:00:00 obsr2218212 S23589163 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318395596 2021-04-01 11:15:31.646886 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-10 12:30:00 obsr2448957 S23372408 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307755833 2021-04-01 11:24:19.637193 279 species avibase-3E04020B Brant Branta bernicla 3 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-04-05 12:45:00 obsr2504709 S22701531 Traveling P22 EBIRD 45.0 0.644 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312309732 2021-11-09 18:32:29.515581 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Dutchess US-NY-027 13.0 Duell Road, Stanfordville NY L2353025 P 41.8521016 -73.6797613 2015-04-23 10:00:00 obsr1917973 S23014154 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296476283 2021-03-23 17:00:13.087107 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-02-13 13:53:00 obsr1092576 S21801798 Traveling P22 EBIRD 6.0 0.032 4.0 1 G1144786 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS331317140 2022-02-17 14:32:23.002448 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-02 08:30:00 obsr117100 S24231683 Traveling P22 EBIRD 150.0 1.931 5.0 1 G1247128 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303300040 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-15 09:25:00 obsr856524 S22363756 Traveling P22 EBIRD 200.0 2.414 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310882159 2021-03-23 17:00:13.087107 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom39 L3513981 H 42.5385919 -76.3764558 2015-04-18 11:21:00 obsr1696616 S22922188 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310226433 2021-03-24 20:49:01.185993 33041 issf avibase-524C7116 Yellow-rumped Warbler Setophaga coronata Yellow-rumped Warbler (Myrtle) Setophaga coronata coronata 8 United States US New York US-NY Washington US-NY-115 13.0 Feeder Canal Trail--Towpath Ln, Kingsbury, NY L2590408 P 43.2927432 -73.5600543 2015-04-15 06:22:00 obsr1222746 S22877564 Rusty Blackbird Spring Migration Blitz P41 EBIRD 73.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302955743 2021-04-01 11:54:40.172593 5770 species avibase-95E28A57 Semipalmated Plover Charadrius semipalmatus 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-03-13 08:00:00 obsr666331 S22337047 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288493406 2021-03-23 17:14:01.933181 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 2 United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 Swamp Rd L2455900 P 43.2604561 -73.5434031 2015-01-02 12:57:00 obsr1222746 S21141976 Traveling P22 EBIRD 7.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301874719 2022-02-17 14:32:23.002448 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-08 13:30:00 obsr2448957 S22247141 Traveling P22 EBIRD 330.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312786278 2021-04-01 11:30:42.037277 32220 species avibase-AF49F890 Lincoln's Sparrow Melospiza lincolnii 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 09:11:00 obsr2313260 S23047326 Traveling P22 EBIRD 194.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321414915 2021-03-24 20:58:04.794277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Herkimer US-NY-043 13.0 Soncody Road (between Albany and Foster) L2875073 P 42.9502624 -75.1736069 2015-05-19 15:00:00 obsr1680059 S23543987 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305300474 2021-03-23 17:00:13.087107 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 3 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-25 07:45:00 obsr2430746 S22518396 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313734493 2018-02-01 15:11:46 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cortland US-NY-023 28.0 AviCor16 L3513958 H 42.6625316 -76.0726389 2015-04-28 07:15:00 obsr620377 S23105635 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307643786 2018-08-04 17:05:31 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Onondaga US-NY-067 13.0 Home, Thatchwood Dr., Manlius L1789277 P 43.008956 -76.0102533 2015-04-05 07:10:00 obsr724731 S22693711 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321158381 2021-04-01 12:14:19.266649 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-14 07:40:00 obsr1137265 S23528390 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313501846 2018-04-16 15:51:00 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-04-27 08:30:00 obsr2843748 S23090998 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312960357 2021-03-26 06:12:17.833181 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-04-25 12:25:00 obsr979921 S23057649 Traveling P22 EBIRD 20.0 0.805 2.0 0 G1236020 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310169065 2016-03-11 09:00:40 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson trail west split n side main pond (on small bridge) L301742 P 42.4804482 -76.4531896 2015-04-15 08:02:00 obsr2307843 S22873869 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296126860 2021-11-09 21:57:08.616913 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Ulster US-NY-111 28.0 Old Fort Road, Wallkill L3353674 P 41.6318244 -74.2301226 2015-02-10 09:15:00 obsr763723 S21771149 Stationary P21 EBIRD 375.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314078572 2015-05-04 18:06:23 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-29 13:30:00 obsr1889800 S23127159 Stationary P21 EBIRD 6.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299776733 2021-04-01 11:15:31.646886 8481 species avibase-34D6EE78 Great Horned Owl Bubo virginianus 6 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-02-26 15:00:00 obsr2448957 S22086388 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316053434 2021-03-26 07:46:52.994574 505 species avibase-C732CB10 American Black Duck Anas rubripes 6 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-05 06:11:00 obsr2321296 S23240709 Traveling P22 EBIRD 260.0 3.54 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290845211 2021-03-26 07:07:10.758746 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris N 25 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-01-13 14:30:00 obsr1958124 S21332063 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307246234 2021-04-01 12:39:55.985714 483 species avibase-85625D75 Mallard Anas platyrhynchos N 1 United States US New York US-NY Rensselaer US-NY-083 13.0 Coopers Pond, Brunswick L1008485 H 42.7363667 -73.6531746 2015-04-03 18:10:00 obsr2211210 S22665638 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292608265 2015-01-22 12:24:23 662 species avibase-FB738385 Bufflehead Bucephala albeola 6 United States US New York US-NY Rensselaer US-NY-083 13.0 West Sand Lake, NY 1 L1766939 P 42.6226389 -73.6175931 2015-01-22 11:30:00 obsr2186523 S21492539 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309963653 2018-12-30 09:54:38 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Albany US-NY-001 28.0 Basic Creek Reservoir (access permit required) L1152329 H 42.4853825 -74.0201926 2015-04-14 09:43:00 obsr2321296 S22859431 Stationary P21 EBIRD 25.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316970617 2020-03-15 09:14:53 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-07 15:00:00 obsr303203 S23293358 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1256465 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308752714 2021-03-23 17:00:13.087107 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-05 10:44:00 obsr2683910 S22776700 Traveling P22 EBIRD 12.0 0.483 2.0 1 G1212772 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313749774 2015-04-28 10:21:32 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 6 United States US New York US-NY Oswego US-NY-075 13.0 Oswego County Airport--Howard Rd. L1814858 H 43.3553061 -76.3795964 2015-04-25 14:40:00 obsr1190754 S23106559 Stationary P21 EBIRD 30.0 7.0 1 G1240141 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323575167 2021-04-01 11:15:31.646886 622 species avibase-50566E50 Lesser Scaup Aythya affinis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 07:00:00 obsr2363365 S23678311 Traveling P22 EBIRD 360.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306956525 2021-03-26 06:15:05.840405 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 19 United States US New York US-NY Cortland US-NY-023 28.0 Upper Little York Lake L2712885 H 42.7019606 -76.1568832 2015-04-02 14:05:00 obsr1696616 S22644146 Traveling P22 EBIRD 7.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312619572 2021-11-09 20:37:49.117197 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 2 United States US New York US-NY Putnam US-NY-079 28.0 Manitou Point Preserve L1070091 H 41.3373022 -73.96174 2015-04-24 17:03:00 obsr2188716 S23036332 Traveling P22 EBIRD 58.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288158593 2019-09-10 13:56:02 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 20 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-01-01 12:18:00 obsr800690 S21114131 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308556926 2021-04-01 11:24:19.637193 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--South Marina L458871 H 43.3060838 -77.7083373 2015-04-08 12:37:00 obsr2270510 S22761572 Traveling P22 EBIRD 13.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310797944 2021-05-10 13:22:42.125601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--DIL Woods & Mohawk Rd. L99395 H 42.4959541 -76.4513443 2015-04-17 19:55:00 obsr763445 S22916696 Stationary P21 EBIRD 30.0 5.0 1 G1223458 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321047740 2021-03-30 19:13:38.458673 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-18 17:48:00 obsr934639 S23521282 Traveling P22 EBIRD 92.0 1.207 2.0 1 G1337410 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308351999 2021-03-19 16:25:42.617988 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 8 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-04-07 18:42:00 obsr2693145 S22745726 Traveling P22 EBIRD 72.0 1.609 2.0 1 G1210540 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS362505802 2021-03-26 07:45:44.030579 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 7 United States US New York US-NY Wyoming US-NY-121 28.0 2700 Centerline Road, Varysburg L11026787 P 42.736555 -78.3020117 2015-02-22 08:00:00 obsr2888451 S26583076 Stationary P21 EBIRD 360.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310014014 2018-08-04 17:09:07 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 2 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-14 08:30:00 obsr1472872 S22862894 Traveling P22 EBIRD 75.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308019364 2015-04-06 13:56:43 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-05 11:45:00 obsr1167884 S22720462 Traveling P22 EBIRD 35.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310518750 2016-02-07 21:13:47 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Ontario US-NY-069 13.0 Shortsville Rd. X Payne Rd., Farmington L800361 H 42.9615545 -77.3038334 2015-04-16 19:09:00 obsr749440 S22898062 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314539159 2021-03-23 16:29:02.691496 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Orleans US-NY-073 13.0 Gaines-Waterport Rd L2408367 P 43.2855406 -78.2156423 2015-04-30 13:00:00 obsr137150 S23155889 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323506645 2022-03-06 22:19:43.839237 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Hamilton US-NY-041 14.0 Ferd's Bog L109141 H 43.7886933 -74.749732 2015-05-23 08:45:00 obsr1311434 S23673622 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293871226 2021-04-01 12:18:57.910168 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N X United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-01-28 08:00:00 obsr835300 S21592580 Stationary P21 EBIRD 30.0 3.0 1 G1128299 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317666238 2018-08-06 22:29:20 7011 species avibase-534FB490 Northern Gannet Morus bassanus X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-09 06:17:00 obsr1044068 S23333279 Traveling P22 EBIRD 220.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288526268 2018-08-04 16:52:31 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea X United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-01-02 14:29:00 obsr488746 S21144737 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291620886 2021-03-24 20:23:39.258075 26278 species avibase-A381417F House Wren Troglodytes aedon 3 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-01-17 12:20:00 obsr564905 S21394855 Traveling P22 EBIRD 120.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303897801 2021-03-24 20:56:44.139453 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-03-17 11:30:00 obsr2475075 S22411279 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315881903 2021-04-01 11:15:31.646886 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 06:04:00 obsr150415 S23230526 Traveling P22 EBIRD 419.0 4.828 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294145432 2021-03-30 19:19:16.341534 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 12 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Niagara--Lewiston (NY) L356887 H 43.174301 -79.04921 2015-01-31 13:00:00 obsr991026 S21613886 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306363711 2021-04-01 11:54:40.172593 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-03-30 09:57:00 obsr1032565 S22598873 Traveling P22 EBIRD 221.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306422047 2015-03-30 21:43:13 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Fulton US-NY-035 13.0 route 331 south of cr 108 L2814675 P 43.0371983 -74.7148418 2015-02-26 09:25:00 obsr2694889 S22603507 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323263178 2021-03-26 07:52:59.845315 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 Female, Adult (2) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-22 07:20:00 obsr316199 S23656955 Area P23 EBIRD 75.0 2.59 2.0 1 G1292246 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1280006581 2021-11-19 14:08:02.0826 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY New York US-NY-061 30.0 west 11th and 4th L16923199 P 40.7361767 -74.003375 2015-01-03 obsr2789405 S97777348 Historical P62 EBIRD 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS317643468 2018-02-01 15:11:46 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor21 L3513963 H 42.6488131 -76.0917255 2015-05-09 15:44:00 obsr620377 S23332037 Stationary P21 EBIRD 15.0 2.0 1 G1272230 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309766944 2021-03-26 07:17:57.136956 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-13 10:00:00 obsr731475 S22845576 Traveling P22 EBIRD 60.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325234571 2018-08-06 22:31:11 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Livingston US-NY-051 13.0 US-NY-PORTAGE, 625 NY-436 L3579171 P 42.574927 -78.013591 2015-05-26 07:39:00 obsr731272 S23792655 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292520629 2021-04-01 12:32:15.282601 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-21 09:15:00 obsr2404509 S21485512 Traveling P22 EBIRD 125.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310964416 2021-03-23 16:39:03.255227 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Richmond US-NY-085 US-NY_818 30.0 Old Place Creek--Western Ave. L890084 H 40.6293718 -74.1866482 2015-04-18 15:46:00 obsr1958124 S22927312 Stationary P21 EBIRD 2.0 3.0 1 G1224786 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313519049 2021-03-26 06:55:00.227271 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Honeoye Creek Trail Behind Library L3301565 P 42.7909235 -77.5149548 2015-04-27 11:50:00 obsr39511 S23091975 Traveling P22 EBIRD 55.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306064556 2021-04-01 12:32:15.282601 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-03-29 11:10:00 obsr2505956 S22576165 Traveling P22 EBIRD 150.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290568652 2018-08-04 16:53:11 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 25 United States US New York US-NY Suffolk US-NY-103 30.0 Reeves Ave. and Roanoake Ave. vicinity L2691333 H 40.9544584 -72.6921648 2015-01-11 16:10:00 obsr150415 S21309925 Stationary P21 EBIRD 20.0 3.0 1 G1106363 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307642573 2021-03-26 08:05:20.615241 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 Male, Adult (1) United States US New York US-NY Onondaga US-NY-067 13.0 Home, Thatchwood Dr., Manlius L1789277 P 43.008956 -76.0102533 2015-04-04 11:30:00 obsr724731 S22693619 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296759068 2019-07-23 17:27:21 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 17 United States US New York US-NY Suffolk US-NY-103 30.0 Duck Pond L142880 P 41.0376472 -72.5206833 2015-02-14 13:35:00 obsr2485753 S21827791 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314593037 2021-04-01 11:54:40.172593 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens N X United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-04-30 08:00:00 obsr666331 S23159203 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310907249 2021-03-30 19:43:32.881136 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-04-18 09:40:00 obsr1585090 S22923724 Traveling P22 EBIRD 200.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309972578 2021-04-01 11:47:43.260314 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 07:00:00 obsr2744341 S22860105 Stationary P21 EBIRD 620.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314175382 2021-04-01 12:11:16.886124 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Schoharie US-NY-095 28.0 1353 State Route 7 L863903 P 42.6528008 -74.5260626 2015-04-29 06:30:00 obsr119187 S23133089 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313977635 2021-03-22 08:58:29.008072 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 07:00:00 obsr111994 S23121013 Traveling P22 EBIRD 240.0 4.828 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313790512 2021-04-01 11:54:40.172593 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-28 09:00:00 obsr666331 S23109141 Traveling P22 EBIRD 150.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317865770 2021-04-01 11:15:31.646886 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 06:54:00 obsr150415 S23343853 Traveling P22 EBIRD 258.0 4.828 4.0 1 G1260339 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310945035 2020-06-20 20:01:51 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Chenango US-NY-017 US-NY_2780 28.0 Long Pond SF--Rt. 41 fishing access L3074026 H 42.422518 -75.851062 2015-04-18 08:51:00 obsr2211210 S22925964 Traveling P22 EBIRD 15.0 0.322 2.0 1 G1224241 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303068029 2019-07-23 17:27:58 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 6 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-14 13:42:00 obsr1696616 S22345946 Traveling P22 EBIRD 51.0 1.287 2.0 1 G1179145 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309654665 2017-08-16 17:02:12 26890 species avibase-94A44032 European Starling Sturnus vulgaris 8 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Road - Tiana Bch (Bay & Ocean) L834851 P 40.8278391 -72.5300632 2015-04-11 08:55:00 obsr2934754 S22836711 Traveling P22 EBIRD 30.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320810228 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 3 United States US New York US-NY New York US-NY-061 30.0 W Village Backyards and Airspace L974907 P 40.7366845 -74.0071853 2015-05-17 17:45:00 obsr128156 S23507370 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306078025 2021-04-01 11:30:42.037277 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-03-29 13:40:00 obsr1555046 S22577142 Traveling P22 EBIRD 30.0 0.805 3.0 1 G1208370 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS369850797 2016-01-30 22:30:25 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus 2 United States US New York US-NY Albany US-NY-001 US-NY_863 13.0 Black Creek Marsh L4205174 P 42.6650184 -73.9646816 2015-04-25 10:00:00 obsr301433 S27218247 Traveling P22 EBIRD 120.0 3.219 1.0 1 G1578263 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306386972 2021-04-01 10:47:08.851048 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-03-30 16:04:00 obsr800690 S22600757 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309194610 2021-03-24 20:58:53.646623 23291 species avibase-58C502EA Barn Swallow Hirundo rustica X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-11 15:30:00 obsr72341 S22807124 Stationary P21 EBIRD 200.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298141714 2021-03-31 04:00:11.782872 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N 1 Male, Adult (1) United States US New York US-NY Columbia US-NY-021 13.0 Route 21 & Eichybush Road L3395408 P 42.4266731 -73.721652 2015-02-17 14:47:00 obsr349211 S21951207 Traveling P22 EBIRD 20.0 8.047 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298704405 2021-03-30 19:43:32.881136 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 2 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-02-19 15:00:00 obsr2080607 S21999983 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303793250 2015-03-17 22:25:40 592 species avibase-3072CC16 Redhead Aythya americana 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-02-28 06:20:00 obsr2694889 S22403015 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314710724 2021-04-01 11:15:31.646886 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-01 09:40:00 obsr827632 S23165912 Traveling P22 EBIRD 205.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300349815 2021-04-01 12:45:19.712958 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Westchester US-NY-119 30.0 NY - Yonkers - Kimble Ave L2432769 P 40.9168156 -73.8558269 2015-03-01 08:11:00 obsr1348614 S22131973 Traveling P22 EBIRD 19.0 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315139636 2021-04-01 10:44:41.995232 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-05-02 16:55:00 obsr2700440 S23190290 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308059105 2021-03-19 16:19:20.977326 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-04-06 10:00:00 obsr2825336 S22723212 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294001410 2021-03-30 19:25:27.212017 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Richmond US-NY-085 Lemon Creek Pier L673443 H 40.5108301 -74.2097712 2015-01-30 13:03:00 obsr1958124 S21602483 Stationary P21 EBIRD 54.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS322338464 2018-08-06 22:30:53 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Essex US-NY-031 14.0 Connery Pond L2881813 P 44.309525 -73.937073 2015-05-23 08:03:00 obsr265018 S23600312 Traveling P22 EBIRD 82.0 1.127 3.0 1 G1286350 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS329699580 2018-08-06 22:30:55 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-23 09:15:00 obsr1962295 S24113540 Traveling P22 EBIRD 90.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312160886 2017-09-09 13:29:46 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail, Sherwood Pltform base - West Trail (0.137km) L1369671 P 42.4793682 -76.4546071 2015-04-22 18:20:00 obsr2307843 S23004188 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316313835 2015-10-09 17:47:39 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 15 United States US New York US-NY Fulton US-NY-035 14.0 Piseco Rd @ Hawes Road & Vicinity L3616708 P 43.2073676 -74.6782609 2015-05-05 16:30:00 obsr316199 S23256260 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321885965 2021-03-24 05:37:45.927792 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 45 United States US New York US-NY Chautauqua US-NY-013 13.0 Wright Park Beach L2352601 H 42.4978458 -79.3198299 2015-04-25 12:07:00 obsr2155111 S23573318 Traveling P22 EBIRD 26.0 0.402 3.0 1 G1282907 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300374033 2021-03-30 19:03:54.667077 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 9 Unknown Sex, Adult (4); Unknown Sex, Immature (5) United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-01 12:00:00 obsr479109 S22133524 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309967234 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-14 09:00:00 obsr1289811 S22859691 Traveling P22 EBIRD 40.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312017040 2021-03-26 07:30:35.289997 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-04-22 07:47:00 obsr1042912 S22994864 Traveling P22 EBIRD 40.0 2.752 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312350415 2019-01-07 15:34:50 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 12 United States US New York US-NY Chautauqua US-NY-013 13.0 Berry Rd. Marsh L2057267 H 42.4353351 -79.4007254 2015-04-23 15:15:00 obsr408487 S23016956 Stationary P21 EBIRD 25.0 4.0 1 G1232925 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305996414 2021-03-23 17:00:13.087107 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom37 L3513979 H 42.6057548 -76.3543007 2015-03-27 17:46:00 obsr2173269 S22571417 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300014361 2019-07-23 17:27:33 27616 species avibase-D77E4B41 American Robin Turdus migratorius 140 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-28 10:01:00 obsr1062070 S22104669 Traveling P22 EBIRD 34.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316449005 2015-05-06 10:40:01 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Monroe US-NY-055 13.0 Yard on Village Lane L3270389 P 43.1324965 -77.5516507 2015-05-06 10:30:00 obsr1534851 S23263640 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS768271976 2021-04-01 11:15:31.646886 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-18 obsr192641 S56880482 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316249533 2015-05-05 20:32:36 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Erie US-NY-029 13.0 Delaware Park--Rumsey Woods L1348448 H 42.9307931 -78.8698229 2015-05-05 10:40:00 obsr319738 S23252503 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300056646 2021-03-26 07:43:12.52294 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-02-28 11:24:00 obsr1721609 S22108004 Traveling P22 EBIRD 125.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293915958 2021-12-08 07:58:41.562209 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-01-27 11:30:00 obsr1025848 S21595859 Traveling P22 EBIRD 65.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319132127 2021-11-15 03:06:58.889978 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-09 09:40:00 obsr856524 S23414476 Traveling P22 EBIRD 125.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298054947 2015-02-17 15:47:37 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 11 United States US New York US-NY Madison US-NY-053 28.0 Home to Coulter walkabout L790370 P 42.8733852 -75.8207703 2015-02-17 14:13:00 obsr2716320 S21943986 Traveling P22 EBIRD 73.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319257196 2015-05-13 12:14:55 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Monroe US-NY-055 13.0 Our yard - 505 Bonnie Brae, Brighton L267076 P 43.1184318 -77.5748011 2015-05-13 12:10:00 obsr558652 S23421547 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290285981 2018-08-04 16:53:03 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP L99696 H 42.5460112 -76.600422 2015-01-10 14:30:00 obsr1006348 S21287338 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320071596 2021-04-01 12:26:53.827486 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (restricted access) L2321026 P 42.7451012 -73.8493171 2015-05-16 07:30:00 obsr119187 S23467794 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288812694 2021-04-01 12:14:19.266649 303 species avibase-B59E1863 Canada Goose Branta canadensis 201 United States US New York US-NY Suffolk US-NY-103 30.0 Sag Harbor Area - Orient CBC L3261248 P 41.0014072 -72.3072052 2015-01-03 07:00:00 obsr2692002 S21168087 Traveling P22 EBIRD 210.0 8.047 2.0 1 G1093503 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290695409 2021-04-01 12:32:15.282601 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 100 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-12 09:40:00 obsr676630 S21320367 Traveling P22 EBIRD 80.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312958779 2021-04-01 12:45:19.712958 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe X United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-04-25 09:00:00 obsr492329 S23057556 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318489177 2021-12-08 07:58:41.562209 592 species avibase-3072CC16 Redhead Aythya americana 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-11 06:15:00 obsr1828453 S23377679 Traveling P22 EBIRD 86.0 1.609 2.0 1 G1265670 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290608111 2021-03-26 07:20:31.408164 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Suffolk US-NY-103 30.0 418 Jamaica Avenue L653849 P 40.8152383 -72.9672861 2015-01-11 08:10:00 obsr2934754 S21312671 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311911307 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-04-21 08:30:00 obsr1706920 S22987717 Traveling P22 EBIRD 30.0 0.161 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311903735 2021-04-01 12:18:57.910168 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Dubois Cottage (SbR) L2994397 P 42.4848288 -76.5484959 2015-04-18 17:14:00 obsr2867163 S22987222 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292493107 2016-09-12 10:27:59 6339 species avibase-8535345B Herring Gull Larus argentatus 7 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-01-17 10:30:00 obsr2475075 S21483309 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313119245 2015-04-26 12:28:40 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Tompkins US-NY-109 28.0 42.3968x-76.3021 - Apr 26, 2015, 10:40 AM L3591948 P 42.396805 -76.302071 2015-04-26 10:35:00 obsr241086 S23067175 Stationary P21 EBIRD 7.0 2.0 1 G1236794 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292112282 2018-08-04 16:54:46 33267 spuh avibase-62BC6EC7 warbler sp. (Parulidae sp.) Parulidae sp. 6 United States US New York US-NY Westchester US-NY-119 28.0 Black Rock Park L834543 H 41.2144029 -73.8666258 2015-01-20 11:45:00 obsr258431 S21433043 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295428550 2021-11-09 18:43:48.942153 483 species avibase-85625D75 Mallard Anas platyrhynchos N 20 United States US New York US-NY Dutchess US-NY-027 28.0 Old Route 22, Dover, NY L3344835 P 41.7117527 -73.5684564 2015-02-07 10:05:00 obsr1062217 S21716191 Traveling P22 EBIRD 20.0 1.609 2.0 1 G1138690 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288471857 2019-10-25 15:54:27 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-01-02 07:25:00 obsr2211750 S21140214 Stationary P21 EBIRD 10.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312067915 2021-03-26 08:05:20.615241 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla 4 United States US New York US-NY Onondaga US-NY-067 13.0 Oneida Lake - Short Point Bay Aero Marina L800554 P 43.2092266 -76.0786486 2015-04-18 09:35:00 obsr2290617 S22998098 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293100950 2021-04-01 11:49:53.573686 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 1 United States US New York US-NY Queens US-NY-081 30.0 Astoria - East L3252659 P 40.7551692 -73.9138323 2015-01-25 10:00:00 obsr2033754 S21531227 Traveling P22 EBIRD 10.0 0.402 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324566530 2021-03-26 06:52:34.887371 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-04-23 10:00:00 obsr2141910 S23744975 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321768276 2018-08-06 22:30:42 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Greene US-NY-039 US-NY_854 28.0 Spruceton Trail to FireTower L3661949 H 42.1857939 -74.27423 2015-05-21 07:15:00 obsr2766625 S23565567 Traveling P22 EBIRD 420.0 5.472 3.0 1 G1283104 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324090018 2018-08-06 22:29:40 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP - Yanty Creek Trail L269421 P 43.3618733 -77.9527094 2015-05-11 09:20:00 obsr2966702 S23713597 Traveling P22 EBIRD 90.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316560942 2021-04-01 11:15:31.646886 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-05-06 06:00:00 obsr2233143 S23270200 Area P23 EBIRD 540.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312536007 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-24 07:30:00 obsr717528 S23029622 Traveling P22 EBIRD 280.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290411423 2019-07-23 17:26:45 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point State Park L3284867 P 41.0661986 -71.8885231 2015-01-10 09:25:00 obsr1848026 S21297380 Traveling P22 EBIRD 60.0 0.402 8.0 1 G1105255 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297573268 2021-03-24 20:23:39.258075 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-02-16 12:27:00 obsr2485753 S21900148 Stationary P21 EBIRD 39.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300514221 2021-03-26 07:07:10.758746 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 10 United States US New York US-NY Richmond US-NY-085 30.0 Tottenville High School L884731 P 40.5282185 -74.1924763 2015-03-02 12:25:00 obsr1958124 S22142806 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308693466 2021-03-24 19:48:44.880783 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Monroe US-NY-055 13.0 Webster Arboretum L502161 H 43.2419281 -77.3925555 2015-04-09 12:30:00 obsr1962295 S22769906 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311595469 2021-03-22 09:15:15.32301 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Niagara US-NY-063 13.0 Greenwood Cemetery (Niagara Co.) L787363 H 43.3115262 -78.8345487 2015-04-20 10:20:00 obsr2756208 S22966865 Traveling P22 EBIRD 47.0 0.966 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307744617 2021-03-23 17:18:00.959502 681 species avibase-407E2CA8 Common Merganser Mergus merganser N 5 United States US New York US-NY Albany US-NY-001 13.0 Tivoli Lake Preserve L3480691 H 42.6707536 -73.7632259 2015-04-05 14:00:00 obsr820113 S22700737 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303613594 2021-04-01 12:41:58.738824 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Schuyler US-NY-097 13.0 Fitzgerald Rd. (Schuyler Co.) L3493807 H 42.4490773 -76.7425815 2015-03-16 17:27:00 obsr2173269 S22388999 Stationary P21 EBIRD 65.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319622360 2021-03-19 16:19:20.977326 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 7 United States US New York US-NY Erie US-NY-029 13.0 University at Buffalo (North Campus)--east side L2866122 H 43.0053117 -78.7777213 2015-05-13 12:00:00 obsr745890 S23442459 Traveling P22 EBIRD 20.0 0.161 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304859617 2021-04-01 10:47:08.851048 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Broome US-NY-007 28.0 3665 River Rd Endicott L1466336 P 42.108244 -76.008055 2015-03-23 08:00:00 obsr1826325 S22483719 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308735812 2021-11-09 21:57:19.605717 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Ulster US-NY-111 13.0 Rondout-Kingston L3465160 P 41.91695 -73.98631 2015-04-09 17:55:00 obsr1482758 S22775424 Traveling P22 EBIRD 95.0 6.437 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319196138 2021-03-19 16:08:39.161312 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus X United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-05-12 12:17:00 obsr2497657 S23418018 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316266768 2021-03-26 06:39:43.334073 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 15:55:00 obsr822430 S23253504 Traveling P22 EBIRD 35.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311173799 2021-03-24 19:23:17.886063 32953 species avibase-D00EC2C9 Cerulean Warbler Setophaga cerulea 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP--South Bend L468066 P 42.7102545 -76.7028093 2015-04-19 07:35:00 obsr1655171 S22940177 Traveling P22 EBIRD 4.0 0.322 2.0 1 G1230109 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS294394074 2020-04-10 18:36:59 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 25 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-01 12:49:00 obsr2224244 S21633442 Traveling P22 EBIRD 27.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304503306 2021-04-01 12:35:52.669792 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 4 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson River Park (private) L3498350 H 43.2032416 -76.2825651 2015-03-21 17:24:00 obsr2224244 S22457571 Stationary P21 EBIRD 156.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312347403 2021-09-12 21:03:10.253835 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Mud Lock L849114 P 42.9433552 -76.7422485 2015-04-23 15:54:00 obsr354090 S23016760 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302329627 2021-03-24 21:13:42.099821 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 1 United States US New York US-NY Westchester US-NY-119 30.0 Hunt-Parker Sanctuary--Bylane Farm L786456 H 41.2827085 -73.6707115 2015-03-10 16:45:00 obsr385524 S22286333 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309868899 2021-03-26 07:07:10.758746 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 Female, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 SI-Wolfe's Pond Park/Lemon Creek L354336 P 40.5181692 -74.1878914 2015-04-12 08:28:00 obsr1032565 S22852689 Traveling P22 EBIRD 92.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309339584 2022-02-18 10:47:29.953615 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-04-12 07:55:00 obsr1062070 S22816511 Stationary P21 EBIRD 159.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295290910 2021-01-15 16:11:30.832538 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 17 United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 Cary Rd, Fort Edward, NY L2588500 P 43.2209625 -73.5596037 2015-02-01 11:48:00 obsr1222746 S21705197 Traveling P22 EBIRD 24.0 3.38 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322072680 2021-11-15 03:06:58.889978 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-22 17:30:00 obsr1439545 S23585132 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292809966 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-23 15:30:00 obsr2207991 S21508347 Traveling P22 EBIRD 90.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292945762 2018-08-04 16:55:08 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 6 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-01-24 11:50:00 obsr1042912 S21519052 Traveling P22 EBIRD 40.0 0.805 2.0 1 G1121206 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308553173 2015-04-08 20:43:42 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Ontario US-NY-069 13.0 US-NY-Victor - 42.9974x-77.3862 - Apr 8, 2015, 6:05 PM L3549354 P 42.997433 -77.38619 2015-04-08 18:05:00 obsr288410 S22761253 Incidental P20 EBIRD 2.0 0 G1211754 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300033549 2019-07-23 17:27:34 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Fort Niagara SP L210265 H 43.2638703 -79.0567981 2015-02-28 12:00:00 obsr2497657 S22106177 Traveling P22 EBIRD 27.0 2.816 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288618571 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Kings US-NY-047 30.0 US-NY--Brooklyn Subway L3252853 P 40.668288 -73.993879 2015-01-01 11:45:00 obsr1895272 S21152609 Stationary P21 EBIRD 20.0 3.0 1 G1092050 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309369974 2015-04-12 12:15:06 32849 species avibase-7AB0F3A4 Louisiana Waterthrush Parkesia motacilla X United States US New York US-NY Broome US-NY-007 28.0 325 Death Valley Rd L1846430 P 42.1859482 -76.0161445 2015-04-12 06:00:00 obsr290506 S22818363 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310234492 2021-03-30 19:13:38.458673 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-04-13 11:44:00 obsr745890 S22878081 Stationary P21 EBIRD 105.0 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310375268 2019-07-23 17:28:19 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip G L3559870 P 40.435667 -73.336683 2015-04-11 15:00:00 obsr1175815 S22887899 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221333 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316481015 2021-04-01 11:30:42.037277 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 08:30:00 obsr2677000 S23265289 Traveling P22 EBIRD 180.0 2.414 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322281041 2021-03-26 07:56:20.588749 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 Female, Adult (1) United States US New York US-NY Nassau US-NY-059 30.0 Lynbrook L3091077 P 40.6511413 -73.6801529 2015-05-23 14:00:00 obsr358492 S23596961 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321809396 2021-03-26 06:19:47.07548 16284 species avibase-33808812 Alder Flycatcher Empidonax alnorum 9 United States US New York US-NY Essex US-NY-031 13.0 Lower La Chute River & Ticonderoga Marsh L4910422 H 43.8448239 -73.4016323 2015-05-21 15:44:00 obsr2420101 S23568047 Traveling P22 EBIRD 104.0 6.437 3.0 1 G1282463 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320201063 2021-11-09 18:32:29.515581 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Dutchess US-NY-027 13.0 Duell Road, Stanfordville NY L2353025 P 41.8521016 -73.6797613 2015-05-16 09:00:00 obsr1917973 S23474298 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314371833 2021-03-23 17:00:13.087107 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Tompkins US-NY-109 28.0 Beezamer L2957441 P 42.3907709 -76.407305 2015-04-30 06:30:00 obsr140280 S23144886 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315389484 2021-04-01 11:30:42.037277 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:00:00 obsr544268 S23203623 Traveling P22 EBIRD 360.0 6.437 20.0 1 G1249497 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307043485 2021-04-01 11:30:42.037277 16284 species avibase-33808812 Alder Flycatcher Empidonax alnorum N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-04-02 08:00:00 obsr794187 S22650889 Traveling P22 EBIRD 40.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323134113 2022-01-20 09:38:40.245267 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-25 08:45:00 obsr1190754 S23648634 Traveling P22 EBIRD 180.0 3.219 2.0 1 G1291317 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300020537 2021-11-09 00:38:34.069905 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 9 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-02-28 08:15:00 obsr258431 S22105213 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321112254 2015-05-18 22:29:07 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-05-18 15:10:00 obsr528918 S23525064 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307274285 2021-04-01 12:32:15.282601 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Pacific Blvd. jetty Long Beach, NY L3314411 P 40.5829803 -73.6407244 2015-04-03 11:15:00 obsr1160328 S22667569 Traveling P22 EBIRD 15.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325234577 2018-08-06 22:31:11 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Livingston US-NY-051 13.0 US-NY-PORTAGE, 625 NY-436 L3579171 P 42.574927 -78.013591 2015-05-26 07:39:00 obsr731272 S23792655 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310753695 2021-03-19 16:44:35.607263 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 11 United States US New York US-NY Monroe US-NY-055 13.0 Thousand Acre Swamp Preserve L123006 H 43.17917 -77.45194 2015-04-17 18:51:00 obsr1545618 S22913806 Traveling P22 EBIRD 57.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316310137 2021-03-26 06:17:19.712573 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-03 10:30:00 obsr1379161 S23256006 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288793053 2021-03-30 19:13:38.458673 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-01-03 10:45:00 obsr1962295 S21166544 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320559010 2022-02-27 09:35:49.066489 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 2 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-05-16 14:15:00 obsr660214 S23492865 Traveling P22 EBIRD 40.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307906734 2018-08-04 17:05:20 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-04-04 08:55:00 obsr392884 S22712921 Stationary P21 EBIRD 20.0 9.0 1 G1206299 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1277430667 2021-11-14 21:01:54.67337 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-29 13:35:00 obsr2155450 S97600533 Traveling P22 EBIRD 50.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309992024 2015-04-14 13:56:43 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Westchester US-NY-119 30.0 Rockefeller SP Preserve--Eagle Hill area L2724294 H 41.0998684 -73.851099 2015-04-14 09:50:00 obsr1742994 S22861366 Traveling P22 EBIRD 105.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323724616 2021-03-24 20:58:53.646623 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-28 12:10:00 obsr72341 S23689922 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311945330 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 07:44:00 obsr1152226 S22990131 Traveling P22 EBIRD 360.0 3.219 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304937513 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-03-23 10:30:00 obsr827632 S22490032 Traveling P22 EBIRD 180.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323006476 2021-03-19 16:44:35.607263 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-25 10:15:00 obsr1962295 S23640306 Traveling P22 EBIRD 150.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310881637 2021-03-23 17:32:20.03109 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-18 06:48:00 obsr2224244 S22922152 Traveling P22 EBIRD 253.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312090191 2019-10-25 16:17:48 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY St. Lawrence US-NY-089 US-NY_775 13.0 Upper and Lower Law WMA L3582750 P 44.6010266 -75.2661324 2015-04-19 13:31:00 obsr2862523 S22999456 Traveling P22 EBIRD 30.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303880780 2021-04-01 11:47:43.260314 6339 species avibase-8535345B Herring Gull Larus argentatus 12 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-03-18 12:23:00 obsr2224244 S22409969 Traveling P22 EBIRD 34.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292985651 2021-11-09 19:34:18.590596 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 F C1 F United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-01-24 14:20:00 obsr1665312 S21521957 Stationary P21 EBIRD 165.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319833636 2015-05-15 12:32:50 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 13.0 Our yard - 505 Bonnie Brae, Brighton L267076 P 43.1184318 -77.5748011 2015-05-15 12:07:00 obsr558652 S23454716 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312831716 2021-03-26 07:30:35.289997 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-25 07:45:00 obsr392884 S23050033 Traveling P22 EBIRD 75.0 0.161 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301871487 2021-04-01 12:14:19.266649 591 species avibase-1929E1E1 Canvasback Aythya valisineria 174 United States US New York US-NY Suffolk US-NY-103 Lake Montauk Inlet, west side L1091365 H 41.0764396 -71.9386482 2015-03-08 12:00:00 obsr598381 S22246924 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS825623370 2019-11-26 10:02:40 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-07 obsr2937317 S61222384 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298639411 2021-04-01 11:49:53.573686 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 3 United States US New York US-NY Queens US-NY-081 30.0 Brookville Park L2687495 H 40.6629513 -73.7429361 2015-02-18 15:42:00 obsr1982614 S21993930 Traveling P22 EBIRD 180.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307367941 2021-03-26 07:30:35.289997 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 9 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-04 07:25:00 obsr800690 S22674575 Traveling P22 EBIRD 113.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311772524 2021-03-19 16:02:45.308962 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-04-21 07:39:00 obsr1764243 S22978684 Traveling P22 EBIRD 12.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309099376 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-11 10:30:00 obsr2750470 S22800823 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288555606 2022-03-06 12:39:33.700954 11494 species avibase-20C2214E American Kestrel Falco sparverius 26 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-01-02 11:30:00 obsr547602 S21147417 Traveling P22 EBIRD 60.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305901681 2021-12-19 10:32:19.574298 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 4 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-03-28 09:00:00 obsr2087436 S22564456 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303896398 2021-11-09 21:17:58.494129 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Ulster US-NY-111 28.0 Lippincott Rd., Wallkill L1097498 H 41.6194441 -74.1931401 2015-02-22 16:20:00 obsr186871 S22411158 Stationary P21 EBIRD 30.0 17.0 1 G1159601 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293159992 2021-04-26 04:57:02.963704 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-25 10:15:00 obsr1189028 S21535797 Traveling P22 EBIRD 105.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299015560 2021-03-24 21:06:05.39641 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Onondaga US-NY-067 13.0 Home L1479128 P 43.1502997 -76.3703906 2015-02-22 13:00:00 obsr2172593 S22025532 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298842438 2021-11-09 18:26:50.162401 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii N 7 United States US New York US-NY Dutchess US-NY-027 13.0 Separate Road, Amenia, NY L1893810 P 41.8622316 -73.6034884 2015-02-20 14:30:00 obsr1062217 S22011533 Traveling P22 EBIRD 40.0 3.219 2.0 1 G1155864 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317362289 2021-03-30 19:13:38.458673 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 12 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-05-08 14:10:00 obsr302343 S23315036 Traveling P22 EBIRD 65.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305222872 2018-08-04 17:02:51 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-25 10:46:00 obsr2211210 S22512310 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314571748 2015-12-22 23:05:00 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Hill Higher SF L490896 H 42.0386329 -79.4563225 2015-05-01 05:00:00 obsr2910282 S23157944 Traveling P22 EBIRD 240.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315419050 2021-03-26 06:21:54.883933 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 10:55:00 obsr1152226 S23205189 Traveling P22 EBIRD 120.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307708544 2021-04-01 11:15:31.646886 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 5 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-04-05 08:45:00 obsr1189028 S22698115 Traveling P22 EBIRD 17.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315493052 2021-11-09 18:36:27.898762 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 1 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-05-03 13:19:00 obsr2343626 S23209292 Traveling P22 EBIRD 66.0 3.219 2.0 1 G1249925 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308114778 2021-04-01 12:14:19.266649 7200 species avibase-49D9148A Great Egret Ardea alba 10 United States US New York US-NY Suffolk US-NY-103 US-NY_839 30.0 Mashomack Preserve red and yellow trails L1130683 P 41.0570585 -72.3148012 2015-04-04 09:30:00 obsr1257101 S22727558 Traveling P22 EBIRD 90.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288793995 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 14 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--West Bath House L807105 H 40.5936046 -73.5142422 2015-01-03 07:20:00 obsr2505956 S21166606 Traveling P22 EBIRD 240.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306050088 2021-03-24 20:11:57.676649 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 5 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-29 08:28:00 obsr2262082 S22575066 Stationary P21 EBIRD 227.0 2.0 1 G1196429 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290472783 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Kings US-NY-047 30.0 Hendrix Creek L821734 H 40.6482804 -73.8749027 2015-01-11 13:05:00 obsr876649 S21302372 Traveling P22 EBIRD 80.0 1.609 3.0 1 G1395741 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298759709 2021-03-30 12:05:58.533651 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-02-21 12:37:00 obsr152435 S22004781 Traveling P22 EBIRD 55.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320870596 2018-08-06 22:29:55 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Madison US-NY-053 13.0 Bush Rd., NY 31 to Oneida Lake L925356 H 43.1584863 -75.9301615 2015-05-14 09:42:00 obsr1167884 S23510667 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317116306 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 06:37:00 obsr1146149 S23301684 Traveling P22 EBIRD 240.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311355829 2021-03-30 18:54:05.959583 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 6 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park--Hunter Island L838208 H 40.8768877 -73.7898123 2015-04-19 07:40:00 obsr1348614 S22951175 Traveling P22 EBIRD 220.0 4.828 3.0 1 G1226792 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS560385591 2021-03-30 19:13:38.458673 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-04-04 10:40:00 obsr1191915 S41330139 Stationary P21 EBIRD 30.0 3.0 1 G2810132 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1068753018 2021-04-01 12:28:06.222372 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 Thomas Corners Road, West Valley, New York L11769835 P 42.4800657 -78.6597855 2015-05-29 08:00:00 obsr2155450 S80675968 Traveling P22 EBIRD 30.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135228 2021-03-26 07:56:20.588749 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-25 09:00:00 obsr2218212 S23589159 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316100235 2015-06-03 10:01:20 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-04-18 13:45:00 obsr2558910 S23243247 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320342469 2021-03-19 16:19:20.977326 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-16 14:00:00 obsr2096529 S23481478 Traveling P22 EBIRD 155.0 0.805 2.0 1 G1274011 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313904096 2021-11-09 21:01:39.975405 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Rockland US-NY-087 US-NY_853 28.0 Harriman SP--Lily Pond L2769189 H 41.2150753 -74.1133833 2015-04-28 10:15:00 obsr1121454 S23116404 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290885041 2019-01-03 10:54:11 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 5 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-G L3289012 P 40.06773 -73.02048 2015-01-11 14:00:00 obsr986025 S21335621 Traveling P22 EBIRD 60.0 26.554 44.0 1 G1108340 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS306607506 2021-03-26 07:20:31.408164 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 4 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Blueberry Farm L2373785 P 40.8770943 -72.8077054 2015-03-31 08:00:00 obsr2011512 S22618298 Traveling P22 EBIRD 85.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310011839 2021-11-09 21:47:06.320858 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY Ulster US-NY-111 US-NY_1728 28.0 Minnewaska SP L254147 H 41.7237441 -74.2704102 2015-04-14 08:00:00 obsr2219590 S22862750 Traveling P22 EBIRD 140.0 3.782 17.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310400738 2021-04-01 11:47:43.260314 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 4 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-04-16 09:52:00 obsr2224244 S22889678 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311812494 2021-04-01 11:15:31.646886 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 09:36:00 obsr2906952 S22981438 Traveling P22 EBIRD 124.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291504546 2021-03-23 17:26:08.495143 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 1 United States US New York US-NY Nassau US-NY-059 Point Lookout L109044 H 40.5872222 -73.5772222 2015-01-17 07:00:00 obsr352522 S21385785 Traveling P22 EBIRD 160.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295367217 2021-11-09 21:23:47.89824 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 3 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-07 09:15:00 obsr444155 S21711488 Traveling P22 EBIRD 45.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300395109 2021-03-24 21:10:11.310781 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-03-01 08:30:00 obsr1664745 S22134831 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322816596 2021-04-01 11:23:42.170869 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 2 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-05-24 12:29:00 obsr589593 S23628258 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320560053 2018-08-06 22:30:17 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Monroe US-NY-055 13.0 Oatka Creek Park L140441 H 43.0066986 -77.8019028 2015-05-17 06:00:00 obsr1281665 S23492910 Traveling P22 EBIRD 240.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299126195 2021-03-24 20:49:55.752669 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 4 United States US New York US-NY Wayne US-NY-117 13.0 East Palmyra L1156478 P 43.0839344 -77.1562529 2015-02-22 11:30:00 obsr2561613 S22036377 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308755895 2021-03-23 17:00:13.087107 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-08 07:33:00 obsr2683910 S22776887 Traveling P22 EBIRD 42.0 0.966 2.0 1 G1212820 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311181051 2022-02-17 14:32:23.002448 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-18 13:20:00 obsr2448957 S22940657 Traveling P22 EBIRD 80.0 1.609 16.0 1 G1224973 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288545471 2021-04-01 11:30:42.037277 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-02 15:50:00 obsr2105033 S21146535 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316505753 2018-08-04 17:15:01 5923 species avibase-15369E8E Dunlin Calidris alpina 1 United States US New York US-NY Jefferson US-NY-045 US-NY_778 13.0 Perch River WMA--Vaadi Rd. L721316 H 44.094397 -75.9575415 2015-05-06 11:45:00 obsr544268 S23266734 Traveling P22 EBIRD 75.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322774340 2022-02-17 14:32:23.002448 456 species avibase-D201EB72 American Wigeon Mareca americana X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-23 08:30:00 obsr2933771 S23625758 Traveling P22 EBIRD 180.0 1.77 5.0 1 G1288834 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291220417 2021-03-24 20:58:53.646623 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-01-15 07:10:00 obsr72341 S21362844 Stationary P21 EBIRD 140.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302694850 2021-04-01 11:49:53.573686 505 species avibase-C732CB10 American Black Duck Anas rubripes N 50 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-03-09 07:05:00 obsr1982614 S22316664 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295351799 2018-08-04 16:55:48 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Aqua Lane Park, Town of Tonawanda WTP L1449473 H 42.964301 -78.9233606 2015-02-07 12:13:00 obsr502830 S21710318 Stationary P21 EBIRD 49.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309323665 2021-04-01 11:24:19.637193 7429 species avibase-1327AC55 Osprey Pandion haliaetus 16 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-04-12 08:40:00 obsr334398 S22815543 Traveling P22 EBIRD 44.0 0.032 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301020694 2016-01-27 15:21:38 5923 species avibase-15369E8E Dunlin Calidris alpina 6 United States US New York US-NY Tompkins US-NY-109 28.0 125C Yellow Barn Rd. L1044911 P 42.4758637 -76.3421112 2015-03-05 08:30:00 obsr2001485 S22180655 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306478181 2021-03-23 17:00:13.087107 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus X United States US New York US-NY Tompkins US-NY-109 13.0 Allan H. Treman State Marine Park--marina (not lakeshore or woods) L159024 H 42.4571425 -76.5143238 2015-03-31 08:20:00 obsr2001485 S22608126 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316462728 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 07:30:00 obsr1077730 S23264411 Traveling P22 EBIRD 270.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318241930 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-10 09:27:00 obsr119187 S23364143 Traveling P22 EBIRD 91.0 2.012 4.0 1 G1262141 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298126315 2021-03-26 08:14:57.071052 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 3 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-02-17 07:15:00 obsr2918150 S21950060 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS488846788 2017-04-22 16:40:49 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-05-15 07:00:00 obsr320813 S36176478 Traveling P22 EBIRD 290.0 4.023 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294084755 2015-11-05 11:19:11 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Tompkins US-NY-109 13.0 105 Eastern Heights Dr., Ithaca L2724192 P 42.425089 -76.455526 2015-01-27 12:30:00 obsr1318356 S21609159 Stationary P21 EBIRD 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304273844 2021-03-26 07:53:57.664705 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-03-20 17:59:00 obsr1060479 S22440709 Traveling P22 EBIRD 70.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293752660 2018-08-04 16:55:23 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Oneida US-NY-065 13.0 Griffiss Tech Park L1222853 P 43.2238792 -75.4036331 2015-01-28 16:45:00 obsr739254 S21582918 Stationary P21 EBIRD 30.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS318371495 2021-03-26 06:29:56.44369 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 Female, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-05-10 06:00:00 obsr2449897 S23371094 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290146844 2018-08-04 16:52:57 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Unity Island (aka Squaw Is.)--North End L2036486 H 42.9321075 -78.9062977 2015-01-09 13:55:00 obsr2597186 S21275593 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319873402 2018-08-06 22:29:59 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Delaware US-NY-025 28.0 West Branch Nature Preserve L123036 H 42.1702618 -75.0311304 2015-05-15 08:30:00 obsr481595 S23456720 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291136775 2018-08-04 16:53:21 592 species avibase-3072CC16 Redhead Aythya americana 19 United States US New York US-NY Suffolk US-NY-103 30.0 Cold Spring Harbor Park L832502 H 40.8697486 -73.4618962 2015-01-15 13:30:00 obsr2635084 S21355749 Traveling P22 EBIRD 10.0 0.274 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314281076 2015-04-30 09:21:08 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Westchester US-NY-119 30.0 Edith Macy Conference Center L3601499 P 41.160491 -73.8078046 2015-04-29 06:38:00 obsr235405 S23139873 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309402699 2021-04-07 20:52:13.289308 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 100 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Tschache Pool L99391 H 42.9892318 -76.7711279 2015-04-12 13:34:00 obsr800690 S22820295 Stationary P21 EBIRD 17.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316488113 2021-04-01 11:15:31.646886 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-06 09:58:00 obsr150415 S23265629 Traveling P22 EBIRD 168.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309806717 2021-11-09 00:38:34.069905 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Westchester US-NY-119 US-NY_836 30.0 Edith G. Read Wildlife Sanctuary L619821 H 40.9706259 -73.6697361 2015-04-13 16:25:00 obsr2844530 S22848312 Traveling P22 EBIRD 110.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296134149 2015-02-11 14:35:10 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Schoharie US-NY-095 13.0 Central Bridge Vicinity L3353864 P 42.706097 -74.3139267 2015-02-11 10:55:00 obsr2846677 S21771702 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321365176 2015-05-19 22:29:52 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Albany US-NY-001 13.0 West Street, Voorheesville L3658355 P 42.6621576 -73.9287347 2015-05-18 08:15:00 obsr405772 S23540763 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309798051 2017-12-23 18:14:03 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Nassau US-NY-059 30.0 Bay County Park L1571409 H 40.6322118 -73.6610094 2015-04-13 16:30:00 obsr369788 S22847685 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311331850 2021-03-30 19:29:33.633096 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-19 08:20:00 obsr1848026 S22949711 Traveling P22 EBIRD 290.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313840819 2021-03-19 16:02:45.308962 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-04-28 10:00:00 obsr1044068 S23112336 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307185145 2017-09-10 16:53:09 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Wayne US-NY-117 13.0 Casey Park, Town of Ontario L2933674 H 43.2352297 -77.2896552 2015-04-03 13:10:00 obsr2914424 S22661185 Traveling P22 EBIRD 94.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309347960 2021-11-09 21:44:00.445773 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Ulster US-NY-111 13.0 Saugerties, Augusta Savage Road L2088274 P 42.08772 -73.97647 2015-04-12 10:37:00 obsr2214649 S22817053 Traveling P22 EBIRD 10.0 0.805 2.0 1 G1215824 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316124842 2021-03-26 06:07:45.516082 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 9 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo -- NW perimeter (Restricted Access) L3396578 P 40.8546937 -73.8800722 2015-05-05 11:10:00 obsr128156 S23244562 Traveling P22 EBIRD 15.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296873102 2022-02-17 14:32:23.002448 483 species avibase-85625D75 Mallard Anas platyrhynchos 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-14 10:00:00 obsr1807494 S21837820 Traveling P22 EBIRD 120.0 0.805 2.0 1 G1146116 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323452509 2021-04-01 10:57:06.520339 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Essex US-NY-031 14.0 Lake Placid L3677495 P 44.2796824 -73.9808178 2015-05-27 obsr2476032 S23664384 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309182760 2021-03-30 19:29:33.633096 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Suffolk US-NY-103 30.0 Chandler Estate L1355478 H 40.9559916 -73.0192018 2015-04-06 10:53:00 obsr758734 S22806333 Traveling P22 EBIRD 44.0 0.8 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316100295 2021-03-26 06:21:54.883933 662 species avibase-FB738385 Bufflehead Bucephala albeola 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 09:55:00 obsr1516787 S23243249 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298213601 2021-05-21 00:06:20.034424 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 6 United States US New York US-NY Richmond US-NY-085 Mt. Loretto Unique Area L293510 H 40.5072899 -74.2180324 2015-02-18 10:05:00 obsr1958124 S21957359 Traveling P22 EBIRD 58.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318351824 2015-05-10 20:31:02 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-10 06:35:00 obsr1044068 S23369980 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291919741 2021-12-10 08:21:29.396662 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 30 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-01-19 11:00:00 obsr258431 S21417627 Traveling P22 EBIRD 30.0 0.402 9.0 1 G1115645 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300101822 2015-02-28 17:54:59 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-25 07:15:00 obsr316199 S22112148 Area P23 EBIRD 80.0 2.59 2.0 1 G1162123 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322687594 2021-12-08 07:58:41.562209 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-24 10:00:00 obsr2054320 S23620292 Traveling P22 EBIRD 90.0 1.287 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313808975 2018-10-06 16:50:39 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 100 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--East Rd. L99686 H 43.009646 -76.7582003 2015-04-25 16:20:00 obsr2292652 S23110333 Stationary P21 EBIRD 40.0 1.0 0 G1241273 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309173543 2021-04-01 12:18:57.910168 8066 species avibase-EA4D6C0B Red-shouldered Hawk Buteo lineatus N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-11 16:54:00 obsr1318356 S22805700 Traveling P22 EBIRD 22.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298361915 2021-11-09 21:57:10.463046 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Ulster US-NY-111 28.0 Gyr - Hoagerburgh Road east side L3399037 P 41.6251531 -74.2267013 2015-02-18 16:55:00 obsr756196 S21970026 Stationary P21 EBIRD 10.0 2.0 1 G1153862 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289779711 2021-04-01 11:49:53.573686 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 1 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-01-07 10:55:00 obsr1982614 S21245640 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291624449 2021-04-01 10:55:39.308231 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus N 2 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Unity Island (aka Squaw Is.)--North End L2036486 H 42.9321075 -78.9062977 2015-01-18 10:10:00 obsr502830 S21395140 Traveling P22 EBIRD 13.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316998543 2020-12-14 15:56:49.243642 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Lewis US-NY-049 13.0 Location H L4611970 P 43.940282 -75.401446 2015-05-07 05:49:00 obsr417887 S23294951 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318091511 2015-05-10 11:52:21 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-10 08:10:00 obsr1534851 S23356178 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289075180 2018-08-04 16:52:43 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--Golf Course L507417 H 40.6235296 -73.2860184 2015-01-04 10:00:00 obsr2406624 S21190782 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310487202 2021-03-26 06:55:00.227271 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Ontario US-NY-069 13.0 Ontario Pathways - Alloquin to Stanley L1369951 P 42.846142 -77.122192 2015-04-16 09:00:00 obsr983655 S22895835 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322773900 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 8 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 06:11:00 obsr1189028 S23625732 Traveling P22 EBIRD 136.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316155211 2018-08-04 17:14:34 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Cayuga US-NY-011 13.0 Mud Lock & north end of Cayuga Lake, Region 3 L1001064 P 42.9464534 -76.7338479 2015-05-03 09:30:00 obsr1167884 S23246081 Stationary P21 EBIRD 5.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306552235 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-31 07:50:00 obsr1668936 S22613827 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312031980 2021-04-01 10:45:00.916278 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 P C3 P Male, Adult (4); Female, Adult (1) United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-22 08:00:00 obsr128156 S22995867 Rusty Blackbird Spring Migration Blitz P41 EBIRD 40.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322936131 2021-09-08 04:42:53.165995 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY New York US-NY-061 30.0 Sherman Creek Park and Swindler Cove L1018912 H 40.8580281 -73.921085 2015-05-21 15:10:00 obsr1706920 S23635791 Traveling P22 EBIRD 60.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291450235 2021-03-26 07:07:10.758746 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-01-17 10:48:00 obsr1958124 S21381391 Traveling P22 EBIRD 21.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290976179 2021-11-15 03:06:58.889978 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-14 08:36:00 obsr1548221 S21342769 Traveling P22 EBIRD 37.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309198449 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-04-11 09:15:00 obsr2759466 S22807397 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305622694 2021-03-26 07:46:52.994574 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias N 14 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-03-25 10:00:00 obsr2590001 S22543469 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320102247 2021-04-01 10:58:31.765174 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 5 United States US New York US-NY Franklin US-NY-033 13.0 Dickinson L198982 T 44.74836 -74.56462 2015-05-16 06:00:00 obsr1672399 S23469348 Traveling P22 EBIRD 140.0 25.75 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290838487 2022-03-05 22:03:50.715584 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-01-13 12:30:00 obsr444155 S21331456 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306816879 2021-03-30 19:39:10.250398 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 15 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-01 18:59:00 obsr870166 S22633714 Traveling P22 EBIRD 48.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296759054 2021-04-01 12:14:19.266649 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 5 United States US New York US-NY Suffolk US-NY-103 30.0 Home L1765628 P 40.8141352 -73.1443806 2015-02-13 11:30:00 obsr1037459 S21827790 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298198145 2021-03-26 07:20:31.408164 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias N 2 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-02-03 07:00:00 obsr1592950 S21955918 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304775860 2021-03-19 15:59:05.496822 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-03-22 07:50:00 obsr2700440 S22477725 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318143693 2021-03-30 19:39:10.250398 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-05-08 17:00:00 obsr2207991 S23358810 Traveling P22 EBIRD 210.0 6.437 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321564779 2021-04-01 11:15:31.646886 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-20 12:30:00 obsr2078092 S23553027 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310840016 2021-11-09 19:56:28.26385 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Orange US-NY-071 28.0 Sawyer's Peak L3323518 P 41.3716881 -74.3810892 2015-04-18 08:05:00 obsr186871 S22919410 Incidental P20 EBIRD 2.0 0 G1223897 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308550016 2021-04-01 10:52:54.724403 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 2 United States US New York US-NY Columbia US-NY-021 14.0 Austerlitz L207556 P 42.3036668 -73.5189287 2015-04-08 09:00:00 obsr712039 S22760970 Traveling P22 EBIRD 75.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313384852 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 P C3 P United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 06:23:00 obsr924076 S23083782 Traveling P22 EBIRD 703.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309320056 2021-03-19 16:44:35.607263 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Monroe US-NY-055 13.0 117 Lyons Rd L154230 P 43.0025601 -77.6175928 2015-04-12 08:44:00 obsr270659 S22815311 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290852697 2019-01-03 10:54:11 20829 species avibase-B9B272F4 Common Raven Corvus corax 85 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-G L3289012 P 40.06773 -73.02048 2015-01-11 14:00:00 obsr41879 S21332751 Traveling P22 EBIRD 60.0 26.554 44.0 1 G1108340 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290544545 2018-12-20 09:53:03 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 25 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Little Reed Pond, Montauk L2452609 H 41.0727407 -71.9194722 2015-01-11 12:00:00 obsr544268 S21308123 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295474662 2021-03-30 19:29:33.633096 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Oak Beach L267998 H 40.63923 -73.28832 2015-02-07 12:50:00 obsr2852365 S21720106 Traveling P22 EBIRD 20.0 4.023 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295874363 2019-07-23 17:27:18 5948 species avibase-A47B0BD4 Least Sandpiper Calidris minutilla 30 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point SP L109151 H 41.0719093 -71.8838119 2015-02-08 07:50:00 obsr564905 S21751159 Traveling P22 EBIRD 90.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308704639 2021-03-19 16:25:42.617988 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Essex US-NY-031 13.0 Tin Pan Alley L3437247 P 43.834301 -73.42659 2015-04-09 07:05:00 obsr2693145 S22772965 Stationary P21 EBIRD 7.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314331282 2021-04-01 11:15:31.646886 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 4 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-04-30 08:00:00 obsr1731572 S23142489 Traveling P22 EBIRD 210.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302431974 2021-03-24 20:33:47.533911 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, 212 Tareyton L252844 P 42.4724094 -76.4601243 2015-03-11 09:50:00 obsr2307843 S22296603 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS359329970 2015-12-15 19:02:00 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 2 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits lower L3200482 P 42.15667 -75.88689 2015-05-03 08:00:00 obsr998593 S26322062 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305518024 2021-04-01 10:44:41.995232 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 7 United States US New York US-NY Allegany US-NY-003 28.0 Lagoon Fields, Genesee River, Wellsville L3497799 P 42.113553 -77.9432774 2015-03-26 17:10:00 obsr2700440 S22535385 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316131959 2021-11-15 03:06:58.889978 7011 species avibase-534FB490 Northern Gannet Morus bassanus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 08:30:00 obsr800463 S23244920 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307799617 2021-11-09 21:57:30.418465 454 species avibase-15EE0D36 Eurasian Wigeon Mareca penelope 2 United States US New York US-NY Ulster US-NY-111 13.0 Sturgeon Pool L3537960 H 41.8440855 -74.0424281 2015-04-05 11:45:00 obsr253135 S22704727 Traveling P22 EBIRD 60.0 0.402 4.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312921291 2021-03-30 19:43:32.881136 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY Westchester US-NY-119 30.0 Tarrytown Lakes Park L302456 H 41.0829631 -73.8426401 2015-04-25 17:36:00 obsr1055148 S23055212 Traveling P22 EBIRD 1.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315464639 2022-02-17 14:32:23.002448 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca N X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-03 13:50:00 obsr2448957 S23207644 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300298603 2022-02-17 14:32:23.002448 483 species avibase-85625D75 Mallard Anas platyrhynchos 80 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-01 12:35:00 obsr642993 S22127975 Traveling P22 EBIRD 38.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311423587 2021-03-23 16:30:20.514143 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-19 09:30:00 obsr1633923 S22955433 Traveling P22 EBIRD 540.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288683384 2021-11-09 18:37:59.328981 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays, Cruger Island Road L2826031 P 42.0290854 -73.9156294 2015-01-02 08:55:00 obsr2228949 S21157402 Traveling P22 EBIRD 205.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312977926 2021-03-26 06:12:17.833181 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-04-25 12:25:00 obsr642516 S23058735 Traveling P22 EBIRD 20.0 0.805 2.0 0 G1236020 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307587320 2017-08-09 18:43:40 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Delaware US-NY-025 28.0 River Rd., fields, Downsville L2376728 H 42.0701497 -74.9979185 2015-04-04 10:12:00 obsr1788273 S22689934 Traveling P22 EBIRD 21.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303611667 2015-03-16 21:43:20 6186 species avibase-B0932D89 Dovekie Alle alle 1 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-01-15 14:30:00 obsr319738 S22388828 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309497536 2021-03-26 08:05:20.615241 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Skan - 5 E. Lake St L631480 P 42.9468657 -76.4167383 2015-04-07 16:47:00 obsr2279567 S22826235 Stationary P21 EBIRD 47.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310129421 2022-01-20 09:38:40.245267 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-04-14 18:05:00 obsr2188170 S22871164 Traveling P22 EBIRD 50.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303212967 2015-03-15 09:25:38 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-03-15 08:57:00 obsr2871406 S22356942 Stationary P21 EBIRD 16.0 2.0 1 G1180293 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318905157 2022-01-20 09:38:40.245267 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-11 08:30:00 obsr1190754 S23401323 Traveling P22 EBIRD 840.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305432337 2021-04-01 11:54:40.172593 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-26 14:10:00 obsr1958124 S22528782 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305307064 2021-03-23 17:15:00.080143 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Road L3514759 P 43.0455895 -76.7246103 2015-03-25 12:45:00 obsr2430746 S22518891 Traveling P22 EBIRD 40.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291031427 2020-04-10 18:34:06 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 3 United States US New York US-NY Onondaga US-NY-067 13.0 Inner Harbor L1072768 H 43.0599834 -76.164211 2015-01-14 16:35:00 obsr660214 S21347267 Stationary P21 EBIRD 35.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309128129 2021-03-23 17:00:13.087107 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-11 14:15:00 obsr2724574 S22802593 Traveling P22 EBIRD 60.0 1.287 5.0 1 G1214478 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322384596 2021-03-26 07:53:57.664705 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 6 United States US New York US-NY Livingston US-NY-051 13.0 PFA River Rd. Route L1180613 P 42.8731965 -77.8580475 2015-05-18 05:15:00 obsr1060479 S23603105 Traveling P22 EBIRD 85.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302351164 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 11 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-10 11:00:00 obsr2319444 S22290410 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314833555 2021-03-24 19:35:34.045988 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-02 06:41:00 obsr1603345 S23173567 Traveling P22 EBIRD 81.0 2.092 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288551670 2021-04-26 05:03:09.627903 456 species avibase-D201EB72 American Wigeon Mareca americana N 3 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-02 11:55:00 obsr1711339 S21147086 Traveling P22 EBIRD 120.0 4.828 3.0 1 G1091354 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296593248 2021-11-09 22:04:47.967972 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 6 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-13 12:00:00 obsr109265 S21812610 Stationary P21 EBIRD 225.0 2.0 1 G1145117 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295571927 2021-03-26 06:17:19.712573 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Erie US-NY-029 13.0 157 LOCUST Street (YWAP BUFFALO) L3346895 P 42.8977121 -78.8608037 2015-02-03 08:00:00 obsr2965498 S21727750 Stationary P21 EBIRD 7.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308733232 2016-09-12 10:40:05 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 42.0868x-78.5941 - Apr 9, 2015, 7:23 PM L3551501 P 42.086777 -78.594093 2015-04-09 19:23:00 obsr2343764 S22775248 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322130214 2021-04-01 11:24:19.637193 658 slash avibase-B2BB260C Surf/Black Scoter Melanitta perspicillata/americana 4 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-05-23 05:51:00 obsr1696616 S23588855 Traveling P22 EBIRD 16.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294670196 2021-03-24 20:23:39.258075 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 30.0 370 Town Lane, Amagansett, NY L2649783 P 40.985851 -72.1408331 2015-02-02 10:00:00 obsr1254092 S21655251 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322763456 2021-03-26 06:29:56.44369 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-25 07:41:00 obsr334398 S23625071 Traveling P22 EBIRD 107.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311773805 2018-08-04 17:11:25 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens X United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-04-21 07:00:00 obsr1165633 S22978761 Traveling P22 EBIRD 61.0 2.14 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297583892 2021-03-26 06:52:34.887371 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus N 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-01-27 10:00:00 obsr2141910 S21901134 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318143808 2021-03-26 07:56:20.588749 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-06 08:40:00 obsr904434 S23358815 Traveling P22 EBIRD 120.0 3.219 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308630437 2021-03-23 16:29:02.691496 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Orleans US-NY-073 Lakeside Beach SP L370875 H 43.3668991 -78.2358989 2015-04-09 08:45:00 obsr137150 S22766948 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306674079 2021-04-01 10:52:54.724403 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Columbia US-NY-021 14.0 Drowned Lands Swamp Conservation Area L2704928 H 42.0536902 -73.5669422 2015-03-31 15:30:00 obsr481595 S22623277 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313358113 2021-03-24 20:20:08.05015 30494 species avibase-240E3390 House Sparrow Passer domesticus 140 United States US New York US-NY St. Lawrence US-NY-089 US-NY_852 13.0 Chippewa Bay from Denner Road boat ramp L1808374 P 44.4417538 -75.7630566 2015-04-26 09:03:00 obsr1558090 S23081577 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295539007 2021-04-01 10:44:41.995232 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 4 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-02-08 11:24:00 obsr955789 S21725218 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288674438 2021-04-01 12:32:15.282601 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Nassau US-NY-059 30.0 Willow pond L1854465 P 40.635704 -73.691506 2015-01-03 07:29:00 obsr2906952 S21156750 Stationary P21 EBIRD 40.0 4.0 1 G1094307 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308303669 2021-04-01 12:32:15.282601 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 11 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-07 11:50:00 obsr2505956 S22742029 Rusty Blackbird Spring Migration Blitz P41 EBIRD 45.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312444978 2021-12-27 20:39:04.096623 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-04-23 16:00:00 obsr408487 S23023542 Stationary P21 EBIRD 10.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309444347 2021-03-30 19:43:32.881136 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 3 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-04-12 10:45:00 obsr2196583 S22822641 Traveling P22 EBIRD 135.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312367783 2021-04-01 11:15:31.646886 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 13:00:00 obsr263005 S23018182 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291894657 2021-03-26 08:11:28.0353 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Stillwater, NY 52 county route 76 L1926398 P 42.933103 -73.680332 2015-01-19 10:14:00 obsr2564462 S21415713 Stationary P21 EBIRD 62.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295529261 2021-04-01 10:49:39.496318 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 2 United States US New York US-NY Cayuga US-NY-011 13.0 US-NY-Aurora-1 Lake Rd L2577346 P 42.720709 -76.707774 2015-02-08 10:07:00 obsr2871406 S21724501 Traveling P22 EBIRD 7.0 1.609 3.0 1 G1138934 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318971331 2021-03-24 20:58:53.646623 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-11 06:40:00 obsr72341 S23404833 Stationary P21 EBIRD 280.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314479075 2020-01-16 17:00:56 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-30 19:30:00 obsr749440 S23152025 Stationary P21 EBIRD 118.0 3.0 1 G1244737 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295308512 2020-03-22 07:58:01 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-02-06 05:15:00 obsr730231 S21706561 Stationary P21 EBIRD 3.0 2.0 1 G1137327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309508961 2021-03-19 16:26:51.561076 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Franklin US-NY-033 13.0 Private Property - Alderon Marsh L1179127 P 44.9946705 -74.5498753 2015-04-12 09:00:00 obsr706340 S22827044 Traveling P22 EBIRD 360.0 6.437 3.0 1 G1216733 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317332160 2022-02-04 06:14:13.892644 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-05-08 15:35:00 obsr2277801 S23313346 Historical P62 EBIRD 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314058781 2021-03-24 20:21:40.993321 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Seneca US-NY-099 13.0 Cove L678244 P 42.6487254 -76.8698493 2015-04-29 10:00:00 obsr2731440 S23125946 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309309082 2021-03-30 19:07:52.958398 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh/Marine Park L3514666 P 40.6035594 -73.9283967 2015-04-11 14:20:00 obsr827632 S22814617 Traveling P22 EBIRD 60.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314116968 2021-03-24 20:33:47.533911 21291 species avibase-68887DE7 Boreal Chickadee Poecile hudsonicus 3 United States US New York US-NY Tompkins US-NY-109 28.0 Websterk Home L1084526 P 42.4154016 -76.3545191 2015-04-29 09:35:00 obsr2261732 S23129497 Traveling P22 EBIRD 30.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301638605 2021-03-24 20:33:47.533911 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Tompkins US-NY-109 13.0 My house L752736 P 42.4160332 -76.4502089 2015-03-08 11:43:00 obsr887540 S22227782 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291100460 2015-01-15 09:10:34 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Onondaga US-NY-067 13.0 Home, Thatchwood Dr., Manlius L1789277 P 43.008956 -76.0102533 2015-01-14 14:00:00 obsr724731 S21352907 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319583483 2021-03-19 16:02:45.308962 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Broome US-NY-007 28.0 Greenwood County Park L998784 H 42.2869951 -76.0881629 2015-05-14 12:30:00 obsr1830659 S23440260 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290541111 2021-03-26 07:20:31.408164 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Suffolk US-NY-103 30.0 Private Yard L3286431 P 40.9587845 -73.0175909 2015-01-11 15:03:00 obsr2756208 S21307845 Stationary P21 EBIRD 160.0 4.0 1 G1106074 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319094747 2019-09-10 13:56:02 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-05-09 20:10:00 obsr2683910 S23412494 Traveling P22 EBIRD 11.0 1.127 2.0 1 G1268173 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315914426 2021-03-26 06:12:17.833181 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-05-04 07:30:00 obsr479109 S23232331 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308363263 2021-03-26 06:13:28.501496 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Holiday Inn L160744 H 42.08827 -76.79419 2015-04-07 18:34:00 obsr1092576 S22746559 Stationary P21 EBIRD 14.0 4.0 1 G1210647 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288747151 2021-11-09 19:48:29.843482 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 75 United States US New York US-NY Orange US-NY-071 28.0 Warren Sodfarm L2436512 P 41.3363493 -74.4481659 2015-01-03 10:20:00 obsr1665312 S21162761 Traveling P22 EBIRD 20.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289302644 2021-03-23 16:52:36.900075 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Suffolk US-NY-103 30.0 St. Charles Cemetery L1063079 H 40.7349661 -73.4009886 2015-01-05 11:45:00 obsr2906952 S21208321 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304341385 2021-03-24 20:33:47.533911 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 25 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-03-21 08:05:00 obsr455249 S22445573 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312306987 2021-11-09 22:38:55.83044 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Sullivan US-NY-105 US-NY_2792 28.0 644 River Road L2326174 P 41.782401 -75.1017773 2015-04-23 11:30:00 obsr279522 S23013968 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321247882 2021-03-19 16:44:35.607263 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-05-19 08:00:00 obsr1962295 S23533883 Traveling P22 EBIRD 90.0 0.644 2.0 1 G1281106 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292918548 2021-03-26 07:30:35.289997 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Tompkins US-NY-109 13.0 Van Ostrand Road L3313874 P 42.54056 -76.4672899 2015-01-24 10:00:00 obsr881968 S21517028 Stationary P21 EBIRD 5.0 4.0 1 G1121043 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310157107 2015-04-15 07:45:22 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-12 15:00:00 obsr826577 S22873026 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS337025530 2022-03-05 22:03:50.715584 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-12 08:00:00 obsr1846672 S24661973 Traveling P22 EBIRD 210.0 6.437 3.0 1 G1379909 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310904278 2021-03-26 07:30:35.289997 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 4 United States US New York US-NY Tompkins US-NY-109 13.0 Hawthorn Orchard and East Ithaca Rec. Way L122418 H 42.433213 -76.4681321 2015-04-18 12:10:00 obsr1318356 S22923551 Traveling P22 EBIRD 22.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308754547 2020-06-26 08:43:34 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Etna Fringed Gentian Area--south inc. Hanshaw Rd marsh L3542912 H 42.4901352 -76.4317546 2015-04-06 07:49:00 obsr2683910 S22776778 Incidental P20 EBIRD 2.0 0 G1212799 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310713109 2021-11-09 21:43:58.300436 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Ulster US-NY-111 13.0 Black Creek Preserve L2086582 H 41.8236532 -73.9574718 2015-04-17 16:35:00 obsr1136997 S22910957 Stationary P21 EBIRD 12.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299407774 2015-03-02 18:07:00 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY Schoharie US-NY-095 28.0 Cotton Hill Rd - Red House L3288536 P 42.620455 -74.237383 2015-02-24 12:08:00 obsr2268588 S22057753 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314877666 2015-07-13 21:51:12 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Hoag Ave. (Lick to Salt) L276050 H 42.666186 -76.3318223 2015-05-02 09:56:00 obsr1655171 S23176010 Traveling P22 EBIRD 10.0 1.609 2.0 1 G1247598 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289485469 2021-03-23 16:39:03.255227 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-01-06 13:27:00 obsr1958124 S21222973 Stationary P21 EBIRD 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305829023 2021-11-09 18:56:49.988387 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies L428335 H 41.7861111 -73.7397222 2015-03-28 09:00:00 obsr1339050 S22558892 Traveling P22 EBIRD 150.0 3.219 9.0 1 G1202408 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313109816 2021-04-01 12:43:36.236969 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-04-26 09:00:00 obsr1565981 S23066680 Traveling P22 EBIRD 50.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316526404 2021-03-26 07:56:20.588749 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Nassau US-NY-059 Garvies Point Preserve L1770439 H 40.8600466 -73.6510118 2015-05-06 09:30:00 obsr676630 S23267997 Traveling P22 EBIRD 120.0 1.609 12.0 1 G1254776 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300047161 2021-04-01 12:32:15.282601 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-28 09:30:00 obsr1693806 S22107239 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292948437 2018-08-04 16:54:57 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 7 United States US New York US-NY Chemung US-NY-015 28.0 Mark Twain SP Birding Trail East Woods L2372368 P 42.210721 -76.837918 2015-01-24 08:15:00 obsr1587816 S21519295 Traveling P22 EBIRD 86.0 1.448 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303700793 2021-03-23 17:00:13.087107 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Lansing: Burdick Hill Rd L3304997 P 42.4980283 -76.4969873 2015-03-17 09:50:00 obsr2760150 S22395611 Traveling P22 EBIRD 23.0 0.917 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS638259731 2021-03-19 16:19:20.977326 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana X United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-09 obsr219053 S47080219 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305873184 2018-08-04 17:04:32 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 4 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-03-28 17:40:00 obsr2769235 S22562129 Traveling P22 EBIRD 50.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305484260 2021-01-26 11:56:34.435862 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 30 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--CR 7 X CR 27 [Palmyra_SE] L1027335 P 43.0250904 -77.1656084 2015-03-26 18:34:00 obsr606693 S22532855 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307361508 2021-03-26 07:07:10.758746 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 15 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-04 08:35:00 obsr1958124 S22674123 Traveling P22 EBIRD 7.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316045538 2015-05-05 10:00:58 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Hogan Point - Dalheim L2260066 P 43.3058809 -77.737627 2015-04-27 11:25:00 obsr2966702 S23240290 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297777476 2021-03-26 07:20:31.408164 636 species avibase-B77377EE Common Eider Somateria mollissima 2 United States US New York US-NY Suffolk US-NY-103 US-NY_808 30.0 North Sea L3389179 P 40.9452226 -72.4150085 2015-02-14 16:37:00 obsr24556 S21919514 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294355647 2021-03-26 06:11:29.8335 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-01-31 13:48:00 obsr2683910 S21630440 Stationary P21 EBIRD 16.0 2.0 1 G1131444 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304877478 2015-03-23 12:49:03 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 50 United States US New York US-NY Broome US-NY-007 28.0 Grippen Park L2669901 H 42.0863083 -76.0779891 2015-03-23 11:50:00 obsr879105 S22485063 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308562958 2015-04-08 23:14:55 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 5 Female, Adult (2); Male, Adult (2); Female, Immature (1) United States US New York US-NY Herkimer US-NY-043 13.0 Rt 5 - between Little Falls & East Herkimer L828039 P 43.0229922 -74.9191618 2015-04-08 12:11:00 obsr1000124 S22762028 Stationary P21 EBIRD 5.0 3.0 1 G1211921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289816638 2021-03-30 19:39:10.250398 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 12 United States US New York US-NY Nassau US-NY-059 30.0 Saint Johns Pond Sanctuary L123034 H 40.85417 -73.46333 2015-01-07 10:00:00 obsr2129334 S21248894 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314538310 2021-03-30 19:29:33.633096 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 6 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-30 15:20:00 obsr2406624 S23155832 Traveling P22 EBIRD 100.0 3.219 2.0 1 G1245153 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323101937 2021-04-01 11:15:31.646886 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-26 07:00:00 obsr454647 S23646482 Traveling P22 EBIRD 240.0 3.219 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318054458 2021-04-01 11:15:31.646886 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-09 16:08:00 obsr1821546 S23354265 Traveling P22 EBIRD 100.0 4.828 4.0 1 G1260337 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292852180 2021-03-30 19:07:52.958398 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-01-23 15:48:00 obsr2908667 S21511599 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317537989 2021-12-08 07:58:41.562209 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-09 09:00:00 obsr1944212 S23326163 Traveling P22 EBIRD 100.0 2.0 3.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309359309 2021-03-26 06:29:56.44369 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Hamlin-305-373 Jacobs Rd L3557641 P 43.342824 -77.947158 2015-04-12 11:18:00 obsr2595828 S22817748 Traveling P22 EBIRD 22.0 1.609 2.0 1 G1216801 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293111062 2021-04-01 11:15:31.646886 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 30 United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-01-25 10:25:00 obsr350767 S21532023 Stationary P21 EBIRD 15.0 3.0 1 G1122483 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296179788 2021-04-01 12:32:15.282601 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-11 15:00:00 obsr676630 S21775345 Traveling P22 EBIRD 45.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295704499 2018-08-04 16:55:57 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 Male, Adult (2) United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-02-08 14:00:00 obsr2908667 S21737978 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289395876 2021-03-30 19:43:32.881136 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Westchester US-NY-119 30.0 Tarrytown Lakes Park L302456 H 41.0829631 -73.8426401 2015-01-05 14:30:00 obsr1055148 S21215778 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288241259 2021-04-26 05:03:09.627903 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-01 09:30:00 obsr2206421 S21121018 Traveling P22 EBIRD 210.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS412798759 2021-03-26 08:11:28.0353 7429 species avibase-1327AC55 Osprey Pandion haliaetus X United States US New York US-NY Saratoga US-NY-091 13.0 4 Windy Lane South Glens Falls, NY L2987201 P 43.28493 -73.66279 2015-01-04 obsr2943723 S30288278 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311181220 2021-03-31 04:01:10.517395 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N 6 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 07:35:00 obsr2448957 S22940664 Traveling P22 EBIRD 320.0 8.047 16.0 1 G1224971 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332420048 2021-03-19 16:44:35.607263 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-16 16:52:00 obsr334398 S24313950 Traveling P22 EBIRD 90.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301677336 2015-03-09 11:12:19 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-08 13:00:00 obsr820113 S22230616 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310355138 2021-03-24 20:58:04.794277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-14 06:50:00 obsr316199 S22886456 Area P23 EBIRD 80.0 2.59 2.0 1 G1221504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323870397 2018-08-04 17:30:37 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Monroe US-NY-055 13.0 Hogan Point Rd., pond and flooded field L587955 H 43.2987445 -77.7390915 2015-05-29 19:05:00 obsr934639 S23699706 Stationary P21 EBIRD 10.0 2.0 1 G1337408 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322136007 2021-03-26 07:56:20.588749 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-14 09:00:00 obsr2218212 S23589187 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303950589 2021-03-24 21:10:11.310781 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) N 2 United States US New York US-NY Saratoga US-NY-091 13.0 Loughberry Lake L282101 H 43.0946822 -73.767457 2015-03-14 08:30:00 obsr1664745 S22415220 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308741038 2021-11-09 20:12:16.773384 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-04-09 13:19:00 obsr1912104 S22775840 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303655578 2021-03-30 19:03:54.667077 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-15 13:30:00 obsr319738 S22392204 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320653959 2021-04-01 11:15:31.646886 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-17 07:00:00 obsr1731572 S23489551 Traveling P22 EBIRD 420.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294141656 2021-04-01 12:32:15.282601 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 10 United States US New York US-NY Nassau US-NY-059 Stepping Stone Park L1403484 H 40.8177813 -73.7565535 2015-01-31 10:00:00 obsr676630 S21613606 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318475864 2021-04-01 11:24:19.637193 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-10 08:34:00 obsr745890 S23376912 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316922152 2015-05-07 16:35:50 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 S C2 S United States US New York US-NY Cortland US-NY-023 28.0 Taylor Valley SF--wide water L3620235 P 42.650185 -75.985734 2015-05-07 14:04:00 obsr2279567 S23290555 Traveling P22 EBIRD 21.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319491652 2022-02-17 14:32:23.002448 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 20 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-05-12 11:48:00 obsr1601967 S23435066 Traveling P22 EBIRD 145.0 3.219 4.0 1 G1269781 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292030378 2021-12-08 07:58:41.562209 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 17 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-01-17 13:30:00 obsr189780 S21426503 Traveling P22 EBIRD 70.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300368019 2015-03-01 19:45:06 26419 species avibase-787E0536 Marsh Wren Cistothorus palustris 2 United States US New York US-NY Saratoga US-NY-091 14.0 30 Acre Woods L2268000 P 43.1003228 -73.8689804 2015-02-24 10:15:00 obsr2893884 S22133072 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308042379 2021-04-01 11:24:19.637193 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 13 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-04-06 09:44:00 obsr1243175 S22722104 Traveling P22 EBIRD 35.0 0.805 2.0 1 G1208219 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323087125 2018-08-06 22:30:56 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Rochester - 43.0982x-77.6865 - May 26, 2015, 10:22 AM L3674444 P 43.098224 -77.686513 2015-05-23 10:30:00 obsr2817239 S23645617 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309502441 2021-11-09 19:21:07.406501 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-04-12 07:00:00 obsr671490 S22826608 Rusty Blackbird Spring Migration Blitz P41 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307555104 2021-03-26 06:39:43.334073 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-30 obsr2277801 S22687614 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309436878 2021-03-24 21:01:50.671145 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 31 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-04-12 14:00:00 obsr676630 S22822162 Rusty Blackbird Spring Migration Blitz P41 EBIRD 50.0 0.966 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297057594 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Monroe US-NY-055 13.0 9 Lemon Lane {Home} L3364084 P 43.160535 -77.72389 2015-02-14 09:00:00 obsr2329907 S21853743 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312959002 2015-08-02 20:45:19 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 10 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake Park L792637 H 42.7759994 -77.6113701 2015-04-25 10:00:00 obsr1962379 S23057568 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304550288 2022-03-06 12:39:33.700954 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 27 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-03-21 12:30:00 obsr1160328 S22461208 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291153354 2021-11-09 21:31:40.219848 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-01-15 13:15:00 obsr1665312 S21357171 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301119964 2021-03-19 16:10:30.527219 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 6 United States US New York US-NY Chemung US-NY-015 28.0 Elmira Holiday Inn L160744 H 42.08827 -76.79419 2015-03-05 14:28:00 obsr1334267 S22187188 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316299514 2021-11-09 18:41:50.421844 406 species avibase-27B2749A Wood Duck Aix sponsa X United States US New York US-NY Dutchess US-NY-027 13.0 Roeliff Jansen Kill MUA L3121099 H 42.0079918 -73.7374895 2015-05-05 18:00:00 obsr237150 S23255387 Traveling P22 EBIRD 45.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308080844 2021-04-01 11:15:31.646886 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-06 07:45:00 obsr827632 S22724867 Traveling P22 EBIRD 255.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291439149 2018-08-04 16:53:29 337 species avibase-694C127A Mute Swan Cygnus olor 5 Male, Adult (4); Female, Adult (1) United States US New York US-NY Tompkins US-NY-109 13.0 East Shore Park L140301 H 42.471354 -76.5034595 2015-01-17 12:01:00 obsr1062070 S21380530 Traveling P22 EBIRD 51.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS412796070 2021-03-24 21:10:11.310781 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Saratoga US-NY-091 13.0 4 Windy Lane South Glens Falls, NY L2987201 P 43.28493 -73.66279 2015-02-01 obsr2943723 S30287970 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313138876 2021-03-30 19:43:32.881136 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-19 07:30:00 obsr1198912 S23068326 Traveling P22 EBIRD 180.0 1.609 6.0 1 G1241154 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311488117 2021-03-26 07:30:35.289997 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 4 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-16 07:27:00 obsr104522 S22959412 Stationary P21 EBIRD 58.0 4.0 1 G1227832 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302703038 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-12 13:15:00 obsr401055 S22317389 Traveling P22 EBIRD 105.0 0.805 14.0 1 G1176950 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314228109 2021-03-26 06:39:43.334073 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-28 17:35:00 obsr2072398 S23136376 Traveling P22 EBIRD 30.0 0.805 2.0 1 G1266021 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS354457569 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-23 14:08:00 obsr2426588 S25925916 Traveling P22 EBIRD 57.0 0.644 3.0 1 G1472365 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001813 2021-03-26 07:56:20.588749 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 6 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-30 16:00:00 obsr2218212 S23775947 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323722979 2021-03-24 20:58:53.646623 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-28 09:00:00 obsr72341 S23689838 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316405028 2021-03-30 19:29:33.633096 303 species avibase-B59E1863 Canada Goose Branta canadensis 7 United States US New York US-NY Suffolk US-NY-103 US-NY_780 30.0 USFWS_602 Wertheim NWR L295971 H 40.7754935 -72.8810839 2015-04-30 06:55:00 obsr395994 S23260976 Traveling P22 EBIRD 115.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290719418 2015-03-02 18:07:00 32870 species avibase-FFF61080 Orange-crowned Warbler Leiothlypis celata 2 United States US New York US-NY Schoharie US-NY-095 28.0 Cotton Hill Rd - Red House L3288536 P 42.620455 -74.237383 2015-01-09 11:12:00 obsr2268588 S21322306 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323090726 2021-04-01 11:30:42.037277 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-12 14:30:00 obsr2182516 S23645819 Traveling P22 EBIRD 165.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324212154 2018-08-04 17:30:29 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-28 06:00:00 obsr2476180 S23721422 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289846215 2021-04-01 12:18:57.910168 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: Stewart Pk: taxi stop in car L365279 P 42.4612068 -76.5046692 2015-01-05 11:16:00 obsr2760150 S21251380 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304039998 2021-03-30 06:01:28.020715 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 4 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-03-19 12:29:00 obsr2914424 S22422349 Traveling P22 EBIRD 41.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310299503 2021-03-24 05:37:45.927792 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-15 14:38:00 obsr2071643 S22882510 Traveling P22 EBIRD 128.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322302291 2021-03-19 16:44:35.607263 6526 species avibase-4D2FF6F1 Common Tern Sterna hirundo 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-23 15:26:00 obsr334398 S23598213 Traveling P22 EBIRD 44.0 0.483 2.0 1 G1472366 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312642808 2021-11-09 19:26:46.111034 660 spuh avibase-CB56BEF1 scoter sp. Melanitta sp. 2 United States US New York US-NY Orange US-NY-071 28.0 Stewart SF L1136870 H 41.4968697 -74.1592259 2015-04-24 10:45:00 obsr763723 S23037886 Traveling P22 EBIRD 225.0 7.065 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321643516 2021-03-26 06:13:28.501496 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Chemung US-NY-015 28.0 Tanglewood Nature Center and Museum L1134359 H 42.1063498 -76.8769491 2015-05-17 10:00:00 obsr569311 S23558052 Traveling P22 EBIRD 120.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302145925 2021-03-26 07:53:57.664705 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 4 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-03-08 09:06:00 obsr1060479 S22267307 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310326536 2019-07-23 17:28:19 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip G L3559870 P 40.435667 -73.336683 2015-04-11 15:00:00 obsr544268 S22884486 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288381695 2021-03-23 16:39:03.255227 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus 1 United States US New York US-NY Richmond US-NY-085 30.0 Freshkills Park L910281 H 40.5775746 -74.1861379 2015-01-01 16:12:00 obsr1032565 S21132598 Stationary P21 EBIRD 65.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308822246 2018-08-04 17:08:20 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-10 09:54:00 obsr1958124 S22781812 Traveling P22 EBIRD 7.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318339519 2021-03-26 06:39:43.334073 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-09 11:25:00 obsr1548221 S23369294 Traveling P22 EBIRD 125.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921747 2021-03-26 07:56:20.588749 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 14 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-19 16:00:00 obsr2218212 S22173334 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311293756 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-15 14:20:00 obsr585997 S22947452 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313399940 2021-04-01 10:58:47.067498 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Genesee US-NY-037 13.0 BOS section 10b L1304590 P 43.0252315 -78.3232498 2015-04-12 08:30:00 obsr1296884 S23084681 Area P23 EBIRD 420.0 3500.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323620354 2021-03-19 16:44:35.607263 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-05-28 15:20:00 obsr934639 S23681191 Traveling P22 EBIRD 43.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311179216 2021-03-26 07:46:52.994574 636 species avibase-B77377EE Common Eider Somateria mollissima 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-19 07:00:00 obsr2270510 S22940546 Traveling P22 EBIRD 51.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318077603 2021-03-19 16:08:39.161312 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 7 United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.4220913 -79.4281205 2015-05-10 07:40:00 obsr2497657 S23355473 Traveling P22 EBIRD 158.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299763989 2021-03-26 07:30:35.289997 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 5 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-02-26 09:30:00 obsr2137468 S22085341 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309501454 2021-03-19 16:19:20.977326 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 5 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-12 09:28:00 obsr2071643 S22826529 Traveling P22 EBIRD 245.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299272529 2015-02-23 20:10:51 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Westchester US-NY-119 30.0 US-NY-Scarsdale - 40.9939x-73.8385 - Feb 23, 2015, 8:09 PM L3435455 P 40.993912 -73.838485 2015-02-23 09:15:00 obsr2078798 S22047948 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302413791 2021-03-19 16:12:42.877422 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Columbia US-NY-021 13.0 Geoffroy's Pond, Churchtown L2573337 P 42.1891009 -73.7094212 2015-03-10 16:20:00 obsr481595 S22295137 Stationary P21 EBIRD 85.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308725299 2021-03-19 16:10:30.527219 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 8 United States US New York US-NY Chemung US-NY-015 28.0 Grove St. Fishing Access L1949349 H 42.08293 -76.81726 2015-04-09 15:00:00 obsr2430746 S22774621 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312754011 2021-12-27 20:39:04.096623 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-04-25 10:08:00 obsr1008519 S23045462 Traveling P22 EBIRD 37.0 1.609 2.0 1 G1235527 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295877183 2018-08-04 16:55:59 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Seneca US-NY-099 13.0 Sampson SP--Marina L1303955 H 42.7275701 -76.913753 2015-02-09 17:00:00 obsr2839747 S21751398 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292281735 2021-03-26 07:30:35.289997 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 8 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 South End--845 Taughannock Boulevard L1913884 P 42.46371 -76.52346 2015-01-21 08:33:00 obsr2683910 S21445901 Stationary P21 EBIRD 12.0 2.0 1 G1118455 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297566127 2021-04-01 12:14:19.266649 5923 species avibase-15369E8E Dunlin Calidris alpina N 2 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Captree SP L283564 H 40.6394313 -73.2644575 2015-02-16 10:15:00 obsr2406624 S21899523 Traveling P22 EBIRD 40.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304833845 2021-11-09 18:25:59.444943 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Wappinger Lake L1829902 H 41.6070847 -73.9159704 2015-03-22 10:10:00 obsr2343626 S22481592 Stationary P21 EBIRD 33.0 2.0 1 G1189941 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310943454 2021-03-26 07:30:35.289997 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-18 09:04:00 obsr2307843 S22925873 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308976655 2015-04-10 21:54:48 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-10 06:30:00 obsr2716320 S22792723 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307862257 2021-04-01 11:15:31.646886 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-04-05 06:30:00 obsr1289811 S22709133 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313741135 2021-03-26 07:20:31.408164 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Heckscher SP, East Islip L547888 H 40.7129149 -73.1650615 2015-04-28 08:15:00 obsr1987335 S23106040 Traveling P22 EBIRD 21.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310552425 2021-03-19 16:19:20.977326 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-16 09:25:00 obsr319738 S22900448 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311826320 2021-03-26 07:17:57.136956 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Towpath Rd. L266832 H 43.0038224 -76.7457005 2015-04-19 10:50:00 obsr2683910 S22982417 Traveling P22 EBIRD 74.0 3.219 2.0 1 G1230121 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303019867 2021-03-23 16:52:36.900075 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 32 United States US New York US-NY Suffolk US-NY-103 30.0 Timber Point L1801552 P 40.718894 -73.142074 2015-03-13 16:05:00 obsr1107696 S22342041 Traveling P22 EBIRD 36.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316211638 2018-08-04 17:14:55 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-05 17:33:00 obsr800690 S23250194 Stationary P21 EBIRD 64.0 1.0 1 G1255828 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302874645 2021-03-30 19:37:33.521815 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 40 United States US New York US-NY Wayne US-NY-117 Sodus Bay L867215 H 43.2572057 -76.9688416 2015-03-13 12:58:00 obsr1721609 S22330215 Traveling P22 EBIRD 86.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312402088 2021-03-26 06:53:58.593564 26278 species avibase-A381417F House Wren Troglodytes aedon 2 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-04-23 09:00:00 obsr2812831 S23020601 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304567622 2021-03-24 20:33:47.533911 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-03-22 07:53:00 obsr2377251 S22462370 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317350511 2021-03-24 20:58:53.646623 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-08 15:05:00 obsr72341 S23314435 Stationary P21 EBIRD 240.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316289988 2017-01-08 08:50:20 23187 species avibase-ACB9D1C6 Purple Martin Progne subis 1 Female, Adult (1) United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College L1485004 H 44.4375537 -74.2530447 2015-05-05 17:20:00 obsr568671 S23254812 Stationary P21 EBIRD 135.0 5.0 1 G1254008 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293981710 2021-03-23 16:39:03.255227 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-30 11:54:00 obsr1958124 S21601270 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311835289 2021-03-26 07:17:57.136956 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 4 United States US New York US-NY Seneca US-NY-099 13.0 Rt. 89 near Schuyler Creek L805638 H 42.803374 -76.7630877 2015-04-19 13:15:00 obsr2683910 S22982983 Traveling P22 EBIRD 109.0 0.644 2.0 1 G1230139 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316853173 2018-08-06 22:29:07 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Columbia US-NY-021 13.0 Olana State Historic Site L357372 H 42.2183005 -73.8287207 2015-05-07 10:50:00 obsr481595 S23286649 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324131658 2021-03-23 17:26:08.495143 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-30 12:00:00 obsr391865 S23716411 Traveling P22 EBIRD 240.0 3.219 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320309728 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-16 10:00:00 obsr2908667 S23479832 Traveling P22 EBIRD 160.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320285534 2021-04-01 11:15:31.646886 33474 species avibase-043F337A Indigo Bunting Passerina cyanea X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 12:30:00 obsr2336264 S23478553 Traveling P22 EBIRD 300.0 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309648530 2021-03-30 19:29:33.633096 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Suffolk US-NY-103 30.0 Chandler Estate L1355478 H 40.9559916 -73.0192018 2015-04-12 14:00:00 obsr2338506 S22836326 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303998782 2021-04-01 12:32:15.282601 7200 species avibase-49D9148A Great Egret Ardea alba 25 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-03-13 08:55:00 obsr1112275 S22418764 Traveling P22 EBIRD 90.0 2.414 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307001943 2021-11-09 19:01:40.008558 6295 species avibase-6CDC3C9C Laughing Gull Leucophaeus atricilla 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-04-02 13:05:00 obsr798742 S22647857 Traveling P22 EBIRD 100.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294369016 2021-04-01 10:45:00.916278 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis N 4 United States US New York US-NY Bronx US-NY-005 US-NY_1763 30.0 Pelham Bay Park L284155 H 40.8681047 -73.809474 2015-02-01 09:00:00 obsr1135516 S21631405 Traveling P22 EBIRD 150.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300452827 2021-04-28 05:22:52.046239 591 species avibase-1929E1E1 Canvasback Aythya valisineria 150 United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-03-01 07:00:00 obsr2233143 S22138790 Area P23 EBIRD 300.0 30.3514 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309500464 2021-11-09 19:57:48.990233 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Orange US-NY-071 28.0 Scotts Corners Golf Course L3555967 H 41.5305131 -74.2060384 2015-04-12 07:27:00 obsr870166 S22826448 Traveling P22 EBIRD 19.0 0.402 2.0 1 G1216683 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307035935 2020-02-15 04:21:41 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 4 United States US New York US-NY Seneca US-NY-099 13.0 Finger Lakes Regional Airport L3284263 H 42.8787599 -76.783458 2015-04-02 19:18:00 obsr1092576 S22650301 Traveling P22 EBIRD 15.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301962644 2021-03-30 19:03:54.667077 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Harbor L3359288 P 42.4898526 -79.3366313 2015-03-07 14:10:00 obsr1224512 S22253401 Stationary P21 EBIRD 100.0 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322888436 2021-04-01 12:29:50.209479 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Fulton US-NY-035 13.0 Dolgeville - East L619350 P 43.0989461 -74.7668982 2015-05-22 07:20:00 obsr2694889 S23632632 Stationary P21 EBIRD 38.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306501190 2021-12-10 08:21:29.396662 681 species avibase-407E2CA8 Common Merganser Mergus merganser 3 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-28 08:30:00 obsr2677640 S22609877 Traveling P22 EBIRD 120.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313103163 2021-04-01 12:18:57.910168 20829 species avibase-B9B272F4 Common Raven Corvus corax 6 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Beebe Lake L281786 H 42.4512932 -76.4767515 2015-04-26 08:35:00 obsr881968 S23066314 Traveling P22 EBIRD 65.0 0.161 3.0 1 G1239951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311951002 2021-11-09 18:45:58.099424 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus X United States US New York US-NY Dutchess US-NY-027 13.0 Netherwood Road L3544831 P 41.788241 -73.8500333 2015-04-21 14:00:00 obsr1917973 S22990477 Traveling P22 EBIRD 30.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293722912 2021-11-09 21:47:05.616852 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Ulster US-NY-111 28.0 Mohonk Road L2513100 P 41.7893315 -74.136343 2015-01-28 09:00:00 obsr444155 S21580258 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317129602 2021-03-26 06:29:56.44369 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-08 10:20:00 obsr2595828 S23302348 Traveling P22 EBIRD 33.0 0.161 2.0 1 G1257532 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316013036 2021-03-26 07:53:57.664705 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 Letchworth SP--Mount Morris Dam L810179 H 42.7332385 -77.9072016 2015-05-04 11:10:00 obsr2240964 S23238378 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314262254 2021-03-26 08:14:57.071052 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 4 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-04-27 15:15:00 obsr1832377 S23138626 Traveling P22 EBIRD 45.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294473975 2021-04-28 05:26:15.958627 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus X United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-02-01 12:00:00 obsr2404047 S21639640 Traveling P22 EBIRD 102.0 3.219 2.0 1 G1132203 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289990963 2015-01-09 12:32:29 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Orchard/Eagle L2848533 P 42.4370138 -79.3200874 2015-01-09 09:30:00 obsr2343764 S21263029 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306402921 2021-03-26 07:30:35.289997 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 3 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-29 08:25:00 obsr2683910 S22602018 Traveling P22 EBIRD 63.0 0.966 2.0 1 G1198724 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296315315 2021-11-09 19:42:29.255347 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) X United States US New York US-NY Orange US-NY-071 13.0 Unico Park-Torches on the Hudson, Newburgh waterfront L1965787 H 41.5045459 -74.0047914 2015-02-12 16:00:00 obsr1872991 S21787902 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311018626 2021-03-23 17:18:00.959502 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 John Boyd Thacher SP--Overlook L2142779 H 42.6506584 -74.0063524 2015-04-18 08:25:00 obsr982339 S22930637 Traveling P22 EBIRD 65.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312814506 2021-04-01 11:15:31.646886 592 species avibase-3072CC16 Redhead Aythya americana 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-25 07:25:00 obsr1407710 S23049098 Traveling P22 EBIRD 349.0 5.633 18.0 1 G1235092 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288473484 2015-01-02 12:51:28 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park-Pleasant Grove Brook L3257317 P 42.4609926 -76.5009055 2015-01-01 09:10:00 obsr2377251 S21140345 Traveling P22 EBIRD 15.0 0.2 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324284240 2021-11-09 17:58:40.313796 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 S C2 S Male, Adult (1) United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-31 14:03:00 obsr2321296 S23726162 Traveling P22 EBIRD 87.0 2.414 7.0 1 G1297819 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289639661 2021-03-26 08:05:20.615241 592 species avibase-3072CC16 Redhead Aythya americana N 3 United States US New York US-NY Onondaga US-NY-067 13.0 Syracuse airport L1391161 P 43.1149458 -76.1120629 2015-01-06 14:00:00 obsr2716320 S21235357 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321883947 2021-11-09 18:36:27.898762 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens 2 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-05-21 17:30:00 obsr1917973 S23573184 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314055636 2021-04-01 12:31:09.823741 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Livingston US-NY-051 13.0 PFA West York Route L1192722 P 42.8701771 -77.9178715 2015-04-29 06:34:00 obsr1060479 S23125750 Traveling P22 EBIRD 90.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291109370 2019-01-03 10:54:11 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-G L3289012 P 40.06773 -73.02048 2015-01-11 14:00:00 obsr598381 S21353774 Traveling P22 EBIRD 60.0 26.554 44.0 1 G1108340 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS302330296 2021-04-01 12:14:19.266649 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-10 14:30:00 obsr1137265 S22286388 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313139894 2021-03-19 16:27:31.421791 27616 species avibase-D77E4B41 American Robin Turdus migratorius 25 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kanyoo Trail L152120 H 43.1168988 -78.430624 2015-04-26 11:38:00 obsr1092576 S23068383 Traveling P22 EBIRD 104.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304402934 2021-03-26 07:07:10.758746 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 42 United States US New York US-NY Richmond US-NY-085 Wolfe's Pond Park L300477 H 40.5153 -74.1898799 2015-03-21 10:05:00 obsr1893950 S22450269 Traveling P22 EBIRD 15.0 0.483 2.0 1 G1186868 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302233440 2021-03-26 07:07:10.758746 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-10 13:40:00 obsr1958124 S22276402 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307575053 2021-03-26 06:09:25.361188 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 1 United States US New York US-NY Broome US-NY-007 28.0 Bond St., Binghamton L1430873 P 42.1013271 -75.8812401 2015-04-04 08:30:00 obsr998593 S22689128 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308216687 2021-03-26 07:30:35.289997 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-07 09:28:00 obsr2683805 S22735663 Traveling P22 EBIRD 80.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317111654 2021-03-26 07:46:52.994574 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 12 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-05-08 06:52:00 obsr2321296 S23301447 Traveling P22 EBIRD 177.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301500663 2018-08-04 16:58:54 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 4 United States US New York US-NY Tioga US-NY-107 28.0 Confluence Park, Owego L2011248 H 42.0957386 -76.2724543 2015-03-07 11:00:00 obsr317968 S22217400 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291707801 2021-03-22 09:15:15.32301 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus X United States US New York US-NY Niagara US-NY-063 US-NY_1724 13.0 Niagara Falls SP--Goat Island L207766 H 43.080477 -79.0683617 2015-01-18 13:00:00 obsr2537615 S21401364 Traveling P22 EBIRD 30.0 0.402 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321160461 2021-03-19 16:44:35.607263 406 species avibase-27B2749A Wood Duck Aix sponsa 75 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-18 08:35:00 obsr745890 S23528534 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309496115 2021-11-15 03:06:58.889978 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-12 15:30:00 obsr1927179 S22826145 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316697998 2021-03-26 06:29:56.44369 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 25 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-05-06 16:40:00 obsr934639 S23278077 Traveling P22 EBIRD 70.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308821312 2021-03-26 07:30:35.289997 8857 species avibase-26BA25EF Northern Saw-whet Owl Aegolius acadicus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Drake Rd., Lansing L366342 H 42.5309152 -76.5116 2015-04-10 08:31:00 obsr1655171 S22781744 Traveling P22 EBIRD 16.0 3.219 2.0 1 G1219954 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289109501 2021-04-01 11:24:19.637193 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-04 09:45:00 obsr2240964 S21193570 Traveling P22 EBIRD 45.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313658568 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-27 16:15:00 obsr2603801 S23100689 Traveling P22 EBIRD 180.0 4.828 3.0 1 G1240494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116927 2021-04-01 10:45:00.916278 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park L279591 H 40.8980462 -73.8859475 2015-01-01 08:30:00 obsr2519357 S21194151 Traveling P22 EBIRD 75.0 1.207 4.0 1 G1089453 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296137048 2018-08-04 16:56:05 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 15 United States US New York US-NY Westchester US-NY-119 30.0 Hommocks Conservation Area L3202017 H 40.9318417 -73.7420636 2015-02-11 11:30:00 obsr258560 S21771919 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316682663 2021-03-24 20:57:48.241391 23242 species avibase-94A1C447 Bank Swallow Riparia riparia 2 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-05-06 16:05:00 obsr1708031 S23277213 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310337246 2019-07-24 17:31:47 505 species avibase-C732CB10 American Black Duck Anas rubripes 450 United States US New York US-NY Queens US-NY-081 Brooklyn Pelagic Trip A L3559771 P 40.4456 -73.794267 2015-04-11 07:00:00 obsr2883074 S22885206 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221329 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309791897 2021-03-26 06:29:56.44369 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 6 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay L629399 H 43.2183125 -77.536869 2015-03-27 08:30:00 obsr1962295 S22847206 Stationary P21 EBIRD 25.0 2.0 1 G1218434 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315377363 2021-03-19 16:44:35.607263 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-05-03 07:30:00 obsr934639 S23203009 Traveling P22 EBIRD 160.0 4.426 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313167005 2021-03-26 07:46:52.994574 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-04-26 06:11:00 obsr2512689 S23069992 Traveling P22 EBIRD 94.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310640972 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-17 08:15:00 obsr2706415 S22906331 Traveling P22 EBIRD 105.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS626887128 2021-04-01 11:30:42.037277 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-02 10:00:00 obsr251507 S46244477 Traveling P22 EBIRD 25.0 0.805 2.0 1 G3252553 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310279567 2021-03-26 06:39:43.334073 30494 species avibase-240E3390 House Sparrow Passer domesticus 13 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-12 08:03:00 obsr756196 S22881122 Traveling P22 EBIRD 116.0 1.448 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313193464 2021-04-01 10:57:06.520339 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-04-26 14:00:00 obsr2769235 S23071584 Traveling P22 EBIRD 101.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316013921 2021-03-19 16:44:35.607263 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 9 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-05-04 08:56:00 obsr2774009 S23238429 Traveling P22 EBIRD 30.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312716217 2021-03-23 16:39:03.255227 20813 spuh avibase-764AAC8A crow sp. Corvus sp. (crow sp.) 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-25 06:36:00 obsr1958124 S23042919 Traveling P22 EBIRD 5.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300964710 2021-04-01 12:26:53.827486 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-03 09:30:00 obsr2268588 S22176582 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316821316 2015-05-09 16:49:25 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 08:30:00 obsr1668936 S23285030 Traveling P22 EBIRD 135.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317151304 2018-08-06 22:29:10 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-08 07:00:00 obsr1472872 S23303443 Traveling P22 EBIRD 225.0 9.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305849372 2015-03-28 17:18:32 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 5 United States US New York US-NY Richmond US-NY-085 Allentown Ln. x Windward Ct. Waterfront L3071833 H 40.528528 -74.242443 2015-03-28 07:30:00 obsr1893950 S22560361 Stationary P21 EBIRD 10.0 2.0 1 G1195302 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290476384 2015-01-11 17:29:20 5922 species avibase-06B9BD24 Sanderling Calidris alba 1 United States US New York US-NY Broome US-NY-007 28.0 estherave L197301 P 42.0891612 -75.9046297 2015-01-11 09:30:00 obsr646558 S21302634 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306551460 2015-04-07 08:52:48 6616 species avibase-7E022378 Common Loon Gavia immer 21 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Captree Island L2865928 H 40.6469348 -73.2632673 2015-03-28 08:48:00 obsr1987335 S22613761 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309384645 2022-01-15 16:45:45.070972 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-12 07:53:00 obsr1190892 S22819239 Traveling P22 EBIRD 232.0 4.828 2.0 1 G7719301 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291429442 2018-08-04 16:53:24 32128 species avibase-3647E146 Vesper Sparrow Pooecetes gramineus 20 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton-556-562 Chenango St L2523398 P 42.120587 -75.900032 2015-01-16 17:20:00 obsr998593 S21379763 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293180584 2021-04-01 12:32:15.282601 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-25 09:00:00 obsr544268 S21537380 Traveling P22 EBIRD 90.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312078131 2018-08-04 17:11:47 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 S C2 S United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--CLO deck L747847 P 42.480014 -76.451595 2015-04-22 12:52:00 obsr1062070 S22998654 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS374992719 2021-03-30 19:43:32.881136 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 28 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Reservoir, Cherry St. at Rte 35 L2725683 H 41.2681063 -73.6991582 2015-01-10 10:00:00 obsr445356 S27653887 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291984198 2021-03-26 06:29:56.44369 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 2 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Rush-390 Jeffords Rd L3304548 P 43.009923 -77.621515 2015-01-19 12:00:00 obsr1633923 S21422875 Stationary P21 EBIRD 100.0 2.0 1 G1116089 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288754493 2021-11-09 21:56:49.532458 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla X United States US New York US-NY Ulster US-NY-111 28.0 JBNHS Wallkill Valley L3261313 P 41.7462135 -74.0883636 2015-01-03 08:00:00 obsr2862523 S21163349 Traveling P22 EBIRD 300.0 40.234 37.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309926363 2021-11-15 03:06:58.889978 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 7 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-14 06:30:00 obsr1135516 S22856777 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296085859 2015-02-11 07:37:49 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 9 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-02-10 08:45:00 obsr1680059 S21767910 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305853144 2015-03-28 17:32:58 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Saratoga US-NY-091 13.0 23 scotch mist way L1882732 P 42.96589 -73.7828351 2015-03-28 obsr2774749 S22560639 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292750872 2021-03-26 07:30:35.289997 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 10 United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-23 09:35:00 obsr1376641 S21503559 Stationary P21 EBIRD 75.0 3.0 1 G1120109 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312437276 2021-03-23 17:26:08.495143 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas X United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-23 10:10:00 obsr143739 S23022989 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309408901 2021-03-19 16:02:45.308962 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Broome US-NY-007 28.0 SUNY Broome Community College L3583220 H 42.1353684 -75.9091816 2015-04-12 10:50:00 obsr1044068 S22820741 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308197102 2021-04-01 10:47:08.851048 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum X United States US New York US-NY Broome US-NY-007 28.0 Cheri A. Lindsey Park and River Walk L1869625 H 42.1129752 -75.906382 2015-04-06 08:55:00 obsr1044068 S22734138 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312481169 2021-03-30 12:05:58.533651 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-23 15:30:00 obsr644027 S23025999 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313245720 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L2020281 P 40.783661 -73.963995 2015-04-26 09:15:00 obsr2436774 S23074598 Traveling P22 EBIRD 225.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321639506 2015-05-23 21:36:19 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Cayuga US-NY-011 13.0 Ledyard Rd. (Hwy 90 - CR 154), Cayuga Co. L335771 P 42.7035954 -76.6749601 2015-05-21 06:11:00 obsr620377 S23557809 Traveling P22 EBIRD 27.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291672203 2021-03-26 07:42:06.558742 31530 species avibase-B48335B1 Pine Siskin Spinus pinus N 270 United States US New York US-NY Washington US-NY-115 13.0 Kingsbury Rd L1475049 P 43.3647344 -73.5123533 2015-01-18 11:40:00 obsr1222746 S21398787 Traveling P22 EBIRD 34.0 3.38 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301205463 2021-03-30 19:39:10.250398 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-06 08:30:00 obsr525303 S22194118 Traveling P22 EBIRD 120.0 1.609 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300068676 2019-07-23 17:27:34 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 18 United States US New York US-NY Richmond US-NY-085 Newark Bay at Richmond Terr. & Western Ave. L880326 H 40.6410787 -74.1796194 2015-02-28 11:55:00 obsr1893950 S22108968 Stationary P21 EBIRD 15.0 2.0 1 G1161948 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302522467 2021-03-30 19:29:33.633096 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 West Brook Pond L2714029 H 40.7469795 -73.1564298 2015-03-11 18:37:00 obsr1107696 S22303446 Rusty Blackbird Spring Migration Blitz P41 EBIRD 10.0 0.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312706740 2021-03-26 07:52:59.845315 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-23 08:00:00 obsr316199 S23042284 Area P23 EBIRD 80.0 2.59 2.0 1 G1234621 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293396551 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-01-25 12:15:00 obsr717528 S21554623 Stationary P21 EBIRD 130.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314920440 2021-03-26 06:39:43.334073 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-02 07:30:00 obsr2797341 S23178224 Stationary P21 EBIRD 20.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288521966 2021-11-09 18:31:48.13381 32155 species avibase-31CE00C7 Savannah Sparrow Passerculus sandwichensis 3 United States US New York US-NY Dutchess US-NY-027 28.0 Nuclear Lake L225084 H 41.595318 -73.6477569 2015-01-01 13:45:00 obsr763723 S21144367 Traveling P22 EBIRD 105.0 2.253 3.0 1 G1091095 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313347044 2018-08-04 17:12:16 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-25 16:05:00 obsr34822 S23080926 Traveling P22 EBIRD 16.0 4.828 3.0 1 G1238407 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306978802 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-02 06:48:00 obsr150865 S22645785 Traveling P22 EBIRD 194.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297718656 2021-03-24 20:33:47.533911 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-02-16 09:30:00 obsr2137468 S21913908 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287223 2021-03-26 07:07:10.758746 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Richmond US-NY-085 Page Ave. Beach L1340800 H 40.5023216 -74.2288034 2015-01-01 11:37:00 obsr1893950 S21125157 Stationary P21 EBIRD 18.0 2.0 1 G1088906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315635232 2021-03-26 06:15:05.840405 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Cortland US-NY-023 28.0 AviCor30 L3513972 H 42.745 -76.2441865 2015-05-04 06:58:00 obsr620377 S23217018 Stationary P21 EBIRD 13.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS560702085 2021-03-19 16:08:39.161312 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Saint Hyacinth Chapel and Cemetery L2057391 H 42.5051356 -79.3030071 2015-05-17 10:11:00 obsr916033 S23489514 Traveling P22 EBIRD 58.0 0.402 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304277513 2015-03-20 19:31:47 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-19 15:52:00 obsr1334267 S22440986 Traveling P22 EBIRD 19.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313166688 2021-03-26 07:07:10.758746 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 10 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L391605 P 40.6015392 -74.0537739 2015-04-26 12:00:00 obsr666331 S23069973 Traveling P22 EBIRD 135.0 2.414 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296347765 2018-08-04 16:56:09 6616 species avibase-7E022378 Common Loon Gavia immer 19 United States US New York US-NY Kings US-NY-047 30.0 Coney Island Creek--Leon S. Kaiser Park L1312993 H 40.5806115 -73.9979002 2015-02-12 12:45:00 obsr1821546 S21790454 Traveling P22 EBIRD 34.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315905038 2021-03-26 06:17:19.712573 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-05-04 obsr2096529 S23231843 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322337684 2021-03-19 16:10:30.527219 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-05-23 18:42:00 obsr967916 S23600256 Traveling P22 EBIRD 97.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316255331 2021-04-01 11:15:31.646886 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-05-05 10:22:00 obsr150415 S23252838 Traveling P22 EBIRD 193.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290860243 2019-07-23 17:26:47 6201 species avibase-64F4DD81 Razorbill Alca torda 5 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-B L3288880 P 40.21933 -73.19694 2015-01-11 09:00:00 obsr896979 S21333476 Traveling P22 EBIRD 60.0 15.289 44.0 1 G1108334 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319411730 2021-03-19 16:14:11.035882 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Cortland US-NY-023 28.0 I-81, Cortland L3641467 P 42.6007986 -76.1552954 2015-05-13 11:50:00 obsr2628711 S23430282 Incidental P20 EBIRD 2.0 0 G1269760 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304299325 2021-03-26 06:20:10.658048 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 6 United States US New York US-NY Genesee US-NY-037 13.0 Francis Road, Batavia, NY L1421017 P 42.9423971 -78.1622197 2015-03-20 12:05:00 obsr393804 S22442613 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311203064 2021-04-01 12:18:57.910168 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Palmer Woods L287796 H 42.4604469 -76.4789951 2015-04-19 08:50:00 obsr1725472 S22941878 Traveling P22 EBIRD 100.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290994138 2021-03-26 06:59:15.841579 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Oswego US-NY-075 13.0 Fulton NY yard L810572 P 43.3027778 -76.41 2015-01-14 11:30:00 obsr438598 S21344097 Stationary P21 EBIRD 35.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303546988 2021-03-26 06:29:56.44369 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-16 15:35:00 obsr934639 S22383993 Traveling P22 EBIRD 45.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315663398 2021-03-19 16:54:27.713469 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Montgomery US-NY-057 13.0 629 State Highway 161 L3554520 P 42.8835997 -74.2643339 2015-05-04 06:15:00 obsr286403 S23218649 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310910914 2016-03-24 15:20:12 32474 species avibase-27410227 Eastern Meadowlark Sturnella magna 1 United States US New York US-NY Tompkins US-NY-109 28.0 Roy H. Park Preserve--south (FLLT) L305381 H 42.4259195 -76.3357544 2015-04-18 09:45:00 obsr1418810 S22923919 Traveling P22 EBIRD 70.0 1.5 2.0 1 G1226720 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292913298 2021-03-24 20:33:47.533911 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, 212 Tareyton L252844 P 42.4724094 -76.4601243 2015-01-24 07:41:00 obsr2307843 S21516603 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308742308 2015-04-09 20:09:40 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 11 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2737378 P 42.7558333 -78.8616667 2015-04-08 08:00:00 obsr436899 S22775954 Stationary P21 EBIRD 240.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311432397 2021-11-15 03:11:49.507437 16284 species avibase-33808812 Alder Flycatcher Empidonax alnorum 5 United States US New York US-NY Rockland US-NY-087 30.0 Rockland Lake SP L283611 H 41.1468757 -73.9234741 2015-04-19 07:10:00 obsr1932005 S22956005 Traveling P22 EBIRD 80.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300931933 2021-11-09 18:34:59.455843 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Dutchess US-NY-027 13.0 Separate Road, Amenia, NY L2644093 P 41.8733317 -73.6026907 2015-03-04 15:30:00 obsr1917973 S22174076 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316274628 2021-03-30 19:39:10.250398 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 4 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-05-05 09:00:00 obsr1489009 S23253953 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321549698 2022-01-12 18:14:10.119384 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 5 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--South Entrance L825062 H 44.3641149 -74.1511381 2015-05-17 05:22:00 obsr1222746 S23552089 Traveling P22 EBIRD 175.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323217093 2021-03-26 07:56:20.588749 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-26 12:47:00 obsr873268 S23654027 Traveling P22 EBIRD 65.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293749016 2018-08-04 16:55:23 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY Broome US-NY-007 28.0 Chugnut River Walk L2146812 P 42.09197 -76.06111 2015-01-28 15:30:00 obsr290506 S21582626 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303483051 2015-03-16 10:44:37 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 11 F C1 F United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Frog Barn pond east bench, Sapsucker Woods L301737 P 42.47407 -76.44819 2015-03-16 09:42:00 obsr2307843 S22379042 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292472767 2021-11-09 18:58:19.805596 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Dutchess US-NY-027 13.0 Mills-Norrie SP--Norrie Point L450314 H 41.8326889 -73.9417694 2015-01-21 10:29:00 obsr1732267 S21481671 Traveling P22 EBIRD 110.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299951258 2021-03-24 19:24:40.212356 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-02-27 07:30:00 obsr479109 S22099476 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310568460 2018-02-20 13:22:31 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 Breezy Point Tip L152499 H 40.5506643 -73.9357889 2015-04-11 17:46:00 obsr870166 S22901493 Traveling P22 EBIRD 8.0 0.402 2.0 1 G1222457 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS307042701 2018-08-04 17:05:02 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-02 09:15:00 obsr856524 S22650822 Traveling P22 EBIRD 12.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311036363 2021-03-30 19:37:33.521815 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 1 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-18 09:27:00 obsr1721609 S22931678 Traveling P22 EBIRD 191.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS798334185 2019-08-25 22:35:21 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 12 United States US New York US-NY Suffolk US-NY-103 Freeport Pelagic 011115-C L3288894 P 40.16935 -73.1073 2015-01-11 10:00:00 obsr2686964 S59266080 Traveling P22 EBIRD 60.0 16.254 44.0 1 G1108335 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308723290 2021-03-30 06:01:28.020715 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Chemung US-NY-015 28.0 Eldridge Park L189724 H 42.11466 -76.81663 2015-04-09 11:20:00 obsr2430746 S22774435 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292731365 2021-03-26 07:20:31.408164 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-01-20 07:30:00 obsr1592950 S21501944 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322631619 2021-04-01 11:30:42.037277 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-21 18:11:00 obsr1433400 S23616921 Traveling P22 EBIRD 60.0 1.915 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294437233 2021-03-26 06:39:43.334073 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-01 15:01:00 obsr2493447 S21636756 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323170701 2021-06-10 13:58:54.983373 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Badgerow Park L140440 H 43.2569008 -77.6433029 2015-05-26 11:15:00 obsr2504709 S23651156 Traveling P22 EBIRD 45.0 0.161 4.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS292057769 2021-03-26 08:14:57.071052 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-01-19 09:15:00 obsr2918150 S21428622 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290914677 2021-03-30 19:39:10.250398 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 14 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 17:00:00 obsr840949 S21337851 Traveling P22 EBIRD 30.0 4.828 44.0 1 G1108343 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321189009 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-18 17:15:00 obsr2750470 S23530259 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304343549 2021-03-26 07:20:31.408164 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Suffolk US-NY-103 30.0 observation post L3493564 P 40.9332718 -72.6137991 2015-03-21 08:35:00 obsr1277765 S22445735 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314944909 2018-08-04 17:14:08 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Oak Orchard WMA--Goose Pond overlook L294791 H 43.1245968 -78.2729208 2015-05-02 13:40:00 obsr2588479 S23179475 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304918785 2015-03-23 16:24:04 5962 species avibase-4A3B2CFF Short-billed Dowitcher Limnodromus griseus 1 United States US New York US-NY Orleans US-NY-073 13.0 US-NY-Lyndonville-12041-12163 Co Rd 93 L2623306 P 43.365196 -78.347903 2015-03-23 16:23:00 obsr2588479 S22488346 Stationary P21 EBIRD 1.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300137064 2021-03-24 20:58:53.646623 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-02-28 14:50:00 obsr72341 S22115013 Stationary P21 EBIRD 140.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293418015 2015-01-26 17:07:33 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 Female, Adult (2) United States US New York US-NY Richmond US-NY-085 30.0 YARD L783871 P 40.5845732 -74.1056532 2015-01-26 16:27:00 obsr1893950 S21556585 Stationary P21 EBIRD 38.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311338607 2021-03-26 07:17:57.136956 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Towpath Rd. L266832 H 43.0038224 -76.7457005 2015-04-19 10:50:00 obsr1655171 S22950134 Traveling P22 EBIRD 74.0 3.219 2.0 1 G1230121 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299414137 2021-11-09 17:44:58.165123 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Dutchess US-NY-027 13.0 Feeder/yard observations L1072689 P 41.8611874 -73.6756039 2015-02-24 08:00:00 obsr1917973 S22058237 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291649582 2021-04-01 12:32:15.282601 337 species avibase-694C127A Mute Swan Cygnus olor X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Point Lookout--Town Park L1071573 H 40.5865165 -73.5903203 2015-01-18 07:30:00 obsr2207991 S21397284 Traveling P22 EBIRD 60.0 0.322 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291311533 2019-12-02 14:38:47 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca: Stewart Pk: taxi stop in car L365279 P 42.4612068 -76.5046692 2015-01-16 07:22:00 obsr2760150 S21370438 Stationary P21 EBIRD 16.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324056321 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 08:52:00 obsr856524 S23711425 Traveling P22 EBIRD 240.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320652495 2022-01-12 18:15:23.330035 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--CR 55 to Bigelow Rd. L1432948 H 44.4167104 -74.1195601 2015-05-17 07:52:00 obsr1222746 S23497940 Traveling P22 EBIRD 59.0 0.917 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295962448 2021-03-26 07:00:33.333856 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N X United States US New York US-NY Queens US-NY-081 30.0 19014 35 avenue, flushing ny L3351490 P 40.7643088 -73.7914498 2015-02-10 08:50:00 obsr2446313 S21758307 Stationary P21 EBIRD 15.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301409428 2021-04-07 20:52:30.221907 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Mays Point Pool and road L99392 H 42.9946205 -76.7637599 2015-03-07 14:35:00 obsr1092576 S22211149 Traveling P22 EBIRD 9.0 0.805 4.0 1 G1168921 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307099474 2015-04-03 07:45:52 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-04-03 07:33:00 obsr1958124 S22655052 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291759716 2021-04-01 12:11:50.996293 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 1 United States US New York US-NY Seneca US-NY-099 13.0 Waterloo, 973-1123 New York 96 L3298364 P 42.92526 -76.89216 2015-01-17 15:41:00 obsr1828453 S21405486 Incidental P20 EBIRD 1.0 0 G1112441 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290242970 2021-12-29 17:37:07.163452 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Dutchess US-NY-027 13.0 Old Post Rd N Red Hook L859826 P 42.0237536 -73.8463211 2015-01-10 09:15:00 obsr2954986 S21283949 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302949469 2021-04-01 11:49:53.573686 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 9 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay, Big Egg Marsh L722804 H 40.5963256 -73.8252819 2015-03-13 08:52:00 obsr1982614 S22336421 Traveling P22 EBIRD 80.0 0.499 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289234258 2021-11-09 17:54:06.179473 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 10 United States US New York US-NY Dutchess US-NY-027 13.0 Shuman Road, Millbrook, NY L1117128 P 41.8574158 -73.6550474 2015-01-02 11:40:00 obsr1062217 S21202877 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318048978 2021-04-01 10:51:06.899622 11371 species avibase-75600969 Northern Flicker Colaptes auratus 5 United States US New York US-NY Chautauqua US-NY-013 13.0 Watts Flats WMA L490893 H 42.0350422 -79.4263016 2015-05-10 07:30:00 obsr2910282 S23353977 Traveling P22 EBIRD 130.0 3.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311553820 2021-03-26 07:56:20.588749 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 3 United States US New York US-NY Nassau US-NY-059 30.0 Great Neck North Middle School L3578002 P 40.803783 -73.7421441 2015-03-10 09:25:00 obsr544054 S22963548 Traveling P22 EBIRD 30.0 1.609 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS331544911 2021-03-19 16:29:59.503892 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY Jefferson US-NY-045 13.0 Eastern Parcel - Private L3615491 P 43.9955931 -76.0055208 2015-05-21 07:45:00 obsr544268 S24247696 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316556559 2015-07-17 22:23:53 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 2 United States US New York US-NY Albany US-NY-001 13.0 Blockhouse Creek Ct Albany L3399759 P 42.6901298 -73.8857405 2015-05-06 16:01:00 obsr2270510 S23269908 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315579053 2021-11-15 03:06:58.889978 26278 species avibase-A381417F House Wren Troglodytes aedon 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-03 13:50:00 obsr516108 S23213853 Traveling P22 EBIRD 340.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306786232 2018-08-04 17:04:58 27616 species avibase-D77E4B41 American Robin Turdus migratorius 25 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, City Pier L357819 H 42.871907 -77.2725534 2015-04-01 14:25:00 obsr983655 S22631509 Traveling P22 EBIRD 15.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306899666 2021-03-26 06:12:17.833181 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Orchard/Eagle L2848533 P 42.4370138 -79.3200874 2015-04-02 09:00:00 obsr2343764 S22639687 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116132 2021-04-01 10:49:39.496318 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles CBC, Sector 6, Rgn 3 L1026393 P 42.97112 -76.4926529 2015-01-04 10:05:00 obsr1167884 S21194061 Traveling P22 EBIRD 120.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294623900 2021-03-26 06:29:56.44369 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Monroe US-NY-055 13.0 374 Cromwell L1952255 P 43.1326227 -77.5253892 2015-02-02 15:00:00 obsr1463039 S21651692 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296388530 2021-11-09 21:57:08.901467 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Ulster US-NY-111 13.0 Saugerties ny L3357950 P 41.9819526 -74.0643311 2015-02-13 09:15:00 obsr947483 S21793821 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298305867 2021-04-01 11:58:54.966271 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY St. Lawrence US-NY-089 13.0 Pollock Rd L3397959 P 44.6913204 -75.1595229 2015-02-18 13:15:00 obsr1016945 S21965171 Traveling P22 EBIRD 30.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290850853 2016-10-10 10:35:42 681 species avibase-407E2CA8 Common Merganser Mergus merganser 67 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 06:45:00 obsr2310825 S21332574 Traveling P22 EBIRD 75.0 18.99 44.0 1 G1108327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318254530 2021-11-15 03:06:58.889978 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-10 08:40:00 obsr2033754 S23364763 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302160597 2021-03-26 06:17:19.712573 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Feeder Area L424961 P 42.7607926 -78.8063961 2015-03-10 09:45:00 obsr2083851 S22268331 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309747796 2021-03-26 06:17:19.712573 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2146060 H 42.756017 -78.862009 2015-04-13 11:45:00 obsr916033 S22844352 Stationary P21 EBIRD 132.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306761408 2021-03-26 07:56:20.588749 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 52 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-03-11 09:00:00 obsr2218212 S22629520 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314190022 2021-03-26 07:52:59.845315 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-29 07:45:00 obsr1000124 S23133748 Area P23 EBIRD 95.0 2.59 2.0 1 G1243714 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309791618 2021-03-30 19:13:38.458673 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 29 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-04-13 10:25:00 obsr2756208 S22847188 Stationary P21 EBIRD 255.0 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308922994 2021-03-23 17:00:13.087107 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 28.0 Herman Rd. wetlands L3553366 P 42.51594 -76.3339 2015-04-10 17:40:00 obsr1062070 S22788857 Stationary P21 EBIRD 32.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310285663 2021-11-09 18:25:59.179016 11494 species avibase-20C2214E American Kestrel Falco sparverius 7 United States US New York US-NY Dutchess US-NY-027 13.0 Strever Farm Rd, Pine Plains, NY L1828766 P 41.9405617 -73.6553262 2015-04-15 07:37:00 obsr1062217 S22881600 Stationary P21 EBIRD 30.0 3.0 1 G1220727 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1348025870 2022-02-20 21:19:47.419139 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-16 09:30:00 obsr2807282 S103313245 Traveling P22 EBIRD 180.0 0.805 2.0 1 G7909914 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288824840 2022-02-04 06:14:13.892644 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-01-03 13:10:00 obsr856524 S21171155 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314260551 2021-03-24 21:06:05.39641 33061 species avibase-E36325FA Prairie Warbler Setophaga discolor 1 United States US New York US-NY Onondaga US-NY-067 13.0 Jamesville Beach County Park L1166604 H 42.9689218 -76.0697651 2015-04-30 06:26:00 obsr2561576 S23138514 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311163989 2021-03-22 09:17:32.016297 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Oneida US-NY-065 13.0 Oneida Lake--North Bay L1214784 P 43.2206894 -75.7366562 2015-04-17 17:15:00 obsr666964 S22939573 Stationary P21 EBIRD 15.0 2.0 1 G1225610 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288911799 2015-01-03 22:16:54 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 62 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-02 07:20:00 obsr316199 S21178111 Stationary P21 EBIRD 10.0 2.0 1 G1094337 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312663694 2018-08-04 17:11:20 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature Preserve, Rexford, NY L3587945 P 42.7923775 -73.7953484 2015-04-19 18:09:00 obsr325436 S23039306 Traveling P22 EBIRD 157.0 3.219 9.0 1 G1234677 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295529673 2021-03-23 17:00:13.087107 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Lansing-688-788 Davis Rd L3346410 P 42.612102 -76.591582 2015-02-08 08:42:00 obsr2871406 S21724540 Traveling P22 EBIRD 3.0 0.805 3.0 1 G1138942 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316910022 2021-03-23 17:26:08.495143 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-05-06 17:00:00 obsr676630 S23289740 Traveling P22 EBIRD 45.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306134358 2021-12-23 15:00:47.137144 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 30 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Edgemere Dr., 1710 L572189 H 43.2874545 -77.6683405 2015-03-29 11:50:00 obsr730231 S22581514 Traveling P22 EBIRD 296.0 0.08 3.0 1 G1196949 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311187844 2021-03-23 17:00:13.087107 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, 212 Tareyton L252844 P 42.4724094 -76.4601243 2015-04-19 06:51:00 obsr2307843 S22941058 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301413648 2021-03-23 16:39:03.255227 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-03-07 11:00:00 obsr1893950 S22211458 Traveling P22 EBIRD 58.0 0.805 2.0 1 G1169001 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317841454 2018-08-06 22:29:26 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Broome US-NY-007 28.0 IBM CC / Lower glen L1060822 P 42.1262381 -75.9905434 2015-05-09 09:13:00 obsr1626739 S23342604 Traveling P22 EBIRD 102.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308632482 2021-03-31 04:08:44.613777 406 species avibase-27B2749A Wood Duck Aix sponsa 72 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-09 08:49:00 obsr2224244 S22767080 Rusty Blackbird Spring Migration Blitz P41 EBIRD 97.0 2.414 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309882622 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 2 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-13 14:47:00 obsr856524 S22853708 Stationary P21 EBIRD 18.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310306865 2021-04-01 11:47:43.260314 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-15 08:00:00 obsr979921 S22883062 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298778487 2021-03-26 06:11:29.8335 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-02-21 09:44:00 obsr2683910 S22006331 Stationary P21 EBIRD 6.0 2.0 1 G1155009 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308057478 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-04-05 17:25:00 obsr2072398 S22723112 Stationary P21 EBIRD 29.0 3.0 1 G1208360 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318600485 2021-11-09 17:58:40.313796 6616 species avibase-7E022378 Common Loon Gavia immer 3 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-11 07:00:00 obsr763723 S23383557 Traveling P22 EBIRD 180.0 4.731 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292504425 2018-08-04 16:54:50 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Tompkins US-NY-109 13.0 Hog Hole (Allan H. Treman State Marine Park) L99382 H 42.4618954 -76.5190244 2015-01-21 15:45:00 obsr2260025 S21484223 Traveling P22 EBIRD 40.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311881990 2021-03-23 16:48:08.60516 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Montezuma (NMWMA)--Cayuga Lake Unit L1280430 H 42.9378719 -76.7503166 2015-04-21 12:00:00 obsr2258053 S22985829 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307736885 2021-03-23 17:00:13.087107 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-05 10:44:00 obsr1655171 S22700223 Traveling P22 EBIRD 12.0 0.483 2.0 1 G1212772 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300217110 2021-03-24 20:21:40.993321 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 2 United States US New York US-NY Seneca US-NY-099 13.0 Cove L678244 P 42.6487254 -76.8698493 2015-03-01 obsr2731440 S22121304 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299011725 2021-11-09 21:23:47.89824 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 5 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-20 16:30:00 obsr341904 S22025208 Stationary P21 EBIRD 40.0 7.0 1 G1156475 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308932856 2015-04-10 18:51:10 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Livingston US-NY-051 13.0 Co Rd 45 L846149 P 42.7291641 -77.7395207 2015-04-10 11:42:00 obsr72341 S22789753 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302395561 2015-03-11 07:45:10 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-17 08:47:00 obsr1319071 S22293772 Stationary P21 EBIRD 60.0 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS288216862 2021-04-01 11:15:31.646886 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-01 14:00:00 obsr1536880 S21119017 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298332121 2015-02-18 21:47:15 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tanners Spring L698380 H 40.7825236 -73.9704413 2015-02-15 13:09:00 obsr1548221 S21967512 Traveling P22 EBIRD 17.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313777491 2021-03-30 19:43:32.881136 32101 issf avibase-873DDCD2 White-crowned Sparrow Zonotrichia leucophrys White-crowned Sparrow (leucophrys) Zonotrichia leucophrys leucophrys 2 United States US New York US-NY Westchester US-NY-119 30.0 Muscoot Farm L698007 H 41.2614649 -73.7250487 2015-04-19 07:30:00 obsr310469 S23108302 Traveling P22 EBIRD 180.0 1.609 6.0 1 G1241154 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289316420 2022-02-17 14:32:23.002448 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-03 08:35:00 obsr1152226 S21209468 Traveling P22 EBIRD 120.0 1.931 6.0 1 G1095047 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315958988 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-04 07:00:00 obsr1220115 S23234867 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311823357 2021-04-01 12:18:57.910168 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 15 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-04-18 17:32:00 obsr2683910 S22982218 Traveling P22 EBIRD 20.0 0.966 2.0 1 G1230105 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312241267 2015-04-23 12:24:08 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Dryden-814 Adams Rd L3584153 P 42.456901 -76.220315 2015-04-23 06:42:00 obsr1828453 S23009774 Stationary P21 EBIRD 4.0 2.0 1 G1232695 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321780883 2021-03-19 16:32:34.732091 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 1 United States US New York US-NY Kings US-NY-047 30.0 Brooklyn Botanic Garden L297912 H 40.6680222 -73.96367 2015-05-21 15:30:00 obsr2750470 S23566372 Traveling P22 EBIRD 90.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295571285 2021-11-09 18:34:57.804398 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 6 Female, Adult (3); Male, Adult (3) United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-02-08 13:00:00 obsr1264675 S21727695 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322503135 2018-08-06 22:30:59 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-05-24 07:00:00 obsr2024068 S23609734 Traveling P22 EBIRD 270.0 4.023 2.0 1 G1291916 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS550673419 2021-04-01 11:14:02.420281 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus N 6 United States US New York US-NY Jefferson US-NY-045 13.0 2800–2908 Favret Rd, Cape Vincent US-NY (44.1114,-76.3142) surrogate two for roadsides torn of Cape Vincent L6479881 P 44.111423 -76.314217 2015-03-21 13:00:00 obsr2188450 S40600947 Traveling P22 EBIRD 120.0 56.327 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318529423 2021-03-19 16:19:20.977326 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-05-08 08:20:00 obsr1079517 S23379757 Area P23 EBIRD 45.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313747141 2021-03-26 06:07:26.162322 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Allegany US-NY-003 28.0 Cuba Lake L1326387 H 42.2508599 -78.2923025 2015-04-25 11:08:00 obsr870166 S23106385 Traveling P22 EBIRD 29.0 8.047 3.0 1 G1240624 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316536124 2015-05-06 15:10:16 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Essex US-NY-031 13.0 Westport L196074 T 44.18395 -73.43567 2015-05-06 12:30:00 obsr2769235 S23268709 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299402473 2021-03-24 20:33:47.533911 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-02-24 15:55:00 obsr2673845 S22057327 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322278983 2015-05-23 17:11:11 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-21 19:12:00 obsr1334267 S23596849 Traveling P22 EBIRD 16.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291310845 2021-03-23 17:18:00.959502 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.8729471 2015-01-16 08:05:00 obsr2837502 S21370388 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294542106 2021-04-01 11:54:40.172593 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-02 10:00:00 obsr1958124 S21645165 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310655339 2021-03-26 06:39:43.334073 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-17 08:08:00 obsr1969671 S22907252 Traveling P22 EBIRD 115.0 1.127 2.0 1 G1222883 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310676812 2021-11-09 19:01:40.008558 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-04-17 11:15:00 obsr2954986 S22908557 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302970833 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 2 United States US New York US-NY Monroe US-NY-055 13.0 Rochester, Knights Trail L3486231 P 43.11924 -77.70279 2015-03-13 17:33:00 obsr1243175 S22338212 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309923655 2018-08-04 17:08:59 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-13 08:02:00 obsr2700277 S22856608 Stationary P21 EBIRD 540.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308960160 2020-05-21 16:46:12 8440 species avibase-A69062C8 Eastern Screech-Owl Megascops asio 2 United States US New York US-NY Niagara US-NY-063 13.0 Townline Rd. and Johnson Creek Rd., Barker L872101 H 43.2991349 -78.5271835 2015-04-09 11:35:00 obsr2756208 S22791612 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309546591 2021-03-26 06:55:00.227271 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 10 United States US New York US-NY Ontario US-NY-069 13.0 Risser Rd. Swamp, Canandaigua L771877 H 42.9382814 -77.29738 2015-04-12 18:00:00 obsr171901 S22829605 Traveling P22 EBIRD 60.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322030151 2021-11-09 18:25:59.444943 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 6 United States US New York US-NY Dutchess US-NY-027 13.0 Wappinger Lake L1829902 H 41.6070847 -73.9159704 2015-05-22 15:45:00 obsr2241630 S23582524 Traveling P22 EBIRD 75.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292958070 2018-02-23 08:53:50 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Allegany US-NY-003 28.0 US-NY-Cuba-9198 E Main Rd L2485496 P 42.221969 -78.264634 2015-01-20 14:47:00 obsr955789 S21520002 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312328176 2021-11-09 20:51:06.773494 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Rockland US-NY-087 28.0 Kakiat County Park L1023278 H 41.1461171 -74.11466 2015-04-23 13:22:00 obsr1253931 S23015519 Traveling P22 EBIRD 85.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307096850 2021-03-23 16:39:03.255227 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--S entrance (maint. bldgs) L1350789 H 40.5146545 -74.2124928 2015-04-03 07:03:00 obsr1958124 S22654828 Traveling P22 EBIRD 3.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312446649 2015-04-23 23:12:15 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana X United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-17 09:40:00 obsr548996 S23023656 Historical P62 EBIRD 60.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310382472 2020-07-20 09:16:51 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis X United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-16 07:00:00 obsr2172593 S22888373 Traveling P22 EBIRD 87.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289445624 2021-04-01 11:30:42.037277 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 6 United States US New York US-NY New York US-NY-061 30.0 Trinity Church, Wall St. L3137653 H 40.7081797 -74.0120803 2015-01-06 08:17:00 obsr2179748 S21219518 Traveling P22 EBIRD 21.0 0.998 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314006201 2021-04-01 11:49:53.573686 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 6 United States US New York US-NY Queens US-NY-081 30.0 113 St, Forest Hills L862176 P 40.7187618 -73.8357854 2015-04-29 06:15:00 obsr2574755 S23122893 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296470373 2021-03-23 17:35:23.829899 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 20 United States US New York US-NY Otsego US-NY-077 28.0 Oneonta - Wendy's L2398305 P 42.44682 -75.05099 2015-02-13 11:22:00 obsr2211210 S21801258 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300308144 2021-04-01 11:30:42.037277 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus 30 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-01 10:00:00 obsr2793388 S22128786 Traveling P22 EBIRD 40.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310338577 2019-11-30 11:44:49 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 NY:SEN:Tyre: Wildlife Dr (personal) (Montezuma NWR) L2309816 P 42.9761125 -76.7373562 2015-04-11 13:08:00 obsr2760150 S22885296 Traveling P22 EBIRD 228.0 4.619 8.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS318329546 2021-03-24 20:58:53.646623 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-09 08:00:00 obsr72341 S23368743 Stationary P21 EBIRD 660.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316769543 2021-04-01 11:24:19.637193 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-05-07 06:29:00 obsr1958774 S23282239 Traveling P22 EBIRD 42.0 0.483 2.0 1 G1291692 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296546540 2021-11-09 19:34:18.590596 30494 species avibase-240E3390 House Sparrow Passer domesticus 14 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-02-13 08:20:00 obsr1665312 S21808546 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323006440 2021-03-19 16:44:35.607263 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-25 10:15:00 obsr1962295 S23640306 Traveling P22 EBIRD 150.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313311347 2021-11-09 20:40:20.366096 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Putnam US-NY-079 28.0 Pine St. L2175760 P 41.422812 -73.9468879 2015-04-26 07:15:00 obsr2211514 S23078712 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305111168 2021-11-15 03:06:58.889978 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-24 16:40:00 obsr1223279 S22503761 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291445994 2021-03-30 19:07:52.958398 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 150 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-17 09:00:00 obsr1407710 S21381070 Traveling P22 EBIRD 195.0 3.219 3.0 1 G1111978 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313895819 2021-04-01 11:30:42.037277 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 19:15:00 obsr609516 S23115893 Traveling P22 EBIRD 45.0 1.448 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312978439 2021-03-26 08:14:57.071052 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca N 3 United States US New York US-NY Westchester US-NY-119 US-NY_2791 30.0 Rockefeller SP Preserve L299350 H 41.10804 -73.8378825 2015-04-25 13:15:00 obsr2206421 S23058762 Traveling P22 EBIRD 95.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306136428 2021-03-30 19:13:38.458673 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 40 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Buck Pond L139795 H 43.2809982 -77.6672974 2015-03-29 11:20:00 obsr1598543 S22581679 Stationary P21 EBIRD 25.0 2.0 1 G1196951 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307226434 2021-11-09 18:45:57.904479 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Dutchess US-NY-027 13.0 North Avenue, Pleasant Valley L3535383 P 41.7674708 -73.8164949 2015-04-03 13:00:00 obsr1917973 S22664186 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311951924 2021-03-26 07:30:35.289997 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 10 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-20 08:35:00 obsr2683910 S22990553 Traveling P22 EBIRD 21.0 0.483 2.0 1 G1230721 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304951516 2021-12-10 08:21:29.396662 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-21 11:50:00 obsr2161273 S22491189 Traveling P22 EBIRD 240.0 3.219 3.0 1 G1190626 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289368221 2021-04-01 11:30:42.037277 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-05 15:25:00 obsr924076 S21213620 Traveling P22 EBIRD 94.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292678091 2015-01-22 19:14:21 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 5 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-01-22 12:00:00 obsr2812831 S21497958 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292777030 2021-03-30 19:43:32.881136 6388 species avibase-A59FA446 Glaucous Gull Larus hyperboreus 2 United States US New York US-NY Westchester US-NY-119 30.0 Purdys Reservoirs L840070 H 41.3265942 -73.6621822 2015-01-23 13:35:00 obsr2688589 S21505565 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312396639 2021-03-23 17:35:57.093178 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Rensselaer US-NY-083 13.0 US-NY-Melrose - 42.8869x-73.6765 - Apr 23, 2015, 9:31 AM L3585536 P 42.88686 -73.676522 2015-04-23 08:33:00 obsr648176 S23020228 Stationary P21 EBIRD 662.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307271230 2021-03-24 21:09:00.82373 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Rensselaer US-NY-083 13.0 Papscanee Island Nature Preserve L488165 H 42.5762804 -73.7484741 2015-04-03 11:40:00 obsr2855945 S22667391 Traveling P22 EBIRD 95.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292473430 2021-11-09 17:52:29.329682 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 1 United States US New York US-NY Dutchess US-NY-027 13.0 Ogden Mills & Ruth Livingston Mills SP L1110444 H 41.857266 -73.9332052 2015-01-21 07:10:00 obsr2573652 S21481730 Traveling P22 EBIRD 60.0 0.805 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315698392 2019-01-07 15:35:42 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Chautauqua US-NY-013 13.0 Lake Erie SP L1765371 H 42.4220913 -79.4281205 2015-05-04 08:47:00 obsr2497657 S23220473 Traveling P22 EBIRD 86.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321229974 2021-03-26 06:07:45.516082 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-19 11:30:00 obsr128156 S23532820 Traveling P22 EBIRD 40.0 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322500226 2021-12-27 20:39:04.096623 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Point Gratiot (overall incl. Pt. Gratiot Park) L336771 H 42.486432 -79.3562918 2015-05-24 11:14:00 obsr2497657 S23609591 Traveling P22 EBIRD 44.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289848496 2019-03-04 17:55:09 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Schenectady US-NY-093 13.0 Glenville Hills L2128729 P 42.9206064 -74.0857887 2015-01-07 08:00:00 obsr1918430 S21251564 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308045362 2020-05-16 18:11:44 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Otsego US-NY-077 28.0 207 Stoller Hill Rd L3359197 P 42.7034192 -75.0299799 2015-04-06 09:28:00 obsr131845 S22722298 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298779279 2019-07-23 17:27:24 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Aurora Bay boathouse L99621 H 42.744889 -76.7010214 2015-02-21 10:37:00 obsr2683910 S22006394 Stationary P21 EBIRD 16.0 2.0 1 G1155013 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322729245 2018-08-04 17:30:14 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Albany US-NY-001 13.0 Cohoes Flats L549972 H 42.7761411 -73.6933064 2015-05-25 06:51:00 obsr1165633 S23623013 Traveling P22 EBIRD 42.0 0.917 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321930572 2021-11-09 18:42:19.628792 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-22 08:47:00 obsr1442681 S23575904 Traveling P22 EBIRD 144.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306193019 2018-08-04 17:04:43 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 35 United States US New York US-NY Schuyler US-NY-097 13.0 Seneca Harbor Park L150677 H 42.383846 -76.873375 2015-03-29 15:47:00 obsr2173269 S22586043 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307080732 2021-03-30 19:39:10.250398 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-04-02 12:45:00 obsr2409943 S22653667 Traveling P22 EBIRD 180.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306575152 2021-03-26 06:29:56.44369 11494 species avibase-20C2214E American Kestrel Falco sparverius 2 United States US New York US-NY Monroe US-NY-055 13.0 My yard, Brighton L421505 P 43.1258223 -77.5576454 2015-03-31 15:00:00 obsr2220829 S22615612 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312801406 2019-01-03 22:08:58 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 6 United States US New York US-NY Essex US-NY-031 13.0 Mt. Defiance L2814714 H 43.8313207 -73.406589 2015-04-23 07:15:00 obsr2693145 S23048404 Traveling P22 EBIRD 59.0 0.644 2.0 1 G1235054 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295134723 2021-11-09 21:17:58.494129 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 65 United States US New York US-NY Ulster US-NY-111 28.0 Lippincott Rd., Wallkill L1097498 H 41.6194441 -74.1931401 2015-02-05 10:30:00 obsr1257003 S21692876 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317563429 2018-02-01 15:11:46 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 3 United States US New York US-NY Cortland US-NY-023 28.0 AviCor22 L3513964 H 42.5801264 -76.092219 2015-05-09 13:24:00 obsr620377 S23327771 Stationary P21 EBIRD 9.0 2.0 1 G1272241 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297625601 2021-11-09 22:04:47.967972 7429 species avibase-1327AC55 Osprey Pandion haliaetus 15 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-16 14:05:00 obsr2109775 S21904958 Traveling P22 EBIRD 48.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315761213 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-04 06:15:00 obsr150865 S23223892 Traveling P22 EBIRD 330.0 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317073746 2021-03-26 06:29:56.44369 30494 species avibase-240E3390 House Sparrow Passer domesticus N 4 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-05-07 05:23:00 obsr2595828 S23299311 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308623960 2021-03-26 06:17:19.712573 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 7 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-04-09 08:35:00 obsr2071643 S22766436 Traveling P22 EBIRD 45.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294242751 2021-03-26 06:52:34.887371 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 2 United States US New York US-NY Niagara US-NY-063 13.0 North Tonawanda - Home L663618 P 43.0210117 -78.8445854 2015-01-31 12:45:00 obsr1677969 S21621699 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288596186 2021-11-09 18:18:59.519639 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 4 United States US New York US-NY Dutchess US-NY-027 28.0 Pleasant Ridge Road, Beekman, NY L1397166 P 41.6231626 -73.6583149 2015-01-01 07:06:00 obsr2175245 S21150655 Traveling P22 EBIRD 42.0 3.219 3.0 1 G1091114 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299920789 2015-02-27 17:37:30 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Westchester US-NY-119 28.0 Annsville Circle L1606059 P 41.2961037 -73.9350637 2015-02-27 10:10:00 obsr238853 S22097076 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296208209 2021-03-26 08:14:57.071052 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-02-11 07:30:00 obsr2918150 S21777561 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308351428 2015-04-07 19:54:26 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Washington US-NY-115 13.0 Granville L131798 T 43.4078712 -73.259552 2015-04-07 15:00:00 obsr2196530 S22745682 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325000503 2021-03-26 07:56:20.588749 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-07 09:00:00 obsr2218212 S23775908 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312377013 2015-04-23 18:15:18 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-04-21 10:17:00 obsr2426404 S23018904 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS333667224 2015-07-27 23:38:38 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 9 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-04-18 19:20:00 obsr2155111 S24406120 Stationary P21 EBIRD 20.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298956683 2021-03-26 07:30:35.289997 23242 species avibase-94A1C447 Bank Swallow Riparia riparia 17 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-02-21 10:30:00 obsr2137468 S22020766 Stationary P21 EBIRD 45.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308560289 2021-03-30 19:29:33.633096 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Head of Forge River / Mill Pond L3277625 P 40.8191357 -72.8391838 2015-04-08 11:00:00 obsr2846902 S22761822 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303436796 2021-04-01 11:24:19.637193 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet L273878 P 43.23375 -77.53775 2015-03-15 14:00:00 obsr991026 S22374837 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310885600 2018-08-04 17:09:43 483 species avibase-85625D75 Mallard Anas platyrhynchos 3 United States US New York US-NY Franklin US-NY-033 14.0 Saranac Lake High School Pond L824183 H 44.326734 -74.146986 2015-04-18 10:35:00 obsr2630526 S22922400 Traveling P22 EBIRD 60.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304722837 2021-03-30 19:07:52.958398 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria 250 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-22 14:15:00 obsr1407710 S22473866 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288158756 2021-04-01 11:42:50.317679 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-01-01 07:00:00 obsr666964 S21114146 Stationary P21 EBIRD 25.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323596225 2021-04-01 12:32:15.282601 7412 species avibase-4FF7DE80 Black Vulture Coragyps atratus 6 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-28 06:45:00 obsr547602 S23679631 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309695372 2021-12-10 08:21:29.396662 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 24 NB C4 NB United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-04-12 09:20:00 obsr1652207 S22840128 Traveling P22 EBIRD 110.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302109750 2021-03-23 17:22:05.708166 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 Male, Immature (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-07 07:35:00 obsr1000124 S22264844 Area P23 EBIRD 120.0 2.59 2.0 1 G1173377 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304376397 2021-03-24 19:24:40.212356 6167 spuh avibase-7FC8B7ED shorebird sp. Charadriiformes sp. 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Chautauqua US-NY-013 13.0 South Ripley, Miller Road L3360057 P 42.21902 -79.75516 2015-03-21 11:30:00 obsr37369 S22448187 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319330270 2021-03-24 05:37:45.927792 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-13 13:20:00 obsr319738 S23425597 Traveling P22 EBIRD 70.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310943441 2021-03-26 07:30:35.289997 483 species avibase-85625D75 Mallard Anas platyrhynchos N 4 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-18 09:04:00 obsr2307843 S22925873 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315590215 2021-04-01 11:24:19.637193 279 species avibase-3E04020B Brant Branta bernicla 2 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-05-03 10:30:00 obsr1782363 S23214484 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314035371 2021-11-09 21:31:40.219848 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-29 11:04:00 obsr1636520 S23124585 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322707206 2021-03-26 07:52:59.845315 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-24 07:45:00 obsr1000124 S23621555 Area P23 EBIRD 95.0 2.59 2.0 1 G1288507 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291034397 2016-11-05 15:32:06 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wilgoose Field L1280439 H 42.9632064 -76.7703581 2015-01-14 15:48:00 obsr354090 S21347503 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315001632 2021-11-15 03:06:58.889978 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 09:00:00 obsr1064070 S23182541 Traveling P22 EBIRD 180.0 4.828 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306468984 2021-04-01 11:49:53.573686 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus N X United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge L165143 H 40.6170296 -73.8244561 2015-03-29 obsr1220115 S22607544 Historical P62 EBIRD 1 G1199899 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309579130 2018-08-04 17:08:25 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Delaware US-NY-025 28.0 Delaware River Bridge, Downsville L2424412 H 42.0746513 -74.9819514 2015-04-11 06:42:00 obsr1788273 S22831763 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301778477 2018-08-04 16:59:04 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 10 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--Golf Course L507417 H 40.6235296 -73.2860184 2015-03-08 13:30:00 obsr247620 S22239834 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290839958 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-01-13 09:16:00 obsr916033 S21331574 Traveling P22 EBIRD 15.0 0.161 4.0 1 G1108282 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312866068 2021-03-19 16:02:45.308962 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-25 13:02:00 obsr800690 S23052013 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323290520 2021-11-09 18:31:48.13381 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 7 United States US New York US-NY Dutchess US-NY-027 28.0 Nuclear Lake L225084 H 41.595318 -73.6477569 2015-05-20 08:00:00 obsr1469078 S23658912 Traveling P22 EBIRD 240.0 3.219 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322283850 2021-04-01 11:15:31.646886 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 15:12:00 obsr152435 S23597122 Traveling P22 EBIRD 135.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312216903 2021-03-19 16:06:54.047432 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-04-22 obsr1395007 S23008036 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309972913 2015-04-14 12:33:45 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Chautauqua US-NY-013 13.0 South Ripley, Miller Road L3360057 P 42.21902 -79.75516 2015-04-14 11:00:00 obsr37369 S22860118 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309617133 2021-03-26 08:14:57.071052 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-04-11 09:15:00 obsr2918150 S22834169 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313009338 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-23 07:00:00 obsr1220115 S23060568 Traveling P22 EBIRD 120.0 2.414 15.0 1 G1236321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306330805 2021-03-26 07:42:06.558742 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY Washington US-NY-115 13.0 River Rd., Ft. Miller L2742155 H 43.1343397 -73.5892952 2015-03-29 12:45:00 obsr634484 S22596332 Traveling P22 EBIRD 30.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS339652757 2022-01-30 05:40:13.589887 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 15:00:00 obsr189780 S24840617 Traveling P22 EBIRD 120.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319833939 2015-05-15 12:33:50 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Monroe US-NY-055 13.0 Our yard - 505 Bonnie Brae, Brighton L267076 P 43.1184318 -77.5748011 2015-05-15 12:30:00 obsr558652 S23454733 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312199516 2021-03-26 07:52:19.474233 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Delaware US-NY-025 28.0 SUNY Delhi L1522633 P 42.2704675 -74.9240436 2015-04-21 12:20:00 obsr1626739 S23006942 Traveling P22 EBIRD 22.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308478468 2021-03-24 20:33:47.533911 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Tompkins US-NY-109 13.0 Nelson's House L3547421 P 42.4923209 -76.63849 2015-04-08 13:30:00 obsr246591 S22755446 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293204600 2017-05-31 22:34:49 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Dead Horse Bay, Marina L151656 H 40.585205 -73.901276 2015-01-25 13:00:00 obsr1807494 S21539323 Traveling P22 EBIRD 60.0 1.609 4.0 1 G1122937 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309561774 2022-03-05 22:03:50.715584 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-12 08:00:00 obsr1544235 S22830579 Traveling P22 EBIRD 210.0 6.437 3.0 1 G1379909 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324386415 2021-11-09 18:44:40.396983 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Dutchess US-NY-027 28.0 TMR Preserve L3467108 P 41.7154677 -73.5594749 2015-05-16 08:10:00 obsr1732267 S23732975 Traveling P22 EBIRD 65.0 1.609 2.0 1 G1298922 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304137842 2021-11-15 03:06:58.889978 456 species avibase-D201EB72 American Wigeon Mareca americana 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-16 08:19:00 obsr1548221 S22429844 Traveling P22 EBIRD 61.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306629509 2015-03-31 21:52:14 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake - Inlet L723215 P 42.7139754 -77.7105045 2015-03-31 18:35:00 obsr72341 S22619944 Traveling P22 EBIRD 53.0 7.242 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298796928 2021-11-09 21:23:47.89824 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-20 16:43:00 obsr2526184 S22007828 Stationary P21 EBIRD 32.0 2.0 1 G1155111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306249031 2021-11-02 20:32:06.137153 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 4 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-03-28 12:14:00 obsr2683910 S22590191 Traveling P22 EBIRD 24.0 0.483 3.0 1 G1197852 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319164926 2021-04-01 11:15:31.646886 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-12 06:58:00 obsr1821546 S23416257 Traveling P22 EBIRD 392.0 4.184 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324701484 2021-11-09 21:35:18.646328 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-04-26 06:00:00 obsr1355788 S23754627 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290855402 2021-03-30 19:39:10.250398 456 species avibase-D201EB72 American Wigeon Mareca americana 125 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 17:00:00 obsr1895507 S21333010 Traveling P22 EBIRD 30.0 4.828 44.0 1 G1108343 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295511235 2021-12-10 08:21:29.396662 7200 species avibase-49D9148A Great Egret Ardea alba N 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-07 09:29:00 obsr1348614 S21722999 Traveling P22 EBIRD 192.0 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312388313 2021-03-26 07:46:52.994574 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Albany US-NY-001 13.0 26 Eton Drive, Slingerlands L3168714 P 42.6536426 -73.8467368 2015-04-23 14:45:00 obsr1885846 S23019695 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322378844 2018-08-04 17:27:27 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Livingston US-NY-051 13.0 Lacey Rd. L1534373 P 42.9433435 -77.7868483 2015-05-16 06:53:00 obsr1060479 S23602807 Traveling P22 EBIRD 32.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307794361 2018-12-30 09:52:57 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-05 15:00:00 obsr2321296 S22704412 Traveling P22 EBIRD 65.0 1.609 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306939845 2015-04-02 13:01:07 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Westchester US-NY-119 30.0 Saw Mill River Parkway L3532407 P 41.0067348 -73.8538742 2015-04-01 10:20:00 obsr2228257 S22642891 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296645253 2021-11-09 21:23:47.89824 505 species avibase-C732CB10 American Black Duck Anas rubripes 2 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-13 13:30:00 obsr786724 S21816949 Stationary P21 EBIRD 25.0 3.0 1 G1145351 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319713698 2021-11-09 18:42:19.628792 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-14 07:13:00 obsr1732267 S23447676 Traveling P22 EBIRD 195.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313233764 2015-04-26 20:30:09 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Livingston US-NY-051 13.0 US-NY-Hemlock-5033 Blank Rd L3591921 P 42.777583 -77.629771 2015-04-26 11:59:00 obsr393804 S23073873 Stationary P21 EBIRD 2.0 2.0 1 G1237475 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296540587 2021-11-15 03:06:58.889978 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-13 obsr2277801 S21808059 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314286625 2021-03-26 07:46:52.994574 26278 species avibase-A381417F House Wren Troglodytes aedon 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-30 06:26:00 obsr2321296 S23140229 Traveling P22 EBIRD 200.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307391049 2021-03-24 20:16:00.852773 406 species avibase-27B2749A Wood Duck Aix sponsa 10 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-04 10:20:00 obsr1958124 S22676283 Traveling P22 EBIRD 34.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293005831 2018-08-04 16:55:08 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Suffolk US-NY-103 30.0 Lake Capri L1133165 H 40.6961927 -73.3003521 2015-01-24 13:15:00 obsr2902954 S21523574 Stationary P21 EBIRD 15.0 2.0 1 G1121584 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312802672 2018-08-04 17:12:12 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Suffolk US-NY-103 30.0 Arshamomaque Pond Preserve L140131 H 41.079361 -72.4004135 2015-04-25 12:38:00 obsr2485753 S23048511 Traveling P22 EBIRD 30.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309075468 2021-03-30 19:29:33.633096 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-04-11 09:30:00 obsr2555972 S22799378 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303751913 2021-03-23 17:23:45.772216 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Livingston US-NY-051 13.0 Co Rd 10 L846164 P 42.7543863 -77.7720129 2015-03-17 09:29:00 obsr72341 S22399619 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322720608 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 08:25:00 obsr1982614 S23622494 Traveling P22 EBIRD 430.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314031604 2015-04-30 10:57:40 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 1 United States US New York US-NY Chenango US-NY-017 28.0 Home woods L3452888 P 42.3471065 -75.6650519 2015-04-29 07:35:00 obsr1303581 S23124359 Traveling P22 EBIRD 150.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317011761 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 10:45:00 obsr150415 S23295697 Traveling P22 EBIRD 140.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300638555 2015-03-02 23:14:21 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Rensselaer US-NY-083 13.0 John Snyder Rd between Rtes 7 & 129 L3452329 P 42.798833 -73.5427594 2015-03-02 11:20:00 obsr2855945 S22151772 Traveling P22 EBIRD 15.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322885129 2021-03-30 19:07:52.958398 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 07:27:00 obsr152435 S23632424 Traveling P22 EBIRD 289.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295971775 2021-03-26 06:07:26.162322 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-02-10 13:00:00 obsr1210649 S21758839 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313199897 2021-03-30 19:22:51.561415 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 5 United States US New York US-NY Queens US-NY-081 30.0 Highland Park (Queens Co.) L689286 H 40.6874233 -73.8856047 2015-04-26 08:41:00 obsr1982614 S23071917 Traveling P22 EBIRD 340.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312511907 2021-04-01 12:43:36.236969 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 10 United States US New York US-NY Tioga US-NY-107 28.0 Fisher Settlement Rd.--Miller Creek Crossing L2777782 P 42.24636 -76.480475 2015-04-24 07:00:00 obsr1828453 S23028045 Stationary P21 EBIRD 4.0 2.0 1 G1233732 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299621097 2021-03-30 19:07:52.958398 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-25 14:10:00 obsr2363365 S22074408 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319756594 2018-08-04 17:27:14 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Broome US-NY-007 28.0 US-NY-1674 Colesville Rd L2150393 P 42.141896 -75.704985 2015-05-14 18:00:00 obsr1472872 S23450404 Traveling P22 EBIRD 120.0 4.023 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323426768 2021-04-01 11:14:02.420281 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Jefferson US-NY-045 US-NY_778 13.0 Perch River WMA L253293 H 44.0861979 -75.9664464 2015-05-27 10:10:00 obsr2184966 S23668302 Traveling P22 EBIRD 90.0 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308679748 2018-08-04 17:08:13 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Oneida US-NY-065 13.0 Black Creek L3544082 P 43.16464 -75.73486 2015-04-09 14:22:00 obsr1640315 S22770919 Stationary P21 EBIRD 9.0 1.0 1 G1212347 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290975689 2021-04-01 11:30:42.037277 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY New York US-NY-061 Randalls Island L1293732 H 40.7887808 -73.9219681 2015-01-14 10:40:00 obsr1349960 S21342733 Traveling P22 EBIRD 125.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310506982 2018-02-01 15:11:46 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor4 L3513946 H 42.7735789 -75.9115294 2015-04-16 13:01:00 obsr2279567 S22897245 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303569502 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-16 13:15:00 obsr2105033 S22385585 Traveling P22 EBIRD 50.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295736850 2021-04-28 05:26:15.958627 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia X United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-08 08:23:00 obsr420385 S21740511 Traveling P22 EBIRD 195.0 3.219 2.0 1 G1140656 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289302643 2021-03-23 16:52:36.900075 26385 species avibase-C757BD95 Winter Wren Troglodytes hiemalis N 65 United States US New York US-NY Suffolk US-NY-103 30.0 St. Charles Cemetery L1063079 H 40.7349661 -73.4009886 2015-01-05 11:45:00 obsr2906952 S21208321 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298960401 2015-02-22 12:39:17 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Saratoga US-NY-091 13.0 Stillwater L196899 T 42.93838 -73.65316 2015-02-21 12:30:00 obsr634484 S22021055 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318851126 2021-03-19 16:44:35.607263 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-11 15:09:00 obsr528918 S23398014 Traveling P22 EBIRD 185.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298468023 2021-03-23 16:39:03.255227 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-02-19 07:42:00 obsr1958124 S21979867 Traveling P22 EBIRD 9.0 0.322 2.0 1 G1153109 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309178523 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 07:30:00 obsr2152799 S22806046 Traveling P22 EBIRD 300.0 8.047 1.0 1 G1214818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323650454 2021-03-24 19:30:07.33826 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor5 L3513947 H 42.7868405 -75.9281065 2015-05-28 14:48:00 obsr2279567 S23683382 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290004694 2021-11-09 17:43:04.343771 26890 species avibase-94A44032 European Starling Sturnus vulgaris 600 United States US New York US-NY Dutchess US-NY-027 28.0 Red Wing Pond, Beekman L1034656 H 41.6005643 -73.7231211 2015-01-09 11:45:00 obsr1732267 S21264275 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300513380 2021-03-26 07:20:31.408164 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--parking field 5 L1958285 H 40.6274382 -73.2361507 2015-03-02 12:17:00 obsr1228860 S22142727 Traveling P22 EBIRD 11.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296787784 2021-03-23 17:00:13.087107 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 20 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-02-14 10:26:00 obsr2683910 S21830213 Traveling P22 EBIRD 24.0 0.805 2.0 1 G1145774 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316075365 2021-04-01 11:30:42.037277 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 07:51:00 obsr2883074 S23241931 Traveling P22 EBIRD 200.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299962610 2020-07-08 21:47:31 526 species avibase-56CCA717 Northern Pintail Anas acuta 7 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park--Spuyten Duyvil Creek L2697701 H 40.8754897 -73.9217716 2015-02-21 13:25:00 obsr1548221 S22100253 Traveling P22 EBIRD 25.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290521332 2018-08-04 16:53:05 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Seneca US-NY-099 13.0 Sheldrake Point L99384 H 42.6658357 -76.6997626 2015-01-11 08:26:00 obsr869999 S21306339 Stationary P21 EBIRD 4.0 1.0 1 G1105907 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291454726 2021-11-09 22:30:28.160331 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 1 United States US New York US-NY Sullivan US-NY-105 28.0 Dr. Duggan Road L1128918 P 41.660473 -74.8697662 2015-01-17 09:30:00 obsr444155 S21381782 Traveling P22 EBIRD 20.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306913145 2019-07-23 17:28:12 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Niagara US-NY-063 13.0 Olcott Pier L1345996 H 43.3399055 -78.7176999 2015-04-02 10:17:00 obsr1181085 S22640811 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309242729 2021-03-19 16:10:30.527219 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-04-11 18:00:00 obsr967916 S22810354 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1040979009 2021-11-09 17:49:09.783157 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Dutchess US-NY-027 13.0 49 Willow Brook Rd, Clinton Corners US-NY (41.8740,-73.7510) L10928676 P 41.874033 -73.751028 2015-05-03 obsr583168 S78383075 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298480601 2021-03-31 08:21:38.875049 592 species avibase-3072CC16 Redhead Aythya americana 6 United States US New York US-NY Richmond US-NY-085 Chelsea Rd. and Bloomfield Ave., wetlands L958539 H 40.6130955 -74.187672 2015-02-19 16:42:00 obsr1893950 S21980799 Stationary P21 EBIRD 3.0 2.0 1 G1153078 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315651016 2020-03-15 09:14:53 18514 issf avibase-25ACCDC0 Warbling Vireo Vireo gilvus Warbling Vireo (Eastern) Vireo gilvus gilvus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-04 06:56:00 obsr502830 S23217967 Traveling P22 EBIRD 102.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310976307 2021-03-26 07:20:31.408164 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L1224138 P 40.8106911 -72.594738 2015-04-18 08:30:00 obsr2692002 S22927996 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292582452 2021-03-26 08:05:20.615241 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Onondaga US-NY-067 13.0 Skan - 5 E. Lake St L631480 P 42.9468657 -76.4167383 2015-01-22 07:25:00 obsr2279567 S21490424 Stationary P21 EBIRD 52.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322678997 2021-04-01 11:15:31.646886 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 1 Female, Adult (1) United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 07:10:00 obsr1348614 S23619469 Traveling P22 EBIRD 600.0 4.0 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317259000 2015-11-20 20:18:51 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Brockport-108-148 Adams St L3622771 P 43.209293 -77.946696 2015-05-08 17:28:00 obsr334398 S23309318 Incidental P20 EBIRD 2.0 0 G1472321 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323102474 2021-03-26 06:17:19.712573 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 Male, Adult (1) United States US New York US-NY Erie US-NY-029 13.0 Stiglmeier Park L965034 H 42.8821636 -78.7297356 2015-05-25 17:15:00 obsr736608 S23646516 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312358352 2021-03-24 19:27:13.077399 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-04-23 09:15:00 obsr142874 S23017494 Stationary P21 EBIRD 285.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296182436 2021-12-10 08:21:29.396662 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-08 08:35:00 obsr271871 S21775534 Traveling P22 EBIRD 90.0 4.828 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307538100 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 20 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-04 12:15:00 obsr2078092 S22686305 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290395763 2021-03-30 19:37:33.521815 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-01-11 10:54:00 obsr2914424 S21296174 Traveling P22 EBIRD 85.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320280485 2021-04-01 11:24:19.637193 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 4 United States US New York US-NY Monroe US-NY-055 13.0 Rush Henrietta Athletic Association (RHAA) ballfields L3457667 H 43.0335528 -77.6629158 2015-05-16 16:20:00 obsr934639 S23478236 Stationary P21 EBIRD 135.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320324435 2021-04-01 11:15:31.646886 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 06:06:00 obsr2404047 S23480566 Traveling P22 EBIRD 480.0 4.828 3.0 1 G1274913 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314225844 2021-03-30 19:29:33.633096 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Suffolk US-NY-103 30.0 Sunken Meadow SP L279864 H 40.911701 -73.2578964 2015-04-24 16:18:00 obsr2712298 S23136247 Traveling P22 EBIRD 76.0 1.8 3.0 1 G1243634 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315905983 2021-03-19 16:19:20.977326 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe N 10 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo--Mirror Lake L2809120 H 42.9268351 -78.8632295 2015-05-04 08:00:00 obsr1054748 S23231890 Traveling P22 EBIRD 129.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305735037 2021-03-24 20:23:39.258075 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Suffolk US-NY-103 US-NY_847 David Weld Preserve L498539 H 40.9062922 -73.2089183 2015-03-27 18:30:00 obsr1313983 S22551955 Traveling P22 EBIRD 90.0 0.805 2.0 1 G1194765 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299012715 2021-03-26 07:53:57.664705 662 species avibase-FB738385 Bufflehead Bucephala albeola N 7 United States US New York US-NY Livingston US-NY-051 13.0 Home - Birdfeeders- Lima, NY L3363388 P 42.631938 -77.6664734 2015-02-22 08:00:00 obsr912022 S22025282 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303592831 2015-03-16 20:11:09 5976 species avibase-F4829920 American Woodcock Scolopax minor 2 United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-03-14 07:50:00 obsr2812831 S22387376 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321664012 2018-08-04 17:28:18 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 69 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-05-21 08:43:00 obsr916033 S23559176 Traveling P22 EBIRD 28.0 1.931 2.0 1 G1281509 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291330302 2022-02-17 14:32:23.002448 27616 species avibase-D77E4B41 American Robin Turdus migratorius 12 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-16 13:30:00 obsr2448957 S21371843 Traveling P22 EBIRD 210.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316304810 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Vale of Cashmere L1149386 H 40.6690561 -73.9683616 2015-05-05 11:00:00 obsr329727 S23255672 Traveling P22 EBIRD 90.0 4.023 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299014170 2018-08-04 16:58:03 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 40 United States US New York US-NY Seneca US-NY-099 13.0 Varick--Cayuga Lake from Town Line Rd. L2716130 P 42.8092 -76.75607 2015-02-22 13:43:00 obsr1655171 S22025409 Traveling P22 EBIRD 16.0 2.414 3.0 1 G1156982 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297282368 2021-11-09 22:04:47.967972 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-15 13:15:00 obsr547602 S21874407 Traveling P22 EBIRD 120.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293605223 2021-04-01 11:15:31.646886 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 3 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-01-24 11:03:00 obsr1987335 S21571344 Traveling P22 EBIRD 262.0 0.805 4.0 1 G1126991 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309867780 2020-07-20 09:16:51 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-13 18:46:00 obsr2224244 S22852392 Stationary P21 EBIRD 138.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309052119 2021-03-23 16:30:20.514143 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-11 08:18:00 obsr2945658 S22797995 Stationary P21 EBIRD 181.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323290378 2021-04-01 12:32:15.282601 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 10 United States US New York US-NY Nassau US-NY-059 US-NY_1727 NY - Cow Meadow Park and Preserve (Long Island) L3676728 P 40.630198 -73.5699892 2015-05-23 13:00:00 obsr858549 S23658902 Incidental P20 EBIRD_WI 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300757094 2021-03-26 08:14:57.071052 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-03-03 11:00:00 obsr444155 S22160664 Traveling P22 EBIRD 45.0 0.805 2.0 1 G1165867 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292855246 2021-04-01 12:12:56.033907 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 6 United States US New York US-NY Steuben US-NY-101 28.0 Delaware Ave Dike, C Hornell L3312956 P 42.319076 -77.6527 2015-01-19 14:02:00 obsr1587816 S21511816 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301625826 2018-08-04 16:59:00 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-08 08:30:00 obsr246469 S22226971 Stationary P21 EBIRD 114.0 1.0 1 G1171913 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315028239 2021-04-01 10:55:39.308231 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-05-02 09:45:00 obsr2571887 S23184030 Traveling P22 EBIRD 75.0 2.012 4.0 1 G1248148 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298092123 2022-02-17 14:32:23.002448 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 26 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-17 12:30:00 obsr2448957 S21947238 Traveling P22 EBIRD 270.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322726224 2018-08-04 17:30:14 32953 species avibase-D00EC2C9 Cerulean Warbler Setophaga cerulea 8 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-05-25 06:55:00 obsr48167 S23622833 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288559799 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-02 11:30:00 obsr2207991 S21147750 Traveling P22 EBIRD 120.0 0.805 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312275709 2021-03-26 07:20:31.408164 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis N 3 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-04-14 07:00:00 obsr1592950 S23011987 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322180415 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 06:15:00 obsr152435 S23591664 Traveling P22 EBIRD 311.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314452634 2015-05-04 12:07:29 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Oneida US-NY-065 13.0 Spring Farm Nature Sanctuary L2242703 P 43.0239766 -75.331192 2015-04-30 08:00:00 obsr1796652 S23150275 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312735356 2015-04-26 14:15:54 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA--Potter Rd., gated section L2173285 H 43.198573 -76.306564 2015-04-25 08:35:00 obsr2561576 S23044213 Traveling P22 EBIRD 41.0 2.575 3.0 1 G1237078 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309414229 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-12 09:31:00 obsr420385 S22821047 Traveling P22 EBIRD 220.0 5.633 2.0 1 G1216108 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319683595 2021-04-01 10:45:00.916278 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Bronx US-NY-005 30.0 New York Botanical Garden L290351 H 40.8626639 -73.8765139 2015-05-13 10:10:00 obsr1494607 S23445921 Traveling P22 EBIRD 200.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625432 2021-03-23 16:52:36.900075 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus X United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Inlet L385875 H 40.8429942 -72.4762005 2015-01-17 08:00:00 obsr931103 S21395225 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308790650 2021-03-30 19:07:52.958398 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-09 07:05:00 obsr1821546 S22779467 Traveling P22 EBIRD 326.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298851289 2021-03-26 06:20:10.658048 663 species avibase-68EA281A Common Goldeneye Bucephala clangula N 20 United States US New York US-NY Genesee US-NY-037 13.0 9605 Francis Rd , Batavia L3360943 P 42.947728 -78.1616086 2015-02-21 08:50:00 obsr393804 S22012198 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314268432 2021-11-09 22:04:59.499979 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Ulster US-NY-111 13.0 Saugerties Lighthouse L490267 H 42.0722249 -73.9367873 2015-04-30 06:40:00 obsr1110743 S23139038 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293890516 2019-11-29 18:27:29 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY Cayuga US-NY-011 28.0 NY:CAY:Summerhill: Lake Como Rd: Lane E: #1196 L3326108 P 42.6759534 -76.3046327 2015-01-29 11:50:00 obsr2760150 S21594008 Traveling P22 EBIRD 52.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324212121 2021-03-26 07:56:20.588749 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Nassau US-NY-059 30.0 001home, bethpage, ny L1333196 P 40.719284 -73.4770712 2015-05-31 07:00:00 obsr547602 S23721420 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315232336 2021-03-19 16:02:45.308962 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-05-03 09:30:00 obsr1830659 S23195634 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311322927 2021-03-24 19:35:34.045988 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-19 10:00:00 obsr2059841 S22949171 Traveling P22 EBIRD 150.0 6.083 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322228725 2021-03-19 16:06:54.047432 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Cayuga US-NY-011 US-NY_2805 28.0 Summerhill SF--Salt, Hoag and Dresser Rd. area L573479 H 42.6674167 -76.3267422 2015-05-23 10:39:00 obsr59643 S23594176 Traveling P22 EBIRD 80.0 4.023 9.0 1 G1290855 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314046307 2015-04-29 12:35:22 33023 species avibase-67B455A7 Black-throated Blue Warbler Setophaga caerulescens 2 United States US New York US-NY Tompkins US-NY-109 13.0 Mulholland Wildflower Preserve L124514 H 42.431675 -76.48283 2015-04-29 08:15:00 obsr60436 S23125188 Traveling P22 EBIRD 60.0 3.219 1.0 1 G1242553 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310624652 2021-03-30 19:22:51.561415 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 12 United States US New York US-NY Queens US-NY-081 Coney Island Channel L3559764 P 40.5556131 -73.9500046 2015-04-11 06:25:00 obsr1189028 S22905392 Traveling P22 EBIRD 35.0 8.047 45.0 1 G1221328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296822879 2021-04-01 12:32:15.282601 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 35 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-14 08:30:00 obsr2152799 S21833304 Traveling P22 EBIRD 145.0 6.437 6.0 1 G1145831 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318886800 2015-05-12 08:49:15 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 1 United States US New York US-NY Essex US-NY-031 14.0 hulls falls rd L2837106 P 44.2383122 -73.7982559 2015-05-10 13:00:00 obsr2105231 S23400363 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309506532 2021-11-09 20:01:49.604521 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 2 United States US New York US-NY Orange US-NY-071 US-NY_853 28.0 Sterling Forest SP--Indian Hill L372126 H 41.2603882 -74.1746235 2015-04-12 16:00:00 obsr2346161 S22826888 Traveling P22 EBIRD 53.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307830969 2015-04-06 07:06:45 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias X United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-04 09:20:00 obsr711169 S22707009 Stationary P21 EBIRD 570.0 9.0 1 G1207238 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312094882 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-04-22 10:15:00 obsr247620 S22999747 Traveling P22 EBIRD 195.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302833280 2021-03-30 19:19:56.775388 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake - Butler Rd. L1474117 P 42.8520571 -77.2811504 2015-03-13 09:45:00 obsr983655 S22327122 Traveling P22 EBIRD 25.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288449383 2015-01-02 11:14:34 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Erie US-NY-029 13.0 Gallagher Beach L2138552 H 42.8407505 -78.8598984 2015-01-01 15:30:00 obsr2537615 S21138178 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290840207 2021-04-01 12:32:15.282601 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 125 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Theodore Roosevelt Nature Center L1029227 H 40.5885208 -73.546552 2015-01-13 09:42:00 obsr2756208 S21331593 Traveling P22 EBIRD 36.0 0.322 4.0 1 G1108283 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300092051 2021-04-01 12:14:19.266649 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Suffolk US-NY-103 30.0 Smith Point County Park L621111 H 40.7352017 -72.8641286 2015-02-28 11:01:00 obsr1107696 S22111323 Traveling P22 EBIRD 197.0 3.701 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309194412 2021-03-22 08:58:29.008072 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 30.0 Highbridge Park--N of Alexander Hamilton Bridge L2741557 H 40.8528936 -73.926117 2015-04-11 16:45:00 obsr1513140 S22807110 Traveling P22 EBIRD 20.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312598760 2021-03-26 06:12:17.833181 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Crooked Brook Pond- Dunkirk NY L3587303 P 42.462375 -79.322651 2015-04-24 16:57:00 obsr749440 S23034842 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291436662 2018-08-04 16:53:29 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 35 United States US New York US-NY Tompkins US-NY-109 28.0 US-NY-Ithaca-5 Upper Creek Rd L3297831 P 42.48611 -76.384529 2015-01-17 11:55:00 obsr1008519 S21380322 Incidental P20 EBIRD 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294817211 2021-03-26 06:39:43.334073 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-02-03 08:00:00 obsr324709 S21667546 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310507179 2018-08-04 17:09:24 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 United States US New York US-NY Saratoga US-NY-091 US-NY_860 13.0 Saratoga National Historical Park L246300 H 42.99361 -73.63889 2015-04-16 08:00:00 obsr2855945 S22897265 Traveling P22 EBIRD 145.0 4.023 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298251868 2021-04-01 11:49:53.573686 5976 species avibase-F4829920 American Woodcock Scolopax minor 2 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Environmental Center L1476823 H 40.7621022 -73.7535993 2015-02-18 11:00:00 obsr676630 S21960576 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307226320 2015-04-03 17:24:16 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 1 United States US New York US-NY Madison US-NY-053 28.0 College Street L689592 P 42.8175031 -75.5474854 2015-04-01 07:15:00 obsr589593 S22664178 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303695861 2021-04-01 11:24:19.637193 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 3 United States US New York US-NY Monroe US-NY-055 13.0 102 medfield drive L2777173 P 43.1804273 -77.5563312 2015-03-17 09:30:00 obsr2258053 S22395282 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310290027 2021-04-01 11:24:19.637193 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 12 United States US New York US-NY Monroe US-NY-055 13.0 LaSalle's Landing Park L140438 H 43.1763487 -77.5259313 2015-04-15 14:47:00 obsr1782363 S22881876 Traveling P22 EBIRD 31.0 0.322 2.0 1 G1221689 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310338729 2018-08-04 17:09:12 616 species avibase-25C94A8F Greater Scaup Aythya marila X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-04-15 obsr1395007 S22885307 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308755874 2021-03-23 17:00:13.087107 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-08 07:33:00 obsr2683910 S22776887 Traveling P22 EBIRD 42.0 0.966 2.0 1 G1212820 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316198208 2021-04-01 11:30:42.037277 279 species avibase-3E04020B Brant Branta bernicla 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 09:30:00 obsr1353449 S23248683 Traveling P22 EBIRD 180.0 4.828 2.0 1 G1253571 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307125872 2021-04-01 11:15:31.646886 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park-Pier 1 L1064703 P 40.7014636 -73.9971256 2015-04-03 10:00:00 obsr263005 S22657122 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323761781 2018-08-06 22:31:18 30494 species avibase-240E3390 House Sparrow Passer domesticus 10 United States US New York US-NY Chemung US-NY-015 28.0 Sullivanville Dam L312295 H 42.1930881 -76.7819872 2015-05-28 13:12:00 obsr1334267 S23692376 Traveling P22 EBIRD 29.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314321627 2021-03-30 19:07:52.958398 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-30 07:15:00 obsr2152799 S23141976 Traveling P22 EBIRD 240.0 6.437 25.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS293116380 2020-03-22 07:58:01 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-01-25 12:00:00 obsr730231 S21532448 Stationary P21 EBIRD 8.0 2.0 1 G1122501 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312275753 2021-03-26 07:20:31.408164 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-04-17 07:00:00 obsr1592950 S23011989 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294870876 2021-03-26 07:56:20.588749 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-06 16:00:00 obsr2218212 S21672019 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294245196 2021-04-01 11:47:43.260314 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 Male, Immature (1) United States US New York US-NY Oswego US-NY-075 13.0 Oneida Lake, Brewerton L2690668 H 43.2368243 -76.1249542 2015-01-28 14:05:00 obsr979921 S21621865 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS317093823 2015-05-08 08:35:35 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 1 United States US New York US-NY Madison US-NY-053 28.0 Community Mem Hosp Parking Lot L909358 P 42.8124505 -75.5448461 2015-05-08 08:27:00 obsr589593 S23300498 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290353932 2021-03-23 16:39:03.255227 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 12 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-11 08:00:00 obsr1958124 S21292687 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313731250 2021-03-24 19:48:44.880783 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-04-28 08:12:00 obsr2817239 S23105418 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316462288 2018-08-04 17:14:59 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-06 08:56:00 obsr1201479 S23264392 Traveling P22 EBIRD 147.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318013046 2021-04-01 11:27:18.37144 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Montgomery US-NY-057 13.0 Schoharie Crossing SHS L548076 H 42.94123 -74.28418 2015-05-10 07:15:00 obsr1187325 S23352073 Traveling P22 EBIRD 90.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301241502 2015-03-06 16:04:56 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-06 15:48:00 obsr1165633 S22196999 Traveling P22 EBIRD 16.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320817243 2021-03-19 16:02:45.308962 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-05-18 06:40:00 obsr1830659 S23507752 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323400384 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park--Muscota Marsh L2697698 H 40.8740092 -73.918705 2015-05-27 16:00:00 obsr1706920 S23666196 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS395739863 2016-04-27 17:30:58 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 3 United States US New York US-NY Erie US-NY-029 13.0 East Hill L1537450 P 42.65489 -78.70496 2015-05-10 08:26:00 obsr1905321 S29245592 Traveling P22 EBIRD 45.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293551982 2021-03-26 07:16:36.956617 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake Neighborhood Yard L2649561 P 42.83175 -73.95388 2015-01-27 10:40:00 obsr2371917 S21567080 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301631081 2021-03-26 07:46:52.994574 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus X United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-03-08 08:20:00 obsr1165633 S22227287 Stationary P21 EBIRD 181.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316957794 2015-05-07 18:07:28 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Delaware US-NY-025 28.0 Bunkhouse L3543418 P 42.1563852 -74.6267152 2015-05-07 16:30:00 obsr211499 S23292648 Stationary P21 EBIRD 5.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312649720 2022-02-17 14:32:23.002448 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-24 16:00:00 obsr2448957 S23038349 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301456679 2021-12-10 08:21:29.396662 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis N 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-03-07 10:00:00 obsr2862523 S22213763 Traveling P22 EBIRD 120.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312729885 2021-04-01 10:55:39.308231 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Erie US-NY-029 13.0 UB North Campus L1560817 P 43.0080012 -78.7856713 2015-04-22 07:45:00 obsr2597186 S23043867 Traveling P22 EBIRD 45.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309013667 2021-03-19 16:29:59.503892 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 300 United States US New York US-NY Jefferson US-NY-045 13.0 Town of Brownville L2108262 P 43.99973 -75.990715 2015-04-09 14:00:00 obsr585290 S22795396 Traveling P22 EBIRD 90.0 37.015 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301843433 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-03-08 12:45:00 obsr1659461 S22244733 Traveling P22 EBIRD 45.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303219847 2021-03-30 19:40:59.354574 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 21 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-15 09:15:00 obsr2172593 S22357557 Traveling P22 EBIRD 54.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307673855 2021-11-15 03:06:58.889978 5948 species avibase-A47B0BD4 Least Sandpiper Calidris minutilla 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-05 08:25:00 obsr1175815 S22695817 Traveling P22 EBIRD 155.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311535331 2021-03-19 16:29:59.503892 505 species avibase-C732CB10 American Black Duck Anas rubripes 4 United States US New York US-NY Jefferson US-NY-045 13.0 Town of Cape Vincent L2164317 P 44.122592 -76.3323212 2015-04-18 11:30:00 obsr585290 S22962367 Traveling P22 EBIRD 105.0 40.234 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309722932 2021-03-24 20:33:47.533911 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-13 12:02:00 obsr2211210 S22841871 Stationary P21 EBIRD 50.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311346577 2016-03-24 15:20:12 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Tompkins US-NY-109 28.0 Roy H. Park Preserve--south (FLLT) L305381 H 42.4259195 -76.3357544 2015-04-18 09:45:00 obsr436489 S22950610 Traveling P22 EBIRD 70.0 1.5 2.0 1 G1226720 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316109154 2021-03-26 06:29:56.44369 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Monroe US-NY-055 13.0 Seneca Park L836388 H 43.2101643 -77.623546 2015-05-05 11:52:00 obsr1545618 S23243694 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317391847 2021-11-09 17:58:40.313796 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 7 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-08 08:00:00 obsr445356 S23317125 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315968686 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 12:00:00 obsr2729716 S23235442 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293813139 2021-03-26 06:17:19.712573 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe N 2 United States US New York US-NY Erie US-NY-029 13.0 Pleasant Ave L1817453 P 42.7266285 -78.8960089 2015-01-29 08:29:00 obsr548442 S21587582 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321874483 2021-03-26 06:17:19.712573 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-21 11:30:00 obsr1379161 S23572574 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313755702 2015-04-28 11:21:10 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Tompkins US-NY-109 28.0 Shindagin Hollow SF--Shindagin Hollow Rd. L2233053 H 42.3338153 -76.3400674 2015-04-28 06:26:00 obsr1655171 S23106958 Traveling P22 EBIRD 200.0 3.219 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292769149 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-23 10:21:00 obsr904434 S21504992 Traveling P22 EBIRD 60.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303252140 2021-03-23 17:22:05.708166 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-12 08:50:00 obsr1000124 S22360100 Area P23 EBIRD 70.0 2.59 2.0 1 G1180572 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312083112 2021-03-26 07:07:10.758746 5773 species avibase-671B69FE Piping Plover Charadrius melodus 6 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-22 13:39:00 obsr1958124 S22998968 Traveling P22 EBIRD 3.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302619232 2021-11-09 21:19:57.847424 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Ulster US-NY-111 28.0 Tricor Ave L1153679 P 41.7441655 -74.0853979 2015-03-11 15:15:00 obsr2434888 S22311255 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289112843 2018-08-04 16:52:37 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 Unknown Sex, Immature (1) United States US New York US-NY Albany US-NY-001 13.0 Mohawk River Cohoes side from Waterford L2606895 P 42.7828462 -73.7041211 2015-01-03 10:00:00 obsr2855945 S21193773 Stationary P21 EBIRD 40.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312022845 2020-06-20 20:01:51 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Chenango US-NY-017 US-NY_2780 28.0 Long Pond SF--Rt. 41 fishing access L3074026 H 42.422518 -75.851062 2015-04-22 07:55:00 obsr1696616 S22995268 Traveling P22 EBIRD 40.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309086364 2021-11-09 21:31:40.219848 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-11 10:15:00 obsr2214649 S22800036 Traveling P22 EBIRD 30.0 0.805 15.0 1 G1214288 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302506466 2021-04-01 10:44:41.995232 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-03-11 08:10:00 obsr2700440 S22302074 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316752700 2021-03-19 16:19:20.977326 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-06 13:40:00 obsr1379161 S23281120 Traveling P22 EBIRD 270.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319093489 2021-03-26 06:11:29.8335 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Road Bluff, Aurora L464582 H 42.7320406 -76.7083025 2015-05-09 14:54:00 obsr2683910 S23412405 Stationary P21 EBIRD 6.0 2.0 1 G1268152 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300936063 2021-04-01 12:11:50.996293 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 3 United States US New York US-NY Seneca US-NY-099 13.0 Lott Farm (restricted access) L262295 H 42.8790775 -76.794498 2015-03-04 16:58:00 obsr1318356 S22174387 Traveling P22 EBIRD 11.0 0.805 3.0 1 G1179645 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293578832 2021-03-23 16:52:36.900075 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Suffolk US-NY-103 30.0 Saxon Ave L2324505 P 40.7237388 -73.2270741 2015-01-27 15:15:00 obsr2902954 S21569240 Stationary P21 EBIRD 50.0 2.0 1 G1126836 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290355685 2021-03-23 16:39:03.255227 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 65 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Pond L1349179 H 40.5190784 -74.2161327 2015-01-11 08:17:00 obsr1958124 S21292828 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310178756 2017-08-16 17:04:16 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Esker Brook Trails L129225 H 42.9745897 -76.7834365 2015-04-14 15:02:00 obsr354090 S22874572 Traveling P22 EBIRD 25.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311192530 2021-03-30 19:29:33.633096 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Suffolk US-NY-103 30.0 East Quogue Marina L2111110 P 40.8488783 -72.571907 2015-04-19 07:00:00 obsr2692002 S22941299 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304566849 2021-03-24 20:16:00.852773 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 7 United States US New York US-NY Richmond US-NY-085 30.0 North Mt. Loretto SF--Reed Marsh L1349275 H 40.5177631 -74.2204088 2015-03-22 08:20:00 obsr1958124 S22462301 Traveling P22 EBIRD 8.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314542475 2021-11-09 22:38:55.83044 279 species avibase-3E04020B Brant Branta bernicla 30 United States US New York US-NY Sullivan US-NY-105 US-NY_2792 28.0 644 River Road L2326174 P 41.782401 -75.1017773 2015-04-30 06:00:00 obsr279522 S23156115 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319356653 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-13 07:30:00 obsr827632 S23426995 Traveling P22 EBIRD 360.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326329427 2019-03-17 16:38:09 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 15 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-17 07:30:00 obsr2398987 S23868565 Traveling P22 EBIRD 329.0 1.609 5.0 1 G3954742 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297005631 2021-03-24 20:21:40.993321 23187 species avibase-ACB9D1C6 Purple Martin Progne subis 3 United States US New York US-NY Seneca US-NY-099 13.0 Cove L678244 P 42.6487254 -76.8698493 2015-02-15 obsr2731440 S21848860 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291353997 2021-11-15 03:06:58.889978 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-16 08:25:00 obsr1548221 S21373540 Traveling P22 EBIRD 46.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290773910 2018-08-04 16:53:10 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 2 United States US New York US-NY Yates US-NY-123 13.0 Hall Rd and Rapalee Rd loop, Yates L630532 P 42.5922689 -76.9293594 2015-01-11 15:25:00 obsr195058 S21326563 Traveling P22 EBIRD 25.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306155876 2021-03-30 19:13:38.458673 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 25 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 15:17:00 obsr334398 S22582411 Stationary P21 EBIRD 45.0 3.0 1 G1197122 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304260013 2021-03-19 16:44:35.607263 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-20 17:25:00 obsr334398 S22439521 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315479100 2015-08-02 21:38:41 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-Hamlin-683-773 Redman Rd L3610889 P 43.342729 -77.965404 2015-05-01 06:49:00 obsr334398 S23208468 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS291936961 2015-01-19 14:51:44 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Suffolk US-NY-103 Iron Pier Beach L1052496 H 40.9878717 -72.6161528 2015-01-19 09:00:00 obsr2692002 S21419013 Stationary P21 EBIRD 20.0 2.0 1 G1115769 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319568792 2021-11-02 20:32:06.137153 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-14 12:20:00 obsr317968 S23439472 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307866826 2021-03-30 19:22:51.561415 6616 species avibase-7E022378 Common Loon Gavia immer 11 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Environmental Center L1476823 H 40.7621022 -73.7535993 2015-04-05 07:10:00 obsr1160328 S22709435 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316956004 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-07 09:49:00 obsr2054320 S23292549 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322984133 2022-01-20 09:38:40.245267 6254 species avibase-FB4D08F0 Black-legged Kittiwake Rissa tridactyla 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-25 08:45:00 obsr2376028 S23638864 Traveling P22 EBIRD 180.0 3.219 2.0 1 G1291317 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315479614 2021-03-24 19:27:13.077399 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi N 1 United States US New York US-NY Chemung US-NY-015 28.0 My back yard L3610883 P 42.144028 -76.9456029 2015-05-03 18:00:00 obsr26728 S23208498 Stationary P21 EBIRD 85.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1208474595 2021-07-28 21:02:27.520092 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Erie US-NY-029 13.0 Home (Woodridge Avenue) L11248322 P 42.9424101 -78.777294 2015-05-04 06:40:00 obsr2155450 S92441735 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306674909 2015-04-04 16:01:46 20294 species avibase-76158864 Northern Shrike Lanius borealis 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Ontario US-NY-069 13.0 Outlet Creek at Fisher Rd., Phelps L3504661 H 42.9576794 -76.9893336 2015-03-30 obsr2116136 S22623358 Incidental P20 EBIRD 0 G1200962 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308920853 2022-02-04 06:14:13.892644 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-04-10 08:20:00 obsr800463 S22788681 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313776157 2021-03-19 16:19:20.977326 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 4 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-28 10:00:00 obsr2939916 S23108229 Traveling P22 EBIRD 139.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313363626 2015-08-02 20:45:19 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake Park L792637 H 42.7759994 -77.6113701 2015-04-26 17:00:00 obsr991026 S23081888 Stationary P21 EBIRD 20.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292201476 2021-04-01 12:32:15.282601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-19 10:30:00 obsr2976 S21439797 Traveling P22 EBIRD 60.0 3.219 2.0 1 G1118026 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299884434 2021-04-01 12:32:15.282601 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-02-27 10:30:00 obsr1489009 S22095006 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309468229 2021-03-24 19:20:44.053843 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Broome US-NY-007 28.0 Binghamton University Nature Preserve L447646 H 42.0818211 -75.9682059 2015-04-12 07:00:00 obsr998593 S22824152 Stationary P21 EBIRD 120.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301209997 2021-03-30 19:07:52.958398 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-06 09:00:00 obsr1801902 S22194516 Traveling P22 EBIRD 150.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291870644 2019-07-23 17:27:04 483 species avibase-85625D75 Mallard Anas platyrhynchos 12 United States US New York US-NY Suffolk US-NY-103 US-NY_2799 30.0 Montauk Point, lighthouse overlook L2451456 H 41.0709727 -71.8565091 2015-01-18 08:00:00 obsr271871 S21413958 Stationary P21 EBIRD 100.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296396006 2021-11-09 21:57:08.584829 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 5 United States US New York US-NY Ulster US-NY-111 28.0 Hoffman Rd, Wallkill, NY L3353243 P 41.632616 -74.189313 2015-02-11 08:54:00 obsr1595836 S21794711 Incidental P20 EBIRD 3.0 0 G1144508 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294141020 2015-01-31 13:08:11 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Monroe US-NY-055 13.0 Moscow Rd E od Rt 19 L3328985 P 43.349121 -77.9137516 2015-01-28 08:45:00 obsr2966702 S21613544 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308068581 2016-03-06 22:55:23 406 species avibase-27B2749A Wood Duck Aix sponsa 6 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-04-06 15:42:00 obsr1154 S22723930 Traveling P22 EBIRD 70.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306026274 2021-03-24 19:27:13.077399 30494 species avibase-240E3390 House Sparrow Passer domesticus 7 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-29 09:33:00 obsr1334267 S22573492 Traveling P22 EBIRD 23.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295529346 2021-03-31 03:59:50.422612 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-02-08 09:39:00 obsr2871406 S21724507 Traveling P22 EBIRD 3.0 1.609 3.0 1 G1138936 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288216259 2021-03-19 16:44:35.607263 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo N X United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-01-01 10:00:00 obsr2223307 S21118955 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317654221 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L2020281 P 40.783661 -73.963995 2015-05-09 06:30:00 obsr2436774 S23332627 Traveling P22 EBIRD 330.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310606764 2021-04-01 12:18:57.910168 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Tompkins US-NY-109 28.0 Websterk Estate L3569539 P 42.4151243 -76.3541704 2015-04-17 07:20:00 obsr71667 S22904128 Stationary P21 EBIRD 30.0 4.0 1 G1222662 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321193787 2021-04-01 11:15:31.646886 26890 species avibase-94A44032 European Starling Sturnus vulgaris 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-19 08:45:00 obsr152435 S23530568 Traveling P22 EBIRD 138.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304650648 2018-08-04 17:02:29 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 25 United States US New York US-NY Suffolk US-NY-103 30.0 North Sea, 350-380 Towd Point Road L2182723 P 40.94628 -72.41517 2015-03-22 14:48:00 obsr613775 S22468265 Traveling P22 EBIRD 9.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308522683 2021-03-23 16:39:03.255227 26109 species avibase-BAC33609 Brown Creeper Certhia americana 8 United States US New York US-NY Richmond US-NY-085 30.0 Mission of Immaculate Virgin, Mt. Loretto L890042 H 40.511334 -74.2196149 2015-04-08 14:08:00 obsr155915 S22758857 Traveling P22 EBIRD 10.0 0.644 2.0 1 G1211590 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291179028 2021-03-19 16:43:17.120646 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 6 United States US New York US-NY Madison US-NY-053 28.0 Mason Hill, Hamilton, NY L2591505 P 42.8259191 -75.5196977 2015-01-15 12:15:00 obsr2843748 S21359255 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291649046 2017-01-08 08:51:25 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College--Visitor Interpretive Center L212478 H 44.4486136 -74.2594002 2015-01-18 12:00:00 obsr2630526 S21397239 Traveling P22 EBIRD 45.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289461522 2021-03-30 19:29:33.633096 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-06 09:00:00 obsr1488063 S21220897 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307473515 2015-04-05 07:57:50 11371 species avibase-75600969 Northern Flicker Colaptes auratus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-04-04 14:00:00 obsr1223279 S22681939 Historical P62 EBIRD_CAN 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312770655 2021-03-24 20:33:47.533911 634 species avibase-F3D74914 King Eider Somateria spectabilis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Palmer Woods L287796 H 42.4604469 -76.4789951 2015-04-25 09:22:00 obsr1066109 S23046462 Traveling P22 EBIRD 46.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289193648 2021-03-26 06:55:00.227271 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-01-04 13:30:00 obsr606693 S21199963 Traveling P22 EBIRD 20.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306310502 2021-03-26 06:21:54.883933 26278 species avibase-A381417F House Wren Troglodytes aedon 4 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-30 08:50:00 obsr1605975 S22594823 Traveling P22 EBIRD 200.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310342460 2019-07-23 17:28:19 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 25 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr1821546 S22885569 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309944029 2021-04-01 11:49:53.573686 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Environmental Center L1476823 H 40.7621022 -73.7535993 2015-04-14 08:00:00 obsr676630 S22858140 Traveling P22 EBIRD 15.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307772199 2022-01-30 05:40:13.589887 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 15:00:00 obsr2585137 S22702769 Traveling P22 EBIRD 60.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311827301 2021-03-26 07:43:12.52294 27616 species avibase-D77E4B41 American Robin Turdus migratorius 28 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Rd. L508804 H 43.0489452 -76.7335796 2015-04-19 12:32:00 obsr2683910 S22982477 Traveling P22 EBIRD 15.0 0.805 2.0 1 G1230123 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305332521 2015-03-25 21:34:56 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 other transit L3515039 P 40.8520596 -72.7302647 2015-03-22 16:45:00 obsr1277765 S22520826 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306637089 2018-08-04 17:04:54 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-03-31 18:30:00 obsr1778524 S22620545 Traveling P22 EBIRD 90.0 0.322 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308706756 2021-03-26 06:53:58.593564 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 2 United States US New York US-NY Oneida US-NY-065 13.0 South Bay marina L2764031 P 43.1592376 -75.7462692 2015-04-09 11:15:00 obsr2139704 S22773152 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316071892 2021-04-01 11:30:42.037277 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 06:00:00 obsr1760429 S23241741 Traveling P22 EBIRD 309.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301622909 2021-04-01 10:49:39.496318 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N X United States US New York US-NY Cayuga US-NY-011 13.0 Triangle Diner L368656 H 42.664724 -76.638903 2015-03-08 10:10:00 obsr59643 S22226697 Stationary P21 EBIRD 24.0 11.0 1 G1170858 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308351605 2021-03-23 17:21:37.486392 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 11 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-04-06 18:00:00 obsr1708031 S22745694 Stationary P21 EBIRD 71.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301044547 2021-03-24 20:23:39.258075 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus N 13 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-03-05 11:48:00 obsr2485753 S22182149 Stationary P21 EBIRD 59.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311145111 2021-03-31 04:01:10.517395 8157 spuh avibase-E91E7830 Buteo sp. Buteo sp. 28 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 07:35:00 obsr1711339 S22938342 Traveling P22 EBIRD 320.0 8.047 16.0 1 G1224971 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311915911 2021-03-30 19:39:10.250398 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-21 13:00:00 obsr2534001 S22988078 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322231359 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-23 08:15:00 obsr1189028 S23594320 Traveling P22 EBIRD 255.0 4.828 2.0 1 G1285706 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290858875 2021-04-22 12:55:05.75868 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Oneida US-NY-065 13.0 Waterville Home Grounds L1257983 P 42.9688865 -75.3351134 2015-01-13 11:30:00 obsr2139704 S21333352 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307475007 2021-11-09 20:40:08.274848 7261 species avibase-86D45B8F Green Heron Butorides virescens 1 United States US New York US-NY Putnam US-NY-079 28.0 Yard List (Personal Location) L1765727 P 41.3533799 -73.952949 2015-04-04 15:30:00 obsr2188716 S22682046 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298746304 2015-02-21 12:23:57 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 5 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Niagara--Lewiston (NY) L356887 H 43.174301 -79.04921 2015-02-21 12:20:00 obsr558077 S22003622 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322095621 2018-08-06 22:30:45 456 species avibase-D201EB72 American Wigeon Mareca americana 6 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College L1485004 H 44.4375537 -74.2530447 2015-05-21 14:00:00 obsr2161273 S23586592 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296474776 2021-03-26 07:07:10.758746 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla N 20 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-13 14:55:00 obsr1958124 S21801664 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313347038 2018-08-04 17:12:16 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-25 16:05:00 obsr34822 S23080926 Traveling P22 EBIRD 16.0 4.828 3.0 1 G1238407 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310183332 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-15 07:43:00 obsr2321296 S22874871 Traveling P22 EBIRD 173.0 2.253 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306548000 2018-08-04 17:04:51 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 7 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-03-31 09:45:00 obsr1472872 S22613460 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288752088 2021-12-10 08:21:29.396662 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 30 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-01-03 10:30:00 obsr2211514 S21163173 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323679374 2021-04-01 11:24:19.637193 11371 species avibase-75600969 Northern Flicker Colaptes auratus 2 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-05-28 07:15:00 obsr1782363 S23685245 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311362993 2015-04-19 18:24:17 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-04-18 15:00:00 obsr1439545 S22951609 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313817497 2015-04-28 15:06:15 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-04-28 14:41:00 obsr887540 S23110903 Traveling P22 EBIRD 23.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307438524 2015-04-09 13:18:17 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Kings US-NY-047 30.0 Highland Park (Brooklyn) L2894991 H 40.6855955 -73.8854742 2015-04-04 11:10:00 obsr263005 S22679599 Traveling P22 EBIRD 90.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305195251 2019-07-23 17:28:06 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 10 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-03-24 07:40:00 obsr2733394 S22510101 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310266658 2021-12-28 15:50:27.785498 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 S7 C3 S7 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-04-15 16:57:00 obsr606693 S22880230 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310923954 2021-03-19 16:14:11.035882 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY Cortland US-NY-023 28.0 Daisy Hollow Rd. wet meadows L2976557 H 42.4879855 -76.2249148 2015-04-18 06:19:00 obsr1092576 S22924666 Stationary P21 EBIRD 8.0 2.0 1 G1224176 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305783077 2021-04-01 12:32:15.282601 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-03-28 10:30:00 obsr2207991 S22555571 Traveling P22 EBIRD 120.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306368134 2021-11-09 18:34:57.804398 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-03-30 10:00:00 obsr1264675 S22599252 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309316109 2021-03-26 07:07:10.758746 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Richmond US-NY-085 US-NY_818 30.0 Old Place Creek--Western Ave. L890084 H 40.6293718 -74.1866482 2015-04-12 08:46:00 obsr1958124 S22815052 Traveling P22 EBIRD 5.0 0.322 2.0 1 G1216229 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS325001407 2021-03-26 07:56:20.588749 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-23 16:00:00 obsr2218212 S23775935 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298695685 2021-03-30 19:29:33.633096 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 3 United States US New York US-NY Suffolk US-NY-103 30.0 Forge River L2636000 P 40.7977194 -72.8315127 2015-02-20 10:00:00 obsr1592950 S21999405 Traveling P22 EBIRD 45.0 0.402 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300068560 2021-03-23 16:39:03.255227 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Richmond US-NY-085 River Rd. marshes and RR tracks L2457005 H 40.6165874 -74.1940534 2015-02-28 12:28:00 obsr1893950 S22108960 Traveling P22 EBIRD 25.0 0.644 2.0 1 G1161943 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316496110 2018-08-04 17:14:56 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 2 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College L1485004 H 44.4375537 -74.2530447 2015-05-06 05:45:00 obsr568671 S23266105 Stationary P21 EBIRD 270.0 5.0 1 G1254570 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309080352 2021-11-09 19:01:40.008558 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 6 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-04-11 06:52:00 obsr1433400 S22799683 Traveling P22 EBIRD 190.0 7.081 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302822906 2021-03-26 07:30:35.289997 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 4 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-13 08:08:00 obsr59643 S22326280 Traveling P22 EBIRD 43.0 0.161 2.0 1 G1178064 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311192537 2021-03-30 19:29:33.633096 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Suffolk US-NY-103 30.0 East Quogue Marina L2111110 P 40.8488783 -72.571907 2015-04-19 07:00:00 obsr2692002 S22941299 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312334142 2021-03-19 16:25:42.617988 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-04-23 11:35:00 obsr2769235 S23015860 Traveling P22 EBIRD 142.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291109200 2016-10-10 10:35:42 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 06:45:00 obsr598381 S21353756 Traveling P22 EBIRD 75.0 18.99 44.0 1 G1108327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307127317 2021-03-24 20:33:47.533911 8829 species avibase-8F123A11 Short-eared Owl Asio flammeus 3 United States US New York US-NY Tompkins US-NY-109 13.0 Farm Pond Circle L2080608 P 42.5383387 -76.4633042 2015-04-03 08:00:00 obsr596741 S22657250 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311157817 2021-04-01 11:24:19.637193 7261 species avibase-86D45B8F Green Heron Butorides virescens 15 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-04-18 16:18:00 obsr1243175 S22939190 Traveling P22 EBIRD 42.0 0.805 2.0 1 G1225847 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294323387 2021-01-03 16:59:56.162431 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-01-31 14:46:00 obsr800690 S21627937 Traveling P22 EBIRD 16.0 0.402 1.0 1 G1131278 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313482396 2021-11-15 03:06:58.889978 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-27 06:19:00 obsr33221 S23089788 Traveling P22 EBIRD 120.0 1.996 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319586287 2018-08-06 22:29:50 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 2 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-05-13 09:09:00 obsr1222746 S23440434 Traveling P22 EBIRD 35.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313313883 2021-03-19 16:54:27.713469 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Montgomery US-NY-057 13.0 Old Trail Rd. Montgomery County, N.Y. L3185324 P 42.9707431 -74.3779564 2015-04-26 07:15:00 obsr2590001 S23078888 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318129241 2021-04-01 11:30:42.037277 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-25 09:30:00 obsr2633969 S23358133 Traveling P22 EBIRD 300.0 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292139712 2021-11-15 03:06:58.889978 526 species avibase-56CCA717 Northern Pintail Anas acuta 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-20 11:45:00 obsr2105033 S21435197 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309503775 2021-05-21 00:06:20.034424 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus N 4 United States US New York US-NY Richmond US-NY-085 Mt. Loretto Unique Area L293510 H 40.5072899 -74.2180324 2015-04-12 09:05:00 obsr1407710 S22826707 Traveling P22 EBIRD 141.0 3.219 6.0 1 G1216707 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301891263 2021-03-30 19:03:54.667077 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-08 15:35:00 obsr916033 S22248350 Stationary P21 EBIRD 62.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292628384 2021-04-01 11:49:53.573686 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 30 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park--Environmental Center L1476823 H 40.7621022 -73.7535993 2015-01-22 09:20:00 obsr676630 S21494131 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314497242 2020-07-20 09:16:51 11371 species avibase-75600969 Northern Flicker Colaptes auratus 6 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-30 19:13:00 obsr2224244 S23153161 Traveling P22 EBIRD 200.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317114688 2021-04-01 11:15:31.646886 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 8 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-08 06:40:00 obsr41879 S23301598 Traveling P22 EBIRD 141.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296327523 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 5 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP--Field 10 L1845933 H 40.6017384 -73.5144666 2015-02-06 10:00:00 obsr2497229 S21788885 Traveling P22 EBIRD 15.0 0.322 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314332447 2021-03-24 20:33:47.533911 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 13.0 Hawthorn Orchard and East Ithaca Rec. Way L122418 H 42.433213 -76.4681321 2015-04-30 08:44:00 obsr2683910 S23142548 Traveling P22 EBIRD 8.0 0.483 2.0 1 G1244183 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293171851 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 20 United States US New York US-NY Kings US-NY-047 Gravesend Bay L1047044 P 40.594403 -74.009571 2015-01-25 07:50:00 obsr2514491 S21536690 Traveling P22 EBIRD 45.0 0.322 3.0 1 G1122481 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313880811 2015-04-28 19:10:17 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Albany US-NY-001 13.0 Albany Pine Bush Preserve--Karner Barrens West L1601812 H 42.7183468 -73.870458 2015-04-28 17:41:00 obsr440908 S23114984 Traveling P22 EBIRD 88.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323754171 2020-07-27 15:41:41 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 S7 C3 S7 United States US New York US-NY Columbia US-NY-021 14.0 Harlem Valley Rail Trail--Copake Falls to Under Mountain Rd. L5803911 H 42.0757413 -73.5303798 2015-05-29 07:10:00 obsr798742 S23691878 Traveling P22 EBIRD 110.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299609173 2018-01-30 14:03:26 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Suffolk US-NY-103 30.0 Peconic River, Peconic Ave. L852310 H 40.9156868 -72.660892 2015-02-25 15:00:00 obsr757440 S22073552 Stationary P21 EBIRD 20.0 2.0 1 G1159904 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307138614 2021-11-09 21:05:40.007634 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Rockland US-NY-087 30.0 Lake Nanuet L3534527 P 41.080981 -74.001137 2015-04-03 11:04:00 obsr2586816 S22658038 Traveling P22 EBIRD 27.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299839545 2015-02-27 11:12:28 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 4 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-02-27 10:00:00 obsr1349676 S22091261 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306601715 2020-03-22 07:58:01 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 4 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-03-31 19:37:00 obsr1696616 S22617855 Stationary P21 EBIRD 18.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299036421 2015-02-27 09:34:02 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 Male, Adult (1) United States US New York US-NY Essex US-NY-031 US-NY_846 14.0 Big Slide L2238691 H 44.1849215 -73.8732965 2015-02-22 07:30:00 obsr2406261 S22028202 Traveling P22 EBIRD_CAN 210.0 6.3 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307144015 2021-04-01 12:24:45.865424 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria N 2 United States US New York US-NY Wayne US-NY-117 13.0 Lake Shore Marshes WMA--Broadway Rd. (Scotts Bluff) L453138 H 43.3131441 -76.7813109 2015-04-02 09:23:00 obsr211814 S22658418 Traveling P22 EBIRD 313.0 1.609 3.0 1 G1202494 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316522894 2021-11-09 18:30:49.111703 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 2 United States US New York US-NY Dutchess US-NY-027 13.0 18 Platt Ave L2227389 P 41.931249 -73.910858 2015-05-06 06:30:00 obsr1469078 S23267793 Traveling P22 EBIRD 360.0 9.656 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323104519 2021-04-01 11:47:43.260314 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-04-12 06:25:00 obsr2409011 S23646672 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308851025 2018-08-04 17:08:21 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Oneida US-NY-065 13.0 * Little River L512613 P 43.3075048 -75.8048058 2015-04-10 10:32:00 obsr1640315 S22783793 Traveling P22 EBIRD 25.0 1.609 1.0 1 G1213233 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303828180 2021-03-23 17:00:13.087107 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Tompkins US-NY-109 13.0 CLO Office-2M15 L1313831 P 42.4800694 -76.4515024 2015-03-18 09:05:00 obsr2074043 S22405738 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309251044 2021-03-24 05:37:45.927792 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus X 9 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-11 12:45:00 obsr319738 S22810916 Traveling P22 EBIRD 70.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309820844 2021-03-26 07:30:35.289997 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Bluegrass Lane Natural Area L877944 H 42.4632963 -76.4577198 2015-04-13 17:35:00 obsr620377 S22849356 Traveling P22 EBIRD 94.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313469834 2021-11-09 20:25:59.805509 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Orange US-NY-071 28.0 Laurel Grove Cemetery L760290 H 41.3619453 -74.6869469 2015-04-26 12:00:00 obsr2737993 S23089002 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309280365 2021-04-01 12:32:15.282601 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-04-11 07:15:00 obsr1160328 S22812762 Traveling P22 EBIRD 120.0 24.14 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292229527 2019-07-23 17:27:08 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 30 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach SP L502729 H 41.1286489 -72.2700955 2015-01-20 10:00:00 obsr757440 S21441688 Traveling P22 EBIRD 60.0 3.219 8.0 1 G1119018 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291790921 2021-04-01 11:24:19.637193 30494 species avibase-240E3390 House Sparrow Passer domesticus 150 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-18 13:30:00 obsr34861 S21407943 Stationary P21 EBIRD 30.0 4.0 1 G1114589 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289485306 2021-04-01 11:30:42.037277 7416 species avibase-36B3872D Turkey Vulture Cathartes aura N 34 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-06 12:50:00 obsr259298 S21222956 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291479446 2021-04-01 12:14:19.266649 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 21 United States US New York US-NY Suffolk US-NY-103 US-NY_840 Shinnecock Bay L594861 H 40.8629007 -72.4567223 2015-01-17 14:16:00 obsr800690 S21383757 Traveling P22 EBIRD 107.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301395515 2021-03-26 07:07:10.758746 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 450 United States US New York US-NY Richmond US-NY-085 Lemon Creek Pier L673443 H 40.5108301 -74.2097712 2015-03-07 09:27:00 obsr1958124 S22210026 Stationary P21 EBIRD 8.0 2.0 1 G1169017 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307800126 2021-11-09 21:41:38.417861 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 4 United States US New York US-NY Ulster US-NY-111 13.0 Hurley Mtn. Road L1783044 P 41.9006926 -74.1096432 2015-04-04 16:30:00 obsr1110743 S22704761 Traveling P22 EBIRD 15.0 0.402 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309307494 2021-03-22 09:17:32.016297 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 25 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-12 07:01:00 obsr666964 S22814499 Stationary P21 EBIRD 42.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310195573 2021-04-01 11:30:42.037277 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-13 09:00:00 obsr2319444 S22875664 Traveling P22 EBIRD 210.0 8.047 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312530216 2022-02-17 14:32:23.002448 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-24 10:00:00 obsr1284279 S23029240 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316604947 2015-05-06 19:09:59 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Greene US-NY-039 13.0 RamsHorn-Livingston Sanctuary L294427 H 42.2055974 -73.8640458 2015-05-06 07:30:00 obsr2766625 S23272791 Traveling P22 EBIRD 270.0 0.805 16.0 1 G1254989 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305419888 2021-03-30 19:39:10.250398 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-03-26 08:00:00 obsr1494607 S22527757 Traveling P22 EBIRD 210.0 3.219 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309055914 2021-03-26 06:39:43.334073 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-11 11:00:00 obsr2797341 S22798209 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312095182 2015-04-22 14:39:29 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 2 United States US New York US-NY Orleans US-NY-073 13.0 Gaines-Waterport Rd L2408367 P 43.2855406 -78.2156423 2015-04-22 12:00:00 obsr137150 S22999774 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293823094 2021-03-23 16:39:03.255227 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-01-29 09:35:00 obsr1958124 S21588505 Traveling P22 EBIRD 34.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318971879 2021-03-23 17:23:45.772216 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-11 13:00:00 obsr72341 S23404864 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303357459 2017-09-10 16:56:01 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 6 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Rd., Wooded Area L750494 H 43.0509523 -76.7387295 2015-03-15 17:34:00 obsr1721609 S22368656 Stationary P21 EBIRD 8.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316891231 2021-11-02 20:32:06.137153 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-07 12:15:00 obsr317968 S23288722 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314636672 2021-11-02 20:32:06.137153 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-01 12:20:00 obsr317968 S23161588 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313987198 2021-03-23 16:30:20.514143 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3599322 P 43.429016 -75.903778 2015-04-29 06:41:00 obsr1477887 S23121709 Stationary P21 EBIRD 52.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315967531 2021-03-24 19:24:40.212356 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Point Gratiot--Cedar Beach L2811591 H 42.4920361 -79.3499565 2015-05-04 12:56:00 obsr916033 S23235371 Stationary P21 EBIRD 169.0 1.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294216325 2021-11-09 17:47:17.381431 7200 species avibase-49D9148A Great Egret Ardea alba 4 United States US New York US-NY Dutchess US-NY-027 13.0 * Ring Road, Salt Point, NY L1084767 P 41.7968319 -73.8318479 2015-01-30 09:00:00 obsr763723 S21619301 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294488298 2021-11-09 19:04:19.670837 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 4 United States US New York US-NY Dutchess US-NY-027 14.0 Sheffield Hill Road, Amenia L5076376 H 41.8961166 -73.5104074 2015-02-01 14:05:00 obsr2343626 S21640891 Traveling P22 EBIRD 31.0 0.805 2.0 1 G1132353 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322731503 2021-03-19 16:27:31.421791 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Headquarters L153039 H 43.112325 -78.4048443 2015-05-25 07:30:00 obsr48167 S23623169 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300757654 2021-03-26 07:56:20.588749 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Nassau US-NY-059 30.0 Roslyn Pond Town Park L592300 H 40.7979205 -73.6473307 2015-03-03 12:30:00 obsr676630 S22160701 Traveling P22 EBIRD 30.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294007961 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 95 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-30 12:15:00 obsr2906952 S21603054 Traveling P22 EBIRD 36.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289292457 2021-03-30 19:43:32.881136 16285 species avibase-5BC4E0EF Willow Flycatcher Empidonax traillii 1 Male, Adult (1) United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-01-05 09:00:00 obsr2924527 S21207502 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311155669 2021-03-31 04:01:10.517395 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 5 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-18 07:35:00 obsr454647 S22939055 Traveling P22 EBIRD 320.0 8.047 16.0 1 G1224971 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324063987 2021-03-26 06:13:28.501496 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.1752556 -76.8558787 2015-02-13 07:05:00 obsr2736418 S23711865 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314390717 2018-08-04 17:13:08 447 species avibase-C235A4D7 Gadwall Mareca strepera 32 United States US New York US-NY Saratoga US-NY-091 13.0 Bog Meadow Brook Nature Trail L393549 H 43.0830082 -73.7208254 2015-04-30 08:34:00 obsr1222746 S23146155 Rusty Blackbird Spring Migration Blitz P41 EBIRD 178.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303823801 2018-08-04 17:01:43 505 species avibase-C732CB10 American Black Duck Anas rubripes 45 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-18 08:01:00 obsr1092576 S22405295 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310326488 2020-07-20 09:16:51 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 8 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-15 18:23:00 obsr2224244 S22884483 Traveling P22 EBIRD 181.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304219972 2021-03-19 16:44:35.607263 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-20 14:14:00 obsr334398 S22436397 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309355520 2021-04-01 12:18:57.910168 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Salt Point Natural Area L353038 H 42.5394116 -76.5496267 2015-04-12 10:10:00 obsr1418810 S22817505 Traveling P22 EBIRD 60.0 0.75 2.0 1 G1216802 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313579685 2015-07-10 19:12:17 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Schuyler US-NY-097 US-NY_791 28.0 Cayuta Gulf L2947274 H 42.3465081 -76.7309135 2015-04-27 15:52:00 obsr1696616 S23095564 Traveling P22 EBIRD 36.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306120616 2021-03-23 16:45:39.358281 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY St. Lawrence US-NY-089 13.0 Remington Recreation Trail L270558 H 44.6127667 -75.1665791 2015-03-29 17:05:00 obsr1558090 S22580378 Traveling P22 EBIRD 60.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303287195 2021-04-01 11:15:31.646886 526 species avibase-56CCA717 Northern Pintail Anas acuta 3 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-15 11:50:00 obsr876649 S22362733 Traveling P22 EBIRD 85.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307097453 2021-03-23 16:39:03.255227 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-03 07:07:00 obsr1958124 S22654882 Traveling P22 EBIRD 10.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292271891 2021-03-26 07:30:35.289997 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 11 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-01-19 12:30:00 obsr869999 S21445036 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307197078 2018-08-04 17:05:15 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-04-03 14:05:00 obsr2769235 S22661967 Traveling P22 EBIRD 80.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304435159 2021-03-26 06:29:56.44369 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Salmon Creek L4347440 H 43.3079914 -77.7479182 2015-03-21 16:08:00 obsr1696616 S22452482 Stationary P21 EBIRD 11.0 2.0 1 G1188311 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311985203 2021-04-01 11:15:31.646886 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-19 12:20:00 obsr2404047 S22992667 Traveling P22 EBIRD 180.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309665387 2021-04-01 11:42:50.317679 27103 species avibase-C8F9F2D0 Brown Thrasher Toxostoma rufum 6 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-04-13 06:59:00 obsr666964 S22837398 Stationary P21 EBIRD 80.0 1.0 1 G1217869 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319859147 2021-03-26 06:29:56.44369 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Monroe US-NY-055 13.0 Four Mile Creek Preserve L3565966 H 43.2637405 -77.4106466 2015-05-15 12:15:00 obsr1962295 S23455919 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309238033 2021-11-09 21:50:48.44865 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-11 14:00:00 obsr1588136 S22810024 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317329749 2021-04-01 11:30:42.037277 6616 species avibase-7E022378 Common Loon Gavia immer 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Arthur Ross Pinetum L826628 H 40.7835168 -73.9667 2015-05-08 07:35:00 obsr2277801 S23313241 Historical P62 EBIRD 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319851349 2021-03-26 06:12:17.833181 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Audubon Community Nature Center L156186 H 42.0193687 -79.1683766 2015-05-15 09:45:00 obsr1080625 S23455577 Traveling P22 EBIRD 230.0 1.609 10.0 1 G1309113 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313384866 2021-04-01 11:30:42.037277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 06:23:00 obsr924076 S23083782 Traveling P22 EBIRD 703.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317140489 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-05-02 11:00:00 obsr1137265 S23302910 Traveling P22 EBIRD 60.0 4.828 2.0 1 G1257272 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315235892 2021-03-26 06:29:56.44369 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 3 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-05-03 08:00:00 obsr1243175 S23195817 Stationary P21 EBIRD 145.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318972407 2015-05-12 13:47:46 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-12 06:35:00 obsr72341 S23404889 Stationary P21 EBIRD 125.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299380294 2021-11-09 22:27:59.558644 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Sullivan US-NY-105 28.0 Wurtsboro L1061608 P 41.572435 -74.4754601 2015-02-24 10:30:00 obsr444155 S22055849 Traveling P22 EBIRD 90.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293426530 2021-04-01 12:24:14.132004 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons 1 United States US New York US-NY Washington US-NY-115 13.0 Fort Miller, NY L2588693 P 43.1546669 -73.5772634 2015-01-26 14:00:00 obsr1222746 S21557317 Traveling P22 EBIRD 34.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304047451 2021-03-30 19:29:33.633096 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Suffolk US-NY-103 US-NY_847 30.0 Blydenburgh Park L524406 H 40.8353508 -73.220264 2015-03-19 10:30:00 obsr16685 S22422928 Traveling P22 EBIRD 150.0 9.656 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289274784 2021-03-30 19:43:32.881136 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N 4 United States US New York US-NY Westchester US-NY-119 30.0 Deans Bridge, North Salem L2152201 H 41.3368943 -73.6588245 2015-01-05 11:38:00 obsr1198912 S21206119 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315228327 2021-11-09 18:39:18.952338 30836 species avibase-8F268682 American Pipit Anthus rubescens N 2 United States US New York US-NY Dutchess US-NY-027 13.0 Pine Plains, Rt 82 at Conklin Hill Rd L2855074 P 41.93936 -73.65635 2015-05-03 08:56:00 obsr1732267 S23195423 Stationary P21 EBIRD 14.0 2.0 1 G1249914 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309381377 2021-04-01 12:11:50.996293 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 Savannah Mucklands (Seneca Co.) L99687 H 43.0208882 -76.7310748 2015-04-12 09:46:00 obsr800690 S22819029 Traveling P22 EBIRD 182.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307148416 2018-10-06 16:50:39 26109 species avibase-BAC33609 Brown Creeper Certhia americana 7 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--East Rd. L99686 H 43.009646 -76.7582003 2015-04-03 12:02:00 obsr613775 S22658713 Stationary P21 EBIRD 13.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309239011 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-04-11 09:50:00 obsr2595828 S22810118 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292840436 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 2 United States US New York US-NY Nassau US-NY-059 30.0 hempstead lake state park L1041563 P 40.6556387 -73.7017822 2015-01-22 08:00:00 obsr1494607 S21510665 Traveling P22 EBIRD 120.0 0.644 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300942816 2021-03-23 17:00:13.087107 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 30 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-04 16:36:00 obsr2871406 S22174845 Stationary P21 EBIRD 63.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310851835 2021-04-01 12:28:44.297881 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Chenango US-NY-017 28.0 Cincinnatus Lake (Chenango Co.) L2404270 H 42.4306156 -75.8623123 2015-04-18 07:36:00 obsr1092576 S22920215 Traveling P22 EBIRD 48.0 0.805 2.0 1 G1224234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306978763 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-02 06:48:00 obsr150865 S22645785 Traveling P22 EBIRD 194.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321014468 2021-04-01 11:15:31.646886 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina N 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-05-18 09:00:00 obsr827632 S23519531 Traveling P22 EBIRD 195.0 6.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300072671 2021-04-01 12:26:53.827486 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 20 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-02-28 12:44:00 obsr1154 S22109258 Stationary P21 EBIRD 8.0 2.0 1 G1161977 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317119164 2021-03-30 19:13:38.458673 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-05-08 09:22:00 obsr2595828 S23301801 Traveling P22 EBIRD 50.0 0.322 2.0 1 G1257533 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296651757 2018-08-04 16:56:15 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 5 United States US New York US-NY Madison US-NY-053 28.0 Payne Creek off Brookview Dr L3328623 P 42.8404473 -75.536837 2015-02-14 08:00:00 obsr2654222 S21817554 Stationary P21 EBIRD 300.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308722287 2021-12-03 21:50:44.732892 456 species avibase-D201EB72 American Wigeon Mareca americana 2 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-04-09 10:49:00 obsr155915 S22774347 Traveling P22 EBIRD 10.0 0.805 2.0 1 G1212580 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340186851 2017-02-03 18:54:43 7127 species avibase-13E9F9B4 American Bittern Botaurus lentiginosus 1 United States US New York US-NY Erie US-NY-029 13.0 Stiglmeier Park L965034 H 42.8821636 -78.7297356 2015-04-26 13:00:00 obsr1020013 S24880367 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292914250 2019-07-23 17:27:11 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 6 United States US New York US-NY Steuben US-NY-101 13.0 US-NY-Hammondsport-12215 E Lake Rd L3313829 P 42.466944 -77.15971 2015-01-24 11:23:00 obsr1828453 S21516690 Stationary P21 EBIRD 25.0 2.0 1 G1121010 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS299449819 2018-08-04 16:58:10 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Heckscher SP, East Islip L547888 H 40.7129149 -73.1650615 2015-02-24 11:45:00 obsr2852365 S22060837 Traveling P22 EBIRD 200.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307737852 2018-08-04 17:05:36 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run--Southeast L879238 H 42.4674118 -76.4183235 2015-04-05 12:25:00 obsr730231 S22700289 Traveling P22 EBIRD 40.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312767505 2018-08-04 17:12:11 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 6 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-04-25 11:13:00 obsr1958124 S23046285 Traveling P22 EBIRD 17.0 0.644 3.0 1 G1237329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312626088 2021-03-26 07:07:10.758746 6526 species avibase-4D2FF6F1 Common Tern Sterna hirundo 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-24 09:26:00 obsr1032565 S23036821 Traveling P22 EBIRD 124.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321729226 2018-08-06 22:30:44 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 Iroquois NWR--Swallow Hollow Trail L771567 H 43.1254425 -78.3256102 2015-05-21 13:15:00 obsr916033 S23563081 Traveling P22 EBIRD 83.0 3.219 2.0 1 G1281890 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312861641 2018-08-04 17:12:09 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Niagara US-NY-063 13.0 Tonawanda WMA--Mud Creek Marsh and Griswold St. Pond L793921 H 43.1349402 -78.494482 2015-04-25 10:39:00 obsr2756208 S23051764 Traveling P22 EBIRD 47.0 0.644 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307921740 2021-04-01 12:18:57.910168 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 50 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-05 18:00:00 obsr2535282 S22713870 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS825623362 2019-11-26 10:02:40 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-07 obsr2937317 S61222384 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319617354 2018-08-04 17:27:07 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft NP L1078447 P 42.8492576 -78.8532543 2015-05-14 07:30:00 obsr1079517 S23442137 Traveling P22 EBIRD 180.0 2.414 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301521929 2021-04-01 10:47:08.851048 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 6 United States US New York US-NY Broome US-NY-007 28.0 Martin Luther King Jr. Memorial Promenade L2467334 H 42.1006345 -75.9154898 2015-03-07 11:00:00 obsr290506 S22218971 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306916268 2019-04-19 13:17:53 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-02 09:45:00 obsr1918430 S22641066 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320133733 2021-03-19 16:02:45.308962 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-05-16 06:05:00 obsr290506 S23470939 Traveling P22 EBIRD 254.0 3.219 2.0 1 G1273111 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS498959422 2021-12-03 21:50:44.732892 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-04-12 14:15:00 obsr2391236 S36815883 Traveling P22 EBIRD 35.0 0.402 6.0 1 G1216757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314167525 2021-03-26 07:30:35.289997 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Tompkins US-NY-109 13.0 AviTom44 L3513986 H 42.5797472 -76.5504828 2015-04-29 19:42:00 obsr620377 S23132580 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304434680 2021-11-09 21:57:29.662474 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Ulster US-NY-111 13.0 West Camp-Lauren Tice-Malden L3503766 P 42.13744 -73.944 2015-03-21 08:15:00 obsr1482758 S22452441 Traveling P22 EBIRD 90.0 6.437 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305926927 2021-11-15 03:06:58.889978 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 14 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-28 10:08:00 obsr856524 S22566282 Traveling P22 EBIRD 95.0 1.931 5.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312921372 2021-03-26 08:14:04.726922 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons 14 United States US New York US-NY Warren US-NY-113 14.0 Hague Town Beach L1816697 P 43.7444423 -73.4964109 2015-04-23 obsr91727 S23055216 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316703417 2021-03-19 16:06:54.047432 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-05-06 obsr1395007 S23278379 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306136655 2021-03-30 19:13:38.458673 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 76 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-29 10:00:00 obsr1598543 S22581692 Traveling P22 EBIRD 44.0 0.161 2.0 1 G1196954 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298232278 2020-02-09 20:52:31 31592 species avibase-3534E4CE Lapland Longspur Calcarius lapponicus 2 United States US New York US-NY Ontario US-NY-069 13.0 Port Gibson L863798 T 43.03446 -77.1575 2015-02-18 11:27:00 obsr606693 S21958965 Traveling P22 EBIRD 6.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295395770 2021-03-26 07:07:10.758746 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-07 16:20:00 obsr1958124 S21713696 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323387738 2021-11-09 17:58:40.313796 23172 species avibase-2C1981BB Northern Rough-winged Swallow Stelgidopteryx serripennis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-11 06:15:00 obsr2786327 S23665337 Traveling P22 EBIRD 150.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308315035 2021-04-01 11:47:43.260314 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 90 United States US New York US-NY Oswego US-NY-075 13.0 Oneida Lake, Brewerton L2690668 H 43.2368243 -76.1249542 2015-04-07 16:19:00 obsr979921 S22742857 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291332587 2015-01-16 18:50:52 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 PI--Route 11 L985275 P 41.1870839 -72.1865273 2015-01-16 10:40:00 obsr2485753 S21372006 Traveling P22 EBIRD 22.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308079123 2021-03-23 17:00:13.087107 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 20 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--Snyder Rd. L763841 H 42.4976053 -76.4600587 2015-04-06 16:59:00 obsr1828453 S22724725 Traveling P22 EBIRD 34.0 0.322 2.0 1 G1208554 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309697952 2021-11-09 18:40:19.746769 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 6 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--West L3002249 H 41.9197784 -73.6751747 2015-04-13 09:01:00 obsr1442681 S22840249 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305801251 2021-03-26 07:30:35.289997 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos X United States US New York US-NY Tompkins US-NY-109 13.0 Ladoga Park L286192 H 42.5353445 -76.5396472 2015-03-28 07:30:00 obsr800690 S22556908 Stationary P21 EBIRD 30.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319733701 2018-08-06 22:29:51 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Livingston US-NY-051 US-NY_1761 13.0 Letchworth SP--Dishmill Trail L566086 H 42.6006091 -77.9909134 2015-05-13 17:00:00 obsr2366185 S23448868 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308609837 2021-03-24 20:16:00.852773 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 3 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-09 07:36:00 obsr1958124 S22765380 Traveling P22 EBIRD 34.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306706421 2015-04-01 11:45:27 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-31 10:59:00 obsr1334267 S22625813 Traveling P22 EBIRD 49.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316216442 2021-03-23 17:18:00.959502 622 species avibase-50566E50 Lesser Scaup Aythya affinis 1 United States US New York US-NY Albany US-NY-001 13.0 Moh-He-Con-Nuck Nature Preserve L1778708 H 42.5657507 -73.7628129 2015-05-05 17:28:00 obsr1154 S23250490 Traveling P22 EBIRD 87.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305733999 2021-03-24 21:06:05.39641 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 6 United States US New York US-NY Onondaga US-NY-067 13.0 Home, Thatchwood Dr., Manlius L1789277 P 43.008956 -76.0102533 2015-03-27 10:40:00 obsr724731 S22551860 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312169494 2021-03-23 17:26:08.495143 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-04-17 08:30:00 obsr525303 S23004845 Traveling P22 EBIRD 60.0 1.609 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322514133 2021-04-01 11:24:19.637193 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-24 06:18:00 obsr334398 S23610310 Traveling P22 EBIRD 51.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292913577 2018-12-07 06:53:41 6339 species avibase-8535345B Herring Gull Larus argentatus 26 United States US New York US-NY Steuben US-NY-101 13.0 US-NY-Hammondsport-9339 E Lake Rd L3313561 P 42.412058 -77.196418 2015-01-24 10:49:00 obsr1092576 S21516642 Stationary P21 EBIRD 8.0 2.0 1 G1120999 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292068495 2021-11-09 21:56:50.005019 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Ulster US-NY-111 13.0 Zena, NY - my yard L3270926 P 42.030998 -74.0844584 2015-01-18 11:00:00 obsr2129840 S21429501 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315479465 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 09:20:00 obsr1129613 S23208488 Traveling P22 EBIRD 240.0 6.437 25.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302266234 2021-03-30 19:43:32.881136 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Westchester US-NY-119 30.0 Deans Bridge, North Salem L2152201 H 41.3368943 -73.6588245 2015-03-10 13:00:00 obsr2688589 S22280610 Traveling P22 EBIRD 20.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302470110 2021-03-26 07:20:31.408164 32955 species avibase-41062654 Northern Parula Setophaga americana 5 United States US New York US-NY Suffolk US-NY-103 30.0 Soundview Avenue, Mattituck L3333176 P 41.022573 -72.542707 2015-03-11 10:25:00 obsr2528068 S22299310 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319339874 2018-07-09 13:20:06 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Chautauqua US-NY-013 13.0 Panama Rocks Scenic Park L7686395 H 42.072845 -79.488153 2015-05-13 09:45:00 obsr2816437 S23426133 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291462086 2021-11-09 20:42:29.914366 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 9 United States US New York US-NY Putnam US-NY-079 28.0 Lake Mahopac L3261861 H 41.3804796 -73.738389 2015-01-17 08:08:00 obsr1386475 S21382399 Traveling P22 EBIRD 52.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303345761 2021-03-26 07:56:20.588749 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Nassau US-NY-059 30.0 N 2nd St. L2585098 P 40.738664 -73.6975363 2015-03-15 09:00:00 obsr143739 S22367723 Stationary P21 EBIRD 540.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308625942 2021-03-24 20:33:47.533911 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-04-09 09:30:00 obsr1655171 S22766612 Traveling P22 EBIRD 28.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305826320 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 7 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-03-27 13:25:00 obsr2505956 S22558723 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324064614 2021-03-26 06:13:28.501496 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.1752556 -76.8558787 2015-03-03 07:10:00 obsr2736418 S23711907 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316096320 2018-11-16 19:49:32 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Erie US-NY-029 13.0 Delaware Park--Rumsey Woods L1348448 H 42.9307931 -78.8698229 2015-05-04 07:45:00 obsr2597186 S23243046 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311010133 2021-03-24 20:58:53.646623 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-04-18 08:30:00 obsr72341 S22930110 Stationary P21 EBIRD 570.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310469756 2021-03-22 09:17:32.016297 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 2 United States US New York US-NY Oneida US-NY-065 13.0 Whitestown L210157 P 43.17351 -75.4187135 2015-04-16 obsr1384380 S22894323 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311713439 2021-03-24 20:11:57.676649 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 30 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-20 08:18:00 obsr2744341 S22975055 Traveling P22 EBIRD 642.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315588653 2021-11-15 03:06:58.889978 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 12:20:00 obsr1555046 S23214400 Traveling P22 EBIRD 180.0 4.828 2.0 1 G1250420 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290684195 2021-03-30 19:29:33.633096 27616 species avibase-D77E4B41 American Robin Turdus migratorius 4 United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-11 07:56:00 obsr564905 S21319446 Traveling P22 EBIRD 81.0 0.483 2.0 1 G1107124 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312322342 2021-03-23 16:39:03.255227 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis N 8 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-23 13:58:00 obsr1958124 S23015098 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320590976 2021-04-01 11:30:42.037277 591 species avibase-1929E1E1 Canvasback Aythya valisineria X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-17 06:50:00 obsr822430 S23494596 Traveling P22 EBIRD 320.0 6.437 33.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312855351 2015-08-02 20:45:19 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Livingston US-NY-051 US-NY_835 13.0 Hemlock Lake Park L792637 H 42.7759994 -77.6113701 2015-04-25 14:00:00 obsr1561508 S23051394 Stationary P21 EBIRD 30.0 2.0 1 G1235908 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321270444 2021-03-19 16:44:35.607263 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Lakeview Community Church Trail L598238 H 43.2888115 -77.6760221 2015-05-19 07:00:00 obsr2504709 S23535206 Traveling P22 EBIRD 50.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308835746 2021-03-24 20:23:39.258075 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach SP L502729 H 41.1286489 -72.2700955 2015-04-10 10:30:00 obsr1434651 S22782758 Traveling P22 EBIRD 40.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323984147 2021-03-26 06:15:05.840405 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Cortland US-NY-023 28.0 AviCor18 L3513960 H 42.4410677 -76.0746521 2015-05-30 14:25:00 obsr1696616 S23707049 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304369211 2021-03-30 19:37:33.521815 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-03-21 09:21:00 obsr1721609 S22447779 Traveling P22 EBIRD 125.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305634599 2015-03-27 16:29:48 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Schenectady US-NY-093 13.0 Niskayuna Railroad Station at Lions Park L505923 H 42.7776374 -73.823356 2015-03-27 16:00:00 obsr481595 S22544317 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292667734 2021-11-09 19:34:18.590596 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 4 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-01-22 11:30:00 obsr1665312 S21497136 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303386219 2017-04-17 13:43:00 616 species avibase-25C94A8F Greater Scaup Aythya marila 8 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connnetquot Ave Central Islip, NY L2311687 P 40.7817763 -73.1776142 2015-03-15 08:45:00 obsr2534001 S22370871 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310385876 2021-03-24 20:03:01.953443 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 4 United States US New York US-NY Niagara US-NY-063 13.0 Krull County Park L1248204 H 43.3349979 -78.7086467 2015-04-12 07:35:00 obsr1243175 S22888659 Traveling P22 EBIRD 100.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295240117 2021-04-01 12:18:57.910168 26890 species avibase-94A44032 European Starling Sturnus vulgaris 11 United States US New York US-NY Tompkins US-NY-109 13.0 Stevenson Rd. Game Farm and Compost L212389 H 42.4467995 -76.4406126 2015-02-06 16:40:00 obsr2074043 S21700922 Traveling P22 EBIRD 13.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290358986 2015-01-11 09:01:29 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm, Caroline L123189 H 42.3432727 -76.2994856 2015-01-11 07:59:00 obsr455249 S21293142 Stationary P21 EBIRD 62.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317824029 2021-04-01 11:30:42.037277 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-08 08:43:00 obsr363953 S23341636 Traveling P22 EBIRD 300.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303708951 2021-03-26 06:29:56.44369 447 species avibase-C235A4D7 Gadwall Mareca strepera 10 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Grandview Heights L856113 P 43.295949 -77.6923943 2015-03-16 12:30:00 obsr1376838 S22396214 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292494688 2021-03-30 19:39:10.250398 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve--Massapequa Lake L881487 H 40.6669677 -73.4683228 2015-01-20 12:20:00 obsr2505956 S21483427 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289163151 2018-12-15 15:57:31 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Tompkins US-NY-109 28.0 Beezamer L2957441 P 42.3907709 -76.407305 2015-01-01 08:35:00 obsr140280 S21197723 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301805418 2015-03-08 17:23:13 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Schenectady US-NY-093 13.0 Christiana Natural Area L1866066 H 42.88395 -73.9484455 2015-03-08 10:40:00 obsr739254 S22241843 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307285864 2021-03-26 06:12:17.833181 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-04-03 09:00:00 obsr479109 S22668460 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306062988 2018-01-14 21:21:32 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-03-29 13:38:00 obsr1655171 S22576015 Stationary P21 EBIRD 1.0 2.0 1 G1198695 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS360465036 2018-08-06 22:30:14 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 King St. L1961133 P 42.2797855 -75.9081459 2015-05-16 14:36:00 obsr998593 S26406560 Stationary P21 EBIRD 55.0 2.0 1 G1508810 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307434818 2021-03-26 06:55:00.227271 26278 species avibase-A381417F House Wren Troglodytes aedon 2 Male, Adult (2) United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--LaRue Rd. S (3176D) [Clifton Springs_NE] L1024818 P 42.9894554 -77.1567464 2015-04-04 09:52:00 obsr606693 S22679317 Traveling P22 EBIRD 6.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295804922 2016-01-27 10:55:43 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 4 United States US New York US-NY Rensselaer US-NY-083 13.0 US-NY-East Greenbush-149 Horizon View Dr L3349489 P 42.586039 -73.689937 2015-02-09 13:57:00 obsr801814 S21745465 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309537408 2018-08-04 17:08:45 26890 species avibase-94A44032 European Starling Sturnus vulgaris 10 United States US New York US-NY Cayuga US-NY-011 US-NY_1726 13.0 Montezuma (NMWMA)--Loop Road Unit L1280457 H 43.0280383 -76.7091179 2015-04-12 09:00:00 obsr1433290 S22821416 Traveling P22 EBIRD 180.0 16.093 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290799358 2021-11-09 20:12:16.773384 7429 species avibase-1327AC55 Osprey Pandion haliaetus 2 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-01-13 07:44:00 obsr1912104 S21328079 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291974595 2021-04-01 11:49:53.573686 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 1 United States US New York US-NY Queens US-NY-081 30.0 Idlewild Park L2687800 H 40.6546016 -73.7547487 2015-01-19 09:40:00 obsr1982614 S21422150 Traveling P22 EBIRD 180.0 1.497 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309896213 2019-10-21 19:06:00 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-13 18:28:00 obsr186539 S22854592 Traveling P22 EBIRD 120.0 0.161 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304694328 2021-03-26 07:46:52.994574 337 species avibase-694C127A Mute Swan Cygnus olor 3 Male, Adult (1); Female, Adult (2) United States US New York US-NY Albany US-NY-001 13.0 54 north main street, voorheesville, ny L2021630 P 42.6606634 -73.9281178 2015-03-14 08:30:00 obsr405772 S22471702 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321962119 2021-03-26 06:29:56.44369 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 United States US New York US-NY Monroe US-NY-055 13.0 US-NY-MON I-490--exit 5 to NY 386 (Chili Center Rd.), Chili L2947810 P 43.1209013 -77.7456307 2015-05-21 10:08:00 obsr606693 S23578027 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314662767 2015-05-01 15:44:05 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-30 13:35:00 obsr1167884 S23163090 Traveling P22 EBIRD 115.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291968735 2018-08-04 16:53:56 6616 species avibase-7E022378 Common Loon Gavia immer 4 United States US New York US-NY Cayuga US-NY-011 13.0 Skaneateles Lake, SW corner (Cayuga Co.) L476513 H 42.765241 -76.2765741 2015-01-18 10:50:00 obsr2279567 S21421680 Traveling P22 EBIRD 43.0 0.161 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323944142 2018-08-06 22:31:27 6472 species avibase-BE78E765 Least Tern Sternula antillarum 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor19 L3513961 H 42.56625 -76.077778 2015-05-30 10:03:00 obsr2173269 S23704720 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310774218 2021-03-23 17:26:08.495143 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-17 13:30:00 obsr1160328 S22915142 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309126770 2015-04-20 07:16:56 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Niagara US-NY-063 13.0 Tonawanda WMA--Mud Creek Marsh and Griswold St. Pond L793921 H 43.1349402 -78.494482 2015-04-11 12:40:00 obsr1104059 S22802503 Stationary P21 EBIRD 1.0 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS306282940 2021-03-26 07:56:20.588749 616 species avibase-25C94A8F Greater Scaup Aythya marila 4 United States US New York US-NY Nassau US-NY-059 30.0 113 Lawson L3509276 P 40.693829 -73.6169661 2015-03-30 10:15:00 obsr2664032 S22592901 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320112171 2022-01-20 09:38:40.245267 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-16 09:07:00 obsr896341 S23469799 Traveling P22 EBIRD 126.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299497150 2015-05-07 17:02:31 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-02-25 07:34:00 obsr455249 S22064556 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308783209 2021-11-15 03:06:58.889978 6616 species avibase-7E022378 Common Loon Gavia immer 22 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-08 08:39:00 obsr1548221 S22778970 Traveling P22 EBIRD 47.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295760628 2021-04-01 11:15:31.646886 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-09 08:00:00 obsr454647 S21742077 Traveling P22 EBIRD 90.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293035119 2021-04-01 12:32:15.282601 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-23 11:30:00 obsr1494607 S21525665 Traveling P22 EBIRD 120.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317480024 2021-04-01 10:45:00.916278 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 5 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.8929476 2015-05-09 08:00:00 obsr2054320 S23322497 Traveling P22 EBIRD 150.0 1.609 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290857371 2021-03-24 20:33:47.533911 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 12 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-01-13 14:00:00 obsr1006348 S21333193 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313631615 2021-03-31 04:02:52.909278 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 3 United States US New York US-NY Orleans US-NY-073 13.0 Yard Area 12534 Hemlock Ridge Road Medina NY L5789486 P 43.1698568 -78.3140096 2015-04-27 16:06:00 obsr2588479 S23098958 Traveling P22 EBIRD 135.0 0.177 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298825190 2021-03-30 19:39:10.250398 303 species avibase-B59E1863 Canada Goose Branta canadensis 10 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve--Massapequa Lake L881487 H 40.6669677 -73.4683228 2015-02-21 10:00:00 obsr391865 S22010184 Traveling P22 EBIRD 240.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289669329 2015-02-21 08:46:53 303 species avibase-B59E1863 Canada Goose Branta canadensis 9 United States US New York US-NY Suffolk US-NY-103 US-NY_766 Huntington Harbor, Halesite L1846592 H 40.8892375 -73.4173635 2015-01-07 12:05:00 obsr1107696 S21237500 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318514666 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-10 08:00:00 obsr1251455 S23379057 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314192009 2021-03-26 07:43:12.52294 7229 species avibase-AA7901D8 Snowy Egret Egretta thula 3 United States US New York US-NY Wayne US-NY-117 13.0 Powell's Yard L783199 P 43.0918854 -77.3488167 2015-04-29 18:00:00 obsr749440 S23134118 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308387308 2018-08-04 17:07:59 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Wayne US-NY-117 13.0 Farm on West Walworth between Rt. 31F and Quaker Rd. L3513041 P 43.0902258 -77.354393 2015-04-07 12:33:00 obsr528918 S22748339 Traveling P22 EBIRD 10.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319332359 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-11 08:30:00 obsr1987335 S23425716 Traveling P22 EBIRD 113.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317012279 2021-03-26 06:39:43.334073 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-07 06:57:00 obsr856524 S23295724 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316122488 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 09:00:00 obsr2906952 S23244444 Traveling P22 EBIRD 260.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316313834 2015-10-09 17:47:39 20829 species avibase-B9B272F4 Common Raven Corvus corax 2 United States US New York US-NY Fulton US-NY-035 14.0 Piseco Rd @ Hawes Road & Vicinity L3616708 P 43.2073676 -74.6782609 2015-05-05 16:30:00 obsr316199 S23256260 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295526301 2021-03-23 16:39:03.255227 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 50 United States US New York US-NY Richmond US-NY-085 Conference House Park L302089 H 40.4995098 -74.2516756 2015-02-08 10:05:00 obsr155915 S21724265 Traveling P22 EBIRD 50.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295602034 2021-04-01 12:32:15.282601 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-08 08:40:00 obsr876649 S21730085 Traveling P22 EBIRD 265.0 9.656 3.0 1 G1395239 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312524609 2018-08-04 17:09:33 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-04-17 14:30:00 obsr1770248 S23028893 Historical P62 EBIRD 120.0 6.8797 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311164317 2021-03-26 06:29:56.44369 27369 species avibase-0B8F4EE6 Veery Catharus fuscescens 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-04-18 06:57:00 obsr2595828 S22939593 Stationary P21 EBIRD 500.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307361998 2021-03-26 08:11:28.0353 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 5 United States US New York US-NY Saratoga US-NY-091 13.0 US-NY-Stillwater, NY 52 county route 76 L1926398 P 42.933103 -73.680332 2015-04-04 08:28:00 obsr2564462 S22674151 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305461990 2020-03-15 09:14:53 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-03-26 09:30:00 obsr156569 S22531008 Traveling P22 EBIRD 45.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314470656 2021-03-26 06:17:19.712573 20829 species avibase-B9B272F4 Common Raven Corvus corax 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-04-29 obsr2096529 S23151489 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316046395 2021-03-26 07:46:52.994574 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 3 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-05 06:42:00 obsr2512689 S23240345 Traveling P22 EBIRD 108.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289263312 2021-03-24 21:06:05.39641 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-01-05 09:12:00 obsr2744341 S21205145 Traveling P22 EBIRD 70.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312577526 2021-03-30 19:39:10.250398 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-23 08:00:00 obsr2505956 S23033167 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 1.609 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318780062 2021-04-01 10:55:39.308231 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 20 Queens Drive L1383581 P 43.0393001 -78.946665 2015-05-11 06:45:00 obsr502830 S23393842 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309725536 2021-04-01 12:45:19.712958 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Westchester US-NY-119 30.0 Backyard L1243032 P 41.1702553 -73.8428879 2015-04-12 10:00:00 obsr1540211 S22842041 Stationary P21 EBIRD 70.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313633875 2021-04-01 11:54:40.172593 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 Female, Adult (1) United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-04-26 08:00:00 obsr666331 S23099111 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311781165 2021-04-01 11:30:42.037277 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 Unknown Sex, Adult (1); Unknown Sex, Immature (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-04-19 13:15:00 obsr2072398 S22979253 Traveling P22 EBIRD 45.0 0.805 2.0 1 G1229930 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319744197 2021-11-15 03:06:58.889978 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 17:21:00 obsr2180607 S23449521 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314191951 2021-11-09 19:30:40.312662 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica X United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR (NY) L1238320 H 41.2865783 -74.5264006 2015-04-29 08:00:00 obsr1912104 S23134113 Traveling P22 EBIRD 173.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298229707 2021-03-24 19:48:44.880783 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Monroe US-NY-055 13.0 4 Woodside Drive, Penfield, NY L868257 P 43.1235553 -77.4714392 2015-02-18 12:45:00 obsr2716898 S21958736 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292708278 2021-03-26 07:53:57.664705 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-01-22 07:20:00 obsr72341 S21500382 Stationary P21 EBIRD 540.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314491003 2021-12-03 21:50:44.732892 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-04-30 18:20:00 obsr979921 S23152781 Traveling P22 EBIRD 60.0 3.219 2.0 1 G1245131 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302348355 2021-03-26 06:29:56.44369 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-03-10 15:10:00 obsr934639 S22290102 Traveling P22 EBIRD 40.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291054298 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-01 10:00:00 obsr369788 S21349166 Traveling P22 EBIRD 180.0 4.828 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309484482 2015-04-12 18:11:59 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Richmond US-NY-085 30.0 Goethals Bridge Pond--Observation Platform L884460 H 40.6281787 -74.1741575 2015-04-12 07:45:00 obsr41879 S22825277 Stationary P21 EBIRD 25.0 6.0 1 G1216704 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307893969 2018-08-04 17:05:36 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 452 United States US New York US-NY Washington US-NY-115 13.0 River Rd., Ft. Miller L2742155 H 43.1343397 -73.5892952 2015-04-05 11:44:00 obsr1222746 S22711930 Traveling P22 EBIRD 57.0 2.736 2.0 1 G1207227 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322569228 2018-08-06 22:31:03 6501 species avibase-BC06BC0D Caspian Tern Hydroprogne caspia 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-24 13:45:00 obsr1463039 S23613385 Traveling P22 EBIRD 35.0 0.322 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300296797 2018-08-04 16:58:33 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-03-01 15:43:00 obsr2001485 S22127822 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308983536 2021-03-19 16:19:20.977326 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-04-10 09:45:00 obsr1079517 S22793210 Area P23 EBIRD 40.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299157512 2015-02-23 09:42:45 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Tompkins US-NY-109 13.0 **Williams Glen yard L2589116 P 42.454637 -76.5212318 2015-02-23 09:33:00 obsr288410 S22038831 Stationary P21 EBIRD 5.0 2.0 1 G1157549 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313956444 2021-03-26 06:09:25.361188 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Binghamton - 42.1353x-75.9095 - Apr 22, 2015, 2:29 PM L3598979 P 42.135435 -75.909556 2015-04-22 14:29:00 obsr2730377 S23119616 Traveling P22 EBIRD 87.0 4.828 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316690072 2021-04-01 10:47:08.851048 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Broome US-NY-007 28.0 Boland Pond L505437 H 42.1781776 -75.8815169 2015-05-06 17:00:00 obsr1626739 S23277642 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292850891 2022-03-06 12:39:33.700954 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 12 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-01-23 16:00:00 obsr186539 S21511516 Traveling P22 EBIRD 36.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308617295 2021-04-01 11:30:42.037277 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-09 06:55:00 obsr1433400 S22765975 Traveling P22 EBIRD 90.0 4.184 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307726236 2021-03-30 19:29:33.633096 30494 species avibase-240E3390 House Sparrow Passer domesticus N 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Heckscher Greenbelt L3540576 P 40.7124288 -73.1489468 2015-04-05 09:30:00 obsr706483 S22699263 Traveling P22 EBIRD 120.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315980334 2021-11-15 03:06:58.889978 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 16 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-02 12:54:00 obsr2885680 S23236119 Traveling P22 EBIRD 123.0 0.805 3.0 1 G1252520 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318013568 2016-12-13 23:15:58 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Delaware US-NY-025 28.0 Bridge St., Downsville L2384566 H 42.0755272 -74.9899937 2015-05-08 11:30:00 obsr1788273 S23352106 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322043070 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-22 08:37:00 obsr2883698 S23583269 Traveling P22 EBIRD 320.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293416062 2015-01-27 11:22:10 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Wayne US-NY-117 13.0 Witherden Road, MARION L3320394 P 43.1663711 -77.1764385 2015-01-26 16:00:00 obsr2185713 S21556410 Stationary P21 EBIRD 15.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317026975 2021-06-25 16:16:05.676603 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 16:15:00 obsr2448957 S23296587 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319617549 2021-03-26 07:56:20.588749 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-14 08:00:00 obsr2505956 S23442148 Rusty Blackbird Spring Migration Blitz P41 EBIRD 360.0 9.656 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315481749 2021-11-09 18:42:19.628792 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-03 05:46:00 obsr1732267 S23208606 Traveling P22 EBIRD 170.0 2.414 2.0 1 G1249912 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295737873 2015-02-09 06:28:58 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-02-08 15:30:00 obsr676630 S21740565 Traveling P22 EBIRD 45.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320351470 2018-08-06 22:30:12 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-05-16 12:17:00 obsr2420101 S23481909 Stationary P21 EBIRD 12.0 1.0 1 G1274032 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316403940 2021-04-01 12:14:19.266649 505 species avibase-C732CB10 American Black Duck Anas rubripes 7 United States US New York US-NY Suffolk US-NY-103 30.0 Smith Point Park/FINS L303182 P 40.7345819 -72.8652876 2015-04-22 07:00:00 obsr395994 S23260913 Traveling P22 EBIRD 90.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309491408 2021-03-24 20:23:39.258075 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Yard L140623 P 41.0755806 -72.4415894 2015-04-12 14:54:00 obsr2485753 S22825797 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311863602 2015-04-21 23:52:20 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 2 United States US New York US-NY Kings US-NY-047 US-NY-8703-8799 Shore Rd L3580870 P 40.624378 -74.040797 2015-04-21 14:48:00 obsr1821546 S22984574 Incidental P20 EBIRD 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305246758 2021-03-26 07:56:20.588749 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 Male, Unknown Age (1) United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-03-23 07:10:00 obsr1296638 S22514244 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309408902 2021-03-19 16:02:45.308962 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Broome US-NY-007 28.0 SUNY Broome Community College L3583220 H 42.1353684 -75.9091816 2015-04-12 10:50:00 obsr1044068 S22820741 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303610043 2015-03-16 21:35:01 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 745 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-03-16 15:40:00 obsr1334267 S22388702 Stationary P21 EBIRD 26.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288143697 2021-03-30 19:07:52.958398 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-01 09:00:00 obsr1407710 S21112811 Traveling P22 EBIRD 120.0 3.219 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306359873 2021-03-26 06:13:28.501496 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 2 United States US New York US-NY Chemung US-NY-015 28.0 Moss Hill Road (Chemung Co.) L3499863 H 42.1581843 -76.7556696 2015-03-30 10:35:00 obsr2430746 S22598550 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299011799 2021-11-09 22:04:47.967972 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-20 16:02:00 obsr341904 S22025210 Incidental P20 EBIRD 4.0 0 G1156474 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296699943 2021-04-01 12:32:15.282601 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 12 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-14 07:30:00 obsr547602 S21822221 Traveling P22 EBIRD 180.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321124545 2021-11-15 03:06:58.889978 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-18 08:33:00 obsr1548221 S23525749 Traveling P22 EBIRD 50.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288908218 2021-03-30 12:05:58.533651 7200 species avibase-49D9148A Great Egret Ardea alba 1 United States US New York US-NY Nassau US-NY-059 30.0 North Woodmere Park L1855788 P 40.644958 -73.736834 2015-01-03 14:20:00 obsr1220115 S21177831 Traveling P22 EBIRD 55.0 0.402 4.0 1 G1094303 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309011718 2015-04-11 07:18:23 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Saratoga US-NY-091 13.0 Personal residence L1937009 P 42.9576788 -74.0717125 2015-04-11 06:50:00 obsr1557094 S22795256 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290370466 2016-02-05 21:24:52 11374 issf avibase-6B7F47D8 Northern Flicker Colaptes auratus Northern Flicker (Yellow-shafted) Colaptes auratus auratus/luteus 27 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-01-11 10:05:00 obsr1154 S21294085 Stationary P21 EBIRD 11.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314230413 2021-11-09 20:51:10.420953 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Rockland US-NY-087 30.0 Lake Tappan (NY), Convent Rd. L1038277 H 41.0545394 -73.9821377 2015-04-29 17:47:00 obsr2628711 S23136526 Traveling P22 EBIRD 10.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321501937 2021-03-26 06:17:19.712573 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-18 11:00:00 obsr2871264 S23549137 Traveling P22 EBIRD 180.0 1.207 2.0 1 G1280786 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300865632 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Nassau US-NY-059 30.0 Thompson Place, Lynbrook L3382423 P 40.6502915 -73.6783307 2015-03-04 08:00:00 obsr2703784 S22169126 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298846987 2018-08-04 16:57:58 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 10 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-21 12:34:00 obsr1893950 S22011848 Traveling P22 EBIRD 5.0 0.322 2.0 1 G1155355 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312311252 2021-03-26 06:39:43.334073 2369 species avibase-00124D98 Mourning Dove Zenaida macroura N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-15 06:11:00 obsr150865 S23014259 Traveling P22 EBIRD 151.0 4.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314475414 2021-04-01 11:30:42.037277 5948 species avibase-A47B0BD4 Least Sandpiper Calidris minutilla X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 07:00:00 obsr1312694 S23151790 Traveling P22 EBIRD 135.0 2.414 10.0 1 G1244719 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS551524745 2018-08-04 16:58:29 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Albany US-NY-001 13.0 Falls View Park L2320054 H 42.7858769 -73.7097709 2015-03-01 obsr455725 S40669669 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289354522 2021-03-26 06:39:43.334073 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-05 15:00:00 obsr1135516 S21212562 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300263974 2021-04-01 11:30:42.037277 30494 species avibase-240E3390 House Sparrow Passer domesticus N X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-03-01 12:20:00 obsr1349960 S22125188 Traveling P22 EBIRD 70.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297465482 2015-02-16 09:17:25 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-02-16 08:39:00 obsr2172593 S21890299 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322397340 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos N 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Cedar Hill L5197378 H 40.7770344 -73.9654146 2015-05-22 19:24:00 obsr1548221 S23603864 Traveling P22 EBIRD 5.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313818481 2015-04-28 17:07:34 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-04-28 15:01:00 obsr1792012 S23110953 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304490911 2021-11-09 21:50:48.44865 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 Male, Adult (1) United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-03-21 14:30:00 obsr1636520 S22456696 Traveling P22 EBIRD 75.0 0.805 4.0 1 G1188107 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292218171 2021-04-01 11:49:53.573686 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 9 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-01-20 07:20:00 obsr187432 S21440920 Traveling P22 EBIRD 200.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319855833 2021-04-01 11:30:42.037277 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-15 07:15:00 obsr2033754 S23455773 Traveling P22 EBIRD 30.0 0.402 2.0 1 G4900156 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291488743 2015-01-17 16:44:46 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 400 United States US New York US-NY Ontario US-NY-069 13.0 The Swamp L1660257 P 42.8848133 -77.0413991 2015-01-17 16:00:00 obsr572658 S21384506 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311574723 2021-03-19 16:06:54.047432 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Cayuga US-NY-011 US-NY_2805 13.0 Owasco Flats Nature Reserve L3578209 P 42.7471613 -76.4643717 2015-04-18 08:45:00 obsr534615 S22965027 Traveling P22 EBIRD 180.0 1.609 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316755405 2021-11-15 03:06:58.889978 16241 species avibase-9891BF73 Eastern Wood-Pewee Contopus virens N 40 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-06 10:10:00 obsr1706920 S23281294 Traveling P22 EBIRD 190.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315386500 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:20:00 obsr1047805 S23203462 Traveling P22 EBIRD 462.0 8.047 3.0 1 G1259290 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317133244 2021-04-01 11:15:31.646886 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 07:15:00 obsr2363365 S23302552 Traveling P22 EBIRD 420.0 4.828 30.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324240250 2021-04-01 11:15:31.646886 6339 species avibase-8535345B Herring Gull Larus argentatus 2 S C2 S United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-31 08:24:00 obsr924076 S23723330 Traveling P22 EBIRD 270.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293330518 2015-05-07 17:02:31 5923 species avibase-15369E8E Dunlin Calidris alpina 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-01-26 07:49:00 obsr455249 S21548657 Traveling P22 EBIRD 8.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295937274 2021-03-30 19:29:33.633096 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 35 United States US New York US-NY Suffolk US-NY-103 30.0 Bullhead Bay Inlet L821831 H 40.9170961 -72.4518943 2015-02-08 15:30:00 obsr1987335 S21756275 Traveling P22 EBIRD 8.0 0.483 2.0 0 G1142211 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323724614 2021-03-24 20:58:53.646623 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-05-28 12:10:00 obsr72341 S23689922 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308738685 2021-11-09 20:51:10.420953 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 2 United States US New York US-NY Rockland US-NY-087 30.0 Lake Tappan (NY), Convent Rd. L1038277 H 41.0545394 -73.9821377 2015-04-09 16:50:00 obsr2628711 S22775652 Traveling P22 EBIRD 10.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307383294 2015-04-04 10:24:57 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Ontario US-NY-069 13.0 Personal L3537049 P 42.7776098 -77.2141081 2015-04-03 15:00:00 obsr936992 S22675698 Historical P62 EBIRD 15.0 0.4047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307249665 2015-04-03 18:38:15 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Queens US-NY-081 Riis Beach L2757854 P 40.5680675 -73.8603973 2015-04-03 10:20:00 obsr2189493 S22665803 Traveling P22 EBIRD 5.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307153661 2021-04-01 11:54:40.172593 27616 species avibase-D77E4B41 American Robin Turdus migratorius N X United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-03 07:35:00 obsr1620361 S22659095 Traveling P22 EBIRD 210.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312821420 2021-03-26 07:30:35.289997 681 species avibase-407E2CA8 Common Merganser Mergus merganser X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-25 07:43:00 obsr241086 S23049465 Traveling P22 EBIRD 60.0 0.161 2.0 1 G1235115 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323961717 2021-03-26 06:29:56.44369 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Monroe US-NY-055 13.0 near pond at Mill Landing L2103068 P 43.235551 -77.702571 2015-05-17 10:00:00 obsr1721347 S23705786 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314338681 2015-04-30 12:43:05 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 6 Female, Adult (3); Male, Adult (3) United States US New York US-NY Herkimer US-NY-043 13.0 Castle Road - Ponds L742345 P 43.150683 -74.8973608 2015-04-30 11:16:00 obsr2694889 S23142908 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306756138 2021-11-09 18:40:19.746769 28890 species avibase-9437D635 Cedar Waxwing Bombycilla cedrorum 4 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--West L3002249 H 41.9197784 -73.6751747 2015-04-01 08:42:00 obsr1732267 S22629142 Traveling P22 EBIRD 132.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302333859 2021-03-26 07:20:31.408164 18514 issf avibase-25ACCDC0 Warbling Vireo Vireo gilvus Warbling Vireo (Eastern) Vireo gilvus gilvus 6 United States US New York US-NY Suffolk US-NY-103 30.0 Stony Brook University L2350778 H 40.9146933 -73.1215687 2015-03-09 14:37:00 obsr758734 S22287936 Traveling P22 EBIRD 7.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312762272 2021-03-19 16:02:45.308962 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 4 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Lisle-502-506 High St L3588899 P 42.349654 -76.008212 2015-04-25 10:38:00 obsr246469 S23045952 Traveling P22 EBIRD 25.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314105243 2021-04-01 12:44:06.475065 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii X United States US New York US-NY Warren US-NY-113 14.0 Wolf pond road L3600055 P 43.5696334 -73.8622427 2015-04-16 obsr349095 S23128773 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305895232 2021-12-24 11:05:53.916238 27616 species avibase-D77E4B41 American Robin Turdus migratorius 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Round Pond & Outlet, Greece L139794 H 43.2748148 -77.6451323 2015-03-28 17:20:00 obsr934639 S22563897 Stationary P21 EBIRD 10.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297195903 2021-04-01 11:15:31.646886 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-15 14:00:00 obsr1807494 S21866406 Traveling P22 EBIRD 60.0 1.609 2.0 1 G1147439 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319532400 2021-03-26 07:46:52.994574 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 Male, Adult (1) United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-14 08:54:00 obsr2512689 S23437445 Traveling P22 EBIRD 76.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321461055 2021-03-23 17:20:04.546757 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-16 10:30:00 obsr2475075 S23546851 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292776863 2021-03-19 16:32:34.732091 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Kings US-NY-047 Gravesend Bay, middle parking lot L1843449 H 40.6040297 -74.0243731 2015-01-23 14:22:00 obsr454647 S21505549 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318514948 2021-03-26 06:29:56.44369 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Monroe US-NY-055 13.0 Grandma's house L893383 P 43.1896935 -77.7725896 2015-05-10 11:12:00 obsr1991824 S23379070 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304761448 2021-03-26 07:52:59.845315 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 13 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-03-21 07:10:00 obsr316199 S22476583 Area P23 EBIRD 80.0 2.59 2.0 1 G1189318 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289330283 2022-01-09 18:48:43.534861 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 50 United States US New York US-NY New York US-NY-061 30.0 Greenwich Village (14th St.-Houston St.; Broadway-Hudson River) L3238737 H 40.7342063 -74.0027145 2015-01-02 07:47:00 obsr2512689 S21210739 Traveling P22 EBIRD 60.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301295867 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-03-06 13:30:00 obsr2448957 S22201120 Traveling P22 EBIRD 270.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301371978 2018-08-04 16:58:55 1375 species avibase-4B9EEF56 Ring-necked Pheasant Phasianus colchicus 20 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-Oswego-2847 NY-48 L3461000 P 43.401671 -76.475051 2015-03-07 11:47:00 obsr1828453 S22208143 Stationary P21 EBIRD 4.0 4.0 1 G1168755 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318937398 2021-03-26 07:56:20.588749 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-05-12 10:57:00 obsr1828453 S23403006 Traveling P22 EBIRD 48.0 0.805 2.0 1 G1268142 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306743679 2015-04-01 14:46:26 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Kings US-NY-047 30.0 Ocean Pkwy L2306171 P 40.648899 -73.9748526 2015-04-01 14:20:00 obsr2906952 S22628397 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308349309 2021-04-01 11:49:53.573686 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Queens US-NY-081 30.0 Oakland Lake L526572 P 40.7588528 -73.7607425 2015-04-05 07:45:00 obsr2233270 S22745519 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309258188 2021-11-15 03:06:58.889978 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-11 12:40:00 obsr1555046 S22811335 Traveling P22 EBIRD 180.0 1.609 2.0 1 G1223862 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291275334 2018-08-04 16:53:23 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Hillcrest Pits L1092972 H 42.1604768 -75.8834267 2015-01-16 10:30:00 obsr1044068 S21367326 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299149488 2015-02-23 08:43:15 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Tompkins US-NY-109 28.0 398 Ellis Hollow Creek Rd L3279759 P 42.4366565 -76.3926253 2015-02-23 07:26:00 obsr2377251 S22038190 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS353188357 2021-03-30 19:07:52.958398 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-20 08:00:00 obsr2966709 S25819835 Traveling P22 EBIRD 300.0 32.187 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301953858 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Kings US-NY-047 Gravesend Bay, middle parking lot L1843449 H 40.6040297 -74.0243731 2015-03-08 15:00:00 obsr2603801 S22252733 Traveling P22 EBIRD 120.0 8.047 2.0 1 G1171896 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308059109 2021-03-19 16:19:20.977326 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Erie US-NY-029 13.0 Amherst SP (formerly Glen Park) L207674 H 42.9703531 -78.7483286 2015-04-06 10:00:00 obsr2825336 S22723212 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289211416 2015-01-04 23:49:13 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Niagara--Lewiston (NY) L356887 H 43.174301 -79.04921 2015-01-01 09:30:00 obsr762001 S21201284 Stationary P21 EBIRD 15.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309308343 2018-08-04 17:08:22 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 12 United States US New York US-NY Steuben US-NY-101 28.0 Big Pond, Addison Rd Gang Mills L3557207 P 42.1362115 -77.1257186 2015-04-10 12:52:00 obsr1602357 S22814566 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291212805 2021-03-23 17:21:08.587586 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Delaware US-NY-025 28.0 River Rd., fields, Downsville L2376728 H 42.0701497 -74.9979185 2015-01-10 08:02:00 obsr1788273 S21362122 Traveling P22 EBIRD 12.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302137400 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-09 17:30:00 obsr1382841 S22266714 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305558787 2021-03-30 19:29:33.633096 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mount Sinai Harbor, Shore Road L808919 P 40.9542335 -73.0278397 2015-03-16 13:35:00 obsr395994 S22538442 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303483812 2021-09-19 18:52:22.654948 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius N 40 United States US New York US-NY New York US-NY-061 The Battery, Manhattan L288752 H 40.7035452 -74.0159751 2015-03-16 10:15:00 obsr869873 S22379095 Traveling P22 EBIRD 33.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318678408 2021-04-01 11:15:31.646886 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 30 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-09 16:30:00 obsr454647 S23387890 Traveling P22 EBIRD 80.0 1.0 6.0 1 G1265607 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314249384 2021-03-26 06:07:45.516082 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Bronx US-NY-005 US-NY_1763 Pelham Bay Park--Turtle Cove L867490 H 40.8619109 -73.8049561 2015-04-29 15:45:00 obsr538462 S23137729 Traveling P22 EBIRD 125.0 1.1 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304487782 2021-04-01 11:54:40.172593 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY Richmond US-NY-085 30.0 US-NY-6420 Amboy Rd L2963170 P 40.521971 -74.216039 2015-03-21 18:30:00 obsr1958124 S22456485 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308382943 2021-04-01 11:47:43.260314 447 species avibase-C235A4D7 Gadwall Mareca strepera 8 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-04-07 08:27:00 obsr2945658 S22748003 Stationary P21 EBIRD 685.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310216124 2021-03-24 19:20:44.053843 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 7 United States US New York US-NY Broome US-NY-007 28.0 Murphys Pits (restricted access) L978114 H 42.1087685 -75.997683 2015-04-15 08:15:00 obsr879105 S22876927 Traveling P22 EBIRD 12.0 1.609 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298669695 2015-02-20 22:12:21 7429 species avibase-1327AC55 Osprey Pandion haliaetus 12 United States US New York US-NY Delaware US-NY-025 28.0 Quail Ridge Area L2327396 P 42.2085425 -74.587276 2015-02-20 07:30:00 obsr883142 S21996685 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291053412 2021-03-30 19:07:52.958398 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 6 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-14 14:30:00 obsr2363365 S21349101 Traveling P22 EBIRD 255.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309374086 2021-03-30 19:13:38.458673 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Durand-Eastman Park--Zoo Rd. L139792 H 43.2279443 -77.557404 2015-04-12 10:02:00 obsr1124114 S22818621 Traveling P22 EBIRD 144.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304124539 2021-03-26 07:20:31.408164 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point County Park L835192 H 41.1597479 -72.2347641 2015-03-19 09:50:00 obsr758734 S22428831 Traveling P22 EBIRD 198.0 2.0 3.0 1 G1185506 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299385414 2021-11-09 18:34:57.804398 8829 species avibase-8F123A11 Short-eared Owl Asio flammeus 3 Male, Adult (1); Female, Adult (2) United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-02-24 13:30:00 obsr1264675 S22056188 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294847338 2021-03-24 20:33:47.533911 30494 species avibase-240E3390 House Sparrow Passer domesticus N 15 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-02-04 08:28:00 obsr2211210 S21669933 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299814649 2021-03-23 16:30:20.514143 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 6 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-02-14 08:00:00 obsr2409011 S22089208 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305040093 2018-08-04 17:02:43 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 300 United States US New York US-NY Westchester US-NY-119 28.0 US-NY-Croton-on-Hudson - 41.2278x-73.8572 - Jan 20, 2015, 11:36 AM L3305976 P 41.227803 -73.857259 2015-03-24 08:30:00 obsr258431 S22498315 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303490608 2021-03-24 19:27:13.077399 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 5 United States US New York US-NY Chemung US-NY-015 28.0 Sperr Memorial Park L7578475 H 42.1465676 -76.9144776 2015-03-16 10:54:00 obsr1310178 S22379652 Traveling P22 EBIRD 24.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315264153 2021-11-09 18:36:27.898762 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-05-03 06:01:00 obsr1433400 S23197286 Traveling P22 EBIRD 45.0 1.899 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302330310 2021-04-01 12:14:19.266649 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 2 United States US New York US-NY Suffolk US-NY-103 30.0 Southards Pond Park L715006 H 40.7102149 -73.3287406 2015-03-10 14:30:00 obsr1137265 S22286388 Rusty Blackbird Spring Migration Blitz P41 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293386783 2017-08-16 16:27:15 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-25 17:35:00 obsr2505956 S21553402 Traveling P22 EBIRD 75.0 1.609 4.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS313867000 2021-04-01 12:32:15.282601 27616 species avibase-D77E4B41 American Robin Turdus migratorius N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach -- Boardwalk L3440009 P 40.5933684 -73.5179383 2015-04-28 11:00:00 obsr87415 S23114032 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308338157 2021-04-01 11:15:31.646886 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-07 10:15:00 obsr827632 S22744693 Traveling P22 EBIRD 180.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291511486 2021-04-01 11:24:19.637193 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-01-17 16:35:00 obsr1545618 S21386322 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300663456 2019-10-25 16:04:48 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY St. Lawrence US-NY-089 13.0 Sykes Rd L2457420 P 44.6857867 -75.1560116 2015-03-02 17:32:00 obsr2056110 S22153589 Historical P62 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296998054 2021-04-01 11:24:19.637193 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 4 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-02-14 07:51:00 obsr745890 S21848185 Incidental P20 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293908471 2021-03-26 06:29:56.44369 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-01-29 15:25:00 obsr934639 S21595297 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298818142 2018-08-04 16:56:43 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Cortland US-NY-023 28.0 Cortland County L3388068 P 42.749705 -76.137767 2015-02-16 17:40:00 obsr2955569 S22009599 Incidental P20 EBIRD 1.0 0 G1155227 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303478554 2021-03-26 06:20:10.658048 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 19 United States US New York US-NY Genesee US-NY-037 13.0 Genesee County Airport (GVQ) L2486434 H 43.0306505 -78.1733465 2015-03-16 09:40:00 obsr2933610 S22378708 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324390039 2018-08-06 22:31:17 303 species avibase-B59E1863 Canada Goose Branta canadensis 3 United States US New York US-NY Cayuga US-NY-011 US-NY_1726 13.0 Duck Lake L3047142 P 43.1493445 -76.6843987 2015-05-28 07:45:00 obsr2050665 S23733182 Traveling P22 EBIRD 75.0 1.287 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310490310 2021-03-26 06:20:37.302746 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 4 United States US New York US-NY Greene US-NY-039 13.0 wildwing park catskill L749524 P 42.2294707 -73.8825417 2015-04-16 07:30:00 obsr2515158 S22896040 Stationary P21 EBIRD 495.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288553858 2021-04-01 12:32:15.282601 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-01-02 10:15:00 obsr547602 S21147271 Traveling P22 EBIRD 60.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299744094 2021-03-30 19:39:10.250398 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Nassau US-NY-059 30.0 Twin Lakes Preserve L279979 H 40.6788694 -73.5147682 2015-02-26 11:00:00 obsr547602 S22083661 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310612056 2021-03-26 07:30:35.289997 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-17 07:04:00 obsr1655171 S22904500 Traveling P22 EBIRD 70.0 0.644 2.0 1 G1223891 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313253180 2021-04-01 11:30:42.037277 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 25 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 09:30:00 obsr2277801 S23075066 Historical P62 EBIRD 420.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299007234 2021-03-26 07:17:57.136956 7200 species avibase-49D9148A Great Egret Ardea alba 5 United States US New York US-NY Seneca US-NY-099 13.0 Wyers Point and Wyers Point Rd. L285461 H 42.6736408 -76.7156979 2015-02-22 13:15:00 obsr1895507 S22024792 Traveling P22 EBIRD 60.0 6.437 5.0 1 G1156312 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298938980 2021-03-24 20:33:47.533911 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca L122272 T 42.44067 -76.49656 2015-02-22 09:00:00 obsr316746 S22019410 Traveling P22 EBIRD 90.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310837029 2021-03-23 17:18:00.959502 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-04-18 06:22:00 obsr1154 S22919190 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304168849 2021-03-23 17:00:13.087107 431 species avibase-90E2543E Blue-winged Teal Spatula discors X United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-03-20 08:32:00 obsr2001485 S22432211 Traveling P22 EBIRD 7.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313995549 2021-03-23 17:17:06.468947 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 3 United States US New York US-NY Wyoming US-NY-121 28.0 Beaver Meadow Audubon Center L160586 H 42.6730027 -78.3831251 2015-04-29 08:10:00 obsr558077 S23122278 Traveling P22 EBIRD 39.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308324462 2018-08-04 17:05:07 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.9339927 -76.7278183 2015-04-02 17:15:00 obsr1957925 S22743600 Stationary P21 EBIRD 25.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313733088 2021-03-30 19:29:33.633096 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Suffolk US-NY-103 30.0 Inlet Pond County Park L689239 H 41.108233 -72.3808479 2015-04-27 13:30:00 obsr379239 S23105518 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300098481 2021-03-23 16:30:20.514143 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 1 United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-02-24 08:00:00 obsr2409011 S22111894 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309510059 2021-03-30 19:29:33.633096 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-11 09:30:00 obsr2852365 S22827112 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316118807 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 12:40:00 obsr2883698 S23244231 Traveling P22 EBIRD 60.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288335865 2021-11-09 17:43:05.347258 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 8 United States US New York US-NY Dutchess US-NY-027 28.0 Brothers Rd - Depot Hill L1034813 P 41.5944317 -73.6783826 2015-01-01 10:40:00 obsr2343626 S21129281 Stationary P21 EBIRD 100.0 2.0 1 G1092344 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301975644 2021-12-03 21:50:44.732892 30494 species avibase-240E3390 House Sparrow Passer domesticus X United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-03-09 09:50:00 obsr666331 S22254400 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306921382 2021-03-26 06:15:05.840405 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Cortland US-NY-023 28.0 Blodgett Mills L1903199 P 42.568267 -76.121106 2015-04-02 11:11:00 obsr1696616 S22641428 Traveling P22 EBIRD 4.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304966804 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-21 11:38:00 obsr2891998 S22492364 Traveling P22 EBIRD 17.0 0.161 2.0 1 G1190791 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871462 2021-03-26 07:56:20.588749 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 234 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-28 09:00:00 obsr2218212 S21672047 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295613811 2021-04-01 12:32:15.282601 7042 species avibase-3DF5C587 Great Cormorant Phalacrocorax carbo N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Zach's Bay Area (along Ocean Pkwy) L3266600 P 40.6022235 -73.4653187 2015-02-08 14:12:00 obsr87415 S21731098 Traveling P22 EBIRD 13.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304540647 2021-03-26 06:39:43.334073 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-21 13:12:00 obsr366057 S22460468 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309010568 2021-03-24 20:33:47.533911 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-10 18:35:00 obsr241086 S22795184 Traveling P22 EBIRD 60.0 0.805 2.0 1 G1214077 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315448879 2021-11-09 19:01:40.008558 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-05-03 13:00:00 obsr237150 S23206809 Traveling P22 EBIRD 870.0 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294139276 2021-04-01 12:32:15.282601 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-01-31 11:40:00 obsr431494 S21613401 Traveling P22 EBIRD 78.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306233855 2021-12-19 10:32:19.574298 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 56 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-03-29 08:15:00 obsr1139818 S22589063 Traveling P22 EBIRD 150.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298083900 2021-03-19 16:02:45.308962 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Broome US-NY-007 28.0 US-NY-Johnson City-2205 Airport Rd L3396087 P 42.2185967 -75.9682453 2015-02-17 16:13:00 obsr1764243 S21946543 Traveling P22 EBIRD 77.0 60.671 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305088058 2018-08-04 17:02:47 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Westchester US-NY-119 30.0 Hommocks Conservation Area L3202017 H 40.9318417 -73.7420636 2015-03-24 15:00:00 obsr363163 S22501994 Traveling P22 EBIRD 34.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313119733 2021-04-01 11:30:42.037277 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis N 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-26 08:20:00 obsr2206421 S23067199 Traveling P22 EBIRD 190.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288608253 2021-03-30 19:39:10.250398 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 18 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-02 09:00:00 obsr352522 S21151560 Traveling P22 EBIRD 60.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS329942397 2021-04-01 10:55:39.308231 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L692296 H 42.8874107 -78.7166119 2015-05-28 15:30:00 obsr1379161 S24129988 Traveling P22 EBIRD 150.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312173752 2018-08-04 17:11:49 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Onondaga US-NY-067 US-NY_2803 13.0 Gerber Top Soil L5863675 H 43.1216289 -75.9618115 2015-04-22 15:00:00 obsr660214 S23005126 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302568160 2022-02-18 10:47:29.953615 27616 species avibase-D77E4B41 American Robin Turdus migratorius N 8 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-11 08:25:00 obsr1062070 S22307213 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319818993 2022-01-20 09:38:40.245267 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-14 08:40:00 obsr1190754 S23453849 Traveling P22 EBIRD 480.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322242169 2018-08-06 22:30:57 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 North Marsh L1471146 P 43.1268851 -78.3203682 2015-05-23 13:44:00 obsr2588479 S23594895 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313442485 2021-04-01 11:47:43.260314 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus N X United States US New York US-NY Oswego US-NY-075 13.0 Derby Hill L3594701 P 43.5230848 -76.2354612 2015-04-25 11:30:00 obsr490751 S23087466 Traveling P22 EBIRD 180.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312030563 2021-03-24 21:12:00.789723 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 4 United States US New York US-NY Schuyler US-NY-097 13.0 Seneca Lake, Lake St. L271672 H 42.53521 -76.88287 2015-04-22 08:03:00 obsr2173269 S22995784 Traveling P22 EBIRD 8.0 0.483 3.0 1 G1231211 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322512292 2021-03-30 19:13:38.458673 483 species avibase-85625D75 Mallard Anas platyrhynchos N 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--East Spit L256061 H 43.3107525 -77.7073288 2015-05-24 12:29:00 obsr1696616 S23610207 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298423855 2021-03-30 19:22:51.561415 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Queens US-NY-081 30.0 Brookville Park L2687495 H 40.6629513 -73.7429361 2015-02-19 10:20:00 obsr1668936 S21975907 Stationary P21 EBIRD 73.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308131775 2017-08-16 17:00:00 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis X United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2146060 H 42.756017 -78.862009 2015-04-06 12:55:00 obsr319738 S22728812 Stationary P21 EBIRD 88.0 18.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301649698 2021-04-01 11:24:19.637193 591 species avibase-1929E1E1 Canvasback Aythya valisineria X United States US New York US-NY Monroe US-NY-055 Ontario Beach Park L2486592 P 43.2590379 -77.6033932 2015-03-08 08:30:00 obsr2240964 S22228607 Stationary P21 EBIRD 45.0 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308145724 2021-03-19 16:14:11.035882 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 5 United States US New York US-NY Cortland US-NY-023 28.0 AviCor11 L3513953 H 42.5527608 -76.0336385 2015-04-06 18:15:00 obsr2173269 S22729823 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314064630 2021-03-19 16:02:45.308962 616 species avibase-25C94A8F Greater Scaup Aythya marila 8 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-29 07:45:00 obsr1830659 S23126250 Rusty Blackbird Spring Migration Blitz P41 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308163237 2017-08-16 16:59:56 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2737378 P 42.7558333 -78.8616667 2015-04-06 09:00:00 obsr436899 S22731088 Stationary P21 EBIRD 330.0 6.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300578873 2021-03-30 19:07:52.958398 26890 species avibase-94A44032 European Starling Sturnus vulgaris 12 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-02 17:20:00 obsr1711339 S22147696 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289346315 2021-03-30 19:39:10.250398 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia N 8 United States US New York US-NY Nassau US-NY-059 30.0 Grant Park, Hewlett L3150689 P 40.6440148 -73.6881351 2015-01-05 12:30:00 obsr676630 S21211882 Traveling P22 EBIRD 60.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315921134 2017-07-04 01:39:26 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Delaware US-NY-025 US-NY_2792 28.0 Riverview Cemetery, Hancock L2757721 H 41.9527828 -75.3034222 2015-05-03 06:47:00 obsr1788273 S23232707 Traveling P22 EBIRD 33.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297579911 2021-03-26 06:52:34.887371 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Niagara US-NY-063 CA-ON_002 13.0 Home L2230565 P 43.1210442 -79.0557404 2015-01-18 10:00:00 obsr2141910 S21900756 Stationary P21 EBIRD 360.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311545348 2021-03-24 20:53:39.352228 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Albany US-NY-001 13.0 My House L1410087 P 42.6319224 -73.8729471 2015-04-19 17:30:00 obsr2837502 S22962985 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299545828 2018-08-04 16:58:14 6364 form avibase-12D5BA6C Iceland Gull Larus glaucoides Iceland Gull (glaucoides/kumlieni) Larus glaucoides glaucoides/kumlieni 1 United States US New York US-NY Kings US-NY-047 30.0 Hendrix Creek L821734 H 40.6482804 -73.8749027 2015-02-25 13:14:00 obsr454647 S22068363 Traveling P22 EBIRD 90.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303861225 2021-03-30 19:29:33.633096 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 Peconic river, Riverhead L2770276 P 40.9156692 -72.695117 2015-03-18 09:40:00 obsr2011512 S22408289 Traveling P22 EBIRD 900.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292006541 2018-08-04 16:54:44 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca X United States US New York US-NY Essex US-NY-031 13.0 Westport Boat Launch L479943 H 44.1887912 -73.4342089 2015-01-19 15:50:00 obsr822321 S21424700 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311864631 2021-04-01 12:29:50.209479 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 1 United States US New York US-NY Fulton US-NY-035 13.0 mom's place L1207546 P 42.9963298 -74.371047 2015-04-19 06:20:00 obsr2590001 S22984652 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316054728 2015-05-05 10:35:51 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 3 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP - West end woods L269422 P 43.3664324 -77.978741 2015-05-03 10:30:00 obsr2966702 S23240780 Traveling P22 EBIRD 40.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315218660 2021-03-19 16:19:20.977326 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-03 07:07:00 obsr502830 S23194895 Traveling P22 EBIRD 149.0 1.207 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291934308 2021-03-26 07:07:10.758746 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Richmond US-NY-085 US-NY_818 30.0 Old Place Creek--Western Ave. L890084 H 40.6293718 -74.1866482 2015-01-19 11:44:00 obsr1893950 S21418786 Traveling P22 EBIRD 4.0 0.322 3.0 1 G1115744 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313887320 2021-04-01 11:30:42.037277 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-27 18:15:00 obsr1433400 S23115382 Traveling P22 EBIRD 75.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316212216 2021-03-30 19:39:10.250398 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Nassau US-NY-059 30.0 Saint Johns Pond Sanctuary L123034 H 40.85417 -73.46333 2015-05-05 12:17:00 obsr1107696 S23250224 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296133026 2021-03-23 17:22:05.708166 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-02-10 08:30:00 obsr1000124 S21771616 Area P23 EBIRD 90.0 2.59 2.0 1 G1143346 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308884811 2015-04-11 13:37:54 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 12 United States US New York US-NY Washington US-NY-115 14.0 339 Lake Nebo Road L3114012 P 43.4526092 -73.5640145 2015-04-10 07:00:00 obsr1948977 S22786012 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301559714 2021-04-01 12:18:57.910168 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis X United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-07 13:00:00 obsr1160328 S22221928 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297831568 2021-11-09 21:23:47.89824 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 2 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-02-16 16:00:00 obsr1199032 S21924639 Stationary P21 EBIRD 60.0 2.0 1 G1150424 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313848380 2018-08-04 17:12:02 4688 species avibase-DEC3D8D0 Ruby-throated Hummingbird Archilochus colubris 6 United States US New York US-NY Tompkins US-NY-109 13.0 CLO - Mike's office window L3574830 P 42.4799072 -76.4516151 2015-04-24 16:45:00 obsr2261732 S23112821 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297259247 2021-03-23 17:35:57.093178 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Rensselaer US-NY-083 13.0 East Poestenkill L3379546 P 42.682929 -73.4960439 2015-02-15 10:30:00 obsr510327 S21872306 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310443190 2018-02-01 15:11:46 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 AviTom49 L3513991 H 42.5112342 -76.6349423 2015-04-16 12:50:00 obsr2260025 S22892410 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289116953 2022-02-17 14:32:23.002448 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 6 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-03 08:35:00 obsr1211277 S21194155 Traveling P22 EBIRD 120.0 1.931 6.0 1 G1095047 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307419392 2018-08-04 17:05:24 32012 species avibase-3A7B1F59 Fox Sparrow Passerella iliaca 2 United States US New York US-NY Monroe US-NY-055 13.0 Slater Creek (Russell Station) L140439 H 43.2691002 -77.6264038 2015-04-04 12:32:00 obsr613775 S22678345 Stationary P21 EBIRD 10.0 2.0 1 G1205031 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301541654 2021-04-01 11:15:31.646886 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 3 United States US New York US-NY Kings US-NY-047 Manhattan Beach Park L852391 H 40.5762169 -73.9441681 2015-03-07 14:45:00 obsr1807494 S22217414 Stationary P21 EBIRD 45.0 3.0 0 G1169205 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313113679 2020-05-13 10:56:14 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Oswego US-NY-075 US-NY_759 US-NY-Pulaski-14-250 Pine Grove Rd L3591957 P 43.568541 -76.205769 2015-04-26 12:11:00 obsr1351949 S23066898 Stationary P21 EBIRD 5.0 1.0 1 G5326517 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318733677 2021-09-29 04:58:21.533581 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 Unknown Sex, Adult (2) United States US New York US-NY New York US-NY-061 Governors Island (open year-round) L555894 H 40.6885372 -74.0189759 2015-05-11 09:30:00 obsr1740835 S23391128 Traveling P22 EBIRD 180.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302856374 2021-04-01 11:47:43.260314 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 40 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-03-09 13:58:00 obsr2700277 S22328861 Traveling P22 EBIRD 46.0 0.483 2.0 1 G1177756 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315756982 2021-08-17 17:04:46.097221 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-04 05:24:00 obsr1410564 S23223676 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314261023 2020-03-19 18:56:44 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Tompkins US-NY-109 13.0 Tareyton Drive yard L1133152 P 42.4712343 -76.4592433 2015-04-30 06:38:00 obsr1655171 S23138556 Stationary P21 EBIRD 3.0 2.0 1 G1244168 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294384498 2015-02-01 14:52:37 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 2 United States US New York US-NY Broome US-NY-007 28.0 Wolfe Park, Town of Chenango L2683280 H 42.159845 -75.901316 2015-02-01 09:15:00 obsr1830659 S21632692 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310094436 2021-03-26 07:30:35.289997 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-13 07:01:00 obsr2683910 S22868734 Traveling P22 EBIRD 14.0 0.483 2.0 1 G1219995 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS386276661 2021-03-26 06:39:43.334073 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-15 14:32:00 obsr1559830 S28585383 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303009742 2021-04-01 10:57:06.520339 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Essex US-NY-031 14.0 Bull Rock Rd L2530437 P 43.8119861 -73.4951019 2015-03-14 08:54:00 obsr2420101 S22341195 Traveling P22 EBIRD 64.0 1.609 2.0 1 G1178700 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308347322 2022-03-05 22:03:50.715584 5976 species avibase-F4829920 American Woodcock Scolopax minor 4 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-07 18:05:00 obsr1544235 S22745383 Traveling P22 EBIRD 60.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289424768 2018-08-04 16:52:48 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 4 Female, Adult (3); Male, Adult (1) United States US New York US-NY Ontario US-NY-069 13.0 Lagoon Park, Canandaigua L732084 H 42.8754244 -77.257694 2015-01-05 11:05:00 obsr528918 S21218028 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308597550 2021-03-30 19:07:52.958398 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-08 14:15:00 obsr2363365 S22764504 Traveling P22 EBIRD 210.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319574865 2021-11-09 17:58:40.313796 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill Park L1153431 H 41.7306613 -73.8805806 2015-05-14 07:00:00 obsr2700041 S23439760 Traveling P22 EBIRD 240.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302080734 2021-04-01 12:32:15.282601 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 8 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--Coast Guard Station L109146 H 40.5888889 -73.5566667 2015-03-09 15:00:00 obsr1291655 S22262696 Traveling P22 EBIRD 75.0 0.402 4.0 1 G1172903 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304002184 2021-03-24 21:12:00.789723 711 spuh avibase-D7BF5045 duck sp. Anatinae sp. 15 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-03-19 08:06:00 obsr1828453 S22419084 Traveling P22 EBIRD 28.0 0.161 3.0 1 G1184980 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311146205 2021-03-23 16:39:03.255227 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-04-19 06:42:00 obsr1958124 S22938402 Traveling P22 EBIRD 6.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322265050 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:15:00 obsr1407710 S23596159 Traveling P22 EBIRD 420.0 8.047 20.0 1 G1285843 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS305979418 2021-11-09 21:35:18.646328 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Ulster US-NY-111 13.0 Great Vly WMA--West Camp Rd. L1445403 H 42.1330671 -73.9396956 2015-03-29 09:25:00 obsr1636520 S22570134 Traveling P22 EBIRD 17.0 0.805 2.0 1 G1196109 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305866056 2021-04-28 05:22:52.046239 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla N X United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-03-28 14:32:00 obsr1189028 S22561612 Traveling P22 EBIRD 130.0 4.828 2.0 1 G1195672 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306611990 2021-03-24 21:06:05.39641 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Onondaga US-NY-067 13.0 Radisson River Park (private) L3498350 H 43.2032416 -76.2825651 2015-03-31 16:34:00 obsr2224244 S22618671 Stationary P21 EBIRD 208.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS319873784 2021-04-01 11:15:31.646886 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-15 09:00:00 obsr1516787 S23456738 Traveling P22 EBIRD 240.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298041535 2021-12-10 08:21:29.396662 622 species avibase-50566E50 Lesser Scaup Aythya affinis 12 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-16 08:30:00 obsr1198912 S21942803 Traveling P22 EBIRD 120.0 3.621 12.0 1 G1149054 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302850193 2019-07-23 17:27:53 483 species avibase-85625D75 Mallard Anas platyrhynchos 15 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach SP L502729 H 41.1286489 -72.2700955 2015-03-11 10:30:00 obsr2008637 S22328421 Traveling P22 EBIRD 150.0 4.828 4.0 1 G1175461 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304919305 2021-03-26 06:52:34.887371 23291 species avibase-58C502EA Barn Swallow Hirundo rustica N 7 United States US New York US-NY Niagara US-NY-063 13.0 Wilson, BY L1169472 P 43.3160608 -78.8281918 2015-03-23 10:45:00 obsr970333 S22488398 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302339272 2021-04-01 11:47:43.260314 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 15 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-03-09 15:00:00 obsr2589278 S22289394 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310218453 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY-New York-117 K Rd L3565738 P 40.792234 -73.923117 2015-04-15 11:48:00 obsr1609974 S22877075 Traveling P22 EBIRD 92.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301086045 2021-03-23 16:52:36.900075 11371 species avibase-75600969 Northern Flicker Colaptes auratus 3 United States US New York US-NY Suffolk US-NY-103 30.0 Hannah's House L2603241 P 41.0490144 -71.9441179 2015-03-05 13:05:00 obsr931072 S22184928 Stationary P21 EBIRD 50.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304415561 2021-03-26 08:13:27.160698 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus 4 United States US New York US-NY Tioga US-NY-107 28.0 Day Farm L3503544 P 42.08163 -76.3083744 2015-03-21 12:45:00 obsr317968 S22451105 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307019760 2021-11-15 03:06:58.889978 26890 species avibase-94A44032 European Starling Sturnus vulgaris 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-02 16:00:00 obsr1064070 S22649115 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290459682 2015-01-19 14:11:57 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Bronx US-NY-005 30.0 Thain Family Forest L3285445 P 40.8652537 -73.8757181 2015-01-10 11:15:00 obsr1254092 S21301255 Traveling P22 EBIRD 120.0 3.219 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315943338 2021-06-25 16:13:37.10193 21754 species avibase-FC0A1D95 Horned Lark Eremophila alpestris X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-04 13:00:00 obsr2448957 S23233919 Traveling P22 EBIRD 420.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292940668 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis N 8 United States US New York US-NY Kings US-NY-047 Gravesend Bay L502531 H 40.5932654 -74.009444 2015-01-24 10:16:00 obsr870166 S21518636 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288127074 2021-04-26 05:03:09.627903 33030 issf avibase-BFE4314B Palm Warbler Setophaga palmarum Palm Warbler (Western) Setophaga palmarum palmarum 15 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-01 09:19:00 obsr2574755 S21111231 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297999450 2021-03-30 19:03:54.667077 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-02-17 12:08:00 obsr2497657 S21939175 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293529493 2021-03-26 06:39:43.334073 486 domestic avibase-07FFC1E5 Mallard (Domestic type) Anas platyrhynchos (Domestic type) 9 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-01-27 08:36:00 obsr756196 S21565318 Stationary P21 EBIRD 38.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320169763 2021-04-01 11:15:31.646886 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 06:28:00 obsr1189028 S23472638 Traveling P22 EBIRD 276.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306899692 2018-08-04 17:05:01 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-02 07:55:00 obsr2321296 S22639690 Traveling P22 EBIRD 77.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304452921 2021-03-24 20:33:47.533911 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Tompkins US-NY-109 13.0 Salt Point Natural Area L353038 H 42.5394116 -76.5496267 2015-03-21 08:55:00 obsr59643 S22446164 Stationary P21 EBIRD 33.0 10.0 1 G1187140 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316302443 2021-04-01 11:30:42.037277 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-05-05 16:30:00 obsr2072398 S23255557 Traveling P22 EBIRD 30.0 1.609 2.0 1 G1254080 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310770329 2018-08-04 17:08:53 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 14 United States US New York US-NY Saratoga US-NY-091 13.0 Saratoga Lake Marine Park L2461422 H 43.0533404 -73.71987 2015-04-12 12:45:00 obsr2893884 S22914878 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310387943 2021-11-15 03:06:58.889978 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-16 06:20:00 obsr1135516 S22888823 Traveling P22 EBIRD 85.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313861553 2021-03-30 12:05:58.533651 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-28 13:33:00 obsr1711339 S23113662 Traveling P22 EBIRD 99.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302881600 2021-03-23 16:30:20.514143 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-13 09:51:00 obsr2945658 S22330773 Stationary P21 EBIRD 231.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304903854 2019-09-10 13:56:02 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula X United States US New York US-NY Cayuga US-NY-011 US-NY_764 13.0 Cayuga Lock and River Rd. L99626 H 42.9468066 -76.7347652 2015-03-23 14:45:00 obsr1721609 S22487065 Traveling P22 EBIRD 16.0 0.402 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316100942 2021-04-01 11:30:42.037277 454 species avibase-15EE0D36 Eurasian Wigeon Mareca penelope 1 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-05 07:00:00 obsr1220115 S23243278 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299012721 2021-04-01 11:47:43.260314 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Oswego US-NY-075 13.0 Phoenix Dam and Lock L479986 H 43.2277528 -76.299845 2015-02-22 10:07:00 obsr1655171 S22025283 Traveling P22 EBIRD 72.0 0.644 3.0 1 G1156960 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318772910 2021-03-24 19:35:34.045988 8075 species avibase-79F3C681 Broad-winged Hawk Buteo platypterus 7 United States US New York US-NY Erie US-NY-029 13.0 UB North Campus L1560817 P 43.0080012 -78.7856713 2015-05-11 07:20:00 obsr2597186 S23393445 Traveling P22 EBIRD 70.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313843263 2018-08-04 17:12:31 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 6 United States US New York US-NY Erie US-NY-029 13.0 Mill Road Park L681452 H 42.8307314 -78.7437226 2015-04-27 09:40:00 obsr1079517 S23112479 Area P23 EBIRD 35.0 40.4686 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323505685 2021-03-19 16:26:51.561076 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Franklin US-NY-033 14.0 Tupper Lake L3679107 P 44.1972821 -74.4903946 2015-05-24 07:00:00 obsr2161273 S23673543 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314643937 2021-11-09 18:35:59.497111 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Dutchess US-NY-027 14.0 Harlem Valley Rail Trail Amenia L2729654 P 41.88319 -73.52058 2015-05-01 13:19:00 obsr1732267 S23162016 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310230340 2021-03-23 17:37:19.520785 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 2 United States US New York US-NY Saratoga US-NY-091 13.0 Nolan Rd., S. Glens Falls (boat launch and trail) L2894086 H 43.2704322 -73.6610529 2015-04-15 08:12:00 obsr1222746 S22877810 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314739502 2021-04-01 11:30:42.037277 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-01 10:30:00 obsr1353449 S23167679 Traveling P22 EBIRD 150.0 4.828 2.0 1 G1246282 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324226229 2021-03-26 06:29:56.44369 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 8 United States US New York US-NY Monroe US-NY-055 13.0 Webster Park L164450 H 43.2575016 -77.4515302 2015-05-23 09:15:00 obsr2966702 S23722326 Traveling P22 EBIRD 120.0 2.253 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299074151 2021-11-15 03:06:58.889978 32953 species avibase-D00EC2C9 Cerulean Warbler Setophaga cerulea 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-22 13:35:00 obsr2310825 S22032617 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311574850 2018-08-04 17:09:06 11371 species avibase-75600969 Northern Flicker Colaptes auratus X United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L526565 P 40.7469969 -73.7436676 2015-04-14 07:34:00 obsr2233270 S22965036 Traveling P22 EBIRD 70.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314058650 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 06:40:00 obsr145923 S23125937 Traveling P22 EBIRD 280.0 6.437 19.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309098381 2021-03-19 16:27:31.421791 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Genesee US-NY-037 13.0 old creek rd L3503172 P 42.9419729 -78.2103825 2015-04-11 10:36:00 obsr393804 S22800765 Traveling P22 EBIRD 54.0 5.15 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302921285 2021-04-01 12:26:53.827486 8542 species avibase-5B23B360 Snowy Owl Bubo scandiacus 1 United States US New York US-NY Albany US-NY-001 13.0 Tibbits Ave., Green Island (village) L2603920 H 42.7484505 -73.6894618 2015-03-13 16:45:00 obsr568671 S22333985 Stationary P21 EBIRD 45.0 2.0 1 G1178124 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297934911 2021-04-01 12:45:19.712958 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 20 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-16 14:05:00 obsr2343626 S21933607 Stationary P21 EBIRD 15.0 2.0 1 G1150491 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309573669 2021-11-09 22:37:56.670395 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Nature Trail, Bashakill WMA L1674957 P 41.5089974 -74.5451458 2015-04-12 08:21:00 obsr1788273 S22831396 Traveling P22 EBIRD 20.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300239810 2021-04-01 12:45:19.712958 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-28 09:30:00 obsr2962893 S22123240 Traveling P22 EBIRD 210.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311930854 2021-03-26 06:39:43.334073 30494 species avibase-240E3390 House Sparrow Passer domesticus 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-21 16:00:00 obsr2277801 S22989052 Historical P62 EBIRD 180.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319722541 2021-11-09 18:22:29.372367 279 species avibase-3E04020B Brant Branta bernicla X United States US New York US-NY Dutchess US-NY-027 13.0 River paddle L1487368 P 42.0469932 -73.927686 2015-05-14 18:00:00 obsr671490 S23448222 Traveling P22 EBIRD 150.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318619548 2021-04-01 10:47:08.851048 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus N 3 United States US New York US-NY Broome US-NY-007 28.0 Parsons Rd. L1497949 H 42.2404567 -75.8516071 2015-05-11 12:00:00 obsr800690 S23384732 Traveling P22 EBIRD 20.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS450247025 2021-03-23 17:00:13.087107 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Mt. Sapsucker L1772923 H 42.4817726 -76.449865 2015-03-25 10:35:00 obsr1655171 S22512168 Stationary P21 EBIRD 18.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294591442 2021-03-26 07:07:10.758746 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 16 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-02-02 14:44:00 obsr1958124 S21649078 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309222794 2021-11-09 21:23:47.89824 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-04-11 10:30:00 obsr1917973 S22809036 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309021086 2021-04-01 12:12:56.033907 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 3 United States US New York US-NY Steuben US-NY-101 28.0 Chemung River at Corning WWTP L619480 H 42.1360014 -77.0319942 2015-04-10 15:13:00 obsr1334267 S22795928 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300184694 2022-02-17 14:32:23.002448 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 6 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-02-28 15:45:00 obsr2796494 S22118460 Traveling P22 EBIRD 80.0 1.609 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299509611 2021-03-26 07:56:20.588749 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus N 1 United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-02-25 09:15:00 obsr1296638 S22065573 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300265829 2022-02-17 14:32:23.002448 242 species avibase-D3A260BC Snow Goose Anser caerulescens 2 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-01 09:15:00 obsr454647 S22125346 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288732788 2021-04-01 11:30:42.037277 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY New York US-NY-061 30.0 Bleecker Playground L3238741 H 40.7363767 -74.0055963 2015-01-03 09:55:00 obsr717528 S21161683 Stationary P21 EBIRD 73.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316553383 2021-03-26 06:39:43.334073 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-06 14:41:00 obsr2677000 S23269713 Traveling P22 EBIRD 87.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302055661 2015-03-09 18:02:33 31530 species avibase-B48335B1 Pine Siskin Spinus pinus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Great Lawn L593577 H 40.7814351 -73.9665967 2015-03-07 15:25:00 obsr1548221 S22260638 Traveling P22 EBIRD 7.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308305756 2021-11-09 22:38:28.159504 26890 species avibase-94A44032 European Starling Sturnus vulgaris 39 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill, Birch Trail L2044729 P 41.5194067 -74.5349622 2015-04-06 17:21:00 obsr1788273 S22742199 Traveling P22 EBIRD 79.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306811689 2019-01-21 11:32:45 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Quogue Village Wetlands Preserve L1636742 H 40.8155192 -72.5728553 2015-04-01 16:00:00 obsr1736113 S22633352 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310325250 2021-03-26 06:17:19.712573 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-04-14 obsr2096529 S22884383 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293015513 2015-01-24 20:00:54 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 3 United States US New York US-NY Greene US-NY-039 28.0 Freehold Backyard L2621415 P 42.3633957 -74.0563059 2015-01-24 09:20:00 obsr1188777 S21524201 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306370619 2021-03-24 21:13:42.099821 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Westchester US-NY-119 30.0 Home L3194169 P 41.1740736 -73.6296415 2015-03-30 16:45:00 obsr2962893 S22599436 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306146451 2021-04-01 11:24:19.637193 8098 issf avibase-BB79E0CE Red-tailed Hawk Buteo jamaicensis Red-tailed Hawk (borealis) Buteo jamaicensis borealis N 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-03-27 07:18:00 obsr334398 S22582444 Stationary P21 EBIRD 53.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317706296 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 05:40:00 obsr2514491 S23335356 Traveling P22 EBIRD 560.0 15.771 6.0 1 G1259504 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318449731 2021-04-01 10:55:39.308231 27616 species avibase-D77E4B41 American Robin Turdus migratorius 6 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-10 14:00:00 obsr1379161 S23375253 Traveling P22 EBIRD 135.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309254000 2021-03-23 17:32:20.03109 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 2 United States US New York US-NY Onondaga US-NY-067 13.0 ISR 90 - between Exits 38 & 39. L1519758 P 43.1159838 -76.2443965 2015-04-11 07:15:00 obsr1000124 S22811088 Incidental P20 EBIRD 0 G1215535 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308722272 2015-04-09 18:32:46 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 8 United States US New York US-NY Richmond US-NY-085 Great Kills Park--Mudflats L681809 H 40.5464104 -74.1182005 2015-04-09 10:58:00 obsr155915 S22774346 Stationary P21 EBIRD 12.0 2.0 1 G1212579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321287883 2021-04-01 10:47:08.851048 11371 species avibase-75600969 Northern Flicker Colaptes auratus 1 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Dorchester Park L798034 H 42.3510912 -75.9715533 2015-05-19 16:27:00 obsr1764243 S23536194 Traveling P22 EBIRD 54.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288511304 2021-11-09 18:18:59.267608 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 3 United States US New York US-NY Dutchess US-NY-027 28.0 Gardner Hollow Road, Beekman, NY L1397112 P 41.620436 -73.655507 2015-01-01 08:40:00 obsr1062217 S21143433 Traveling P22 EBIRD 110.0 8.047 3.0 1 G1091109 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320207806 2021-12-08 07:58:41.562209 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-16 07:50:00 obsr2105033 S23474610 Traveling P22 EBIRD 160.0 2.897 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295456973 2021-03-26 07:56:20.588749 10919 issf avibase-993EB7B4 Hairy Woodpecker Dryobates villosus Hairy Woodpecker (Eastern) Dryobates villosus [villosus Group] 8 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-07 11:30:00 obsr1668936 S21718736 Traveling P22 EBIRD 90.0 0.805 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295879278 2015-02-09 21:18:36 3169 species avibase-0CF12F81 Yellow-billed Cuckoo Coccyzus americanus 1 United States US New York US-NY Fulton US-NY-035 13.0 Backyard Woods L2119422 P 43.0639655 -74.6689224 2015-02-09 14:00:00 obsr1708031 S21751552 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319929225 2021-11-15 03:06:58.889978 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 08:41:00 obsr1548221 S23459708 Traveling P22 EBIRD 73.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310076184 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-14 13:56:00 obsr2846677 S22867447 Traveling P22 EBIRD 87.0 4.023 2.0 1 G1219940 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316752707 2021-03-19 16:19:20.977326 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-06 13:40:00 obsr1379161 S23281120 Traveling P22 EBIRD 270.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292534061 2015-01-21 20:16:59 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--tss office (CLO 193B) L515673 P 42.480385 -76.4511779 2015-01-21 10:17:00 obsr1062070 S21486567 Stationary P21 EBIRD 24.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321883943 2021-11-09 18:36:27.898762 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Dutchess US-NY-027 13.0 Cary Institute of Ecosystem Studies--Lowlands L2748960 H 41.7918567 -73.7492681 2015-05-21 17:30:00 obsr1917973 S23573184 Traveling P22 EBIRD 30.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309388017 2018-08-04 17:08:50 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kanyoo Trail L152120 H 43.1168988 -78.430624 2015-04-12 11:07:00 obsr1603345 S22819441 Traveling P22 EBIRD 95.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315762104 2017-12-21 12:25:41 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Columbia US-NY-021 13.0 Olana State Historic Site L357372 H 42.2183005 -73.8287207 2015-05-04 10:00:00 obsr481595 S23223944 Traveling P22 EBIRD 180.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308096271 2021-03-30 19:13:38.458673 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Buck Pond L139795 H 43.2809982 -77.6672974 2015-04-06 10:44:00 obsr1243175 S22726190 Traveling P22 EBIRD 40.0 0.161 2.0 1 G1208664 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314056435 2021-03-26 07:07:10.758746 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 1 United States US New York US-NY Richmond US-NY-085 30.0 Tottenville High School L884731 P 40.5282185 -74.1924763 2015-04-29 10:50:00 obsr1958124 S23125791 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311431227 2021-04-01 11:30:42.037277 626 slash avibase-83610FC3 Greater/Lesser Scaup Aythya marila/affinis 11 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-19 09:00:00 obsr2319444 S22955926 Traveling P22 EBIRD 180.0 2.414 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315723889 2021-03-26 07:53:57.664705 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Livingston US-NY-051 13.0 Twin Cedars Environmental Area (DEC pond), Avon L800055 H 42.9002384 -77.6689625 2015-05-04 10:00:00 obsr1752243 S23221944 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305441544 2018-08-04 17:02:55 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-03-26 11:00:00 obsr1655171 S22529533 Stationary P21 EBIRD 64.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309455518 2021-04-01 12:30:15.438381 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 4 United States US New York US-NY Herkimer US-NY-043 13.0 Babcock Hill Road pond L2752118 P 42.9313892 -75.1575565 2015-04-12 12:15:00 obsr1680059 S22823328 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135258 2021-03-26 07:56:20.588749 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-25 16:00:00 obsr2218212 S23589160 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291668808 2021-03-26 07:42:06.558742 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Washington US-NY-115 13.0 Rock City Rd L3300877 P 43.3629747 -73.5494484 2015-01-18 09:15:00 obsr1222746 S21398570 Traveling P22 EBIRD 25.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313997025 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-29 07:30:00 obsr2499879 S23122358 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311636135 2021-03-19 16:08:39.161312 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Jamestown Airport L1355501 H 42.1502487 -79.2543287 2015-04-20 16:35:00 obsr1792012 S22969775 Traveling P22 EBIRD 15.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308824405 2021-03-24 20:49:01.185993 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Washington US-NY-115 13.0 Granville L131798 T 43.4078712 -73.259552 2015-04-10 08:15:00 obsr2196530 S22781990 Stationary P21 EBIRD 140.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299552272 2021-04-01 12:32:15.282601 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-25 11:00:00 obsr1693806 S22068901 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306129975 2021-04-01 11:49:53.573686 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 7 United States US New York US-NY Queens US-NY-081 30.0 Kissena Park L491873 H 40.7462409 -73.8080852 2015-03-29 16:03:00 obsr2574755 S22581168 Traveling P22 EBIRD 124.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316157835 2021-03-26 06:29:56.44369 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-05-05 14:53:00 obsr934639 S23246238 Traveling P22 EBIRD 66.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305922441 2021-03-22 08:58:29.008072 30494 species avibase-240E3390 House Sparrow Passer domesticus N 1 United States US New York US-NY New York US-NY-061 30.0 Harlem River, Pier 107 L1378864 H 40.7888424 -73.9361898 2015-03-22 15:00:00 obsr856524 S22565958 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310396056 2019-07-23 17:28:22 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 12 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr12303 S22889398 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316179753 2021-04-01 11:15:31.646886 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 07:30:00 obsr454647 S23247475 Traveling P22 EBIRD 510.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309668473 2015-04-13 09:14:24 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Oswego US-NY-075 14.0 US-NY-Williamstown-137 Sol Davis Rd L3560761 P 43.429016 -75.903778 2015-04-13 08:54:00 obsr1477887 S22837601 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310095236 2018-08-04 17:09:09 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Lab Building Area L1379126 H 42.4796874 -76.4509829 2015-04-14 11:35:00 obsr1655171 S22868791 Stationary P21 EBIRD 7.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298026935 2021-04-01 11:30:42.037277 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 200 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-17 12:00:00 obsr2706811 S21941489 Traveling P22 EBIRD 120.0 1.609 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298480819 2021-03-24 20:16:00.852773 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Richmond US-NY-085 Spanish Camp, Former L2020727 H 40.5244998 -74.1713405 2015-02-19 11:12:00 obsr1893950 S21980820 Traveling P22 EBIRD 10.0 0.322 2.0 1 G1153096 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289083107 2021-03-30 19:29:33.633096 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 60 United States US New York US-NY Suffolk US-NY-103 30.0 Hook Pond L283133 H 40.9461611 -72.1907833 2015-01-04 11:00:00 obsr1460516 S21191469 Stationary P21 EBIRD 20.0 2.0 1 G1096503 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296898421 2021-04-01 11:15:31.646886 591 species avibase-1929E1E1 Canvasback Aythya valisineria 19 United States US New York US-NY Kings US-NY-047 30.0 Sheepshead Bay L835012 H 40.582363 -73.9434105 2015-02-14 15:45:00 obsr2448957 S21840053 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316398263 2021-04-01 10:47:08.851048 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Broome US-NY-007 28.0 from my yard L2624869 P 42.1113056 -75.9594167 2015-05-05 16:07:00 obsr2001289 S23260586 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307863887 2021-11-09 18:19:47.736975 6029 species avibase-D4A73324 Solitary Sandpiper Tringa solitaria 2 United States US New York US-NY Dutchess US-NY-027 13.0 The Fly, pond on Rte 82, Pine Plains L1407827 H 41.9927609 -73.6318195 2015-04-05 14:00:00 obsr1917973 S22709252 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289995070 2021-03-30 19:29:33.633096 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius X United States US New York US-NY Suffolk US-NY-103 30.0 Belmont Lake SP L243047 H 40.7370818 -73.3406175 2015-01-07 14:00:00 obsr2233270 S21263481 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316681647 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-06 11:50:00 obsr717785 S23277151 Traveling P22 EBIRD 240.0 4.828 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310537844 2021-03-26 06:29:56.44369 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 4 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-04-15 07:30:00 obsr2449897 S22899464 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294016858 2021-03-26 07:16:36.956617 30494 species avibase-240E3390 House Sparrow Passer domesticus N 8 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake Neighborhood Yard L2649561 P 42.83175 -73.95388 2015-01-30 11:45:00 obsr2371917 S21603725 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296283790 2021-04-01 12:32:15.282601 6339 species avibase-8535345B Herring Gull Larus argentatus N X United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park /Hendr.Park L365070 P 40.6787341 -73.6936927 2015-02-12 09:00:00 obsr916370 S21783827 Traveling P22 EBIRD 135.0 5.955 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307932606 2015-04-06 08:43:16 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 3 United States US New York US-NY Tompkins US-NY-109 28.0 168 GSR - Yard L332943 P 42.369241 -76.366444 2015-04-06 08:07:00 obsr2074043 S22714566 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315467299 2021-03-26 07:20:31.408164 651 species avibase-4800D6B6 White-winged Scoter Melanitta deglandi 3 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-04-30 07:00:00 obsr1592950 S23207788 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289323503 2021-04-01 12:26:53.827486 30494 species avibase-240E3390 House Sparrow Passer domesticus 23 United States US New York US-NY Albany US-NY-001 13.0 Cohoes L246303 T 42.77428 -73.70016 2015-01-03 06:15:00 obsr2113222 S21210186 Traveling P22 EBIRD 630.0 51.499 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319515124 2021-03-19 16:29:59.503892 27616 species avibase-D77E4B41 American Robin Turdus migratorius 8 United States US New York US-NY Jefferson US-NY-045 13.0 7264 Beadles Point Road L3592907 P 44.184087 -76.2255666 2015-05-14 09:43:00 obsr1302604 S23436456 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289652247 2021-03-26 06:21:54.883933 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 150 United States US New York US-NY Kings US-NY-047 Bush Terminal Piers Park L3151880 H 40.6541609 -74.0204451 2015-01-07 10:51:00 obsr2152799 S21236450 Traveling P22 EBIRD 35.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314187968 2015-04-29 20:54:00 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Tompkins US-NY-109 13.0 NY:TOM:Ithaca/Lansing: Sapsucker Woods L3600743 P 42.4787657 -76.4536965 2015-04-25 12:06:00 obsr2760150 S23133856 Traveling P22 EBIRD 160.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322527846 2021-03-24 19:48:44.880783 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-24 08:19:00 obsr745890 S23611065 Traveling P22 EBIRD 180.0 1.609 4.0 1 G1287746 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308887354 2021-04-01 12:14:19.266649 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 90 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point County Park L835192 H 41.1597479 -72.2347641 2015-04-10 10:20:00 obsr2792017 S22786223 Stationary P21 EBIRD 15.0 2.0 1 G1213460 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313761067 2021-03-26 06:39:43.334073 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-28 08:30:00 obsr800463 S23107270 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289414098 2021-03-23 16:52:36.900075 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Suffolk US-NY-103 US-NY_758 30.0 EPCAL (Grumman) L621108 H 40.924214 -72.7969551 2015-01-05 16:15:00 obsr547602 S21217250 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304594929 2015-04-30 20:06:07 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum: West and Pleasant Creeks (restricted access) L1878498 P 44.0338243 -75.8343879 2015-03-03 12:45:00 obsr1558090 S22464353 Traveling P22 EBIRD 30.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299096032 2018-08-04 16:58:04 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Seneca US-NY-099 13.0 Varick--Cayuga Lake from Town Line Rd. L2716130 P 42.8092 -76.75607 2015-02-22 13:43:00 obsr2001485 S22034215 Traveling P22 EBIRD 16.0 2.414 3.0 1 G1156982 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310209490 2021-04-01 11:23:28.992084 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Lewis US-NY-049 13.0 Location H L4611970 P 43.940282 -75.401446 2015-04-15 07:53:00 obsr417887 S22876541 Traveling P22 EBIRD 60.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311861654 2021-11-09 21:30:58.952293 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Ulster US-NY-111 13.0 Esopus Bend Nature Preserve L1422709 H 42.069482 -73.9586939 2015-04-21 13:09:00 obsr118701 S22984502 Traveling P22 EBIRD 100.0 3.862 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318619696 2015-05-11 14:00:12 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Barker Hill Rd. Bridge L450623 H 42.2985053 -75.9085891 2015-05-11 10:55:00 obsr800690 S23384745 Stationary P21 EBIRD 1.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314069514 2021-04-01 11:30:42.037277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 07:30:00 obsr369788 S23126640 Traveling P22 EBIRD 270.0 4.828 17.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319447755 2021-11-15 03:06:58.889978 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-13 17:15:00 obsr2277801 S23432288 Historical P62 EBIRD 135.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308042835 2021-04-01 11:15:31.646886 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-06 12:08:00 obsr1152226 S22722135 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288260997 2021-04-01 12:18:57.910168 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 78 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Stewart Park and Renwick Woods L1131448 H 42.4589608 -76.5055355 2015-01-01 07:00:00 obsr620377 S21122718 Traveling P22 EBIRD 300.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292758379 2021-04-01 11:54:40.172593 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Richmond US-NY-085 30.0 Wagner College L290964 H 40.6147714 -74.0951859 2015-01-22 09:00:00 obsr666331 S21504173 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313240261 2021-03-23 16:21:52.613913 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 1 United States US New York US-NY Ontario US-NY-069 13.0 Chapin L972241 T 42.91866 -77.2347 2015-04-26 13:28:00 obsr606693 S23074261 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291504345 2022-01-11 08:10:21.3534 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Yard Birds L1961108 P 40.9286562 -73.1061172 2015-01-17 07:15:00 obsr1848026 S21385767 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309169619 2021-11-09 19:02:27.638861 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-04-11 14:45:00 obsr2241630 S22805435 Traveling P22 EBIRD 80.0 2.012 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302309277 2021-03-26 06:55:00.227271 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Ontario US-NY-069 13.0 Finger Lakes Community College (Ontario Co.) L661673 H 42.8692335 -77.2442722 2015-03-10 13:39:00 obsr1243175 S22284868 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311162791 2021-11-09 21:50:48.44865 26278 species avibase-A381417F House Wren Troglodytes aedon 6 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-19 07:00:00 obsr1588136 S22939498 Traveling P22 EBIRD 75.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323823966 2021-04-01 12:32:15.282601 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Nickerson Beach L508149 H 40.5871823 -73.6024 2015-05-29 12:25:00 obsr916370 S23696545 Traveling P22 EBIRD 75.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301810765 2018-08-04 16:59:05 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-08 14:30:00 obsr2430746 S22242277 Stationary P21 EBIRD 45.0 11.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313264607 2015-04-26 18:46:11 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Oswego US-NY-075 14.0 Amboy Environmental Education Center beaver pond L1020546 P 43.4153239 -75.9107369 2015-04-26 17:35:00 obsr1477887 S23075736 Traveling P22 EBIRD 62.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305969561 2021-03-23 17:32:20.03109 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 10 United States US New York US-NY Onondaga US-NY-067 13.0 Conners Road at Dead Creek L2751604 P 43.126342 -76.377239 2015-03-29 08:30:00 obsr2172593 S22569430 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293674147 2021-03-24 20:33:47.533911 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Tompkins US-NY-109 13.0 SSW - Wilson Trail N. & W. Trail intersection L250375 P 42.4790392 -76.4547486 2015-01-28 08:02:00 obsr2307843 S21576619 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315434363 2021-04-01 10:49:39.496318 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 1 United States US New York US-NY Cayuga US-NY-011 13.0 Sterling Nature Center L200644 H 43.379538 -76.6576195 2015-05-03 09:30:00 obsr643238 S23206010 Traveling P22 EBIRD 160.0 2.575 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS361322623 2018-08-04 17:08:20 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 1 United States US New York US-NY Saratoga US-NY-091 13.0 Saratoga Lake L457113 H 43.0222196 -73.7374878 2015-04-10 10:00:00 obsr1620448 S26472879 Traveling P22 EBIRD 140.0 12.875 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313178074 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-26 12:37:00 obsr1732267 S23070651 Traveling P22 EBIRD 29.0 0.805 2.0 1 G1239170 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300682081 2021-03-23 17:35:23.829899 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 2 United States US New York US-NY Otsego US-NY-077 28.0 207 Stoller Hill Rd L3359197 P 42.7034192 -75.0299799 2015-03-03 07:55:00 obsr131845 S22155121 Stationary P21 EBIRD 490.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319679738 2015-05-14 20:25:49 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 19:48:00 obsr2105033 S23445761 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296057442 2021-04-01 11:30:42.037277 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 21 United States US New York US-NY New York US-NY-061 Randalls Island--NE fields and shoreline L1785381 H 40.7943072 -73.9138235 2015-02-07 12:30:00 obsr1548221 S21765729 Traveling P22 EBIRD 160.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296739853 2015-02-14 13:14:52 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 4 United States US New York US-NY Tompkins US-NY-109 28.0 Ellis Hollow L2636541 P 42.4426235 -76.4137745 2015-02-14 12:00:00 obsr2681066 S21826031 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306793835 2021-03-23 16:52:36.900075 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 4 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-01 14:00:00 obsr547602 S22632031 Traveling P22 EBIRD 120.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310457784 2021-04-01 11:15:31.646886 11371 species avibase-75600969 Northern Flicker Colaptes auratus 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-16 07:45:00 obsr827632 S22893453 Traveling P22 EBIRD 180.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312906975 2015-04-25 18:04:46 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 2 United States US New York US-NY Chenango US-NY-017 28.0 Coventry State Forest - east of North Rd L3590078 P 42.3430147 -75.6308913 2015-04-25 09:03:00 obsr1303581 S23054371 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316470874 2021-03-30 19:07:52.958398 681 species avibase-407E2CA8 Common Merganser Mergus merganser 12 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-06 08:25:00 obsr1516787 S23264774 Traveling P22 EBIRD 140.0 3.058 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323679999 2021-04-01 11:15:31.646886 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-28 14:20:00 obsr2555972 S23685296 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290387726 2021-04-01 11:15:31.646886 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N X United States US New York US-NY Kings US-NY-047 Veterans Memorial Pier L860171 H 40.6391393 -74.0369531 2015-01-11 11:15:00 obsr1659461 S21295563 Stationary P21 EBIRD 5.0 2.0 1 G1105021 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290209184 2015-01-10 17:36:41 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-01-10 15:13:00 obsr1958124 S21280900 Traveling P22 EBIRD 4.0 0.483 2.0 1 G1103705 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307001948 2021-11-09 19:01:40.008558 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary L478066 H 41.9212946 -73.672754 2015-04-02 13:05:00 obsr798742 S22647857 Traveling P22 EBIRD 100.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303693527 2015-03-17 13:36:27 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Westchester US-NY-119 30.0 Katonah, 10 Meadow Lane L3491451 P 41.25894 -73.69483 2015-03-17 13:22:00 obsr265800 S22395130 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314107628 2018-08-04 17:12:40 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias X United States US New York US-NY Westchester US-NY-119 30.0 Rockefeller SP Preserve--Eagle Hill area L2724294 H 41.0998684 -73.851099 2015-04-29 07:15:00 obsr1742994 S23128938 Traveling P22 EBIRD 255.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310340152 2019-07-23 17:28:19 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 4 United States US New York US-NY Nassau US-NY-059 Brooklyn Pelagic Trip H L3559886 P 40.555633 -73.55995 2015-04-11 16:00:00 obsr598381 S22885397 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221324 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307482565 2015-04-15 08:36:59 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-04-04 15:20:00 obsr2172593 S22682545 Traveling P22 EBIRD 50.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304366643 2021-03-26 06:29:56.44369 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-03-20 10:28:00 obsr2595828 S22447565 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307687504 2021-03-24 20:33:47.533911 7896 species avibase-3B024163 Sharp-shinned Hawk Accipiter striatus X United States US New York US-NY Tompkins US-NY-109 13.0 Dryden, Cornell University L3540206 P 42.47968 -76.44974 2015-04-05 10:03:00 obsr2632928 S22696735 Traveling P22 EBIRD 108.0 1.207 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310376311 2021-03-24 21:12:31.336509 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-04-16 06:39:00 obsr1839967 S22887984 Traveling P22 EBIRD 66.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303897565 2015-03-18 16:29:40 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Lewis US-NY-049 13.0 US-NY-Lowville-8691 NY-812 L3458804 P 43.859206 -75.396103 2015-03-18 14:29:00 obsr417887 S22411248 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290694068 2021-04-01 12:26:53.827486 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 40 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-12 08:40:00 obsr2512689 S21320247 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295684324 2021-03-26 08:14:57.071052 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-02-08 08:30:00 obsr2918150 S21736447 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317020600 2021-11-15 03:06:58.889978 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-07 16:00:00 obsr2277801 S23296207 Historical P62 EBIRD 245.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321926322 2021-04-01 12:28:44.297881 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Chenango US-NY-017 28.0 Stiles Rd thicket L3662259 P 42.3341303 -75.6602481 2015-05-22 06:48:00 obsr1303581 S23575712 Traveling P22 EBIRD 147.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316079595 2021-11-09 18:42:19.628792 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax X United States US New York US-NY Dutchess US-NY-027 13.0 Buttercup Farm Audubon Sanctuary--East L3159081 H 41.9108367 -73.6677074 2015-05-05 08:30:00 obsr1917973 S23242165 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309065145 2021-05-10 13:22:42.125601 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Tompkins Airport--DIL Woods & Mohawk Rd. L99395 H 42.4959541 -76.4513443 2015-04-11 08:58:00 obsr2307843 S22798751 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297803615 2021-04-01 12:32:15.282601 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Nassau US-NY-059 30.0 west hempstead L1040566 P 40.6900103 -73.6729431 2015-02-16 13:00:00 obsr1494607 S21921975 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312545564 2021-04-01 11:15:31.646886 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 07:10:00 obsr599682 S23030942 Traveling P22 EBIRD 200.0 3.219 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307502876 2021-04-01 12:18:57.910168 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 NY:TOM:Ithaca: home to Renwick Sanc, Newman Golf, Jetty Wds, Stewart Pk L2136757 P 42.4588006 -76.5057528 2015-04-04 10:17:00 obsr2760150 S22683885 Traveling P22 EBIRD 241.0 7.87 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324168717 2018-08-06 22:31:32 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-31 08:27:00 obsr1472872 S23718805 Traveling P22 EBIRD 73.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310941848 2015-04-18 14:36:50 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY Franklin US-NY-033 14.0 Lake Colby Railroad Tracks L1509081 H 44.3364468 -74.1524597 2015-04-18 09:45:00 obsr2188170 S22925783 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315964234 2021-11-15 03:06:58.889978 337 species avibase-694C127A Mute Swan Cygnus olor 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-04 14:00:00 obsr516108 S23235177 Traveling P22 EBIRD 330.0 2.092 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306191840 2015-03-29 22:13:39 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis 7 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-03-29 12:45:00 obsr2716320 S22585950 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311361401 2015-04-19 18:19:59 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 1 United States US New York US-NY Onondaga US-NY-067 US-NY_2803 13.0 Cicero Swamp WMA L270911 H 43.1333977 -75.9873074 2015-04-19 16:20:00 obsr660214 S22951513 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308214793 2021-04-01 12:31:09.823741 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Livingston US-NY-051 13.0 County Route 71 L730552 P 42.7069197 -77.6757324 2015-04-07 08:00:00 obsr72341 S22735502 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292852667 2018-08-04 16:54:03 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Steuben US-NY-101 28.0 Park Drive Bridge, City of Hornell L3312915 H 42.3127252 -77.6522892 2015-01-19 13:47:00 obsr1587816 S21511631 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310041345 2021-03-19 16:19:20.977326 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 5 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-14 15:00:00 obsr783450 S22864912 Traveling P22 EBIRD 90.0 1.609 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299818803 2021-03-30 06:01:28.020715 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Richmond US-NY-085 30.0 SI-Moravian Cemetery L1963857 P 40.5800346 -74.1139251 2015-02-26 11:10:00 obsr1032565 S22089543 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312585957 2021-11-09 19:51:09.255083 6026 species avibase-0D88C072 Spotted Sandpiper Actitis macularius 3 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill River NWR--Liberty Marsh (NY) L295658 H 41.2833266 -74.5262526 2015-03-29 08:30:00 obsr921269 S23033839 Traveling P22 EBIRD 270.0 6.437 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314306554 2020-07-20 09:16:51 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Three Rivers WMA (general area) L340691 H 43.2072726 -76.3241404 2015-04-30 06:59:00 obsr2224244 S23141399 Traveling P22 EBIRD 151.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316552357 2021-04-01 12:30:15.438381 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Herkimer US-NY-043 13.0 Miner Road L680476 P 43.0955304 -74.8160362 2015-05-06 12:40:00 obsr316199 S23269647 Traveling P22 EBIRD 19.0 2.575 3.0 1 G1254752 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294483565 2021-03-26 08:14:57.071052 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 7 United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-02-01 09:00:00 obsr2918150 S21640475 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290830659 2021-03-24 20:33:47.533911 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail North L1246441 H 42.4804057 -76.4532351 2015-01-13 12:27:00 obsr2001485 S21330786 Traveling P22 EBIRD 24.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308674015 2021-03-23 17:15:00.080143 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-04-09 13:45:00 obsr2914424 S22770374 Stationary P21 EBIRD 53.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323392314 2021-11-09 18:34:27.642126 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Dutchess US-NY-027 13.0 Overlook Park, Poughkeepsie L2603653 H 41.6890135 -73.8643026 2015-05-17 08:00:00 obsr2786327 S23665593 Traveling P22 EBIRD 120.0 1.207 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306843155 2022-02-17 14:32:23.002448 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-04-01 13:28:00 obsr1152226 S22635712 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292918480 2021-04-01 11:30:42.037277 5956 species avibase-F35821AA Semipalmated Sandpiper Calidris pusilla 4 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-01-24 07:25:00 obsr259298 S21517023 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301812990 2019-07-23 17:27:46 6267 species avibase-0337440E Bonaparte's Gull Chroicocephalus philadelphia 60 United States US New York US-NY Tompkins US-NY-109 13.0 Ithaca Yacht Club L99697 H 42.4961729 -76.5383487 2015-03-08 16:57:00 obsr2871406 S22242466 Traveling P22 EBIRD 40.0 0.08 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295434861 2021-03-26 06:21:54.883933 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 25 United States US New York US-NY Kings US-NY-047 30.0 Fresh Creek Park L582117 H 40.6437706 -73.8831639 2015-02-07 08:20:00 obsr1189028 S21716665 Stationary P21 EBIRD 14.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298954976 2020-04-10 18:36:08 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 3 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-22 11:30:00 obsr2172593 S22020638 Traveling P22 EBIRD 42.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315495706 2021-03-26 06:17:19.712573 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-05-03 obsr2096529 S23209443 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321662703 2018-08-06 22:30:26 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Essex US-NY-031 14.0 Trout brook bridge L2930266 P 43.8108712 -73.4924841 2015-05-17 15:52:00 obsr265018 S23559096 Stationary P21 EBIRD 32.0 5.0 1 G1275348 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324150261 2021-03-23 17:20:04.546757 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Red House Lake L246474 H 42.1033333 -78.7458333 2015-05-27 13:20:00 obsr736608 S23717670 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310094088 2021-04-01 12:18:57.910168 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus 1 United States US New York US-NY Tompkins US-NY-109 13.0 Newman Municipal Golf Course L2158758 H 42.4561318 -76.5052153 2015-04-12 13:48:00 obsr2683910 S22868699 Traveling P22 EBIRD 5.0 0.322 2.0 1 G1219989 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317573333 2021-03-24 19:48:44.880783 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Monroe US-NY-055 13.0 Cobbs Hill Park L140445 H 43.1404991 -77.5682983 2015-05-09 07:53:00 obsr2817239 S23328310 Traveling P22 EBIRD 102.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306868134 2021-03-26 08:14:57.071052 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus N 3 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-03-31 08:00:00 obsr258431 S22637393 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309852578 2018-01-07 20:13:45 337 species avibase-694C127A Mute Swan Cygnus olor 5 United States US New York US-NY Essex US-NY-031 14.0 Home L2456392 P 43.8203818 -73.4929803 2015-04-12 13:23:00 obsr2693145 S22851456 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317188470 2018-08-04 17:05:13 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 3 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Mays Point Pool and road L99392 H 42.9946205 -76.7637599 2015-04-03 11:44:00 obsr533086 S23305329 International Shorebird Survey (ISS) P74 EBIRD 45.0 1.609 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298259572 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-02-18 09:06:00 obsr2756208 S21961359 Traveling P22 EBIRD 297.0 0.322 4.0 1 G1151981 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296359757 2021-03-26 06:11:29.8335 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Cayuga US-NY-011 13.0 Long Point SP (Cayuga Lake) L351196 H 42.7154101 -76.7102551 2015-02-11 16:02:00 obsr528918 S21791366 Traveling P22 EBIRD 20.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319599176 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-13 10:00:00 obsr2387618 S23441129 Traveling P22 EBIRD 240.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322800280 2015-05-25 12:19:45 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 1 United States US New York US-NY Albany US-NY-001 13.0 Ravena, NY L2958254 P 42.4717804 -73.8126326 2015-05-25 11:00:00 obsr1181085 S23627263 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307466379 2021-04-01 11:30:42.037277 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY New York US-NY-061 30.0 Hudson River Greenway--Greenwich Village (W Houston-14th St.) L1166504 H 40.7351612 -74.0106225 2015-04-02 13:15:00 obsr1041497 S22681439 Traveling P22 EBIRD 40.0 0.805 12.0 1 G1201660 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310649259 2021-04-01 11:49:53.573686 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Queens US-NY-081 30.0 Mets-Willets Point, Flushing Meadows Corona Park Road L2367786 P 40.7515 -73.84371 2015-04-17 11:30:00 obsr1734972 S22906847 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293233970 2021-11-09 17:50:20.071794 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 3 United States US New York US-NY Dutchess US-NY-027 13.0 Millbrook School Road, Millbrook, NY L1098111 P 41.8453963 -73.6169815 2015-01-25 08:00:00 obsr1062217 S21541592 Traveling P22 EBIRD 60.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307879622 2021-04-01 11:49:53.573686 6339 species avibase-8535345B Herring Gull Larus argentatus N X United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-04-05 08:00:00 obsr186539 S22710404 Traveling P22 EBIRD 180.0 2.575 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317013000 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N X United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-07 14:15:00 obsr150415 S23295765 Traveling P22 EBIRD 150.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323639959 2021-04-01 11:15:31.646886 7429 species avibase-1327AC55 Osprey Pandion haliaetus 4 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-28 11:00:00 obsr662396 S23682721 Traveling P22 EBIRD 120.0 1.609 2.0 1 G1294229 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290202960 2021-04-01 11:54:40.172593 303 species avibase-B59E1863 Canada Goose Branta canadensis N 15 United States US New York US-NY Richmond US-NY-085 30.0 US-NY-213 Lincoln Ave L3281968 P 40.577785 -74.105762 2015-01-10 11:53:00 obsr1958124 S21280322 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307403962 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 6 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-04 07:35:00 obsr1189028 S22677269 Traveling P22 EBIRD 167.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322074173 2018-08-06 22:30:20 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Columbia US-NY-021 14.0 Steepletop, Edna St. Vincent Millay's home L3664883 H 42.3142817 -73.452487 2015-05-17 08:00:00 obsr2978565 S23585225 Traveling P22 EBIRD 180.0 2.414 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301367983 2018-08-04 16:58:55 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 2 United States US New York US-NY Onondaga US-NY-067 28.0 Tully Lake--Hoffman Rd. L3460956 P 42.789372 -76.134697 2015-03-07 11:30:00 obsr1696616 S22207820 Traveling P22 EBIRD 4.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321211393 2021-11-09 18:47:30.08395 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 2 United States US New York US-NY Dutchess US-NY-027 13.0 Tower Hill Rd Millbrook L3657029 P 41.804302 -73.630184 2015-05-19 11:08:00 obsr1732267 S23531690 Traveling P22 EBIRD 60.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320493942 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-17 07:00:00 obsr1731572 S23489551 Traveling P22 EBIRD 420.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298198167 2021-03-26 07:20:31.408164 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Suffolk US-NY-103 30.0 Mastic, Home L2618869 P 40.7887315 -72.8391784 2015-02-05 07:15:00 obsr1592950 S21955920 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291942689 2018-08-04 16:54:03 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Essex US-NY-031 13.0 Noblewood Park L191517 H 44.3548774 -73.356574 2015-01-19 13:56:00 obsr822321 S21419484 Traveling P22 EBIRD 70.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320639157 2021-04-01 12:32:15.282601 6408 spuh avibase-E8FAD0BB Larus sp. Larus sp. N 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Cow Meadow Park and Preserve L464792 H 40.6327036 -73.5697146 2015-05-17 14:30:00 obsr2823378 S23497150 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316053766 2021-04-01 12:26:53.827486 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens N 1 United States US New York US-NY Albany US-NY-001 13.0 Rte 155 and Normanskill L3110282 P 42.6761668 -73.9061529 2015-05-05 08:40:00 obsr634484 S23240728 Traveling P22 EBIRD 70.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310236870 2021-11-15 03:06:58.889978 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-15 09:15:00 obsr1481512 S22878257 Traveling P22 EBIRD 210.0 4.023 7.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293894938 2021-03-26 06:21:54.883933 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-27 15:00:00 obsr2363365 S21594353 Traveling P22 EBIRD 90.0 0.322 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317968610 2021-03-24 19:48:44.880783 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-05-09 18:40:00 obsr2595828 S23349685 Traveling P22 EBIRD 100.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309617965 2021-12-24 11:02:14.483178 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Island Cottage Woods L140435 H 43.2752261 -77.6558854 2015-04-12 14:58:00 obsr991026 S22834220 Traveling P22 EBIRD 61.0 1.609 3.0 1 G1217477 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316007436 2021-04-01 11:30:42.037277 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-02 07:00:00 obsr1160328 S23238057 Stationary P21 EBIRD 270.0 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308791646 2018-08-04 17:06:20 8773 species avibase-7AA076EF Barred Owl Strix varia 1 United States US New York US-NY Nassau US-NY-059 30.0 Hempstead Lake SP--south end L476032 H 40.6724362 -73.6499405 2015-04-07 08:30:00 obsr1160328 S22779532 Area P23 EBIRD 90.0 30.3514 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293868863 2021-11-15 03:06:58.889978 6339 species avibase-8535345B Herring Gull Larus argentatus N 15 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-29 14:05:00 obsr2906952 S21592416 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299615499 2021-03-30 19:43:32.881136 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 40 United States US New York US-NY Westchester US-NY-119 30.0 Croton RR Station L487011 H 41.1846423 -73.8795664 2015-02-25 11:30:00 obsr1832377 S22074059 Stationary P21 EBIRD 25.0 2.0 1 G1159867 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303889326 2021-04-01 11:54:40.172593 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-18 15:35:00 obsr1958124 S22410626 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307917660 2021-03-30 19:13:38.458673 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 14 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay WMA--North Marina L2100373 P 43.3179 -77.72282 2015-04-04 09:22:00 obsr745890 S22713556 Stationary P21 EBIRD 60.0 4.0 1 G1207219 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301638525 2021-03-26 06:21:54.883933 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-08 10:00:00 obsr1605975 S22227772 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308704208 2021-03-30 19:29:33.633096 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 6 United States US New York US-NY Suffolk US-NY-103 30.0 Avalon Gardens and East Farm Preserve L525770 H 40.9118667 -73.1454921 2015-04-09 13:38:00 obsr1848026 S22772931 Traveling P22 EBIRD 102.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308161162 2021-03-24 20:58:04.794277 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 12 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-03 07:05:00 obsr316199 S22730948 Area P23 EBIRD 65.0 2.59 2.0 1 G1209073 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315516507 2021-03-30 19:13:38.458673 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Burger Park L390594 H 43.3099074 -77.7326596 2015-05-02 10:15:00 obsr1534851 S23210564 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871131 2021-03-26 07:56:20.588749 337 species avibase-694C127A Mute Swan Cygnus olor 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-14 16:00:00 obsr2218212 S21672031 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311352100 2018-08-04 17:10:26 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Saratoga US-NY-091 13.0 Ballston, Ballston Creek Preserve L2823924 P 42.96697 -73.83397 2015-04-19 06:00:00 obsr777630 S22950958 Rusty Blackbird Spring Migration Blitz P41 EBIRD 150.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302933086 2018-08-04 16:59:53 32843 species avibase-CEA5B6AA Ovenbird Seiurus aurocapilla 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-03-13 17:00:00 obsr544268 S22335143 Traveling P22 EBIRD 75.0 2.012 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290623152 2021-03-26 07:30:35.289997 7346 species avibase-D4540F88 Glossy Ibis Plegadis falcinellus N 2 United States US New York US-NY Tompkins US-NY-109 13.0 Haber Ithaca Apartment L2127426 P 42.4862687 -76.4751273 2015-01-12 07:30:00 obsr869999 S21314012 Stationary P21 EBIRD 30.0 1.0 1 G1231826 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304002365 2021-04-01 12:41:58.738824 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-03-19 08:06:00 obsr2871406 S22419101 Traveling P22 EBIRD 28.0 0.161 3.0 1 G1184980 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296283775 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream State Park /Hendr.Park L365070 P 40.6787341 -73.6936927 2015-02-12 09:00:00 obsr916370 S21783827 Traveling P22 EBIRD 135.0 5.955 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306776925 2021-03-26 07:42:06.558742 6339 species avibase-8535345B Herring Gull Larus argentatus 2 United States US New York US-NY Washington US-NY-115 13.0 De Groot Rd., Ft. Edward L2480252 H 43.2146148 -73.5800314 2015-04-01 10:43:00 obsr1222746 S22630797 Traveling P22 EBIRD 12.0 0.531 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322264999 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-23 07:15:00 obsr1407710 S23596159 Traveling P22 EBIRD 420.0 8.047 20.0 1 G1285843 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292893962 2021-04-01 12:14:19.266649 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY Suffolk US-NY-103 30.0 Reeves Ave. Buffalo Farm L586720 H 40.9519565 -72.6920271 2015-01-24 10:54:00 obsr2485753 S21515001 Stationary P21 EBIRD 22.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291625764 2018-08-04 16:53:56 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 120 United States US New York US-NY Saratoga US-NY-091 13.0 Blockhouse Park L495270 H 42.937331 -73.6567533 2015-01-18 10:14:00 obsr2321296 S21395258 Stationary P21 EBIRD 19.0 8.0 1 G1114003 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298592143 2021-12-28 15:50:27.785498 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Ontario US-NY-069 13.0 ***US-NY-ONT Manchester--889 LaRue Rd. - PRIVATE, 1984-2022 (3176D) [Clifton Springs_NE] L282325 P 42.99468 -77.15822 2015-02-20 12:37:00 obsr606693 S21990167 Stationary P21 EBIRD 6.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291651610 2021-04-01 11:47:43.260314 16800 species avibase-082D833C Eastern Kingbird Tyrannus tyrannus N 96 United States US New York US-NY Oswego US-NY-075 US-NY_759 13.0 US-NY-Oswego County-Winter Waterfowl Survey - L2570693 P 43.67099 -76.186785 2015-01-18 07:25:00 obsr2945658 S21397436 Traveling P22 EBIRD 330.0 48.279 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308243221 2021-03-30 19:07:52.958398 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-07 10:25:00 obsr2906952 S22737791 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294804787 2021-03-26 06:29:56.44369 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-02-03 07:43:00 obsr2595828 S21666572 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314069353 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-29 08:00:00 obsr454647 S23126635 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306344327 2018-08-04 17:02:28 661 species avibase-AF0C7BDE Long-tailed Duck Clangula hyemalis 1 United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-03-22 14:30:00 obsr2497229 S22597399 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289445948 2015-01-06 08:43:35 26278 species avibase-A381417F House Wren Troglodytes aedon 3 United States US New York US-NY Oneida US-NY-065 14.0 * LaCelle Yard L1056187 P 43.3085002 -75.7748884 2015-01-06 08:10:00 obsr666964 S21219546 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304517166 2021-03-24 19:20:44.053843 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Rt.12, Rusty's L3504740 P 42.188147 -75.8833945 2015-03-19 09:00:00 obsr998593 S22458657 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312930522 2021-03-23 17:15:00.080143 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 7 United States US New York US-NY Wayne US-NY-117 13.0 Beechwood SP, Sodus L712218 H 43.2673188 -77.0297813 2015-04-25 08:07:00 obsr2827982 S23055769 Traveling P22 EBIRD 135.0 1.931 13.0 1 G1235657 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313802298 2019-07-23 17:28:29 303 species avibase-B59E1863 Canada Goose Branta canadensis 47 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-04-28 08:25:00 obsr2966702 S23109891 Stationary P21 EBIRD 90.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296834314 2021-11-09 22:04:47.967972 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 5 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-11 10:19:00 obsr440420 S21834367 Stationary P21 EBIRD 86.0 3.0 1 G1144505 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312196109 2021-03-26 06:29:56.44369 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 4 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-04-22 07:30:00 obsr2449897 S23006700 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317241073 2021-03-19 16:08:39.161312 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Dunkirk Airport (DKK) L2036462 H 42.4926018 -79.2730884 2015-05-08 15:46:00 obsr2497657 S23308263 Traveling P22 EBIRD 48.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310745193 2021-01-10 16:39:54.759182 18495 species avibase-95DB0943 Blue-headed Vireo Vireo solitarius 2 United States US New York US-NY Warren US-NY-113 13.0 Pine View Cemetery, Queensbury L2128813 H 43.3335429 -73.6702341 2015-04-17 12:34:00 obsr1222746 S22913281 Traveling P22 EBIRD 20.0 1.448 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293519208 2021-03-26 07:20:31.408164 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 1 United States US New York US-NY Suffolk US-NY-103 30.0 Home L1977506 P 40.7250472 -73.2101333 2015-01-25 11:00:00 obsr391865 S21564409 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296143634 2021-11-09 19:40:50.466649 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 6 United States US New York US-NY Orange US-NY-071 28.0 USFWS_824 Wallkill NWR-Liberty Marsh L1603848 P 41.2828143 -74.5258444 2015-02-11 12:10:00 obsr238853 S21772434 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320694170 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 3 Male, Adult (3) United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake L1544161 H 40.7765867 -73.9722392 2015-05-17 13:30:00 obsr1555046 S23499930 Traveling P22 EBIRD 75.0 1.609 2.0 1 G1275793 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290873200 2018-08-04 16:53:17 662 species avibase-FB738385 Bufflehead Bucephala albeola 3 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP--Golf Course L507417 H 40.6235296 -73.2860184 2015-01-13 14:00:00 obsr247620 S21334620 Traveling P22 EBIRD 30.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311230688 2021-04-01 12:41:58.738824 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 4 United States US New York US-NY Schuyler US-NY-097 13.0 US-NY-Montour Falls-390–498 S Catherine St L3575262 P 42.338215 -76.836951 2015-04-19 12:35:00 obsr2173269 S22943587 Incidental P20 EBIRD 2.0 0 G1226339 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309752698 2015-04-13 14:31:53 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-13 10:30:00 obsr319738 S22844679 Traveling P22 EBIRD 110.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294316466 2015-11-28 19:02:08 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 5 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-02-01 08:10:00 obsr2404047 S21627268 Traveling P22 EBIRD 80.0 4.828 2.0 1 G1132156 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS358638509 2015-12-12 19:10:45 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Broome US-NY-007 28.0 Hyde St. L4063510 P 42.2829215 -75.9520268 2015-04-19 15:15:00 obsr998593 S26258163 Stationary P21 EBIRD 10.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314726757 2017-04-30 23:56:38 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-01 10:00:00 obsr21623 S23166858 Traveling P22 EBIRD 60.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311330938 2015-04-19 17:09:05 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Tompkins US-NY-109 13.0 Washington Street, Trumansburg, NY L1365739 P 42.547329 -76.6643316 2015-04-19 16:00:00 obsr982339 S22949654 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307106632 2020-05-16 18:11:44 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Otsego US-NY-077 28.0 207 Stoller Hill Rd L3359197 P 42.7034192 -75.0299799 2015-04-03 07:36:00 obsr131845 S22655676 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303616576 2021-04-01 11:30:42.037277 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-16 16:15:00 obsr2031586 S22389244 Traveling P22 EBIRD 75.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290057093 2021-03-23 16:39:03.255227 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-01-09 15:15:00 obsr1032565 S21268556 Traveling P22 EBIRD 65.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299966013 2021-03-26 07:17:57.136956 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Seneca US-NY-099 13.0 Poplar Beach Rd. L375246 H 42.7252813 -76.7602735 2015-02-27 11:35:00 obsr528918 S22100516 Traveling P22 EBIRD 30.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289628092 2021-11-09 18:47:59.744367 32101 issf avibase-873DDCD2 White-crowned Sparrow Zonotrichia leucophrys White-crowned Sparrow (leucophrys) Zonotrichia leucophrys leucophrys 2 United States US New York US-NY Dutchess US-NY-027 13.0 FEEDERS & YARD T/O MILAN, NY L3728471 P 41.951314 -73.821144 2015-01-07 08:36:00 obsr1442681 S21234316 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312165507 2021-03-19 15:59:05.496822 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 15 United States US New York US-NY Allegany US-NY-003 28.0 Wellsville West State St L2818758 P 42.117007 -77.9545641 2015-04-22 12:15:00 obsr1210649 S23004555 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293113080 2021-06-13 05:18:24.710376 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 3 United States US New York US-NY Kings US-NY-047 30.0 Wyckoff Street Home L903070 P 40.683806 -73.9857732 2015-01-25 11:35:00 obsr2883698 S21532196 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS332419555 2021-03-19 16:44:35.607263 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-16 19:51:00 obsr334398 S24313912 Traveling P22 EBIRD 28.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307877962 2021-07-29 22:13:08.471938 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-05 obsr1220115 S22710266 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298485771 2021-03-26 06:52:34.887371 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Niagara US-NY-063 13.0 Home L3362355 P 43.281241 -78.5073057 2015-02-19 16:43:00 obsr1839078 S21981260 Stationary P21 EBIRD 47.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316312489 2021-03-19 16:19:20.977326 26890 species avibase-94A44032 European Starling Sturnus vulgaris 7 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-05 14:00:00 obsr1379161 S23256180 Traveling P22 EBIRD 150.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295828513 2021-12-10 08:21:29.396662 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 Male, Adult (2) United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-08 14:15:00 obsr717528 S21747308 Traveling P22 EBIRD 109.0 4.828 13.0 1 G1141329 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312580733 2021-11-15 03:06:58.889978 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-24 09:25:00 obsr585997 S23033465 Traveling P22 EBIRD 40.0 0.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298219007 2021-04-01 11:15:31.646886 11605 spuh avibase-0C24147B diurnal raptor sp. Accipitriformes/Falconiformes sp. 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-02-18 10:04:00 obsr904434 S21957850 Traveling P22 EBIRD 110.0 5.954 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307110548 2022-03-09 02:50:29.805088 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 8 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-03 07:45:00 obsr128156 S22655968 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301295733 2021-03-30 19:38:56.569827 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Ashe Road - East @ Rt 5 & Vicinity L3459861 P 43.0112633 -74.7675338 2015-03-06 15:47:00 obsr316199 S22201107 Traveling P22 EBIRD 65.0 0.644 3.0 1 G1168452 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312853478 2021-03-26 06:11:29.8335 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Cayuga US-NY-011 13.0 Harris Park, Cayuga L388115 H 42.917605 -76.7300177 2015-04-25 15:18:00 obsr887540 S23051290 Stationary P21 EBIRD 20.0 3.0 1 G1238411 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309242733 2021-03-19 16:10:30.527219 33474 species avibase-043F337A Indigo Bunting Passerina cyanea 40 United States US New York US-NY Chemung US-NY-015 28.0 home L2688993 P 42.1900599 -76.7231941 2015-04-11 18:00:00 obsr967916 S22810354 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297613104 2021-03-26 07:20:31.408164 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Home L2619546 P 40.6645222 -73.4090365 2015-02-03 10:00:00 obsr2468400 S21903804 Stationary P21 EBIRD 35.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319412532 2015-05-13 21:03:10 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 1 United States US New York US-NY Genesee US-NY-037 13.0 I-90 @ Rte 33 L3616623 P 43.0153795 -78.1127501 2015-05-07 17:10:00 obsr2855945 S23430337 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321923714 2021-11-09 00:27:58.526898 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Monroe US-NY-055 13.0 Churchville Park (Monroe) L11645313 H 43.110121 -77.8878823 2015-05-22 10:14:00 obsr1124114 S23575593 Traveling P22 EBIRD 41.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300120684 2021-04-01 11:15:31.646886 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Kings US-NY-047 BJs Wholesale Club Waterfront (Brooklyn) L3311662 H 40.5917716 -73.9990756 2015-02-28 13:55:00 obsr420385 S22113766 Stationary P21 EBIRD 15.0 2.0 1 G1162317 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303351169 2021-04-01 11:15:31.646886 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 16 United States US New York US-NY Kings US-NY-047 30.0 Sheepshead Bay L835012 H 40.582363 -73.9434105 2015-03-15 15:15:00 obsr2448957 S22368155 Traveling P22 EBIRD 45.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302046305 2021-11-09 21:23:47.89824 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-03-08 12:00:00 obsr717528 S22259851 Stationary P21 EBIRD 30.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313209404 2021-03-26 07:07:10.758746 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 1 United States US New York US-NY Richmond US-NY-085 US-NY_818 30.0 Bridge Creek, Western Ave. L880325 H 40.6324936 -74.1838624 2015-04-25 13:28:00 obsr155915 S23072441 Stationary P21 EBIRD 3.0 3.0 1 G1237323 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300119494 2021-12-10 08:21:29.396662 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-28 12:30:00 obsr1135516 S22113681 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313073972 2018-08-04 17:12:17 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Livingston US-NY-051 13.0 Conesus Lake, Long Point Park L810187 H 42.7802833 -77.7210617 2015-04-25 18:45:00 obsr408487 S23064607 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307678665 2021-03-26 07:42:06.558742 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Washington US-NY-115 13.0 Ft. Miller Rd. L1357316 H 43.1553093 -73.5771559 2015-04-04 14:30:00 obsr1778524 S22696162 Traveling P22 EBIRD 30.0 4.828 4.0 1 G1208937 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320341816 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Lake (Upper Lobe) L2383975 H 40.7790593 -73.9713533 2015-05-16 12:30:00 obsr1555046 S23481437 Traveling P22 EBIRD 90.0 1.609 2.0 1 G1273988 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321940837 2021-03-26 07:46:52.994574 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 8 United States US New York US-NY Albany US-NY-001 13.0 Buckingham Pond L717196 H 42.6633854 -73.8064662 2015-05-22 06:26:00 obsr2512689 S23576591 Traveling P22 EBIRD 49.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303350798 2021-03-26 07:07:10.758746 20829 species avibase-B9B272F4 Common Raven Corvus corax N 20 United States US New York US-NY Richmond US-NY-085 30.0 Stately Richman Manor L2489256 P 40.6333994 -74.104638 2015-03-15 08:00:00 obsr2904420 S22368124 Stationary P21 EBIRD 420.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306089744 2016-04-05 18:45:24 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 17 United States US New York US-NY Richmond US-NY-085 30.0 Mariners Marsh L391227 H 40.638772 -74.1753101 2015-03-29 10:20:00 obsr1032565 S22578062 Traveling P22 EBIRD 133.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295522492 2020-03-22 07:58:01 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Tompkins US-NY-109 13.0 Monkey Run L784698 P 42.4625889 -76.4269153 2015-02-07 08:45:00 obsr1696616 S21723926 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311220857 2017-02-07 18:30:45 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Ontario US-NY-069 US-NY_835 13.0 Hemlock-Canadice SF (Ontario Co.) L123103 H 42.7396135 -77.5974816 2015-04-19 10:15:00 obsr983655 S22942977 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309470753 2018-08-04 17:08:50 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Franklin US-NY-033 13.0 Private Property - Alderon Marsh L1179127 P 44.9946705 -74.5498753 2015-04-12 11:15:00 obsr2376028 S22824312 Traveling P22 EBIRD 185.0 4.426 5.0 1 G1219033 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297281438 2015-02-15 18:50:20 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Schenectady US-NY-093 13.0 Karenwald L2635899 P 42.800376 -73.9004481 2015-02-15 16:50:00 obsr634949 S21874313 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293876081 2021-03-24 20:06:25.370375 337 species avibase-694C127A Mute Swan Cygnus olor N 1 Female, Adult (1) United States US New York US-NY Ontario US-NY-069 13.0 The Swamp L1660257 P 42.8848133 -77.0413991 2015-01-29 14:20:00 obsr572658 S21592900 Stationary P21 EBIRD 40.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296699920 2021-04-01 12:32:15.282601 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 11 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-14 07:30:00 obsr547602 S21822221 Traveling P22 EBIRD 180.0 3.219 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291396774 2021-04-01 11:49:53.573686 681 species avibase-407E2CA8 Common Merganser Mergus merganser 5 United States US New York US-NY Queens US-NY-081 30.0 Backyard L859883 P 40.6715034 -73.8124153 2015-01-16 07:21:00 obsr1982614 S21376927 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319613806 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Triplets Br. area (btwn 77th-79th St. transv.) L4525727 H 40.779838 -73.9724077 2015-05-13 18:57:00 obsr1548221 S23441917 Traveling P22 EBIRD 13.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309308623 2021-03-24 20:33:47.533911 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-04-12 07:46:00 obsr2211210 S22814582 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302267584 2021-03-26 07:30:35.289997 8773 species avibase-7AA076EF Barred Owl Strix varia 1 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-10 12:07:00 obsr1092576 S22280707 Stationary P21 EBIRD 58.0 2.0 1 G1173976 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300921854 2021-03-26 07:56:20.588749 406 species avibase-27B2749A Wood Duck Aix sponsa 4 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-02-25 16:00:00 obsr2218212 S22173339 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307721110 2021-03-19 16:32:34.732091 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-04-05 09:21:00 obsr1605975 S22698872 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317454804 2021-07-29 22:37:09.140265 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis X United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-09 obsr1220115 S23321041 Historical P62 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310566763 2017-01-08 08:50:20 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 5 United States US New York US-NY Franklin US-NY-033 14.0 Paul Smith's College L1485004 H 44.4375537 -74.2530447 2015-04-14 08:00:00 obsr1190754 S22901395 Traveling P22 EBIRD 90.0 2.414 2.0 1 G1222442 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304119625 2021-03-24 19:24:40.212356 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984324 P 42.4515813 -79.3302155 2015-03-19 09:00:00 obsr479109 S22428428 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308835757 2021-03-24 20:23:39.258075 6409 spuh avibase-8D04DAAF gull sp. Larinae sp. 4 United States US New York US-NY Suffolk US-NY-103 US-NY_782 30.0 Orient Beach SP L502729 H 41.1286489 -72.2700955 2015-04-10 10:30:00 obsr1434651 S22782758 Traveling P22 EBIRD 40.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307389757 2022-01-30 05:40:13.589887 26278 species avibase-A381417F House Wren Troglodytes aedon 4 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-03 15:00:00 obsr2585137 S22676179 Traveling P22 EBIRD 60.0 1.609 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307972050 2018-08-04 17:05:41 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Suffolk US-NY-103 30.0 Bay Shore--Home L3172551 P 40.7209654 -73.279742 2015-04-06 07:00:00 obsr564905 S22717424 Stationary P21 EBIRD 120.0 2.0 1 G1208137 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320001222 2021-11-15 03:06:58.889978 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 6 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-15 08:15:00 obsr2303233 S23463661 Traveling P22 EBIRD 240.0 3.219 4.0 1 G1272364 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306789415 2017-03-01 21:48:28 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 2 United States US New York US-NY Suffolk US-NY-103 30.0 Fuchs Pond Preserve L888883 H 40.9150692 -73.3307362 2015-04-01 15:15:00 obsr2406624 S22631735 Traveling P22 EBIRD 75.0 1.609 2.0 1 G1200800 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305891705 2021-04-01 11:24:19.637193 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 20 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--North Marina L389569 H 43.3178956 -77.7228239 2015-03-28 15:55:00 obsr934639 S22563601 Stationary P21 EBIRD 25.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312997223 2022-01-12 18:14:50.403512 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail L212481 H 44.4128015 -74.121715 2015-04-25 18:00:00 obsr2774749 S23059897 Traveling P22 EBIRD 40.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS327395969 2018-08-06 22:30:38 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-20 08:33:00 obsr1334267 S23944413 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315386514 2021-04-01 11:30:42.037277 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-03 07:20:00 obsr1047805 S23203462 Traveling P22 EBIRD 462.0 8.047 3.0 1 G1259290 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303285871 2021-03-30 19:07:52.958398 7416 species avibase-36B3872D Turkey Vulture Cathartes aura X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-15 10:20:00 obsr876649 S22362652 Traveling P22 EBIRD 75.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296796054 2021-04-01 11:54:40.172593 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 30 United States US New York US-NY Richmond US-NY-085 Joline Ave. Beach L1340805 H 40.5011224 -74.2331594 2015-02-14 10:04:00 obsr1958124 S21830898 Stationary P21 EBIRD 6.0 2.0 1 G1145904 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314644873 2021-03-26 06:29:56.44369 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Monroe US-NY-055 13.0 374 Cromwell L1952255 P 43.1326227 -77.5253892 2015-04-30 08:30:00 obsr1463039 S23162064 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304597751 2022-02-17 14:32:23.002448 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 4 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-22 07:00:00 obsr1361622 S22464537 Traveling P22 EBIRD 60.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316579042 2021-04-01 10:47:08.851048 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-05-06 16:30:00 obsr800690 S23271282 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291417862 2021-11-09 21:23:47.89824 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Ulster US-NY-111 US-NY_807 28.0 USFWS_760 Shawangunk Grasslands NWR L132037 H 41.6341667 -74.2083282 2015-01-15 13:00:00 obsr272939 S21378695 Traveling P22 EBIRD 255.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306898288 2021-04-01 11:15:31.646886 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-02 07:07:00 obsr152435 S22639566 Traveling P22 EBIRD 115.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312033263 2021-04-01 12:41:58.738824 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-04-22 07:21:00 obsr1092576 S22995949 Stationary P21 EBIRD 12.0 3.0 1 G1231214 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313781229 2018-08-04 17:12:33 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Turtle Pond L1180204 H 40.7795361 -73.9678896 2015-04-27 19:12:00 obsr1548221 S23108554 Traveling P22 EBIRD 22.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312206429 2021-03-19 16:44:35.607263 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-04-20 17:00:00 obsr1561508 S23007393 Traveling P22 EBIRD 90.0 0.644 2.0 1 G1232212 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316048517 2021-04-01 11:15:31.646886 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Kings US-NY-047 Brooklyn Bridge Park L1902982 H 40.6996104 -73.9973745 2015-05-04 16:00:00 obsr1731572 S23240447 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS366172773 2016-01-15 19:42:00 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Suffolk US-NY-103 30.0 smith point county park L4161264 P 40.7290032 -72.8829193 2015-02-07 15:45:00 obsr1325561 S26916281 Traveling P22 EBIRD 45.0 3.219 1.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290232715 2021-03-23 16:52:36.900075 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 2 United States US New York US-NY Suffolk US-NY-103 30.0 Chandler Estate L1355478 H 40.9559916 -73.0192018 2015-01-10 09:15:00 obsr2406624 S21282955 Stationary P21 EBIRD 180.0 2.0 1 G1103543 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313982513 2021-11-09 21:57:19.605717 6368 species avibase-2D52E3A5 Lesser Black-backed Gull Larus fuscus X United States US New York US-NY Ulster US-NY-111 13.0 Rondout-Kingston L3465160 P 41.91695 -73.98631 2015-04-29 06:40:00 obsr1482758 S23121352 Traveling P22 EBIRD 20.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314278585 2021-03-30 12:05:58.533651 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-30 08:00:00 obsr128156 S23139727 Rusty Blackbird Spring Migration Blitz P41 EBIRD 60.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316310225 2021-11-15 03:06:58.889978 616 species avibase-25C94A8F Greater Scaup Aythya marila 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-05 12:50:00 obsr516108 S23256009 Traveling P22 EBIRD 385.0 2.414 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304240040 2021-04-01 12:40:54.473014 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Saratoga US-NY-091 13.0 Fenimore Bridge, Hudson Falls, NY L1476893 P 43.2979263 -73.5901746 2015-03-20 09:30:00 obsr1222746 S22437966 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320196310 2021-03-19 16:10:30.527219 33040 species avibase-BC5A9498 Yellow-rumped Warbler Setophaga coronata 2 United States US New York US-NY Chemung US-NY-015 US-NY_867 28.0 The Center at Horseheads--Grassland L303641 H 42.1880357 -76.8160468 2015-05-16 15:00:00 obsr1318356 S23474045 Traveling P22 EBIRD 11.0 0.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320559017 2022-02-27 09:35:49.066489 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 2 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-05-16 14:15:00 obsr660214 S23492865 Traveling P22 EBIRD 40.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319836237 2021-03-19 16:19:20.977326 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-15 11:00:00 obsr2324853 S23454849 Traveling P22 EBIRD 90.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306356222 2019-07-23 17:28:11 456 species avibase-D201EB72 American Wigeon Mareca americana 49 United States US New York US-NY Suffolk US-NY-103 30.0 Goldsmiths Inlet L138043 H 41.0541647 -72.4740449 2015-03-30 16:47:00 obsr2485753 S22598323 Stationary P21 EBIRD 17.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311860983 2021-03-24 20:21:02.634125 20294 species avibase-76158864 Northern Shrike Lanius borealis 6 United States US New York US-NY Schoharie US-NY-095 28.0 Franklinton Vlaie L876603 H 42.5407577 -74.2995715 2015-04-21 06:33:00 obsr2268588 S22984456 Stationary P21 EBIRD 28.0 1.0 1 G1230540 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294403021 2019-07-24 18:19:42 616 species avibase-25C94A8F Greater Scaup Aythya marila 35 United States US New York US-NY Kings US-NY-047 Canarsie Pier L247765 H 40.6287773 -73.8836704 2015-02-01 15:29:00 obsr152435 S21634121 Stationary P21 EBIRD 34.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS330423383 2021-04-01 11:24:19.637193 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-04-12 17:40:00 obsr1846130 S24163348 Stationary P21 EBIRD 50.0 4.0 1 G1337412 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314262751 2021-04-01 11:30:42.037277 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 07:30:00 obsr1102914 S23138654 Traveling P22 EBIRD 240.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288698481 2021-03-24 19:20:44.053843 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus N 1 United States US New York US-NY Broome US-NY-007 28.0 Conklin L195377 T 42.03428 -75.80383 2015-01-03 09:45:00 obsr1337486 S21158720 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS488817419 2021-03-26 08:09:53.772059 6408 spuh avibase-E8FAD0BB Larus sp. Larus sp. 1 United States US New York US-NY Rensselaer US-NY-083 13.0 US-NY-Poestenkill-455 Snyders Corners Rd L3438483 P 42.683002 -73.588114 2015-04-30 10:23:00 obsr1301707 S36174649 Traveling P22 EBIRD 37.0 0.805 1.0 1 G2354348 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313392585 2021-03-23 16:52:36.900075 622 species avibase-50566E50 Lesser Scaup Aythya affinis N 4 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-04-26 08:05:00 obsr2852365 S23084225 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318678582 2021-03-19 16:32:34.732091 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 18:30:00 obsr454647 S23387899 Traveling P22 EBIRD 60.0 1.0 6.0 1 G1265606 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302873971 2021-03-30 19:07:52.958398 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 5 United States US New York US-NY Kings US-NY-047 US-NY_1722 Dead Horse Bay, Marina L151656 H 40.585205 -73.901276 2015-03-13 13:45:00 obsr454647 S22330172 Traveling P22 EBIRD 30.0 0.483 2.0 1 G1178455 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303119337 2021-04-01 11:24:19.637193 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-03-14 16:39:00 obsr2276013 S22349874 Traveling P22 EBIRD 42.0 0.483 2.0 1 G1179465 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316445601 2018-11-16 19:55:00 591 species avibase-1929E1E1 Canvasback Aythya valisineria 1 United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L692296 H 42.8874107 -78.7166119 2015-05-06 09:00:00 obsr2149313 S23263419 Traveling P22 EBIRD 70.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318739636 2018-12-16 01:30:52 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Burger Park L390594 H 43.3099074 -77.7326596 2015-05-11 10:30:00 obsr1991824 S23391471 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316072933 2015-10-17 16:11:51 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-04 11:50:00 obsr1885846 S23241808 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314464213 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis N X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 08:55:00 obsr2105033 S23151035 Traveling P22 EBIRD 260.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295399358 2021-11-09 18:34:57.804398 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-02-07 07:00:00 obsr1264675 S21713966 Stationary P21 EBIRD 180.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293290781 2021-03-30 19:37:33.521815 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Sodus Point L834654 H 43.2748307 -76.9732189 2015-01-25 16:40:00 obsr528918 S21545852 Traveling P22 EBIRD 75.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309424335 2021-03-30 19:07:52.958398 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-12 11:26:00 obsr2692140 S22821615 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302699482 2021-03-30 19:07:52.958398 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect park L3483220 P 40.6563306 -73.9713979 2015-03-12 16:00:00 obsr377694 S22317051 Traveling P22 EBIRD 60.0 1.609 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308067338 2018-08-04 17:06:12 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-04-06 11:24:00 obsr155915 S22723834 Traveling P22 EBIRD 12.0 0.805 2.0 1 G1208442 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296413494 2021-12-10 08:21:29.396662 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-02-13 08:45:00 obsr1801902 S21796367 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322898548 2021-04-01 11:15:31.646886 32666 species avibase-5110842F Baltimore Oriole Icterus galbula N 8 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-25 14:00:00 obsr547602 S23633276 Traveling P22 EBIRD 120.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293128447 2021-11-09 21:43:58.300436 30494 species avibase-240E3390 House Sparrow Passer domesticus 1 United States US New York US-NY Ulster US-NY-111 13.0 Black Creek Preserve L2086582 H 41.8236532 -73.9574718 2015-01-25 10:10:00 obsr1136997 S21533377 Traveling P22 EBIRD 127.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321686739 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-10 07:00:00 obsr692185 S23560622 Traveling P22 EBIRD 300.0 12.875 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309293503 2021-09-12 21:03:10.253835 25946 species avibase-154BCCAE Golden-crowned Kinglet Regulus satrapa 13 F C1 F United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR (Seneca County) L6199904 P 42.9801 -76.7408323 2015-04-08 17:26:00 obsr924076 S22813561 Traveling P22 EBIRD 146.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291038210 2022-02-17 14:32:23.002448 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 32 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-14 14:30:00 obsr2448957 S21347841 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321514492 2021-03-23 17:20:04.546757 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-19 10:30:00 obsr2475075 S23549945 Stationary P21 EBIRD 600.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309353942 2021-03-26 06:17:19.712573 443 species avibase-ED4CE8E7 Northern Shoveler Spatula clypeata 13 United States US New York US-NY Erie US-NY-029 CA-ON_002 Erie Basin Marina L1341892 H 42.8814376 -78.8885872 2015-04-12 11:05:00 obsr502830 S22817415 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312073787 2021-03-30 19:29:33.633096 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Suffolk US-NY-103 30.0 Satterly Landing Park L1357924 H 40.9534761 -73.0303978 2015-04-22 09:11:00 obsr1946430 S22998402 Stationary P21 EBIRD 7.0 3.0 1 G1231299 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295283975 2021-04-01 12:26:53.827486 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 8 United States US New York US-NY Albany US-NY-001 13.0 Cohoes Falls L3170569 P 42.7844074 -73.7061167 2015-02-06 12:40:00 obsr2186523 S21704406 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS768271874 2021-03-30 19:07:52.958398 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-11 obsr192641 S56880481 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308663902 2018-08-04 17:08:13 2369 species avibase-00124D98 Mourning Dove Zenaida macroura X United States US New York US-NY Oneida US-NY-065 13.0 Sylvan Beach L509883 H 43.1939135 -75.731163 2015-04-09 13:41:00 obsr666964 S22769364 Stationary P21 EBIRD 17.0 1.0 1 G1212355 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320098427 2021-11-09 18:47:29.366198 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Dutchess US-NY-027 14.0 Harlem Valley Rail Trail-Sharon Sta. Road Section L3646878 P 41.8678843 -73.5242414 2015-05-15 08:00:00 obsr445356 S23469162 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313348891 2015-04-26 21:40:03 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 6 United States US New York US-NY Monroe US-NY-055 13.0 Mendon Ponds Park--Quaker Pond Trail L803495 H 43.0130182 -77.571609 2015-04-26 15:13:00 obsr528918 S23081022 Traveling P22 EBIRD 92.0 4.828 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308161108 2021-03-23 17:22:05.708166 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-04-05 07:35:00 obsr316199 S22730944 Area P23 EBIRD 70.0 2.59 2.0 1 G1209071 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319802906 2021-03-30 19:13:38.458673 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-14 12:24:00 obsr2001485 S23452971 Traveling P22 EBIRD 50.0 0.644 2.0 1 G1271745 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311220065 2015-04-19 12:08:14 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 2 United States US New York US-NY Ontario US-NY-069 US-NY_835 13.0 Canadice Lake - east side L910292 P 42.7273436 -77.5621033 2015-04-19 09:40:00 obsr983655 S22942924 Traveling P22 EBIRD 30.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289929451 2015-01-08 19:43:54 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Monroe US-NY-055 13.0 Riga, 651 Johnson Road L3278657 P 43.07203 -77.9173 2015-01-06 11:09:00 obsr745890 S21258224 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319067422 2018-08-06 22:29:45 10636 species avibase-9BE68BD3 Yellow-bellied Sapsucker Sphyrapicus varius 3 United States US New York US-NY Jefferson US-NY-045 13.0 Chaumont Barrens Preserve L122968 H 44.1017468 -76.0739772 2015-05-12 08:10:00 obsr2943723 S23410926 Traveling P22 EBIRD 165.0 2.736 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314568332 2021-11-09 18:45:27.272498 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 3 United States US New York US-NY Dutchess US-NY-027 13.0 near Verbank L3534485 P 41.7142739 -73.677063 2015-04-04 obsr191447 S23157717 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307075866 2021-04-01 11:46:19.761029 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 4 United States US New York US-NY Orleans US-NY-073 13.0 Lakeshore Rd. (Orleans Cty.) L749858 P 43.37149 -78.1236935 2015-04-02 09:40:00 obsr408487 S22653369 Traveling P22 EBIRD 7.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314294646 2021-03-26 07:30:35.289997 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 5 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-30 09:15:00 obsr1655171 S23140740 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311594673 2021-03-23 17:37:19.520785 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Saratoga US-NY-091 US-NY_777 13.0 Vischer Ferry Nature & Historic Preserve L208678 H 42.7860031 -73.8023715 2015-04-19 18:00:00 obsr2699288 S22966816 Traveling P22 EBIRD 180.0 3.219 9.0 1 G1228516 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319469470 2021-03-26 06:39:43.334073 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-05-13 08:15:00 obsr1706920 S23433604 Traveling P22 EBIRD 45.0 0.161 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299472065 2021-11-15 03:06:58.889978 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-02-24 16:00:00 obsr516108 S22062349 Traveling P22 EBIRD 75.0 0.483 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301353849 2018-08-04 16:58:53 26109 species avibase-BAC33609 Brown Creeper Certhia americana 50 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-03-07 09:40:00 obsr2172593 S22206627 Stationary P21 EBIRD 29.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305564202 2021-03-26 07:00:33.333856 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 15 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-03-27 07:20:00 obsr676630 S22538920 Rusty Blackbird Spring Migration Blitz P41 EBIRD 50.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291116508 2021-04-01 11:30:42.037277 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 373 United States US New York US-NY New York US-NY-061 Randalls Island--Southwest section L1785369 H 40.7836216 -73.9351181 2015-01-15 08:30:00 obsr800463 S21354332 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310749912 2021-04-01 12:35:52.669792 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 6 United States US New York US-NY Onondaga US-NY-067 13.0 730 Banner Rd, Tully, N.Y. L1036489 P 42.8066969 -76.1280817 2015-04-17 07:58:00 obsr1178949 S22913560 Area P23 EBIRD 131.0 3.53 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308514642 2021-03-23 17:20:04.546757 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla N 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-04-02 10:30:00 obsr2475075 S22758285 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319760931 2021-04-01 11:30:42.037277 31423 species avibase-A2BB98A9 Common Redpoll Acanthis flammea 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-14 06:15:00 obsr2605333 S23450731 Traveling P22 EBIRD 180.0 4.828 3.0 1 G1271579 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304203198 2021-03-23 16:30:20.514143 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 10 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--North Lookout L166701 H 43.527261 -76.2393397 2015-03-19 09:30:00 obsr1633923 S22435126 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303139015 2021-03-24 20:33:47.533911 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail L1498729 H 42.4795201 -76.4551642 2015-03-14 13:10:00 obsr2487430 S22351495 Traveling P22 EBIRD 55.0 0.805 78.0 1 G1179586 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309528293 2021-12-08 07:58:41.562209 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-04-12 15:55:00 obsr598381 S22828346 Traveling P22 EBIRD 121.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298778490 2021-03-26 06:11:29.8335 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Cayuga US-NY-011 13.0 Factory St. Pond, Union Springs L146184 H 42.8414345 -76.6944046 2015-02-21 09:44:00 obsr2683910 S22006331 Stationary P21 EBIRD 6.0 2.0 1 G1155009 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298707021 2021-04-01 12:41:58.738824 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 200 United States US New York US-NY Schuyler US-NY-097 13.0 Warren W. Clute Memorial Park L130506 H 42.3855488 -76.8623337 2015-02-21 07:35:00 obsr2871406 S22000341 Stationary P21 EBIRD 30.0 2.0 1 G1154707 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302604182 2017-04-17 22:24:10 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sunset Park, Ithaca L1528786 H 42.45875 -76.49325 2015-03-12 09:20:00 obsr1092576 S22310098 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289334313 2021-03-30 19:39:10.250398 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-05 13:10:00 obsr2505956 S21210957 Traveling P22 EBIRD 140.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322246815 2021-04-01 10:58:47.067498 447 species avibase-C235A4D7 Gadwall Mareca strepera 27 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-05-23 07:52:00 obsr2588479 S23595135 Traveling P22 EBIRD 239.0 3.219 2.0 1 G1285749 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317378447 2018-10-16 13:44:53 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY New York US-NY-061 30.0 Manhattan--414 E 52nd St. L783769 P 40.7544571 -73.9644865 2015-05-09 00:00:00 obsr259298 S23316163 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309368059 2021-04-01 11:30:42.037277 32666 species avibase-5110842F Baltimore Oriole Icterus galbula X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-11 17:30:00 obsr2793388 S22818252 Traveling P22 EBIRD 110.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305222570 2021-03-24 20:33:47.533911 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 206 Tareyton Drive, Ithaca L141039 P 42.471756 -76.4603653 2015-03-25 10:27:00 obsr620377 S22512278 Traveling P22 EBIRD 54.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307075849 2015-05-22 21:22:24 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-02 08:20:00 obsr528918 S22653367 Traveling P22 EBIRD 70.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303708960 2021-03-26 06:29:56.44369 18533 species avibase-847717E2 Red-eyed Vireo Vireo olivaceus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Grandview Heights L856113 P 43.295949 -77.6923943 2015-03-16 12:30:00 obsr1376838 S22396214 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316049050 2021-04-01 11:15:31.646886 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 06:44:00 obsr41879 S23240477 Traveling P22 EBIRD 138.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313646703 2021-03-23 17:00:13.087107 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 29 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Stewart Park and Renwick Woods L1131448 H 42.4589608 -76.5055355 2015-04-27 17:28:00 obsr34822 S23099914 Traveling P22 EBIRD 69.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307292442 2021-11-09 21:50:48.44865 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Ulster US-NY-111 13.0 Kingston Point L294957 H 41.9238788 -73.9676753 2015-04-03 16:00:00 obsr1110743 S22668905 Traveling P22 EBIRD 40.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292091200 2021-04-01 11:30:42.037277 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 3 United States US New York US-NY New York US-NY-061 30.0 W Village Backyards and Airspace L974907 P 40.7366845 -74.0071853 2015-01-20 09:00:00 obsr128156 S21431246 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308608647 2021-03-23 17:00:13.087107 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-08 06:55:00 obsr455249 S22765309 Traveling P22 EBIRD 5.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296686241 2021-03-23 17:37:19.520785 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Saratoga US-NY-091 13.0 Ballston Lake L235412 T 42.91178 -73.86817 2015-02-14 10:00:00 obsr2723123 S21820862 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314030308 2021-03-19 16:25:42.617988 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 8 United States US New York US-NY Essex US-NY-031 13.0 Sandy Beach, Bulwagga Bay L3040237 P 44.034141 -73.457923 2015-04-28 15:20:00 obsr2693145 S23124289 Traveling P22 EBIRD 56.0 0.483 2.0 1 G1242483 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308935826 2021-04-01 12:31:09.823741 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Livingston US-NY-051 13.0 Groveland Flats L1387434 P 42.6620879 -77.783158 2015-04-10 13:12:00 obsr72341 S22789939 Traveling P22 EBIRD 13.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319489488 2021-03-19 16:10:30.527219 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Chemung US-NY-015 28.0 Bottchers Landing L143559 H 42.1246158 -76.951613 2015-05-14 07:29:00 obsr1092576 S23434950 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318433230 2015-05-10 23:28:48 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 4 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-05-07 17:10:00 obsr1334267 S23374455 Traveling P22 EBIRD 10.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315500683 2021-03-26 07:46:52.994574 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 1 United States US New York US-NY Albany US-NY-001 13.0 Consaul Rd., Colonie (yard list) L2228650 P 42.7450267 -73.8493252 2015-04-29 16:00:00 obsr119187 S23209705 Stationary P21 EBIRD 192.0 2.0 1 G1250009 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS404030266 2018-08-04 17:12:10 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 36 United States US New York US-NY Oswego US-NY-075 13.0 Mexico Bay/ Derby Hill L2812007 P 43.508223 -76.3105202 2015-04-25 11:00:00 obsr706340 S29721871 Stationary P21 EBIRD 30.0 7.0 1 G1240092 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305906582 2021-11-09 22:37:57.097935 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Haven Road, Bashakill WMA L1674963 P 41.5361176 -74.5174734 2015-03-28 08:45:00 obsr1788273 S22564860 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295982957 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis 45 United States US New York US-NY Kings US-NY-047 Ceasar's Bay Bazaar L1349537 H 40.5942621 -74.0017768 2015-02-07 14:35:00 obsr1821546 S21759680 Stationary P21 EBIRD 80.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310060745 2021-03-26 06:39:43.334073 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-14 10:00:00 obsr800463 S22866355 Traveling P22 EBIRD 80.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304170584 2021-03-24 20:33:47.533911 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, 212 Tareyton L252844 P 42.4724094 -76.4601243 2015-03-20 07:32:00 obsr2307843 S22432375 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308835374 2021-04-01 11:30:42.037277 7909 species avibase-EB98812F Cooper's Hawk Accipiter cooperii 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-10 09:00:00 obsr2706811 S22782733 Traveling P22 EBIRD 120.0 1.609 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314269021 2021-04-01 11:30:42.037277 6036 species avibase-6EB81C98 Greater Yellowlegs Tringa melanoleuca 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-29 08:00:00 obsr2369927 S23139080 Traveling P22 EBIRD 240.0 3.219 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313430455 2019-07-23 17:28:28 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Oneida US-NY-065 13.0 Godfrey Point DEC Boat Launch L1570638 H 43.2235924 -75.8505869 2015-04-27 05:57:00 obsr666964 S23086630 Stationary P21 EBIRD 62.0 1.0 1 G1239030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313782740 2021-03-24 05:37:45.927792 636 species avibase-B77377EE Common Eider Somateria mollissima N X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-28 10:05:00 obsr319738 S23108639 Traveling P22 EBIRD 80.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308272554 2018-08-04 17:08:00 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 14 United States US New York US-NY Tompkins US-NY-109 13.0 CLO Office-2M15 L1313831 P 42.4800694 -76.4515024 2015-04-07 13:55:00 obsr2074043 S22739774 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308338809 2018-08-04 17:07:57 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-04-07 10:30:00 obsr979921 S22744721 Stationary P21 EBIRD 150.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290052317 2021-03-24 19:48:44.880783 303 species avibase-B59E1863 Canada Goose Branta canadensis 46 United States US New York US-NY Monroe US-NY-055 13.0 Priem Road L830367 P 43.3470587 -77.9353809 2015-01-09 14:05:00 obsr334398 S21268191 Traveling P22 EBIRD 9.0 0.402 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS313996673 2021-03-24 20:33:47.533911 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 8 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail L1498729 H 42.4795201 -76.4551642 2015-04-29 08:10:00 obsr869999 S23122343 Traveling P22 EBIRD 40.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309709986 2021-03-26 07:07:10.758746 592 species avibase-3072CC16 Redhead Aythya americana 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--N entrance L1598118 H 40.5192274 -74.2132466 2015-04-13 11:54:00 obsr1958124 S22841023 Traveling P22 EBIRD 6.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312360457 2021-04-01 11:15:31.646886 662 species avibase-FB738385 Bufflehead Bucephala albeola 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-23 07:13:00 obsr41879 S23017666 Traveling P22 EBIRD 290.0 6.437 25.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298259547 2021-03-26 06:29:56.44369 616 species avibase-25C94A8F Greater Scaup Aythya marila 2 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-02-18 09:06:00 obsr916033 S21961358 Traveling P22 EBIRD 297.0 0.322 4.0 1 G1151981 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305196824 2021-03-24 20:33:47.533911 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 3 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Ecology House L550854 H 42.4584285 -76.4832383 2015-03-24 18:35:00 obsr2820047 S22510242 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319302707 2021-03-23 17:20:04.546757 431 species avibase-90E2543E Blue-winged Teal Spatula discors 1 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-05-05 09:00:00 obsr2475075 S23424085 Stationary P21 EBIRD 660.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319932021 2018-02-01 15:11:46 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor11 L3513953 H 42.5527608 -76.0336385 2015-05-09 13:04:00 obsr2535282 S23459860 Stationary P21 EBIRD 7.0 2.0 1 G1272240 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320315021 2021-11-09 18:47:29.496793 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Dutchess US-NY-027 28.0 Mt. Beacon access road L3648412 P 41.4971206 -73.945756 2015-05-16 08:30:00 obsr2542037 S23480085 Traveling P22 EBIRD 150.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295861392 2021-03-26 06:29:56.44369 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 7 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-02-09 10:36:00 obsr745890 S21750059 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307969833 2015-04-07 08:52:48 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 4 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 30.0 Captree Island L2865928 H 40.6469348 -73.2632673 2015-04-06 08:15:00 obsr564905 S22717284 Traveling P22 EBIRD 5.0 0.483 2.0 1 G1208136 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307417097 2019-04-19 13:17:53 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-04-04 09:45:00 obsr481595 S22678200 Traveling P22 EBIRD 105.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305828528 2018-08-04 17:04:30 7127 species avibase-13E9F9B4 American Bittern Botaurus lentiginosus 1 United States US New York US-NY Richmond US-NY-085 30.0 Blue Heron Park L300535 H 40.5303351 -74.1774023 2015-03-28 14:13:00 obsr1958124 S22558904 Traveling P22 EBIRD 10.0 0.322 2.0 1 G1195279 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306335713 2018-08-04 17:04:47 32878 species avibase-183E5F90 Nashville Warbler Leiothlypis ruficapilla 4 Female, Adult (1); Male, Adult (3) United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-03-30 14:40:00 obsr2908667 S22596717 Stationary P21 EBIRD 15.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS316047702 2021-03-26 06:29:56.44369 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Monroe US-NY-055 13.0 Webster Park L164450 H 43.2575016 -77.4515302 2015-04-27 14:45:00 obsr2966702 S23240408 Traveling P22 EBIRD 35.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303753239 2021-03-24 20:58:53.646623 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-03-17 08:00:00 obsr72341 S22399709 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299945033 2021-11-09 19:56:29.393767 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 3 United States US New York US-NY Orange US-NY-071 28.0 My spot L3350343 P 41.2308311 -74.3717122 2015-02-25 08:30:00 obsr1603513 S22099029 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308282420 2021-03-26 07:30:35.289997 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 100 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-07 12:20:00 obsr869999 S22740363 Traveling P22 EBIRD 15.0 1.207 1.0 1 G1209967 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291080466 2021-03-26 07:52:59.845315 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-01-11 07:25:00 obsr316199 S21351255 Area P23 EBIRD 150.0 2.59 2.0 1 G1109827 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323929346 2022-01-12 18:14:10.119384 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Franklin US-NY-033 14.0 Bloomingdale Bog Trail--South Entrance L825062 H 44.3641149 -74.1511381 2015-05-30 07:34:00 obsr2630526 S23703814 Traveling P22 EBIRD 164.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311931713 2021-04-01 11:15:31.646886 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-21 17:20:00 obsr152435 S22989108 Traveling P22 EBIRD 145.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318504827 2021-03-26 06:38:32.090082 6339 species avibase-8535345B Herring Gull Larus argentatus X United States US New York US-NY Montgomery US-NY-057 13.0 NY--Glen area, Montgomery Co. L3634172 P 42.8942252 -74.344697 2015-05-10 obsr2510314 S23378545 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1138288424 2021-05-01 15:23:06.217484 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-11 05:45:00 obsr590128 S86828464 Traveling P22 EBIRD 420.0 8.047 5.0 1 G1266741 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305022189 2015-03-24 06:58:52 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 25 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--S entrance (maint. bldgs) L1350789 H 40.5146545 -74.2124928 2015-03-24 06:58:00 obsr1958124 S22496835 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311021602 2021-11-09 20:16:57.783257 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 3 United States US New York US-NY Orange US-NY-071 28.0 Kenridge Farm L616768 H 41.4216515 -74.0352345 2015-04-18 07:47:00 obsr1912104 S22930804 Traveling P22 EBIRD 200.0 1.609 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292954764 2021-04-01 11:24:19.637193 591 species avibase-1929E1E1 Canvasback Aythya valisineria 20 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-01-24 11:30:00 obsr2939916 S21519709 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314724496 2021-11-09 20:12:16.773384 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 5 United States US New York US-NY Orange US-NY-071 28.0 Home L519310 P 41.5431841 -74.2980292 2015-04-30 08:45:00 obsr1912104 S23166682 Stationary P21 EBIRD 19.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297743372 2015-02-16 18:45:45 657 species avibase-B7B1A5DD Black Scoter Melanitta americana 5 Male, Adult (4); Female, Adult (1) United States US New York US-NY Cortland US-NY-023 28.0 Cortland Rt281 L3388469 P 42.613749 -76.1860657 2015-02-16 14:00:00 obsr556398 S21916261 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303674341 2021-03-24 20:33:47.533911 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--tss office (CLO 193B) L515673 P 42.480385 -76.4511779 2015-03-17 11:24:00 obsr1062070 S22393715 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294063699 2015-01-31 21:39:25 6616 species avibase-7E022378 Common Loon Gavia immer 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett-North Forty L784283 P 40.5979223 -73.9013386 2015-01-30 14:23:00 obsr1821546 S21607621 Incidental P20 EBIRD 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS320576127 2018-08-06 22:30:25 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Whalen Memorial SF L1217557 H 42.1285297 -79.5270681 2015-05-17 13:51:00 obsr1092576 S23493820 Traveling P22 EBIRD 74.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291457047 2021-03-26 08:14:57.071052 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 8 United States US New York US-NY Westchester US-NY-119 30.0 Wilton L963070 P 41.0891766 -73.8526082 2015-01-09 08:30:00 obsr1538953 S21381995 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317186064 2021-11-15 03:06:58.889978 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-08 08:30:00 obsr2310825 S23305206 Traveling P22 EBIRD 155.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320636518 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-17 07:12:00 obsr152435 S23496991 Traveling P22 EBIRD 624.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315531734 2021-04-01 11:15:31.646886 16285 species avibase-5BC4E0EF Willow Flycatcher Empidonax traillii X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 11:30:00 obsr2078092 S23211404 Traveling P22 EBIRD 360.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322222124 2021-03-24 19:42:42.07177 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-05-23 11:53:00 obsr152435 S23593789 Traveling P22 EBIRD 109.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314173552 2021-12-19 10:32:19.574298 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-04-29 09:30:00 obsr2090129 S23132942 Traveling P22 EBIRD 150.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306816845 2015-04-01 20:04:12 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park--Hawk Watch L109138 H 43.30365 -77.7163028 2015-04-01 11:00:00 obsr966120 S22633710 Stationary P21 EBIRD 60.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303172202 2021-04-01 12:43:36.236969 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Tioga US-NY-107 28.0 Raish Hill Farm, Candor L2608316 P 42.194387 -76.362344 2015-03-13 07:25:00 obsr1828453 S22354054 Traveling P22 EBIRD 9.0 0.161 2.0 1 G1179994 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304210914 2021-03-30 19:29:33.633096 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 1 United States US New York US-NY Suffolk US-NY-103 30.0 Reeves Creek L1124108 P 40.9376207 -72.6093614 2015-03-20 13:24:00 obsr2485753 S22435726 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299554894 2021-11-09 19:38:09.932255 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Orange US-NY-071 28.0 Sterling Forest Woods Road L1450571 P 41.240948 -74.20288 2015-02-25 10:01:00 obsr1257101 S22069124 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323865969 2022-03-06 22:19:43.839237 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Hamilton US-NY-041 14.0 Ferd's Bog L109141 H 43.7886933 -74.749732 2015-05-29 07:40:00 obsr769149 S23699358 Traveling P22 EBIRD 70.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302664771 2021-03-26 07:07:10.758746 5956 species avibase-F35821AA Semipalmated Sandpiper Calidris pusilla N 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-12 15:38:00 obsr1958124 S22314305 Traveling P22 EBIRD 6.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309293525 2021-09-12 21:03:10.253835 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 H C2 H United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR (Seneca County) L6199904 P 42.9801 -76.7408323 2015-04-08 17:26:00 obsr924076 S22813561 Traveling P22 EBIRD 146.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307508579 2021-11-09 22:12:17.655802 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Ulster US-NY-111 13.0 Stone Ridge Pond off Mill Dam Rd. L624963 H 41.8618905 -74.1432953 2015-04-04 17:10:00 obsr1636520 S22684254 Stationary P21 EBIRD 10.0 3.0 1 G1204391 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310468688 2021-03-22 09:17:32.016297 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor X United States US New York US-NY Oneida US-NY-065 14.0 * Hillsboro Rd. Area Patch L2206379 P 43.3131919 -75.7865901 2015-04-16 13:34:00 obsr1842004 S22894260 Traveling P22 EBIRD 113.0 8.047 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291350231 2021-03-26 06:29:56.44369 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-01-16 07:40:00 obsr2449897 S21373254 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292851684 2015-01-23 22:44:07 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Fort Pond Bay L1318580 H 41.0454616 -71.9627008 2015-01-18 13:42:00 obsr186539 S21511560 Stationary P21 EBIRD 10.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310522439 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-16 07:30:00 obsr139757 S22898374 Traveling P22 EBIRD 330.0 4.828 20.0 1 G1222234 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309104884 2022-03-05 22:03:50.715584 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-11 08:10:00 obsr1544235 S22801161 Traveling P22 EBIRD 150.0 3.219 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306890723 2021-03-24 20:53:39.352228 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-04-01 obsr1591201 S22638983 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315317132 2021-04-01 11:15:31.646886 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 08:30:00 obsr904434 S23199853 Traveling P22 EBIRD 135.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309116752 2021-04-01 10:53:25.818871 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 60 United States US New York US-NY Cortland US-NY-023 28.0 US-NY-Cortland-2750 NY-13 L3555287 P 42.668678 -76.095937 2015-04-11 13:40:00 obsr887540 S22801906 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289176257 2021-09-19 18:57:52.903665 16285 species avibase-5BC4E0EF Willow Flycatcher Empidonax traillii N 12 United States US New York US-NY New York US-NY-061 30.0 Morningside Park, Manhattan L1799559 H 40.8067376 -73.9580993 2015-01-04 13:50:00 obsr1706920 S21198659 Traveling P22 EBIRD 90.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305967722 2021-03-23 16:30:20.514143 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Oswego US-NY-075 US-NY_757 13.0 Derby Hill Hawk Watch--South Lookout L109140 H 43.5166667 -76.2333333 2015-03-24 11:15:00 obsr2279567 S22569278 Stationary P21 EBIRD 67.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288763812 2021-12-03 21:50:44.732892 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 30 United States US New York US-NY Richmond US-NY-085 30.0 Great Kills Park L296377 H 40.5481454 -74.1241949 2015-01-03 12:31:00 obsr1893950 S21164069 Traveling P22 EBIRD 20.0 1.609 2.0 1 G1093019 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305774623 2021-03-19 16:14:11.035882 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 3 United States US New York US-NY Cortland US-NY-023 28.0 NYS Rte 11, Blodgett Mills to Messengerville L3448402 P 42.5350579 -76.0907722 2015-03-28 08:36:00 obsr931232 S22555136 Traveling P22 EBIRD 24.0 9.656 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316158297 2021-04-01 12:32:15.282601 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus 18 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-05-05 12:15:00 obsr547602 S23246260 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294075730 2021-03-30 19:13:38.458673 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 20 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay inlset L3328207 P 43.2301957 -77.5360107 2015-01-25 obsr1427428 S21608484 Historical P62 EBIRD 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324010690 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 09:45:00 obsr1408339 S23708638 Traveling P22 EBIRD 60.0 1.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321047713 2021-03-30 19:13:38.458673 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 5 United States US New York US-NY Monroe US-NY-055 US-NY_1723 Braddock Bay--West Spit L293051 H 43.3191364 -77.7141094 2015-05-18 17:48:00 obsr934639 S23521282 Traveling P22 EBIRD 92.0 1.207 2.0 1 G1337410 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312682215 2015-04-24 22:45:42 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 3 Male, Adult (2) United States US New York US-NY Suffolk US-NY-103 US-NY_2800 30.0 Hither Hills SP L477253 H 41.0165603 -72.0201713 2015-04-24 17:15:00 obsr538233 S23040759 Traveling P22 EBIRD 75.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290246980 2015-01-10 17:30:06 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 35 United States US New York US-NY Suffolk US-NY-103 30.0 Napeague L1066887 P 41.0039981 -72.0699692 2015-01-10 13:15:00 obsr706483 S21284240 Stationary P21 EBIRD 15.0 8.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305622839 2018-08-04 17:03:47 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 4 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Perpendicular Pond L1341651 H 40.5154804 -74.2136955 2015-03-27 15:24:00 obsr1958124 S22543479 Traveling P22 EBIRD 8.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310239909 2021-03-26 06:29:56.44369 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Monroe US-NY-055 13.0 Highland Park, Rochester L140436 H 43.1305366 -77.6064171 2015-04-15 08:15:00 obsr1962295 S22878460 Traveling P22 EBIRD 45.0 0.483 2.0 1 G1220952 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296369097 2021-04-01 11:30:42.037277 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia N 8 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-02-11 12:00:00 obsr2883401 S21791999 Traveling P22 EBIRD 30.0 1.609 2.0 1 G1144414 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299912825 2021-03-24 19:19:28.646223 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Allegany US-NY-003 28.0 Whitesville, NY L1864635 P 42.037373 -77.7663374 2015-02-27 07:45:00 obsr2700440 S22096408 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316558723 2021-03-26 07:56:20.588749 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 3 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-06 12:10:00 obsr2505956 S23270080 Rusty Blackbird Spring Migration Blitz P41 EBIRD 200.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320704987 2022-01-20 09:38:40.245267 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-05-17 06:15:00 obsr2303787 S23500692 Traveling P22 EBIRD 373.0 4.023 20.0 1 G1275330 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313098566 2021-03-26 06:20:10.658048 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N 2 United States US New York US-NY Genesee US-NY-037 13.0 John White WMA L748711 H 43.077364 -78.3870627 2015-04-26 11:24:00 obsr1092576 S23066032 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290125985 2015-01-10 12:15:16 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Columbia US-NY-021 14.0 Austerlitz L207556 P 42.3036668 -73.5189287 2015-01-09 09:00:00 obsr712039 S21273828 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316193135 2015-05-05 17:49:06 303 species avibase-B59E1863 Canada Goose Branta canadensis 11 United States US New York US-NY Madison US-NY-053 13.0 Nelson Swamp L782696 P 42.8897689 -75.8154273 2015-05-05 15:30:00 obsr2716320 S23248371 Traveling P22 EBIRD 73.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303574449 2021-04-26 04:57:02.963704 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-16 08:45:00 obsr2363365 S22385946 Traveling P22 EBIRD 352.0 3.219 2.0 1 G1182621 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290842473 2021-03-24 19:35:34.045988 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Erie US-NY-029 13.0 Reinstein Woods Nature Preserve L692296 H 42.8874107 -78.7166119 2015-01-13 13:40:00 obsr2939916 S21331798 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313776154 2021-03-19 16:19:20.977326 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe 2 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-28 10:00:00 obsr2939916 S23108229 Traveling P22 EBIRD 139.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306400584 2021-03-30 19:03:28.117389 505 species avibase-C732CB10 American Black Duck Anas rubripes 200 United States US New York US-NY Cayuga US-NY-011 13.0 NE Cayuga Lake North of Railroad Tracks L99625 H 42.9339927 -76.7278183 2015-03-29 14:21:00 obsr2683910 S22601838 Traveling P22 EBIRD 28.0 2.414 2.0 1 G1198688 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306474439 2021-03-23 17:39:28.36772 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 3 Male, Adult (2); Female, Adult (1) United States US New York US-NY Tioga US-NY-107 28.0 Confluence Park, Owego L2011248 H 42.0957386 -76.2724543 2015-03-30 18:05:00 obsr317968 S22607842 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308285699 2022-03-05 22:03:50.715584 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 35 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-07 08:45:00 obsr444155 S22740717 Traveling P22 EBIRD 300.0 8.047 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322339859 2015-05-23 20:31:26 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica 3 United States US New York US-NY Essex US-NY-031 US-NY_815 13.0 Crown Point State Historic Site L304736 H 44.0304348 -73.4355471 2015-05-19 07:55:00 obsr2398987 S23600412 Traveling P22 EBIRD 250.0 1.609 4.0 1 G1286335 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288709017 2022-02-17 14:32:23.002448 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-01-03 08:32:00 obsr1605975 S21159756 Traveling P22 EBIRD 148.0 2.414 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320463844 2021-04-01 11:24:19.637193 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Firehouse Woods L256089 H 43.290592 -77.6757646 2015-05-16 09:30:00 obsr1030861 S23487995 Traveling P22 EBIRD 120.0 0.402 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288558708 2021-04-01 12:32:15.282601 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Nassau US-NY-059 30.0 Sands Point Preserve L293460 H 40.8591053 -73.6970283 2015-01-02 14:00:00 obsr547602 S21147678 Traveling P22 EBIRD 120.0 2.414 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307786265 2021-11-09 21:57:39.739056 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 5 United States US New York US-NY Ulster US-NY-111 13.0 black creek preserve L3541148 P 41.8208606 -73.9587005 2015-04-05 08:50:00 obsr187701 S22703854 Traveling P22 EBIRD 60.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303840986 2021-03-24 05:37:45.927792 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 5 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-03-18 10:41:00 obsr252591 S22406769 Traveling P22 EBIRD 20.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310094765 2021-03-23 16:48:08.60516 616 species avibase-25C94A8F Greater Scaup Aythya marila 35 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Visitor Center area L462778 H 42.9669441 -76.7409772 2015-04-13 08:45:00 obsr2683910 S22868758 Traveling P22 EBIRD 14.0 0.483 2.0 1 G1220001 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317377525 2021-03-26 06:17:19.712573 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-08 11:00:00 obsr1379161 S23316091 Stationary P21 EBIRD 210.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304650646 2018-08-04 17:02:29 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 2 United States US New York US-NY Suffolk US-NY-103 30.0 North Sea, 350-380 Towd Point Road L2182723 P 40.94628 -72.41517 2015-03-22 14:48:00 obsr613775 S22468265 Traveling P22 EBIRD 9.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311017025 2021-03-19 16:44:35.607263 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Monroe US-NY-055 13.0 Tinker Nature Park L946685 H 43.0670694 -77.57339 2015-04-16 09:30:00 obsr2504709 S22930542 Traveling P22 EBIRD 70.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322488583 2021-03-26 06:38:32.090082 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Montgomery US-NY-057 13.0 Rothmeyer Road L3668471 P 42.9010558 -74.2827702 2015-05-24 09:30:00 obsr286403 S23608932 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314180936 2016-12-24 23:31:33 27616 species avibase-D77E4B41 American Robin Turdus migratorius 7 United States US New York US-NY Suffolk US-NY-103 US-NY_1757 Robert Moses SP L268000 H 40.6242696 -73.2622342 2015-04-29 16:10:00 obsr1137265 S23133435 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311044907 2021-03-26 07:07:10.758746 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Richmond US-NY-085 30.0 Clove Lakes Park L300517 H 40.6203877 -74.1149795 2015-04-18 13:22:00 obsr155915 S22932303 Traveling P22 EBIRD 85.0 2.414 3.0 1 G1224790 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301392147 2015-03-07 13:29:12 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Chenango US-NY-017 28.0 US-NY-Afton-1000–1090 State Highway 41 L3461311 P 42.258 -75.53972 2015-03-07 13:17:00 obsr1696616 S22209752 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308111930 2021-04-01 11:15:31.646886 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-06 14:00:00 obsr2448957 S22727356 Traveling P22 EBIRD 240.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308001000 2018-08-04 17:05:15 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 Male, Adult (1) United States US New York US-NY Onondaga US-NY-067 13.0 Manlius Duck Pond L3543431 P 43.0029994 -75.9828293 2015-04-03 15:15:00 obsr2159464 S22719249 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305141243 2021-04-01 11:15:31.646886 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-24 13:15:00 obsr2448957 S22506112 Traveling P22 EBIRD 300.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291401534 2021-03-30 19:13:38.458673 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 15 United States US New York US-NY Monroe US-NY-055 13.0 Irondequoit Bay Outlet (Pier and Marine Park) L131149 H 43.2345314 -77.5347137 2015-01-17 08:00:00 obsr991026 S21377336 Stationary P21 EBIRD 43.0 1.0 1 G1114599 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294733439 2021-03-23 17:32:20.03109 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 2 United States US New York US-NY Onondaga US-NY-067 13.0 Fabius Palmer Rd L1189889 P 42.8773793 -76.0816956 2015-01-24 11:00:00 obsr2290617 S21660288 Traveling P22 EBIRD 25.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318268874 2021-11-09 19:02:27.638861 11528 species avibase-F3DA111C Merlin Falco columbarius 1 United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-05-10 08:30:00 obsr2103727 S23365490 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322161659 2021-03-19 16:44:35.607263 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 2 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-05-23 08:05:00 obsr2364166 S23590692 Traveling P22 EBIRD 100.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292688359 2021-11-09 20:42:30.376146 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 80 United States US New York US-NY Putnam US-NY-079 28.0 Lake Mahopac L3310923 P 41.3752628 -73.7331533 2015-01-22 11:20:00 obsr979921 S21498853 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS312841828 2018-12-30 09:57:30 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 10 United States US New York US-NY Saratoga US-NY-091 13.0 Ballston Creek Preserve L2837609 H 42.9666232 -73.8342962 2015-04-25 10:28:00 obsr119187 S23050588 Traveling P22 EBIRD 72.0 0.805 2.0 1 G1235198 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296145051 2019-03-18 14:16:16 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-02-11 13:15:00 obsr2744341 S21772534 Stationary P21 EBIRD 35.0 2.0 1 G1143140 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289084541 2022-03-06 12:39:33.700954 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 30 United States US New York US-NY Nassau US-NY-059 30.0 Mill Pond Preserve, Wantagh L283126 H 40.666691 -73.5189189 2015-01-03 14:00:00 obsr1494607 S21191589 Traveling P22 EBIRD 20.0 0.322 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305765865 2021-11-15 03:06:58.889978 7261 species avibase-86D45B8F Green Heron Butorides virescens 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-28 09:30:00 obsr2797341 S22554511 Traveling P22 EBIRD 120.0 0.805 4.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311666910 2015-04-20 18:55:47 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Tioga US-NY-107 28.0 Rob's House L3436938 P 42.1149 -76.375 2015-04-20 14:33:00 obsr2426404 S22971998 Stationary P21 EBIRD 1.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314772042 2015-05-01 21:53:21 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 2 United States US New York US-NY Greene US-NY-039 13.0 south mountain palenville L3533498 P 42.1933333 -74.026486 2015-04-30 08:00:00 obsr594889 S23169733 Stationary P21 EBIRD 120.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301891583 2019-12-29 18:20:03 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Suffolk US-NY-103 30.0 Edwards Ave. Sod Fields L3100005 H 40.9378638 -72.7490187 2015-03-08 14:00:00 obsr2338506 S22248376 Stationary P21 EBIRD 20.0 2.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS304618433 2015-03-22 12:53:54 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 US-NY-Brooktondale-238 Banks Rd L3506008 P 42.391198 -76.435625 2015-03-22 12:16:00 obsr887540 S22465972 Stationary P21 EBIRD 37.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307489759 2021-03-24 20:53:39.352228 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 6 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-04-03 obsr1591201 S22683060 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303546114 2015-07-12 16:51:07 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Erie US-NY-029 13.0 Knox Farm SP L160588 H 42.7715237 -78.636327 2015-03-16 09:30:00 obsr2825336 S22383924 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299951252 2021-03-24 19:24:40.212356 16296 species avibase-F5837054 Least Flycatcher Empidonax minimus 2 United States US New York US-NY Chautauqua US-NY-013 13.0 Pine Drive, Fredonia, NY L1984200 P 42.4315659 -79.3295288 2015-02-27 07:30:00 obsr479109 S22099476 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298480762 2021-04-01 11:54:40.172593 27616 species avibase-D77E4B41 American Robin Turdus migratorius 40 United States US New York US-NY Richmond US-NY-085 Midland Beach L468389 H 40.571686 -74.0854025 2015-02-19 12:40:00 obsr1893950 S21980816 Traveling P22 EBIRD 11.0 0.322 2.0 1 G1153092 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316698776 2018-08-04 17:15:04 6339 species avibase-8535345B Herring Gull Larus argentatus 3 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-06 17:30:00 obsr376929 S23278122 Traveling P22 EBIRD 135.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310260184 2018-08-04 17:09:18 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 5 United States US New York US-NY Wyoming US-NY-121 28.0 Beaver Meadow Audubon Center L160586 H 42.6730027 -78.3831251 2015-04-15 14:34:00 obsr558077 S22879808 Traveling P22 EBIRD 123.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312867774 2021-04-01 11:15:31.646886 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-25 09:30:00 obsr876649 S23052111 Traveling P22 EBIRD 250.0 5.633 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312803657 2021-04-01 12:14:19.266649 456 species avibase-D201EB72 American Wigeon Mareca americana 1 United States US New York US-NY Suffolk US-NY-103 30.0 Nissequogue River SP L501705 H 40.9004069 -73.2310757 2015-04-25 11:14:00 obsr1228860 S23048560 Traveling P22 EBIRD 109.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290414856 2021-03-26 07:20:31.408164 30494 species avibase-240E3390 House Sparrow Passer domesticus 5 United States US New York US-NY Suffolk US-NY-103 30.0 Marratooka L143474 P 40.9934692 -72.5238113 2015-01-11 13:09:00 obsr2485753 S21297639 Stationary P21 EBIRD 36.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302589106 2021-03-26 06:29:56.44369 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 2 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-03-10 08:10:00 obsr1245041 S22308842 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308772774 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-07 08:26:00 obsr1548221 S22778170 Traveling P22 EBIRD 57.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289173467 2021-03-26 06:17:19.712573 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 2 United States US New York US-NY Erie US-NY-029 13.0 DM Mark's yard L1792885 P 43.0216338 -78.8082193 2015-01-03 08:00:00 obsr2939916 S21198443 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311727627 2015-04-20 22:43:08 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 109 United States US New York US-NY Erie US-NY-029 13.0 Hamburg Hawk Watch L2737378 P 42.7558333 -78.8616667 2015-04-20 09:30:00 obsr436899 S22975919 Stationary P21 EBIRD 270.0 4.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299013172 2021-04-01 12:11:50.996293 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Seneca US-NY-099 13.0 Canoga area (Martin/Seybolt/Hoster) L3446818 P 42.8619989 -76.7848206 2015-02-22 12:41:00 obsr1655171 S22025332 Traveling P22 EBIRD 49.0 9.656 3.0 1 G1156981 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289033442 2021-04-01 12:14:19.266649 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 4 United States US New York US-NY Suffolk US-NY-103 US-NY_766 Huntington Harbor, Halesite L1846592 H 40.8892375 -73.4173635 2015-01-04 12:10:00 obsr1832543 S21187606 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303155051 2021-03-24 20:33:47.533911 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-120 Vine St L2601998 P 42.438552 -76.474657 2015-03-14 09:30:00 obsr2137468 S22352768 Stationary P21 EBIRD 30.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322985430 2021-03-19 16:43:17.120646 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Madison US-NY-053 28.0 GeniSteve L3673435 P 42.8032 -75.50905 2015-05-24 17:49:00 obsr589593 S23638942 Stationary P21 EBIRD 60.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293184578 2021-03-30 19:29:33.633096 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 60 United States US New York US-NY Suffolk US-NY-103 30.0 Avalon Gardens and East Farm Preserve L525770 H 40.9118667 -73.1454921 2015-01-25 15:45:00 obsr1228860 S21537701 Traveling P22 EBIRD 58.0 1.127 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS412867420 2016-06-19 01:07:28 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 75 United States US New York US-NY Washington US-NY-115 13.0 Champlain Canalway FTAN L3064247 P 43.3913549 -73.4904778 2015-04-17 obsr2943723 S30294210 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313104370 2021-03-23 16:52:36.900075 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY Suffolk US-NY-103 30.0 North Fork Preserve L1421657 H 40.97294 -72.6178146 2015-04-26 10:10:00 obsr2485753 S23066387 Traveling P22 EBIRD 97.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320729296 2018-08-06 22:30:06 8114 species avibase-90B13ACF Rough-legged Hawk Buteo lagopus 3 United States US New York US-NY Albany US-NY-001 US-NY_801 13.0 John Boyd Thacher SP--Overlook L2142779 H 42.6506584 -74.0063524 2015-05-16 07:47:00 obsr2321296 S23501977 Traveling P22 EBIRD 78.0 2.414 2.0 1 G1276030 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313358312 2021-04-01 11:24:19.637193 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 7 United States US New York US-NY Monroe US-NY-055 13.0 43.1743x-77.5539 - Apr 26, 2015, 1:59 PM L3593895 P 43.174404 -77.553889 2015-04-26 12:15:00 obsr991026 S23081586 Traveling P22 EBIRD 180.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294104518 2021-03-26 06:29:56.44369 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Monroe US-NY-055 13.0 Yard, Gates L2749793 P 43.1259065 -77.6927657 2015-01-30 17:20:00 obsr745890 S21610400 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301189732 2017-02-26 14:42:19 483 species avibase-85625D75 Mallard Anas platyrhynchos 10 United States US New York US-NY Tompkins US-NY-109 13.0 Taughannock Falls SP--North Point L2721599 H 42.548268 -76.601241 2015-03-06 08:42:00 obsr1092576 S22192695 Stationary P21 EBIRD 14.0 2.0 1 G1168148 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298111232 2021-04-01 11:24:19.637193 303 species avibase-B59E1863 Canada Goose Branta canadensis N 8 United States US New York US-NY Monroe US-NY-055 Ontario Beach and Charlotte Pier L140437 H 43.2580188 -77.6071545 2015-02-17 12:50:00 obsr2914424 S21948821 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311295344 2021-03-24 21:12:00.789723 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 1 United States US New York US-NY Schuyler US-NY-097 13.0 Williamee Rd. x Updyke Rd. fields (NE of intersection) L2687064 H 42.4857069 -76.7084312 2015-04-19 06:19:00 obsr2436517 S22947544 Traveling P22 EBIRD 18.0 0.644 2.0 1 G1226352 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302912300 2021-03-26 07:30:35.289997 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis N 2 United States US New York US-NY Tompkins US-NY-109 13.0 McGovern Fields L1115255 H 42.4361903 -76.4522052 2015-03-13 17:21:00 obsr1318356 S22333209 Traveling P22 EBIRD 9.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291101064 2021-03-24 20:33:47.533911 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 7 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Road (Sanctuary) L1011608 P 42.4772168 -76.4504993 2015-01-15 08:53:00 obsr1062070 S21352965 Traveling P22 EBIRD 24.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320870636 2018-08-06 22:30:20 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Clinton US-NY-019 13.0 Little Ausable River Trail L3644675 P 44.5782182 -73.5205615 2015-05-17 08:00:00 obsr653254 S23510669 Traveling P22 EBIRD 180.0 4.828 13.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308012985 2021-03-30 19:03:28.117389 681 species avibase-407E2CA8 Common Merganser Mergus merganser 1 ON C4 ON United States US New York US-NY Cayuga US-NY-011 13.0 Mud Lock & north end of Cayuga Lake, Region 3 L1001064 P 42.9464534 -76.7338479 2015-04-05 09:37:00 obsr1167884 S22720051 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321174102 2018-08-06 22:30:18 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 2 United States US New York US-NY Genesee US-NY-037 13.0 Francis Road, Batavia, NY L1421017 P 42.9423971 -78.1622197 2015-05-17 06:40:00 obsr393804 S23529363 Traveling P22 EBIRD 60.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308808741 2021-03-23 17:00:13.087107 26278 species avibase-A381417F House Wren Troglodytes aedon 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods Rd. L901738 H 42.4749141 -76.4503813 2015-04-10 08:11:00 obsr2211210 S22780829 Traveling P22 EBIRD 14.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306567511 2021-03-23 17:26:08.495143 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-03-31 11:30:00 obsr1693806 S22615056 Traveling P22 EBIRD 75.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310854761 2021-03-26 07:30:35.289997 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 3 United States US New York US-NY Tompkins US-NY-109 28.0 Fall Creek Rd. wetlands L1111423 H 42.5171015 -76.3409478 2015-04-18 09:04:00 obsr1655171 S22920396 Stationary P21 EBIRD 3.0 2.0 1 G1229836 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1306324499 2021-12-30 20:22:53.006453 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Madison US-NY-053 13.0 Oneida (I-90) L17256250 P 43.105732 -75.6874058 2015-03-20 14:45:00 obsr2155450 S99723947 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312728409 2015-05-08 13:53:16 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 2 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm sugarbush transect L3270338 P 42.3482684 -76.2983322 2015-04-25 08:15:00 obsr455249 S23043781 Traveling P22 EBIRD 12.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322225829 2021-03-19 16:29:59.503892 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Jefferson US-NY-045 13.0 Fort Drum L467369 H 44.0669903 -75.7229233 2015-05-23 07:14:00 obsr2950436 S23594005 Traveling P22 EBIRD 400.0 28.967 16.0 1 G1288419 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304068432 2021-03-26 07:56:20.588749 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-03-19 13:30:00 obsr2505956 S22424561 Rusty Blackbird Spring Migration Blitz P41 EBIRD 40.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318268882 2021-11-09 19:02:27.638861 6189 species avibase-39F29B55 Common Murre Uria aalge 1 Male, Immature (1) United States US New York US-NY Dutchess US-NY-027 13.0 Vassar Farm and Ecological Preserve L480208 H 41.6701147 -73.8971238 2015-05-10 08:30:00 obsr2103727 S23365490 Traveling P22 EBIRD 120.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298953608 2021-03-26 07:17:57.136956 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--East Rd. L99686 H 43.009646 -76.7582003 2015-02-22 11:55:00 obsr1092576 S22020525 Traveling P22 EBIRD 9.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306961294 2015-04-02 14:37:42 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-04-02 12:31:00 obsr1472872 S22644510 Traveling P22 EBIRD 104.0 6.115 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291109191 2016-10-10 10:35:42 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 24 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Inlet (between Freeport and mouth of Jones Inlet) L1072901 P 40.6045694 -73.570118 2015-01-11 06:45:00 obsr598381 S21353756 Traveling P22 EBIRD 75.0 18.99 44.0 1 G1108327 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291405497 2018-08-04 16:53:27 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 20 United States US New York US-NY Albany US-NY-001 13.0 Crescent Power Plant L270564 H 42.8052178 -73.7234754 2015-01-17 09:20:00 obsr2321296 S21377671 Stationary P21 EBIRD 8.0 2.0 1 G1112757 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312761715 2022-02-04 06:14:13.892644 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 100 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Jacqueline Kennedy Onassis Reservoir L191107 H 40.786003 -73.96196 2015-04-25 10:45:00 obsr613775 S23045920 Traveling P22 EBIRD 25.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294116905 2021-04-01 12:11:50.996293 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 6 United States US New York US-NY Seneca US-NY-099 13.0 West Wyckoff Rd., Ovid L3328627 P 42.64296 -76.79539 2015-01-31 10:15:00 obsr2211210 S21611594 Traveling P22 EBIRD 14.0 0.805 1.0 1 G1130474 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317028132 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-07 16:15:00 obsr1659461 S23296662 Traveling P22 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309958105 2018-08-04 17:09:07 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 2 United States US New York US-NY Tioga US-NY-107 28.0 Carantouan Greenway, Wildwood Nature Reserve L677177 H 42.0015051 -76.4881897 2015-04-14 08:35:00 obsr1565981 S22859064 Traveling P22 EBIRD 56.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293176093 2021-03-30 19:39:10.250398 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis X United States US New York US-NY Nassau US-NY-059 30.0 Sands Point Preserve L293460 H 40.8591053 -73.6970283 2015-01-11 obsr2277801 S21537016 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304496470 2021-03-26 06:29:56.44369 8857 species avibase-26BA25EF Northern Saw-whet Owl Aegolius acadicus 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-03-21 18:03:00 obsr934639 S22457047 Traveling P22 EBIRD 30.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314994964 2021-04-01 11:15:31.646886 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 08:30:00 obsr1102914 S23182182 Traveling P22 EBIRD 240.0 3.219 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311909951 2021-04-01 11:30:42.037277 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 5 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Strawberry Field L787059 H 40.7760568 -73.9745951 2015-04-21 07:40:00 obsr1706920 S22987653 Traveling P22 EBIRD 45.0 0.161 14.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288633445 2021-03-26 08:14:57.071052 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis N X United States US New York US-NY Westchester US-NY-119 30.0 Orchard St. Yard White Plains L1072765 P 41.0483332 -73.7630754 2015-01-02 10:30:00 obsr2918150 S21153799 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320398943 2021-04-01 12:30:15.438381 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus N 8 United States US New York US-NY Herkimer US-NY-043 13.0 Eysaman Rd L3649039 P 43.0523792 -74.842279 2015-05-16 10:00:00 obsr1708031 S23484413 Traveling P22 EBIRD 60.0 8.047 4.0 1 G1274650 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289440215 2018-08-04 16:52:48 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Livingston US-NY-051 13.0 Route 256 L1001935 P 42.587972 -77.6973724 2015-01-05 12:18:00 obsr72341 S21218990 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322749590 2018-08-06 22:31:00 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Hamilton US-NY-041 14.0 Stanton Road, Indian Lake, NY L2380943 P 43.774555 -74.256253 2015-05-24 07:31:00 obsr2177751 S23624225 Stationary P21 EBIRD 840.0 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288287262 2018-08-04 16:52:18 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 3 United States US New York US-NY Richmond US-NY-085 Sprague Ave. Waterfront L2167027 H 40.4999968 -74.2364216 2015-01-01 10:55:00 obsr1893950 S21125161 Stationary P21 EBIRD 6.0 2.0 1 G1088909 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301849031 2021-03-26 06:09:25.361188 6339 species avibase-8535345B Herring Gull Larus argentatus N 20 United States US New York US-NY Broome US-NY-007 28.0 River Rd., Endwell L274662 H 42.1124688 -76.0017087 2015-03-08 15:00:00 obsr800690 S22245186 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293927284 2021-03-26 06:39:43.334073 5653 species avibase-981CE782 American Oystercatcher Haematopus palliatus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Evodia Field L2591837 H 40.7770045 -73.9688114 2015-01-29 13:20:00 obsr856524 S21596673 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308079796 2021-03-19 16:27:31.421791 242 species avibase-D3A260BC Snow Goose Anser caerulescens 2 United States US New York US-NY Genesee US-NY-037 13.0 old creek rd L3503172 P 42.9419729 -78.2103825 2015-04-06 09:26:00 obsr393804 S22724776 Traveling P22 EBIRD 29.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321783106 2021-04-01 12:26:53.827486 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-05-21 16:39:00 obsr1154 S23566517 Traveling P22 EBIRD 105.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316062091 2021-11-15 03:06:58.889978 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-29 12:24:00 obsr1552744 S23241180 Traveling P22 EBIRD 80.0 2.253 3.0 1 G1243041 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315115100 2021-03-26 07:53:57.664705 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor N 12 United States US New York US-NY Livingston US-NY-051 13.0 878 Leicester Rd. L1057213 P 42.9481576 -77.8706968 2015-05-02 07:43:00 obsr1060479 S23188912 Stationary P21 EBIRD 700.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305214117 2018-08-04 17:02:50 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Tompkins US-NY-109 13.0 CLO Office-2M15 L1313831 P 42.4800694 -76.4515024 2015-03-25 10:30:00 obsr2074043 S22511553 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291269956 2015-01-16 12:32:37 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 5 United States US New York US-NY Ontario US-NY-069 13.0 yard - 5030 Butler Rd. L824954 P 42.8530016 -77.2913074 2015-01-16 09:30:00 obsr983655 S21366870 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308158553 2015-04-06 22:30:09 32033 issf avibase-0B1B2EB6 Fox Sparrow Passerella iliaca Fox Sparrow (Red) Passerella iliaca iliaca/zaboria 2 Male, Adult (2) United States US New York US-NY Fulton US-NY-035 13.0 Co Rt 151 - Town of Oppenheim L622995 P 43.0672575 -74.7324371 2015-04-05 17:06:00 obsr2694889 S22730747 Traveling P22 EBIRD 7.0 1.77 4.0 1 G1209044 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315905066 2021-03-26 06:17:19.712573 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 2 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 (1) Home, Grand Island L1903774 P 42.9859226 -79.0076402 2015-05-04 obsr2096529 S23231843 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301663826 2022-03-08 13:50:22.901821 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Rockland US-NY-087 30.0 Piermont Pier L275331 H 41.0427778 -73.8975 2015-03-08 12:03:00 obsr1732267 S22229584 Traveling P22 EBIRD 60.0 2.414 2.0 1 G1171958 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321762751 2020-07-27 15:41:41 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Columbia US-NY-021 14.0 Harlem Valley Rail Trail--Copake Falls to Under Mountain Rd. L5803911 H 42.0757413 -73.5303798 2015-05-21 09:10:00 obsr798742 S23565264 Traveling P22 EBIRD 245.0 6.035 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299535296 2021-11-09 22:04:47.967972 33424 species avibase-7C2FCB13 Rose-breasted Grosbeak Pheucticus ludovicianus 18 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-22 15:05:00 obsr921269 S22067579 Traveling P22 EBIRD 45.0 1.609 26.0 1 G1159576 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304693585 2022-02-17 14:32:23.002448 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-22 13:15:00 obsr2499879 S22471640 Traveling P22 EBIRD 105.0 5.633 3.0 0 G1189250 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311941373 2021-04-01 11:15:31.646886 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 20 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-21 15:15:00 obsr454647 S22989827 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294871412 2021-03-26 07:56:20.588749 26022 species avibase-0716A71C Red-breasted Nuthatch Sitta canadensis 2 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-01-24 09:00:00 obsr2218212 S21672045 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308207865 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-07 06:43:00 obsr1433400 S22734934 Traveling P22 EBIRD 129.0 4.667 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315378748 2021-04-01 11:15:31.646886 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 06:27:00 obsr2519357 S23203074 Traveling P22 EBIRD 320.0 8.047 4.0 1 G1249270 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306075893 2021-03-30 12:05:58.533651 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-03-29 09:30:00 obsr1189028 S22576981 Traveling P22 EBIRD 195.0 4.023 4.0 1 G1196569 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324196774 2018-08-06 22:31:30 20776 species avibase-43E56D2C Fish Crow Corvus ossifragus 5 United States US New York US-NY Broome US-NY-007 28.0 Jones Park L1598748 H 42.0156115 -75.983731 2015-05-31 07:05:00 obsr1830659 S23720482 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299096021 2018-08-04 16:58:03 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 40 United States US New York US-NY Seneca US-NY-099 13.0 Varick--Cayuga Lake from Town Line Rd. L2716130 P 42.8092 -76.75607 2015-02-22 13:43:00 obsr2683910 S22034214 Traveling P22 EBIRD 16.0 2.414 3.0 1 G1156982 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307408236 2021-03-30 19:29:33.633096 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos N 4 United States US New York US-NY Suffolk US-NY-103 30.0 Frank Melville Memorial Park and Mill Pond L1114075 H 40.946195 -73.1156445 2015-04-04 09:40:00 obsr54384 S22677570 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315543540 2015-05-03 21:53:00 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Valerie Lane, Jamestown L1742369 P 42.082041 -79.2666515 2015-05-03 11:10:00 obsr1380963 S23212014 Stationary P21 EBIRD 380.0 1.0 1 G1250219 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313868840 2020-07-14 13:04:34 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 2 United States US New York US-NY Lewis US-NY-049 14.0 Castorland- Ridge Rd L3597879 P 43.886415 -75.50903 2015-04-28 13:42:00 obsr642516 S23111273 Traveling P22 EBIRD 107.0 16.093 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310152911 2021-03-24 20:06:25.370375 27616 species avibase-D77E4B41 American Robin Turdus migratorius 3 United States US New York US-NY Ontario US-NY-069 13.0 NY Ontario: Home L3158249 P 42.7894329 -77.5681436 2015-04-14 06:50:00 obsr39511 S22872651 Stationary P21 EBIRD 190.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322670477 2015-11-20 20:21:55 337 species avibase-694C127A Mute Swan Cygnus olor 6 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP L109143 H 43.3613788 -77.9538738 2015-05-18 08:32:00 obsr334398 S23619277 Traveling P22 EBIRD 24.0 0.805 2.0 0 G1472325 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289594493 2021-11-09 21:56:59.045559 279 species avibase-3E04020B Brant Branta bernicla 3 United States US New York US-NY Ulster US-NY-111 28.0 Wallkill Valley L3272266 P 41.719536 -74.1389608 2015-01-03 08:00:00 obsr1110743 S21231313 Traveling P22 EBIRD 300.0 24.14 35.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314161797 2021-04-01 12:18:57.910168 5976 species avibase-F4829920 American Woodcock Scolopax minor 1 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-29 08:07:00 obsr2683910 S23132213 Traveling P22 EBIRD 25.0 0.644 2.0 1 G1243203 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS342385893 2021-11-15 03:06:58.889978 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-12 19:00:00 obsr189780 S25034186 Traveling P22 EBIRD 45.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301814980 2021-03-24 20:33:47.533911 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 3 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-02-28 13:55:00 obsr241086 S22242629 Traveling P22 EBIRD 55.0 1.609 2.0 1 G1170864 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291617066 2018-08-04 16:53:30 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-17 13:00:00 obsr2555972 S21394483 Traveling P22 EBIRD 45.0 0.483 2.0 1 G1113328 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310025583 2021-03-30 19:22:51.561415 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia N X United States US New York US-NY Queens US-NY-081 US-NY_1722 Jamaica Bay Wildlife Refuge--West Pond L109145 H 40.6188482 -73.8307995 2015-04-14 10:20:00 obsr2505956 S22863740 Rusty Blackbird Spring Migration Blitz P41 EBIRD 180.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316019326 2021-03-26 07:30:35.289997 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 US-NY-Ithaca-607 Mitchell St L3515630 P 42.437662 -76.476951 2015-04-28 07:30:00 obsr2535282 S23238765 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300638025 2021-04-01 12:26:53.827486 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 61 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-03-02 10:20:00 obsr2855945 S22151737 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319465499 2021-03-26 07:52:59.845315 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Hall Farmhouse & Yards L614478 P 43.1227109 -74.7972608 2015-05-12 07:00:00 obsr1000124 S23433352 Area P23 EBIRD 78.0 2.59 2.0 1 G1270076 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300563536 2018-08-04 16:58:31 16665 species avibase-8D6D5F2B Great Crested Flycatcher Myiarchus crinitus 12 United States US New York US-NY Albany US-NY-001 13.0 Cohoes parking area, N Mohawk St. L3503652 H 42.778496 -73.7006986 2015-03-01 09:32:00 obsr119187 S22146565 Stationary P21 EBIRD 9.0 2.0 1 G1165033 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304930607 2020-03-15 09:14:30 23291 species avibase-58C502EA Barn Swallow Hirundo rustica X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo--Mirror Lake L2809120 H 42.9268351 -78.8632295 2015-03-23 12:05:00 obsr2588479 S22489492 Stationary P21 EBIRD 3.0 3.0 1 G1190509 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319869598 2021-03-30 19:03:28.117389 657 species avibase-B7B1A5DD Black Scoter Melanitta americana N 8 United States US New York US-NY Cayuga US-NY-011 13.0 Fair Haven Beach SP L234417 H 43.3435645 -76.6991904 2015-05-15 09:12:00 obsr2224244 S23456494 Traveling P22 EBIRD 54.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302715920 2021-03-22 09:17:32.016297 32859 species avibase-4D207AF6 Black-and-white Warbler Mniotilta varia 2 Female, Adult (1); Male, Adult (1) United States US New York US-NY Oneida US-NY-065 13.0 13318 L2227321 P 42.91703 -75.26832 2015-03-09 07:30:00 obsr2812831 S22318383 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302657745 2021-03-24 19:27:13.077399 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens N 1 United States US New York US-NY Chemung US-NY-015 28.0 US-NY-Horseheads-1179 Ridge Rd L3092379 P 42.262331 -76.801701 2015-03-12 09:55:00 obsr142874 S22313786 Stationary P21 EBIRD 305.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322763514 2021-03-26 06:29:56.44369 11237 species avibase-00635FF9 Pileated Woodpecker Dryocopus pileatus 2 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-25 07:41:00 obsr334398 S23625071 Traveling P22 EBIRD 107.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313519226 2021-03-24 21:09:00.82373 337 species avibase-694C127A Mute Swan Cygnus olor 1 United States US New York US-NY Rensselaer US-NY-083 14.0 Webster Road, Petersburgh L2995274 P 42.8125725 -73.3311197 2015-04-26 15:00:00 obsr362655 S23091984 Area P23 EBIRD 130.0 8.0937 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319872194 2021-03-26 06:07:45.516082 27065 species avibase-95B77F08 Gray Catbird Dumetella carolinensis X United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-15 06:45:00 obsr2243270 S23456649 Traveling P22 EBIRD 6.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322514102 2021-03-24 19:48:44.880783 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Monroe US-NY-055 US-NY_814 13.0 Hamlin Beach SP--Parking Lot No. 4 (Primary Lakewatch site) L139811 H 43.3670756 -77.9631686 2015-05-24 08:03:00 obsr334398 S23610309 Traveling P22 EBIRD 220.0 0.322 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288232258 2015-01-01 16:11:15 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Nassau US-NY-059 Stepping Stone Park L1403484 H 40.8177813 -73.7565535 2015-01-01 10:30:00 obsr676630 S21120262 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318448217 2021-03-26 06:17:19.712573 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-10 10:35:00 obsr1379161 S23375169 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293206644 2021-04-01 11:15:31.646886 526 species avibase-56CCA717 Northern Pintail Anas acuta X United States US New York US-NY Kings US-NY-047 30.0 Calvert Vaux Park (Dreier-Offerman Park) L351189 H 40.5848762 -73.9945752 2015-01-25 11:25:00 obsr1407710 S21539482 Traveling P22 EBIRD 45.0 1.609 4.0 1 G1122946 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311290533 2021-11-09 21:57:47.943039 6616 species avibase-7E022378 Common Loon Gavia immer 3 United States US New York US-NY Ulster US-NY-111 13.0 Chodikee Lake L3575694 P 41.7757391 -73.983736 2015-04-19 06:30:00 obsr677511 S22947273 Traveling P22 EBIRD 270.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288191653 2021-03-26 08:14:57.071052 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 7 United States US New York US-NY Westchester US-NY-119 30.0 Pruyn Sanctuary L476123 H 41.1919551 -73.777281 2015-01-01 13:00:00 obsr258431 S21116801 Stationary P21 EBIRD 63.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317482295 2021-03-26 07:46:52.994574 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 07:30:00 obsr1119101 S23322630 Traveling P22 EBIRD 180.0 4.023 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308668466 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-09 07:25:00 obsr1077730 S22769871 Traveling P22 EBIRD 360.0 4.828 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302716739 2022-02-17 14:32:23.002448 32850 species avibase-709AF716 Northern Waterthrush Parkesia noveboracensis 8 United States US New York US-NY Kings US-NY-047 30.0 Salt Marsh Nature Center at Marine Park L385839 H 40.599946 -73.9243268 2015-03-12 17:50:00 obsr454647 S22318446 Traveling P22 EBIRD 90.0 0.805 3.0 1 G1178449 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313107914 2021-11-09 21:57:48.330483 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Ulster US-NY-111 13.0 Williams Lake L3591882 P 41.8684423 -74.0782893 2015-04-26 06:00:00 obsr1303376 S23066576 Traveling P22 EBIRD 240.0 0.805 16.0 0 G1237483 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296816116 2021-04-01 12:32:15.282601 26890 species avibase-94A44032 European Starling Sturnus vulgaris N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach SP L167247 H 40.5945237 -73.5104002 2015-02-14 08:30:00 obsr2207991 S21832704 Traveling P22 EBIRD 270.0 8.047 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295514353 2021-03-23 16:39:03.255227 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 5 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-02-08 08:54:00 obsr1958124 S21723256 Traveling P22 EBIRD 30.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293339470 2015-03-24 20:01:59 30494 species avibase-240E3390 House Sparrow Passer domesticus 4 United States US New York US-NY Tompkins US-NY-109 13.0 NY - Ithaca, 212 Tareyton L252844 P 42.4724094 -76.4601243 2015-01-26 07:34:00 obsr2307843 S21549376 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312337558 2021-03-26 06:55:00.227271 303 species avibase-B59E1863 Canada Goose Branta canadensis 5 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Lake, City Pier L357819 H 42.871907 -77.2725534 2015-04-23 14:20:00 obsr983655 S23016117 Traveling P22 EBIRD 15.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318054769 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-09 07:00:00 obsr870166 S23354280 Traveling P22 EBIRD 176.0 5.633 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301811104 2021-04-01 12:43:36.236969 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tioga US-NY-107 28.0 Candor Fire Department L3454101 P 42.2342529 -76.3370365 2015-03-08 14:17:00 obsr2173269 S22242312 Stationary P21 EBIRD 18.0 2.0 1 G1170818 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306479265 2021-03-24 20:23:39.258075 7071 species avibase-3AC46C54 Double-crested Cormorant Nannopterum auritum 8 United States US New York US-NY Suffolk US-NY-103 30.0 Uplands Farm Sanctuary L123000 H 40.8574672 -73.4535553 2015-03-31 09:02:00 obsr1107696 S22608213 Traveling P22 EBIRD 13.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294867064 2021-04-01 12:14:19.266649 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Ponquogue Bridge L593299 H 40.8400478 -72.4976635 2015-01-11 10:00:00 obsr128156 S21671720 Stationary P21 EBIRD 40.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316496293 2015-05-06 13:13:42 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Broome US-NY-007 28.0 Chenango Valley SP L212476 H 42.2064101 -75.8338125 2015-05-01 15:00:00 obsr938548 S23266116 Historical P62 EBIRD 120.0 3.219 40.4686 12.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315283041 2021-11-09 18:43:18.978402 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 3 United States US New York US-NY Dutchess US-NY-027 14.0 Reagan Road Millerton L3292286 P 41.9044809 -73.5126543 2015-05-03 10:27:00 obsr1732267 S23198215 Traveling P22 EBIRD 30.0 1.609 2.0 1 G1249917 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310077378 2021-04-01 10:55:39.308231 622 species avibase-50566E50 Lesser Scaup Aythya affinis 6 United States US New York US-NY Erie US-NY-029 CA-ON_002 13.0 Times Beach Nature Preserve L811486 H 42.8742747 -78.8825647 2015-04-14 10:20:00 obsr916033 S22867529 Traveling P22 EBIRD 95.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303000848 2021-04-01 11:54:40.172593 25942 species avibase-B60B1166 Ruby-crowned Kinglet Corthylio calendula 4 United States US New York US-NY Richmond US-NY-085 30.0 Fort Wadsworth L4195582 H 40.5998449 -74.0536666 2015-03-13 14:15:00 obsr1032565 S22340442 Traveling P22 EBIRD 95.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294325907 2021-03-26 07:07:10.758746 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Richmond US-NY-085 30.0 Moravian Cemetery L467686 H 40.5808128 -74.1169131 2015-02-01 08:59:00 obsr1893950 S21628128 Traveling P22 EBIRD 94.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314856691 2021-03-19 16:44:35.607263 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 14 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area - NCAW L473419 P 43.091096 -77.3856997 2015-05-01 10:55:00 obsr2113616 S23174949 Traveling P22 EBIRD 75.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312137435 2021-04-01 11:15:31.646886 33034 species avibase-6283E61E Pine Warbler Setophaga pinus 5 United States US New York US-NY Kings US-NY-047 Verrazzano Bridge (Shore Promenade) L2729884 P 40.6144737 -74.0385818 2015-04-21 10:30:00 obsr827632 S23002561 Traveling P22 EBIRD 30.0 0.2 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302178437 2021-03-26 06:19:47.07548 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Essex US-NY-031 13.0 Tin Pan Alley L3437247 P 43.834301 -73.42659 2015-03-10 11:23:00 obsr2693145 S22270010 Stationary P21 EBIRD 21.0 2.0 1 G1174680 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306417242 2015-04-09 09:13:50 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Cayuga US-NY-011 13.0 Towpath Machine shop L3285183 P 42.9239768 -76.7298675 2015-03-29 15:16:00 obsr34822 S22603120 Stationary P21 EBIRD 12.0 4.0 0 G1197068 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS311175643 2018-08-04 17:08:37 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Knox-Marsellus Marsh L1280877 H 43.0076202 -76.7529774 2015-04-11 17:39:00 obsr2700277 S22940279 Stationary P21 EBIRD 17.0 2.0 1 G1225651 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297586466 2021-03-26 06:29:56.44369 5362 form avibase-9BEECB7E American Coot Fulica americana American Coot (Red-shielded) Fulica americana (Red-shielded) 4 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-16 11:40:00 obsr934639 S21901382 Traveling P22 EBIRD 80.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315311247 2021-12-08 07:58:41.562209 30836 species avibase-8F268682 American Pipit Anthus rubescens 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-03 08:17:00 obsr2206421 S23199545 Traveling P22 EBIRD 253.0 3.219 2.0 1 G1249071 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309117209 2021-04-01 10:58:47.067498 27389 species avibase-B01E8BD4 Hermit Thrush Catharus guttatus 7 United States US New York US-NY Genesee US-NY-037 13.0 Batavia Wastewater Treatment Plant L224925 H 42.988443 -78.2131344 2015-04-11 09:15:00 obsr1104059 S22801930 Area P23 EBIRD 60.0 121.4057 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302507144 2021-04-01 12:32:15.282601 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-11 14:00:00 obsr916370 S22302137 Traveling P22 EBIRD 120.0 3.38 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295349324 2021-04-01 10:55:39.308231 649 species avibase-624078BA Surf Scoter Melanitta perspicillata 8 United States US New York US-NY Erie US-NY-029 13.0 Buckhorn Island SP L164983 H 43.0606218 -78.9882132 2015-02-07 08:43:00 obsr1603345 S21710150 Traveling P22 EBIRD 238.0 5.23 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320168319 2018-08-06 22:29:37 406 species avibase-27B2749A Wood Duck Aix sponsa X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-11 05:45:00 obsr1009338 S23472575 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295412960 2018-08-04 16:55:49 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Cayuga US-NY-011 13.0 Owasco River Trail L3184005 H 42.9064509 -76.5410735 2015-02-07 14:03:00 obsr214163 S21715052 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317128038 2021-04-01 11:30:42.037277 616 species avibase-25C94A8F Greater Scaup Aythya marila 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Tupelo Meadow L1797864 H 40.7777727 -73.9692761 2015-05-02 08:00:00 obsr1229227 S23302275 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314291977 2021-12-19 10:32:19.574298 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-04-28 19:45:00 obsr1167884 S23140580 Traveling P22 EBIRD 45.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307001995 2018-08-04 17:05:06 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Knox-Marsellus Marsh L1280877 H 43.0076202 -76.7529774 2015-04-02 14:00:00 obsr1446358 S22647861 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300510064 2021-03-24 20:33:47.533911 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--tss office (CLO 193B) L515673 P 42.480385 -76.4511779 2015-03-02 11:08:00 obsr1062070 S22142472 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295667056 2015-02-08 20:21:12 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 6 Male, Adult (2); Female, Adult (4) United States US New York US-NY Herkimer US-NY-043 13.0 Frascatore feeding sight L2808325 P 43.0968637 -74.7711548 2015-02-07 07:00:00 obsr2694889 S21735368 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310924473 2021-03-23 16:47:03.540174 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Schenectady US-NY-093 13.0 Touareuna Road L3572625 P 42.9248802 -74.0881062 2015-04-18 09:45:00 obsr481595 S22924701 Traveling P22 EBIRD 45.0 7.242 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293912636 2021-03-24 20:58:53.646623 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) X United States US New York US-NY Livingston US-NY-051 13.0 South Conesus, NY L499820 P 42.6886185 -77.6772022 2015-01-28 11:47:00 obsr72341 S21595614 Stationary P21 EBIRD 183.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324168098 2021-03-26 06:29:56.44369 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Monroe US-NY-055 13.0 near pond at Mill Landing L2103068 P 43.235551 -77.702571 2015-05-26 10:00:00 obsr1721347 S23718770 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308169065 2021-03-26 06:55:00.227271 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 9 United States US New York US-NY Ontario US-NY-069 13.0 Risser Rd. Swamp, Canandaigua L771877 H 42.9382814 -77.29738 2015-04-06 11:57:00 obsr528918 S22731498 Traveling P22 EBIRD 10.0 1.207 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313718546 2015-04-28 06:42:20 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Madison US-NY-053 28.0 Chickadee Hill Wildlife Sanctuary L683999 P 42.87877 -75.8055 2015-04-27 06:00:00 obsr2716320 S23104553 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296095027 2021-11-09 18:34:57.804398 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 3 United States US New York US-NY Dutchess US-NY-027 13.0 My Home - Clinton Hollow L2617732 P 41.8361339 -73.8168409 2015-02-11 08:30:00 obsr1264675 S21768690 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288311566 2022-01-09 18:48:43.534861 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus X United States US New York US-NY New York US-NY-061 30.0 Greenwich Village (14th St.-Houston St.; Broadway-Hudson River) L3238737 H 40.7342063 -74.0027145 2015-01-01 12:00:00 obsr2228257 S21127377 Traveling P22 EBIRD 150.0 3.219 5.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320324447 2021-04-01 11:15:31.646886 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-16 06:06:00 obsr2404047 S23480566 Traveling P22 EBIRD 480.0 4.828 3.0 1 G1274913 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320894117 2015-05-18 11:59:33 406 species avibase-27B2749A Wood Duck Aix sponsa 1 United States US New York US-NY Monroe US-NY-055 13.0 ** Home (Hamlin) L789437 P 43.3424553 -77.9539633 2015-05-18 11:54:00 obsr334398 S23512022 Stationary P21 EBIRD 2.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323282456 2021-03-26 07:46:52.994574 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 5 United States US New York US-NY Albany US-NY-001 13.0 Henry Hudson Park L735864 H 42.5473263 -73.7597179 2015-05-27 05:10:00 obsr1154 S23658303 Traveling P22 EBIRD 58.0 1.77 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312958756 2021-04-01 12:45:19.712958 31253 species avibase-89431E9F House Finch Haemorhous mexicanus X United States US New York US-NY Westchester US-NY-119 US-NY_1759 30.0 Marshlands Conservancy L109149 H 40.9531117 -73.7012273 2015-04-25 09:00:00 obsr492329 S23057556 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308804911 2021-03-26 07:30:35.289997 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-04-10 07:29:00 obsr1696616 S22780558 Traveling P22 EBIRD 34.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306904316 2015-04-02 09:42:33 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Erie US-NY-029 13.0 Beaver Island SP L462930 H 42.9643762 -78.9500361 2015-03-31 15:15:00 obsr303203 S22640082 Traveling P22 EBIRD 30.0 1.609 2.0 1 G1201291 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313881331 2015-04-28 19:12:10 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Erie US-NY-029 13.0 Alden - Crittenden Rd. L586154 P 42.9165364 -78.4935379 2015-04-28 16:15:00 obsr2871264 S23115014 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317627568 2021-03-26 07:46:52.994574 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 06:55:00 obsr2855945 S23331142 Traveling P22 EBIRD 205.0 5.633 6.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310068451 2016-01-27 10:57:21 10728 species avibase-6BDADC9C Black-backed Woodpecker Picoides arcticus 7 United States US New York US-NY Jefferson US-NY-045 13.0 Black River Fishing site L2127803 P 43.9789116 -75.8680201 2015-04-14 15:00:00 obsr2091520 S22866867 Stationary P21 EBIRD 45.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303238263 2021-04-01 11:24:19.637193 6291 species avibase-F89FD6E3 Little Gull Hydrocoloeus minutus 1 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-03-08 11:15:00 obsr1782363 S22359025 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314548229 2021-11-15 03:06:58.889978 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-01 07:08:00 obsr870166 S23156506 Traveling P22 EBIRD 79.0 2.253 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305102622 2021-03-30 19:03:54.667077 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater X United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-03-24 11:15:00 obsr479109 S22503115 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322135086 2021-03-26 07:56:20.588749 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 1 United States US New York US-NY Nassau US-NY-059 30.0 Oceanside Marine Nature Study Area L213321 H 40.6233726 -73.6242225 2015-04-22 16:00:00 obsr2218212 S23589154 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306056984 2017-11-27 07:55:42 662 species avibase-FB738385 Bufflehead Bucephala albeola 10 United States US New York US-NY Suffolk US-NY-103 30.0 Fort Pond Bay L1318580 H 41.0454616 -71.9627008 2015-01-25 08:30:00 obsr1254092 S22575540 Stationary P21 EBIRD 30.0 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312164427 2021-03-23 17:18:00.959502 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Black Creek Marsh (Albany Co.) L358594 H 42.6649307 -73.967472 2015-04-22 09:20:00 obsr2855945 S23004473 Traveling P22 EBIRD 25.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311119009 2021-03-26 07:43:12.52294 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 15 United States US New York US-NY Wayne US-NY-117 13.0 YARD 43.2826553, -76.8022361 L1113104 P 43.2826553 -76.8022361 2015-04-15 08:40:00 obsr211814 S22937026 Stationary P21 EBIRD 38.0 3.0 1 G1225351 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318076047 2017-06-27 14:02:44 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Burger Park L390594 H 43.3099074 -77.7326596 2015-05-10 10:55:00 obsr1124114 S23355399 Traveling P22 EBIRD 26.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314925870 2018-06-17 09:20:07 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 7 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Thunder Rocks L2208461 H 42.0411776 -78.7020421 2015-05-02 08:15:00 obsr2933610 S23178499 Traveling P22 EBIRD 113.0 3.38 2.0 1 G1254125 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314022471 2015-04-29 10:54:05 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-04-29 09:19:00 obsr1201479 S23123854 Traveling P22 EBIRD 94.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290088207 2021-11-09 19:21:07.406501 23242 species avibase-94A1C447 Bank Swallow Riparia riparia 4 United States US New York US-NY Dutchess US-NY-027 US-NY_760 13.0 Tivoli Bays WMA L986996 H 42.0482729 -73.9215946 2015-01-09 15:00:00 obsr671490 S21270921 Traveling P22 EBIRD 90.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301856817 2019-01-27 11:09:05 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-08 14:30:00 obsr143739 S22245782 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310454280 2021-04-01 11:30:42.037277 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-16 12:00:00 obsr2706811 S22893179 Traveling P22 EBIRD 60.0 1.609 20.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310339900 2021-11-09 21:41:38.795423 33304 species avibase-42101632 Scarlet Tanager Piranga olivacea 6 United States US New York US-NY Ulster US-NY-111 13.0 Forsyth Park and Nature Center L1786887 H 41.9328288 -74.0293017 2015-04-15 06:00:00 obsr1588136 S22885384 Stationary P21 EBIRD 660.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312804071 2021-03-23 17:32:20.03109 505 species avibase-C732CB10 American Black Duck Anas rubripes X United States US New York US-NY Onondaga US-NY-067 13.0 Beaver Lake Nature Center L301864 H 43.1804351 -76.4021532 2015-04-25 08:55:00 obsr968185 S23048579 Traveling P22 EBIRD 170.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289354530 2021-03-26 06:39:43.334073 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 13 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-01-05 15:00:00 obsr1135516 S21212562 Traveling P22 EBIRD 105.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310329711 2021-03-24 19:48:44.880783 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 1 United States US New York US-NY Monroe US-NY-055 13.0 Ellison Park L392124 H 43.1491253 -77.5175571 2015-04-15 18:48:00 obsr1545618 S22884703 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289086342 2021-03-19 16:44:35.607263 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 50 United States US New York US-NY Monroe US-NY-055 13.0 High Acres Nature Area L418669 H 43.0906572 -77.3780179 2015-01-04 14:10:00 obsr749440 S21191732 Traveling P22 EBIRD 20.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315005249 2015-05-02 16:40:11 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Nassau US-NY-059 30.0 Hofstra University L639147 H 40.7145119 -73.6003128 2015-05-01 17:30:00 obsr904434 S23182748 Traveling P22 EBIRD 40.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316198226 2021-04-01 11:30:42.037277 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-05 09:30:00 obsr1353449 S23248683 Traveling P22 EBIRD 180.0 4.828 2.0 1 G1253571 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296003438 2015-02-10 16:27:47 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 3 United States US New York US-NY Tompkins US-NY-109 28.0 42.3667x-76.3779 - Feb 10, 2015, 3:45 PM L3352030 P 42.366714 -76.377907 2015-02-10 15:42:00 obsr2871406 S21761342 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309753009 2015-04-14 20:39:40 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 13.0 Burdick Hill Rd., Lansing L1107958 H 42.4980885 -76.4998821 2015-04-13 06:53:00 obsr1655171 S22844709 Incidental P20 EBIRD 2.0 0 G1219993 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306003509 2021-03-26 07:20:31.408164 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Suffolk US-NY-103 30.0 Quogue Wildlife Refuge L635183 H 40.8348529 -72.6153374 2015-03-29 07:30:00 obsr1327990 S22571910 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306477162 2021-11-09 18:17:17.335499 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Dutchess US-NY-027 13.0 Strever Farm Road, Pine Plains L1363519 H 41.9457427 -73.6491438 2015-03-30 15:55:00 obsr1917973 S22608055 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295501822 2021-03-30 19:22:51.561415 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus 60 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Edgemere Landfill (restricted access) L946628 H 40.6061334 -73.7788582 2015-02-08 06:57:00 obsr2574755 S21722319 Traveling P22 EBIRD 22.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS1097205385 2021-03-17 21:07:25.762908 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 5 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kanyoo Trail L152120 H 43.1168988 -78.430624 2015-05-20 10:00:00 obsr2155450 S83594695 Traveling P22 EBIRD 30.0 2.012 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309923852 2021-03-23 17:39:28.36772 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea N 2 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-04-14 05:55:00 obsr1839967 S22856621 Stationary P21 EBIRD 103.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320114727 2021-11-02 20:32:06.137153 27403 species avibase-8E1D9327 Wood Thrush Hylocichla mustelina 1 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-05-16 07:11:00 obsr2683805 S23469929 Traveling P22 EBIRD 240.0 4.828 10.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302467240 2021-03-26 06:21:54.883933 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 2 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-11 12:03:00 obsr2001485 S22299097 Traveling P22 EBIRD 116.0 11.265 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319489484 2021-03-19 16:10:30.527219 616 species avibase-25C94A8F Greater Scaup Aythya marila 1 United States US New York US-NY Chemung US-NY-015 28.0 Bottchers Landing L143559 H 42.1246158 -76.951613 2015-05-14 07:29:00 obsr1092576 S23434950 Stationary P21 EBIRD 21.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307104668 2021-04-01 12:18:57.910168 26890 species avibase-94A44032 European Starling Sturnus vulgaris 65 United States US New York US-NY Tompkins US-NY-109 13.0 Lighthouse Point Natural Area (Jetty Woods) L130619 H 42.4579811 -76.509903 2015-04-01 17:35:00 obsr1183459 S22655511 Traveling P22 EBIRD 90.0 1.609 5.0 1 G1202314 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS320315004 2021-11-09 18:47:29.496793 32971 species avibase-1E82CE1E Magnolia Warbler Setophaga magnolia 1 United States US New York US-NY Dutchess US-NY-027 28.0 Mt. Beacon access road L3648412 P 41.4971206 -73.945756 2015-05-16 08:30:00 obsr2542037 S23480085 Traveling P22 EBIRD 150.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312393470 2021-12-28 15:41:38.527318 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 7 United States US New York US-NY Ontario US-NY-069 13.0 US-NY-ONT Manchester--CR 13 and Dewey Rd. at the cemetery (3175B) [N-S BBA3 line] L1023763 P 42.9616793 -77.186771 2015-04-23 15:10:00 obsr606693 S23020042 Traveling P22 EBIRD 6.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316478533 2021-04-01 10:47:08.851048 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus 2 United States US New York US-NY Broome US-NY-007 28.0 Vick's House L1532231 P 42.2154158 -75.8717773 2015-05-06 08:30:00 obsr1826325 S23265176 Traveling P22 EBIRD 120.0 2.414 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320683439 2021-03-26 06:17:19.712573 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Erie US-NY-029 13.0 Holland, 14047 Day Road L1959941 P 42.64843 -78.47513 2015-05-17 06:30:00 obsr325018 S23499550 Traveling P22 EBIRD 240.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298415752 2018-08-04 16:57:26 483 species avibase-85625D75 Mallard Anas platyrhynchos 17 United States US New York US-NY Suffolk US-NY-103 30.0 Marratooka L143474 P 40.9934692 -72.5238113 2015-02-19 13:26:00 obsr2485753 S21974692 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320535069 2020-03-15 09:14:53 26890 species avibase-94A44032 European Starling Sturnus vulgaris 2 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-17 09:13:00 obsr502830 S23491606 Traveling P22 EBIRD 244.0 2.414 2.0 1 G1274998 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306400813 2021-03-26 06:11:29.8335 6526 species avibase-4D2FF6F1 Common Tern Sterna hirundo 30 United States US New York US-NY Cayuga US-NY-011 13.0 Cayuga Lake, N end from Lake St. L2728444 H 42.9102975 -76.7263699 2015-03-29 13:55:00 obsr2683910 S22601850 Traveling P22 EBIRD 11.0 0.966 2.0 1 G1198690 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300603513 2021-04-01 12:32:15.282601 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-01 08:00:00 obsr271871 S22149549 Traveling P22 EBIRD 210.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302682172 2021-11-15 03:06:58.889978 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-03-12 13:15:00 obsr2844530 S22315605 Traveling P22 EBIRD 105.0 0.805 14.0 1 G1176950 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309079421 2018-08-04 17:08:32 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 100 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-04-11 12:44:00 obsr2744341 S22799618 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322150026 2021-03-24 19:48:44.880783 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 2 United States US New York US-NY Monroe US-NY-055 13.0 Blandford Area L2227458 P 43.0733296 -77.4663159 2015-05-23 07:00:00 obsr2343449 S23589992 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309557787 2021-04-01 12:35:52.669792 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Onondaga US-NY-067 13.0 green lakes state park L233833 P 43.0492444 -75.964642 2015-04-12 07:00:00 obsr2087436 S22830340 Traveling P22 EBIRD 165.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317482086 2018-08-04 17:15:26 6339 species avibase-8535345B Herring Gull Larus argentatus 1 United States US New York US-NY Albany US-NY-001 13.0 Five Rivers EEC L213239 H 42.6099952 -73.8907678 2015-05-09 06:20:00 obsr325436 S23322611 Traveling P22 EBIRD 288.0 6.437 15.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314262290 2021-03-23 17:00:13.087107 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--Mundy Wildflower Garden L97554 H 42.4507848 -76.4694708 2015-04-29 18:25:00 obsr241086 S23138630 Traveling P22 EBIRD 25.0 0.322 2.0 1 G1243906 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309739156 2021-03-26 07:46:52.994574 1796 species avibase-018B3169 Horned Grebe Podiceps auritus 1 United States US New York US-NY Albany US-NY-001 13.0 Normanskill Farm L404737 H 42.6334946 -73.8076737 2015-04-13 09:33:00 obsr1154 S22843799 Traveling P22 EBIRD 70.0 1.609 2.0 1 G1218384 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298241952 2021-11-02 20:32:06.137153 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 5 United States US New York US-NY Cortland US-NY-023 28.0 Lime Hollow--Nature Center and area W of Gracie Rd. L583661 H 42.564713 -76.2541294 2015-02-18 12:30:00 obsr317968 S21959775 Traveling P22 EBIRD 30.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305877207 2021-04-01 11:15:31.646886 33061 species avibase-E36325FA Prairie Warbler Setophaga discolor N 7 United States US New York US-NY Kings US-NY-047 Canarsie Pier L247765 H 40.6287773 -73.8836704 2015-03-28 08:05:00 obsr1077730 S22562420 Traveling P22 EBIRD 40.0 0.322 11.0 1 G1195440 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307828184 2018-08-04 17:05:20 668 species avibase-9456DEDF Barrow's Goldeneye Bucephala islandica X United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-04-04 08:55:00 obsr711169 S22706802 Stationary P21 EBIRD 20.0 9.0 1 G1206299 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288524439 2015-01-02 15:52:42 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 9 United States US New York US-NY Schenectady US-NY-093 13.0 Hutchinson Woods L1385563 P 42.8581549 -73.9937934 2015-01-01 12:30:00 obsr739254 S21144575 Incidental P20 EBIRD 3.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288981575 2021-11-09 20:19:38.948671 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Orange US-NY-071 28.0 Euclid Avenue L6537484 P 41.4347477 -74.4307208 2015-01-04 09:00:00 obsr1544235 S21183426 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311175560 2018-08-04 17:08:36 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula X United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-11 16:03:00 obsr2700277 S22940274 Traveling P22 EBIRD 79.0 3.219 2.0 1 G1225650 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308338155 2021-04-01 11:15:31.646886 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 10 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park--Prospect Lake L1059455 H 40.6553787 -73.9686421 2015-04-07 10:15:00 obsr827632 S22744693 Traveling P22 EBIRD 180.0 2.5 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309788239 2021-04-01 10:47:08.851048 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 6 United States US New York US-NY Broome US-NY-007 28.0 Home L275793 P 42.1462958 -75.9630454 2015-04-12 16:00:00 obsr800690 S22846961 Stationary P21 EBIRD 60.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289316858 2018-08-04 16:52:49 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 8 United States US New York US-NY Monroe US-NY-055 13.0 Newport Yacht Club L3255145 P 43.21445 -77.5393689 2015-01-05 13:20:00 obsr2504709 S21209513 Stationary P21 EBIRD 25.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307615451 2021-03-30 19:13:38.458673 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--South Marina L458871 H 43.3060838 -77.7083373 2015-04-04 09:45:00 obsr408487 S22691909 Traveling P22 EBIRD 6.0 0.483 2.0 1 G1205183 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315359731 2021-04-01 11:15:31.646886 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 36 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-03 06:27:00 obsr350767 S23202048 Traveling P22 EBIRD 320.0 8.047 4.0 1 G1249270 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290226381 2022-01-12 17:57:10.417834 31905 species avibase-37E9CCDA Chipping Sparrow Spizella passerina 1 United States US New York US-NY Franklin US-NY-033 14.0 Bigelow Rd. L1209811 H 44.4208004 -74.114141 2015-01-10 08:00:00 obsr914823 S21282388 Traveling P22 EBIRD 78.0 1.609 3.0 1 G1103451 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299059150 2021-04-01 11:15:31.646886 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 1 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-02-22 12:15:00 obsr1801902 S22031000 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291924555 2021-03-23 17:41:09.545385 32327 species avibase-6090278A Eastern Towhee Pipilo erythrophthalmus 24 United States US New York US-NY Westchester US-NY-119 30.0 Kingsland Point County Park L2572819 H 41.0885944 -73.8709974 2015-01-19 08:15:00 obsr572503 S21417970 Traveling P22 EBIRD 75.0 0.402 16.0 1 G1115637 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308013693 2021-11-09 18:45:57.996506 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata 1 United States US New York US-NY Dutchess US-NY-027 13.0 Carvel Lake 41.9942x-73.7206 L3543559 P 41.994213 -73.720593 2015-04-06 13:30:00 obsr1442681 S22720094 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322403334 2021-04-01 11:30:42.037277 483 species avibase-85625D75 Mallard Anas platyrhynchos 20 United States US New York US-NY New York US-NY-061 Randalls Island--NE fields and shoreline L1785381 H 40.7943072 -73.9138235 2015-05-23 10:25:00 obsr1548221 S23604220 Traveling P22 EBIRD 155.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305713783 2021-03-26 06:29:56.44369 23291 species avibase-58C502EA Barn Swallow Hirundo rustica 1 United States US New York US-NY Monroe US-NY-055 13.0 Old French Road, Honeoye Falls L11326970 H 42.9786356 -77.6135886 2015-03-27 13:06:00 obsr2595828 S22550368 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306467326 2021-03-24 20:33:47.533911 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 4 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-03-31 07:41:00 obsr455249 S22607425 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309733221 2021-03-23 17:00:13.087107 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Village of Lansing Greenway L337167 H 42.4860234 -76.4784479 2015-04-13 13:00:00 obsr869999 S22842673 Traveling P22 EBIRD 20.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318948158 2021-04-01 11:30:42.037277 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-12 09:16:00 obsr2313260 S23403542 Traveling P22 EBIRD 192.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312482904 2019-01-07 15:34:57 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 7 United States US New York US-NY Chautauqua US-NY-013 US-NY_773 13.0 Dunkirk Harbor L142261 H 42.490799 -79.3367996 2015-04-24 07:50:00 obsr2497657 S23026123 Stationary P21 EBIRD 23.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS412853424 2021-03-23 17:14:01.933181 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 Dowmont Rd., Ft. Edward L2502175 H 43.2669015 -73.5231062 2015-04-27 obsr2943723 S30292829 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319531805 2021-03-19 16:44:35.607263 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus X United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Bird Observatory L270301 H 43.3236798 -77.7195328 2015-05-14 07:20:00 obsr1410564 S23437410 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312485271 2021-03-23 17:23:45.772216 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N X United States US New York US-NY Livingston US-NY-051 13.0 Harter Road L994427 P 42.5953532 -77.7058214 2015-04-23 12:05:00 obsr72341 S23026289 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310600114 2018-08-04 17:09:29 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 7 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-04-17 07:53:00 obsr2588479 S22903678 Stationary P21 EBIRD 22.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314384986 2021-03-22 09:17:32.016297 662 species avibase-FB738385 Bufflehead Bucephala albeola X United States US New York US-NY Oneida US-NY-065 14.0 * Dunbar Rd., Camden L548557 P 43.3261143 -75.7681561 2015-04-30 13:55:00 obsr1640315 S23145767 Traveling P22 EBIRD 10.0 0.402 2.0 1 G1244367 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316308276 2021-03-26 06:17:19.712573 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Stream Court L3012028 P 42.9677128 -78.7562871 2015-05-04 10:30:00 obsr1379161 S23255885 Stationary P21 EBIRD 240.0 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS295391659 2021-04-01 12:32:15.282601 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 10 United States US New York US-NY Nassau US-NY-059 US-NY_1727 30.0 Jones Beach State Park L1020455 P 40.5941423 -73.5081482 2015-02-07 12:00:00 obsr247620 S21713397 Traveling P22 EBIRD 180.0 4.023 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307687086 2022-02-27 09:35:49.066489 18489 species avibase-F8DDF6A6 Yellow-throated Vireo Vireo flavifrons 1 United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditch Bank Rd., overall (use more specific hotspot) L273783 H 43.117455 -75.8302726 2015-04-05 08:30:00 obsr2087436 S22696705 Traveling P22 EBIRD 120.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324304193 2021-03-26 06:29:56.44369 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 Male, Adult (1) United States US New York US-NY Monroe US-NY-055 13.0 near pond at Mill Landing L2103068 P 43.235551 -77.702571 2015-05-31 09:15:00 obsr1721347 S23727535 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301570976 2021-03-19 16:06:54.047432 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis N 10 United States US New York US-NY Cayuga US-NY-011 13.0 Lake Rd. fields L686257 H 42.7107074 -76.6894597 2015-03-07 16:55:00 obsr184660 S22222722 Traveling P22 EBIRD 10.0 1.609 4.0 1 G1169222 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305914510 2021-04-01 11:15:31.646886 483 species avibase-85625D75 Mallard Anas platyrhynchos 6 United States US New York US-NY Kings US-NY-047 Canarsie Pier L247765 H 40.6287773 -73.8836704 2015-03-28 08:05:00 obsr2519357 S22565391 Traveling P22 EBIRD 40.0 0.322 11.0 1 G1195440 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316819188 2021-04-01 11:15:31.646886 303 species avibase-B59E1863 Canada Goose Branta canadensis N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-07 06:30:00 obsr2908667 S23284921 Traveling P22 EBIRD 205.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319593013 2017-04-29 00:48:40 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 2 United States US New York US-NY Delaware US-NY-025 28.0 Emmons Pond Bog Preserve L123020 H 42.4237205 -75.0141896 2015-05-14 11:00:00 obsr1452192 S23440797 Traveling P22 EBIRD 120.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288723342 2021-04-01 11:24:19.637193 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Monroe US-NY-055 13.0 Jacobs Road L826270 P 43.3429703 -77.9496288 2015-01-03 12:13:00 obsr334398 S21160937 Traveling P22 EBIRD 10.0 0.402 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299858093 2015-04-18 12:46:16 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 Unknown Sex, Immature (1) United States US New York US-NY Nassau US-NY-059 30.0 19 Northfield Rd L3349013 P 40.8805706 -73.6393498 2015-02-27 10:00:00 obsr1296638 S22092609 Stationary P21 EBIRD 5.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318299330 2021-03-19 16:27:31.421791 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Onondaga Trail L157279 H 43.12222 -78.36889 2015-05-10 11:25:00 obsr916033 S23367067 Traveling P22 EBIRD 219.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS412853421 2021-03-23 17:14:01.933181 303 species avibase-B59E1863 Canada Goose Branta canadensis X United States US New York US-NY Washington US-NY-115 US-NY_837 13.0 Dowmont Rd., Ft. Edward L2502175 H 43.2669015 -73.5231062 2015-04-27 obsr2943723 S30292829 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322188814 2018-08-06 22:30:53 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis X United States US New York US-NY Broome US-NY-007 28.0 Aquaterra Park L209925 H 42.032165 -75.939463 2015-05-23 08:00:00 obsr1044068 S23592094 Traveling P22 EBIRD 120.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317596506 2018-08-04 17:15:35 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Montgomery US-NY-057 13.0 Rural Grove SF L1435573 H 42.8527044 -74.4279282 2015-05-09 10:15:00 obsr286403 S23329526 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299590738 2018-08-04 16:58:15 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Onondaga US-NY-067 13.0 Seneca River and The Northeast Trail, Baldwinsville L821540 H 43.1576352 -76.3305423 2015-02-25 15:50:00 obsr660214 S22072064 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312278768 2015-04-23 11:00:57 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 4 United States US New York US-NY Essex US-NY-031 14.0 The Nest L2230405 P 44.4233932 -73.6347198 2015-04-23 10:55:00 obsr1349676 S23012195 Stationary P21 EBIRD 3.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309409751 2021-03-26 07:30:35.289997 6546 species avibase-D13B9122 Forster's Tern Sterna forsteri 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--Comstock Knoll L290965 H 42.4498398 -76.4723566 2015-04-12 12:47:00 obsr1655171 S22820791 Traveling P22 EBIRD 20.0 0.322 2.0 1 G1219987 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314127868 2021-11-09 20:40:08.940067 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos X United States US New York US-NY Putnam US-NY-079 28.0 Manitoga - The Russel Wright Design Center L1794833 H 41.3477632 -73.9510449 2015-04-29 11:00:00 obsr2770696 S23130156 Traveling P22 EBIRD 195.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322491891 2015-05-24 12:11:37 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Cortland US-NY-023 28.0 42.4307x-75.9411 - May 24, 2015, 12:01 PM L3668542 P 42.430728 -75.941108 2015-05-24 12:01:00 obsr1092576 S23609103 Traveling P22 EBIRD 2.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305981628 2021-04-01 12:18:57.910168 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 40 United States US New York US-NY Tompkins US-NY-109 13.0 AviTom44 L3513986 H 42.5797472 -76.5504828 2015-03-29 09:33:00 obsr1655171 S22570266 Stationary P21 EBIRD 23.0 2.0 1 G1197855 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308888200 2022-03-05 22:03:50.715584 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-10 08:15:00 obsr444155 S22786279 Traveling P22 EBIRD 30.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS359629673 2019-07-23 17:28:28 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 2 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-04-25 17:28:00 obsr2022298 S26344765 Traveling P22 EBIRD 84.0 3.219 2.0 1 G1501690 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312804481 2021-03-23 17:00:13.087107 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 5 United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-04-25 10:35:00 obsr246591 S23048600 Stationary P21 EBIRD 15.0 2.0 1 G1235067 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307185558 2015-04-03 14:46:51 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 2 United States US New York US-NY Chemung US-NY-015 28.0 Prospect Hill - Home L132545 P 42.2022667 -76.8597794 2015-04-02 09:18:00 obsr1334267 S22661208 Traveling P22 EBIRD 65.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318892482 2021-04-01 11:15:31.646886 543 issf avibase-DE24B98D Green-winged Teal Anas crecca Green-winged Teal (American) Anas crecca carolinensis 1 United States US New York US-NY Kings US-NY-047 30.0 Canarsie Beach Park L609644 H 40.6258911 -73.8972616 2015-05-12 06:36:00 obsr564905 S23400665 Traveling P22 EBIRD 84.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314421634 2021-04-01 10:45:00.916278 32038 issf avibase-7C3C67B0 Dark-eyed Junco Junco hyemalis Dark-eyed Junco (Slate-colored) Junco hyemalis hyemalis/carolinensis 7 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-04-30 17:08:00 obsr128156 S23148055 Traveling P22 EBIRD 36.0 1.6 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314437078 2021-04-01 12:18:57.910168 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 2 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell University--Palmer Woods L287796 H 42.4604469 -76.4789951 2015-04-30 16:45:00 obsr881968 S23149075 Traveling P22 EBIRD 105.0 0.805 2.0 1 G1245189 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312017212 2021-04-01 12:28:44.297881 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Chenango US-NY-017 28.0 Cincinnatus Lake (Chenango Co.) L2404270 H 42.4306156 -75.8623123 2015-04-22 07:34:00 obsr1696616 S22994876 Traveling P22 EBIRD 19.0 1.127 1.0 1 1 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS320587607 2021-11-15 03:06:58.889978 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-17 07:55:00 obsr211892 S23494430 Traveling P22 EBIRD 220.0 2.414 7.0 1 G1275166 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312030866 2021-03-19 16:44:35.607263 26026 issf avibase-3A45D521 White-breasted Nuthatch Sitta carolinensis White-breasted Nuthatch (Eastern) Sitta carolinensis carolinensis 4 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-04-16 14:44:00 obsr2774009 S22995809 Traveling P22 EBIRD 40.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310270998 2021-12-19 10:32:19.574298 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Onondaga US-NY-067 13.0 Green Lakes SP L200833 H 43.058106 -75.9706704 2015-04-15 07:00:00 obsr2087436 S22880520 Traveling P22 EBIRD 240.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314730582 2021-04-01 11:30:42.037277 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 12 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-30 10:00:00 obsr1303086 S23167090 Traveling P22 EBIRD 285.0 4.828 21.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296131688 2021-04-01 12:40:54.473014 20294 species avibase-76158864 Northern Shrike Lanius borealis 2 United States US New York US-NY Saratoga US-NY-091 13.0 Grange Hall Road, Northumberland L650014 H 43.1212981 -73.6020604 2015-02-11 12:50:00 obsr1222746 S21771502 Traveling P22 EBIRD 12.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313134881 2021-03-26 07:30:35.289997 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Tompkins US-NY-109 28.0 Goetchius Wetland Preserve (FLLT)--Flat Iron L109054 H 42.3860243 -76.3019298 2015-04-26 10:00:00 obsr1418810 S23068087 Traveling P22 EBIRD 60.0 1.0 2.0 1 G1237113 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309654914 2021-04-01 11:30:42.037277 8773 species avibase-7AA076EF Barred Owl Strix varia 7 H C2 H United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-04-12 08:02:00 obsr924076 S22836730 Traveling P22 EBIRD 657.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293443071 2021-04-01 11:15:31.646886 31530 species avibase-B48335B1 Pine Siskin Spinus pinus N X United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-01-25 15:20:00 obsr327318 S21558683 Traveling P22 EBIRD 100.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322427846 2018-08-06 22:31:00 31253 species avibase-89431E9F House Finch Haemorhous mexicanus 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor27 L3513969 H 42.6604171 -76.149084 2015-05-24 07:29:00 obsr620377 S23605608 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311152311 2021-03-26 07:30:35.289997 303 species avibase-B59E1863 Canada Goose Branta canadensis 1 United States US New York US-NY Tompkins US-NY-109 13.0 Snyder Hill Rd. L251541 H 42.4225716 -76.4460031 2015-04-19 07:38:00 obsr711169 S22938800 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290351372 2015-03-03 10:02:11 31918 species avibase-E23F6DE0 Field Sparrow Spizella pusilla 8 United States US New York US-NY Chautauqua US-NY-013 13.0 4473 Rt 380 L3369130 P 42.191899 -79.2773223 2015-01-10 08:15:00 obsr1792012 S21292457 Stationary P21 EBIRD 480.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295501213 2015-02-08 07:04:16 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Genesee US-NY-037 13.0 Intersection of Judge and 63 L3346014 P 43.0747616 -78.3915496 2015-02-07 17:15:00 obsr916033 S21722270 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314267295 2018-08-04 17:12:37 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Herkimer US-NY-043 13.0 Saltsman Road L677810 P 43.0091035 -74.7420502 2015-04-28 12:30:00 obsr2694889 S23138968 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290622198 2015-01-12 09:25:53 406 species avibase-27B2749A Wood Duck Aix sponsa 2 United States US New York US-NY Rensselaer US-NY-083 13.0 Papscanee Island Nature Preserve L488165 H 42.5762804 -73.7484741 2015-01-10 13:30:00 obsr489496 S21313933 Traveling P22 EBIRD 120.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300047165 2021-04-01 12:32:15.282601 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-02-28 09:30:00 obsr1693806 S22107239 Traveling P22 EBIRD 90.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310744534 2021-03-24 20:11:57.676649 7732 species avibase-A091D50A Northern Harrier Circus hudsonius 1 United States US New York US-NY Oswego US-NY-075 Noyes Sanctuary L249716 H 43.5237609 -76.3690253 2015-04-17 18:24:00 obsr2945658 S22913236 Traveling P22 EBIRD 45.0 1.609 3.0 1 G1225673 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS326329497 2019-03-17 16:38:55 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Essex US-NY-031 14.0 Chapamini Residence L2506431 P 43.820419 -73.493089 2015-05-17 05:15:00 obsr2398987 S23868568 Traveling P22 EBIRD 93.0 1.609 2.0 1 G3954751 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308024354 2021-03-23 17:32:20.03109 597 species avibase-0783A7EA Ring-necked Duck Aythya collaris 3 Female, Adult (1); Male, Adult (2) United States US New York US-NY Onondaga US-NY-067 13.0 7474 James Street, Fayetteville, NY L269868 P 43.0374547 -76.0071565 2015-04-03 08:00:00 obsr1167884 S22720876 Incidental P20 EBIRD 2.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312859536 2021-03-19 16:19:20.977326 592 species avibase-3072CC16 Redhead Aythya americana 1 United States US New York US-NY Erie US-NY-029 US-NY_755 13.0 Tifft Nature Preserve L207765 H 42.8462509 -78.8594553 2015-04-25 12:00:00 obsr2537615 S23051616 Traveling P22 EBIRD 60.0 0.805 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316423178 2021-03-26 07:56:20.588749 7416 species avibase-36B3872D Turkey Vulture Cathartes aura 1 United States US New York US-NY Nassau US-NY-059 30.0 Kings Point Park L1403459 H 40.8111576 -73.7474104 2015-05-06 06:30:00 obsr676630 S23262042 Traveling P22 EBIRD 120.0 2.414 5.0 1 G1254778 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303945416 2015-03-18 20:56:44 6201 species avibase-64F4DD81 Razorbill Alca torda 4 United States US New York US-NY Herkimer US-NY-043 13.0 Bidleman Road L974699 P 43.0402928 -74.8114443 2015-03-18 16:27:00 obsr1000124 S22414839 Traveling P22 EBIRD 16.0 1.287 3.0 1 G1184562 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316908220 2021-03-26 07:56:20.588749 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Nassau US-NY-059 30.0 Bayview Avenue, Manhasset Bay L1416657 P 40.7950657 -73.7090564 2015-05-06 18:20:00 obsr676630 S23289630 International Shorebird Survey (ISS) P74 EBIRD 25.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304338239 2021-03-24 20:58:04.794277 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 4 United States US New York US-NY Herkimer US-NY-043 13.0 corner Albany Rd and Soncody Rd, West Winfield L2594456 P 42.9506108 -75.1773212 2015-03-20 09:45:00 obsr1680059 S22445301 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316821321 2015-05-09 16:49:25 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-07 08:30:00 obsr1668936 S23285030 Traveling P22 EBIRD 135.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293200829 2015-02-07 22:18:57 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus X United States US New York US-NY Westchester US-NY-119 28.0 Teatown Lake Reservation L283561 H 41.2133357 -73.8296217 2015-01-25 13:00:00 obsr2898234 S21539056 Traveling P22 EBIRD 210.0 8.047 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309435364 2021-03-30 19:07:52.958398 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-12 08:00:00 obsr2363365 S22822080 Traveling P22 EBIRD 360.0 3.219 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310474558 2021-04-01 11:15:31.646886 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-16 14:40:00 obsr1055148 S22894673 Traveling P22 EBIRD 120.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288953230 2015-01-04 07:52:01 5793 species avibase-BCF9A19A Killdeer Charadrius vociferus 1 United States US New York US-NY Ontario US-NY-069 13.0 Canandaigua Wegmans (WORK) L1097293 P 42.8875365 -77.256546 2015-01-04 07:50:00 obsr354090 S21181081 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288411551 2017-09-10 18:56:36 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 27 United States US New York US-NY Wayne US-NY-117 13.0 Sodus Bay, Shaker Tract Rd. L349804 H 43.2368048 -76.9583096 2015-01-01 10:55:00 obsr1569772 S21134875 Stationary P21 EBIRD 15.0 2.0 1 G1090219 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292825125 2021-03-26 06:29:56.44369 662 species avibase-FB738385 Bufflehead Bucephala albeola N 2 United States US New York US-NY Monroe US-NY-055 13.0 Meadowbrook Rd (Roch.) L712115 P 43.1268207 -77.6075962 2015-01-22 13:30:00 obsr2759466 S21509515 Stationary P21 EBIRD 90.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310088946 2021-04-01 11:24:19.637193 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 3 United States US New York US-NY Monroe US-NY-055 13.0 32 Highland Ave L2227347 P 43.130566 -77.613433 2015-04-14 06:45:00 obsr1782363 S22868332 Stationary P21 EBIRD 60.0 2.0 1 G1220452 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308497540 2021-03-23 17:37:19.520785 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 4 Male, Adult (3); Female, Adult (1) United States US New York US-NY Saratoga US-NY-091 13.0 Nolan Rd., S. Glens Falls (boat launch and trail) L2894086 H 43.2704322 -73.6610529 2015-04-08 07:08:00 obsr1222746 S22756944 Rusty Blackbird Spring Migration Blitz P41 EBIRD 84.0 0.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307533256 2021-04-01 11:30:42.037277 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-22 15:15:00 obsr2277801 S22685958 Historical P62 EBIRD 105.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295857913 2021-03-26 06:29:56.44369 6397 species avibase-E826E9F3 Great Black-backed Gull Larus marinus 1 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road, North Rush L3220336 H 43.0031211 -77.6770833 2015-02-09 17:15:00 obsr934639 S21749730 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310548110 2021-03-24 21:01:50.671145 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 3 United States US New York US-NY Nassau US-NY-059 30.0 Valley Stream SP L469437 H 40.6792548 -73.693006 2015-04-16 10:30:00 obsr1160328 S22900176 Stationary P21 EBIRD 120.0 11.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300249457 2021-04-01 11:42:50.317679 7429 species avibase-1327AC55 Osprey Pandion haliaetus 18 United States US New York US-NY Oneida US-NY-065 13.0 Delta Lake Dam L3440985 H 43.2736746 -75.4303479 2015-03-01 11:35:00 obsr1640315 S22124022 Stationary P21 EBIRD 18.0 3.0 1 G1163376 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312494769 2022-02-13 06:32:05.759346 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 4 United States US New York US-NY Tioga US-NY-107 28.0 North Spencer Marsh, Michigan Hollow Lake (restricted access) L2319934 H 42.263578 -76.503767 2015-04-24 07:36:00 obsr1092576 S23026877 Traveling P22 EBIRD 20.0 1.609 2.0 1 G1233728 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312629740 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 8 United States US New York US-NY Kings US-NY-047 30.0 Green-Wood Cemetery, Brooklyn L285884 H 40.6523083 -73.9904281 2015-04-24 15:15:00 obsr1601967 S23037037 Traveling P22 EBIRD 160.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315081459 2015-05-02 20:18:38 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-01 16:45:00 obsr2363365 S23187091 Traveling P22 EBIRD 60.0 1.609 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316018280 2021-03-19 16:08:39.161312 33029 species avibase-4AAEF549 Palm Warbler Setophaga palmarum 4 United States US New York US-NY Chautauqua US-NY-013 13.0 Saint Hyacinth Chapel and Cemetery L2057391 H 42.5051356 -79.3030071 2015-05-05 07:46:00 obsr2497657 S23238704 Stationary P21 EBIRD 28.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307382093 2021-03-23 16:39:03.255227 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-04-04 09:20:00 obsr1958124 S22675619 Traveling P22 EBIRD 28.0 0.966 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315377352 2021-03-19 16:44:35.607263 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Monroe US-NY-055 13.0 Rush-Scottsville Road Meadows/Grasslands L3530817 P 43.0060672 -77.6751691 2015-05-03 07:30:00 obsr934639 S23203009 Traveling P22 EBIRD 160.0 4.426 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311400929 2015-04-19 20:09:45 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 1 United States US New York US-NY Schoharie US-NY-095 13.0 Landis Arboretum L3183801 H 42.7823624 -74.2709899 2015-04-19 19:54:00 obsr2937317 S22954061 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323087743 2021-06-10 13:58:54.983373 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 1 United States US New York US-NY Monroe US-NY-055 US-NY_800 13.0 Badgerow Park L140440 H 43.2569008 -77.6433029 2015-05-26 10:10:00 obsr991026 S23645655 Traveling P22 EBIRD 10.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304958736 2015-06-03 10:12:43 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 12 United States US New York US-NY Queens US-NY-081 30.0 Forest Park L274774 H 40.7013226 -73.8513368 2015-03-23 11:00:00 obsr56660 S22491731 Stationary P21 EBIRD 180.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS351633999 2021-03-30 19:37:33.521815 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Wayne US-NY-117 Sodus Bay, Old Ridge Rd. Bridge L349803 H 43.2233124 -76.9287318 2015-04-05 19:11:00 obsr1721609 S25704361 Stationary P21 EBIRD 14.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310233223 2021-03-26 06:55:00.227271 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 4 United States US New York US-NY Ontario US-NY-069 13.0 Seneca, Ontario Pathways L3194858 P 42.87315 -77.1061 2015-04-15 13:20:00 obsr1243175 S22877991 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302357739 2018-08-04 16:59:17 11575 species avibase-47E58408 Peregrine Falcon Falco peregrinus 2 United States US New York US-NY Schuyler US-NY-097 13.0 Seneca Harbor Park L150677 H 42.383846 -76.873375 2015-03-10 18:58:00 obsr1318356 S22290958 Stationary P21 EBIRD 17.0 2.0 1 G1174914 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308825394 2021-11-09 21:43:58.300436 6339 species avibase-8535345B Herring Gull Larus argentatus 4 United States US New York US-NY Ulster US-NY-111 13.0 Black Creek Preserve L2086582 H 41.8236532 -73.9574718 2015-04-10 08:40:00 obsr1136997 S22782058 Traveling P22 EBIRD 101.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS314314899 2022-01-20 09:38:40.245267 526 species avibase-56CCA717 Northern Pintail Anas acuta 1 United States US New York US-NY Essex US-NY-031 14.0 Intervale Lowlands Preserve (Private/Restricted Access) L772162 H 44.2733777 -73.9479822 2015-04-30 08:45:00 obsr1786066 S23141612 Traveling P22 EBIRD 140.0 2.414 20.0 1 G1244118 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS757762854 2021-04-01 10:45:00.916278 28886 species avibase-AEF821EC Bohemian Waxwing Bombycilla garrulus 1 United States US New York US-NY Bronx US-NY-005 30.0 Woodlawn Cemetery L613794 H 40.8900932 -73.8732719 2015-04-11 08:00:00 obsr2100710 S56200926 Traveling P22 EBIRD 150.0 2.414 17.0 1 G4166622 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308704636 2021-03-19 16:25:42.617988 26211 species avibase-A15C5071 Blue-gray Gnatcatcher Polioptila caerulea 3 United States US New York US-NY Essex US-NY-031 13.0 Tin Pan Alley L3437247 P 43.834301 -73.42659 2015-04-09 07:05:00 obsr2693145 S22772965 Stationary P21 EBIRD 7.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302441363 2021-03-24 20:56:44.139453 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 homefeeders&vicinity L208053 P 42.4553627 -78.60327 2015-03-07 10:30:00 obsr2475075 S22297280 Stationary P21 EBIRD 255.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296780310 2021-11-09 22:45:30.277673 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 10 United States US New York US-NY Sullivan US-NY-105 28.0 Wurtsboro L3368489 P 41.5985407 -74.5683289 2015-02-14 13:02:00 obsr2140714 S21829600 Stationary P21 EBIRD 60.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323741264 2021-04-01 11:15:31.646886 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla N X United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-29 06:04:00 obsr1189028 S23690997 Traveling P22 EBIRD 165.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300001741 2021-03-26 06:17:19.712573 681 species avibase-407E2CA8 Common Merganser Mergus merganser 2 United States US New York US-NY Erie US-NY-029 13.0 Holland, 14047 Day Road L1959941 P 42.64843 -78.47513 2015-02-28 07:00:00 obsr325018 S22103432 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305981772 2021-03-26 07:07:10.758746 31253 species avibase-89431E9F House Finch Haemorhous mexicanus N 2 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--Parallel Pond L1341653 H 40.5171956 -74.2139906 2015-03-29 09:53:00 obsr1958124 S22570278 Traveling P22 EBIRD 3.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304380617 2021-03-30 19:29:33.633096 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 20 United States US New York US-NY Suffolk US-NY-103 30.0 Eastport Lake (aka Seatuck Creek) L852369 H 40.8277092 -72.7276897 2015-03-20 13:00:00 obsr676630 S22448614 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS316100305 2021-03-26 06:21:54.883933 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-05 09:55:00 obsr1516787 S23243249 Traveling P22 EBIRD 120.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294612091 2021-03-26 07:07:10.758746 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis N 2 United States US New York US-NY Richmond US-NY-085 30.0 Stately Richman Manor L2489256 P 40.6333994 -74.104638 2015-02-01 09:00:00 obsr2904420 S21650823 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294961615 2021-03-22 08:58:29.008072 591 species avibase-1929E1E1 Canvasback Aythya valisineria X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-02-03 obsr2277801 S21679449 Historical P62 EBIRD 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312208276 2021-11-15 03:06:58.889978 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica N 11 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-04-22 08:32:00 obsr1548221 S23007524 Traveling P22 EBIRD 52.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320822086 2018-08-06 22:30:28 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Cattaraugus US-NY-009 US-NY_850 28.0 Allegany SP--Red House Lake L246474 H 42.1033333 -78.7458333 2015-05-18 07:16:00 obsr1092576 S23508037 Traveling P22 EBIRD 26.0 3.862 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289769487 2018-08-04 16:52:54 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 8 Male, Adult (5); Female, Adult (3) United States US New York US-NY Herkimer US-NY-043 13.0 Carlson Road - NE L766953 P 43.115356 -74.7912419 2015-01-07 15:31:00 obsr316199 S21244928 Stationary P21 EBIRD 3.0 3.0 1 G1100550 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302318840 2021-03-26 06:09:25.361188 447 species avibase-C235A4D7 Gadwall Mareca strepera 1 United States US New York US-NY Broome US-NY-007 28.0 Imperial Woods L2291049 P 42.085533 -76.03871 2015-03-10 16:04:00 obsr879105 S22285550 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298997872 2015-02-22 20:35:01 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Rensselaer US-NY-083 14.0 Grafton L1425267 P 42.770805 -73.4513832 2015-02-15 07:45:00 obsr2588160 S22024020 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312017211 2021-04-01 12:28:44.297881 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Chenango US-NY-017 28.0 Cincinnatus Lake (Chenango Co.) L2404270 H 42.4306156 -75.8623123 2015-04-22 07:34:00 obsr1696616 S22994876 Traveling P22 EBIRD 19.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324082965 2021-03-24 19:48:44.880783 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 2 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Manitou Beach Road - Owl Woods L1010800 P 43.3198701 -77.7262115 2015-05-07 09:10:00 obsr2966702 S23713175 Traveling P22 EBIRD 65.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295392223 2021-03-19 16:44:35.607263 32470 species avibase-F845062F Bobolink Dolichonyx oryzivorus 2 United States US New York US-NY Monroe US-NY-055 13.0 Whiting Rd. Nature Preserve L524399 H 43.251267 -77.4698353 2015-02-07 08:25:00 obsr302343 S21713438 Traveling P22 EBIRD 160.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317880782 2021-03-19 16:19:20.977326 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY Erie US-NY-029 13.0 Counterfeiters Ledge Preserve L123089 H 43.02444 -78.48139 2015-05-09 08:53:00 obsr2588479 S23344600 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315694943 2021-04-01 12:32:15.282601 26438 species avibase-CB5469E1 Carolina Wren Thryothorus ludovicianus 2 United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-05-04 07:45:00 obsr1102914 S23220293 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311778150 2015-04-21 08:30:55 3788 species avibase-C3AD1AFF Chimney Swift Chaetura pelagica X United States US New York US-NY Suffolk US-NY-103 30.0 West Islip,Keith Ln L1989278 P 40.700191 -73.295563 2015-04-21 08:30:00 obsr1228860 S22979065 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303655795 2020-03-15 09:14:53 7940 spuh avibase-CA08045E Accipiter sp. Accipiter sp. X United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-03-15 15:00:00 obsr319738 S22392224 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288629415 2021-04-01 12:26:53.827486 32112 species avibase-39BD9FF2 White-throated Sparrow Zonotrichia albicollis 2 United States US New York US-NY Albany US-NY-001 13.0 Overlook Park, Cohoes Falls L502441 H 42.7846221 -73.7070446 2015-01-02 10:30:00 obsr777630 S21153482 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308413434 2021-03-23 17:00:13.087107 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 8 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm frog pond transect L2272450 P 42.3441321 -76.2999791 2015-04-08 07:32:00 obsr455249 S22750260 Traveling P22 EBIRD 10.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302147565 2022-02-18 10:47:29.953615 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 5 United States US New York US-NY Tompkins US-NY-109 13.0 Schulenberg home L583112 P 42.4678391 -76.4511463 2015-03-10 07:04:00 obsr1062070 S22267419 Stationary P21 EBIRD 91.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318950913 2021-11-15 03:06:58.889978 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-05-09 07:25:00 obsr442686 S23403690 Traveling P22 EBIRD 180.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308423596 2021-03-24 20:53:39.352228 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 1 United States US New York US-NY Albany US-NY-001 28.0 Home Sweet Home L485484 P 42.5572848 -74.0936422 2015-04-07 obsr1591201 S22751264 Incidental P20 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306910436 2021-03-24 05:37:45.927792 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-04-02 09:45:00 obsr252591 S22640617 Traveling P22 EBIRD 30.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321858731 2015-05-21 23:07:02 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY Herkimer US-NY-043 13.0 Bronner Rd 1 L3577293 P 43.0806548 -74.8361421 2015-05-21 09:50:00 obsr592357 S23571562 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295613294 2021-11-09 22:04:47.967972 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 1 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-08 13:03:00 obsr2214649 S21727966 Traveling P22 EBIRD 75.0 3.219 2.0 1 G1139163 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315251638 2021-04-01 11:30:42.037277 303 species avibase-B59E1863 Canada Goose Branta canadensis 4 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-02 06:15:00 obsr1780417 S23196646 Traveling P22 EBIRD 451.0 1.207 2.0 1 G1248808 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312013336 2021-03-24 19:40:51.185319 27616 species avibase-D77E4B41 American Robin Turdus migratorius X United States US New York US-NY Jefferson US-NY-045 13.0 Route 3; Sackets Harbor L3582142 P 43.9391364 -76.0975045 2015-04-15 07:30:00 obsr490751 S22994599 Stationary P21 EBIRD 300.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310170338 2021-12-11 05:54:42.072179 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 3 United States US New York US-NY Suffolk US-NY-103 30.0 Sylvester Manor, Shelter Island L2694229 H 41.0770733 -72.339396 2015-04-15 08:32:00 obsr1628584 S22873961 Traveling P22 EBIRD 50.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289564328 2021-03-30 19:39:10.250398 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Nassau US-NY-059 30.0 Massapequa Preserve L256326 H 40.6994398 -73.4519019 2015-01-03 07:41:00 obsr1000553 S21229173 Traveling P22 EBIRD 266.0 3.219 3.0 1 G1094198 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302605363 2021-04-01 11:30:42.037277 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 3 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-03-11 16:30:00 obsr2031586 S22310215 Traveling P22 EBIRD 60.0 6.437 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288796456 2021-03-26 07:43:12.52294 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Wayne US-NY-117 13.0 Powell's Yard L783199 P 43.0918854 -77.3488167 2015-01-03 13:37:00 obsr749440 S21166851 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299819036 2015-02-27 08:18:33 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) 42 United States US New York US-NY Richmond US-NY-085 SI-Miller Field L291643 P 40.5674475 -74.0939199 2015-02-26 12:48:00 obsr1032565 S22089567 Traveling P22 EBIRD 37.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321436947 2021-03-19 16:19:20.977326 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-13 13:45:00 obsr2155111 S23545496 Traveling P22 EBIRD 210.0 1.609 2.0 1 G1281347 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313578634 2021-03-26 07:30:35.289997 31267 species avibase-B4EE123D Purple Finch Haemorhous purpureus N 1 United States US New York US-NY Tompkins US-NY-109 13.0 Cornell Botanic Gardens--Comstock Knoll L290965 H 42.4498398 -76.4723566 2015-04-26 09:48:00 obsr71667 S23095506 Traveling P22 EBIRD 60.0 0.805 4.0 1 G1239953 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS340588642 2021-03-26 06:13:28.501496 7305 species avibase-6BB94D7E Black-crowned Night-Heron Nycticorax nycticorax 1 United States US New York US-NY Chemung US-NY-015 28.0 Clover Circle L354283 P 42.1752556 -76.8558787 2015-05-12 06:50:00 obsr2736418 S24908996 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307662010 2021-12-10 08:21:29.396662 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N 8 United States US New York US-NY Westchester US-NY-119 US-NY_2790 30.0 Croton Point Park L509108 H 41.1871668 -73.8891219 2015-04-05 09:00:00 obsr1327349 S22695037 Traveling P22 EBIRD 20.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298717522 2021-03-26 06:29:56.44369 541 species avibase-BC6C3CCE Green-winged Teal Anas crecca 5 United States US New York US-NY Monroe US-NY-055 13.0 120 Campfire Rd N L659674 P 43.0628681 -77.5785828 2015-02-21 08:00:00 obsr1245041 S22001336 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311925155 2021-03-26 08:13:27.160698 16284 species avibase-33808812 Alder Flycatcher Empidonax alnorum 1 United States US New York US-NY Tioga US-NY-107 28.0 Day Hollow Rd. pond, Owego L2347084 H 42.107698 -76.183497 2015-04-21 07:25:00 obsr1318356 S22988699 Traveling P22 EBIRD 9.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322203739 2021-04-01 10:45:00.916278 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 2 United States US New York US-NY Bronx US-NY-005 30.0 Van Cortlandt Park--Southwest Zone L1817865 H 40.8941483 -73.8929476 2015-05-23 08:00:00 obsr2054320 S23592853 Traveling P22 EBIRD 120.0 1.609 7.0 1 G1286711 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323738595 2021-11-09 18:39:49.944201 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 1 United States US New York US-NY Dutchess US-NY-027 US-NY_756 28.0 Great Swamp, Dutcher Ave Pawling L2927194 P 41.55292 -73.60323 2015-05-29 09:05:00 obsr1732267 S23690817 Traveling P22 EBIRD 11.0 0.161 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS294727296 2021-03-26 08:14:57.071052 1180 species avibase-9C5ED06A Wild Turkey Meleagris gallopavo 7 United States US New York US-NY Westchester US-NY-119 28.0 Shenorock L2517728 T 41.33179 -73.73818 2015-02-03 10:00:00 obsr2924527 S21659758 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310377441 2021-03-24 20:33:47.533911 662 species avibase-FB738385 Bufflehead Bucephala albeola 1 United States US New York US-NY Tompkins US-NY-109 28.0 Boyer Creek Farm house to pond hedgerow L2272440 P 42.3438927 -76.2992147 2015-04-16 06:47:00 obsr455249 S22888062 Traveling P22 EBIRD 8.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304488505 2021-03-24 20:33:47.533911 27402 spuh avibase-DE0D7D24 Catharus sp. Catharus sp. 1 United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods--Wilson Trail L1498729 H 42.4795201 -76.4551642 2015-03-21 14:00:00 obsr2154746 S22456531 Traveling P22 EBIRD 75.0 1.207 116.0 1 G1187544 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310605966 2021-04-01 12:18:57.910168 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Tompkins US-NY-109 28.0 AviTom34 L3513976 H 42.5522945 -76.3229178 2015-04-17 08:55:00 obsr620377 S22904075 Stationary P21 EBIRD 9.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308609239 2019-01-07 15:33:17 483 species avibase-85625D75 Mallard Anas platyrhynchos 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Vineyards on South Roberts Rd. L2057350 P 42.4558006 -79.2631495 2015-04-09 08:11:00 obsr2497657 S22765352 Incidental P20 EBIRD 1.0 0 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322730964 2021-03-30 19:13:38.458673 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 9 United States US New York US-NY Monroe US-NY-055 13.0 Turning Point Park L473126 H 43.2299768 -77.6170778 2015-05-25 06:54:00 obsr1696616 S23623136 Traveling P22 EBIRD 51.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303996154 2015-03-19 07:40:17 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Greene US-NY-039 28.0 Freehold Backyard L2621415 P 42.3633957 -74.0563059 2015-03-19 07:15:00 obsr1188777 S22418525 Stationary P21 EBIRD 2.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319497184 2021-03-24 19:35:34.045988 281 issf avibase-81A40D31 Brant Branta bernicla Brant (Atlantic) Branta bernicla hrota 1 United States US New York US-NY Erie US-NY-029 13.0 Forest Lawn Cemetery, Buffalo L681420 H 42.9277447 -78.8609865 2015-05-14 06:58:00 obsr502830 S23435391 Traveling P22 EBIRD 97.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288861318 2018-08-04 16:52:34 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Nassau US-NY-059 30.0 Lister Park L444840 H 40.6546376 -73.6543393 2015-01-03 07:30:00 obsr1160328 S21174221 Stationary P21 EBIRD 15.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308460378 2015-04-08 12:51:46 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 1 United States US New York US-NY Erie US-NY-029 13.0 Alden - Crittenden Rd. L586154 P 42.9165364 -78.4935379 2015-04-08 08:40:00 obsr2871264 S22750872 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309515157 2021-03-26 06:55:00.227271 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 3 United States US New York US-NY Ontario US-NY-069 13.0 Home L1898533 P 42.8006436 -77.2645283 2015-04-12 15:00:00 obsr696564 S22827450 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288286478 2021-04-01 11:15:31.646886 18513 species avibase-66AA469C Warbling Vireo Vireo gilvus N X United States US New York US-NY Kings US-NY-047 Floyd Bennett Field--Community Gardens L996212 H 40.5863861 -73.892777 2015-01-01 12:00:00 obsr2207991 S21125096 Traveling P22 EBIRD 180.0 4.828 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313483413 2021-03-19 15:59:05.496822 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 5 United States US New York US-NY Allegany US-NY-003 28.0 Cuba Lake L1326387 H 42.2508599 -78.2923025 2015-04-27 10:13:00 obsr955789 S23089848 Traveling P22 EBIRD 57.0 1.931 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306127327 2021-03-26 07:16:36.956617 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 6 United States US New York US-NY Schenectady US-NY-093 13.0 Collins Lake, Scotia L515384 H 42.8267613 -73.9537597 2015-03-29 15:45:00 obsr1918430 S22580970 Traveling P22 EBIRD 60.0 0.322 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292667728 2021-11-09 19:34:18.590596 5962 species avibase-4A3B2CFF Short-billed Dowitcher Limnodromus griseus 4 United States US New York US-NY Orange US-NY-071 28.0 Home L1342102 P 41.5163686 -74.0888459 2015-01-22 11:30:00 obsr1665312 S21497136 Stationary P21 EBIRD 75.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312484006 2020-08-22 21:44:55 343 species avibase-0BCBA6B9 Tundra Swan Cygnus columbianus 12 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Rd. L508804 H 43.0489452 -76.7335796 2015-04-23 14:15:00 obsr457491 S23026216 Traveling P22 EBIRD 80.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309791578 2021-03-30 19:13:38.458673 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay Park L772198 H 43.3039758 -77.7133369 2015-04-13 10:25:00 obsr2756208 S22847188 Stationary P21 EBIRD 255.0 7.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306310479 2021-03-26 06:21:54.883933 483 species avibase-85625D75 Mallard Anas platyrhynchos 200 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-03-30 08:50:00 obsr1605975 S22594823 Traveling P22 EBIRD 200.0 3.621 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313260223 2018-08-04 17:12:18 663 species avibase-68EA281A Common Goldeneye Bucephala clangula X United States US New York US-NY Broome US-NY-007 US-NY_785 28.0 Upper Lisle County Park L212514 H 42.3970664 -75.9642321 2015-04-26 06:10:00 obsr1303581 S23075474 Traveling P22 EBIRD 240.0 1.287 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297205489 2021-03-23 16:51:24.016808 622 species avibase-50566E50 Lesser Scaup Aythya affinis 2 United States US New York US-NY Steuben US-NY-101 28.0 Caton L193214 T 42.05617 -77.02779 2015-02-15 09:33:00 obsr1624819 S21867299 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS297405854 2021-03-23 16:30:20.514143 33215 species avibase-F2D675AF Canada Warbler Cardellina canadensis N 1 United States US New York US-NY Oswego US-NY-075 13.0 US-NY-New Haven- Kibby Rd - Home (Private) L5185742 P 43.449899 -76.30402 2015-02-15 08:16:00 obsr2945658 S21885185 Stationary P21 EBIRD 63.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305627717 2020-01-16 17:01:29 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 2 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-03-27 15:29:00 obsr1721609 S22543789 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315952788 2018-08-04 17:14:44 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor 1 United States US New York US-NY Fulton US-NY-035 13.0 Willie Marsh L2149327 P 43.0832214 -74.4475114 2015-05-04 13:55:00 obsr1000124 S23234500 Traveling P22 EBIRD 162.0 1.77 2.0 1 G1252392 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320118341 2021-04-01 11:30:42.037277 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park L191106 H 40.7715482 -73.9724819 2015-05-15 15:00:00 obsr145923 S23470106 Traveling P22 EBIRD 180.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312017406 2021-03-23 17:39:28.36772 32976 species avibase-A6C0C4A9 Yellow Warbler Setophaga petechia 1 United States US New York US-NY Tioga US-NY-107 28.0 Tubbs Hill Rd, Richford L621720 P 42.3483635 -76.1646831 2015-04-22 05:45:00 obsr1839967 S22994550 Traveling P22 EBIRD 120.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306796075 2021-04-01 12:32:15.282601 660 spuh avibase-CB56BEF1 scoter sp. Melanitta sp. X United States US New York US-NY Nassau US-NY-059 US-NY_812 30.0 Hempstead Lake SP L143222 H 40.6804811 -73.6415618 2015-04-01 16:15:00 obsr2207991 S22632182 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313306801 2015-04-26 20:13:42 33090 species avibase-9FFEDE99 Black-throated Green Warbler Setophaga virens 1 United States US New York US-NY Monroe US-NY-055 13.0 Black Creek Park L1175542 H 43.0844986 -77.8050041 2015-04-26 17:00:00 obsr2084521 S23078451 Traveling P22 EBIRD 90.0 2.414 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315003866 2021-11-09 18:02:59.935226 33018 species avibase-7AB1229B Chestnut-sided Warbler Setophaga pensylvanica 4 United States US New York US-NY Dutchess US-NY-027 28.0 Madam Brett Park L1171361 H 41.4886892 -73.9742571 2015-05-02 15:00:00 obsr2241630 S23182672 Traveling P22 EBIRD 60.0 0.805 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302729429 2021-03-30 19:07:52.958398 32747 species avibase-5F77FED5 Rusty Blackbird Euphagus carolinus 12 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-12 08:00:00 obsr2363365 S22319406 Traveling P22 EBIRD 150.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288269615 2015-01-01 17:53:08 32036 species avibase-05FF3C9B Dark-eyed Junco Junco hyemalis 1 United States US New York US-NY Suffolk US-NY-103 30.0 150 Kings Point Road L140655 P 41.0463905 -72.1569138 2015-01-01 09:00:00 obsr2159121 S21123517 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311858789 2021-11-03 18:05:42.061523 32921 species avibase-BA4C8A02 Common Yellowthroat Geothlypis trichas 1 United States US New York US-NY Suffolk US-NY-103 30.0 Fire Island--Lighthouse & Trails L1247206 H 40.6316712 -73.219918 2015-04-18 11:45:00 obsr1987335 S22984299 Traveling P22 EBIRD 115.0 3.541 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309811688 2021-04-01 11:30:42.037277 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ravine (incl. The Loch) L277988 H 40.794956 -73.9572222 2015-04-13 09:30:00 obsr1481512 S22848657 Traveling P22 EBIRD 180.0 1.609 4.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296462261 2021-03-26 06:55:00.227271 483 species avibase-85625D75 Mallard Anas platyrhynchos N 12 United States US New York US-NY Ontario US-NY-069 13.0 Taylor Rd. & Freshour Rd. L2725395 P 42.9423499 -77.2059059 2015-02-11 10:00:00 obsr983655 S21800624 Traveling P22 EBIRD 15.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299096157 2021-03-30 19:28:38.115458 32099 species avibase-8601A467 White-crowned Sparrow Zonotrichia leucophrys 6 United States US New York US-NY Seneca US-NY-099 13.0 Deans Cove State Marine Park L99694 H 42.7446842 -76.7681442 2015-02-22 14:06:00 obsr2001485 S22034220 Stationary P21 EBIRD 23.0 3.0 1 G1156983 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS310154923 2021-03-23 17:00:13.087107 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 2 United States US New York US-NY Tompkins US-NY-109 28.0 Websterk Home L1084526 P 42.4154016 -76.3545191 2015-04-13 07:40:00 obsr2261732 S22872825 Traveling P22 EBIRD 15.0 0.644 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292021300 2021-04-01 11:14:02.420281 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 90 United States US New York US-NY Jefferson US-NY-045 13.0 Ellisburg: Rt. 193 farm L2033150 P 43.7387591 -76.1609334 2015-01-19 10:55:00 obsr1558090 S21425871 Traveling P22 EBIRD 15.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320318959 2018-08-06 22:30:10 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 1 United States US New York US-NY Madison US-NY-053 13.0 Bush Rd., NY 31 to Oneida Lake L925356 H 43.1584863 -75.9301615 2015-05-16 10:20:00 obsr1167884 S23480276 Traveling P22 EBIRD 55.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306339866 2019-07-23 17:28:11 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY Wayne US-NY-117 13.0 Bear Creek Harbor, Ontario L621729 H 43.2773811 -77.2761422 2015-03-30 15:43:00 obsr1721609 S22597040 Stationary P21 EBIRD 12.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309966849 2021-11-09 21:31:40.219848 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 1 United States US New York US-NY Ulster US-NY-111 13.0 Sleightsburg Spit L1432584 H 41.9196235 -73.9736445 2015-04-12 08:29:00 obsr1348614 S22859669 Traveling P22 EBIRD 120.0 1.609 2.0 1 G1219456 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS293570028 2021-11-09 21:56:49.750103 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 3 United States US New York US-NY Ulster US-NY-111 28.0 home L3265416 P 41.9668096 -74.2864877 2015-01-27 10:00:00 obsr595164 S21568411 Historical P62 EBIRD 180.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323924136 2021-04-01 11:15:31.646886 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 1 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-05-30 08:08:00 obsr152435 S23703513 Traveling P22 EBIRD 103.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290216514 2015-01-10 15:48:56 6610 species avibase-6C50988A Red-throated Loon Gavia stellata 5 United States US New York US-NY Orleans US-NY-073 13.0 Lakeshore and Center Rds L3282175 P 43.363536 -78.057772 2015-01-10 15:40:00 obsr991026 S21281576 Stationary P21 EBIRD 8.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317412160 2021-04-01 11:30:42.037277 6339 species avibase-8535345B Herring Gull Larus argentatus N 36 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-05-03 10:35:00 obsr1513140 S23318561 Traveling P22 EBIRD 90.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309302987 2021-03-19 16:19:20.977326 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 2 United States US New York US-NY Erie US-NY-029 13.0 US-NY-Hamburg-3097-3109 Lakeview Rd L3557162 P 42.715932 -78.876017 2015-04-12 06:44:00 obsr916033 S22814182 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309266025 2017-05-31 22:37:56 7429 species avibase-1327AC55 Osprey Pandion haliaetus 1 United States US New York US-NY Suffolk US-NY-103 US-NY_840 30.0 Dune Rd., Tiana Beach L821838 H 40.8307941 -72.5177908 2015-01-25 13:16:00 obsr839844 S22811887 Traveling P22 EBIRD 50.0 0.483 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290226109 2021-03-26 06:29:56.44369 10893 issf avibase-F4363091 Downy Woodpecker Dryobates pubescens Downy Woodpecker (Eastern) Dryobates pubescens pubescens/medianus N 1 United States US New York US-NY Monroe US-NY-055 13.0 Rochester International Airport (ROC) L712210 H 43.1170241 -77.6733398 2015-01-10 12:43:00 obsr2595828 S21282365 Incidental P20 EBIRD 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305610668 2021-03-24 20:16:00.852773 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 32 United States US New York US-NY Richmond US-NY-085 30.0 Cemetery of the Resurrection--North Overlook L1341674 H 40.5163521 -74.2168683 2015-03-27 13:31:00 obsr1958124 S22542570 Traveling P22 EBIRD 20.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291460141 2018-08-04 16:53:29 26890 species avibase-94A44032 European Starling Sturnus vulgaris X United States US New York US-NY Tompkins US-NY-109 13.0 Myers Point Marina L283458 H 42.5354848 -76.5445054 2015-01-17 11:53:00 obsr241086 S21382234 Stationary P21 EBIRD 12.0 2.0 1 G1112025 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289714511 2019-07-23 17:26:42 32225 species avibase-4E192262 Swamp Sparrow Melospiza georgiana 1 United States US New York US-NY Suffolk US-NY-103 30.0 Hortons Point L158149 H 41.0852163 -72.4456862 2015-01-03 11:02:00 obsr535265 S21240599 Traveling P22 EBIRD 43.0 0.644 2.0 1 G1100215 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292655989 2021-03-30 19:29:33.633096 6326 species avibase-23863F65 Ring-billed Gull Larus delawarensis 12 United States US New York US-NY Suffolk US-NY-103 30.0 Hook Pond L283133 H 40.9461611 -72.1907833 2015-01-22 13:00:00 obsr2534001 S21496239 Stationary P21 EBIRD 20.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308821042 2021-03-26 07:30:35.289997 447 species avibase-C235A4D7 Gadwall Mareca strepera 15 United States US New York US-NY Tompkins US-NY-109 13.0 Stewart Park L99381 H 42.460791 -76.5068525 2015-04-10 09:09:00 obsr1655171 S22781725 Traveling P22 EBIRD 22.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305425759 2021-04-01 11:15:31.646886 27616 species avibase-D77E4B41 American Robin Turdus migratorius 2 United States US New York US-NY Kings US-NY-047 US-NY_1722 Plumb Beach L444485 H 40.5823284 -73.9153746 2015-03-26 10:50:00 obsr2906952 S22528200 Traveling P22 EBIRD 60.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300562261 2021-03-22 09:17:32.016297 26890 species avibase-94A44032 European Starling Sturnus vulgaris N 32 United States US New York US-NY Oneida US-NY-065 13.0 Delta Lake Dam & Vicinity L3451425 P 43.274213 -75.4287393 2015-03-02 11:38:00 obsr1000124 S22146483 Traveling P22 EBIRD 34.0 0.161 3.0 1 G1165047 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313362028 2021-04-01 11:49:53.573686 32955 species avibase-41062654 Northern Parula Setophaga americana 1 United States US New York US-NY Queens US-NY-081 30.0 Ridgewood Reservoir L393007 H 40.688969 -73.8863182 2015-04-26 08:40:00 obsr1348614 S23081800 Traveling P22 EBIRD 270.0 4.828 8.0 1 G1238523 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320110561 2021-03-24 19:27:13.077399 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 2 United States US New York US-NY Chemung US-NY-015 28.0 Erin--Maple Drive L3646985 P 42.201233 -76.668685 2015-05-16 10:55:00 obsr1318356 S23469725 Traveling P22 EBIRD 11.0 0.8 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS318600639 2021-03-26 06:29:56.44369 7967 species avibase-FED3756C Bald Eagle Haliaeetus leucocephalus 3 United States US New York US-NY Monroe US-NY-055 13.0 University of Rochester--River Front and Pedestrian Bridge L899443 H 43.1310098 -77.6327848 2015-05-11 12:13:00 obsr2678807 S23383566 Traveling P22 EBIRD 50.0 0.402 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309051361 2021-04-01 11:49:53.573686 505 species avibase-C732CB10 American Black Duck Anas rubripes 7 United States US New York US-NY Queens US-NY-081 30.0 Alley Pond Park L191220 H 40.7473874 -73.7429518 2015-04-11 07:00:00 obsr676630 S22797948 Traveling P22 EBIRD 1.0 1.609 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304411829 2021-03-26 08:14:57.071052 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 1 United States US New York US-NY Westchester US-NY-119 30.0 Seney Ave L3362269 P 40.9373411 -73.7317613 2015-03-05 11:57:00 obsr2420438 S22450860 Stationary P21 EBIRD 30.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303908559 2015-03-18 17:28:34 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 1 United States US New York US-NY Saratoga US-NY-091 13.0 36 Curt Blvd L2229955 P 43.0492325 -73.8315735 2015-03-17 15:30:00 obsr907769 S22412091 Stationary P21 EBIRD 105.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310744651 2021-03-24 21:13:04.335774 447 species avibase-C235A4D7 Gadwall Mareca strepera 2 Male, Adult (1); Female, Adult (1) United States US New York US-NY Warren US-NY-113 14.0 Warren County Bikeway--Ash Dr, Queensbury, NY L2588444 P 43.356634 -73.6842245 2015-04-17 11:33:00 obsr1222746 S22913243 Traveling P22 EBIRD 24.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289944382 2021-03-26 06:29:56.44369 662 species avibase-FB738385 Bufflehead Bucephala albeola N 6 United States US New York US-NY Monroe US-NY-055 13.0 1243 Lake Rd L2228676 P 43.262715 -77.436801 2015-01-08 07:40:00 obsr2449897 S21259382 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310600104 2018-08-04 17:09:29 32008 species avibase-2A86F9C9 American Tree Sparrow Spizelloides arborea 2 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Kumpf Marsh L1150226 H 43.1184025 -78.4346581 2015-04-17 07:53:00 obsr2588479 S22903678 Stationary P21 EBIRD 22.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308949970 2015-04-10 20:02:00 26278 species avibase-A381417F House Wren Troglodytes aedon 2 United States US New York US-NY Saratoga US-NY-091 13.0 36 Curt Blvd L2229955 P 43.0492325 -73.8315735 2015-04-10 13:45:00 obsr907769 S22790919 Stationary P21 EBIRD 135.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS324196776 2018-08-06 22:31:30 483 species avibase-85625D75 Mallard Anas platyrhynchos 8 United States US New York US-NY Broome US-NY-007 28.0 Jones Park L1598748 H 42.0156115 -75.983731 2015-05-31 07:05:00 obsr1830659 S23720482 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310509857 2018-02-01 15:11:46 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 1 United States US New York US-NY Cortland US-NY-023 28.0 AviCor2 L3513942 H 42.7382236 -75.8923355 2015-04-16 14:19:00 obsr2279567 S22897425 Stationary P21 EBIRD 15.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS619886768 2018-05-18 11:48:33 27616 species avibase-D77E4B41 American Robin Turdus migratorius 1 United States US New York US-NY Tompkins US-NY-109 13.0 235 Enfield Falls Road, Ithaca, NY (42.402256,-76.557174) L7427014 P 42.402256 -76.557174 2015-01-23 09:11:00 obsr1008135 S45795056 Stationary P21 EBIRD 4.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302158488 2021-03-26 07:30:35.289997 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Tompkins US-NY-109 US-NY_764 13.0 Myers Point L99615 H 42.5371252 -76.5506476 2015-03-10 07:46:00 obsr1655171 S22268163 Traveling P22 EBIRD 115.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS305283167 2019-07-23 17:28:07 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus 2 United States US New York US-NY Suffolk US-NY-103 US-NY_782 Orient Point L169393 P 41.159225 -72.23746 2015-03-25 16:41:00 obsr2485753 S22517096 Traveling P22 EBIRD 40.0 1.127 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS299833154 2018-08-04 16:55:17 16339 species avibase-62CA2AF8 Eastern Phoebe Sayornis phoebe X United States US New York US-NY Essex US-NY-031 13.0 Westport Boat Launch L479943 H 44.1887912 -73.4342089 2015-01-26 obsr2188170 S22090715 Historical P62 EBIRD 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310056864 2021-04-01 11:24:19.637193 32732 species avibase-1E1AB415 Brown-headed Cowbird Molothrus ater 5 United States US New York US-NY Monroe US-NY-055 13.0 LaSalle's Landing Park L140438 H 43.1763487 -77.5259313 2015-04-14 17:23:00 obsr1124114 S22866065 Stationary P21 EBIRD 27.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313333419 2021-11-09 18:01:49.242073 483 species avibase-85625D75 Mallard Anas platyrhynchos 2 United States US New York US-NY Dutchess US-NY-027 13.0 Pond Gut L1153456 P 41.7235399 -73.7568212 2015-04-25 08:00:00 obsr1339050 S23080105 Traveling P22 EBIRD 210.0 2.012 9.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308773206 2021-04-01 11:49:53.573686 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 4 United States US New York US-NY Queens US-NY-081 30.0 Kissena Park L491873 H 40.7462409 -73.8080852 2015-04-09 11:03:00 obsr2233270 S22778197 Traveling P22 EBIRD 115.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320567411 2018-08-06 22:30:09 32950 species avibase-BED38F50 American Redstart Setophaga ruticilla 2 United States US New York US-NY Albany US-NY-001 28.0 Basic Creek Reservoir (access permit required) L1152329 H 42.4853825 -74.0201926 2015-05-16 09:45:00 obsr2512689 S23493295 Stationary P21 EBIRD 15.0 2.0 1 G1276032 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317643717 2021-04-01 10:45:00.916278 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata N 2 United States US New York US-NY Bronx US-NY-005 30.0 Bronx Zoo L692462 H 40.8506881 -73.8769963 2015-05-09 07:00:00 obsr1135516 S23332052 Traveling P22 EBIRD 420.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309090964 2019-07-26 16:53:13 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Tompkins US-NY-109 28.0 Dryden Lake L99404 H 42.4626631 -76.2746429 2015-04-11 08:45:00 obsr241086 S22800319 Traveling P22 EBIRD 36.0 0.402 2.0 1 G1214332 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292018547 2021-11-15 03:06:58.889978 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 2 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-14 09:00:00 obsr189780 S21425629 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315019319 2021-04-01 12:29:11.66536 697 species avibase-675EEA7F Ruddy Duck Oxyura jamaicensis N 1 United States US New York US-NY Delaware US-NY-025 28.0 Cannonsville Reservoir, below dam L2384574 H 42.0740489 -75.3954708 2015-05-02 04:33:00 obsr1788273 S23183515 Traveling P22 EBIRD 117.0 2.092 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS300099183 2021-03-24 20:11:57.676649 406 species avibase-27B2749A Wood Duck Aix sponsa N 2 Male, Adult (2) United States US New York US-NY Oswego US-NY-075 13.0 Constantia Yard L5078492 P 43.2500968 -75.9926683 2015-02-26 06:50:00 obsr2409011 S22111964 Stationary P21 EBIRD 100.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302819564 2021-11-09 22:04:47.967972 26109 species avibase-BAC33609 Brown Creeper Certhia americana 5 United States US New York US-NY Ulster US-NY-111 28.0 Blue Chip Farms L488176 H 41.62807 -74.2140452 2015-02-20 12:00:00 obsr1872263 S22325981 Stationary P21 EBIRD 240.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306929142 2021-03-26 07:30:35.289997 27616 species avibase-D77E4B41 American Robin Turdus migratorius 8 United States US New York US-NY Tompkins US-NY-109 13.0 Salt Point Natural Area L353038 H 42.5394116 -76.5496267 2015-04-02 10:30:00 obsr2258053 S22642048 Traveling P22 EBIRD 45.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310326529 2019-07-23 17:28:19 32854 species avibase-B617FE7D Blue-winged Warbler Vermivora cyanoptera 2 United States US New York US-NY Suffolk US-NY-103 Brooklyn Pelagic Trip G L3559870 P 40.435667 -73.336683 2015-04-11 15:00:00 obsr544268 S22884486 Traveling P22 EBIRD 60.0 16.093 45.0 1 G1221333 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288778630 2021-11-09 17:47:17.381431 32187 species avibase-A5F09E05 Song Sparrow Melospiza melodia 18 United States US New York US-NY Dutchess US-NY-027 13.0 * Ring Road, Salt Point, NY L1084767 P 41.7968319 -73.8318479 2015-01-02 09:00:00 obsr763723 S21165250 Stationary P21 EBIRD 60.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS289741710 2021-11-15 03:06:58.889978 616 species avibase-25C94A8F Greater Scaup Aythya marila 10 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Ramble L109518 H 40.7779667 -73.9697165 2015-01-07 08:47:00 obsr1548221 S21242817 Traveling P22 EBIRD 42.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS295574801 2021-03-26 06:39:43.334073 483 species avibase-85625D75 Mallard Anas platyrhynchos X United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--The Pond and Hallett Sanctuary L765570 H 40.7662497 -73.9743751 2015-02-08 10:45:00 obsr2033754 S21727992 Traveling P22 EBIRD 75.0 0.805 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315001080 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 2 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-02 06:25:00 obsr2519357 S23182511 Traveling P22 EBIRD 413.0 8.047 4.0 1 G1247369 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS296786158 2016-09-12 10:40:03 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 2 United States US New York US-NY Cattaraugus US-NY-009 28.0 Tug Hill L3362054 P 42.3508691 -78.5171413 2015-02-14 14:15:00 obsr1967417 S21830067 Stationary P21 EBIRD 10.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312716669 2021-03-24 21:12:00.789723 26890 species avibase-94A44032 European Starling Sturnus vulgaris 4 United States US New York US-NY Schuyler US-NY-097 13.0 Lamoka Lake L252697 H 42.4068227 -77.0718384 2015-04-25 06:26:00 obsr1092576 S23042947 Traveling P22 EBIRD 18.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS579686552 2021-03-30 19:07:52.958398 10707 species avibase-078557F2 Red-bellied Woodpecker Melanerpes carolinus 7 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-03-29 12:35:00 obsr2775912 S42974766 Traveling P22 EBIRD 255.0 4.023 2.0 1 G2955676 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS304404330 2021-04-01 12:32:15.282601 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 3 United States US New York US-NY Nassau US-NY-059 US-NY_1727 Jones Beach SP--West End L109147 H 40.5835871 -73.5514346 2015-03-21 08:00:00 obsr544268 S22450355 Traveling P22 EBIRD 270.0 8.047 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313678313 2021-03-24 19:24:40.212356 26890 species avibase-94A44032 European Starling Sturnus vulgaris 1 United States US New York US-NY Chautauqua US-NY-013 13.0 Van Buren Rd. Pond L746175 H 42.4469581 -79.4010311 2015-04-25 16:02:00 obsr2937317 S23101950 Stationary P21 EBIRD 75.0 3.0 1 G1240632 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311918800 2021-11-09 21:52:20.351693 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 3 United States US New York US-NY Ulster US-NY-111 13.0 Kenneth Wilson Campground L2990318 H 42.0234926 -74.2267345 2015-04-21 16:30:00 obsr2862523 S22988239 Traveling P22 EBIRD 60.0 2.414 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS317584142 2021-03-26 07:46:52.994574 8094 species avibase-536A5157 Red-tailed Hawk Buteo jamaicensis 1 United States US New York US-NY Albany US-NY-001 13.0 Home: 933 E. Pine Hill Dr., Schenectady NY 12303-5559 L3173293 P 42.728945 -73.931827 2015-05-09 13:15:00 obsr2309457 S23328880 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS292879789 2021-03-24 20:23:39.258075 31551 species avibase-C9ABA616 American Goldfinch Spinus tristis 10 United States US New York US-NY Suffolk US-NY-103 30.0 Jamesport, New York L712729 P 40.9462477 -72.586391 2015-01-24 08:00:00 obsr136858 S21513728 Stationary P21 EBIRD 30.0 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308734133 2021-04-01 11:30:42.037277 1799 species avibase-1CBD2CED Red-necked Grebe Podiceps grisegena 2 United States US New York US-NY New York US-NY-061 30.0 Inwood Hill Park L684740 H 40.8717025 -73.9256904 2015-04-09 16:30:00 obsr1513140 S22775309 Traveling P22 EBIRD 110.0 3.138 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS320513268 2021-11-09 18:32:29.775744 32752 species avibase-8BBB3255 Common Grackle Quiscalus quiscula 1 United States US New York US-NY Dutchess US-NY-027 13.0 Peach Hill, Poughkeepsie L2367481 P 41.703678 -73.8034058 2015-05-16 11:15:00 obsr2770696 S23490556 Traveling P22 EBIRD 135.0 3.219 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310388578 2021-03-23 16:52:36.900075 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens 14 United States US New York US-NY Suffolk US-NY-103 30.0 Gardiner County Park L208929 H 40.7010162 -73.2766605 2015-04-16 08:46:00 obsr1228860 S22888863 Traveling P22 EBIRD 30.0 0.483 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS323299989 2021-03-19 16:27:31.421791 689 species avibase-8DB64266 Red-breasted Merganser Mergus serrator 15 United States US New York US-NY Genesee US-NY-037 US-NY_1729 13.0 USFWS_219 Iroquois NWR--Cayuga Overlook L152119 H 43.1189663 -78.4430695 2015-05-27 07:31:00 obsr2588479 S23659460 Traveling P22 EBIRD 65.0 3.219 1.0 0 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS309861768 2018-08-04 17:09:02 10892 species avibase-1B2A6386 Downy Woodpecker Dryobates pubescens X United States US New York US-NY Madison US-NY-053 US-NY_2803 13.0 Ditchbank Auto tour L1001436 P 43.1068108 -75.7973814 2015-04-13 11:20:00 obsr2716320 S22852132 Traveling P22 EBIRD 82.0 5.794 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309332690 2021-03-24 19:48:44.880783 1842 domestic avibase-533DD36C Rock Pigeon Columba livia Rock Pigeon (Feral Pigeon) Columba livia (Feral Pigeon) N 1 United States US New York US-NY Monroe US-NY-055 US-NY_1723 13.0 Braddock Bay--Owl Woods L390730 H 43.3201355 -77.7264261 2015-04-12 08:49:00 obsr2595828 S22816092 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS306768996 2015-04-01 16:30:08 2369 species avibase-00124D98 Mourning Dove Zenaida macroura 1 United States US New York US-NY Erie US-NY-029 US-NY_1724 13.0 Beaver Island Pkwy at Broadway L3530795 P 42.9929634 -78.9564228 2015-03-31 16:25:00 obsr2597186 S22630139 Incidental P20 EBIRD 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS321655152 2021-04-01 11:15:31.646886 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 5 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-21 05:54:00 obsr152435 S23558671 Traveling P22 EBIRD 175.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291528400 2021-03-19 16:32:34.732091 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 1 United States US New York US-NY Kings US-NY-047 Van Brunt St. Pier, Red Hook L2656198 H 40.6727793 -74.0177375 2015-01-17 13:05:00 obsr350767 S21387712 Traveling P22 EBIRD 27.0 0.241 4.0 1 G1112440 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS301103697 2021-11-09 21:13:49.24141 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 6 United States US New York US-NY Rockland US-NY-087 28.0 Garnerville L851602 P 41.2158538 -74.0505981 2015-03-05 10:00:00 obsr2267230 S22186121 Stationary P21 EBIRD 300.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS319138235 2021-11-09 18:33:58.039151 20496 species avibase-1DA430B8 Blue Jay Cyanocitta cristata X United States US New York US-NY Dutchess US-NY-027 13.0 Cobb Ridge L2517475 P 42.0382655 -73.8797092 2015-05-12 06:30:00 obsr671490 S23414841 Traveling P22 EBIRD 30.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315703137 2018-08-04 17:14:41 324 slash avibase-C600B65C Cackling/Canada Goose Branta hutchinsii/canadensis 7 United States US New York US-NY Madison US-NY-053 28.0 Woodman Pond L227544 H 42.8565252 -75.5714536 2015-05-04 07:30:00 obsr2843748 S23220713 Traveling P22 EBIRD 180.0 4.828 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291734030 2019-07-23 17:27:05 32666 species avibase-5110842F Baltimore Oriole Icterus galbula 2 United States US New York US-NY Oswego US-NY-075 Oswego Harbor L247908 H 43.4658286 -76.5149873 2015-01-18 11:50:00 obsr979921 S21403445 Traveling P22 EBIRD 80.0 6.276 1.0 0 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290199697 2021-04-01 11:15:31.646886 279 species avibase-3E04020B Brant Branta bernicla 5 United States US New York US-NY Kings US-NY-047 30.0 Floyd Bennett Field L152773 H 40.5923453 -73.8914328 2015-01-10 08:30:00 obsr1407710 S21280025 Traveling P22 EBIRD 300.0 4.828 3.0 1 G1103277 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS303918772 2021-03-24 19:19:28.646223 303 species avibase-B59E1863 Canada Goose Branta canadensis 2 United States US New York US-NY Allegany US-NY-003 28.0 Chenunda Drive L1473325 P 42.0884737 -77.9247651 2015-03-18 09:55:00 obsr1310178 S22412852 Stationary P21 EBIRD 120.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312952229 2021-11-09 20:00:00.07655 505 species avibase-C732CB10 American Black Duck Anas rubripes 1 United States US New York US-NY Orange US-NY-071 28.0 Wee Wah Lake L3593262 P 41.215991 -74.1933185 2015-04-25 13:10:00 obsr2346161 S23057130 Traveling P22 EBIRD 250.0 1.609 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS308554521 2022-03-05 22:03:50.715584 7168 species avibase-93694BB5 Great Blue Heron Ardea herodias 4 United States US New York US-NY Sullivan US-NY-105 US-NY_1730 28.0 Bashakill State WMA L132036 H 41.5384264 -74.5156422 2015-04-08 18:00:00 obsr1544235 S22761365 Traveling P22 EBIRD 70.0 3.219 1.0 1 0 1 1 +URN:CornellLabOfOrnithology:EBIRD:OBS529779786 2018-10-23 06:35:26 9782 species avibase-3558066B Belted Kingfisher Megaceryle alcyon 1 Unknown Sex, Immature (1) United States US New York US-NY Seneca US-NY-099 US-NY_1726 13.0 USFWS_268 Montezuma NWR--Wildlife Drive L267814 H 42.9817483 -76.7353284 2015-04-12 11:00:00 obsr2617169 S38972458 Traveling P22 EBIRD 60.0 3.219 2.0 1 1 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS322720624 2021-04-01 11:15:31.646886 32676 species avibase-C86D078E Red-winged Blackbird Agelaius phoeniceus 3 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-05-24 08:25:00 obsr1982614 S23622494 Traveling P22 EBIRD 430.0 4.023 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311339923 2021-03-26 07:43:12.52294 673 species avibase-60E6081E Hooded Merganser Lophodytes cucullatus 1 United States US New York US-NY Wayne US-NY-117 US-NY_1726 13.0 Van Dyne Spoor Rd. L508804 H 43.0489452 -76.7335796 2015-04-19 12:32:00 obsr1655171 S22950205 Traveling P22 EBIRD 15.0 0.805 2.0 1 G1230123 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS290451132 2021-03-23 16:45:39.358281 26025 species avibase-19CCBBD2 White-breasted Nuthatch Sitta carolinensis 4 United States US New York US-NY St. Lawrence US-NY-089 13.0 US-NY-466-468 New York 11C L1941003 P 44.783843 -74.802152 2015-01-11 09:01:00 obsr2211750 S21300558 Stationary P21 EBIRD 150.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309820231 2021-03-26 06:39:43.334073 592 species avibase-3072CC16 Redhead Aythya americana N 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--Triplets Br. area (btwn 77th-79th St. transv.) L4525727 H 40.779838 -73.9724077 2015-04-12 15:20:00 obsr1548221 S22849322 Traveling P22 EBIRD 11.0 0.241 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS302002456 2021-04-01 11:54:40.172593 26109 species avibase-BAC33609 Brown Creeper Certhia americana 1 United States US New York US-NY Richmond US-NY-085 30.0 Backyard L881848 P 40.5212324 -74.213022 2015-03-09 13:20:00 obsr1958124 S22256415 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS313386089 2021-03-30 19:22:51.561415 21259 species avibase-B1F0CC82 Black-capped Chickadee Poecile atricapillus N 13 United States US New York US-NY Queens US-NY-081 US-NY_1722 30.0 Jamaica Bay Wildlife Refuge--East Pond L109144 H 40.6226854 -73.8220096 2015-04-26 17:40:00 obsr1348614 S23083860 Traveling P22 EBIRD 135.0 1.0 3.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS312806019 2021-03-24 20:33:47.533911 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos N X United States US New York US-NY Tompkins US-NY-109 13.0 Sapsucker Woods L97555 H 42.4787599 -76.4529133 2015-04-25 11:20:00 obsr59643 S23048658 Traveling P22 EBIRD 100.0 1.609 2.0 1 G1235120 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS309058368 2021-03-30 19:29:33.633096 23211 species avibase-BBA2F9DF Tree Swallow Tachycineta bicolor N 2 United States US New York US-NY Suffolk US-NY-103 US-NY_2795 30.0 Connetquot River SP L279857 H 40.7709151 -73.1553978 2015-04-11 09:20:00 obsr2534001 S22798359 Traveling P22 EBIRD 60.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS315316101 2021-12-08 07:58:41.562209 21352 species avibase-B488AB70 Tufted Titmouse Baeolophus bicolor 1 United States US New York US-NY New York US-NY-061 US-NY_2793 30.0 Central Park--North End (N of 97th St. Transverse) L794140 H 40.796089 -73.9558947 2015-05-03 08:17:00 obsr247782 S23199805 Traveling P22 EBIRD 253.0 3.219 2.0 1 G1249071 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS288105522 2021-04-01 11:49:53.573686 20762 species avibase-9E9F2476 American Crow Corvus brachyrhynchos 30 United States US New York US-NY Queens US-NY-081 30.0 Fort Tilden L280707 H 40.5632807 -73.8833118 2015-01-01 08:58:00 obsr2574755 S21109798 Traveling P22 EBIRD 15.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310039197 2015-04-14 17:23:55 27185 species avibase-A8347C7D Eastern Bluebird Sialia sialis 3 United States US New York US-NY Schuyler US-NY-097 US-NY_845 13.0 Finger Lakes NF--Teeter Pond Area L940987 H 42.5426153 -76.7982316 2015-04-14 15:10:00 obsr2260025 S22864778 Traveling P22 EBIRD 80.0 0.805 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311925626 2021-03-23 17:39:28.36772 6340 issf avibase-60F32AF8 Herring Gull Larus argentatus Herring Gull (American) Larus argentatus smithsonianus 1 United States US New York US-NY Tioga US-NY-107 28.0 Flemingville gravel pit L2711066 H 42.171562 -76.232521 2015-04-21 06:30:00 obsr1318356 S22988732 Stationary P21 EBIRD 5.0 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS307778553 2021-04-01 11:15:31.646886 30494 species avibase-240E3390 House Sparrow Passer domesticus 23 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-05 13:00:00 obsr152435 S22703285 Traveling P22 EBIRD 252.0 4.828 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS291874093 2021-03-26 06:58:34.561206 33382 species avibase-4E74AE22 Northern Cardinal Cardinalis cardinalis 9 United States US New York US-NY Orleans US-NY-073 Point Breeze (Orleans Co.) L469835 H 43.3716945 -78.1916691 2015-01-19 09:01:00 obsr745890 S21414276 Traveling P22 EBIRD 30.0 0.644 3.0 1 G1116013 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS298287945 2021-03-26 08:05:20.615241 10918 species avibase-9D06AF89 Hairy Woodpecker Dryobates villosus 3 United States US New York US-NY Onondaga US-NY-067 13.0 Home L1479128 P 43.1502997 -76.3703906 2015-02-18 09:00:00 obsr2172593 S21963721 Stationary P21 EBIRD 180.0 2.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS310739914 2021-03-30 19:07:52.958398 27176 species avibase-7EFF698D Northern Mockingbird Mimus polyglottos 1 United States US New York US-NY Kings US-NY-047 US-NY_862 30.0 Prospect Park L109516 H 40.6602841 -73.9689534 2015-04-17 17:43:00 obsr2692140 S22912887 Traveling P22 EBIRD 90.0 3.219 1.0 1 0 1 0 +URN:CornellLabOfOrnithology:EBIRD:OBS311125508 2021-04-01 11:30:42.037277 663 species avibase-68EA281A Common Goldeneye Bucephala clangula 2 United States US New York US-NY New York US-NY-061 30.0 Bryant Park L683555 H 40.7536729 -73.9832322 2015-04-18 14:00:00 obsr1488063 S22937408 Stationary P21 EBIRD 20.0 1.0 1 0 1 0 diff --git a/tests/perf_test.py b/tests/perf_test.py index fc98669..e56453e 100644 --- a/tests/perf_test.py +++ b/tests/perf_test.py @@ -1,26 +1,34 @@ import sqlite3 +from pathlib import Path + +import pytest from aukpy import db from tests.db_test import SMALL, MEDIUM -def test_data_usage(): - for csv_file in (SMALL, MEDIUM): - db_file = csv_file.with_suffix(".sqlite") - if db_file.is_file(): - db_file.unlink() - conn = db.build_db_pandas(csv_file, db_file) - csv_usage = csv_file.stat().st_size - sqlite_usage = db_file.stat().st_size - - print(f"Size ratio: {sqlite_usage / csv_usage}") - - for wrapper in db.WRAPPERS: - q = f'SELECT SUM("pgsize") FROM "dbstat" WHERE name=\'{wrapper.table_name}\';' - cursor = conn.execute(q) - res = cursor.fetchall()[0][0] - print(f"Size of {wrapper.table_name}: {res}") - q = f'SELECT SUM("pgsize") FROM "dbstat" WHERE name=\'observation\';' +def check_usage(csv_file: Path): + db_file = csv_file.with_suffix(".sqlite") + if db_file.is_file(): + db_file.unlink() + conn = db.build_db_pandas(csv_file, db_file) + csv_usage = csv_file.stat().st_size + sqlite_usage = db_file.stat().st_size + + print(f"Size ratio: {sqlite_usage / csv_usage}") + + for wrapper in db.WRAPPERS: + q = f'SELECT SUM("pgsize") FROM "dbstat" WHERE name=\'{wrapper.table_name}\';' cursor = conn.execute(q) res = cursor.fetchall()[0][0] - print(f"Size of observation: {res}") + print(f"Size of {wrapper.table_name}: {res}") + q = f'SELECT SUM("pgsize") FROM "dbstat" WHERE name=\'observation\';' + cursor = conn.execute(q) + res = cursor.fetchall()[0][0] + print(f"Size of observation: {res}") + + +@pytest.mark.skip +def test_data_usage(): + for csv_file in (SMALL, MEDIUM): + check_usage(csv_file) diff --git a/tests/queries_test.py b/tests/queries_test.py index 00c8974..dba90a8 100644 --- a/tests/queries_test.py +++ b/tests/queries_test.py @@ -1,11 +1,11 @@ import pandas as pd import sqlite3 -from pathlib import Path from aukpy import queries -from tests import SMALL_DB, MEDIUM_DB +from tests import SMALL_DB, MEDIUM_DB, SKIP_NON_MOCKED +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore def test_species_filter(): conn = sqlite3.connect(str(SMALL_DB)) f = queries.species("House Sparrow") @@ -15,6 +15,7 @@ def test_species_filter(): assert (result["scientific_name"] == "Passer domesticus").all() +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore def test_date_filter(): conn = sqlite3.connect(str(MEDIUM_DB)) f = queries.date(after="2015-01-01", before="2015-01-05") @@ -23,24 +24,28 @@ def test_date_filter(): assert len(res) == 38018 +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore def test_duration_filter(): conn = sqlite3.connect(str(MEDIUM_DB)) res = queries.duration(maximum=5).run_pandas(conn) assert len(res) == 18005 +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore def test_time_filter(): conn = sqlite3.connect(str(MEDIUM_DB)) res = queries.time(after="03:00", before="06:00").run_pandas(conn) assert len(res) == 17056 +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore def test_country_filter(): conn = sqlite3.connect(str(SMALL_DB)) res = queries.country(("US", "Mexico")).run_pandas(conn) assert len(res) == 10000 +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore def test_distance_filter(): conn = sqlite3.connect(str(MEDIUM_DB)) res = queries.distance(0.0, 0.2).run_pandas(conn) @@ -51,6 +56,7 @@ def test_distance_filter(): assert (res["effort_distance_km"] >= 0.1).all() +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore def test_breeding_filter(): conn = sqlite3.connect(str(MEDIUM_DB)) res = queries.breeding("CF").run_pandas(conn) @@ -62,6 +68,7 @@ def test_breeding_filter(): assert len(res["breeding_code"]) == 217 +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore def test_project_filter(): conn = sqlite3.connect(str(MEDIUM_DB)) res = queries.project("EBIRD_CAN").run_pandas(conn) @@ -73,6 +80,7 @@ def test_project_filter(): assert len(res["project_code"]) == 1313 +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore def test_protocol_filter(): conn = sqlite3.connect(str(MEDIUM_DB)) res = queries.protocol("Stationary").run_pandas(conn) @@ -84,6 +92,7 @@ def test_protocol_filter(): assert len(res["protocol_type"]) == 359921 +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore def test_last_edited_filter(): conn = sqlite3.connect(str(MEDIUM_DB)) res = queries.last_edited("2022-01-01").run_pandas(conn) @@ -92,6 +101,7 @@ def test_last_edited_filter(): assert len(res) == 27116 +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore def test_wildcard_filter(): conn = sqlite3.connect(str(MEDIUM_DB)) res = queries.date("*-02-05", "*-02-07").run_pandas(conn) diff --git a/tests/rebuild_test.py b/tests/rebuild_test.py index 5991b8e..ffd1cb4 100644 --- a/tests/rebuild_test.py +++ b/tests/rebuild_test.py @@ -1,17 +1,26 @@ import pandas as pd +import pytest from tempfile import NamedTemporaryFile from pathlib import Path from aukpy import db as auk_db, queries -from tests import SMALL, MEDIUM, WITH_ATLAS +from tests import ( + SMALL_MOCKED, + SMALL, + MEDIUM, + WITH_ATLAS, + M_MEDIUM, + M_SMALL, + SKIP_NON_MOCKED, +) def compare_tables(df: pd.DataFrame, original: pd.DataFrame): df.sort_values(by="global_unique_identifier", inplace=True) - df.index = range(len(df)) + df.index = range(len(df)) # type: ignore df.fillna("", inplace=True) original.sort_values(by="global_unique_identifier", inplace=True) - original.index = range(len(original)) + original.index = range(len(original)) # type: ignore original.fillna("", inplace=True) assert len(df) == len(original) @@ -27,59 +36,57 @@ def compare_tables(df: pd.DataFrame, original: pd.DataFrame): assert comp.all() -def test_rebuild_small(): +def run_rebuild(obs_path: Path, incremental: bool = False): with NamedTemporaryFile() as output: - db = auk_db.build_db_pandas(SMALL, Path(output.name)) + if incremental: + db = auk_db.build_db_incremental(obs_path, Path(output.name)) + else: + db = auk_db.build_db_pandas(obs_path, Path(output.name)) q = queries.no_filter() df = auk_db.undo_compression(q.run_pandas(db)) - original = auk_db.read_clean(SMALL) + original = auk_db.read_clean(obs_path) compare_tables(df, original) -def test_rebuild_incremental(): - with NamedTemporaryFile() as output: - db = auk_db.build_db_incremental(SMALL, Path(output.name), max_size=1000) - q = queries.no_filter() - - df = auk_db.undo_compression(q.run_pandas(db)) - original = auk_db.read_clean(SMALL) - compare_tables(df, original) +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore +def test_rebuild_small(): + run_rebuild(SMALL) +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore def test_rebuild_medium(): - with NamedTemporaryFile() as output: - db = auk_db.build_db_pandas(MEDIUM, Path(output.name)) - q = queries.no_filter() - df = auk_db.undo_compression(q.run_pandas(db)) - original = auk_db.read_clean(MEDIUM) + run_rebuild(MEDIUM) - compare_tables(df, original) +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore +def test_rebuild_atlas(): + run_rebuild(WITH_ATLAS) -def test_rebuild_incremental_medium(): - with NamedTemporaryFile() as output: - db = auk_db.build_db_incremental(MEDIUM, Path(output.name), max_size=100000) - q = queries.no_filter() - df = auk_db.undo_compression(q.run_pandas(db)) - original = auk_db.read_clean(MEDIUM) - compare_tables(df, original) +def test_rebuild_mocked_small(): + run_rebuild(M_SMALL) -def test_rebuild_atlas(): +@pytest.mark.skip +def test_rebuild_mocked_medium(): + run_rebuild(M_MEDIUM) - with NamedTemporaryFile() as output: - db = auk_db.build_db_pandas(WITH_ATLAS, Path(output.name)) - q = queries.no_filter() - df = auk_db.undo_compression(q.run_pandas(db)) - original = auk_db.read_clean(WITH_ATLAS) - compare_tables(df, original) +def test_rebuild_mocked_sub(): + for p in SMALL_MOCKED: + run_rebuild(p) -def test_rebuild_random(): - df = auk_db.read_clean(MEDIUM) - from tests import gen_mock_data +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore +def test_rebuild_incremental(): + run_rebuild(SMALL, incremental=True) + + +@pytest.mark.skipif(**SKIP_NON_MOCKED) # type: ignore +def test_rebuild_incremental_medium(): + run_rebuild(MEDIUM, incremental=True) + - new_df = gen_mock_data.scramble_observations(df) +def test_rebuild_incremental_mocked(): + run_rebuild(M_MEDIUM, incremental=True) From 80a4f1b93b5576ddc60682e7ac93347a8f46a14e Mon Sep 17 00:00:00 2001 From: Vincent Luczkow Date: Wed, 17 Aug 2022 18:12:12 -0700 Subject: [PATCH 3/7] Updated circleci config --- .circleci/config.yml | 7 +++++-- tests/queries_test.py | 1 + 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e141b37..6949145 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,8 +10,11 @@ jobs: executor: python/default steps: - checkout - - python/install-packages: - pkg-manager: pip + - run: + name: Install + command: pip install . + # - python/install-packages: + # pkg-manager: pip - run: name: Run tests command: python -m pytest diff --git a/tests/queries_test.py b/tests/queries_test.py index dba90a8..660eaff 100644 --- a/tests/queries_test.py +++ b/tests/queries_test.py @@ -1,4 +1,5 @@ import pandas as pd +import pytest import sqlite3 from aukpy import queries From f8d552d2ce8e2e5bc14da5131989e76d7f774c97 Mon Sep 17 00:00:00 2001 From: Vincent Luczkow Date: Wed, 17 Aug 2022 18:13:53 -0700 Subject: [PATCH 4/7] YAML syntax --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6949145..1b3c206 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,8 +11,8 @@ jobs: steps: - checkout - run: - name: Install - command: pip install . + name: Install + command: pip install . # - python/install-packages: # pkg-manager: pip - run: From f3f75930dcc525671183ce8e245af9e4d22a0093 Mon Sep 17 00:00:00 2001 From: Vincent Luczkow Date: Wed, 17 Aug 2022 18:19:04 -0700 Subject: [PATCH 5/7] CircleCI should install test dependencies now --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1b3c206..c39c608 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ jobs: - checkout - run: name: Install - command: pip install . + command: pip install .[tests] # - python/install-packages: # pkg-manager: pip - run: From f4cc44e6ad5f75c20ccef998efa0507b9e9f97af Mon Sep 17 00:00:00 2001 From: Vincent Luczkow Date: Wed, 17 Aug 2022 18:21:09 -0700 Subject: [PATCH 6/7] Removed TypeGuard, seems to be unsupported by earlier typing versions --- aukpy/queries.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aukpy/queries.py b/aukpy/queries.py index 7d55ab8..7422e7b 100644 --- a/aukpy/queries.py +++ b/aukpy/queries.py @@ -13,14 +13,13 @@ Tuple, Any, Literal, - TypeGuard, ) Distance = Literal["km", "miles"] -def check_simple_type(value) -> TypeGuard[Union[str, int, float, bool]]: +def check_simple_type(value) -> bool: return ( isinstance(value, str) or isinstance(value, float) From 62ca6ffb7c31c3e1ab6675af672e528a0e2efd6b Mon Sep 17 00:00:00 2001 From: Vincent Luczkow Date: Wed, 17 Aug 2022 18:23:50 -0700 Subject: [PATCH 7/7] Missed a test skip command --- tests/rebuild_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/rebuild_test.py b/tests/rebuild_test.py index ffd1cb4..ad103ed 100644 --- a/tests/rebuild_test.py +++ b/tests/rebuild_test.py @@ -88,5 +88,6 @@ def test_rebuild_incremental_medium(): run_rebuild(MEDIUM, incremental=True) +@pytest.mark.skip def test_rebuild_incremental_mocked(): run_rebuild(M_MEDIUM, incremental=True)